
This PR creates the r-watermelon package, along with dependencies. - new package: r-fdb-infiniummethylation-hg19 - new package: r-illuminahumanmethylation450kanno-ilmn12-hg19 - new package: r-lumi - new package: r-methylumi - new package: r-roc - new package: r-txdb-hsapiens-ucsc-hg19-knowngene - updated package: r-matrixstats, new version needed as a dependency
42 lines
2.0 KiB
Python
42 lines
2.0 KiB
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class RMethylumi(RPackage):
|
|
"""This package provides classes for holding and manipulating Illumina
|
|
methylation data. Based on eSet, it can contain MIAME information, sample
|
|
information, feature information, and multiple matrices of data. An
|
|
"intelligent" import function, methylumiR can read the Illumina text files
|
|
and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files
|
|
from HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
|
|
background correction, and quality control features for GoldenGate,
|
|
Infinium, and Infinium HD arrays are also included."""
|
|
|
|
homepage = "https://bioconductor.org/packages/release/bioc/html/methylumi.html"
|
|
git = "https://git.bioconductor.org/packages/methylumi"
|
|
|
|
version('2.32.0', commit='e2a29c1b214c0d43c7325d176f9ce41dcf8e2f9d')
|
|
|
|
depends_on('r@2.13:', type=('build', 'run'))
|
|
depends_on('r-biobase', type=('build', 'run'))
|
|
depends_on('r-scales', type=('build', 'run'))
|
|
depends_on('r-reshape2', type=('build', 'run'))
|
|
depends_on('r-ggplot2', type=('build', 'run'))
|
|
depends_on('r-matrixstats', type=('build', 'run'))
|
|
depends_on('r-fdb-infiniummethylation-hg19@2.2.0:', type=('build', 'run'))
|
|
depends_on('r-minfi', type=('build', 'run'))
|
|
depends_on('r-biocgenerics', type=('build', 'run'))
|
|
depends_on('r-iranges', type=('build', 'run'))
|
|
depends_on('r-genomeinfodb', type=('build', 'run'))
|
|
depends_on('r-genomicranges', type=('build', 'run'))
|
|
depends_on('r-summarizedexperiment', type=('build', 'run'))
|
|
depends_on('r-lattice', type=('build', 'run'))
|
|
depends_on('r-annotate', type=('build', 'run'))
|
|
depends_on('r-genefilter', type=('build', 'run'))
|
|
depends_on('r-annotationdbi', type=('build', 'run'))
|
|
depends_on('r-illuminaio', type=('build', 'run'))
|