-
Notifications
You must be signed in to change notification settings - Fork 715
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 #22232 from pavelToman/20250129114032_new_pr_paral…
…lel-fastq-dump067 {bio}[gompi/2023a] parallel-fastq-dump v0.6.7
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
easybuild/easyconfigs/p/parallel-fastq-dump/parallel-fastq-dump-0.6.7-gompi-2023a.eb
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,41 @@ | ||
# Author: Pavel Grochal (INUITS) | ||
# License: GPLv2 | ||
|
||
easyblock = 'PythonPackage' | ||
|
||
name = 'parallel-fastq-dump' | ||
version = '0.6.7' | ||
|
||
homepage = 'https://github.com/rvalieris/parallel-fastq-dump' | ||
description = "parallel fastq-dump wrapper" | ||
docurls = ["https://github.com/rvalieris/parallel-fastq-dump"] | ||
|
||
toolchain = {'name': 'gompi', 'version': '2023a'} | ||
|
||
# https://github.com/rvalieris/parallel-fastq-dump/archive/ | ||
github_account = 'rvalieris' | ||
source_urls = [GITHUB_SOURCE] | ||
sources = ['%(version)s.tar.gz'] | ||
checksums = ['cb33ea0ed0b1123c100aee7b9ea60a3fc3fc81a3a46be5237c85ba56380617de'] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('SRA-Toolkit', '3.0.10'), | ||
] | ||
|
||
download_dep_fail = True | ||
use_pip = True | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/parallel-fastq-dump'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
# This package doesn't produce importable module, only executable script. | ||
options = {'modulename': False} | ||
|
||
sanity_check_commands = ["parallel-fastq-dump --version"] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'bio' |