summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-randomglm/package.py
blob: 461fa43d3614bd0c4e43a6f95f8ab6cab9b501df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2020 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 import *


class RRandomglm(RPackage):
    """randomGLM: Random General Linear Model Prediction"""

    homepage = "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/"
    url      = "https://cloud.r-project.org/src/contrib/randomGLM_1.02-1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/randomGLM"

    version('1.02-1', sha256='3bf7c1dbdacc68125f8ae3014b9bc546dd3328d04ad015d154781bdf3f1a230c')

    depends_on('r@2.14.0:', type=('build', 'run'))
    depends_on('r-doparallel', type=('build', 'run'))
    depends_on('r-foreach', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))