gnu: Add python-loompy-for-pigx-scrnaseq.

* gnu/packages/bioinformatics.scm (python-loompy-for-pigx-scrnaseq): New variable.
This commit is contained in:
Ricardo Wurmus 2019-04-02 16:11:12 +02:00
parent 82cc117450
commit dc112a0fe2
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -12038,6 +12038,23 @@ (define-public python-loompy
single-cell RNA-seq data.")
(license license:bsd-3)))
;; pigx-scrnaseq does not work with the latest version of loompy.
(define-public python-loompy-for-pigx-scrnaseq
(package (inherit python-loompy)
(name "python-loompy")
(version "2.0.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/linnarsson-lab/loompy.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0pjyl532pl8sbv71yci6h0agchn0naw2qjcwj50n6afrsahbsag3"))))
;; There are none.
(arguments '(#:tests? #f))))
;; We cannot use the latest commit because it requires Java 9.
(define-public java-forester
(let ((commit "86b07efe302d5094b42deed9260f719a4c4ac2e6")