
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
19 lines
614 B
Python
19 lines
614 B
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 RRoc(RPackage):
|
|
"""Provide utilities for ROC, with microarray focus."""
|
|
|
|
homepage = "https://bioconductor.org/packages/release/bioc/html/ROC.html"
|
|
git = "https://git.bioconductor.org/packages/ROC"
|
|
|
|
version('1.62.0', commit='60250fdb091f6a938709b8a2cffe6442ee22a9a2')
|
|
|
|
depends_on('r@1.9.0:', type=('build', 'run'))
|
|
depends_on('r-knitr', type=('build', 'run'))
|