gnu: sjcount: Remove trailing #T.

* gnu/packages/bioinformatics.scm (sjcount)[arguments]: Remove trailing #T
from build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-05 12:44:53 +01:00
parent c1fe074915
commit 4c6cb448fd
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -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)))