diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-01-06 13:59:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-01-06 13:59:04 +0100 |
commit | 0070e52ade4d521e21ecf8da10a3485aa2615dc3 (patch) | |
tree | bdd21b0b34bba7a81b105a5c764238a7d4cbeb89 | |
parent | f5ffcd31c2ea55423ec762e1a5f653cd2af69c85 (diff) | |
download | guix-0070e52ade4d521e21ecf8da10a3485aa2615dc3.tar.gz |
gnu: filtlong: Drop input labels.
* gnu/packages/bioinformatics.scm (filtlong)[inputs]: Drop labels.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 164a2c621a..4bc4dde36c 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14345,9 +14345,9 @@ phase + query phase).") (substitute* "scripts/read_info_histograms.sh" (("awk") (which "gawk")))))))) (inputs - `(("gawk" ,gawk) ;for read_info_histograms.sh - ("python" ,python-2) ;required for histogram.py - ("zlib" ,zlib))) + (list gawk ;for read_info_histograms.sh + python-2 ;required for histogram.py + zlib)) (home-page "https://github.com/rrwick/Filtlong/") (synopsis "Tool for quality filtering of Nanopore and PacBio data") (description |