Contents

The DMCFB package is a pipeline to identify differentially methylated cytosine (DMC) in bisulfite sequencing data using Bayesian functional regression models. In what follows we provides some guidelines on how to read your data and analyze them.

1 Reading data

1.1 Reading bisulfite data (using files)

The R-method readBismark() is used to read bisulfite data files that are created by Bismark. Each file must include six columns, with no header, that represent

  • Chromosome
  • Start position in the chromosome
  • End position in the chromosome
  • Methylation level (m/(m+u))
  • Number of methylated reads (m)
  • Number of un-methylated reads (u)

and each row is a cytosine (or a small region) in DNA.

The function readBismark(<files' paths>, <files' names>) has two inputs: ‘the paths of the files’ and ‘the names of the files’. Using this function an object of class BSDMC is created. Extra information about data such as Age, Gender, Group, etc, must be assigned to the object using DataFrame function. As an example, we have provided three files in the package that can be read as follows:

library(DMCFB)
#> Loading required package: SummarizedExperiment
#> Loading required package: MatrixGenerics
#> Loading required package: matrixStats
#> 
#> Attaching package: 'MatrixGenerics'
#> The following objects are masked from 'package:matrixStats':
#> 
#>     colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
#>     colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
#>     colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
#>     colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
#>     colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
#>     colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
#>     colWeightedMeans, colWeightedMedians, colWeightedSds,
#>     colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
#>     rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
#>     rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
#>     rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
#>     rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
#>     rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
#>     rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
#>     rowWeightedSds, rowWeightedVars
#> Loading required package: GenomicRanges
#> Loading required package: stats4
#> Loading required package: BiocGenerics
#> 
#> Attaching package: 'BiocGenerics'
#> The following objects are masked from 'package:stats':
#> 
#>     IQR, mad, sd, var, xtabs
#> The following objects are masked from 'package:base':
#> 
#>     Filter, Find, Map, Position, Reduce, anyDuplicated, aperm, append,
#>     as.data.frame, basename, cbind, colnames, dirname, do.call,
#>     duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,
#>     lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,
#>     pmin.int, rank, rbind, rownames, sapply, setdiff, table, tapply,
#>     union, unique, unsplit, which.max, which.min
#> Loading required package: S4Vectors
#> 
#> Attaching package: 'S4Vectors'
#> The following object is masked from 'package:utils':
#> 
#>     findMatches
#> The following objects are masked from 'package:base':
#> 
#>     I, expand.grid, unname
#> Loading required package: IRanges
#> Loading required package: GenomeInfoDb
#> Loading required package: Biobase
#> Welcome to Bioconductor
#> 
#>     Vignettes contain introductory material; view with
#>     'browseVignettes()'. To cite Bioconductor, see
#>     'citation("Biobase")', and for packages 'citation("pkgname")'.
#> 
#> Attaching package: 'Biobase'
#> The following object is masked from 'package:MatrixGenerics':
#> 
#>     rowMedians
#> The following objects are masked from 'package:matrixStats':
#> 
#>     anyMissing, rowMedians
#> Loading required package: BiocParallel
#> DMCFB package, Version 1.17.2, Released 2024-02-01
#> DMCFB is a pipeline for identifying differentially methylated 
#>     cytosines using a Bayesian functional regression model in bisulfite
#>     sequencing data. By using a functional regression data model, it tries to
#>     capture position-specific, group-specific and other covariates-specific
#>     methylation patterns as well as spatial correlation patterns and unknown
#>     underlying models of methylation data. It is robust and flexible with
#>     respect to the true underlying models and inclusion of any covariates, and
#>     the missing values are imputed using spatial correlation between positions
#>     and samples. A Bayesian approach is adopted for estimation and inference in
#>     the proposed method.
#> BugReports: https://github.com/shokoohi/DMCFB/issues
#> 
#> Attaching package: 'DMCFB'
#> The following object is masked from 'package:Biobase':
#> 
#>     combine
#> The following object is masked from 'package:BiocGenerics':
#> 
#>     combine
fn <- list.files(system.file("extdata",package = "DMCFB"))
fn.f <- list.files(system.file("extdata",package="DMCFB"), full.names=TRUE)
OBJ <- readBismark(fn.f, fn, mc.cores = 2)
#> 
  |                                                                            
  |                                                                      |   0%
#> 
#> Processing sample blk.BCU1568_BC_BS_1 ... 
#> Read 23710 records
#> 
  |                                                                            
  |=======================                                               |  33%
#> 
#> Processing sample blk.BCU173_TC_BS_1 ... 
#> Read 24421 records
#> 
  |                                                                            
  |===============================================                       |  67%
