mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add python-magic-impute.
* gnu/packages/bioinformatics.scm (python-magic-impute): New variable. Change-Id: Iba5240e9920a1045078c736553cb1d56069963b5
This commit is contained in:
parent
1bdc4eeb46
commit
6a82745746
1 changed files with 39 additions and 0 deletions
|
@ -2149,6 +2149,45 @@ (define-public python-logomaker
|
||||||
multi-panel figures.")
|
multi-panel figures.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-magic-impute
|
||||||
|
(package
|
||||||
|
(name "python-magic-impute")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/KrishnaswamyLab/MAGIC")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1yjs16vg87lcg9g16bnblg1v9sk73j6dm229lkcz0bfjlzxjhv8w"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #false ;there are none
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _ (chdir "python"))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-future
|
||||||
|
python-graphtools
|
||||||
|
python-matplotlib
|
||||||
|
python-numpy
|
||||||
|
python-pandas
|
||||||
|
python-scikit-learn
|
||||||
|
python-scipy
|
||||||
|
python-tasklogger))
|
||||||
|
(home-page "https://github.com/KrishnaswamyLab/MAGIC")
|
||||||
|
(synopsis "Markov affinity-based graph imputation of cells")
|
||||||
|
(description "MAGIC is an interactive tool to impute missing values in
|
||||||
|
single-cell sequencing data and to restore the structure of the data. It also
|
||||||
|
provides data pre-processing functionality such as dimensionality reduction
|
||||||
|
and gene expression visualization.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public python-parabam
|
(define-public python-parabam
|
||||||
(package
|
(package
|
||||||
(name "python-parabam")
|
(name "python-parabam")
|
||||||
|
|
Loading…
Reference in a new issue