diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-20 04:15:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:15:21 +0200 |
commit | 41e0d95e9988eb849e4c7d4a35e3383846cb33da (patch) | |
tree | 25cafa74e06792d989510147fae86d70632a2d40 | |
parent | 2f3ded37e115c3bdb37738b3a515a07bd401065d (diff) | |
download | spack-41e0d95e9988eb849e4c7d4a35e3383846cb33da.tar.gz spack-41e0d95e9988eb849e4c7d4a35e3383846cb33da.tar.bz2 spack-41e0d95e9988eb849e4c7d4a35e3383846cb33da.tar.xz spack-41e0d95e9988eb849e4c7d4a35e3383846cb33da.zip |
r-marray: new package (#23105)
-rw-r--r-- | var/spack/repos/builtin/packages/r-marray/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-marray/package.py b/var/spack/repos/builtin/packages/r-marray/package.py new file mode 100644 index 0000000000..1a994b5d5c --- /dev/null +++ b/var/spack/repos/builtin/packages/r-marray/package.py @@ -0,0 +1,21 @@ +# 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 RMarray(RPackage): + """Exploratory analysis for two-color spotted microarray data: + + Class definitions for two-color spotted microarray data. Fuctions for data + input, diagnostic plots, normalization and quality checking.""" + + homepage = "http://www.maths.usyd.edu.au/u/jeany/" + bioc = "marray" + + version('1.68.0', commit='67b3080486abdba7dd19fccd7fb731b0e8b5b3f9') + + depends_on('r@2.10.0:', type=('build', 'run')) + depends_on('r-limma', type=('build', 'run')) |