spack/var/spack/repos/builtin/packages/seqprep/package.py
2022-07-31 13:29:20 -07:00

23 lines
738 B
Python

# Copyright 2013-2022 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 Seqprep(MakefilePackage):
"""SeqPrep is a program to merge paired end Illumina reads that are
overlapping into a single longer read."""
homepage = "https://github.com/jstjohn/SeqPrep"
url = "https://github.com/jstjohn/SeqPrep/archive/v1.3.2.tar.gz"
version("1.3.2", sha256="2b8a462a0e0a3e51f70be7730dc77b1f2bb69e74845dd0fbd2110a921c32265a")
depends_on("zlib", type="link")
def install(self, spec, prefix):
mkdirp(prefix.bin)
install("SeqPrep", prefix.bin)