2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-10-04 07:34:46 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-10-04 07:34:46 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class REdger(RPackage):
|
|
|
|
"""Differential expression analysis of RNA-seq expression profiles with
|
|
|
|
biological replication. Implements a range of statistical methodology
|
|
|
|
based on the negative binomial distributions, including empirical Bayes
|
|
|
|
estimation, exact tests, generalized linear models and quasi-likelihood
|
|
|
|
tests. As well as RNA-seq, it be applied to differential signal analysis
|
|
|
|
of other types of genomic data that produce counts, including ChIP-seq,
|
|
|
|
SAGE and CAGE."""
|
|
|
|
|
|
|
|
homepage = "https://bioconductor.org/packages/edgeR/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/edgeR.git"
|
2017-10-04 07:34:46 +08:00
|
|
|
|
2018-08-14 11:18:34 +08:00
|
|
|
version('3.22.3', commit='e82e54afc9398ac54dc4caba0f7ae5c43e572203')
|
2018-07-24 10:56:48 +08:00
|
|
|
version('3.18.1', commit='101106f3fdd9e2c45d4a670c88f64c12e97a0495')
|
2017-10-04 07:34:46 +08:00
|
|
|
|
|
|
|
depends_on('r-limma', type=('build', 'run'))
|
|
|
|
depends_on('r-locfit', type=('build', 'run'))
|
2018-10-09 05:25:31 +08:00
|
|
|
depends_on('r-rcpp', type=('build', 'link', 'run'))
|
2018-08-14 11:18:34 +08:00
|
|
|
depends_on('r@3.5.0:3.5.9', when='@3.22.3')
|
2017-10-14 08:32:43 +08:00
|
|
|
depends_on('r@3.4.0:3.4.9', when='@3.18.1')
|