summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-dirichletmultinomial/package.py
blob: b436ebc408259838662decec61eed6294a6a0e72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2013-2022 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 RDirichletmultinomial(RPackage):
    """Dirichlet-Multinomial Mixture Model Machine Learning for Microbiome
       Data.

       Dirichlet-multinomial mixture models can be used to describe variability
       in microbial metagenomic data. This package is an interface to code
       originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE
       7(2): 1-15, as discussed further in the man page for this package,
       ?DirichletMultinomial."""

    bioc = "DirichletMultinomial"

    version('1.36.0', commit='926baff6c75cb498945c5895f25cc143c907a357')
    version('1.32.0', commit='6949abab2462b2c09f7a0ca5b5cbf0c95a40ad16')
    version('1.26.0', commit='7daa84948020811bb8a27d2e633fccfdcdd1018f')
    version('1.24.1', commit='50195d9b1986852da29100e77f6f09df5d6e2a35')
    version('1.22.0', commit='5864f4298105d12f345f27df77ad13bae4061ca5')
    version('1.20.0', commit='251529f301da1482551142240aeb6baf8dab2272')
    version('1.18.0', commit='81ccc8d83b8ef84f5d3e877bc0a04233a0f63c51')

    depends_on('r-s4vectors', type=('build', 'run'))
    depends_on('r-iranges', type=('build', 'run'))
    depends_on('r-biocgenerics', type=('build', 'run'))
    depends_on('gsl')