genrich: new package at 0.6 (#13791)
This commit is contained in:
parent
38ae7ab6cd
commit
63874db562
1 changed files with 19 additions and 0 deletions
19
var/spack/repos/builtin/packages/genrich/package.py
Normal file
19
var/spack/repos/builtin/packages/genrich/package.py
Normal file
|
@ -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)
|
Loading…
Reference in a new issue