summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/seqprep/package.py
blob: ab756237428426f52e9286c8871a0edd72dafece (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 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"

    license("MIT")

    version("1.3.2", sha256="2b8a462a0e0a3e51f70be7730dc77b1f2bb69e74845dd0fbd2110a921c32265a")

    depends_on("zlib-api", type="link")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install("SeqPrep", prefix.bin)