diff options
author | George Young <A-N-Other@users.noreply.github.com> | 2024-02-04 11:17:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-04 05:17:27 -0600 |
commit | 624292d685337a8d5c9510b4839715d04bf70686 (patch) | |
tree | e794853ae835da1833c92d98f2e32b7bc171cdbb /var | |
parent | 55ecc47dce6d72888ac385486c1a9fb2b572ba31 (diff) | |
download | spack-624292d685337a8d5c9510b4839715d04bf70686.tar.gz spack-624292d685337a8d5c9510b4839715d04bf70686.tar.bz2 spack-624292d685337a8d5c9510b4839715d04bf70686.tar.xz spack-624292d685337a8d5c9510b4839715d04bf70686.zip |
sicer2: new Python package @1.0.3 (#42383)
Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/sicer2/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/sicer2/package.py b/var/spack/repos/builtin/packages/sicer2/package.py new file mode 100644 index 0000000000..6a6f79a957 --- /dev/null +++ b/var/spack/repos/builtin/packages/sicer2/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2024 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.package import * + + +class Sicer2(PythonPackage): + """SICER2: a redesigned and improved ChIP-seq broad peak calling tool""" + + homepage = "https://zanglab.github.io/SICER2/" + pypi = "SICER2/SICER2-1.0.3.tar.gz" + + license("MIT", checked_by="A-N-Other") + + version("1.0.3", sha256="003e0f46fb45717fa6b1c94b2c21416161f5b3a4896fbb335cf2024daf2560dd") + + depends_on("py-setuptools", type="build") + depends_on("py-numpy", type=("build", "run")) + depends_on("py-scipy@1.0.0:", type=("build", "run")) |