mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: stpipeline: Update to 2.0.0.
* gnu/packages/bioinformatics.scm (stpipeline): Update to 2.0.0. [source, homepage]: Switched to https://github.com/jfnavarro/st_pipeline. [source]: Switch to git-fetch. [arguments] <phases>: Skip check phase because dependencies are too narrow. [propagated-inputs]: Remove python-cython, python-invoke, python-pympler, python-setuptools, and python-sqlitedict; add python-distance, python-dnaio, and python-types-regex. [native-inputs]: Remove python-setuptools and python-wheel; add python-cython, python-pytest, and python-poetry-core. Change-Id: Iaa05b23e58e9f254ed9293244d955e63c2e69cd5 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
a6075f65c8
commit
b2c0723525
1 changed files with 21 additions and 16 deletions
|
@ -12204,40 +12204,45 @@ for Spatial Transcriptomics data.")
|
|||
(define-public stpipeline
|
||||
(package
|
||||
(name "stpipeline")
|
||||
(version "1.8.1")
|
||||
(version "2.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "stpipeline" version))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jfnavarro/st_pipeline")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0har2g42fvaqpiz66lincy86aj1hvwzds26kxhxfamvyvv4721wk"))))
|
||||
(base32 "1qah9sa7wy9ywf0si2ngqg0qyr9jjp5gxmjx3y65i78bxyq8pfyx"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases '(modify-phases %standard-phases
|
||||
(add-after 'unpack 'relax-requirements
|
||||
(lambda _
|
||||
(substitute* "requirements.txt"
|
||||
(("argparse.*")
|
||||
"")))))))
|
||||
;; requirements.txt and pyproject.toml have all versions
|
||||
;; of the dependencies hardcoded. All tests pass, so it should
|
||||
;; be good enough.
|
||||
;; However, the sanity-check of any Python package that has
|
||||
;; stpipelines a dependency, would fail too.
|
||||
(delete 'sanity-check))))
|
||||
(propagated-inputs (list htseq
|
||||
python-cython
|
||||
python-invoke
|
||||
python-distance
|
||||
python-dnaio
|
||||
python-numpy
|
||||
python-pandas
|
||||
python-pympler
|
||||
python-pysam
|
||||
python-regex
|
||||
python-scikit-learn
|
||||
python-scipy
|
||||
python-seaborn
|
||||
python-setuptools
|
||||
python-sqlitedict
|
||||
python-taggd
|
||||
python-types-regex
|
||||
samtools
|
||||
star))
|
||||
(native-inputs (list python-setuptools python-wheel))
|
||||
(home-page "https://github.com/SpatialTranscriptomicsResearch/st_pipeline")
|
||||
(native-inputs (list
|
||||
python-cython
|
||||
python-pytest
|
||||
python-poetry-core))
|
||||
(home-page "https://github.com/jfnavarro/st_pipeline")
|
||||
(synopsis "Pipeline for spatial mapping of unique transcripts")
|
||||
(description
|
||||
"This package provides an automated pipeline for spatial mapping of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue