diff options
author | lingnanyuan <1297162327@qq.com> | 2017-10-27 01:26:25 -0500 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@googlemail.com> | 2017-10-27 08:26:25 +0200 |
commit | 95ece343c41c7113176a41e8f2b7d2d5116881c5 (patch) | |
tree | e8c9ec59843fbc9db0a4ba572134898aeafc7e61 | |
parent | 3ea6a11043cbfa0ed1b6c08d670ca85276128028 (diff) | |
download | spack-95ece343c41c7113176a41e8f2b7d2d5116881c5.tar.gz spack-95ece343c41c7113176a41e8f2b7d2d5116881c5.tar.bz2 spack-95ece343c41c7113176a41e8f2b7d2d5116881c5.tar.xz spack-95ece343c41c7113176a41e8f2b7d2d5116881c5.zip |
r-oligoclasses: Create new package. (#5966)
-rw-r--r-- | var/spack/repos/builtin/packages/r-oligoclasses/package.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-oligoclasses/package.py b/var/spack/repos/builtin/packages/r-oligoclasses/package.py new file mode 100644 index 0000000000..45c566e8cf --- /dev/null +++ b/var/spack/repos/builtin/packages/r-oligoclasses/package.py @@ -0,0 +1,50 @@ +############################################################################## +# 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 ROligoclasses(RPackage): + """This package contains class definitions, validity checks, + and initialization methods for classes used by the oligo and + crlmm packages.""" + + homepage = "https://www.bioconductor.org/packages/oligoClasses/" + url = "https://git.bioconductor.org/packages/oligoClasses" + + version('1.38.0', git='https://git.bioconductor.org/packages/oligoClasses', commit='fe2bb7f02c7ed3cbd338254c27ceba6ff829a962') + + depends_on('r@3.4.0:3.4.9', when='@1.38.0') + depends_on('r-biocgenerics', type=('build', 'run')) + depends_on('r-biobase', type=('build', 'run')) + depends_on('r-iranges', type=('build', 'run')) + depends_on('r-genomicranges', type=('build', 'run')) + depends_on('r-summarizedexperiment', type=('build', 'run')) + depends_on('r-biostrings', type=('build', 'run')) + depends_on('r-affyio', type=('build', 'run')) + depends_on('r-ff', type=('build', 'run')) + depends_on('r-foreach', type=('build', 'run')) + depends_on('r-biocinstaller', type=('build', 'run')) + depends_on('r-s4vectors', type=('build', 'run')) + depends_on('r-rsqlite', type=('build', 'run')) |