mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-tspex.
* gnu/packages/python-science.scm (python-tspex): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
a370fcbc5f
commit
ba8679fb24
1 changed files with 20 additions and 0 deletions
|
@ -348,6 +348,26 @@ (define-public python-trimesh
|
|||
library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-tspex
|
||||
(package
|
||||
(name "python-tspex")
|
||||
(version "0.6.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "tspex" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0x64ki1nzhms2nb8xpng92bzh5chs850dvapr93pkg05rk22m6mv"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
(list python-matplotlib python-numpy python-pandas python-xlrd))
|
||||
(home-page "https://apcamargo.github.io/tspex/")
|
||||
(synopsis "Calculate tissue-specificity metrics for gene expression")
|
||||
(description
|
||||
"This package provides a Python package for calculating
|
||||
tissue-specificity metrics for gene expression.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-pandas
|
||||
(package
|
||||
(name "python-pandas")
|
||||
|
|
Loading…
Reference in a new issue