diff options
author | lingnanyuan <1297162327@qq.com> | 2017-12-06 19:29:45 -0600 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-12-06 18:29:45 -0700 |
commit | 3a4329c77d706b4a4d4fbf72519d88383d551e0d (patch) | |
tree | 5cdbc7e4f6195e8d13e3e0344c04c955b21c404c | |
parent | c2ea795b08386d36e97ce1a8a55153c65512e153 (diff) | |
download | spack-3a4329c77d706b4a4d4fbf72519d88383d551e0d.tar.gz spack-3a4329c77d706b4a4d4fbf72519d88383d551e0d.tar.bz2 spack-3a4329c77d706b4a4d4fbf72519d88383d551e0d.tar.xz spack-3a4329c77d706b4a4d4fbf72519d88383d551e0d.zip |
r-pathview: Create new package. (#6582)
-rw-r--r-- | var/spack/repos/builtin/packages/r-pathview/package.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pathview/package.py b/var/spack/repos/builtin/packages/r-pathview/package.py new file mode 100644 index 0000000000..13c6a27c9e --- /dev/null +++ b/var/spack/repos/builtin/packages/r-pathview/package.py @@ -0,0 +1,51 @@ +############################################################################## +# 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/spack/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 RPathview(RPackage): + """Pathview is a tool set for pathway based data integration and + visualization. It maps and renders a wide variety of biological data on + relevant pathway graphs. All users need is to supply their data and + specify the target pathway. Pathview automatically downloads the pathway + graph data, parses the data file, maps user data to the pathway, and + render pathway graph with the mapped data. In addition, Pathview also + seamlessly integrates with pathway and gene set (enrichment) analysis + tools for large-scale and fully automated analysis.""" + + homepage = "https://www.bioconductor.org/packages/pathview/" + url = "https://git.bioconductor.org/packages/pathview" + + version('1.16.7', git='https://git.bioconductor.org/packages/pathview', commit='fc560ed15ef7393a73d35e714716cc24dc835339') + + depends_on('r-keggrest', type=('build', 'run')) + depends_on('r-png', type=('build', 'run')) + depends_on('r-annotationdbi', type=('build', 'run')) + depends_on('r-graph', type=('build', 'run')) + depends_on('r-rgraphviz', type=('build', 'run')) + depends_on('r-xml', type=('build', 'run')) + depends_on('r-kegggraph', type=('build', 'run')) + depends_on('r-org-hs-eg-db', type=('build', 'run')) + depends_on('r@3.4.0:3.4.9', when='@1.16.7') |