diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-06-20 22:29:07 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-06-20 22:29:43 +0200 |
commit | 28618b05f002720bc56bae76659717a0eba4dd8b (patch) | |
tree | ac90cfb7d7c51a5686402799730d5c7cf41a751d | |
parent | 78407a27cf69ef5bbc4facbb5b483a7e62de1b84 (diff) | |
download | patches-28618b05f002720bc56bae76659717a0eba4dd8b.tar patches-28618b05f002720bc56bae76659717a0eba4dd8b.tar.gz |
gnu: pigx-rnaseq: Update to 0.0.7.
* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.7.
[inputs]: Add coreutils and sed.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 8cbb2e10d0..f1a73bca7e 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -12544,15 +12544,15 @@ once. This package provides tools to perform Drop-seq analyses.") (define-public pigx-rnaseq (package (name "pigx-rnaseq") - (version "0.0.6") + (version "0.0.7") (source (origin (method url-fetch) (uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/" - "releases/download/v." version + "releases/download/v" version "/pigx_rnaseq-" version ".tar.gz")) (sha256 (base32 - "1w7cwbbz1sbvbyqh5c60iqcjfs3qsppmdgxqa1i0w5wwb9mkh27m")))) + "013inbh22bjvwg2w0kx5i42k66w1zl4310ldip2ax6msgprs2ydj")))) (build-system gnu-build-system) (arguments `(#:parallel-tests? #f ; not supported @@ -12567,7 +12567,9 @@ once. This package provides tools to perform Drop-seq analyses.") (("^ test.sh") "")) #t))))) (inputs - `(("gzip" ,gzip) + `(("coreutils" ,coreutils) + ("sed" ,sed) + ("gzip" ,gzip) ("snakemake" ,snakemake) ("fastqc" ,fastqc) ("multiqc" ,multiqc) |