summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-snpstats/package.py
blob: db43464c53d547e0e791b64ce2a1e19db5527236 (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
# 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 RSnpstats(RPackage):
    """SnpMatrix and XSnpMatrix classes and methods.

       Classes and statistical methods for large SNP association studies. This
       extends the earlier snpMatrix package, allowing for uncertainty in
       genotypes."""

    bioc = "snpStats"

    version('1.46.0', commit='1e70784b113eaca231bc5f91fc8ae5aadb151ddb')
    version('1.44.0', commit='72392dab4e75de2da459b1e95f1d48947811597b')
    version('1.40.0', commit='5fcac6f3b4bb6f45c19dff8f3089b693b74a56ce')
    version('1.34.0', commit='e31cdfb18a9e12d70d6a3e8e6fbf7cf8faa3ea5b')
    version('1.32.0', commit='7c31158183b4e39da6dc30c7da275acc36b2e32f')
    version('1.30.0', commit='0dc1e4246f015feaf2579d60268b10ab5149ce09')
    version('1.28.0', commit='8df9f4188f720dfbb4f4f4ec255cd2e22f3f4426')
    version('1.26.0', commit='7c9b3304073e0556d694a8531882b349822fdda8')

    depends_on('r@2.10.0:', type=('build', 'run'))
    depends_on('r-survival', type=('build', 'run'))
    depends_on('r-matrix', type=('build', 'run'))
    depends_on('r-biocgenerics', type=('build', 'run'))
    depends_on('r-zlibbioc', type=('build', 'run'))