summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Stanley <molecuul@users.noreply.github.com>2019-03-11 15:13:02 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-03-11 15:13:02 -0500
commit46466381b83ee70d590aabe40c4bb1af99509afb (patch)
tree1c99567c9af541db08a1e775f12ac6baa4920843
parent9425075a23234ec52c263e549cede9466df0e362 (diff)
downloadspack-46466381b83ee70d590aabe40c4bb1af99509afb.tar.gz
spack-46466381b83ee70d590aabe40c4bb1af99509afb.tar.bz2
spack-46466381b83ee70d590aabe40c4bb1af99509afb.tar.xz
spack-46466381b83ee70d590aabe40c4bb1af99509afb.zip
py-crossmap: new package at 0.3.3 (#10854)
-rw-r--r--var/spack/repos/builtin/packages/py-crossmap/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-crossmap/package.py b/var/spack/repos/builtin/packages/py-crossmap/package.py
new file mode 100644
index 0000000000..5810a820c9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-crossmap/package.py
@@ -0,0 +1,28 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyCrossmap(PythonPackage):
+ """CrossMap is a program for convenient conversion of genome coordinates
+ (or annotation files) between different assemblies"""
+
+ homepage = "http://crossmap.sourceforge.net/"
+ url = "https://downloads.sourceforge.net/project/crossmap/CrossMap-0.3.3.tar.gz"
+
+ version('0.3.3', sha256='56d99fd606e13e399b83438953d0d89fc281df1c1e8e47eed7d773e7ec9c88f8')
+ version('0.2.9', sha256='57243ee5051352c93088874c797ceac0426f249704ba897360fb628b3365d0af')
+
+ depends_on('python@3:', type=('build', 'run'), when='@0.3.0:')
+ depends_on('python@2.7:2.8', type=('build', 'run'), when='@:0.2.9')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-cython', type=('build', 'run'))
+ depends_on('py-pysam', type=('build', 'run'))
+ depends_on('py-bx-python', type=('build', 'run'))
+
+ depends_on('py-pybigwig', type=('build', 'run'), when='@0.3.0:')