The epimutacionsData
package is a repository of datasets for the
epimutacions
package. It includes 2 datasets to use as an example:
The following code explains how to access to the data:
library(ExperimentHub)
eh <- ExperimentHub()
query(eh, c("epimutacionsData"))
## ExperimentHub with 3 records
## # snapshotDate(): 2024-10-24
## # $dataprovider: GEO, Illumina 450k array
## # $species: Homo sapiens
## # $rdataclass: RGChannelSet, GenomicRatioSet, GRanges
## # additional mcols(): taxonomyid, genome, description,
## # coordinate_1_based, maintainer, rdatadateadded, preparerclass, tags,
## # rdatapath, sourceurl, sourcetype
## # retrieve records with, e.g., 'object[["EH6690"]]'
##
## title
## EH6690 | Control and case samples
## EH6691 | Reference panel
## EH6692 | Candidate epimutations
In Illumina 450K array (Reproducibility 2012), probes are unequally distributed along the genome, limiting the number of regions that can fulfil the requirements to be considered an epimutation. So, we have computed a dataset containing the regions that are candidates to become an epimutation.
To define the candidate epimutations,
we relied on the clustering from bumphunter (Jaffe et al. 2012).
We defined a primary dataset with all the CpGs from the Illumina 450K array.
Then, we run bumphunter and selected those regions with at least 3 CpGs.
As a result, we found 40408 candidate epimutations
which are available in the candRegsGR
dataset.
candRegsGR <- eh[["EH6692"]]
The package includes an RGChannelSet
class reference panel
(reference_panel
)
which contains 22 whole cord blood samples from
healthy children born via caesarian from
the GSE127824 cohort (Gervin et al. 2019).
The reference panel can be found in EH6691
record of the eh
object:
reference_panel <- eh[["EH6691"]]
The methy
dataset includes 51 DNA methylation profiling
of whole blood samples. 48 controls from GSE104812 (Shi et al. 2018) cohort
and 3 cases from GSE97362 (Butcher et al. 2017).
it is a GenomicRatioSet
class object.
methy <- eh[["EH6690"]]
The IDAT files contain raw microarray intensities of 4 case samples
from GSE131350 cohort.
The files are located on the external data of epimutacionsData
package:
library(minfi)
baseDir <- system.file("extdata", package = "epimutacionsData")
targets <- read.metharray.sheet(baseDir)
sessionInfo()
## R Under development (unstable) (2024-10-21 r87258)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.21-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.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] parallel stats4 stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] minfi_1.51.0 bumphunter_1.47.0
## [3] locfit_1.5-9.10 iterators_1.0.14
## [5] foreach_1.5.2 Biostrings_2.73.2
## [7] XVector_0.45.0 SummarizedExperiment_1.35.5
## [9] Biobase_2.65.1 MatrixGenerics_1.17.1
## [11] matrixStats_1.4.1 GenomicRanges_1.57.2
## [13] GenomeInfoDb_1.41.2 IRanges_2.39.2
## [15] S4Vectors_0.43.2 epimutacionsData_1.9.0
## [17] ExperimentHub_2.13.1 AnnotationHub_3.13.3
## [19] BiocFileCache_2.13.2 dbplyr_2.5.0
## [21] BiocGenerics_0.51.3 BiocStyle_2.33.1
##
## loaded via a namespace (and not attached):
## [1] RColorBrewer_1.1-3 jsonlite_1.8.9
## [3] magrittr_2.0.3 GenomicFeatures_1.57.1
## [5] rmarkdown_2.28 BiocIO_1.15.2
## [7] zlibbioc_1.51.2 vctrs_0.6.5
## [9] multtest_2.61.0 memoise_2.0.1
## [11] Rsamtools_2.21.2 DelayedMatrixStats_1.27.3
## [13] RCurl_1.98-1.16 askpass_1.2.1
## [15] htmltools_0.5.8.1 S4Arrays_1.5.11
## [17] curl_5.2.3 Rhdf5lib_1.27.0
## [19] SparseArray_1.5.45 rhdf5_2.49.0
## [21] sass_0.4.9 nor1mix_1.3-3
## [23] bslib_0.8.0 plyr_1.8.9
## [25] cachem_1.1.0 GenomicAlignments_1.41.0
## [27] mime_0.12 lifecycle_1.0.4
## [29] pkgconfig_2.0.3 Matrix_1.7-1
## [31] R6_2.5.1 fastmap_1.2.0
## [33] GenomeInfoDbData_1.2.13 digest_0.6.37
## [35] siggenes_1.79.0 reshape_0.8.9
## [37] AnnotationDbi_1.67.0 RSQLite_2.3.7
## [39] base64_2.0.2 filelock_1.0.3
## [41] fansi_1.0.6 httr_1.4.7
## [43] abind_1.4-8 compiler_4.5.0
## [45] beanplot_1.3.1 rngtools_1.5.2
## [47] bit64_4.5.2 withr_3.0.1
## [49] BiocParallel_1.39.0 DBI_1.2.3
## [51] HDF5Array_1.33.8 MASS_7.3-61
## [53] openssl_2.2.2 rappdirs_0.3.3
## [55] DelayedArray_0.31.14 rjson_0.2.23
## [57] tools_4.5.0 rentrez_1.2.3
## [59] quadprog_1.5-8 glue_1.8.0
## [61] restfulr_0.0.15 nlme_3.1-166
## [63] rhdf5filters_1.17.0 grid_4.5.0
## [65] generics_0.1.3 tzdb_0.4.0
## [67] preprocessCore_1.67.1 tidyr_1.3.1
## [69] hms_1.1.3 data.table_1.16.2
## [71] xml2_1.3.6 utf8_1.2.4
## [73] BiocVersion_3.20.0 pillar_1.9.0
## [75] limma_3.61.12 genefilter_1.87.0
## [77] splines_4.5.0 dplyr_1.1.4
## [79] lattice_0.22-6 survival_3.7-0
## [81] rtracklayer_1.65.0 bit_4.5.0
## [83] GEOquery_2.73.4 annotate_1.83.0
## [85] tidyselect_1.2.1 knitr_1.48
## [87] bookdown_0.41 xfun_0.48
## [89] scrime_1.3.5 statmod_1.5.0
## [91] UCSC.utils_1.1.0 yaml_2.3.10
## [93] evaluate_1.0.1 codetools_0.2-20
## [95] tibble_3.2.1 BiocManager_1.30.25
## [97] cli_3.6.3 xtable_1.8-4
## [99] jquerylib_0.1.4 Rcpp_1.0.13
## [101] png_0.1-8 XML_3.99-0.17
## [103] readr_2.1.5 blob_1.2.4
## [105] mclust_6.1.1 doRNG_1.8.6
## [107] sparseMatrixStats_1.17.2 bitops_1.0-9
## [109] illuminaio_0.47.0 purrr_1.0.2
## [111] crayon_1.5.3 rlang_1.1.4
## [113] KEGGREST_1.45.1