easyconfigs-it4i/t/Trim_Galore/Trim_Galore-0.6.6-GCC-10.2.0-Python-2.7.18.eb
Lukas Krupcik 1f2c7b3d95 new file: b/BerkeleyGW/BerkeleyGW-3.0.1-intel-2020b-Python-3.8.6.eb
new file:   g/GDAL/GDAL-3.3.1-foss-2021a.eb
	new file:   g/GDRCopy/GDRCopy-2.1-GCCcore-9.3.0-CUDA-11.2.2.eb
	new file:   g/GDRCopy/GDRCopy-2.2-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   j/JUBE/JUBE-2.4.1.eb
	new file:   o/ORCA/ORCA-5.0.0-OpenMPI-4.1.1.eb
	new file:   o/ORCA/ORCA-5.0.1-OpenMPI-4.1.1.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-GCCcore-9.3.0-CUDA-11.2.2-devel.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-GCCcore-9.3.0-CUDA-11.2.2.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.2.2-UCX-11.1.0-rc2.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.2.2-test.eb
	new file:   o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   s/Schrodinger/Schrodinger_2021-3_Linux-x86_64.eb
	new file:   s/spirit/spirit-2.1.1-CUDA-10.2.89.eb
	new file:   t/Trim_Galore/Trim_Galore-0.6.6-GCC-10.2.0-Python-2.7.18.eb
	new file:   u/UCX/:
	new file:   u/UCX/UCX-1.11.0-rc1-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   u/UCX/UCX-1.9.0-GCCcore-9.3.0-CUDA-11.2.2-devel.eb
	new file:   u/UCX/UCX-1.9.0-GCCcore-9.3.0-CUDA-11.2.2.eb
	modified:   u/UCX/UCX-1.9.0-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   u/UCX/UCX-1.9.0-m4.patch
	new file:   v/VASP/VASP-6.2.1-intel-2020b-mkl=sequential.eb
	new file:   y/Yambo/Yambo-5.0.3-intel-2020a.eb
2021-08-09 08:31:32 +02:00

56 lines
1.6 KiB
Plaintext

# Contribution from the Crick HPC team
# uploaded by J. Sassmannshausen
#
# Updated to version 0.6.2: Pavel Grochal (INUITS)
# Updated to version 0.6.5: Alex Domingo (VUB)
#
# IT4Innovations JK 2021
# easyconfig taken from
# https://github.com/easybuilders/easybuild-easyconfigs/blob/develop/easybuild/easyconfigs/t/Trim_Galore/Trim_Galore-0.6.6-GCC-10.2.0-Python-2.7.18.eb
#
easyblock = 'Tarball'
name = 'Trim_Galore'
version = '0.6.6'
versionsuffix = '-Python-%(pyver)s'
homepage = 'https://www.bioinformatics.babraham.ac.uk/projects/trim_galore/'
description = """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."""
toolchain = {'name': 'GCC', 'version': '10.2.0'}
source_urls = ['https://github.com/FelixKrueger/TrimGalore/archive/']
sources = ['%(version)s.tar.gz']
checksums = ['b8db8ffd131d9d9e7c8532a5a1f1caee656c0c58d3eafd460fee3c39b9fcab5e']
builddependencies = [('binutils', '2.35')]
dependencies = [
('Python', '2.7.18'),
('Java', '11', '', True),
('pigz', '2.6'),
('Perl', '5.32.0'),
('FastQC', '0.11.9', '-Java-%(javaver)s', True),
('cutadapt', '1.18', versionsuffix),
]
postinstallcmds = [
"chmod +x %(installdir)s/%(namelower)s",
"sed -i '1 i#!/usr/bin/env perl' %(installdir)s/%(namelower)s",
"mkdir %(installdir)s/bin && mv %(installdir)s/%(namelower)s %(installdir)s/bin/%(namelower)s",
]
sanity_check_paths = {
'files': ["bin/trim_galore"],
'dirs': [],
}
sanity_check_commands = [
"trim_galore --help"
]
moduleclass = 'bio'