summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-23 09:35:40 -0500
committerGitHub <noreply@github.com>2021-04-23 16:35:40 +0200
commita7fb70853ebe59a5d26ac7b7b152d6f50a97fd3e (patch)
tree9f43cd3ce5d993a63226dade0ac95e06952de1d7
parent0c56b598774da4ebc6ab4f5451b052927ef00d21 (diff)
downloadspack-a7fb70853ebe59a5d26ac7b7b152d6f50a97fd3e.tar.gz
spack-a7fb70853ebe59a5d26ac7b7b152d6f50a97fd3e.tar.bz2
spack-a7fb70853ebe59a5d26ac7b7b152d6f50a97fd3e.tar.xz
spack-a7fb70853ebe59a5d26ac7b7b152d6f50a97fd3e.zip
r-isva: new package (#23137)
-rw-r--r--var/spack/repos/builtin/packages/r-isva/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-isva/package.py b/var/spack/repos/builtin/packages/r-isva/package.py
new file mode 100644
index 0000000000..eb39fb2cc1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-isva/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2021 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 RIsva(RPackage):
+ """Independent Surrogate Variable Analysis:
+
+ Independent Surrogate Variable Analysis is an algorithm for feature
+ selection in the presence of potential confounding factors (see
+ Teschendorff AE et al 2011, <doi:10.1093/bioinformatics/btr171>)."""
+
+ cran = "isva"
+
+ version('1.9', sha256='9fd016e0b34034d271d45f8a0d0db62780bf0187112e45f610aa9237014e1d17')
+
+ depends_on('r-qvalue', type=('build', 'run'))
+ depends_on('r-fastica', type=('build', 'run'))
+ depends_on('r-jade', type=('build', 'run'))