summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-11-15 04:07:02 -0600
committerGitHub <noreply@github.com>2021-11-15 11:07:02 +0100
commit4cc42789db8925d3c335b18a11aa9a5c8fdd0c90 (patch)
tree8afcd0a12eb5a4c983327f5801a7fc86728e6308
parentf281b593947e412615396cac8e4c5d31313d90fe (diff)
downloadspack-4cc42789db8925d3c335b18a11aa9a5c8fdd0c90.tar.gz
spack-4cc42789db8925d3c335b18a11aa9a5c8fdd0c90.tar.bz2
spack-4cc42789db8925d3c335b18a11aa9a5c8fdd0c90.tar.xz
spack-4cc42789db8925d3c335b18a11aa9a5c8fdd0c90.zip
py-mxfold2: new package at v0.1.1 (#27383)
-rw-r--r--var/spack/repos/builtin/packages/py-mxfold2/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-mxfold2/package.py b/var/spack/repos/builtin/packages/py-mxfold2/package.py
new file mode 100644
index 0000000000..c6838a97dc
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-mxfold2/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2021 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 PyMxfold2(PythonPackage):
+ """MXfold2: RNA secondary structure prediction using deep
+ learning with thermodynamic integration"""
+
+ homepage = "https://github.com/keio-bioinformatics/mxfold2"
+ url = "https://github.com/keio-bioinformatics/mxfold2/releases/download/v0.1.1/mxfold2-0.1.1.tar.gz"
+
+ maintainers = ['dorton21']
+
+ version('0.1.1', sha256='9f39c6ff4138212d1ad2639005f5c05ffb4df0f7e22f5e7ad49466a05aa047e5')
+
+ depends_on('python@3.7:', type=('build', 'run'))
+ depends_on('py-torch@1.7:~valgrind', type=('build', 'run'))
+ depends_on('py-torchvision', type=('build', 'run'))
+ depends_on('py-wheel@0.35.1:0.36.0', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-setuptools-cpp', type='build')
+ depends_on('cmake', type='build')