
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
29 lines
1000 B
Python
29 lines
1000 B
Python
# Copyright 2013-2018 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 Trimgalore(Package):
|
|
"""Trim Galore! is a wrapper around Cutadapt and FastQC to consistently
|
|
apply adapter and quality trimming to FastQ files, with extra
|
|
functionality for RRBS data."""
|
|
|
|
homepage = "https://github.com/FelixKrueger/TrimGalore"
|
|
url = "https://github.com/FelixKrueger/TrimGalore/archive/0.4.4.tar.gz"
|
|
|
|
version('0.4.5', 'c71756042b2a65c34d483533a29dc206')
|
|
version('0.4.4', 'aae1b807b48e38bae7074470203997bb')
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
|
depends_on('py-cutadapt', type=('build', 'run'))
|
|
depends_on('fastqc')
|
|
|
|
def install(self, spec, prefix):
|
|
filter_file(r'#!/usr/bin/perl', '#!/usr/bin/env perl', 'trim_galore')
|
|
|
|
mkdirp(prefix.bin)
|
|
install('trim_galore', prefix.bin)
|