guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 3c760c2759932838dc6fc3dd7a0e811d488acf5d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 4 20:58:35 2026 +0000
gnu: python-splicekit: Refresh package style.
* gnu/packages/bioinformatics.scm (python-splicekit): Re order inputs
and arguments and start description from a new line.
Change-Id: I0ae7b2434669cbfee19a39283933fc2af45362a2
---
gnu/packages/bioinformatics.scm | 46 ++++++++++++++++++++---------------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 2863481fc0..4ac6c4a1c8 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4774,27 +4774,8 @@ the scores.")
(commit "ded5dbec16b45e0df44750d9ae021ae2416ff921")))
(file-name (git-file-name name version))
(sha256
- (base32
- "04l244qagbplksqp81w2s60pkymyhjq389xmqwsyc0n4q6b054h2"))))
+ (base32 "04l244qagbplksqp81w2s60pkymyhjq389xmqwsyc0n4q6b054h2"))))
(build-system pyproject-build-system)
- (propagated-inputs
- (list python-beautifulsoup4
- python-dateutil
- python-levenshtein
- python-logomaker
- python-numpy
- python-pandas
- python-plotly
- python-psutil
- python-pybio
- python-pysam
- python-rangehttpserver
- python-requests
- python-scanrbp))
- (native-inputs
- (list python-setuptools
- python-wheel
- snakemake))
(arguments
(list
#:tests? #false ;There are no tests.
@@ -4817,10 +4798,29 @@ the scores.")
(("import fireducks.pandas as pd") "import pandas as pd"))
(substitute* "splicekit.yaml"
((".*fireducks.*") "")))))))
+ (native-inputs
+ (list python-setuptools
+ python-wheel
+ snakemake))
+ (propagated-inputs
+ (list python-beautifulsoup4
+ python-dateutil
+ python-levenshtein
+ python-logomaker
+ python-numpy
+ python-pandas
+ python-plotly
+ python-psutil
+ python-pybio
+ python-pysam
+ python-rangehttpserver
+ python-requests
+ python-scanrbp))
(synopsis "Python toolkit for splicing analysis from short-read RNA-seq")
- (description "Splicekit is a modular platform for splicing analysis from
-short-read RNA-seq datasets. The platform also integrates pybio for genomic
-operations and scanRBP for RNA-protein binding studies. The whole analysis is
+ (description
+ "Splicekit is a modular platform for splicing analysis from short-read
+RNA-seq datasets. The platform also integrates pybio for genomic operations
+and scanRBP for RNA-protein binding studies. The whole analysis is
self-contained (one single directory) and the platform is written in Python,
in a modular way.")
(license license:gpl3)))