spack/var/spack/repos/builtin/packages/r-adsplit/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

38 lines
1.7 KiB
Python

# Copyright 2013-2023 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 RAdsplit(RPackage):
"""Annotation-Driven Clustering.
This package implements clustering of microarray gene expression
profiles according to functional annotations. For each term genes are
annotated to, splits into two subclasses are computed and a significance
of the supporting gene set is determined."""
bioc = "adSplit"
version("1.68.0", commit="705977b5e1cb7dd69793cc673fa215baaba42af5")
version("1.66.0", commit="64580a6f7a9bc6b16334267c90df48fbb839cc16")
version("1.64.0", commit="32f150eb51c66b867301dceeb527de5b97f9f490")
version("1.60.0", commit="de5abccfe652cbc5b5f49fb6ed77cdd15cc760cd")
version("1.54.0", commit="ce8fb61f4a3d0942294da2baa28be1472acb0652")
version("1.52.0", commit="3bd105dbd76c52798b7d52f60c17de62ef13da19")
version("1.50.0", commit="a02e2c994e78ececd5a248575109c5ed36c969db")
version("1.48.0", commit="57dfcd93b9232cf53f05c34179ecb759bb7aff46")
version("1.46.0", commit="7e81a83f34d371447f491b3a146bf6851e260c7c")
depends_on("r@2.1.0:", type=("build", "run"))
depends_on("r-annotationdbi", type=("build", "run"))
depends_on("r-biobase@1.5.12:", type=("build", "run"))
depends_on("r-cluster@1.9.1:", type=("build", "run"))
depends_on("r-go-db@1.8.1:", type=("build", "run"))
depends_on("r-keggrest@1.30.1:", type=("build", "run"), when="@1.62.0:")
depends_on("r-multtest@1.6.0:", type=("build", "run"))
depends_on("r-kegg-db@1.8.1:", type=("build", "run"), when="@:1.60.0")