-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22435 from PetrKralCZ/20250303134811_new_pr_seqtk14
{bio}[GCC/13.3.0] seqtk v1.4
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## | ||
# created by Thomas Eylenbosch | ||
# updated by Pavel Tománek (INUITS) | ||
# Update: Petr Král (INUITS) | ||
## | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'seqtk' | ||
version = '1.4' | ||
|
||
homepage = 'https://github.com/lh3/seqtk/' | ||
description = """Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. | ||
It seamlessly parses both FASTA and FASTQ files which can also be optionally compressed by gzip.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '13.3.0'} | ||
|
||
github_account = 'lh3' | ||
source_urls = [GITHUB_SOURCE] | ||
sources = ['v%(version)s.tar.gz'] | ||
checksums = ['d124604ec24f29ed14ce127426ab90e0f3a2c0280c80d1a3ff8b1c09feede19c'] | ||
|
||
dependencies = [('zlib', '1.3.1')] | ||
|
||
skipsteps = ['configure'] | ||
|
||
buildopts = 'CC="$CC" CFLAGS="$CLFAGS"' | ||
|
||
preinstallopts = "mkdir %(installdir)s/bin && " | ||
installopts = 'BINDIR=%(installdir)s/bin/' | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/seqtk'], | ||
'dirs': [], | ||
} | ||
|
||
moduleclass = 'bio' |