#> 
#> Processing sample blk.BCU551_Mono_BS_1 ... 
#> Read 23541 records
#> 
  |                                                                            
  |======================================================================| 100%
#> 
#> Building BSDMC object.
cdOBJ <- DataFrame(Cell = factor(c("BC", "TC","Mono"),
levels = c("BC", "TC", "Mono")), row.names = c("BCU1568","BCU173","BCU551"))
colData(OBJ) <- cdOBJ
OBJ
#> class: BSDMC 
#> dim: 25668 3 
#> metadata(0):
#> assays(3): methReads totalReads methLevels
#> rownames(25668): 1 2 ... 25667 25668
#> rowData names(0):
#> colnames(3): BCU1568 BCU173 BCU551
#> colData names(1): Cell

1.2 Reading bisulfite data (using matrices)

Alternatively, one can use two integer matrices and a DataFrame to create BSDMC object using cBSDMC() function. One matrix includes the read-depth and the other one includes methylation reads. The columns of these matrices represent samples and the rows represent cytosine positions.

Additional information about the genomic positions and covariates must be stored in a DataFrame and then assign to the object.

The following exampel shows the details.

library(DMCFB)
set.seed(1980)
nr <- 1000
nc <- 8
metht <- matrix(as.integer(runif(nr * nc, 0, 100)), nr)
methc <- matrix(rbinom(n=nr*nc,c(metht),prob = runif(nr*nc)),nr,nc)
methl <- methc/metht
r1 <- GRanges(rep('chr1', nr), IRanges(1:nr, width=1), strand='*')
names(r1) <- 1:nr
cd1 <- DataFrame(Group=rep(c('G1','G2'),each=nc/2),row.names=LETTERS[1:nc])
OBJ2 <- cBSDMC(rowRanges=r1,methReads=methc,totalReads=metht,
  methLevels=methl,colData=cd1)
OBJ2
#> class: BSDMC 
#> dim: 1000 8 
#> metadata(0):
#> assays(3): methReads totalReads methLevels
#> rownames(1000): 1 2 ... 999 1000
#> rowData names(0):
#> colnames(8): A B ... G H
#> colData names(1): Group

2 Identifying DMCs

To identify DMCs, one need to use the function findDMCFB() function. The function

library(DMCFB)
start.time <- Sys.time()
path0 <- "..//BCData/" # provide the path to the files
namelist.new <- list.files(path0,pattern="blk",full.names=F)
namelist.new.f <- list.files(path0,pattern="blk",full.names=T)
type <- NULL
for(i in seq_along(namelist.new)){
    type[i] <- unlist(strsplit(namelist.new[i], split=c('_'), fixed=TRUE))[2]
}
type
table(type)
indTC <- which(type=="TC")
indBC <- which(type=="BC")
indMono <- which(type=="Mono")
namelist.new <- namelist.new[c(indBC,indMono,indTC)]
namelist.new.f <- namelist.new.f[c(indBC,indMono,indTC)]
BLKDat <- readBismark(namelist.new.f, namelist.new, mc.cores = 2)
colData1 <- DataFrame(Group = factor(
  c(rep("BC",length(indBC)), rep("Mono",length(indMono)), 
  rep("TC", length(indTC))), levels = c("BC", "Mono", "TC")), 
  row.names = colnames(BLKData))
colData(BLKDat) <- colData1
BLK.BC.Mono.TC <- sort(BLKDat)
DMC.obj = findDMCFB(object = BLKDat, bwa = 30, bwb = 30, nBurn = 300, nMC = 300,
  nThin = 1, alpha = 5e-5, pSize = 500, sfiles = FALSE)

3 Figures

To plot DMCs one can use the plotDMCFB() function to plot an BSDMC object that resulted from running findDMCFB() function. To illustrate use the following example:

library(DMCFB)
set.seed(1980)
nr <- 1000
nc <- 8
metht <- matrix(as.integer(runif(nr * nc, 0, 100)), nr)
methc <- matrix(rbinom(n=nr*nc,c(metht),prob = runif(nr*nc)),nr,nc)
methl <- methc/metht
r1 <- GRanges(rep('chr1', nr), IRanges(1:nr, width=1), strand='*')
names(r1) <- 1:nr
cd1 <- DataFrame(Group=rep(c('G1','G2'),each=nc/2),row.names=LETTERS[1:nc])
OBJ1 <- cBSDMC(rowRanges=r1,methReads=methc,totalReads=metht,
  methLevels=methl,colData=cd1)
