Hawaii Gigas Methylation Analysis Part 9

Preliminary DML identification

After obtaining descriptive and comparative metrics, the next thing I wanted to do was identify ploidy or pH DML. While using DSS or ramwas would provide more robust DML testing, I thought I might as well try this method. If I can use two different methods to identify DML, that would also increase the confidence in my findings.

Diploid vs. triploid

min.per.group

I opened this R Markdown script and planned out the analysis. I wanted to play around with the min.per.group argument in unite. I set min.per.group to 10 per treatment, then united the files:

methylationInformationFilteredCov5 <- methylKit::unite(processedFilteredFilesCov5,
                                                       min.per.group = 10L
                                                       destrand = FALSE) #Combine all processed files into a single table. Use destrand = TRUE to not destrand. Loci need data from 10/12 samples per treatment to remain in the analysis
head(methylationInformationFilteredCov5) #Confirm unite

(Side note: I have no idea why I need to specify methylKit::unite instead of unite since I’ve never had to do that before. My guess is that it has something to do with the way I loaded methylKit since Bioconductor is funky.)

After uniting the files, I tried remaking the correlation plot. Instead, I got a matrix and plot filled with NAs! I found this issue on the methylKit Github and learned that because not every CpG has data in each sample using min.per.group, the correlation and clustering functions produce NAs. I dug into the user guide description of unite and reminded myself that the default for the unite function is that all loci need data in all samples! Since the default is more stringent than the min.per.group argument, I decided to keep it.

Specifying covariates

I’ve seen a few papers use the covariate specification within calculateDiffMeth, and I wanted to give it a shot! The first thing I needed to do was create a covariate matrix. I made a dataframe with ploidy and pH treatment information, but got an error. The covariate matrix example in the methylKit user guide had only one covariate, so I figured it would be safer to make separate ploidy and pH covariate matrices. Since my initial treatment specification was diploid vs. triploid, I started by incorporating pH information:

covariatepH <- data.frame("pH" = c(rep("H", times = 6),
                                 rep("L", times = 6),
                                 rep("H", times = 6),
                                 rep("L", times = 6))) #Create dataframe with pH covariate information
head(covariatepH) #Check dataframe format

differentialMethylationStatsPloidy <- methylKit::calculateDiffMeth(methylationInformationFilteredCov5,
                                                                          covariates = covariatepH) #Calculate differential methylation statistics based on treatment indication from methRead. Include pH as a covariate
head(differentialMethylationStatsPloidy) #Look at differential methylation statistics

This took FOREVER. Usually unite is the limiting step, but this took SO LONG. I guess this is what happens when you complicate the model. I killed the command so I could work on modifying other pieces of code.

I set up DML identification to use a 50% difference and q-value of 0.01. While I used this specification to identify hyper- and hypomethylated DML, I also included code to see how many DML would be identified using a 75% or 100% difference.

normalizeCoverage

According to the FAQ, I should normalize coverage between samples so reads from one sample aren’t oversampled during statistical testing. So, I tried to do just that:

processedFilteredFilesCov5 <- methylKit::filterByCoverage(processedFiles,
                                                          lo.count = 5, lo.perc = NULL,
                                                          high.count = NULL, high.perc = 99.9) %>%
  methylKit::normalizeCoverage(processedFilteredFilesCov5) #Filter coverage information for minimum 5x coverage, and remove PCR duplicates by excluding data in the 99.9th percentile of coverage with hi.perc = 99.9. Normalize coverage between samples to avoid over-sampling reads from one sample during statistical testing

This is when I started running into vector memory issues with R. Since I was running this code on genefish, I decided to try the R Studio server. I would have to start running the script from the beginning, but I basically had to rerun code anyways after normalizing coverage. Also, I played around with covariates and realized that running it on the server may also take less time (see complaints below).

I tried to use the server, but no dice. I posted this discussion, and proceeded optimizing my code.

Randomization trial

Another thing I’ve seen papers do is randomize the treatment information, create a distribution of DML identified, and determine if the number of DML identified is significant. I based my analysis off of this script. First, I randomized the order of treatment specifications. Then, I used methylKit::reorganize to match the existing data with a new sample treatment specification in my methRead object. I then piped that information into filterByCoverage, unite, calculateDiffMeth, and getMethylDiff. Finally, I created a loop to go through this process 1000 times:

ploidyRandTest <- NULL #Create an empty matrix to store randomization trial results
for (i in 1:1000) { #For each iteration
  ploidyRandTreat <- sample(sampleMetadata$ploidyTreatment,
                            size = length(sampleMetadata$ploidyTreatment),
                            replace = FALSE) #Randomize treatment information
  ploidyRandDML <- methylKit::reorganize(processedFiles,
                                         sample.ids = sampleMetadata$sampleID,
                                         treatment = ploidyRandTreat) %>%
    methylKit::filterByCoverage(., lo.count = 5, lo.perc = NULL,
                                hi.count = NULL, hi.perc = 99.9) %>%
    methylKit::normalizeCoverage(.) %>%
    methylKit::unite(., destrand = FALSE) %>%
    methylKit::calculateDiffMeth(., covariates = covariatepH,
                                 mc.cores = 4) %>%
    methylKit::getMethylDiff(., difference = 50, qvalue = 0.01) %>% #Reorganize, filter, normalize, and unite samples. Calculate diffMeth and obtain DML that are 50% and have a q-value of 0.01
    nrow() -> ploidyRandTest[i] #Save the number of DML identified
}
hist(ploidyRandTest) #Plot a histogram with randomization trial results

#ploidyRandTest %>% filter(. > nrow(diffMethStatsPloidy50)) %>% nrow(.) / nrow(ploidyRandTest) #Calculate p-value

Low pH vs. ambient pH

I used all of the “finalized” code chunks above to recreate the workflow to identify treatment-specific DML! I used reorganize to assign treatment specifications, then merged all sample information with unite:

methylationInformationFilteredCov5T <- methylKit::reorganize(processedFiles,
                                                     sample.id = sampleMetadata$sampleID,
                                                     treatment = sampleMetadata$pHTreatment) %>%
  methylKit::filterByCoverage(.,
                              lo.count = 5, lo.perc = NULL,
                              high.count = NULL, high.perc = 99.9) %>%
  methylKit::normalizeCoverage(.) %>%
  methylKit::unite(processedFilteredFilesCov5T,
                   destrand = FALSE,
                   mc.cores = 4) #Reorganize processedFiles to provide pH treatment specification. Filter by coverage and normalize coverage between samples. Combine all processed files into a single table. Use destrand = TRUE to not destrand. By default only bases with data in all samples will be kept
head(methylationInformationFilteredCov5T) #Confirm unite

Similar to the ploidy DML, I based my hyper- and hypomethylated DML identification on a 50% difference, but tested 75% and 100% differences as well. I also coded a randomization test.

The code has been written, but now to my bigger problem: running it. Let’s see what happens when I can get it to run without memory errors.

Going forward

  1. Actually run methylKit script
  2. Try BS-SNPer and EpiDiverse for SNP extraction from WGBS data
  3. Investigate comparison mechanisms for samples with different ploidy in oysters and other taxa
  4. Test-run DSS and ramwas
  5. Transfer scripts used to a nextflow workflow
  6. Update methods
  7. Update results
Written on March 7, 2021