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'))
|