OBJ2 = findDMCFB(object = OBJ1, bwa = 30, bwb = 30, nBurn = 10, nMC = 10,
  nThin = 1, alpha = 0.05, pSize = 500, sfiles = FALSE)
#> ------------------------------------------------------------
#> Running Bayesian functional regression model ...
#> The priors's SD = 0.3027, estimated from data ...
#> Number of assigned cores: 4 ...
#> ------------------------------------------------------------
#> Fitted model:
#> logit(MethRead/ReadDepth) ~ F(Group)
#> ------------------------------------------------------------
#> Creating 1 batches of genomic positions ...
#> Running batch 1/1; chr1; 1000 positions; Region [   1, 1000]; Date 2024-02-01 16:52:27.232736
#> ------------------------------------------------------------
#> Combining 1 objects ...
#> Objects are combined.
#> ------------------------------------------------------------
#> Identifying DMCs ...
#> DMCs are identified.
#> ------------------------------------------------------------
#> Percentage of non-DMCs and DMCs:
#> Equal(%)   DMC(%) 
#>     37.1     62.9
#> ------------------------------------------------------------
#> Percentage of hyper-, hypo-, and equal-methylated positions:
#>        Equal(%) Hyper(%) Hypo(%)
#> G2vsG1     37.1     31.4    31.5
#> ------------------------------------------------------------
plotDMCFB(OBJ2, region = c(1,400), nSplit = 2)

4 Session info

sessionInfo()
#> R Under development (unstable) (2024-01-16 r85808)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats4    stats     graphics  grDevices utils     datasets  methods  
#> [8] base     
#> 
#> other attached packages:
#>  [1] DMCFB_1.17.2                BiocParallel_1.37.0        
#>  [3] SummarizedExperiment_1.33.3 Biobase_2.63.0             
#>  [5] GenomicRanges_1.55.2        GenomeInfoDb_1.39.5        
#>  [7] IRanges_2.37.1              S4Vectors_0.41.3           
#>  [9] BiocGenerics_0.49.1         MatrixGenerics_1.15.0      
#> [11] matrixStats_1.2.0           BiocStyle_2.31.0           
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.0         dplyr_1.1.4              Biostrings_2.71.2       
#>  [4] bitops_1.0-7             fastmap_1.1.1            RCurl_1.98-1.14         
#>  [7] GenomicAlignments_1.39.2 XML_3.99-0.16.1          digest_0.6.34           
#> [10] lifecycle_1.0.4          magrittr_2.0.3           compiler_4.4.0          
#> [13] rlang_1.1.3              sass_0.4.8               tools_4.4.0             
#> [16] utf8_1.2.4               yaml_2.3.8               data.table_1.15.0       
#> [19] rtracklayer_1.63.0       knitr_1.45               S4Arrays_1.3.3          
#> [22] DelayedArray_0.29.1      abind_1.4-5              grid_4.4.0              
#> [25] fansi_1.0.6              fastDummies_1.7.3        iterators_1.0.14        
#> [28] MASS_7.3-60.2            cli_3.6.2                rmarkdown_2.25          
#> [31] crayon_1.5.2             generics_0.1.3           biglm_0.9-2.1           
#> [34] httr_1.4.7               rjson_0.2.21             DBI_1.2.1               
#> [37] minqa_1.2.6              cachem_1.0.8             stringr_1.5.1           
#> [40] zlibbioc_1.49.0          splines_4.4.0            parallel_4.4.0          
#> [43] BiocManager_1.30.22      XVector_0.43.1           restfulr_0.0.15         
#> [46] vctrs_0.6.5              boot_1.3-28.1            Matrix_1.6-5            
#> [49] jsonlite_1.8.8           benchmarkme_1.0.8        bookdown_0.37           
#> [52] magick_2.8.2             foreach_1.5.2            speedglm_0.3-5          
#> [55] jquerylib_0.1.4          snow_0.4-4               glue_1.7.0              
#> [58] benchmarkmeData_1.0.4    nloptr_2.0.3             codetools_0.2-19        
#> [61] stringi_1.8.3            BiocIO_1.13.0            lme4_1.1-35.1           
#> [64] tibble_3.2.1             pillar_1.9.0             htmltools_0.5.7         
#> [67] GenomeInfoDbData_1.2.11  R6_2.5.1                 doParallel_1.0.17       
#> [70] evaluate_0.23            lattice_0.22-5           highr_0.10              
#> [73] Rsamtools_2.19.3         arm_1.13-1               bslib_0.6.1             
#> [76] Rcpp_1.0.12              coda_0.19-4.1            SparseArray_1.3.3       
#> [79] nlme_3.1-164             xfun_0.41                pkgconfig_2.0.3