2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 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-11-18 09:58:23 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-11-18 09:58:23 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RDoDb(RPackage):
|
|
|
|
"""A set of annotation maps describing the entire Disease
|
|
|
|
Ontology assembled using data from DO."""
|
|
|
|
|
|
|
|
homepage = "https://bioconductor.org/packages/DO.db/"
|
|
|
|
url = "https://www.bioconductor.org/packages/3.5/data/annotation/src/contrib/DO.db_2.9.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.9', sha256='762bcb9b5188274fd81d82f785cf2846a5acc61fad55e2ff8ec1502282c27881')
|
2017-11-18 09:58:23 +08:00
|
|
|
|
|
|
|
depends_on('r-annotationdbi', type=('build', 'run'))
|