summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2022-06-16 15:18:17 +0200
committerRicardo Wurmus <rekado@elephly.net>2022-06-16 15:20:59 +0200
commit3535d8dc5ae3116d8c3bedf0d5c920b19ba41cc5 (patch)
tree99cd15c7e82111c0212778c14fb90e44972fdb07 /gnu
parentfbe5707b73a5c2e8432ebac2e28b80ad19d89c97 (diff)
gnu: Add python-arboreto.
* gnu/packages/bioinformatics.scm (python-arboreto): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 6dde6b6976c..e6b14069ec7 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -13424,6 +13424,39 @@ files.")
13424pycisTarget and SCENIC.") 13424pycisTarget and SCENIC.")
13425 (license license:gpl3+))) 13425 (license license:gpl3+)))
13426 13426
13427(define-public python-arboreto
13428 (package
13429 (name "python-arboreto")
13430 (version "0.1.6")
13431 (source (origin
13432 (method git-fetch)
13433 (uri (git-reference
13434 (url "https://github.com/aertslab/arboreto")
13435 (commit "2f475dca08f47a60acc2beb8dd897e77b7495ca4")))
13436 (file-name (git-file-name name version))
13437 (sha256
13438 (base32
13439 "0l0im8ay7l2d24f7vaha454vsaha9s36bfqhbijg3b8ir8apsd7l"))))
13440 (build-system python-build-system)
13441 ;; Lots of tests fail because python-distributed fails to start the
13442 ;; "Nanny" process.
13443 (arguments '(#:tests? #false))
13444 (propagated-inputs
13445 (list python-bokeh
13446 python-dask
13447 python-distributed
13448 python-numpy
13449 python-pandas
13450 python-scikit-learn
13451 python-scipy
13452 python-tornado-6))
13453 (home-page "https://github.com/aertslab/arboreto")
13454 (synopsis "Gene regulatory network inference using tree-based ensemble regressors")
13455 (description
13456 "This package implements scalable gene regulatory network inference using
13457tree-based ensemble regressors.")
13458 (license license:bsd-3)))
13459
13427(define-public vbz-compression 13460(define-public vbz-compression
13428 (package 13461 (package
13429 (name "vbz-compression") 13462 (name "vbz-compression")