summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-16 08:21:18 -0600
committerGitHub <noreply@github.com>2021-01-16 15:21:18 +0100
commitd2e0a2448f562c1c93b17257e727b62f6326712c (patch)
treeaef0b7b1870531ddeb1bc9eb750d93a68b87d882
parentad034af7dc61d50575e894f667d9b285b11ef13d (diff)
downloadspack-d2e0a2448f562c1c93b17257e727b62f6326712c.tar.gz
spack-d2e0a2448f562c1c93b17257e727b62f6326712c.tar.bz2
spack-d2e0a2448f562c1c93b17257e727b62f6326712c.tar.xz
spack-d2e0a2448f562c1c93b17257e727b62f6326712c.zip
add version 1.0.4 to r-construct (#20954)
-rw-r--r--var/spack/repos/builtin/packages/r-construct/package.py23
1 files changed, 15 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/r-construct/package.py b/var/spack/repos/builtin/packages/r-construct/package.py
index aea8049c47..1ae2d48fc9 100644
--- a/var/spack/repos/builtin/packages/r-construct/package.py
+++ b/var/spack/repos/builtin/packages/r-construct/package.py
@@ -7,24 +7,31 @@ from spack import *
class RConstruct(RPackage):
- """conStruct: Models Spatially Continuous and Discrete Population
- GeneticStructure"""
+ """Models Spatially Continuous and Discrete Population GeneticStructure
+
+ A method for modeling genetic data as a combination of discrete layers,
+ within each of which relatedness may decay continuously with geographic
+ distance. This package contains code for running analyses (which are
+ implemented in the modeling language 'rstan') and visualizing and
+ interpreting output. See the paper for more details on the model and its
+ utility."""
homepage = "https://cloud.r-project.org/package=conStruct"
url = "https://cloud.r-project.org/src/contrib/conStruct_1.0.3.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/conStruct"
+ version('1.0.4', sha256='4e585b718a361061bc1432cea46fc65f802fb0ef58e4516d33e1af99bbfe90ce')
version('1.0.3', sha256='b449c133a944ad05a28f84f312ed4ccbc1574c4659aa09c678618d2ae9008310')
depends_on('r@3.4.0:', type=('build', 'run'))
- depends_on('r-bh@1.66.0:', type=('build', 'run'))
- depends_on('r-caroline', type=('build', 'run'))
- depends_on('r-doparallel', type=('build', 'run'))
- depends_on('r-foreach', type=('build', 'run'))
- depends_on('r-gtools', type=('build', 'run'))
depends_on('r-rcpp@0.12.0:', type=('build', 'run'))
- depends_on('r-rcppeigen@0.3.3.3.0:', type=('build', 'run'))
depends_on('r-rstan@2.18.1:', type=('build', 'run'))
depends_on('r-rstantools@1.5.0:', type=('build', 'run'))
+ depends_on('r-caroline', type=('build', 'run'))
+ depends_on('r-gtools', type=('build', 'run'))
+ depends_on('r-foreach', type=('build', 'run'))
+ depends_on('r-doparallel', type=('build', 'run'))
depends_on('r-stanheaders@2.18.0:', type=('build', 'run'))
+ depends_on('r-bh@1.66.0:', type=('build', 'run'))
+ depends_on('r-rcppeigen@0.3.3.3.0:', type=('build', 'run'))
depends_on('gmake', type='build')