mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-vireosnp: Update to 0.5.9-0.e365463.
* gnu/packages/bioinformatics.scm (python-vireosnp): Update to 0.5.9-0.e365463. [source]: Switch to git-fetch. [arguments]<#:phases>: Replace 'check phase. [native-inputs]: Remove python-wheel. Change-Id: I53fee681916b4c4a5ad483fdf589e8297864da7f Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
3a98b3f41a
commit
cae5f4fb3f
1 changed files with 32 additions and 17 deletions
|
@ -25155,18 +25155,33 @@ interest.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public python-vireosnp
|
(define-public python-vireosnp
|
||||||
|
(let ((commit "e3654633f7663732572c03c5dcf9fb00ec43b653")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "python-vireosnp")
|
(name "python-vireosnp")
|
||||||
(version "0.5.7")
|
(version (git-version "0.5.9" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "vireoSNP" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/huangyh09/vireoSNP")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "02ybhzivsxwnb1axlgbs63wni1j27xajnkl4jw1ps5vmsz2l4b0d"))))
|
(base32 "1wd4llm54fvc1pc4nqfdc43g637gfx1f4z4aznvdr3biy9jksqza"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(if tests?
|
||||||
|
(with-directory-excursion "examples"
|
||||||
|
(invoke "bash" "demo.sh"))
|
||||||
|
(format #f "test suite not run.~%")))))))
|
||||||
(propagated-inputs (list python-matplotlib python-numpy python-scipy))
|
(propagated-inputs (list python-matplotlib python-numpy python-scipy))
|
||||||
(native-inputs (list python-setuptools python-wheel))
|
(native-inputs (list python-setuptools))
|
||||||
(home-page "https://github.com/huangyh09/vireoSNP")
|
(home-page "https://github.com/huangyh09/vireoSNP")
|
||||||
(synopsis "Deconvolution based on SNP for multiplexed scRNA-seq data")
|
(synopsis "Deconvolution based on SNP for multiplexed scRNA-seq data")
|
||||||
(description
|
(description
|
||||||
|
@ -25175,7 +25190,7 @@ Position (SNP) for multiplexed scRNA-seq data. The name vireo stand for
|
||||||
Variational Inference for Reconstructing Ensemble Origin by expressed SNPs in
|
Variational Inference for Reconstructing Ensemble Origin by expressed SNPs in
|
||||||
multiplexed scRNA-seq data and follows the clone identification from
|
multiplexed scRNA-seq data and follows the clone identification from
|
||||||
single-cell data named @url{https://github.com/PMBio/cardelino, cardelino}.")
|
single-cell data named @url{https://github.com/PMBio/cardelino, cardelino}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public ccwl
|
(define-public ccwl
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue