summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlingnanyuan <1297162327@qq.com>2017-10-27 01:14:55 -0500
committerMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-10-27 08:14:55 +0200
commit7c56318cb545011e64e3a491058054ad3d7cd9c0 (patch)
tree94c519f8d52150934faf82269b5cd8a4642e6443
parent55b79dca8c2b94911072211c62b4e9544334437d (diff)
downloadspack-7c56318cb545011e64e3a491058054ad3d7cd9c0.tar.gz
spack-7c56318cb545011e64e3a491058054ad3d7cd9c0.tar.bz2
spack-7c56318cb545011e64e3a491058054ad3d7cd9c0.tar.xz
spack-7c56318cb545011e64e3a491058054ad3d7cd9c0.zip
r-aims: Create new package. (#5987)
-rw-r--r--var/spack/repos/builtin/packages/r-aims/package.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-aims/package.py b/var/spack/repos/builtin/packages/r-aims/package.py
new file mode 100644
index 0000000000..9f930de3cf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-aims/package.py
@@ -0,0 +1,42 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class RAims(RPackage):
+ """This package contains the AIMS implementation. It contains
+ necessary functions to assign the five intrinsic molecular
+ subtypes (Luminal A, Luminal B, Her2-enriched, Basal-like,
+ Normal-like). Assignments could be done on individual samples
+ as well as on dataset of gene expression data."""
+
+ homepage = "http://bioconductor.org/packages/AIMS/"
+ url = "https://git.bioconductor.org/packages/AIMS"
+
+ version('1.8.0', git='https://git.bioconductor.org/packages/AIMS', commit='86b866c20e191047492c51b43e3f73082c3f8357')
+
+ depends_on('r@3.4.0:3.4.9', when='@1.8.0')
+ depends_on('r-e1071', type=('build', 'run'))
+ depends_on('r-biobase', type=('build', 'run'))