Streamlined workflow for the quality control, normalization and bias-free analysis of Illumina methylation array data - The Leiden approach
Check out our compleet workflow: workflow
The DNAmArray-package can be installed in several ways which are described below. The package has been installed successfully for >= R-3.2.0 on different linux-builds. Currently, two branches are available:
- master for >= R-3.4.0 compatible with >= 1.22.1 minfi
- R-3.3.0 for older R and minfi version's
The package depends on many other packages from BioConductor or cran. Usually these are installed automatically, otherwise, we refer to BioConductor or cran documentation for the installation of these packages.
First install devtools. Next use:
library(devtools)
install_github("molepi/DNAmArray") ##for master
install_github("molepi/DNAmArray", ref="R-3.3.0") ##for other branches
Sometimes install_github
fails with CA cert error. Try running httr::set_config(httr::config( ssl_verifypeer = 0L))
before running install_github
!
Using git, e.g, use git clone
and then build
and install the package from source:
git clone [email protected]:molepi/DNAmArray.git
R CMD build DNAmArray
R CMD INSTALL DNAmArray_x.y.z.tar.gz
Change _x.y.z.
to the proper version you downloaded!