" />

Abstract

A comparison and visualisation of epialleleR output values for various input files

Introduction

The best possible explanation on VEF and lMHL values is given in help files for generateCytosineReport and generateMhlReport methods, respectively. Here we try to show some simplified and real situations, i.e., different methylation patterns that may exist, and provide a visual summary of epialleleR output.

The readers are welcome to try their own real and simulated data. If it might be of interest to others, please create an issue and these examples might get included in this vignette.

NB: the plotMetrics function used below is a piece of spaghetti code, hence hidden. If you still want to use it or see what it does - browse a source code of this vignette online.

out.bam <- tempfile(pattern="simulated", fileext=".bam")

# no epimutations
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    sapply(
      lapply(1:1000, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.151s]
#> [1] 1000
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), 0, title="no epimutations")


# one complete epimutation
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    paste(rep("Z", 10), collapse=""),
    sapply(
      lapply(1:999, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.854s]
#> [1] 1000
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), title="one complete epimutation")


# one partial epimutation
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    paste(c(rep("Z", 4), "z", "z", rep("Z", 4)), collapse=""),
    sapply(
      lapply(1:999, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.141s]
#> [1] 1000
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), title="one partial epimutation")


# another partial epimutation
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    "zZZZZZZZzz",
    sapply(
      lapply(1:999, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.116s]
#> [1] 1000
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), title="another partial epimutation")


# several partial epimutations
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    sapply(
      lapply(1:10, function (x) c(rep("Z", 6), rep("z", 4))),
      paste, collapse=""
    ),
    sapply(
      lapply(1:999, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.117s]
#> [1] 1009
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), title="several partial epimutations")


