Name Mode Size
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.gitignore 100644 0 kb
DESCRIPTION 100644 1 kb
NAMESPACE 100644 1 kb
NEWS 100644 1 kb
README.md 100644 1 kb
README.md
# methyLImp2 **methyLImp2** package is the implementation of the updated version of the _methyLImp_ method for missing value imputation in methylation data. Compared to the previous version, implementation is parallelised over chromosomes since probes on different chromosomes are usually independent. Moreover, mini-batch approach to reduce the runtime in case of large number of samples is available. ## Installation To install from Github, run ``` #install.packages("devtools") library("devtools") install_github("annaplaksienko/methyLImp2", build_vignettes = TRUE) ``` To install from Bioconductor (when available), run ``` if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("methyLImp2") ``` ## Vignette To open the vignette, run ```{r run methyLImp} library(methyLImp2) browseVignettes("methyLImp2") ```