diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-26 01:17:49 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-29 00:05:49 +0000 |
| commit | fd2031889cf6271ac3a1cb28bf46174e9bc6e9db (patch) | |
| tree | 46ba06a3779a5243a5fa922907d835a6fc316ce6 | |
| parent | 88e2dd4650d4ee130561828074384cbf034686f2 (diff) | |
gnu: python-scanrbp: Disable tests.
* gnu/packages/bioinformatics.scm (python-scanrbp):
[arguments]: Relocate field.
<#:tests?>: Disable them.
[native-inputs]: Remove python-wheel.
Change-Id: If4198e43da472b533ee83c2bbe0ccb9a0bcbf535
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9f0fbd01351..2b1c58dc88d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4571,17 +4571,9 @@ into separate processes; and more.") (base32 "1bv25qhr1dwym2j7llsd3ggnjb9l3h4bchng7bp7cq57s9g0bnjz")))) (build-system pyproject-build-system) - (propagated-inputs - (list python-biopython - python-matplotlib - python-pybio - python-scipy - python-seaborn)) - (native-inputs - (list python-setuptools - python-wheel)) (arguments (list + #:tests? #f ; There are none. #:phases #~(modify-phases %standard-phases (add-before 'check 'set-HOME @@ -4594,6 +4586,14 @@ into separate processes; and more.") (copy-file data-file (string-append data-dir "/" (basename data-file))))))))) + (propagated-inputs + (list python-biopython + python-matplotlib + python-pybio + python-scipy + python-seaborn)) + (native-inputs + (list python-setuptools)) (synopsis "Tool for creating a RNA RBP heatmap in Python") (description "python-scanrbp is a Python package that provides the scanRBP tool that loads RNA-protein binding motif PWM and computes the log-odds scores |
