summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-12-01 10:52:55 +0100
committerRicardo Wurmus <rekado@elephly.net>2017-12-03 18:38:58 +0100
commitd112e5a8c2cfc3ff32b143f5a92964e849631ca2 (patch)
treef72198c438cc3c9581b144ae4bf47152282e6490
parent803a9d5c37479c67734c4518a018c8795471ac12 (diff)
gnu: Add kallisto.
* gnu/packages/bioinformatics.scm (kallisto): New variable.
-rw-r--r--gnu/packages/bioinformatics.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5b3eec86dbd..f0b589b6c0a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -11079,3 +11079,32 @@ contains a few programs for model fitting and phylogenetic tree reconstruction
11079using nucleotide or amino-acid sequence data.") 11079using nucleotide or amino-acid sequence data.")
11080 ;; GPLv3 only 11080 ;; GPLv3 only
11081 (license license:gpl3))) 11081 (license license:gpl3)))
11082
11083(define-public kallisto
11084 (package
11085 (name "kallisto")
11086 (version "0.43.1")
11087 (source (origin
11088 (method url-fetch)
11089 (uri (string-append "https://github.com/pachterlab/"
11090 "kallisto/archive/v" version ".tar.gz"))
11091 (file-name (string-append name "-" version ".tar.gz"))
11092 (sha256
11093 (base32
11094 "03j3iqhvq7ya3c91gidly3k3jvgm97vjq4scihrlxh315j696r11"))))
11095 (build-system cmake-build-system)
11096 (arguments `(#:tests? #f)) ; no "check" target
11097 (inputs
11098 `(("hdf5" ,hdf5)
11099 ("zlib" ,zlib)))
11100 (home-page "http://pachterlab.github.io/kallisto/")
11101 (synopsis "Near-optimal RNA-Seq quantification")
11102 (description
11103 "Kallisto is a program for quantifying abundances of transcripts from
11104RNA-Seq data, or more generally of target sequences using high-throughput
11105sequencing reads. It is based on the novel idea of pseudoalignment for
11106rapidly determining the compatibility of reads with targets, without the need
11107for alignment. Pseudoalignment of reads preserves the key information needed
11108for quantification, and kallisto is therefore not only fast, but also as
11109accurate as existing quantification tools.")
11110 (license license:bsd-2)))