gnu: pigx-rnaseq: Update to 0.0.7.

* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.7.
[inputs]: Add coreutils and sed.
This commit is contained in:
Ricardo Wurmus 2019-06-20 22:29:07 +02:00
parent 78407a27cf
commit 28618b05f0
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 4 deletions

View File

@ -12544,15 +12544,15 @@ once. This package provides tools to perform Drop-seq analyses.")
(define-public pigx-rnaseq (define-public pigx-rnaseq
(package (package
(name "pigx-rnaseq") (name "pigx-rnaseq")
(version "0.0.6") (version "0.0.7")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/" (uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/"
"releases/download/v." version "releases/download/v" version
"/pigx_rnaseq-" version ".tar.gz")) "/pigx_rnaseq-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1w7cwbbz1sbvbyqh5c60iqcjfs3qsppmdgxqa1i0w5wwb9mkh27m")))) "013inbh22bjvwg2w0kx5i42k66w1zl4310ldip2ax6msgprs2ydj"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:parallel-tests? #f ; not supported `(#:parallel-tests? #f ; not supported
@ -12567,7 +12567,9 @@ once. This package provides tools to perform Drop-seq analyses.")
(("^ test.sh") "")) (("^ test.sh") ""))
#t))))) #t)))))
(inputs (inputs
`(("gzip" ,gzip) `(("coreutils" ,coreutils)
("sed" ,sed)
("gzip" ,gzip)
("snakemake" ,snakemake) ("snakemake" ,snakemake)
("fastqc" ,fastqc) ("fastqc" ,fastqc)
("multiqc" ,multiqc) ("multiqc" ,multiqc)