diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 12:44:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 15:04:02 +0100 |
commit | 4c6cb448fdd79a446819c410a26342fd105737d4 (patch) | |
tree | 1c615da35c9ec10d04ef35a387c08160e651d627 /gnu/packages | |
parent | c1fe074915a489f6b39176fedea57c2cf6cc6fa5 (diff) | |
download | guix-4c6cb448fdd79a446819c410a26342fd105737d4.tar.gz |
gnu: sjcount: Remove trailing #T.
* gnu/packages/bioinformatics.scm (sjcount)[arguments]: Remove trailing #T from build phases.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 65cfc483f8..95b4ca1b78 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -11380,16 +11380,14 @@ analyses in addition to large-scale sequence-level searches.") (("-I \\$\\{SAMTOOLS_DIR\\}") (string-append "-I" (assoc-ref inputs "samtools") "/include/samtools")) - (("-lz ") "-lz -lpthread ")) - #t)) + (("-lz ") "-lz -lpthread ")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (for-each (lambda (tool) (install-file tool (string-append (assoc-ref outputs "out") "/bin"))) - '("j_count" "b_count" "sjcount")) - #t))))) + '("j_count" "b_count" "sjcount"))))))) (inputs `(("samtools" ,samtools-0.1) ("zlib" ,zlib))) |