Name Mode Size
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
.travis.yml 100644 0 kb
DESCRIPTION 100644 1 kb
NAMESPACE 100644 2 kb
README.md 100644 3 kb
README.md
shinyMethyl =========== |Package|BioC-release|BioC-devel |---|---|---| |[shinyMethyl](https://github.com/Jfortin1/shinyMethyl)|[![Release OK](https://bioconductor.org/shields/build/release/bioc/shinyMethyl.svg)](http://bioconductor.org/checkResults/release/bioc-LATEST/shinyMethyl/)|[![Devel OK](https://bioconductor.org/shields/build/devel/bioc/shinyMethyl.svg)](http://bioconductor.org/checkResults/devel/bioc-LATEST/shinyMethyl/) |[shinyMethylData](https://github.com/Jfortin1/shinyMethylData)|[![Release OK](https://bioconductor.org/shields/build/release/data-experiment/shinyMethylData.svg)](http://bioconductor.org/checkResults/release/data-experiment-LATEST/shinyMethylData/)|[![Devel OK](https://bioconductor.org/shields/build/devel/data-experiment/shinyMethylData.svg)](http://bioconductor.org/checkResults/devel/data-experiment-LATEST/shinyMethylData/) Authors: [Jean-Philippe Fortin](mailto:fortin946@gmail.com) and [Kasper Daniel Hansen](mailto:khansen@jhsph.edu) Welcome to `shinyMethyl`, an interactive R application based on the `shiny` package for exploration of DNA methylation data from Illumina arrays (450k and EPIC arrays). `shinyMethyl` is part of the [Bioconductor project](http://www.bioconductor.org/packages/devel/bioc/html/shinyMethyl.html). The `shinyMethyl` paper can be found [here](http://f1000research.com/articles/3-175/v2) Installation ------------ First, you will need to install at least the following packages from Bioconductor ```{r} if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("minfi") BiocManager::install("minfiData") ``` and from CRAN ```{r} install.packages("httpuv") install.packages("devtools") install.packages("matrixStats") install.packages("RColorBrewer") ``` To install the development version of shinyMethyl: ```{r} library(devtools) install_github("rstudio/shiny") install_github("jfortin1/shinyMethyl") install_github("jfortin1/shinyMethylData") ``` Vignette ------------ You can find the vignette for `shinyMethyl` at [https://github.com/Jfortin1/shinyMethyl/blob/master/vignettes/shinyMethyl.pdf](https://github.com/Jfortin1/shinyMethyl/blob/master/vignettes/shinyMethyl.pdf) Quick example ------------ After installation, you can launch `shinyMethyl` with an example dataset from TCGA with the following code: ```{r} library(shinyMethyl) library(shinyMethylData) runShinyMethyl(summary.tcga.raw, summary.tcga.norm) ``` # Citation To cite package __shinyMethyl__ in publications use: Fortin J, Fertig EJ and Hansen KD (2014). “shinyMethyl: interactive quality control of Illumina 450k DNA methylation arrays in R.”, F1000Research A BibTeX entry for LaTeX users is @Article{shinymethyl, author = {Jean-Philippe Fortin and Elana J. Fertig and Kasper D. Hansen}, title = {{shinyMethyl: interactive quality control of Illumina 450k DNA methylation arrays in R}}, journal = {F1000Research}, year = {2014}, volume = {3}, pages = {175}, doi = {10.12688/f1000research.4680.2}, pubmed = {25285208} }