22 lines
710 B
Python
22 lines
710 B
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class RDoDb(RPackage):
|
|
"""A set of annotation maps describing the entire Disease Ontology.
|
|
|
|
A set of annotation maps describing the entire Disease
|
|
Ontology assembled using data from DO."""
|
|
|
|
# There is no git repository for this package.
|
|
bioc = "DO.db"
|
|
|
|
version("2.9", sha256="762bcb9b5188274fd81d82f785cf2846a5acc61fad55e2ff8ec1502282c27881")
|
|
|
|
depends_on("r@2.7.0:", type=("build", "run"))
|
|
depends_on("r-annotationdbi@1.9.7:", type=("build", "run"))
|