# several short partial epimutations
simulateBam(
  output.bam.file=out.bam,
  XM=c(
    sapply(
      lapply(1:10, function (x) c(rep("Z", 4), rep("z", 6))),
      paste, collapse=""
    ),
    sapply(
      lapply(1:999, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.123s]
#> [1] 1009
plotMetrics(out.bam, as("chrS:1-10", "GRanges"), title="several short partial epimutations")


# several overlapping partial epimutations
simulateBam(
  output.bam.file=out.bam,
  pos=1:10,
  XM=c(
    "ZZZZZZZZZZ", "ZZZZZZZZZz", "ZZZZZZZZzz", "ZZZZZZZzzz", "ZZZZZZzzzz",
    sapply(
      lapply(1:15, function (x) sample(c("Z",rep("z", 9)), 10)),
      paste, collapse=""
    )
  ),
  XG="CT"
)
#> Writing sample BAM [0.005s]
#> [1] 20
plotMetrics(out.bam, as("chrS:1-20", "GRanges"), title="several overlapping partial epimutations")


# amplicon 0%
plotMetrics(
  system.file("extdata", "amplicon000meth.bam", package="epialleleR"),
  as("chr17:43124861-43126026", "GRanges"), title="amplicon, 0%"
)


# amplicon 10%
plotMetrics(
  system.file("extdata", "amplicon010meth.bam", package="epialleleR"),
  as("chr17:43124861-43126026", "GRanges"), title="amplicon, 10%"
)


# sample capture, BMP7
plotMetrics(
  system.file("extdata", "capture.bam", package="epialleleR"),
  as("chr20:57266125-57268185:+", "GRanges"), title="sample capture, BMP7, + strand"
)


# sample capture, BMP7
plotMetrics(
  system.file("extdata", "capture.bam", package="epialleleR"),
  as("chr20:57266125-57268185:-", "GRanges"), title="sample capture, BMP7, - strand"
)


# sample capture, RAD51C
plotMetrics(
  system.file("extdata", "capture.bam", package="epialleleR"),
  as("chr17:58691673-58693108:+", "GRanges"), title="sample capture, RAD51C, + strand"
)


# sample capture, RAD51C
plotMetrics(
  system.file("extdata", "capture.bam", package="epialleleR"),
  as("chr17:58691673-58693108:-", "GRanges"), title="sample capture, RAD51C, - strand"
)


# long-read sequencing, low methylation
getXM <- function (p) {sample(x=c("z", "Z"), size=1, prob=c(p, 1-p))}
probs <- (sin(seq(-2*pi, +1*pi, by = pi/125))+2)/3
simulateBam(
  output.bam.file=out.bam,
  pos=1:10,
  XM=sapply(1:10, function (i) {paste(sapply(probs, getXM), collapse="")}),
  XG="CT"
)
#> Writing sample BAM [0.043s]
#> [1] 10
plotMetrics(out.bam, as("chrS:1-1000", "GRanges"), title="long-read sequencing, low methylation")


# long-read sequencing, high methylation
simulateBam(
  output.bam.file=out.bam,
  pos=1:10,
  XM=sapply(1:10, function (i) {paste(sapply(1-probs, getXM), collapse="")}),
  XG="CT"
)
#> Writing sample BAM [0.030s]
#> [1] 10
plotMetrics(out.bam, as("chrS:1-1000", "GRanges"), title="long-read sequencing, high methylation")

Session Info

sessionInfo()
#> R Under development (unstable) (2024-03-13 r86113)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.4 LTS
#> 
#> Matrix products: default
#> BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.20.so;  LAPACK version 3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_US.UTF-8       
#>  [4] LC_COLLATE=en_US.UTF-8     LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
#> [10] LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: UTC
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats4    stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] epialleleR_1.11.9    gridExtra_2.3        ggplot2_3.5.0        GenomicRanges_1.55.4
#> [5] GenomeInfoDb_1.39.9  IRanges_2.37.1       S4Vectors_0.41.5     BiocGenerics_0.49.1 
#> [9] data.table_1.15.2   
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.1            farver_2.1.1                dplyr_1.1.4                
#>  [4] blob_1.2.4                  Biostrings_2.71.4           bitops_1.0-7               
#>  [7] fastmap_1.1.1               RCurl_1.98-1.14             VariantAnnotation_1.49.6   
#> [10] GenomicAlignments_1.39.4    XML_3.99-0.16.1             digest_0.6.35              
#> [13] lifecycle_1.0.4             KEGGREST_1.43.0             RSQLite_2.3.5              
#> [16] magrittr_2.0.3              compiler_4.4.0              rlang_1.1.3                
#> [19] sass_0.4.9                  tools_4.4.0                 utf8_1.2.4                 
#> [22] yaml_2.3.8                  rtracklayer_1.63.1          knitr_1.45                 
#> [25] labeling_0.4.3              S4Arrays_1.3.6              htmlwidgets_1.6.4          
#> [28] bit_4.0.5                   DelayedArray_0.29.9         RColorBrewer_1.1-3         
#> [31] abind_1.4-5                 BiocParallel_1.37.1         withr_3.0.0                
#> [34] purrr_1.0.2                 desc_1.4.3                  grid_4.4.0                 
#> [37] fansi_1.0.6                 colorspace_2.1-0            scales_1.3.0               
#> [40] SummarizedExperiment_1.33.3 cli_3.6.2                   rmarkdown_2.26             
#> [43] crayon_1.5.2                ragg_1.3.0                  generics_0.1.3             
#> [46] httr_1.4.7                  rjson_0.2.21                DBI_1.2.2                  
#> [49] cachem_1.0.8                zlibbioc_1.49.3             parallel_4.4.0             
#> [52] AnnotationDbi_1.65.2        XVector_0.43.1              restfulr_0.0.15            
#> [55] matrixStats_1.2.0           vctrs_0.6.5                 Matrix_1.6-5               
#> [58] jsonlite_1.8.8              bit64_4.0.5                 systemfonts_1.0.6          
#> [61] GenomicFeatures_1.55.4      jquerylib_0.1.4             glue_1.7.0                 
#> [64] pkgdown_2.0.7.9000          codetools_0.2-19            gtable_0.3.4               
#> [67] BiocIO_1.13.0               munsell_0.5.0               tibble_3.2.1               
#> [70] pillar_1.9.0                htmltools_0.5.7             BSgenome_1.71.2            
#> [73] GenomeInfoDbData_1.2.11     R6_2.5.1                    textshaping_0.3.7          
#> [76] evaluate_0.23               lattice_0.22-6              Biobase_2.63.0             
#> [79] highr_0.10                  png_0.1-8                   Rsamtools_2.19.4           
#> [82] memoise_2.0.1               bslib_0.6.1                 Rcpp_1.0.12                
#> [85] SparseArray_1.3.4           xfun_0.42                   fs_1.6.3                   
#> [88] MatrixGenerics_1.15.0       pkgconfig_2.0.3