diff options
author | Yifan Zhu <ifanzhu@foxmail.com> | 2017-11-08 14:56:15 -0600 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-11-08 13:56:15 -0700 |
commit | 87aafeb78a45a781a8e8a8d469bbe1683b17d364 (patch) | |
tree | 2b5357e5a8c08e24034a4919346b7e45a386e13a | |
parent | c7a855ba576dbf0b619ca6605033327511646bec (diff) | |
download | spack-87aafeb78a45a781a8e8a8d469bbe1683b17d364.tar.gz spack-87aafeb78a45a781a8e8a8d469bbe1683b17d364.tar.bz2 spack-87aafeb78a45a781a8e8a8d469bbe1683b17d364.tar.xz spack-87aafeb78a45a781a8e8a8d469bbe1683b17d364.zip |
r-xmapbridge: created new package (#6180)
-rw-r--r-- | var/spack/repos/builtin/packages/r-xmapbridge/package.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-xmapbridge/package.py b/var/spack/repos/builtin/packages/r-xmapbridge/package.py new file mode 100644 index 0000000000..0836eb3951 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-xmapbridge/package.py @@ -0,0 +1,38 @@ +############################################################################## +# 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 RXmapbridge(RPackage): + """xmapBridge can plot graphs in the X:Map genome browser. This package + exports plotting files in a suitable format.""" + + homepage = "https://www.bioconductor.org/packages/xmapbridge/" + url = "https://git.bioconductor.org/packages/xmapbridge" + list_url = homepage + + version('1.34.0', git='https://git.bioconductor.org/packages/xmapbridge', commit='f162e1f72ead5f5a1aede69032d5771a6572d965') + + depends_on('r@3.4.0:3.4.9', when='@1.34.0') |