ngmerge: added package at v0.3 (#16160)
This commit is contained in:
parent
c62f18304d
commit
dff5a4ba57
1 changed files with 21 additions and 0 deletions
21
var/spack/repos/builtin/packages/ngmerge/package.py
Normal file
21
var/spack/repos/builtin/packages/ngmerge/package.py
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Copyright 2013-2020 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 Ngmerge(MakefilePackage):
|
||||||
|
"""Merging paired-end reads and removing adapters."""
|
||||||
|
|
||||||
|
homepage = "https://github.com/jsh58/NGmerge"
|
||||||
|
url = "https://github.com/jsh58/NGmerge/archive/v0.3.tar.gz"
|
||||||
|
|
||||||
|
version('0.3', sha256='5928f727feebd0d1bcdbee0e631ba06fbe9ce88328bd58b6c8bf4e54cc742ac3')
|
||||||
|
|
||||||
|
depends_on('zlib')
|
||||||
|
|
||||||
|
def install(self, spec, prefix):
|
||||||
|
mkdirp(prefix.bin)
|
||||||
|
install('NGmerge', prefix.bin)
|
Loading…
Reference in a new issue