To use CytoMethIC, you need to install the package from Bioconductor. If you don’t have the BiocManager package installed, install it first:
if (!requireNamespace("BiocManager", quietly = TRUE)) {
install.packages("BiocManager")
}
if (!requireNamespace("CytoMethIC", quietly = TRUE)) {
BiocManager::install("CytoMethIC")
}
CytoMethIC
is a comprehensive package that provides model data and functions
for easily using machine learning models that use data from the DNA methylome
to classify cancer type and phenotype from a sample. The primary motivation for
the development of this package is to abstract away the granular and
accessibility-limiting code required to utilize machine learning models in
R. Our package provides this abstraction for RandomForest, e1071 Support
Vector, Extreme Gradient Boosting, and Tensorflow models. This is paired with
an ExperimentHub component, which contains our lab’s models developed for
epigenetic cancer classification and predicting phenotypes. This includes CNS tumor
classification, Pan-cancer classification, race prediction, cell of origin
classification, and subtype classification models.
library(CytoMethIC)
library(ExperimentHub)
library(sesame)
sesameDataCache()
For these examples, we’ll be using models from ExperimentHub and a sample from sesameData.
Table: CytoMethIC supported models
ModelID | PredictionLabelDescription |
---|---|
rfc_cancertype_TCGA33 | TCGA cancer types (N=33) |
svm_cancertype_TCGA33 | TCGA cancer types (N=33) |
xgb_cancertype_TCGA33 | TCGA cancer types (N=33) |
mlp_cancertype_TCGA33 | TCGA cancer types (N=33) |
rfc_cancertype_CNS66 | CNS Tumor Class (N=66) |
svm_cancertype_CNS66 | CNS Tumor Class (N=66) |
xgb_cancertype_CNS66 | CNS Tumor Class (N=66) |
mlp_cancertype_CNS66 | CNS Tumor Class (N=66) |
NA | NA |
NA | NA |
NA | NA |
The below snippet shows a demonstration of the model abstraction working on random forest and support vector models from CytoMethIC models on ExperimentHub.
cmi_predict(sesameDataGet("HM450.1.TCGA.PAAD")$betas, ExperimentHub()[["EH8395"]],
lift_over=TRUE)
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 PAAD 0.852
cmi_predict(sesameDataGet("HM450.1.TCGA.PAAD")$betas, ExperimentHub()[["EH8396"]],
lift_over=TRUE)
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 PAAD 0.986
The below snippet shows a demonstration of the cmi_predict function working to predict the subtype of the cancer.
cmi_predict(sesameDataGet("HM450.1.TCGA.PAAD")$betas, ExperimentHub()[["EH8422"]])
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 GI.CIN 0.462
The below snippet shows a demonstration of the cmi_predict function working to predict the ethnicity of the patient.
cmi_predict(sesameDataGet("HM450.1.TCGA.PAAD")$betas, ExperimentHub()[["EH8421"]])
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 WHITE 0.886
The below snippet shows a demonstration of the cmi_predict function working to predict the cell of origin of the cancer.
cmi_predict(sesameDataGet("HM450.1.TCGA.PAAD")$betas, ExperimentHub()[["EH8423"]])
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 C20:Mixed (Stromal/Immune) 0.768
In addition to ExperimentHub Models, this package also supports using models from GitHub URLs. Note that https://github.com/zhou-lab/CytoMethIC_models will be the most frequently updated public repository of our lab’s classifiers.
base_url <- "https://github.com/zhou-lab/CytoMethIC_models/raw/main/models"
cmi_model <- readRDS(url(sprintf("%s/Race3_rfcTCGA_InfHum3.rds", base_url)))
betas <- openSesame(sesameDataGet("EPICv2.8.SigDF")[[1]])
cmi_predict(betas, cmi_model, lift_over=TRUE)
## # A tibble: 1 × 2
## response prob
## <chr> <dbl>
## 1 WHITE 1
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] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] knitr_1.48 sesame_1.23.9 sesameData_1.23.0
## [4] CytoMethIC_1.1.0 ExperimentHub_2.13.1 AnnotationHub_3.13.3
## [7] BiocFileCache_2.13.2 dbplyr_2.5.0 BiocGenerics_0.51.3
##
## loaded via a namespace (and not attached):
## [1] tidyselect_1.2.1 dplyr_1.1.4
## [3] blob_1.2.4 filelock_1.0.3
## [5] Biostrings_2.73.2 fastmap_1.2.0
## [7] digest_0.6.37 mime_0.12
## [9] lifecycle_1.0.4 KEGGREST_1.45.1
## [11] RSQLite_2.3.7 magrittr_2.0.3
## [13] compiler_4.5.0 rlang_1.1.4
## [15] tools_4.5.0 utf8_1.2.4
## [17] yaml_2.3.10 S4Arrays_1.5.11
## [19] bit_4.5.0 curl_5.2.3
## [21] DelayedArray_0.31.14 plyr_1.8.9
## [23] RColorBrewer_1.1-3 abind_1.4-8
## [25] BiocParallel_1.39.0 withr_3.0.1
## [27] purrr_1.0.2 grid_4.5.0
## [29] stats4_4.5.0 preprocessCore_1.67.1
## [31] fansi_1.0.6 wheatmap_0.2.0
## [33] e1071_1.7-16 colorspace_2.1-1
## [35] ggplot2_3.5.1 MASS_7.3-61
## [37] scales_1.3.0 SummarizedExperiment_1.35.5
## [39] cli_3.6.3 rmarkdown_2.28
## [41] crayon_1.5.3 generics_0.1.3
## [43] reshape2_1.4.4 httr_1.4.7
## [45] tzdb_0.4.0 proxy_0.4-27
## [47] DBI_1.2.3 cachem_1.1.0
## [49] stringr_1.5.1 zlibbioc_1.51.2
## [51] parallel_4.5.0 AnnotationDbi_1.67.0
## [53] BiocManager_1.30.25 XVector_0.45.0
## [55] matrixStats_1.4.1 vctrs_0.6.5
## [57] Matrix_1.7-1 jsonlite_1.8.9
## [59] IRanges_2.39.2 hms_1.1.3
## [61] S4Vectors_0.43.2 bit64_4.5.2
## [63] glue_1.8.0 codetools_0.2-20
## [65] stringi_1.8.4 gtable_0.3.6
## [67] BiocVersion_3.20.0 GenomeInfoDb_1.41.2
## [69] GenomicRanges_1.57.2 UCSC.utils_1.1.0
## [71] munsell_0.5.1 tibble_3.2.1
## [73] pillar_1.9.0 rappdirs_0.3.3
## [75] htmltools_0.5.8.1 randomForest_4.7-1.2
## [77] GenomeInfoDbData_1.2.13 R6_2.5.1
## [79] lattice_0.22-6 evaluate_1.0.1
## [81] Biobase_2.65.1 readr_2.1.5
## [83] png_0.1-8 memoise_2.0.1
## [85] BiocStyle_2.33.1 class_7.3-22
## [87] Rcpp_1.0.13 SparseArray_1.5.45
## [89] xfun_0.48 MatrixGenerics_1.17.1
## [91] pkgconfig_2.0.3