diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 15:20:36 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 15:22:07 +0200 |
commit | 872e17ddc1308e26c3e7216000f456196520e000 (patch) | |
tree | 62f697f970207498761e777790f1be998c691c66 /gnu | |
parent | 9c2400c28272b7354608f0c727e1f483db190719 (diff) | |
download | guix-872e17ddc1308e26c3e7216000f456196520e000.tar.gz guix-872e17ddc1308e26c3e7216000f456196520e000.zip |
gnu: Add stpipeline.
* gnu/packages/bioinformatics.scm (stpipeline): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 518a904922..86c35f8177 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6486,6 +6486,49 @@ sequence itself can be retrieved from these databases.") for Spatial Transcriptomics data.") (license license:bsd-3))) +(define-public stpipeline + (package + (name "stpipeline") + (version "1.8.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "stpipeline" version)) + (sha256 + (base32 + "0har2g42fvaqpiz66lincy86aj1hvwzds26kxhxfamvyvv4721wk")))) + (build-system python-build-system) + (arguments + (list + #:phases + '(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "requirements.txt" + (("argparse.*") ""))))))) + (propagated-inputs + (list htseq + python-cython + python-invoke + python-numpy + python-pandas + python-pympler + python-pysam + python-regex + python-scikit-learn + python-scipy + python-seaborn + python-setuptools + python-sqlitedict + python-taggd + samtools + star)) + (home-page "https://github.com/SpatialTranscriptomicsResearch/st_pipeline") + (synopsis "Pipeline for spatial mapping of unique transcripts") + (description + "This package provides an automated pipeline for spatial mapping of +unique transcripts.") + (license license:expat))) + (define-public sra-tools (package (name "sra-tools") |