-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c95b0d
commit 6212ea2
Showing
2 changed files
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
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,36 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'qnorm' | ||
version = '0.8.1' | ||
|
||
homepage = 'https://github.com/Maarten-vd-Sande/qnorm' | ||
description = "Fast-ish (and correct!) quantile normalization in Python" | ||
|
||
toolchain = {'name': 'foss', 'version': '2022b'} | ||
|
||
dependencies = [ | ||
('Python', '3.10.8'), | ||
('SciPy-bundle', '2023.02'), | ||
('numba', '0.58.1'), | ||
] | ||
|
||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['61b2f3ef09a9c552a4f3b83dc438cb13f191fa190164361a3a508c4777eed3c7'] | ||
|
||
download_dep_fail = True | ||
use_pip = True | ||
|
||
# pyproject.toml included in qnorm source tarball does not include standard fields, | ||
# it's only there to be read by setup.py... | ||
preinstallopts = "sed -i 's/pyproject.toml/pyproject.toml_/g' setup.py && mv pyproject.toml pyproject.toml_ && " | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/qnorm'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
sanity_check_commands = ["qnorm --help"] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'bio' |