diff options
-rw-r--r-- | var/spack/repos/builtin/packages/r-rrblup/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-rrblup/package.py b/var/spack/repos/builtin/packages/r-rrblup/package.py new file mode 100644 index 0000000000..882711f392 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-rrblup/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2019 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 RRrblup(RPackage): + """rrBLUP: Ridge Regression and Other Kernels for Genomic Selection""" + + homepage = "http://potatobreeding.cals.wisc.edu/software" + url = "https://cran.r-project.org/src/contrib/rrBLUP_4.6.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/rrBLUP" + + version('4.6', sha256='28b475a1466fcdc1780caace75cf34155338fda496cebd5799315598a4bc84af') + + depends_on('r@2.14:', type=('build', 'run')) |