vignettes/docker.Rmd
docker.Rmdepicompare is now available via DockerHub as a containerised environment with Rstudio and all necessary dependencies pre-installed.
First, install Docker if you have not already.
Create an image of the Docker container in command line:
docker pull neurogenomicslab/epicompare
Once the image has been created, you can launch it with:
docker run \
-d \
-e ROOT=true \
-e PASSWORD="<your_password>" \
-v ~/Desktop:/Desktop \
-v /Volumes:/Volumes \
-p 8787:8787 \
neurogenomicslab/epicompare
<your_password> above with
whatever you want your password to be.-v flags for your
particular use case.-d ensures the container will run in “detached”
mode, which means it will persist even after you’ve closed your command
line session.If you are using a system that does not allow Docker (as is the case for many institutional computing clusters), you can instead install Docker images via Singularity.
singularity pull docker://neurogenomicslab/epicompare
Finally, launch the containerised Rstudio by entering the following URL in any web browser: http://localhost:8787/
Login using the credentials set during the Installation steps.
utils::sessionInfo()## R version 4.5.1 (2025-06-13)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.3 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.26.so; LAPACK version 3.12.0
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
## [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: UTC
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] EpiCompare_1.15.0 BiocStyle_2.38.0
##
## loaded via a namespace (and not attached):
## [1] RColorBrewer_1.1-3
## [2] jsonlite_2.0.0
## [3] magrittr_2.0.4
## [4] ggtangle_0.0.7
## [5] GenomicFeatures_1.62.0
## [6] farver_2.1.2
## [7] rmarkdown_2.30
## [8] fs_1.6.6
## [9] BiocIO_1.20.0
## [10] ragg_1.5.0
## [11] vctrs_0.6.5
## [12] memoise_2.0.1
## [13] Rsamtools_2.26.0
## [14] RCurl_1.98-1.17
## [15] ggtree_3.99.2
## [16] htmltools_0.5.8.1
## [17] S4Arrays_1.10.0
## [18] TxDb.Hsapiens.UCSC.hg19.knownGene_3.22.1
## [19] plotrix_3.8-4
## [20] AnnotationHub_4.0.0
## [21] curl_7.0.0
## [22] SparseArray_1.10.0
## [23] gridGraphics_0.5-1
## [24] sass_0.4.10
## [25] KernSmooth_2.23-26
## [26] bslib_0.9.0
## [27] htmlwidgets_1.6.4
## [28] desc_1.4.3
## [29] plyr_1.8.9
## [30] httr2_1.2.1
## [31] plotly_4.11.0
## [32] impute_1.84.0
## [33] cachem_1.1.0
## [34] GenomicAlignments_1.46.0
## [35] igraph_2.2.1
## [36] downloadthis_0.5.0
## [37] lifecycle_1.0.4
## [38] pkgconfig_2.0.3
## [39] Matrix_1.7-4
## [40] R6_2.6.1
## [41] fastmap_1.2.0
## [42] MatrixGenerics_1.22.0
## [43] digest_0.6.37
## [44] aplot_0.2.9
## [45] enrichplot_1.30.0
## [46] patchwork_1.3.2
## [47] AnnotationDbi_1.72.0
## [48] S4Vectors_0.48.0
## [49] textshaping_1.0.4
## [50] GenomicRanges_1.62.0
## [51] RSQLite_2.4.3
## [52] filelock_1.0.3
## [53] httr_1.4.7
## [54] abind_1.4-8
## [55] compiler_4.5.1
## [56] fontquiver_0.2.1
## [57] bit64_4.6.0-1
## [58] S7_0.2.0
## [59] BiocParallel_1.44.0
## [60] DBI_1.2.3
## [61] gplots_3.2.0
## [62] R.utils_2.13.0
## [63] ChIPseeker_1.45.0
## [64] rappdirs_0.3.3
## [65] DelayedArray_0.36.0
## [66] rjson_0.2.23
## [67] caTools_1.18.3
## [68] gtools_3.9.5
## [69] tools_4.5.1
## [70] ape_5.8-1
## [71] R.oo_1.27.1
## [72] glue_1.8.0
## [73] restfulr_0.0.16
## [74] nlme_3.1-168
## [75] GOSemSim_2.36.0
## [76] grid_4.5.1
## [77] gridBase_0.4-7
## [78] reshape2_1.4.4
## [79] fgsea_1.36.0
## [80] generics_0.1.4
## [81] BSgenome_1.78.0
## [82] gtable_0.3.6
## [83] tzdb_0.5.0
## [84] R.methodsS3_1.8.2
## [85] seqPattern_1.42.0
## [86] tidyr_1.3.1
## [87] hms_1.1.4
## [88] data.table_1.17.8
## [89] XVector_0.50.0
## [90] BiocGenerics_0.56.0
## [91] ggrepel_0.9.6
## [92] BiocVersion_3.22.0
## [93] pillar_1.11.1
## [94] stringr_1.5.2
## [95] yulab.utils_0.2.1
## [96] splines_4.5.1
## [97] dplyr_1.1.4
## [98] treeio_1.33.0
## [99] BiocFileCache_3.0.0
## [100] lattice_0.22-7
## [101] rtracklayer_1.70.0
## [102] bit_4.6.0
## [103] tidyselect_1.2.1
## [104] fontLiberation_0.1.0
## [105] GO.db_3.22.0
## [106] Biostrings_2.78.0
## [107] knitr_1.50
## [108] fontBitstreamVera_0.1.1
## [109] bookdown_0.45
## [110] IRanges_2.44.0
## [111] Seqinfo_1.0.0
## [112] SummarizedExperiment_1.40.0
## [113] stats4_4.5.1
## [114] xfun_0.53
## [115] Biobase_2.70.0
## [116] matrixStats_1.5.0
## [117] stringi_1.8.7
## [118] UCSC.utils_1.6.0
## [119] lazyeval_0.2.2
## [120] ggfun_0.2.0
## [121] yaml_2.3.10
## [122] boot_1.3-32
## [123] evaluate_1.0.5
## [124] codetools_0.2-20
## [125] cigarillo_1.0.0
## [126] gdtools_0.4.4
## [127] tibble_3.3.0
## [128] qvalue_2.42.0
## [129] BiocManager_1.30.26
## [130] ggplotify_0.1.3
## [131] cli_3.6.5
## [132] systemfonts_1.3.1
## [133] jquerylib_0.1.4
## [134] Rcpp_1.1.0
## [135] GenomeInfoDb_1.46.0
## [136] dbplyr_2.5.1
## [137] png_0.1-8
## [138] XML_3.99-0.19
## [139] parallel_4.5.1
## [140] readr_2.1.5
## [141] pkgdown_2.1.3
## [142] ggplot2_4.0.0
## [143] blob_1.2.4
## [144] DOSE_4.4.0
## [145] bitops_1.0-9
## [146] viridisLite_0.4.2
## [147] tidytree_0.4.6
## [148] ggiraph_0.9.2
## [149] scales_1.4.0
## [150] genomation_1.42.0
## [151] purrr_1.1.0
## [152] crayon_1.5.3
## [153] rlang_1.1.6
## [154] cowplot_1.2.0
## [155] fastmatch_1.1-6
## [156] KEGGREST_1.50.0