mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: tophat: Remove trailing #T from build phases and snippet.
* gnu/packages/bioinformatics.scm (tophat)[source]: Remove trailing #T from snippet. [arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
b339e181e1
commit
23322c2de8
1 changed files with 3 additions and 6 deletions
|
@ -2062,8 +2062,7 @@ (define-public tophat
|
|||
'(begin
|
||||
;; Remove bundled SeqAn and samtools
|
||||
(delete-file-recursively "src/SeqAn-1.4.2")
|
||||
(delete-file-recursively "src/samtools-0.1.18")
|
||||
#t))))
|
||||
(delete-file-recursively "src/samtools-0.1.18")))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:parallel-build? #f ; not supported
|
||||
|
@ -2078,8 +2077,7 @@ (define-public tophat
|
|||
(string-join
|
||||
(delete (string-append gcc "/include/c++")
|
||||
(string-split (getenv "CPLUS_INCLUDE_PATH") #\:))
|
||||
":"))
|
||||
#t)))
|
||||
":")))))
|
||||
(add-after 'unpack 'use-system-samtools
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/Makefile.in"
|
||||
|
@ -2099,8 +2097,7 @@ (define-public tophat
|
|||
"src/map2gtf.h"
|
||||
"src/align_status.h")
|
||||
(("#include <bam.h>") "#include <samtools/bam.h>")
|
||||
(("#include <sam.h>") "#include <samtools/sam.h>"))
|
||||
#t)))))
|
||||
(("#include <sam.h>") "#include <samtools/sam.h>")))))))
|
||||
(native-inputs
|
||||
`(("gcc@5" ,gcc-5))) ;; doesn't build with later versions
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue