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.
|
2018-08-13 08:46:14 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-08-13 08:46:14 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RCtc(RPackage):
|
|
|
|
"""Tools for export and import classification trees and clusters
|
|
|
|
to other programs"""
|
|
|
|
|
|
|
|
homepage = "https://www.bioconductor.org/packages/release/bioc/html/ctc.html"
|
|
|
|
git = "https://git.bioconductor.org/packages/ctc.git"
|
|
|
|
|
|
|
|
version('1.54.0', commit='0c3df81dfc8fabe12e11884bed44b64e11fd6d4e')
|
|
|
|
|
|
|
|
depends_on('r-amap', type=('build', 'run'))
|
|
|
|
depends_on('r@3.5.0:3.5.9', when='@1.54.0:', type=('build', 'run'))
|