2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-08-02 05:38:38 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-08-02 05:38:38 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class FastxToolkit(AutotoolsPackage):
|
2016-08-02 05:38:38 +08:00
|
|
|
"""The FASTX-Toolkit is a collection of command line tools for
|
|
|
|
Short-Reads FASTA/FASTQ files preprocessing."""
|
|
|
|
|
|
|
|
homepage = "http://hannonlab.cshl.edu/fastx_toolkit/"
|
|
|
|
url = "https://github.com/agordon/fastx_toolkit/releases/download/0.0.14/fastx_toolkit-0.0.14.tar.bz2"
|
|
|
|
|
|
|
|
version('0.0.14', 'bf1993c898626bb147de3d6695c20b40')
|
|
|
|
|
|
|
|
depends_on('libgtextutils')
|
2017-07-08 05:53:15 +08:00
|
|
|
|
2019-01-01 06:12:51 +08:00
|
|
|
# patch implicit fallthrough
|
|
|
|
patch("pr-22.patch")
|