diff options
author | lingnanyuan <1297162327@qq.com> | 2017-09-29 16:27:20 -0500 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-09-29 15:27:20 -0600 |
commit | 89b30bea7f8a783e9d8a101e351e6c51bba2c309 (patch) | |
tree | 79921040865408853f05909804d725373efa4434 /var | |
parent | 554937780bf9bad2e1e2b238aa95c6fd862b711e (diff) | |
download | spack-89b30bea7f8a783e9d8a101e351e6c51bba2c309.tar.gz spack-89b30bea7f8a783e9d8a101e351e6c51bba2c309.tar.bz2 spack-89b30bea7f8a783e9d8a101e351e6c51bba2c309.tar.xz spack-89b30bea7f8a783e9d8a101e351e6c51bba2c309.zip |
r-a4preproc: Create new package. (#5499)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-a4preproc/package.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-a4preproc/package.py b/var/spack/repos/builtin/packages/r-a4preproc/package.py new file mode 100644 index 0000000000..e8ddf1b748 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-a4preproc/package.py @@ -0,0 +1,36 @@ +############################################################################## +# 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 RA4preproc(RPackage): + """Automated Affymetrix Array Analysis Preprocessing Package.""" + + homepage = "https://www.bioconductor.org/packages/a4Preproc/" + url = "https://www.bioconductor.org/packages/release/bioc/src/contrib/a4Preproc_1.24.0.tar.gz" + + version('1.24.0', '8de73ad20a28155f34a4636c3f7c6539') + + depends_on('r-annotationdbi', type=('build', 'run')) |