Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Klaus Noelp
ebrains-spack-builds
Commits
49559d3a
Commit
49559d3a
authored
2 years ago
by
Andrei Kramer
Committed by
Eleni Mathioulaki
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add r uqsa
parent
acb0f9f6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
packages/r-uqsa/package.py
+30
-0
30 additions, 0 deletions
packages/r-uqsa/package.py
packages/r-vinecopula/package.py
+16
-14
16 additions, 14 deletions
packages/r-vinecopula/package.py
spack.yaml
+1
-0
1 addition, 0 deletions
spack.yaml
with
47 additions
and
14 deletions
packages/r-uqsa/package.py
0 → 100644
+
30
−
0
View file @
49559d3a
# Copyright 2013-2023 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
RUqsa
(
RPackage
):
"""
This package will solve an initial value problem (given an ordinary
differential equation) for a list of simulation experiments. The
simulations will be compared to data, repeatedly. The package can
sample the parameters of the model via ABC (approximate Bayesian
computation) and by doing so quantify the uncertainty that remains
within the model even after considering the data. Experiments are
evaluated in a sequence, intermediate probability densities are
modeled using the VineCopua package.
"""
# FIXME: Add a proper url for your package's homepage here.
homepage
=
"
https://github.com/icpm-kth/uqsa
"
url
=
"
https://github.com/icpm-kth/uqsa/archive/refs/tags/v2.2.tar.gz
"
version
(
"
2.2
"
,
sha256
=
"
df15d20c0cd466083181ec8f37cd331f409dcd23838553cd46a7a7305bdcfc7f
"
)
depends_on
(
"
r-vinecopula
"
)
depends_on
(
"
r-mass
"
)
depends_on
(
"
r-r-utils
"
)
depends_on
(
"
r-ks
"
)
This diff is collapsed.
Click to expand it.
packages/r-vinecopula/package.py
+
16
−
14
View file @
49559d3a
# Copyright 2013-202
2
Lawrence Livermore National Security, LLC and other
# Copyright 2013-202
3
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
*
from
spack.package
import
*
class
RVinecopula
(
RPackage
):
"""
Provides tools for the statistical analysis of regular vine copula models.
"""
"""
Provides tools for the statistical analysis of regular vine copula
models, see Aas et al. (2009) <doi:10.1016/j.insmatheco.2007.02.001> and
Dissman et al. (2013) <doi:10.1016/j.csda.2012.08.010>.
The package includes tools for parameter estimation, model selection,
simulation, goodness-of-fit tests, and visualization. Tools for estimation,
selection and exploratory data analysis of bivariate copula models are also
provided.
"""
homepage
=
"
https://cran.r-project.org/package=VineCopula
"
cran
=
"
VineCopula
"
url
=
"
https://github.com/tnagler/VineCopula/archive/refs/tags/v2.4.5.tar.gz
"
version
(
'
2.4.5
'
,
sha256
=
'
06b9f67d14d525cbf04c991cedbd2e4f58bbb1f24ec10947aeed1efef91c33cd
'
)
version
(
'
2.4.4
'
,
sha256
=
'
8449b1181fd7f325a2f0539cdaa4a4ff895c41424f462f52258729436078c90a
'
)
version
(
'
2.4.3
'
,
sha256
=
'
42727aa7345ab544242182222eb97476f5dc04bc837f94f6fd3ea6ccac93ea17
'
)
version
(
'
2.4.2
'
,
sha256
=
'
468a4aa80feaa8b285ba596430b963b2f9f5e1f64254dcd63baf2fb0059e9a90
'
)
version
(
'
2.4.1
'
,
sha256
=
'
b19640d91a0d6608355c6fe9a32c0d1bc6c1993047cba440617d07b5b389de30
'
)
version
(
"
2.4.5
"
,
sha256
=
"
2255a2a0f2644e447f33c7fa3562cb1ad109aa7809ea250fe82b67b35cc2d23d
"
)
depends_on
(
'
r-mass
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
r-mvtnorm
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
r-adgoftest
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
r-lattice
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
"
r-mass
"
)
depends_on
(
"
r-mvtnorm
"
)
depends_on
(
"
r-r-methodss3
"
)
depends_on
(
"
r-adgoftest
"
)
depends_on
(
"
r-lattice
"
)
This diff is collapsed.
Click to expand it.
spack.yaml
+
1
−
0
View file @
49559d3a
...
...
@@ -64,6 +64,7 @@ spack:
-
biobb-gromacs
-
apbs
-
py-pdb2pqr
-
r-uqsa
-
sda
-
r-rgsl
-
r-sbtabvfgen
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment