summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-runjags/package.py
blob: c9343dbf9f06686a58275787b2a47ac991ff0c3e (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
33
34
# Copyright 2013-2024 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 RRunjags(RPackage):
    """Interface Utilities, Model Templates, Parallel Computing Methods and
    Additional Distributions for MCMC Models in JAGS.

    User-friendly interface utilities for MCMC models via Just Another Gibbs
    Sampler (JAGS), facilitating the use of parallel (or distributed)
    processors for multiple chains, automated control of convergence and sample
    length diagnostics, and evaluation of the performance of a model using
    drop-k validation or against simulated data. Template model specifications
    can be generated using a standard lme4-style formula interface to assist
    users less familiar with the BUGS syntax. A JAGS extension module provides
    additional distributions including the Pareto family of distributions, the
    DuMouchel prior and the half-Cauchy prior."""

    cran = "runjags"

    license("GPL-2.0-only")

    version("2.2.1-7", sha256="e81fdb15e59cdceda125d6ae7cf0cde93361ba80b123d51afd1ecdc993f25016")
    version("2.2.0-3", sha256="1b1fc0b0cfecf9ecdecc3abcba804cdc114b3c5352d5cc801602deeca90db528")
    version("2.2.0-2", sha256="e5dfeb83d36faf19ebe64429f6db64aedecf3c9a040fd5bf9c0200914bf5039a")

    depends_on("r@2.14.0:", type=("build", "run"))
    depends_on("r-lattice@0.20-10:", type=("build", "run"))
    depends_on("r-coda@0.17-1:", type=("build", "run"))
    depends_on("jags@4.3.0:")