gnu: kallisto: Update to 0.44.0.
* gnu/packages/bioinformatics.scm (kallisto): Update to 0.44.0. [source]: Fetch from git. [arguments]: Add build phase to use htslib from Guix. [inputs]: Add htslib.
This commit is contained in:
parent
a8fa86c477
commit
e8a7eab169
1 changed files with 27 additions and 7 deletions
|
@ -11735,19 +11735,39 @@ (define-public paml
|
||||||
(define-public kallisto
|
(define-public kallisto
|
||||||
(package
|
(package
|
||||||
(name "kallisto")
|
(name "kallisto")
|
||||||
(version "0.43.1")
|
(version "0.44.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/pachterlab/"
|
(uri (git-reference
|
||||||
"kallisto/archive/v" version ".tar.gz"))
|
(url "https://github.com/pachterlab/kallisto.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"03j3iqhvq7ya3c91gidly3k3jvgm97vjq4scihrlxh315j696r11"))))
|
"0nj382jiywqnpgvyhichajpkkh5r0bapn43f4dx40zdaq5v4m40m"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments `(#:tests? #f)) ; no "check" target
|
(arguments
|
||||||
|
`(#:tests? #f ; no "check" target
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'do-not-use-bundled-htslib
|
||||||
|
(lambda _
|
||||||
|
(substitute* "CMakeLists.txt"
|
||||||
|
(("^ExternalProject_Add" m)
|
||||||
|
(string-append "if (NEVER)\n" m))
|
||||||
|
(("^\\)")
|
||||||
|
(string-append ")\nendif(NEVER)"))
|
||||||
|
(("include_directories\\(\\$\\{htslib_PREFIX.*" m)
|
||||||
|
(string-append "# " m)))
|
||||||
|
(substitute* "src/CMakeLists.txt"
|
||||||
|
(("target_link_libraries\\(kallisto kallisto_core pthread \
|
||||||
|
\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/../ext/htslib/libhts.a\\)")
|
||||||
|
"target_link_libraries(kallisto kallisto_core pthread hts)")
|
||||||
|
(("include_directories\\(\\.\\./ext/htslib\\)") ""))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("hdf5" ,hdf5)
|
`(("hdf5" ,hdf5)
|
||||||
|
("htslib" ,htslib)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(home-page "http://pachterlab.github.io/kallisto/")
|
(home-page "http://pachterlab.github.io/kallisto/")
|
||||||
(synopsis "Near-optimal RNA-Seq quantification")
|
(synopsis "Near-optimal RNA-Seq quantification")
|
||||||
|
|
Loading…
Reference in a new issue