summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2019-11-20 16:47:36 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2019-11-20 15:47:36 -0700
commit63874db562ad9a8ea52cf8b743e8aadf9f5144c4 (patch)
tree717d32debcedc18a91c2c0ec86a57c208e288e9f
parent38ae7ab6cd7e0587ddf8aa0a79db6874e5c82190 (diff)
downloadspack-63874db562ad9a8ea52cf8b743e8aadf9f5144c4.tar.gz
spack-63874db562ad9a8ea52cf8b743e8aadf9f5144c4.tar.bz2
spack-63874db562ad9a8ea52cf8b743e8aadf9f5144c4.tar.xz
spack-63874db562ad9a8ea52cf8b743e8aadf9f5144c4.zip
genrich: new package at 0.6 (#13791)
-rw-r--r--var/spack/repos/builtin/packages/genrich/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/genrich/package.py b/var/spack/repos/builtin/packages/genrich/package.py
new file mode 100644
index 0000000000..797729ab82
--- /dev/null
+++ b/var/spack/repos/builtin/packages/genrich/package.py
@@ -0,0 +1,19 @@
+# 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 Genrich(MakefilePackage):
+ """Genrich is a peak-caller for genomic enrichment assays."""
+
+ homepage = "https://github.com/jsh58/Genrich"
+ url = "https://github.com/jsh58/Genrich/archive/v0.6.tar.gz"
+
+ version('0.6', sha256='4c87aca8b7789f28b0c5c2c0ccea75668f19fa6a4cb38cd3c06d80ffd98d396f')
+
+ def install(self, spec, prefix):
+ mkdirp(prefix.bin)
+ install('Genrich', prefix.bin)