gnu: star: Update to 2.5.1b.
* gnu/packages/bioinformatics.scm (star): Update to 2.5.1b. [source]: Remove bundled htslib sources and pre-built binaries. [arguments]: Add phase "do-not-use-bundled-htslib". [inputs]: Add "htslib".
This commit is contained in:
parent
c0266e8d03
commit
3062d750b4
|
@ -3019,19 +3019,25 @@ of these reads to align data quickly through a hash-based indexing scheme.")
|
||||||
(define-public star
|
(define-public star
|
||||||
(package
|
(package
|
||||||
(name "star")
|
(name "star")
|
||||||
(version "2.4.2a")
|
(version "2.5.1b")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://github.com/alexdobin/STAR/archive/"
|
||||||
"https://github.com/alexdobin/STAR/archive/STAR_"
|
version ".tar.gz"))
|
||||||
version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c3rnm7r5l0kl3d04gl1g7938xqf1c2l0mla87rlplqg1hcns5mc"))
|
"0wzcfhkg10apnh0y73xlarfa79xxwxdizicbdl11wb48awk44iq4"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(substitute* "source/Makefile"
|
'(begin
|
||||||
(("/bin/rm") "rm")))))
|
(substitute* "source/Makefile"
|
||||||
|
(("/bin/rm") "rm"))
|
||||||
|
;; Remove pre-built binaries and bundled htslib sources.
|
||||||
|
(delete-file-recursively "bin/MacOSX_x86_64")
|
||||||
|
(delete-file-recursively "bin/Linux_x86_64")
|
||||||
|
(delete-file-recursively "source/htslib")
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;no check target
|
'(#:tests? #f ;no check target
|
||||||
|
@ -3040,6 +3046,23 @@ of these reads to align data quickly through a hash-based indexing scheme.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'enter-source-dir
|
(add-after 'unpack 'enter-source-dir
|
||||||
(lambda _ (chdir "source") #t))
|
(lambda _ (chdir "source") #t))
|
||||||
|
(add-after 'enter-source-dir 'do-not-use-bundled-htslib
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("(Depend.list: \\$\\(SOURCES\\) parametersDefault\\.xxd) htslib"
|
||||||
|
_ prefix) prefix))
|
||||||
|
(substitute* '("BAMfunctions.cpp"
|
||||||
|
"signalFromBAM.h"
|
||||||
|
"bam_cat.h"
|
||||||
|
"bam_cat.c"
|
||||||
|
"STAR.cpp"
|
||||||
|
"bamRemoveDuplicates.cpp")
|
||||||
|
(("#include \"htslib/([^\"]+\\.h)\"" _ header)
|
||||||
|
(string-append "#include <" header ">")))
|
||||||
|
(substitute* "IncludeDefine.h"
|
||||||
|
(("\"htslib/(htslib/[^\"]+.h)\"" _ header)
|
||||||
|
(string-append "<" header ">")))
|
||||||
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
|
||||||
|
@ -3049,7 +3072,8 @@ of these reads to align data quickly through a hash-based indexing scheme.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("vim" ,vim))) ; for xxd
|
`(("vim" ,vim))) ; for xxd
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)))
|
`(("htslib" ,htslib)
|
||||||
|
("zlib" ,zlib)))
|
||||||
(home-page "https://github.com/alexdobin/STAR")
|
(home-page "https://github.com/alexdobin/STAR")
|
||||||
(synopsis "Universal RNA-seq aligner")
|
(synopsis "Universal RNA-seq aligner")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue