gnu: r-hitc: Update to 1.24.0.
[jackhill/guix/guix.git] / gnu / packages / bioinformatics.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015, 2016, 2017, 2018 Ben Woodcroft <donttrustben@gmail.com>
4 ;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl>
5 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
6 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
7 ;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
8 ;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
9 ;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com>
10 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
11 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
12 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
13 ;;;
14 ;;; This file is part of GNU Guix.
15 ;;;
16 ;;; GNU Guix is free software; you can redistribute it and/or modify it
17 ;;; under the terms of the GNU General Public License as published by
18 ;;; the Free Software Foundation; either version 3 of the License, or (at
19 ;;; your option) any later version.
20 ;;;
21 ;;; GNU Guix is distributed in the hope that it will be useful, but
22 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;;; GNU General Public License for more details.
25 ;;;
26 ;;; You should have received a copy of the GNU General Public License
27 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
28
29 (define-module (gnu packages bioinformatics)
30 #:use-module ((guix licenses) #:prefix license:)
31 #:use-module (guix packages)
32 #:use-module (guix utils)
33 #:use-module (guix download)
34 #:use-module (guix git-download)
35 #:use-module (guix hg-download)
36 #:use-module (guix build-system ant)
37 #:use-module (guix build-system gnu)
38 #:use-module (guix build-system cmake)
39 #:use-module (guix build-system ocaml)
40 #:use-module (guix build-system perl)
41 #:use-module (guix build-system python)
42 #:use-module (guix build-system r)
43 #:use-module (guix build-system ruby)
44 #:use-module (guix build-system scons)
45 #:use-module (guix build-system trivial)
46 #:use-module (gnu packages)
47 #:use-module (gnu packages autotools)
48 #:use-module (gnu packages algebra)
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages bash)
51 #:use-module (gnu packages bison)
52 #:use-module (gnu packages boost)
53 #:use-module (gnu packages check)
54 #:use-module (gnu packages compression)
55 #:use-module (gnu packages cpio)
56 #:use-module (gnu packages cran)
57 #:use-module (gnu packages curl)
58 #:use-module (gnu packages documentation)
59 #:use-module (gnu packages databases)
60 #:use-module (gnu packages datastructures)
61 #:use-module (gnu packages file)
62 #:use-module (gnu packages flex)
63 #:use-module (gnu packages gawk)
64 #:use-module (gnu packages gcc)
65 #:use-module (gnu packages gd)
66 #:use-module (gnu packages gtk)
67 #:use-module (gnu packages glib)
68 #:use-module (gnu packages graph)
69 #:use-module (gnu packages groff)
70 #:use-module (gnu packages guile)
71 #:use-module (gnu packages haskell)
72 #:use-module (gnu packages image)
73 #:use-module (gnu packages imagemagick)
74 #:use-module (gnu packages java)
75 #:use-module (gnu packages jemalloc)
76 #:use-module (gnu packages ldc)
77 #:use-module (gnu packages linux)
78 #:use-module (gnu packages logging)
79 #:use-module (gnu packages machine-learning)
80 #:use-module (gnu packages man)
81 #:use-module (gnu packages maths)
82 #:use-module (gnu packages mpi)
83 #:use-module (gnu packages ncurses)
84 #:use-module (gnu packages ocaml)
85 #:use-module (gnu packages pcre)
86 #:use-module (gnu packages parallel)
87 #:use-module (gnu packages pdf)
88 #:use-module (gnu packages perl)
89 #:use-module (gnu packages perl-check)
90 #:use-module (gnu packages pkg-config)
91 #:use-module (gnu packages popt)
92 #:use-module (gnu packages protobuf)
93 #:use-module (gnu packages python)
94 #:use-module (gnu packages python-web)
95 #:use-module (gnu packages readline)
96 #:use-module (gnu packages ruby)
97 #:use-module (gnu packages serialization)
98 #:use-module (gnu packages shells)
99 #:use-module (gnu packages statistics)
100 #:use-module (gnu packages swig)
101 #:use-module (gnu packages tbb)
102 #:use-module (gnu packages tex)
103 #:use-module (gnu packages texinfo)
104 #:use-module (gnu packages textutils)
105 #:use-module (gnu packages time)
106 #:use-module (gnu packages tls)
107 #:use-module (gnu packages vim)
108 #:use-module (gnu packages web)
109 #:use-module (gnu packages xml)
110 #:use-module (gnu packages xorg)
111 #:use-module (srfi srfi-1)
112 #:use-module (ice-9 match))
113
114 (define-public aragorn
115 (package
116 (name "aragorn")
117 (version "1.2.38")
118 (source (origin
119 (method url-fetch)
120 (uri (string-append
121 "http://mbio-serv2.mbioekol.lu.se/ARAGORN/Downloads/aragorn"
122 version ".tgz"))
123 (sha256
124 (base32
125 "09i1rg716smlbnixfm7q1ml2mfpaa2fpn3hwjg625ysmfwwy712b"))))
126 (build-system gnu-build-system)
127 (arguments
128 `(#:tests? #f ; there are no tests
129 #:phases
130 (modify-phases %standard-phases
131 (delete 'configure)
132 (replace 'build
133 (lambda _
134 (zero? (system* "gcc"
135 "-O3"
136 "-ffast-math"
137 "-finline-functions"
138 "-o"
139 "aragorn"
140 (string-append "aragorn" ,version ".c")))))
141 (replace 'install
142 (lambda* (#:key outputs #:allow-other-keys)
143 (let* ((out (assoc-ref outputs "out"))
144 (bin (string-append out "/bin"))
145 (man (string-append out "/share/man/man1")))
146 (mkdir-p bin)
147 (install-file "aragorn" bin)
148 (mkdir-p man)
149 (install-file "aragorn.1" man))
150 #t)))))
151 (home-page "http://mbio-serv2.mbioekol.lu.se/ARAGORN")
152 (synopsis "Detect tRNA, mtRNA and tmRNA genes in nucleotide sequences")
153 (description
154 "Aragorn identifies transfer RNA, mitochondrial RNA and
155 transfer-messenger RNA from nucleotide sequences, based on homology to known
156 tRNA consensus sequences and RNA structure. It also outputs the secondary
157 structure of the predicted RNA.")
158 (license license:gpl2)))
159
160 (define-public bamm
161 (package
162 (name "bamm")
163 (version "1.7.3")
164 (source (origin
165 (method url-fetch)
166 ;; BamM is not available on pypi.
167 (uri (string-append
168 "https://github.com/Ecogenomics/BamM/archive/"
169 version ".tar.gz"))
170 (file-name (string-append name "-" version ".tar.gz"))
171 (sha256
172 (base32
173 "1f35yxp4pc8aadsvbpg6r4kg2jh4fkjci0iby4iyljm6980sac0s"))
174 (modules '((guix build utils)))
175 (snippet
176 `(begin
177 ;; Delete bundled htslib.
178 (delete-file-recursively "c/htslib-1.3.1")
179 #t))))
180 (build-system python-build-system)
181 (arguments
182 `(#:python ,python-2 ; BamM is Python 2 only.
183 ;; Do not use bundled libhts. Do use the bundled libcfu because it has
184 ;; been modified from its original form.
185 #:configure-flags
186 (let ((htslib (assoc-ref %build-inputs "htslib")))
187 (list "--with-libhts-lib" (string-append htslib "/lib")
188 "--with-libhts-inc" (string-append htslib "/include/htslib")))
189 #:phases
190 (modify-phases %standard-phases
191 (add-after 'unpack 'autogen
192 (lambda _
193 (with-directory-excursion "c"
194 (let ((sh (which "sh")))
195 ;; Use autogen so that 'configure' works.
196 (substitute* "autogen.sh" (("/bin/sh") sh))
197 (setenv "CONFIG_SHELL" sh)
198 (substitute* "configure" (("/bin/sh") sh))
199 (zero? (system* "./autogen.sh"))))))
200 (delete 'build)
201 ;; Run tests after installation so compilation only happens once.
202 (delete 'check)
203 (add-after 'install 'wrap-executable
204 (lambda* (#:key outputs #:allow-other-keys)
205 (let* ((out (assoc-ref outputs "out"))
206 (path (getenv "PATH")))
207 (wrap-program (string-append out "/bin/bamm")
208 `("PATH" ":" prefix (,path))))
209 #t))
210 (add-after 'wrap-executable 'post-install-check
211 (lambda* (#:key inputs outputs #:allow-other-keys)
212 (setenv "PATH"
213 (string-append (assoc-ref outputs "out")
214 "/bin:"
215 (getenv "PATH")))
216 (setenv "PYTHONPATH"
217 (string-append
218 (assoc-ref outputs "out")
219 "/lib/python"
220 (string-take (string-take-right
221 (assoc-ref inputs "python") 5) 3)
222 "/site-packages:"
223 (getenv "PYTHONPATH")))
224 ;; There are 2 errors printed, but they are safe to ignore:
225 ;; 1) [E::hts_open_format] fail to open file ...
226 ;; 2) samtools view: failed to open ...
227 (zero? (system* "nosetests")))))))
228 (native-inputs
229 `(("autoconf" ,autoconf)
230 ("automake" ,automake)
231 ("libtool" ,libtool)
232 ("zlib" ,zlib)
233 ("python-nose" ,python2-nose)
234 ("python-pysam" ,python2-pysam)))
235 (inputs
236 `(("htslib" ,htslib-1.3) ; At least one test fails on htslib-1.4+.
237 ("samtools" ,samtools)
238 ("bwa" ,bwa)
239 ("grep" ,grep)
240 ("sed" ,sed)
241 ("coreutils" ,coreutils)))
242 (propagated-inputs
243 `(("python-numpy" ,python2-numpy)))
244 (home-page "http://ecogenomics.github.io/BamM/")
245 (synopsis "Metagenomics-focused BAM file manipulator")
246 (description
247 "BamM is a C library, wrapped in python, to efficiently generate and
248 parse BAM files, specifically for the analysis of metagenomic data. For
249 instance, it implements several methods to assess contig-wise read coverage.")
250 (license license:lgpl3+)))
251
252 (define-public bamtools
253 (package
254 (name "bamtools")
255 (version "2.5.1")
256 (source (origin
257 (method url-fetch)
258 (uri (string-append
259 "https://github.com/pezmaster31/bamtools/archive/v"
260 version ".tar.gz"))
261 (file-name (string-append name "-" version ".tar.gz"))
262 (sha256
263 (base32
264 "1z3kg24qrwq13a88n9d86izngrar4fll7gr6phddb2faw75pdgaa"))))
265 (build-system cmake-build-system)
266 (arguments
267 `(#:tests? #f ;no "check" target
268 #:phases
269 (modify-phases %standard-phases
270 (add-before
271 'configure 'set-ldflags
272 (lambda* (#:key outputs #:allow-other-keys)
273 (setenv "LDFLAGS"
274 (string-append
275 "-Wl,-rpath="
276 (assoc-ref outputs "out") "/lib/bamtools")))))))
277 (inputs `(("zlib" ,zlib)))
278 (home-page "https://github.com/pezmaster31/bamtools")
279 (synopsis "C++ API and command-line toolkit for working with BAM data")
280 (description
281 "BamTools provides both a C++ API and a command-line toolkit for handling
282 BAM files.")
283 (license license:expat)))
284
285 (define-public bcftools
286 (package
287 (name "bcftools")
288 (version "1.8")
289 (source (origin
290 (method url-fetch)
291 (uri (string-append
292 "https://github.com/samtools/bcftools/releases/download/"
293 version "/bcftools-" version ".tar.bz2"))
294 (sha256
295 (base32
296 "1vgw2mwngq20c530zim52zvgmw1lci8rzl33pvh44xqk3xlzvjsa"))
297 (modules '((guix build utils)))
298 (snippet
299 ;; Delete bundled htslib.
300 '(delete-file-recursively "htslib-1.8"))))
301 (build-system gnu-build-system)
302 (arguments
303 `(#:test-target "test"
304 #:configure-flags (list "--with-htslib=system")
305 #:make-flags
306 (list
307 "USE_GPL=1"
308 "LIBS=-lgsl -lgslcblas"
309 (string-append "prefix=" (assoc-ref %outputs "out"))
310 (string-append "HTSDIR=" (assoc-ref %build-inputs "htslib") "/include")
311 (string-append "HTSLIB=" (assoc-ref %build-inputs "htslib") "/lib/libhts.so")
312 (string-append "BGZIP=" (assoc-ref %build-inputs "htslib") "/bin/bgzip")
313 (string-append "TABIX=" (assoc-ref %build-inputs "htslib") "/bin/tabix")
314 (string-append "PACKAGE_VERSION=" ,version))
315 #:phases
316 (modify-phases %standard-phases
317 (add-before 'check 'patch-tests
318 (lambda _
319 (substitute* "test/test.pl"
320 (("/bin/bash") (which "bash")))
321 #t)))))
322 (native-inputs
323 `(("htslib" ,htslib)
324 ("perl" ,perl)))
325 (inputs
326 `(("gsl" ,gsl)
327 ("zlib" ,zlib)))
328 (home-page "https://samtools.github.io/bcftools/")
329 (synopsis "Utilities for variant calling and manipulating VCFs and BCFs")
330 (description
331 "BCFtools is a set of utilities that manipulate variant calls in the
332 Variant Call Format (VCF) and its binary counterpart BCF. All commands work
333 transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.")
334 ;; The sources are dual MIT/GPL, but becomes GPL-only when USE_GPL=1.
335 (license (list license:gpl3+ license:expat))))
336
337 (define-public bedops
338 (package
339 (name "bedops")
340 (version "2.4.33")
341 (source (origin
342 (method url-fetch)
343 (uri (string-append "https://github.com/bedops/bedops/archive/v"
344 version ".tar.gz"))
345 (file-name (string-append name "-" version ".tar.gz"))
346 (sha256
347 (base32
348 "0kx4awrwby8f33wqyx8w7ms7v25xhf0d421csgf96a3hfzn2mb0m"))))
349 (build-system gnu-build-system)
350 (arguments
351 '(#:tests? #f
352 #:make-flags (list (string-append "BINDIR=" %output "/bin"))
353 #:phases
354 (modify-phases %standard-phases
355 (add-after 'unpack 'unpack-tarballs
356 (lambda _
357 ;; FIXME: Bedops includes tarballs of minimally patched upstream
358 ;; libraries jansson, zlib, and bzip2. We cannot just use stock
359 ;; libraries because at least one of the libraries (zlib) is
360 ;; patched to add a C++ function definition (deflateInit2cpp).
361 ;; Until the Bedops developers offer a way to link against system
362 ;; libraries we have to build the in-tree copies of these three
363 ;; libraries.
364
365 ;; See upstream discussion:
366 ;; https://github.com/bedops/bedops/issues/124
367
368 ;; Unpack the tarballs to benefit from shebang patching.
369 (with-directory-excursion "third-party"
370 (and (zero? (system* "tar" "xvf" "jansson-2.6.tar.bz2"))
371 (zero? (system* "tar" "xvf" "zlib-1.2.7.tar.bz2"))
372 (zero? (system* "tar" "xvf" "bzip2-1.0.6.tar.bz2"))))
373 ;; Disable unpacking of tarballs in Makefile.
374 (substitute* "system.mk/Makefile.linux"
375 (("^\tbzcat .*") "\t@echo \"not unpacking\"\n")
376 (("\\./configure") "CONFIG_SHELL=bash ./configure"))
377 (substitute* "third-party/zlib-1.2.7/Makefile.in"
378 (("^SHELL=.*$") "SHELL=bash\n"))
379 #t))
380 (delete 'configure))))
381 (home-page "https://github.com/bedops/bedops")
382 (synopsis "Tools for high-performance genomic feature operations")
383 (description
384 "BEDOPS is a suite of tools to address common questions raised in genomic
385 studies---mostly with regard to overlap and proximity relationships between
386 data sets. It aims to be scalable and flexible, facilitating the efficient
387 and accurate analysis and management of large-scale genomic data.
388
389 BEDOPS provides tools that perform highly efficient and scalable Boolean and
390 other set operations, statistical calculations, archiving, conversion and
391 other management of genomic data of arbitrary scale. Tasks can be easily
392 split by chromosome for distributing whole-genome analyses across a
393 computational cluster.")
394 (license license:gpl2+)))
395
396 (define-public bedtools
397 (package
398 (name "bedtools")
399 (version "2.27.1")
400 (source (origin
401 (method url-fetch)
402 (uri (string-append "https://github.com/arq5x/bedtools2/releases/"
403 "download/v" version "/"
404 "bedtools-" version ".tar.gz"))
405 (sha256
406 (base32
407 "1ndg5yknrxl4djx8ddzgk12rrbiidfpmkkg5z3f95jzryfxarhn8"))))
408 (build-system gnu-build-system)
409 (arguments
410 '(#:test-target "test"
411 #:make-flags
412 (list (string-append "prefix=" (assoc-ref %outputs "out")))
413 #:phases
414 (modify-phases %standard-phases
415 (delete 'configure))))
416 (native-inputs `(("python" ,python-2)))
417 (inputs
418 `(("samtools" ,samtools)
419 ("zlib" ,zlib)))
420 (home-page "https://github.com/arq5x/bedtools2")
421 (synopsis "Tools for genome analysis and arithmetic")
422 (description
423 "Collectively, the bedtools utilities are a swiss-army knife of tools for
424 a wide-range of genomics analysis tasks. The most widely-used tools enable
425 genome arithmetic: that is, set theory on the genome. For example, bedtools
426 allows one to intersect, merge, count, complement, and shuffle genomic
427 intervals from multiple files in widely-used genomic file formats such as BAM,
428 BED, GFF/GTF, VCF.")
429 (license license:gpl2)))
430
431 ;; Later releases of bedtools produce files with more columns than
432 ;; what Ribotaper expects.
433 (define-public bedtools-2.18
434 (package (inherit bedtools)
435 (name "bedtools")
436 (version "2.18.0")
437 (source (origin
438 (method url-fetch)
439 (uri (string-append "https://github.com/arq5x/bedtools2/"
440 "archive/v" version ".tar.gz"))
441 (file-name (string-append name "-" version ".tar.gz"))
442 (sha256
443 (base32
444 "05vrnr8yp7swfagshzpgqmzk1blnwnq8pq5pckzi1m26w98d63vf"))))
445 (arguments
446 '(#:test-target "test"
447 #:phases
448 (modify-phases %standard-phases
449 (delete 'configure)
450 (replace 'install
451 (lambda* (#:key outputs #:allow-other-keys)
452 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
453 (for-each (lambda (file)
454 (install-file file bin))
455 (find-files "bin" ".*")))
456 #t)))))))
457
458 (define-public ribotaper
459 (package
460 (name "ribotaper")
461 (version "1.3.1")
462 (source (origin
463 (method url-fetch)
464 (uri (string-append "https://ohlerlab.mdc-berlin.de/"
465 "files/RiboTaper/RiboTaper_Version_"
466 version ".tar.gz"))
467 (sha256
468 (base32
469 "0ykjbps1y3z3085q94npw8i9x5gldc6shy8vlc08v76zljsm07hv"))))
470 (build-system gnu-build-system)
471 (arguments
472 `(#:phases
473 (modify-phases %standard-phases
474 (add-after 'install 'wrap-executables
475 (lambda* (#:key inputs outputs #:allow-other-keys)
476 (let* ((out (assoc-ref outputs "out")))
477 (for-each
478 (lambda (script)
479 (wrap-program (string-append out "/bin/" script)
480 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))))
481 '("create_annotations_files.bash"
482 "create_metaplots.bash"
483 "Ribotaper_ORF_find.sh"
484 "Ribotaper.sh"))))))))
485 (inputs
486 `(("bedtools" ,bedtools-2.18)
487 ("samtools" ,samtools-0.1)
488 ("r-minimal" ,r-minimal)
489 ("r-foreach" ,r-foreach)
490 ("r-xnomial" ,r-xnomial)
491 ("r-domc" ,r-domc)
492 ("r-multitaper" ,r-multitaper)
493 ("r-seqinr" ,r-seqinr)))
494 (home-page "https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/")
495 (synopsis "Define translated ORFs using ribosome profiling data")
496 (description
497 "Ribotaper is a method for defining translated @dfn{open reading
498 frames} (ORFs) using ribosome profiling (ribo-seq) data. This package
499 provides the Ribotaper pipeline.")
500 (license license:gpl3+)))
501
502 (define-public ribodiff
503 (package
504 (name "ribodiff")
505 (version "0.2.2")
506 (source
507 (origin
508 (method url-fetch)
509 (uri (string-append "https://github.com/ratschlab/RiboDiff/"
510 "archive/v" version ".tar.gz"))
511 (file-name (string-append name "-" version ".tar.gz"))
512 (sha256
513 (base32
514 "0wpbwmfv05wdjxv7ikm664f7s7p7cqr8jnw99zrda0q67rl50aaj"))))
515 (build-system python-build-system)
516 (arguments
517 `(#:python ,python-2
518 #:phases
519 (modify-phases %standard-phases
520 ;; Generate an installable executable script wrapper.
521 (add-after 'unpack 'patch-setup.py
522 (lambda _
523 (substitute* "setup.py"
524 (("^(.*)packages=.*" line prefix)
525 (string-append line "\n"
526 prefix "scripts=['scripts/TE.py'],\n")))
527 #t)))))
528 (inputs
529 `(("python-numpy" ,python2-numpy)
530 ("python-matplotlib" ,python2-matplotlib)
531 ("python-scipy" ,python2-scipy)
532 ("python-statsmodels" ,python2-statsmodels)))
533 (native-inputs
534 `(("python-mock" ,python2-mock)
535 ("python-nose" ,python2-nose)))
536 (home-page "http://public.bmi.inf.ethz.ch/user/zhongy/RiboDiff/")
537 (synopsis "Detect translation efficiency changes from ribosome footprints")
538 (description "RiboDiff is a statistical tool that detects the protein
539 translational efficiency change from Ribo-Seq (ribosome footprinting) and
540 RNA-Seq data. It uses a generalized linear model to detect genes showing
541 difference in translational profile taking mRNA abundance into account. It
542 facilitates us to decipher the translational regulation that behave
543 independently with transcriptional regulation.")
544 (license license:gpl3+)))
545
546 (define-public bioawk
547 (package
548 (name "bioawk")
549 (version "1.0")
550 (source (origin
551 (method url-fetch)
552 (uri (string-append "https://github.com/lh3/bioawk/archive/v"
553 version ".tar.gz"))
554 (file-name (string-append name "-" version ".tar.gz"))
555 (sha256
556 (base32 "1daizxsk17ahi9n58fj8vpgwyhzrzh54bzqhanjanp88kgrz7gjw"))))
557 (build-system gnu-build-system)
558 (inputs
559 `(("zlib" ,zlib)))
560 (native-inputs
561 `(("bison" ,bison)))
562 (arguments
563 `(#:tests? #f ; There are no tests to run.
564 ;; Bison must generate files, before other targets can build.
565 #:parallel-build? #f
566 #:phases
567 (modify-phases %standard-phases
568 (delete 'configure) ; There is no configure phase.
569 (replace 'install
570 (lambda* (#:key outputs #:allow-other-keys)
571 (let* ((out (assoc-ref outputs "out"))
572 (bin (string-append out "/bin"))
573 (man (string-append out "/share/man/man1")))
574 (mkdir-p man)
575 (copy-file "awk.1" (string-append man "/bioawk.1"))
576 (install-file "bioawk" bin)))))))
577 (home-page "https://github.com/lh3/bioawk")
578 (synopsis "AWK with bioinformatics extensions")
579 (description "Bioawk is an extension to Brian Kernighan's awk, adding the
580 support of several common biological data formats, including optionally gzip'ed
581 BED, GFF, SAM, VCF, FASTA/Q and TAB-delimited formats with column names. It
582 also adds a few built-in functions and a command line option to use TAB as the
583 input/output delimiter. When the new functionality is not used, bioawk is
584 intended to behave exactly the same as the original BWK awk.")
585 (license license:x11)))
586
587 (define-public python2-pybedtools
588 (package
589 (name "python2-pybedtools")
590 (version "0.6.9")
591 (source (origin
592 (method url-fetch)
593 (uri (string-append
594 "https://pypi.python.org/packages/source/p/pybedtools/pybedtools-"
595 version ".tar.gz"))
596 (sha256
597 (base32
598 "1ldzdxw1p4y3g2ignmggsdypvqkcwqwzhdha4rbgpih048z5p4an"))))
599 (build-system python-build-system)
600 (arguments `(#:python ,python-2)) ; no Python 3 support
601 (inputs
602 `(("python-matplotlib" ,python2-matplotlib)))
603 (propagated-inputs
604 `(("bedtools" ,bedtools)
605 ("samtools" ,samtools)))
606 (native-inputs
607 `(("python-cython" ,python2-cython)
608 ("python-pyyaml" ,python2-pyyaml)
609 ("python-nose" ,python2-nose)))
610 (home-page "https://pythonhosted.org/pybedtools/")
611 (synopsis "Python wrapper for BEDtools programs")
612 (description
613 "pybedtools is a Python wrapper for Aaron Quinlan's BEDtools programs,
614 which are widely used for genomic interval manipulation or \"genome algebra\".
615 pybedtools extends BEDTools by offering feature-level manipulations from with
616 Python.")
617 (license license:gpl2+)))
618
619 (define-public python-biom-format
620 (package
621 (name "python-biom-format")
622 (version "2.1.6")
623 (source
624 (origin
625 (method url-fetch)
626 ;; Use GitHub as source because PyPI distribution does not contain
627 ;; test data: https://github.com/biocore/biom-format/issues/693
628 (uri (string-append "https://github.com/biocore/biom-format/archive/"
629 version ".tar.gz"))
630 (file-name (string-append name "-" version ".tar.gz"))
631 (sha256
632 (base32
633 "08cr7wpahk6zb31h4bs7jmzpvxcqv9s13xz40h6y2h656jvdvnpj"))))
634 (build-system python-build-system)
635 (propagated-inputs
636 `(("python-numpy" ,python-numpy)
637 ("python-scipy" ,python-scipy)
638 ("python-future" ,python-future)
639 ("python-click" ,python-click)
640 ("python-h5py" ,python-h5py)
641 ("python-pandas" ,python-pandas)))
642 (native-inputs
643 `(("python-nose" ,python-nose)))
644 (home-page "http://www.biom-format.org")
645 (synopsis "Biological Observation Matrix (BIOM) format utilities")
646 (description
647 "The BIOM file format is designed to be a general-use format for
648 representing counts of observations e.g. operational taxonomic units, KEGG
649 orthology groups or lipid types, in one or more biological samples
650 e.g. microbiome samples, genomes, metagenomes.")
651 (license license:bsd-3)
652 (properties `((python2-variant . ,(delay python2-biom-format))))))
653
654 (define-public python2-biom-format
655 (let ((base (package-with-python2 (strip-python2-variant python-biom-format))))
656 (package
657 (inherit base)
658 (arguments
659 `(#:phases
660 (modify-phases %standard-phases
661 ;; Do not require the unmaintained pyqi library.
662 (add-after 'unpack 'remove-pyqi
663 (lambda _
664 (substitute* "setup.py"
665 (("install_requires.append\\(\"pyqi\"\\)") "pass"))
666 #t)))
667 ,@(package-arguments base))))))
668
669 (define-public bioperl-minimal
670 (let* ((inputs `(("perl-module-build" ,perl-module-build)
671 ("perl-data-stag" ,perl-data-stag)
672 ("perl-libwww" ,perl-libwww)
673 ("perl-uri" ,perl-uri)))
674 (transitive-inputs
675 (map (compose package-name cadr)
676 (delete-duplicates
677 (concatenate
678 (map (compose package-transitive-target-inputs cadr) inputs))))))
679 (package
680 (name "bioperl-minimal")
681 (version "1.7.0")
682 (source
683 (origin
684 (method url-fetch)
685 (uri (string-append "https://github.com/bioperl/bioperl-live/"
686 "archive/release-"
687 (string-map (lambda (c)
688 (if (char=? c #\.)
689 #\- c)) version)
690 ".tar.gz"))
691 (sha256
692 (base32
693 "12phgpxwgkqflkwfb9dcqg7a31dpjlfhar8wcgv0aj5ln4akfz06"))))
694 (build-system perl-build-system)
695 (arguments
696 `(#:phases
697 (modify-phases %standard-phases
698 (add-after
699 'install 'wrap-programs
700 (lambda* (#:key outputs #:allow-other-keys)
701 ;; Make sure all executables in "bin" find the required Perl
702 ;; modules at runtime. As the PERL5LIB variable contains also
703 ;; the paths of native inputs, we pick the transitive target
704 ;; inputs from %build-inputs.
705 (let* ((out (assoc-ref outputs "out"))
706 (bin (string-append out "/bin/"))
707 (path (string-join
708 (cons (string-append out "/lib/perl5/site_perl")
709 (map (lambda (name)
710 (assoc-ref %build-inputs name))
711 ',transitive-inputs))
712 ":")))
713 (for-each (lambda (file)
714 (wrap-program file
715 `("PERL5LIB" ":" prefix (,path))))
716 (find-files bin "\\.pl$"))
717 #t))))))
718 (inputs inputs)
719 (native-inputs
720 `(("perl-test-most" ,perl-test-most)))
721 (home-page "http://search.cpan.org/dist/BioPerl")
722 (synopsis "Bioinformatics toolkit")
723 (description
724 "BioPerl is the product of a community effort to produce Perl code which
725 is useful in biology. Examples include Sequence objects, Alignment objects
726 and database searching objects. These objects not only do what they are
727 advertised to do in the documentation, but they also interact - Alignment
728 objects are made from the Sequence objects, Sequence objects have access to
729 Annotation and SeqFeature objects and databases, Blast objects can be
730 converted to Alignment objects, and so on. This means that the objects
731 provide a coordinated and extensible framework to do computational biology.")
732 (license license:perl-license))))
733
734 (define-public python-biopython
735 (package
736 (name "python-biopython")
737 (version "1.70")
738 (source (origin
739 (method url-fetch)
740 ;; use PyPi rather than biopython.org to ease updating
741 (uri (pypi-uri "biopython" version))
742 (sha256
743 (base32
744 "0nz4n9d2y2dg849gn1z0vjlkwcpzzkzy3fij7x94a6ixy2c54z2a"))))
745 (build-system python-build-system)
746 (arguments
747 `(#:phases
748 (modify-phases %standard-phases
749 (add-before 'check 'set-home
750 ;; Some tests require a home directory to be set.
751 (lambda _ (setenv "HOME" "/tmp") #t)))))
752 (propagated-inputs
753 `(("python-numpy" ,python-numpy)))
754 (home-page "http://biopython.org/")
755 (synopsis "Tools for biological computation in Python")
756 (description
757 "Biopython is a set of tools for biological computation including parsers
758 for bioinformatics files into Python data structures; interfaces to common
759 bioinformatics programs; a standard sequence class and tools for performing
760 common operations on them; code to perform data classification; code for
761 dealing with alignments; code making it easy to split up parallelizable tasks
762 into separate processes; and more.")
763 (license (license:non-copyleft "http://www.biopython.org/DIST/LICENSE"))))
764
765 (define-public python2-biopython
766 (package-with-python2 python-biopython))
767
768 (define-public bpp-core
769 ;; The last release was in 2014 and the recommended way to install from source
770 ;; is to clone the git repository, so we do this.
771 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
772 (let ((commit "7d8bced0d1a87291ea8dd7046b7fb5ff9c35c582"))
773 (package
774 (name "bpp-core")
775 (version (string-append "2.2.0-1." (string-take commit 7)))
776 (source (origin
777 (method git-fetch)
778 (uri (git-reference
779 (url "http://biopp.univ-montp2.fr/git/bpp-core")
780 (commit commit)))
781 (file-name (string-append name "-" version "-checkout"))
782 (sha256
783 (base32
784 "10djsq5vlnkilv436gnmh4irpk49v29pa69r6xiryg32xmvn909j"))))
785 (build-system cmake-build-system)
786 (arguments
787 `(#:parallel-build? #f))
788 (inputs
789 `(("gcc" ,gcc-5))) ; Compilation of bpp-phyl fails with GCC 4.9 so we
790 ; compile all of the bpp packages with GCC 5.
791 (home-page "http://biopp.univ-montp2.fr")
792 (synopsis "C++ libraries for Bioinformatics")
793 (description
794 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
795 analysis, phylogenetics, molecular evolution and population genetics. It is
796 Object Oriented and is designed to be both easy to use and computer efficient.
797 Bio++ intends to help programmers to write computer expensive programs, by
798 providing them a set of re-usable tools.")
799 (license license:cecill-c))))
800
801 (define-public bpp-phyl
802 ;; The last release was in 2014 and the recommended way to install from source
803 ;; is to clone the git repository, so we do this.
804 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
805 (let ((commit "0c07167b629f68b569bf274d1ad0c4af83276ae2"))
806 (package
807 (name "bpp-phyl")
808 (version (string-append "2.2.0-1." (string-take commit 7)))
809 (source (origin
810 (method git-fetch)
811 (uri (git-reference
812 (url "http://biopp.univ-montp2.fr/git/bpp-phyl")
813 (commit commit)))
814 (file-name (string-append name "-" version "-checkout"))
815 (sha256
816 (base32
817 "1ssjgchzwj3iai26kyly7gwkdv8sk59nqhkb1wpap3sf5m6kyllh"))))
818 (build-system cmake-build-system)
819 (arguments
820 `(#:parallel-build? #f
821 ;; If out-of-source, test data is not copied into the build directory
822 ;; so the tests fail.
823 #:out-of-source? #f))
824 (inputs
825 `(("bpp-core" ,bpp-core)
826 ("bpp-seq" ,bpp-seq)
827 ;; GCC 4.8 fails due to an 'internal compiler error', so we use a more
828 ;; modern GCC.
829 ("gcc" ,gcc-5)))
830 (home-page "http://biopp.univ-montp2.fr")
831 (synopsis "Bio++ phylogenetic Library")
832 (description
833 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
834 analysis, phylogenetics, molecular evolution and population genetics. This
835 library provides phylogenetics-related modules.")
836 (license license:cecill-c))))
837
838 (define-public bpp-popgen
839 ;; The last release was in 2014 and the recommended way to install from source
840 ;; is to clone the git repository, so we do this.
841 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
842 (let ((commit "e472bac9b1a148803895d747cd6d0c5904f85d9f"))
843 (package
844 (name "bpp-popgen")
845 (version (string-append "2.2.0-1." (string-take commit 7)))
846 (source (origin
847 (method git-fetch)
848 (uri (git-reference
849 (url "http://biopp.univ-montp2.fr/git/bpp-popgen")
850 (commit commit)))
851 (file-name (string-append name "-" version "-checkout"))
852 (sha256
853 (base32
854 "0yn82dzn1n5629nzja68xfrhi655709rjanyryb36vzkmymy6dw5"))))
855 (build-system cmake-build-system)
856 (arguments
857 `(#:parallel-build? #f
858 #:tests? #f)) ; There are no tests.
859 (inputs
860 `(("bpp-core" ,bpp-core)
861 ("bpp-seq" ,bpp-seq)
862 ("gcc" ,gcc-5)))
863 (home-page "http://biopp.univ-montp2.fr")
864 (synopsis "Bio++ population genetics library")
865 (description
866 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
867 analysis, phylogenetics, molecular evolution and population genetics. This
868 library provides population genetics-related modules.")
869 (license license:cecill-c))))
870
871 (define-public bpp-seq
872 ;; The last release was in 2014 and the recommended way to install from source
873 ;; is to clone the git repository, so we do this.
874 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
875 (let ((commit "6cfa07965ce152e5598a89df2fa80a75973bfa33"))
876 (package
877 (name "bpp-seq")
878 (version (string-append "2.2.0-1." (string-take commit 7)))
879 (source (origin
880 (method git-fetch)
881 (uri (git-reference
882 (url "http://biopp.univ-montp2.fr/git/bpp-seq")
883 (commit commit)))
884 (file-name (string-append name "-" version "-checkout"))
885 (sha256
886 (base32
887 "1nys5jq7jqvdg40d91wsmj3q2yzy4276cp7sp44n67p468f27zf2"))))
888 (build-system cmake-build-system)
889 (arguments
890 `(#:parallel-build? #f
891 ;; If out-of-source, test data is not copied into the build directory
892 ;; so the tests fail.
893 #:out-of-source? #f))
894 (inputs
895 `(("bpp-core" ,bpp-core)
896 ("gcc" ,gcc-5))) ; Use GCC 5 as per 'bpp-core'.
897 (home-page "http://biopp.univ-montp2.fr")
898 (synopsis "Bio++ sequence library")
899 (description
900 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
901 analysis, phylogenetics, molecular evolution and population genetics. This
902 library provides sequence-related modules.")
903 (license license:cecill-c))))
904
905 (define-public bppsuite
906 ;; The last release was in 2014 and the recommended way to install from source
907 ;; is to clone the git repository, so we do this.
908 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
909 (let ((commit "c516147f57aa50961121cd505bed52cd7603698b"))
910 (package
911 (name "bppsuite")
912 (version (string-append "2.2.0-1." (string-take commit 7)))
913 (source (origin
914 (method git-fetch)
915 (uri (git-reference
916 (url "http://biopp.univ-montp2.fr/git/bppsuite")
917 (commit commit)))
918 (file-name (string-append name "-" version "-checkout"))
919 (sha256
920 (base32
921 "1y87pxvw0jxjizhq2dr9g2r91md45k1p9ih2sl1yy1y3p934l2kb"))))
922 (build-system cmake-build-system)
923 (arguments
924 `(#:parallel-build? #f
925 #:tests? #f)) ; There are no tests.
926 (native-inputs
927 `(("groff" ,groff)
928 ("man-db" ,man-db)
929 ("texinfo" ,texinfo)))
930 (inputs
931 `(("bpp-core" ,bpp-core)
932 ("bpp-seq" ,bpp-seq)
933 ("bpp-phyl" ,bpp-phyl)
934 ("bpp-phyl" ,bpp-popgen)
935 ("gcc" ,gcc-5)))
936 (home-page "http://biopp.univ-montp2.fr")
937 (synopsis "Bioinformatics tools written with the Bio++ libraries")
938 (description
939 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
940 analysis, phylogenetics, molecular evolution and population genetics. This
941 package provides command line tools using the Bio++ library.")
942 (license license:cecill-c))))
943
944 (define-public blast+
945 (package
946 (name "blast+")
947 (version "2.6.0")
948 (source (origin
949 (method url-fetch)
950 (uri (string-append
951 "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/"
952 version "/ncbi-blast-" version "+-src.tar.gz"))
953 (sha256
954 (base32
955 "15n937pw5aqmyfjb6l387d18grqbb96l63d5xj4l7yyh0zbf2405"))
956 (patches (search-patches "blast+-fix-makefile.patch"))
957 (modules '((guix build utils)))
958 (snippet
959 '(begin
960 ;; Remove bundled bzip2, zlib and pcre.
961 (delete-file-recursively "c++/src/util/compress/bzip2")
962 (delete-file-recursively "c++/src/util/compress/zlib")
963 (delete-file-recursively "c++/src/util/regexp")
964 (substitute* "c++/src/util/compress/Makefile.in"
965 (("bzip2 zlib api") "api"))
966 ;; Remove useless msbuild directory
967 (delete-file-recursively
968 "c++/src/build-system/project_tree_builder/msbuild")
969 #t))))
970 (build-system gnu-build-system)
971 (arguments
972 `(;; There are two(!) tests for this massive library, and both fail with
973 ;; "unparsable timing stats".
974 ;; ERR [127] -- [serial/datatool] datatool.sh (unparsable timing stats)
975 ;; ERR [127] -- [serial/datatool] datatool_xml.sh (unparsable timing stats)
976 #:tests? #f
977 #:out-of-source? #t
978 #:parallel-build? #f ; not supported
979 #:phases
980 (modify-phases %standard-phases
981 (add-before
982 'configure 'set-HOME
983 ;; $HOME needs to be set at some point during the configure phase
984 (lambda _ (setenv "HOME" "/tmp") #t))
985 (add-after
986 'unpack 'enter-dir
987 (lambda _ (chdir "c++") #t))
988 (add-after
989 'enter-dir 'fix-build-system
990 (lambda _
991 (define (which* cmd)
992 (cond ((string=? cmd "date")
993 ;; make call to "date" deterministic
994 "date -d @0")
995 ((which cmd)
996 => identity)
997 (else
998 (format (current-error-port)
999 "WARNING: Unable to find absolute path for ~s~%"
1000 cmd)
1001 #f)))
1002
1003 ;; Rewrite hardcoded paths to various tools
1004 (substitute* (append '("src/build-system/configure.ac"
1005 "src/build-system/configure"
1006 "src/build-system/helpers/run_with_lock.c"
1007 "scripts/common/impl/if_diff.sh"
1008 "scripts/common/impl/run_with_lock.sh"
1009 "src/build-system/Makefile.configurables.real"
1010 "src/build-system/Makefile.in.top"
1011 "src/build-system/Makefile.meta.gmake=no"
1012 "src/build-system/Makefile.meta.in"
1013 "src/build-system/Makefile.meta_l"
1014 "src/build-system/Makefile.meta_p"
1015 "src/build-system/Makefile.meta_r"
1016 "src/build-system/Makefile.mk.in"
1017 "src/build-system/Makefile.requirements"
1018 "src/build-system/Makefile.rules_with_autodep.in")
1019 (find-files "scripts/common/check" "\\.sh$"))
1020 (("(/usr/bin/|/bin/)([a-z][-_.a-z]*)" all dir cmd)
1021 (or (which* cmd) all)))
1022
1023 (substitute* (find-files "src/build-system" "^config.*")
1024 (("LN_S=/bin/\\$LN_S") (string-append "LN_S=" (which "ln")))
1025 (("^PATH=.*") ""))
1026
1027 ;; rewrite "/var/tmp" in check script
1028 (substitute* "scripts/common/check/check_make_unix.sh"
1029 (("/var/tmp") "/tmp"))
1030
1031 ;; do not reset PATH
1032 (substitute* (find-files "scripts/common/impl/" "\\.sh$")
1033 (("^ *PATH=.*") "")
1034 (("action=/bin/") "action=")
1035 (("export PATH") ":"))
1036 #t))
1037 (replace
1038 'configure
1039 (lambda* (#:key inputs outputs #:allow-other-keys)
1040 (let ((out (assoc-ref outputs "out"))
1041 (lib (string-append (assoc-ref outputs "lib") "/lib"))
1042 (include (string-append (assoc-ref outputs "include")
1043 "/include/ncbi-tools++")))
1044 ;; The 'configure' script doesn't recognize things like
1045 ;; '--enable-fast-install'.
1046 (zero? (system* "./configure.orig"
1047 (string-append "--with-build-root=" (getcwd) "/build")
1048 (string-append "--prefix=" out)
1049 (string-append "--libdir=" lib)
1050 (string-append "--includedir=" include)
1051 (string-append "--with-bz2="
1052 (assoc-ref inputs "bzip2"))
1053 (string-append "--with-z="
1054 (assoc-ref inputs "zlib"))
1055 (string-append "--with-pcre="
1056 (assoc-ref inputs "pcre"))
1057 ;; Each library is built twice by default, once
1058 ;; with "-static" in its name, and again
1059 ;; without.
1060 "--without-static"
1061 "--with-dll"))))))))
1062 (outputs '("out" ; 21 MB
1063 "lib" ; 226 MB
1064 "include")) ; 33 MB
1065 (inputs
1066 `(("bzip2" ,bzip2)
1067 ("zlib" ,zlib)
1068 ("pcre" ,pcre)
1069 ("perl" ,perl)
1070 ("python" ,python-wrapper)))
1071 (native-inputs
1072 `(("cpio" ,cpio)))
1073 (home-page "http://blast.ncbi.nlm.nih.gov")
1074 (synopsis "Basic local alignment search tool")
1075 (description
1076 "BLAST is a popular method of performing a DNA or protein sequence
1077 similarity search, using heuristics to produce results quickly. It also
1078 calculates an “expect value” that estimates how many matches would have
1079 occurred at a given score by chance, which can aid a user in judging how much
1080 confidence to have in an alignment.")
1081 ;; Most of the sources are in the public domain, with the following
1082 ;; exceptions:
1083 ;; * Expat:
1084 ;; * ./c++/include/util/bitset/
1085 ;; * ./c++/src/html/ncbi_menu*.js
1086 ;; * Boost license:
1087 ;; * ./c++/include/util/impl/floating_point_comparison.hpp
1088 ;; * LGPL 2+:
1089 ;; * ./c++/include/dbapi/driver/odbc/unix_odbc/
1090 ;; * ASL 2.0:
1091 ;; * ./c++/src/corelib/teamcity_*
1092 (license (list license:public-domain
1093 license:expat
1094 license:boost1.0
1095 license:lgpl2.0+
1096 license:asl2.0))))
1097
1098 (define-public bless
1099 (package
1100 (name "bless")
1101 (version "1p02")
1102 (source (origin
1103 (method url-fetch)
1104 (uri (string-append "mirror://sourceforge/bless-ec/bless.v"
1105 version ".tgz"))
1106 (sha256
1107 (base32
1108 "0rm0gw2s18dqwzzpl3c2x1z05ni2v0xz5dmfk3d33j6g4cgrlrdd"))
1109 (modules '((guix build utils)))
1110 (snippet
1111 `(begin
1112 ;; Remove bundled boost, pigz, zlib, and .git directory
1113 ;; FIXME: also remove bundled sources for murmurhash3 and
1114 ;; kmc once packaged.
1115 (delete-file-recursively "boost")
1116 (delete-file-recursively "pigz")
1117 (delete-file-recursively "google-sparsehash")
1118 (delete-file-recursively "zlib")
1119 (delete-file-recursively ".git")
1120 #t))))
1121 (build-system gnu-build-system)
1122 (arguments
1123 '(#:tests? #f ;no "check" target
1124 #:make-flags
1125 (list (string-append "ZLIB="
1126 (assoc-ref %build-inputs "zlib")
1127 "/lib/libz.a")
1128 (string-append "LDFLAGS="
1129 (string-join '("-lboost_filesystem"
1130 "-lboost_system"
1131 "-lboost_iostreams"
1132 "-lz"
1133 "-fopenmp"
1134 "-std=c++11"))))
1135 #:phases
1136 (modify-phases %standard-phases
1137 (add-after 'unpack 'do-not-build-bundled-pigz
1138 (lambda* (#:key inputs outputs #:allow-other-keys)
1139 (substitute* "Makefile"
1140 (("cd pigz/pigz-2.3.3; make") ""))
1141 #t))
1142 (add-after 'unpack 'patch-paths-to-executables
1143 (lambda* (#:key inputs outputs #:allow-other-keys)
1144 (substitute* "parse_args.cpp"
1145 (("kmc_binary = .*")
1146 (string-append "kmc_binary = \""
1147 (assoc-ref outputs "out")
1148 "/bin/kmc\";"))
1149 (("pigz_binary = .*")
1150 (string-append "pigz_binary = \""
1151 (assoc-ref inputs "pigz")
1152 "/bin/pigz\";")))
1153 #t))
1154 (replace 'install
1155 (lambda* (#:key outputs #:allow-other-keys)
1156 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
1157 (for-each (lambda (file)
1158 (install-file file bin))
1159 '("bless" "kmc/bin/kmc"))
1160 #t)))
1161 (delete 'configure))))
1162 (native-inputs
1163 `(("perl" ,perl)))
1164 (inputs
1165 `(("openmpi" ,openmpi)
1166 ("boost" ,boost)
1167 ("sparsehash" ,sparsehash)
1168 ("pigz" ,pigz)
1169 ("zlib" ,zlib)))
1170 (supported-systems '("x86_64-linux"))
1171 (home-page "https://sourceforge.net/p/bless-ec/wiki/Home/")
1172 (synopsis "Bloom-filter-based error correction tool for NGS reads")
1173 (description
1174 "@dfn{Bloom-filter-based error correction solution for high-throughput
1175 sequencing reads} (BLESS) uses a single minimum-sized bloom filter is a
1176 correction tool for genomic reads produced by @dfn{Next-generation
1177 sequencing} (NGS). BLESS produces accurate correction results with much less
1178 memory compared with previous solutions and is also able to tolerate a higher
1179 false-positive rate. BLESS can extend reads like DNA assemblers to correct
1180 errors at the end of reads.")
1181 (license license:gpl3+)))
1182
1183 (define-public bowtie
1184 (package
1185 (name "bowtie")
1186 (version "2.3.2")
1187 (source (origin
1188 (method url-fetch)
1189 (uri (string-append "https://github.com/BenLangmead/bowtie2/archive/v"
1190 version ".tar.gz"))
1191 (file-name (string-append name "-" version ".tar.gz"))
1192 (sha256
1193 (base32
1194 "0hwa5r9qbglppb7sz5z79rlmmddr3n51n468jb3wh8rwjgn3yr90"))
1195 (modules '((guix build utils)))
1196 (snippet
1197 '(substitute* "Makefile"
1198 ;; replace BUILD_HOST and BUILD_TIME for deterministic build
1199 (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"")
1200 (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))
1201 (build-system gnu-build-system)
1202 (inputs
1203 `(("perl" ,perl)
1204 ("perl-clone" ,perl-clone)
1205 ("perl-test-deep" ,perl-test-deep)
1206 ("perl-test-simple" ,perl-test-simple)
1207 ("python" ,python-2)
1208 ("tbb" ,tbb)
1209 ("zlib" ,zlib)))
1210 (arguments
1211 '(#:make-flags
1212 (list "allall"
1213 "WITH_TBB=1"
1214 (string-append "prefix=" (assoc-ref %outputs "out")))
1215 #:phases
1216 (modify-phases %standard-phases
1217 (delete 'configure)
1218 (replace 'check
1219 (lambda* (#:key outputs #:allow-other-keys)
1220 (zero? (system* "perl"
1221 "scripts/test/simple_tests.pl"
1222 "--bowtie2=./bowtie2"
1223 "--bowtie2-build=./bowtie2-build")))))))
1224 (home-page "http://bowtie-bio.sourceforge.net/bowtie2/index.shtml")
1225 (synopsis "Fast and sensitive nucleotide sequence read aligner")
1226 (description
1227 "Bowtie 2 is a fast and memory-efficient tool for aligning sequencing
1228 reads to long reference sequences. It is particularly good at aligning reads
1229 of about 50 up to 100s or 1,000s of characters, and particularly good at
1230 aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the
1231 genome with an FM Index to keep its memory footprint small: for the human
1232 genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports
1233 gapped, local, and paired-end alignment modes.")
1234 (supported-systems '("x86_64-linux"))
1235 (license license:gpl3+)))
1236
1237 (define-public tophat
1238 (package
1239 (name "tophat")
1240 (version "2.1.0")
1241 (source (origin
1242 (method url-fetch)
1243 (uri (string-append
1244 "http://ccb.jhu.edu/software/tophat/downloads/tophat-"
1245 version ".tar.gz"))
1246 (sha256
1247 (base32
1248 "168zlzykq622zbgkh90a90f1bdgsxkscq2zxzbj8brq80hbjpyp7"))
1249 (patches (search-patches "tophat-build-with-later-seqan.patch"))
1250 (modules '((guix build utils)))
1251 (snippet
1252 '(begin
1253 ;; Remove bundled SeqAn and samtools
1254 (delete-file-recursively "src/SeqAn-1.3")
1255 (delete-file-recursively "src/samtools-0.1.18")
1256 #t))))
1257 (build-system gnu-build-system)
1258 (arguments
1259 '(#:parallel-build? #f ; not supported
1260 #:phases
1261 (modify-phases %standard-phases
1262 (add-after 'unpack 'use-system-samtools
1263 (lambda* (#:key inputs #:allow-other-keys)
1264 (substitute* "src/Makefile.in"
1265 (("(noinst_LIBRARIES = )\\$\\(SAMLIB\\)" _ prefix) prefix)
1266 (("\\$\\(SAMPROG\\): \\$\\(SAMLIB\\)") "")
1267 (("SAMPROG = samtools_0\\.1\\.18") "")
1268 (("\\$\\(samtools_0_1_18_SOURCES\\)") "")
1269 (("am__EXEEXT_1 = samtools_0\\.1\\.18\\$\\(EXEEXT\\)") ""))
1270 (substitute* '("src/common.cpp"
1271 "src/tophat.py")
1272 (("samtools_0.1.18") (which "samtools")))
1273 (substitute* '("src/common.h"
1274 "src/bam2fastx.cpp")
1275 (("#include \"bam.h\"") "#include <samtools/bam.h>")
1276 (("#include \"sam.h\"") "#include <samtools/sam.h>"))
1277 (substitute* '("src/bwt_map.h"
1278 "src/map2gtf.h"
1279 "src/align_status.h")
1280 (("#include <bam.h>") "#include <samtools/bam.h>")
1281 (("#include <sam.h>") "#include <samtools/sam.h>"))
1282 #t)))))
1283 (inputs
1284 `(("boost" ,boost)
1285 ("bowtie" ,bowtie)
1286 ("samtools" ,samtools-0.1)
1287 ("ncurses" ,ncurses)
1288 ("python" ,python-2)
1289 ("perl" ,perl)
1290 ("zlib" ,zlib)
1291 ("seqan" ,seqan)))
1292 (home-page "http://ccb.jhu.edu/software/tophat/index.shtml")
1293 (synopsis "Spliced read mapper for RNA-Seq data")
1294 (description
1295 "TopHat is a fast splice junction mapper for nucleotide sequence
1296 reads produced by the RNA-Seq method. It aligns RNA-Seq reads to
1297 mammalian-sized genomes using the ultra high-throughput short read
1298 aligner Bowtie, and then analyzes the mapping results to identify
1299 splice junctions between exons.")
1300 ;; TopHat is released under the Boost Software License, Version 1.0
1301 ;; See https://github.com/infphilo/tophat/issues/11#issuecomment-121589893
1302 (license license:boost1.0)))
1303
1304 (define-public bwa
1305 (package
1306 (name "bwa")
1307 (version "0.7.17")
1308 (source (origin
1309 (method url-fetch)
1310 (uri (string-append
1311 "https://github.com/lh3/bwa/releases/download/v"
1312 version "/bwa-" version ".tar.bz2"))
1313 (sha256
1314 (base32
1315 "1zfhv2zg9v1icdlq4p9ssc8k01mca5d1bd87w71py2swfi74s6yy"))))
1316 (build-system gnu-build-system)
1317 (arguments
1318 '(#:tests? #f ;no "check" target
1319 #:phases
1320 (modify-phases %standard-phases
1321 (replace 'install
1322 (lambda* (#:key outputs #:allow-other-keys)
1323 (let ((bin (string-append
1324 (assoc-ref outputs "out") "/bin"))
1325 (doc (string-append
1326 (assoc-ref outputs "out") "/share/doc/bwa"))
1327 (man (string-append
1328 (assoc-ref outputs "out") "/share/man/man1")))
1329 (install-file "bwa" bin)
1330 (install-file "README.md" doc)
1331 (install-file "bwa.1" man))
1332 #t))
1333 ;; no "configure" script
1334 (delete 'configure))))
1335 (inputs `(("zlib" ,zlib)))
1336 ;; Non-portable SSE instructions are used so building fails on platforms
1337 ;; other than x86_64.
1338 (supported-systems '("x86_64-linux"))
1339 (home-page "http://bio-bwa.sourceforge.net/")
1340 (synopsis "Burrows-Wheeler sequence aligner")
1341 (description
1342 "BWA is a software package for mapping low-divergent sequences against a
1343 large reference genome, such as the human genome. It consists of three
1344 algorithms: BWA-backtrack, BWA-SW and BWA-MEM. The first algorithm is
1345 designed for Illumina sequence reads up to 100bp, while the rest two for
1346 longer sequences ranged from 70bp to 1Mbp. BWA-MEM and BWA-SW share similar
1347 features such as long-read support and split alignment, but BWA-MEM, which is
1348 the latest, is generally recommended for high-quality queries as it is faster
1349 and more accurate. BWA-MEM also has better performance than BWA-backtrack for
1350 70-100bp Illumina reads.")
1351 (license license:gpl3+)))
1352
1353 (define-public bwa-pssm
1354 (package (inherit bwa)
1355 (name "bwa-pssm")
1356 (version "0.5.11")
1357 (source (origin
1358 (method url-fetch)
1359 (uri (string-append "https://github.com/pkerpedjiev/bwa-pssm/"
1360 "archive/" version ".tar.gz"))
1361 (file-name (string-append name "-" version ".tar.gz"))
1362 (sha256
1363 (base32
1364 "02p7mpbs4mlxmn84g2x4ghak638vbj4lqix2ipx5g84pz9bhdavg"))))
1365 (build-system gnu-build-system)
1366 (inputs
1367 `(("gdsl" ,gdsl)
1368 ("zlib" ,zlib)
1369 ("perl" ,perl)))
1370 (home-page "http://bwa-pssm.binf.ku.dk/")
1371 (synopsis "Burrows-Wheeler transform-based probabilistic short read mapper")
1372 (description
1373 "BWA-PSSM is a probabilistic short genomic sequence read aligner based on
1374 the use of @dfn{position specific scoring matrices} (PSSM). Like many of the
1375 existing aligners it is fast and sensitive. Unlike most other aligners,
1376 however, it is also adaptible in the sense that one can direct the alignment
1377 based on known biases within the data set. It is coded as a modification of
1378 the original BWA alignment program and shares the genome index structure as
1379 well as many of the command line options.")
1380 (license license:gpl3+)))
1381
1382 (define-public python2-bx-python
1383 (package
1384 (name "python2-bx-python")
1385 (version "0.7.3")
1386 (source (origin
1387 (method url-fetch)
1388 (uri (pypi-uri "bx-python" version))
1389 (sha256
1390 (base32
1391 "15z2w3bvnc0n4qmb9bd6d8ylc2h2nj883x2w9iixf4x3vki9b22i"))
1392 (modules '((guix build utils)))
1393 (snippet
1394 '(substitute* "setup.py"
1395 ;; remove dependency on outdated "distribute" module
1396 (("^from distribute_setup import use_setuptools") "")
1397 (("^use_setuptools\\(\\)") "")))))
1398 (build-system python-build-system)
1399 (arguments
1400 `(#:tests? #f ;tests fail because test data are not included
1401 #:python ,python-2))
1402 (inputs
1403 `(("python-numpy" ,python2-numpy)
1404 ("zlib" ,zlib)))
1405 (native-inputs
1406 `(("python-nose" ,python2-nose)))
1407 (home-page "http://bitbucket.org/james_taylor/bx-python/")
1408 (synopsis "Tools for manipulating biological data")
1409 (description
1410 "bx-python provides tools for manipulating biological data, particularly
1411 multiple sequence alignments.")
1412 (license license:expat)))
1413
1414 (define-public python-pysam
1415 (package
1416 (name "python-pysam")
1417 (version "0.13.0")
1418 (source (origin
1419 (method url-fetch)
1420 ;; Test data is missing on PyPi.
1421 (uri (string-append
1422 "https://github.com/pysam-developers/pysam/archive/v"
1423 version ".tar.gz"))
1424 (file-name (string-append name "-" version ".tar.gz"))
1425 (sha256
1426 (base32
1427 "0dzap2axin9cbbl0d825w294bpn00zagfm1sigamm4v2pm5bj9lp"))
1428 (modules '((guix build utils)))
1429 (snippet
1430 ;; Drop bundled htslib. TODO: Also remove samtools and bcftools.
1431 '(delete-file-recursively "htslib"))))
1432 (build-system python-build-system)
1433 (arguments
1434 `(#:modules ((ice-9 ftw)
1435 (srfi srfi-26)
1436 (guix build python-build-system)
1437 (guix build utils))
1438 #:phases
1439 (modify-phases %standard-phases
1440 (add-before 'build 'set-flags
1441 (lambda* (#:key inputs #:allow-other-keys)
1442 (setenv "HTSLIB_MODE" "external")
1443 (setenv "HTSLIB_LIBRARY_DIR"
1444 (string-append (assoc-ref inputs "htslib") "/lib"))
1445 (setenv "HTSLIB_INCLUDE_DIR"
1446 (string-append (assoc-ref inputs "htslib") "/include"))
1447 (setenv "LDFLAGS" "-lncurses")
1448 (setenv "CFLAGS" "-D_CURSES_LIB=1")
1449 #t))
1450 (replace 'check
1451 (lambda* (#:key inputs outputs #:allow-other-keys)
1452 ;; Add first subdirectory of "build" directory to PYTHONPATH.
1453 (setenv "PYTHONPATH"
1454 (string-append
1455 (getenv "PYTHONPATH")
1456 ":" (getcwd) "/build/"
1457 (car (scandir "build"
1458 (negate (cut string-prefix? "." <>))))))
1459 ;; Step out of source dir so python does not import from CWD.
1460 (with-directory-excursion "tests"
1461 (setenv "HOME" "/tmp")
1462 (and (zero? (system* "make" "-C" "pysam_data"))
1463 (zero? (system* "make" "-C" "cbcf_data"))
1464 ;; Running nosetests without explicitly asking for a
1465 ;; single process leads to a crash. Running with multiple
1466 ;; processes fails because the tests are not designed to
1467 ;; run in parallel.
1468
1469 ;; FIXME: tests keep timing out on some systems.
1470 ;; (zero? (system* "nosetests" "-v"
1471 ;; "--processes" "1"))
1472 )))))))
1473 (propagated-inputs
1474 `(("htslib" ,htslib))) ; Included from installed header files.
1475 (inputs
1476 `(("ncurses" ,ncurses)
1477 ("zlib" ,zlib)))
1478 (native-inputs
1479 `(("python-cython" ,python-cython)
1480 ;; Dependencies below are are for tests only.
1481 ("samtools" ,samtools)
1482 ("bcftools" ,bcftools)
1483 ("python-nose" ,python-nose)))
1484 (home-page "https://github.com/pysam-developers/pysam")
1485 (synopsis "Python bindings to the SAMtools C API")
1486 (description
1487 "Pysam is a Python module for reading and manipulating files in the
1488 SAM/BAM format. Pysam is a lightweight wrapper of the SAMtools C API. It
1489 also includes an interface for tabix.")
1490 (license license:expat)))
1491
1492 (define-public python2-pysam
1493 (package-with-python2 python-pysam))
1494
1495 (define-public python-twobitreader
1496 (package
1497 (name "python-twobitreader")
1498 (version "3.1.4")
1499 (source (origin
1500 (method url-fetch)
1501 (uri (pypi-uri "twobitreader" version))
1502 (sha256
1503 (base32
1504 "1q8wnj2kga9nz1lwc4w7qv52smfm536hp6mc8w6s53lhyj0mpi22"))))
1505 (build-system python-build-system)
1506 (arguments
1507 '(;; Tests are not distributed in the PyPi release.
1508 ;; TODO Try building from the Git repo or asking the upstream maintainer
1509 ;; to distribute the tests on PyPi.
1510 #:tests? #f))
1511 (native-inputs
1512 `(("python-sphinx" ,python-sphinx)))
1513 (home-page "https://github.com/benjschiller/twobitreader")
1514 (synopsis "Python library for reading .2bit files")
1515 (description
1516 "twobitreader is a Python library for reading .2bit files as used by the
1517 UCSC genome browser.")
1518 (license license:artistic2.0)))
1519
1520 (define-public python2-twobitreader
1521 (package-with-python2 python-twobitreader))
1522
1523 (define-public python-plastid
1524 (package
1525 (name "python-plastid")
1526 (version "0.4.8")
1527 (source (origin
1528 (method url-fetch)
1529 (uri (pypi-uri "plastid" version))
1530 (sha256
1531 (base32
1532 "0l24dd3q66if8yj042m4s0g95n6acn7im1imqd3p6h8ns43kxhj8"))))
1533 (build-system python-build-system)
1534 (arguments
1535 ;; Some test files are not included.
1536 `(#:tests? #f))
1537 (propagated-inputs
1538 `(("python-numpy" ,python-numpy)
1539 ("python-scipy" ,python-scipy)
1540 ("python-pandas" ,python-pandas)
1541 ("python-pysam" ,python-pysam)
1542 ("python-matplotlib" ,python-matplotlib)
1543 ("python-biopython" ,python-biopython)
1544 ("python-twobitreader" ,python-twobitreader)
1545 ("python-termcolor" ,python-termcolor)))
1546 (native-inputs
1547 `(("python-cython" ,python-cython)
1548 ("python-nose" ,python-nose)))
1549 (home-page "https://github.com/joshuagryphon/plastid")
1550 (synopsis "Python library for genomic analysis")
1551 (description
1552 "plastid is a Python library for genomic analysis – in particular,
1553 high-throughput sequencing data – with an emphasis on simplicity.")
1554 (license license:bsd-3)))
1555
1556 (define-public python2-plastid
1557 (package-with-python2 python-plastid))
1558
1559 (define-public cd-hit
1560 (package
1561 (name "cd-hit")
1562 (version "4.6.8")
1563 (source (origin
1564 (method url-fetch)
1565 (uri (string-append "https://github.com/weizhongli/cdhit"
1566 "/releases/download/V" version
1567 "/cd-hit-v" version
1568 "-2017-0621-source.tar.gz"))
1569 (sha256
1570 (base32
1571 "1b4mwm2520ixjbw57sil20f9iixzw4bkdqqwgg1fc3pzm6rz4zmn"))))
1572 (build-system gnu-build-system)
1573 (arguments
1574 `(#:tests? #f ; there are no tests
1575 #:make-flags
1576 ;; Executables are copied directly to the PREFIX.
1577 (list (string-append "PREFIX=" (assoc-ref %outputs "out") "/bin"))
1578 #:phases
1579 (modify-phases %standard-phases
1580 ;; No "configure" script
1581 (delete 'configure)
1582 ;; Remove sources of non-determinism
1583 (add-after 'unpack 'be-timeless
1584 (lambda _
1585 (substitute* "cdhit-utility.c++"
1586 ((" \\(built on \" __DATE__ \"\\)") ""))
1587 (substitute* "cdhit-common.c++"
1588 (("__DATE__") "\"0\"")
1589 (("\", %s, \" __TIME__ \"\\\\n\", date") ""))
1590 #t))
1591 ;; The "install" target does not create the target directory.
1592 (add-before 'install 'create-target-dir
1593 (lambda* (#:key outputs #:allow-other-keys)
1594 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
1595 #t)))))
1596 (inputs
1597 `(("perl" ,perl)))
1598 (home-page "http://weizhongli-lab.org/cd-hit/")
1599 (synopsis "Cluster and compare protein or nucleotide sequences")
1600 (description
1601 "CD-HIT is a program for clustering and comparing protein or nucleotide
1602 sequences. CD-HIT is designed to be fast and handle extremely large
1603 databases.")
1604 ;; The manual says: "It can be copied under the GNU General Public License
1605 ;; version 2 (GPLv2)."
1606 (license license:gpl2)))
1607
1608 (define-public clipper
1609 (package
1610 (name "clipper")
1611 (version "1.1")
1612 (source (origin
1613 (method url-fetch)
1614 (uri (string-append
1615 "https://github.com/YeoLab/clipper/archive/"
1616 version ".tar.gz"))
1617 (file-name (string-append name "-" version ".tar.gz"))
1618 (sha256
1619 (base32
1620 "0pflmsvhbf8izbgwhbhj1i7349sw1f55qpqj8ljmapp16hb0p0qi"))
1621 (modules '((guix build utils)))
1622 (snippet
1623 '(begin
1624 ;; remove unnecessary setup dependency
1625 (substitute* "setup.py"
1626 (("setup_requires = .*") ""))
1627 (for-each delete-file
1628 '("clipper/src/peaks.so"
1629 "clipper/src/readsToWiggle.so"))
1630 (delete-file-recursively "dist/")
1631 #t))))
1632 (build-system python-build-system)
1633 (arguments `(#:python ,python-2)) ; only Python 2 is supported
1634 (inputs
1635 `(("htseq" ,python2-htseq)
1636 ("python-pybedtools" ,python2-pybedtools)
1637 ("python-cython" ,python2-cython)
1638 ("python-scikit-learn" ,python2-scikit-learn)
1639 ("python-matplotlib" ,python2-matplotlib)
1640 ("python-pandas" ,python2-pandas)
1641 ("python-pysam" ,python2-pysam)
1642 ("python-numpy" ,python2-numpy)
1643 ("python-scipy" ,python2-scipy)))
1644 (native-inputs
1645 `(("python-mock" ,python2-mock) ; for tests
1646 ("python-nose" ,python2-nose) ; for tests
1647 ("python-pytz" ,python2-pytz))) ; for tests
1648 (home-page "https://github.com/YeoLab/clipper")
1649 (synopsis "CLIP peak enrichment recognition")
1650 (description
1651 "CLIPper is a tool to define peaks in CLIP-seq datasets.")
1652 (license license:gpl2)))
1653
1654 (define-public codingquarry
1655 (package
1656 (name "codingquarry")
1657 (version "2.0")
1658 (source (origin
1659 (method url-fetch)
1660 (uri (string-append
1661 "mirror://sourceforge/codingquarry/CodingQuarry_v"
1662 version ".tar.gz"))
1663 (sha256
1664 (base32
1665 "0115hkjflsnfzn36xppwf9h9avfxlavr43djqmshkkzbgjzsz60i"))))
1666 (build-system gnu-build-system)
1667 (arguments
1668 '(#:tests? #f ; no "check" target
1669 #:phases
1670 (modify-phases %standard-phases
1671 (delete 'configure)
1672 (replace 'install
1673 (lambda* (#:key outputs #:allow-other-keys)
1674 (let* ((out (assoc-ref outputs "out"))
1675 (bin (string-append out "/bin"))
1676 (doc (string-append out "/share/doc/codingquarry")))
1677 (install-file "INSTRUCTIONS.pdf" doc)
1678 (copy-recursively "QuarryFiles"
1679 (string-append out "/QuarryFiles"))
1680 (install-file "CodingQuarry" bin)
1681 (install-file "CufflinksGTF_to_CodingQuarryGFF3.py" bin)))))))
1682 (inputs `(("openmpi" ,openmpi)))
1683 (native-search-paths
1684 (list (search-path-specification
1685 (variable "QUARRY_PATH")
1686 (files '("QuarryFiles")))))
1687 (native-inputs `(("python" ,python-2))) ; Only Python 2 is supported
1688 (synopsis "Fungal gene predictor")
1689 (description "CodingQuarry is a highly accurate, self-training GHMM fungal
1690 gene predictor designed to work with assembled, aligned RNA-seq transcripts.")
1691 (home-page "https://sourceforge.net/projects/codingquarry/")
1692 (license license:gpl3+)))
1693
1694 (define-public couger
1695 (package
1696 (name "couger")
1697 (version "1.8.2")
1698 (source (origin
1699 (method url-fetch)
1700 (uri (string-append
1701 "http://couger.oit.duke.edu/static/assets/COUGER"
1702 version ".zip"))
1703 (sha256
1704 (base32
1705 "04p2b14nmhzxw5h72mpzdhalv21bx4w9b87z0wpw0xzxpysyncmq"))))
1706 (build-system gnu-build-system)
1707 (arguments
1708 `(#:tests? #f
1709 #:phases
1710 (modify-phases %standard-phases
1711 (delete 'configure)
1712 (delete 'build)
1713 (replace
1714 'install
1715 (lambda* (#:key outputs #:allow-other-keys)
1716 (let* ((out (assoc-ref outputs "out"))
1717 (bin (string-append out "/bin")))
1718 (copy-recursively "src" (string-append out "/src"))
1719 (mkdir bin)
1720 ;; Add "src" directory to module lookup path.
1721 (substitute* "couger"
1722 (("from argparse")
1723 (string-append "import sys\nsys.path.append(\""
1724 out "\")\nfrom argparse")))
1725 (install-file "couger" bin))
1726 #t))
1727 (add-after
1728 'install 'wrap-program
1729 (lambda* (#:key inputs outputs #:allow-other-keys)
1730 ;; Make sure 'couger' runs with the correct PYTHONPATH.
1731 (let* ((out (assoc-ref outputs "out"))
1732 (path (getenv "PYTHONPATH")))
1733 (wrap-program (string-append out "/bin/couger")
1734 `("PYTHONPATH" ":" prefix (,path))))
1735 #t)))))
1736 (inputs
1737 `(("python" ,python-2)
1738 ("python2-pillow" ,python2-pillow)
1739 ("python2-numpy" ,python2-numpy)
1740 ("python2-scipy" ,python2-scipy)
1741 ("python2-matplotlib" ,python2-matplotlib)))
1742 (propagated-inputs
1743 `(("r-minimal" ,r-minimal)
1744 ("libsvm" ,libsvm)
1745 ("randomjungle" ,randomjungle)))
1746 (native-inputs
1747 `(("unzip" ,unzip)))
1748 (home-page "http://couger.oit.duke.edu")
1749 (synopsis "Identify co-factors in sets of genomic regions")
1750 (description
1751 "COUGER can be applied to any two sets of genomic regions bound by
1752 paralogous TFs (e.g., regions derived from ChIP-seq experiments) to identify
1753 putative co-factors that provide specificity to each TF. The framework
1754 determines the genomic targets uniquely-bound by each TF, and identifies a
1755 small set of co-factors that best explain the in vivo binding differences
1756 between the two TFs.
1757
1758 COUGER uses classification algorithms (support vector machines and random
1759 forests) with features that reflect the DNA binding specificities of putative
1760 co-factors. The features are generated either from high-throughput TF-DNA
1761 binding data (from protein binding microarray experiments), or from large
1762 collections of DNA motifs.")
1763 (license license:gpl3+)))
1764
1765 (define-public clustal-omega
1766 (package
1767 (name "clustal-omega")
1768 (version "1.2.4")
1769 (source (origin
1770 (method url-fetch)
1771 (uri (string-append "http://www.clustal.org/omega/clustal-omega-"
1772 version ".tar.gz"))
1773 (sha256
1774 (base32
1775 "1vm30mzncwdv881vrcwg11vzvrsmwy4wg80j5i0lcfk6dlld50w6"))))
1776 (build-system gnu-build-system)
1777 (inputs
1778 `(("argtable" ,argtable)))
1779 (home-page "http://www.clustal.org/omega/")
1780 (synopsis "Multiple sequence aligner for protein and DNA/RNA")
1781 (description
1782 "Clustal-Omega is a general purpose multiple sequence alignment (MSA)
1783 program for protein and DNA/RNA. It produces high quality MSAs and is capable
1784 of handling data-sets of hundreds of thousands of sequences in reasonable
1785 time.")
1786 (license license:gpl2+)))
1787
1788 (define-public crossmap
1789 (package
1790 (name "crossmap")
1791 (version "0.2.1")
1792 (source (origin
1793 (method url-fetch)
1794 (uri (string-append "mirror://sourceforge/crossmap/CrossMap-"
1795 version ".tar.gz"))
1796 (sha256
1797 (base32
1798 "07y179f63d7qnzdvkqcziwk9bs3k4zhp81q392fp1hwszjdvy22f"))
1799 ;; This patch has been sent upstream already and is available
1800 ;; for download from Sourceforge, but it has not been merged.
1801 (patches (search-patches "crossmap-allow-system-pysam.patch"))
1802 (modules '((guix build utils)))
1803 ;; remove bundled copy of pysam
1804 (snippet
1805 '(delete-file-recursively "lib/pysam"))))
1806 (build-system python-build-system)
1807 (arguments
1808 `(#:python ,python-2
1809 #:phases
1810 (modify-phases %standard-phases
1811 (add-after 'unpack 'set-env
1812 (lambda _ (setenv "CROSSMAP_USE_SYSTEM_PYSAM" "1") #t)))))
1813 (inputs
1814 `(("python-numpy" ,python2-numpy)
1815 ("python-pysam" ,python2-pysam)
1816 ("zlib" ,zlib)))
1817 (native-inputs
1818 `(("python-cython" ,python2-cython)
1819 ("python-nose" ,python2-nose)))
1820 (home-page "http://crossmap.sourceforge.net/")
1821 (synopsis "Convert genome coordinates between assemblies")
1822 (description
1823 "CrossMap is a program for conversion of genome coordinates or annotation
1824 files between different genome assemblies. It supports most commonly used
1825 file formats including SAM/BAM, Wiggle/BigWig, BED, GFF/GTF, VCF.")
1826 (license license:gpl2+)))
1827
1828 (define-public cutadapt
1829 (package
1830 (name "cutadapt")
1831 (version "1.16")
1832 (source (origin
1833 (method git-fetch)
1834 (uri (git-reference
1835 (url "https://github.com/marcelm/cutadapt.git")
1836 (commit (string-append "v" version))))
1837 (file-name (string-append name "-" version "-checkout"))
1838 (sha256
1839 (base32
1840 "09pr02067jiks19nc0aby4xp70hhgvb554i2y1c04rv1m401w7q8"))))
1841 (build-system python-build-system)
1842 (inputs
1843 `(("python-xopen" ,python-xopen)))
1844 (native-inputs
1845 `(("python-cython" ,python-cython)
1846 ("python-pytest" ,python-pytest)))
1847 (home-page "https://cutadapt.readthedocs.io/en/stable/")
1848 (synopsis "Remove adapter sequences from nucleotide sequencing reads")
1849 (description
1850 "Cutadapt finds and removes adapter sequences, primers, poly-A tails and
1851 other types of unwanted sequence from high-throughput sequencing reads.")
1852 (license license:expat)))
1853
1854 (define-public libbigwig
1855 (package
1856 (name "libbigwig")
1857 (version "0.1.4")
1858 (source (origin
1859 (method url-fetch)
1860 (uri (string-append "https://github.com/dpryan79/libBigWig/"
1861 "archive/" version ".tar.gz"))
1862 (file-name (string-append name "-" version ".tar.gz"))
1863 (sha256
1864 (base32
1865 "098rjh35pi4a9q83n8wiwvyzykjqj6l8q189p1xgfw4ghywdlvw1"))))
1866 (build-system gnu-build-system)
1867 (arguments
1868 `(#:test-target "test"
1869 #:make-flags
1870 (list "CC=gcc"
1871 (string-append "prefix=" (assoc-ref %outputs "out")))
1872 #:phases
1873 (modify-phases %standard-phases
1874 (delete 'configure)
1875 (add-before 'check 'disable-curl-test
1876 (lambda _
1877 (substitute* "Makefile"
1878 (("./test/testRemote.*") ""))
1879 #t))
1880 ;; This has been fixed with the upstream commit 4ff6959cd8a0, but
1881 ;; there has not yet been a release containing this change.
1882 (add-before 'install 'create-target-dirs
1883 (lambda* (#:key outputs #:allow-other-keys)
1884 (let ((out (assoc-ref outputs "out")))
1885 (mkdir-p (string-append out "/lib"))
1886 (mkdir-p (string-append out "/include"))
1887 #t))))))
1888 (inputs
1889 `(("zlib" ,zlib)
1890 ("curl" ,curl)))
1891 (native-inputs
1892 `(("doxygen" ,doxygen)))
1893 (home-page "https://github.com/dpryan79/libBigWig")
1894 (synopsis "C library for handling bigWig files")
1895 (description
1896 "This package provides a C library for parsing local and remote BigWig
1897 files.")
1898 (license license:expat)))
1899
1900 (define-public python-pybigwig
1901 (package
1902 (name "python-pybigwig")
1903 (version "0.2.5")
1904 (source (origin
1905 (method url-fetch)
1906 (uri (pypi-uri "pyBigWig" version))
1907 (sha256
1908 (base32
1909 "0yrpdxg3y0sny25x4w22lv1k47jzccqjmg7j4bp0hywklvp0hg7d"))
1910 (modules '((guix build utils)))
1911 (snippet
1912 '(begin
1913 ;; Delete bundled libBigWig sources
1914 (delete-file-recursively "libBigWig")))))
1915 (build-system python-build-system)
1916 (arguments
1917 `(#:phases
1918 (modify-phases %standard-phases
1919 (add-after 'unpack 'link-with-libBigWig
1920 (lambda* (#:key inputs #:allow-other-keys)
1921 (substitute* "setup.py"
1922 (("libs=\\[") "libs=[\"BigWig\", "))
1923 #t)))))
1924 (inputs
1925 `(("libbigwig" ,libbigwig)
1926 ("zlib" ,zlib)
1927 ("curl" ,curl)))
1928 (home-page "https://github.com/dpryan79/pyBigWig")
1929 (synopsis "Access bigWig files in Python using libBigWig")
1930 (description
1931 "This package provides Python bindings to the libBigWig library for
1932 accessing bigWig files.")
1933 (license license:expat)))
1934
1935 (define-public python2-pybigwig
1936 (package-with-python2 python-pybigwig))
1937
1938 (define-public python-dendropy
1939 (package
1940 (name "python-dendropy")
1941 (version "4.2.0")
1942 (source
1943 (origin
1944 (method url-fetch)
1945 (uri (pypi-uri "DendroPy" version))
1946 (sha256
1947 (base32
1948 "15c7s3d5gf19ljsxvq5advaa752wfi7pwrdjyhzmg85hccyvp47p"))
1949 (patches (search-patches "python-dendropy-fix-tests.patch"))))
1950 (build-system python-build-system)
1951 (home-page "http://packages.python.org/DendroPy/")
1952 (synopsis "Library for phylogenetics and phylogenetic computing")
1953 (description
1954 "DendroPy is a library for phylogenetics and phylogenetic computing: reading,
1955 writing, simulation, processing and manipulation of phylogenetic
1956 trees (phylogenies) and characters.")
1957 (license license:bsd-3)
1958 (properties `((python2-variant . ,(delay python2-dendropy))))))
1959
1960 (define-public python2-dendropy
1961 (let ((base (package-with-python2 (strip-python2-variant python-dendropy))))
1962 (package
1963 (inherit base)
1964 (arguments
1965 `(#:python ,python-2
1966 #:phases
1967 (modify-phases %standard-phases
1968 (replace 'check
1969 ;; There is currently a test failure that only happens on some
1970 ;; systems, and only using "setup.py test"
1971 (lambda _ (zero? (system* "nosetests")))))))
1972 (native-inputs `(("python2-nose" ,python2-nose)
1973 ,@(package-native-inputs base))))))
1974
1975 (define-public python-py2bit
1976 (package
1977 (name "python-py2bit")
1978 (version "0.2.1")
1979 (source
1980 (origin
1981 (method url-fetch)
1982 (uri (pypi-uri "py2bit" version))
1983 (sha256
1984 (base32
1985 "1cdf4qlmgwsh1f4k0wdv2sr8x9qn4366p0k3614vbd0fpqiarxrl"))))
1986 (build-system python-build-system)
1987 (home-page "https://github.com/dpryan79/py2bit")
1988 (synopsis "Access 2bit files using lib2bit")
1989 (description
1990 "This package provides Python bindings for lib2bit to access 2bit files
1991 with Python.")
1992 (license license:expat)))
1993
1994 (define-public deeptools
1995 (package
1996 (name "deeptools")
1997 (version "2.5.1")
1998 (source (origin
1999 (method url-fetch)
2000 (uri (string-append "https://github.com/deeptools/deepTools/"
2001 "archive/" version ".tar.gz"))
2002 (file-name (string-append name "-" version ".tar.gz"))
2003 (sha256
2004 (base32
2005 "1q8i12l2gvk4n2s8lhyzwhh9g4qbc8lrk5l7maz00yvd5g6z5540"))))
2006 (build-system python-build-system)
2007 (inputs
2008 `(("python-scipy" ,python-scipy)
2009 ("python-numpy" ,python-numpy)
2010 ("python-numpydoc" ,python-numpydoc)
2011 ("python-matplotlib" ,python-matplotlib)
2012 ("python-pysam" ,python-pysam)
2013 ("python-py2bit" ,python-py2bit)
2014 ("python-pybigwig" ,python-pybigwig)))
2015 (native-inputs
2016 `(("python-mock" ,python-mock) ;for tests
2017 ("python-nose" ,python-nose) ;for tests
2018 ("python-pytz" ,python-pytz))) ;for tests
2019 (home-page "https://github.com/deeptools/deepTools")
2020 (synopsis "Tools for normalizing and visualizing deep-sequencing data")
2021 (description
2022 "DeepTools addresses the challenge of handling the large amounts of data
2023 that are now routinely generated from DNA sequencing centers. To do so,
2024 deepTools contains useful modules to process the mapped reads data to create
2025 coverage files in standard bedGraph and bigWig file formats. By doing so,
2026 deepTools allows the creation of normalized coverage files or the comparison
2027 between two files (for example, treatment and control). Finally, using such
2028 normalized and standardized files, multiple visualizations can be created to
2029 identify enrichments with functional annotations of the genome.")
2030 (license license:gpl3+)))
2031
2032 (define-public delly
2033 (package
2034 (name "delly")
2035 (version "0.7.7")
2036 (source (origin
2037 (method url-fetch)
2038 (uri (string-append
2039 "https://github.com/tobiasrausch/delly/archive/v"
2040 version ".tar.gz"))
2041 (file-name (string-append name "-" version ".tar.gz"))
2042 (sha256
2043 (base32 "0dkwy3pyxmi6dhh1lpsr3698ri5sslw9qz67hfys0bz8dgrqwabj"))
2044 (patches (search-patches "delly-use-system-libraries.patch"))))
2045 (build-system gnu-build-system)
2046 (arguments
2047 `(#:tests? #f ; There are no tests to run.
2048 #:make-flags '("PARALLEL=1") ; Allow parallel execution at run-time.
2049 #:phases
2050 (modify-phases %standard-phases
2051 (delete 'configure) ; There is no configure phase.
2052 (replace 'install
2053 (lambda _
2054 (let ((bin (string-append (assoc-ref %outputs "out") "/bin"))
2055 (templates (string-append (assoc-ref %outputs "out")
2056 "/share/delly/templates")))
2057 (mkdir-p bin)
2058 (mkdir-p templates)
2059 (copy-recursively "excludeTemplates" templates)
2060 (install-file "src/cov" bin)
2061 (install-file "src/delly" bin)
2062 (install-file "src/dpe" bin)))))))
2063 (native-inputs
2064 `(("python" ,python-2)))
2065 (inputs
2066 `(("boost" ,boost)
2067 ("htslib" ,htslib)
2068 ("zlib" ,zlib)
2069 ("bzip2" ,bzip2)))
2070 (home-page "https://github.com/tobiasrausch/delly")
2071 (synopsis "Integrated structural variant prediction method")
2072 (description "Delly is an integrated structural variant prediction method
2073 that can discover and genotype deletions, tandem duplications, inversions and
2074 translocations at single-nucleotide resolution in short-read massively parallel
2075 sequencing data. It uses paired-ends and split-reads to sensitively and
2076 accurately delineate genomic rearrangements throughout the genome.")
2077 (license license:gpl3+)))
2078
2079 (define-public diamond
2080 (package
2081 (name "diamond")
2082 (version "0.9.22")
2083 (source (origin
2084 (method url-fetch)
2085 (uri (string-append
2086 "https://github.com/bbuchfink/diamond/archive/v"
2087 version ".tar.gz"))
2088 (file-name (string-append name "-" version ".tar.gz"))
2089 (sha256
2090 (base32
2091 "0adp87r9ak63frdrdmrdfhsn6g0jnnyq1lr2wibvqbxcl37iir9m"))))
2092 (build-system cmake-build-system)
2093 (arguments
2094 '(#:tests? #f ; no "check" target
2095 #:phases
2096 (modify-phases %standard-phases
2097 (add-after 'unpack 'remove-native-compilation
2098 (lambda _
2099 (substitute* "CMakeLists.txt" (("-march=native") ""))
2100 #t)))))
2101 (inputs
2102 `(("zlib" ,zlib)))
2103 (home-page "https://github.com/bbuchfink/diamond")
2104 (synopsis "Accelerated BLAST compatible local sequence aligner")
2105 (description
2106 "DIAMOND is a BLAST-compatible local aligner for mapping protein and
2107 translated DNA query sequences against a protein reference database (BLASTP
2108 and BLASTX alignment mode). The speedup over BLAST is up to 20,000 on short
2109 reads at a typical sensitivity of 90-99% relative to BLAST depending on the
2110 data and settings.")
2111 (license license:agpl3+)))
2112
2113 (define-public discrover
2114 (package
2115 (name "discrover")
2116 (version "1.6.0")
2117 (source
2118 (origin
2119 (method url-fetch)
2120 (uri (string-append "https://github.com/maaskola/discrover/archive/"
2121 version ".tar.gz"))
2122 (file-name (string-append name "-" version ".tar.gz"))
2123 (sha256
2124 (base32
2125 "0rah9ja4m0rl5mldd6vag9rwrivw1zrqxssfq8qx64m7961fp68k"))))
2126 (build-system cmake-build-system)
2127 (arguments
2128 `(#:tests? #f ; there are no tests
2129 #:phases
2130 (modify-phases %standard-phases
2131 (add-after 'unpack 'add-missing-includes
2132 (lambda _
2133 (substitute* "src/executioninformation.hpp"
2134 (("#define EXECUTIONINFORMATION_HPP" line)
2135 (string-append line "\n#include <random>")))
2136 (substitute* "src/plasma/fasta.hpp"
2137 (("#define FASTA_HPP" line)
2138 (string-append line "\n#include <random>")))
2139 #t)))))
2140 (inputs
2141 `(("boost" ,boost)
2142 ("cairo" ,cairo)))
2143 (native-inputs
2144 `(("texlive" ,texlive)
2145 ("imagemagick" ,imagemagick)))
2146 (home-page "http://dorina.mdc-berlin.de/public/rajewsky/discrover/")
2147 (synopsis "Discover discriminative nucleotide sequence motifs")
2148 (description "Discrover is a motif discovery method to find binding sites
2149 of nucleic acid binding proteins.")
2150 (license license:gpl3+)))
2151
2152 (define-public eigensoft
2153 (let ((revision "1")
2154 (commit "b14d1e202e21e532536ff8004f0419cd5e259dc7"))
2155 (package
2156 (name "eigensoft")
2157 (version (string-append "6.1.2-"
2158 revision "."
2159 (string-take commit 9)))
2160 (source
2161 (origin
2162 (method git-fetch)
2163 (uri (git-reference
2164 (url "https://github.com/DReichLab/EIG.git")
2165 (commit commit)))
2166 (file-name (string-append "eigensoft-" commit "-checkout"))
2167 (sha256
2168 (base32
2169 "0f5m6k2j5c16xc3xbywcs989xyc26ncy1zfzp9j9n55n9r4xcaiq"))
2170 (modules '((guix build utils)))
2171 ;; Remove pre-built binaries.
2172 (snippet '(begin
2173 (delete-file-recursively "bin")
2174 (mkdir "bin")
2175 #t))))
2176 (build-system gnu-build-system)
2177 (arguments
2178 `(#:tests? #f ; There are no tests.
2179 #:make-flags '("CC=gcc")
2180 #:phases
2181 (modify-phases %standard-phases
2182 ;; There is no configure phase, but the Makefile is in a
2183 ;; sub-directory.
2184 (replace 'configure
2185 (lambda _
2186 (chdir "src")
2187 ;; The link flags are incomplete.
2188 (substitute* "Makefile"
2189 (("-lgsl") "-lgsl -lm -llapack -llapacke -lpthread"))
2190 #t))
2191 ;; The provided install target only copies executables to
2192 ;; the "bin" directory in the build root.
2193 (add-after 'install 'actually-install
2194 (lambda* (#:key outputs #:allow-other-keys)
2195 (let* ((out (assoc-ref outputs "out"))
2196 (bin (string-append out "/bin")))
2197 (for-each (lambda (file)
2198 (install-file file bin))
2199 (find-files "../bin" ".*"))
2200 #t))))))
2201 (inputs
2202 `(("gsl" ,gsl)
2203 ("lapack" ,lapack)
2204 ("openblas" ,openblas)
2205 ("perl" ,perl)
2206 ("gfortran" ,gfortran "lib")))
2207 (home-page "https://github.com/DReichLab/EIG")
2208 (synopsis "Tools for population genetics")
2209 (description "The EIGENSOFT package provides tools for population
2210 genetics and stratification correction. EIGENSOFT implements methods commonly
2211 used in population genetics analyses such as PCA, computation of Tracy-Widom
2212 statistics, and finding related individuals in structured populations. It
2213 comes with a built-in plotting script and supports multiple file formats and
2214 quantitative phenotypes.")
2215 ;; The license of the eigensoft tools is Expat, but since it's
2216 ;; linking with the GNU Scientific Library (GSL) the effective
2217 ;; license is the GPL.
2218 (license license:gpl3+))))
2219
2220 (define-public edirect
2221 (package
2222 (name "edirect")
2223 (version "4.10")
2224 (source (origin
2225 (method url-fetch)
2226 (uri (string-append "ftp://ftp.ncbi.nlm.nih.gov/entrez/entrezdirect/"
2227 "versions/2016-05-03/edirect.tar.gz"))
2228 (sha256
2229 (base32
2230 "15zsprak5yh8c1yrz4r1knmb5s8qcmdid4xdhkh3lqcv64l60hli"))))
2231 (build-system perl-build-system)
2232 (arguments
2233 `(#:tests? #f ;no "check" target
2234 #:phases
2235 (modify-phases %standard-phases
2236 (delete 'configure)
2237 (delete 'build)
2238 (replace 'install
2239 (lambda* (#:key outputs #:allow-other-keys)
2240 (let ((target (string-append (assoc-ref outputs "out")
2241 "/bin")))
2242 (mkdir-p target)
2243 (install-file "edirect.pl" target)
2244 #t)))
2245 (add-after
2246 'install 'wrap-program
2247 (lambda* (#:key inputs outputs #:allow-other-keys)
2248 ;; Make sure 'edirect.pl' finds all perl inputs at runtime.
2249 (let* ((out (assoc-ref outputs "out"))
2250 (path (getenv "PERL5LIB")))
2251 (wrap-program (string-append out "/bin/edirect.pl")
2252 `("PERL5LIB" ":" prefix (,path)))))))))
2253 (inputs
2254 `(("perl-html-parser" ,perl-html-parser)
2255 ("perl-encode-locale" ,perl-encode-locale)
2256 ("perl-file-listing" ,perl-file-listing)
2257 ("perl-html-tagset" ,perl-html-tagset)
2258 ("perl-html-tree" ,perl-html-tree)
2259 ("perl-http-cookies" ,perl-http-cookies)
2260 ("perl-http-date" ,perl-http-date)
2261 ("perl-http-message" ,perl-http-message)
2262 ("perl-http-negotiate" ,perl-http-negotiate)
2263 ("perl-lwp-mediatypes" ,perl-lwp-mediatypes)
2264 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
2265 ("perl-net-http" ,perl-net-http)
2266 ("perl-uri" ,perl-uri)
2267 ("perl-www-robotrules" ,perl-www-robotrules)
2268 ("perl" ,perl)))
2269 (home-page "http://www.ncbi.nlm.nih.gov/books/NBK179288/")
2270 (synopsis "Tools for accessing the NCBI's set of databases")
2271 (description
2272 "Entrez Direct (EDirect) is a method for accessing the National Center
2273 for Biotechnology Information's (NCBI) set of interconnected
2274 databases (publication, sequence, structure, gene, variation, expression,
2275 etc.) from a terminal. Functions take search terms from command-line
2276 arguments. Individual operations are combined to build multi-step queries.
2277 Record retrieval and formatting normally complete the process.
2278
2279 EDirect also provides an argument-driven function that simplifies the
2280 extraction of data from document summaries or other results that are returned
2281 in structured XML format. This can eliminate the need for writing custom
2282 software to answer ad hoc questions.")
2283 (license license:public-domain)))
2284
2285 (define-public exonerate
2286 (package
2287 (name "exonerate")
2288 (version "2.4.0")
2289 (source
2290 (origin
2291 (method url-fetch)
2292 (uri
2293 (string-append
2294 "http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/"
2295 "exonerate-" version ".tar.gz"))
2296 (sha256
2297 (base32
2298 "0hj0m9xygiqsdxvbg79wq579kbrx1mdrabi2bzqz2zn9qwfjcjgq"))))
2299 (build-system gnu-build-system)
2300 (arguments
2301 `(#:parallel-build? #f)) ; Building in parallel fails on some machines.
2302 (native-inputs
2303 `(("pkg-config" ,pkg-config)))
2304 (inputs
2305 `(("glib" ,glib)))
2306 (home-page
2307 "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate")
2308 (synopsis "Generic tool for biological sequence alignment")
2309 (description
2310 "Exonerate is a generic tool for pairwise sequence comparison. It allows
2311 the alignment of sequences using a many alignment models, either exhaustive
2312 dynamic programming or a variety of heuristics.")
2313 (license license:gpl3)))
2314
2315 (define-public express
2316 (package
2317 (name "express")
2318 (version "1.5.1")
2319 (source (origin
2320 (method url-fetch)
2321 (uri
2322 (string-append
2323 "http://bio.math.berkeley.edu/eXpress/downloads/express-"
2324 version "/express-" version "-src.tgz"))
2325 (sha256
2326 (base32
2327 "03rczxd0gjp2l1jxcmjfmf5j94j77zqyxa6x063zsc585nj40n0c"))))
2328 (build-system cmake-build-system)
2329 (arguments
2330 `(#:tests? #f ;no "check" target
2331 #:phases
2332 (modify-phases %standard-phases
2333 (add-after 'unpack 'use-shared-boost-libs-and-set-bamtools-paths
2334 (lambda* (#:key inputs #:allow-other-keys)
2335 (substitute* "CMakeLists.txt"
2336 (("set\\(Boost_USE_STATIC_LIBS ON\\)")
2337 "set(Boost_USE_STATIC_LIBS OFF)")
2338 (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/bamtools/include")
2339 (string-append (assoc-ref inputs "bamtools") "/include/bamtools")))
2340 (substitute* "src/CMakeLists.txt"
2341 (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/\\.\\./bamtools/lib")
2342 (string-append (assoc-ref inputs "bamtools") "/lib"))
2343 (("libprotobuf.a") "libprotobuf.so"))
2344 #t)))))
2345 (inputs
2346 `(("boost" ,boost)
2347 ("bamtools" ,bamtools)
2348 ("protobuf" ,protobuf)
2349 ("zlib" ,zlib)))
2350 (home-page "http://bio.math.berkeley.edu/eXpress")
2351 (synopsis "Streaming quantification for high-throughput genomic sequencing")
2352 (description
2353 "eXpress is a streaming tool for quantifying the abundances of a set of
2354 target sequences from sampled subsequences. Example applications include
2355 transcript-level RNA-Seq quantification, allele-specific/haplotype expression
2356 analysis (from RNA-Seq), transcription factor binding quantification in
2357 ChIP-Seq, and analysis of metagenomic data.")
2358 (license license:artistic2.0)))
2359
2360 (define-public express-beta-diversity
2361 (package
2362 (name "express-beta-diversity")
2363 (version "1.0.7")
2364 (source (origin
2365 (method url-fetch)
2366 (uri
2367 (string-append
2368 "https://github.com/dparks1134/ExpressBetaDiversity/archive/v"
2369 version ".tar.gz"))
2370 (file-name (string-append name "-" version ".tar.gz"))
2371 (sha256
2372 (base32
2373 "1djvdlmqvjf6h0zq7w36y8cl5cli6rgj86x65znl48agnwmzxfxr"))))
2374 (build-system gnu-build-system)
2375 (arguments
2376 `(#:phases
2377 (modify-phases %standard-phases
2378 (delete 'configure)
2379 (add-before 'build 'enter-source (lambda _ (chdir "source") #t))
2380 (replace 'check
2381 (lambda _ (zero? (system* "../bin/ExpressBetaDiversity"
2382 "-u"))))
2383 (add-after 'check 'exit-source (lambda _ (chdir "..") #t))
2384 (replace 'install
2385 (lambda* (#:key outputs #:allow-other-keys)
2386 (let ((bin (string-append (assoc-ref outputs "out")
2387 "/bin")))
2388 (mkdir-p bin)
2389 (install-file "scripts/convertToEBD.py" bin)
2390 (install-file "bin/ExpressBetaDiversity" bin)
2391 #t))))))
2392 (inputs
2393 `(("python" ,python-2)))
2394 (home-page "http://kiwi.cs.dal.ca/Software/ExpressBetaDiversity")
2395 (synopsis "Taxon- and phylogenetic-based beta diversity measures")
2396 (description
2397 "Express Beta Diversity (EBD) calculates ecological beta diversity
2398 (dissimilarity) measures between biological communities. EBD implements a
2399 variety of diversity measures including those that make use of phylogenetic
2400 similarity of community members.")
2401 (license license:gpl3+)))
2402
2403 (define-public fasttree
2404 (package
2405 (name "fasttree")
2406 (version "2.1.10")
2407 (source (origin
2408 (method url-fetch)
2409 (uri (string-append
2410 "http://www.microbesonline.org/fasttree/FastTree-"
2411 version ".c"))
2412 (sha256
2413 (base32
2414 "0vcjdvy1j4m702vmak4svbfkrpcw63k7wymfksjp9a982zy8kjsl"))))
2415 (build-system gnu-build-system)
2416 (arguments
2417 `(#:tests? #f ; no "check" target
2418 #:phases
2419 (modify-phases %standard-phases
2420 (delete 'unpack)
2421 (delete 'configure)
2422 (replace 'build
2423 (lambda* (#:key source #:allow-other-keys)
2424 (and (zero? (system* "gcc"
2425 "-O3"
2426 "-finline-functions"
2427 "-funroll-loops"
2428 "-Wall"
2429 "-o"
2430 "FastTree"
2431 source
2432 "-lm"))
2433 (zero? (system* "gcc"
2434 "-DOPENMP"
2435 "-fopenmp"
2436 "-O3"
2437 "-finline-functions"
2438 "-funroll-loops"
2439 "-Wall"
2440 "-o"
2441 "FastTreeMP"
2442 source
2443 "-lm")))))
2444 (replace 'install
2445 (lambda* (#:key outputs #:allow-other-keys)
2446 (let ((bin (string-append (assoc-ref outputs "out")
2447 "/bin")))
2448 (mkdir-p bin)
2449 (install-file "FastTree" bin)
2450 (install-file "FastTreeMP" bin)
2451 #t))))))
2452 (home-page "http://www.microbesonline.org/fasttree")
2453 (synopsis "Infers approximately-maximum-likelihood phylogenetic trees")
2454 (description
2455 "FastTree can handle alignments with up to a million of sequences in a
2456 reasonable amount of time and memory. For large alignments, FastTree is
2457 100-1,000 times faster than PhyML 3.0 or RAxML 7.")
2458 (license license:gpl2+)))
2459
2460 (define-public fastx-toolkit
2461 (package
2462 (name "fastx-toolkit")
2463 (version "0.0.14")
2464 (source (origin
2465 (method url-fetch)
2466 (uri
2467 (string-append
2468 "https://github.com/agordon/fastx_toolkit/releases/download/"
2469 version "/fastx_toolkit-" version ".tar.bz2"))
2470 (sha256
2471 (base32
2472 "01jqzw386873sr0pjp1wr4rn8fsga2vxs1qfmicvx1pjr72007wy"))))
2473 (build-system gnu-build-system)
2474 (inputs
2475 `(("libgtextutils" ,libgtextutils)))
2476 (native-inputs
2477 `(("pkg-config" ,pkg-config)))
2478 (home-page "http://hannonlab.cshl.edu/fastx_toolkit/")
2479 (synopsis "Tools for FASTA/FASTQ file preprocessing")
2480 (description
2481 "The FASTX-Toolkit is a collection of command line tools for Short-Reads
2482 FASTA/FASTQ files preprocessing.
2483
2484 Next-Generation sequencing machines usually produce FASTA or FASTQ files,
2485 containing multiple short-reads sequences. The main processing of such
2486 FASTA/FASTQ files is mapping the sequences to reference genomes. However, it
2487 is sometimes more productive to preprocess the files before mapping the
2488 sequences to the genome---manipulating the sequences to produce better mapping
2489 results. The FASTX-Toolkit tools perform some of these preprocessing tasks.")
2490 (license license:agpl3+)))
2491
2492 (define-public flexbar
2493 (package
2494 (name "flexbar")
2495 (version "2.5")
2496 (source (origin
2497 (method url-fetch)
2498 (uri
2499 (string-append "mirror://sourceforge/flexbar/"
2500 version "/flexbar_v" version "_src.tgz"))
2501 (sha256
2502 (base32
2503 "13jaykc3y1x8y5nn9j8ljnb79s5y51kyxz46hdmvvjj6qhyympmf"))))
2504 (build-system cmake-build-system)
2505 (arguments
2506 `(#:configure-flags (list
2507 (string-append "-DFLEXBAR_BINARY_DIR="
2508 (assoc-ref %outputs "out")
2509 "/bin/"))
2510 #:phases
2511 (modify-phases %standard-phases
2512 (replace 'check
2513 (lambda* (#:key outputs #:allow-other-keys)
2514 (setenv "PATH" (string-append
2515 (assoc-ref outputs "out") "/bin:"
2516 (getenv "PATH")))
2517 (chdir "../flexbar_v2.5_src/test")
2518 (zero? (system* "bash" "flexbar_validate.sh"))))
2519 (delete 'install))))
2520 (inputs
2521 `(("tbb" ,tbb)
2522 ("zlib" ,zlib)))
2523 (native-inputs
2524 `(("pkg-config" ,pkg-config)
2525 ("seqan" ,seqan)))
2526 (home-page "http://flexbar.sourceforge.net")
2527 (synopsis "Barcode and adapter removal tool for sequencing platforms")
2528 (description
2529 "Flexbar preprocesses high-throughput nucleotide sequencing data
2530 efficiently. It demultiplexes barcoded runs and removes adapter sequences.
2531 Moreover, trimming and filtering features are provided. Flexbar increases
2532 read mapping rates and improves genome and transcriptome assemblies. It
2533 supports next-generation sequencing data in fasta/q and csfasta/q format from
2534 Illumina, Roche 454, and the SOLiD platform.")
2535 (license license:gpl3)))
2536
2537 (define-public fraggenescan
2538 (package
2539 (name "fraggenescan")
2540 (version "1.30")
2541 (source
2542 (origin
2543 (method url-fetch)
2544 (uri
2545 (string-append "mirror://sourceforge/fraggenescan/"
2546 "FragGeneScan" version ".tar.gz"))
2547 (sha256
2548 (base32 "158dcnwczgcyhwm4qlx19sanrwgdpzf6bn2y57mbpx55lkgz1mzj"))))
2549 (build-system gnu-build-system)
2550 (arguments
2551 `(#:phases
2552 (modify-phases %standard-phases
2553 (delete 'configure)
2554 (add-before 'build 'patch-paths
2555 (lambda* (#:key outputs #:allow-other-keys)
2556 (let* ((out (string-append (assoc-ref outputs "out")))
2557 (share (string-append out "/share/fraggenescan/")))
2558 (substitute* "run_FragGeneScan.pl"
2559 (("system\\(\"rm")
2560 (string-append "system(\"" (which "rm")))
2561 (("system\\(\"mv")
2562 (string-append "system(\"" (which "mv")))
2563 (("\\\"awk") (string-append "\"" (which "awk")))
2564 ;; This script and other programs expect the training files
2565 ;; to be in the non-standard location bin/train/XXX. Change
2566 ;; this to be share/fraggenescan/train/XXX instead.
2567 (("^\\$train.file = \\$dir.*")
2568 (string-append "$train_file = \""
2569 share
2570 "train/\".$FGS_train_file;")))
2571 (substitute* "run_hmm.c"
2572 (("^ strcat\\(train_dir, \\\"train/\\\"\\);")
2573 (string-append " strcpy(train_dir, \"" share "/train/\");"))))
2574 #t))
2575 (replace 'build
2576 (lambda _ (and (zero? (system* "make" "clean"))
2577 (zero? (system* "make" "fgs")))))
2578 (replace 'install
2579 (lambda* (#:key outputs #:allow-other-keys)
2580 (let* ((out (string-append (assoc-ref outputs "out")))
2581 (bin (string-append out "/bin/"))
2582 (share (string-append out "/share/fraggenescan/train")))
2583 (install-file "run_FragGeneScan.pl" bin)
2584 (install-file "FragGeneScan" bin)
2585 (copy-recursively "train" share))))
2586 (delete 'check)
2587 (add-after 'install 'post-install-check
2588 ;; In lieu of 'make check', run one of the examples and check the
2589 ;; output files gets created.
2590 (lambda* (#:key outputs #:allow-other-keys)
2591 (let* ((out (string-append (assoc-ref outputs "out")))
2592 (bin (string-append out "/bin/"))
2593 (frag (string-append bin "run_FragGeneScan.pl")))
2594 (and (zero? (system* frag ; Test complete genome.
2595 "-genome=./example/NC_000913.fna"
2596 "-out=./test2"
2597 "-complete=1"
2598 "-train=complete"))
2599 (file-exists? "test2.faa")
2600 (file-exists? "test2.ffn")
2601 (file-exists? "test2.gff")
2602 (file-exists? "test2.out")
2603 (zero? (system* ; Test incomplete sequences.
2604 frag
2605 "-genome=./example/NC_000913-fgs.ffn"
2606 "-out=out"
2607 "-complete=0"
2608 "-train=454_30")))))))))
2609 (inputs
2610 `(("perl" ,perl)
2611 ("python" ,python-2))) ;not compatible with python 3.
2612 (home-page "https://sourceforge.net/projects/fraggenescan/")
2613 (synopsis "Finds potentially fragmented genes in short reads")
2614 (description
2615 "FragGeneScan is a program for predicting bacterial and archaeal genes in
2616 short and error-prone DNA sequencing reads. It can also be applied to predict
2617 genes in incomplete assemblies or complete genomes.")
2618 ;; GPL3+ according to private correspondense with the authors.
2619 (license license:gpl3+)))
2620
2621 (define-public fxtract
2622 (let ((util-commit "776ca85a18a47492af3794745efcb4a905113115"))
2623 (package
2624 (name "fxtract")
2625 (version "2.3")
2626 (source
2627 (origin
2628 (method url-fetch)
2629 (uri (string-append
2630 "https://github.com/ctSkennerton/fxtract/archive/"
2631 version ".tar.gz"))
2632 (file-name (string-append "ctstennerton-util-"
2633 (string-take util-commit 7)
2634 "-checkout"))
2635 (sha256
2636 (base32
2637 "0275cfdhis8517hm01is62062swmi06fxzifq7mr3knbbxjlaiwj"))))
2638 (build-system gnu-build-system)
2639 (arguments
2640 `(#:make-flags (list
2641 (string-append "PREFIX=" (assoc-ref %outputs "out"))
2642 "CC=gcc")
2643 #:test-target "fxtract_test"
2644 #:phases
2645 (modify-phases %standard-phases
2646 (delete 'configure)
2647 (add-before 'build 'copy-util
2648 (lambda* (#:key inputs #:allow-other-keys)
2649 (rmdir "util")
2650 (copy-recursively (assoc-ref inputs "ctskennerton-util") "util")
2651 #t))
2652 ;; Do not use make install as this requires additional dependencies.
2653 (replace 'install
2654 (lambda* (#:key outputs #:allow-other-keys)
2655 (let* ((out (assoc-ref outputs "out"))
2656 (bin (string-append out"/bin")))
2657 (install-file "fxtract" bin)
2658 #t))))))
2659 (inputs
2660 `(("pcre" ,pcre)
2661 ("zlib" ,zlib)))
2662 (native-inputs
2663 ;; ctskennerton-util is licensed under GPL2.
2664 `(("ctskennerton-util"
2665 ,(origin
2666 (method git-fetch)
2667 (uri (git-reference
2668 (url "https://github.com/ctSkennerton/util.git")
2669 (commit util-commit)))
2670 (file-name (string-append
2671 "ctstennerton-util-" util-commit "-checkout"))
2672 (sha256
2673 (base32
2674 "0cls1hd4vgj3f36fpzzg4xc77d6f3hpc60cbpfmn2gdr7ykzzad7"))))))
2675 (home-page "https://github.com/ctSkennerton/fxtract")
2676 (synopsis "Extract sequences from FASTA and FASTQ files")
2677 (description
2678 "Fxtract extracts sequences from a protein or nucleotide fastx (FASTA
2679 or FASTQ) file given a subsequence. It uses a simple substring search for
2680 basic tasks but can change to using POSIX regular expressions, PCRE, hash
2681 lookups or multi-pattern searching as required. By default fxtract looks in
2682 the sequence of each record but can also be told to look in the header,
2683 comment or quality sections.")
2684 ;; 'util' requires SSE instructions.
2685 (supported-systems '("x86_64-linux"))
2686 (license license:expat))))
2687
2688 (define-public gemma
2689 (package
2690 (name "gemma")
2691 (version "0.96")
2692 (source (origin
2693 (method url-fetch)
2694 (uri (string-append "https://github.com/xiangzhou/GEMMA/archive/v"
2695 version ".tar.gz"))
2696 (file-name (string-append name "-" version ".tar.gz"))
2697 (sha256
2698 (base32
2699 "055ynn16gd12pf78n4vr2a9jlwsbwzajpdnf2y2yilg1krfff222"))
2700 (patches (search-patches "gemma-intel-compat.patch"))))
2701 (inputs
2702 `(("gsl" ,gsl)
2703 ("lapack" ,lapack)
2704 ("zlib" ,zlib)))
2705 (build-system gnu-build-system)
2706 (arguments
2707 `(#:make-flags
2708 '(,@(match (%current-system)
2709 ("x86_64-linux"
2710 '("FORCE_DYNAMIC=1"))
2711 ("i686-linux"
2712 '("FORCE_DYNAMIC=1" "FORCE_32BIT=1"))
2713 (_
2714 '("FORCE_DYNAMIC=1" "NO_INTEL_COMPAT=1"))))
2715 #:phases
2716 (modify-phases %standard-phases
2717 (delete 'configure)
2718 (add-before 'build 'bin-mkdir
2719 (lambda _
2720 (mkdir-p "bin")
2721 #t))
2722 (replace 'install
2723 (lambda* (#:key outputs #:allow-other-keys)
2724 (let ((out (assoc-ref outputs "out")))
2725 (install-file "bin/gemma"
2726 (string-append
2727 out "/bin")))
2728 #t)))
2729 #:tests? #f)) ; no tests included yet
2730 (home-page "https://github.com/xiangzhou/GEMMA")
2731 (synopsis "Tool for genome-wide efficient mixed model association")
2732 (description
2733 "Genome-wide Efficient Mixed Model Association (GEMMA) provides a
2734 standard linear mixed model resolver with application in genome-wide
2735 association studies (GWAS).")
2736 (license license:gpl3)))
2737
2738 (define-public grit
2739 (package
2740 (name "grit")
2741 (version "2.0.2")
2742 (source (origin
2743 (method url-fetch)
2744 (uri (string-append
2745 "https://github.com/nboley/grit/archive/"
2746 version ".tar.gz"))
2747 (file-name (string-append name "-" version ".tar.gz"))
2748 (sha256
2749 (base32
2750 "157in84dj70wimbind3x7sy1whs3h57qfgcnj2s6lrd38fbrb7mj"))))
2751 (build-system python-build-system)
2752 (arguments
2753 `(#:python ,python-2
2754 #:phases
2755 (modify-phases %standard-phases
2756 (add-after 'unpack 'generate-from-cython-sources
2757 (lambda* (#:key inputs outputs #:allow-other-keys)
2758 ;; Delete these C files to force fresh generation from pyx sources.
2759 (delete-file "grit/sparsify_support_fns.c")
2760 (delete-file "grit/call_peaks_support_fns.c")
2761 (substitute* "setup.py"
2762 (("Cython.Setup") "Cython.Build")
2763 ;; Add numpy include path to fix compilation
2764 (("pyx\", \\]")
2765 (string-append "pyx\", ], include_dirs = ['"
2766 (assoc-ref inputs "python-numpy")
2767 "/lib/python2.7/site-packages/numpy/core/include/"
2768 "']")))
2769 #t)))))
2770 (inputs
2771 `(("python-scipy" ,python2-scipy)
2772 ("python-numpy" ,python2-numpy)
2773 ("python-pysam" ,python2-pysam)
2774 ("python-networkx" ,python2-networkx)))
2775 (native-inputs
2776 `(("python-cython" ,python2-cython)))
2777 (home-page "http://grit-bio.org")
2778 (synopsis "Tool for integrative analysis of RNA-seq type assays")
2779 (description
2780 "GRIT is designed to use RNA-seq, TES, and TSS data to build and quantify
2781 full length transcript models. When none of these data sources are available,
2782 GRIT can be run by providing a candidate set of TES or TSS sites. In
2783 addition, GRIT can merge in reference junctions and gene boundaries. GRIT can
2784 also be run in quantification mode, where it uses a provided GTF file and just
2785 estimates transcript expression.")
2786 (license license:gpl3+)))
2787
2788 (define-public hisat
2789 (package
2790 (name "hisat")
2791 (version "0.1.4")
2792 (source (origin
2793 (method url-fetch)
2794 (uri (string-append
2795 "http://ccb.jhu.edu/software/hisat/downloads/hisat-"
2796 version "-beta-source.zip"))
2797 (sha256
2798 (base32
2799 "1k381ydranqxp09yf2y7w1d0chz5d59vb6jchi89hbb0prq19lk5"))))
2800 (build-system gnu-build-system)
2801 (arguments
2802 `(#:tests? #f ;no check target
2803 #:make-flags '("allall"
2804 ;; Disable unsupported `popcnt' instructions on
2805 ;; architectures other than x86_64
2806 ,@(if (string-prefix? "x86_64"
2807 (or (%current-target-system)
2808 (%current-system)))
2809 '()
2810 '("POPCNT_CAPABILITY=0")))
2811 #:phases
2812 (modify-phases %standard-phases
2813 (add-after 'unpack 'patch-sources
2814 (lambda _
2815 ;; XXX Cannot use snippet because zip files are not supported
2816 (substitute* "Makefile"
2817 (("^CC = .*$") "CC = gcc")
2818 (("^CPP = .*$") "CPP = g++")
2819 ;; replace BUILD_HOST and BUILD_TIME for deterministic build
2820 (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"")
2821 (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))
2822 (substitute* '("hisat-build" "hisat-inspect")
2823 (("/usr/bin/env") (which "env")))
2824 #t))
2825 (replace 'install
2826 (lambda* (#:key outputs #:allow-other-keys)
2827 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
2828 (for-each (lambda (file)
2829 (install-file file bin))
2830 (find-files
2831 "."
2832 "hisat(-(build|align|inspect)(-(s|l)(-debug)*)*)*$")))
2833 #t))
2834 (delete 'configure))))
2835 (native-inputs
2836 `(("unzip" ,unzip)))
2837 (inputs
2838 `(("perl" ,perl)
2839 ("python" ,python)
2840 ("zlib" ,zlib)))
2841 ;; Non-portable SSE instructions are used so building fails on platforms
2842 ;; other than x86_64.
2843 (supported-systems '("x86_64-linux"))
2844 (home-page "http://ccb.jhu.edu/software/hisat/index.shtml")
2845 (synopsis "Hierarchical indexing for spliced alignment of transcripts")
2846 (description
2847 "HISAT is a fast and sensitive spliced alignment program for mapping
2848 RNA-seq reads. In addition to one global FM index that represents a whole
2849 genome, HISAT uses a large set of small FM indexes that collectively cover the
2850 whole genome. These small indexes (called local indexes) combined with
2851 several alignment strategies enable effective alignment of RNA-seq reads, in
2852 particular, reads spanning multiple exons.")
2853 (license license:gpl3+)))
2854
2855 (define-public hisat2
2856 (package
2857 (name "hisat2")
2858 (version "2.0.5")
2859 (source
2860 (origin
2861 (method url-fetch)
2862 ;; FIXME: a better source URL is
2863 ;; (string-append "ftp://ftp.ccb.jhu.edu/pub/infphilo/hisat2"
2864 ;; "/downloads/hisat2-" version "-source.zip")
2865 ;; with hash "0lywnr8kijwsc2aw10dwxic0n0yvip6fl3rjlvc8zzwahamy4x7g"
2866 ;; but it is currently unavailable.
2867 (uri "https://github.com/infphilo/hisat2/archive/cba6e8cb.tar.gz")
2868 (file-name (string-append name "-" version ".tar.gz"))
2869 (sha256
2870 (base32
2871 "1mf2hdsyv7cd97xm9mp9a4qws02yrj95y6w6f6cdwnq0klp81r50"))))
2872 (build-system gnu-build-system)
2873 (arguments
2874 `(#:tests? #f ; no check target
2875 #:make-flags (list "CC=gcc" "CXX=g++" "allall")
2876 #:modules ((guix build gnu-build-system)
2877 (guix build utils)
2878 (srfi srfi-26))
2879 #:phases
2880 (modify-phases %standard-phases
2881 (add-after 'unpack 'make-deterministic
2882 (lambda _
2883 (substitute* "Makefile"
2884 (("`date`") "0"))
2885 #t))
2886 (delete 'configure)
2887 (replace 'install
2888 (lambda* (#:key outputs #:allow-other-keys)
2889 (let* ((out (assoc-ref outputs "out"))
2890 (bin (string-append out "/bin/"))
2891 (doc (string-append out "/share/doc/hisat2/")))
2892 (for-each
2893 (cut install-file <> bin)
2894 (find-files "."
2895 "hisat2(-(build|align|inspect)(-(s|l)(-debug)*)*)*$"))
2896 (mkdir-p doc)
2897 (install-file "doc/manual.inc.html" doc))
2898 #t)))))
2899 (native-inputs
2900 `(("unzip" ,unzip) ; needed for archive from ftp
2901 ("perl" ,perl)
2902 ("pandoc" ,ghc-pandoc))) ; for documentation
2903 (home-page "http://ccb.jhu.edu/software/hisat2/index.shtml")
2904 (synopsis "Graph-based alignment of genomic sequencing reads")
2905 (description "HISAT2 is a fast and sensitive alignment program for mapping
2906 next-generation sequencing reads (both DNA and RNA) to a population of human
2907 genomes (as well as to a single reference genome). In addition to using one
2908 global @dfn{graph FM} (GFM) index that represents a population of human
2909 genomes, HISAT2 uses a large set of small GFM indexes that collectively cover
2910 the whole genome. These small indexes, combined with several alignment
2911 strategies, enable rapid and accurate alignment of sequencing reads. This new
2912 indexing scheme is called a @dfn{Hierarchical Graph FM index} (HGFM).")
2913 ;; HISAT2 contains files from Bowtie2, which is released under
2914 ;; GPLv2 or later. The HISAT2 source files are released under
2915 ;; GPLv3 or later.
2916 (license license:gpl3+)))
2917
2918 (define-public hmmer
2919 (package
2920 (name "hmmer")
2921 (version "3.1b2")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri (string-append
2926 "http://eddylab.org/software/hmmer"
2927 (version-major version) "/"
2928 version "/hmmer-" version ".tar.gz"))
2929 (sha256
2930 (base32
2931 "0djmgc0pfli0jilfx8hql1axhwhqxqb8rxg2r5rg07aw73sfs5nx"))
2932 (patches (search-patches "hmmer-remove-cpu-specificity.patch"))))
2933 (build-system gnu-build-system)
2934 (native-inputs `(("perl" ,perl)))
2935 (home-page "http://hmmer.org/")
2936 (synopsis "Biosequence analysis using profile hidden Markov models")
2937 (description
2938 "HMMER is used for searching sequence databases for homologs of protein
2939 sequences, and for making protein sequence alignments. It implements methods
2940 using probabilistic models called profile hidden Markov models (profile
2941 HMMs).")
2942 (license (list license:gpl3+
2943 ;; The bundled library 'easel' is distributed
2944 ;; under The Janelia Farm Software License.
2945 (license:non-copyleft
2946 "file://easel/LICENSE"
2947 "See easel/LICENSE in the distribution.")))))
2948
2949 (define-public htseq
2950 (package
2951 (name "htseq")
2952 (version "0.9.1")
2953 (source (origin
2954 (method url-fetch)
2955 (uri (pypi-uri "HTSeq" version))
2956 (sha256
2957 (base32
2958 "11flgb1381xdhk43bzbfm3vhnszkpqg6jk76rpa5xd1zbrvvlnxg"))))
2959 (build-system python-build-system)
2960 (native-inputs
2961 `(("python-cython" ,python-cython)))
2962 ;; Numpy needs to be propagated when htseq is used as a Python library.
2963 (propagated-inputs
2964 `(("python-numpy" ,python-numpy)))
2965 (inputs
2966 `(("python-pysam" ,python-pysam)
2967 ("python-matplotlib" ,python-matplotlib)))
2968 (home-page "http://www-huber.embl.de/users/anders/HTSeq/")
2969 (synopsis "Analysing high-throughput sequencing data with Python")
2970 (description
2971 "HTSeq is a Python package that provides infrastructure to process data
2972 from high-throughput sequencing assays.")
2973 (license license:gpl3+)))
2974
2975 (define-public python2-htseq
2976 (package-with-python2 htseq))
2977
2978 (define-public java-htsjdk
2979 (package
2980 (name "java-htsjdk")
2981 (version "2.3.0") ; last version without build dependency on gradle
2982 (source (origin
2983 (method url-fetch)
2984 (uri (string-append
2985 "https://github.com/samtools/htsjdk/archive/"
2986 version ".tar.gz"))
2987 (file-name (string-append name "-" version ".tar.gz"))
2988 (sha256
2989 (base32
2990 "1ibhzzxsfc38nqyk9r8zqj6blfc1kh26iirypd4q6n90hs2m6nyq"))
2991 (modules '((guix build utils)))
2992 (snippet
2993 ;; Delete pre-built binaries
2994 '(begin
2995 (delete-file-recursively "lib")
2996 (mkdir-p "lib")
2997 #t))))
2998 (build-system ant-build-system)
2999 (arguments
3000 `(#:tests? #f ; test require Internet access
3001 #:jdk ,icedtea-8
3002 #:make-flags
3003 (list (string-append "-Ddist=" (assoc-ref %outputs "out")
3004 "/share/java/htsjdk/"))
3005 #:build-target "all"
3006 #:phases
3007 (modify-phases %standard-phases
3008 ;; The build phase also installs the jars
3009 (delete 'install))))
3010 (inputs
3011 `(("java-ngs" ,java-ngs)
3012 ("java-snappy-1" ,java-snappy-1)
3013 ("java-commons-compress" ,java-commons-compress)
3014 ("java-commons-logging-minimal" ,java-commons-logging-minimal)
3015 ("java-commons-jexl-2" ,java-commons-jexl-2)
3016 ("java-xz" ,java-xz)))
3017 (native-inputs
3018 `(("java-testng" ,java-testng)))
3019 (home-page "http://samtools.github.io/htsjdk/")
3020 (synopsis "Java API for high-throughput sequencing data (HTS) formats")
3021 (description
3022 "HTSJDK is an implementation of a unified Java library for accessing
3023 common file formats, such as SAM and VCF, used for high-throughput
3024 sequencing (HTS) data. There are also an number of useful utilities for
3025 manipulating HTS data.")
3026 (license license:expat)))
3027
3028 (define-public java-htsjdk-latest
3029 (package
3030 (name "java-htsjdk")
3031 (version "2.14.3")
3032 (source (origin
3033 (method git-fetch)
3034 (uri (git-reference
3035 (url "https://github.com/samtools/htsjdk.git")
3036 (commit version)))
3037 (file-name (string-append name "-" version "-checkout"))
3038 (sha256
3039 (base32
3040 "1lmya1fdjy03mz6zmdmd86j9v9vfhqb3952mqq075navx1i6g4bc"))))
3041 (build-system ant-build-system)
3042 (arguments
3043 `(#:tests? #f ; test require Scala
3044 #:jdk ,icedtea-8
3045 #:jar-name "htsjdk.jar"
3046 #:phases
3047 (modify-phases %standard-phases
3048 (add-after 'unpack 'remove-useless-build.xml
3049 (lambda _ (delete-file "build.xml") #t))
3050 ;; The tests require the scalatest package.
3051 (add-after 'unpack 'remove-tests
3052 (lambda _ (delete-file-recursively "src/test") #t)))))
3053 (inputs
3054 `(("java-ngs" ,java-ngs)
3055 ("java-snappy-1" ,java-snappy-1)
3056 ("java-commons-compress" ,java-commons-compress)
3057 ("java-commons-logging-minimal" ,java-commons-logging-minimal)
3058 ("java-commons-jexl-2" ,java-commons-jexl-2)
3059 ("java-xz" ,java-xz)))
3060 (native-inputs
3061 `(("java-junit" ,java-junit)))
3062 (home-page "http://samtools.github.io/htsjdk/")
3063 (synopsis "Java API for high-throughput sequencing data (HTS) formats")
3064 (description
3065 "HTSJDK is an implementation of a unified Java library for accessing
3066 common file formats, such as SAM and VCF, used for high-throughput
3067 sequencing (HTS) data. There are also an number of useful utilities for
3068 manipulating HTS data.")
3069 (license license:expat)))
3070
3071 ;; This is needed for picard 2.10.3
3072 (define-public java-htsjdk-2.10.1
3073 (package (inherit java-htsjdk-latest)
3074 (name "java-htsjdk")
3075 (version "2.10.1")
3076 (source (origin
3077 (method git-fetch)
3078 (uri (git-reference
3079 (url "https://github.com/samtools/htsjdk.git")
3080 (commit version)))
3081 (file-name (string-append name "-" version "-checkout"))
3082 (sha256
3083 (base32
3084 "1kxh7slm2pm3x9p6jxa1wqsq9a31dhiiflhxnxqcisan4k3rwia2"))))
3085 (build-system ant-build-system)
3086 (arguments
3087 `(#:tests? #f ; tests require Scala
3088 #:jdk ,icedtea-8
3089 #:jar-name "htsjdk.jar"
3090 #:phases
3091 (modify-phases %standard-phases
3092 (add-after 'unpack 'remove-useless-build.xml
3093 (lambda _ (delete-file "build.xml") #t))
3094 ;; The tests require the scalatest package.
3095 (add-after 'unpack 'remove-tests
3096 (lambda _ (delete-file-recursively "src/test") #t)))))))
3097
3098 ;; This version matches java-htsjdk 2.3.0. Later versions also require a more
3099 ;; recent version of java-htsjdk, which depends on gradle.
3100 (define-public java-picard
3101 (package
3102 (name "java-picard")
3103 (version "2.3.0")
3104 (source (origin
3105 (method git-fetch)
3106 (uri (git-reference
3107 (url "https://github.com/broadinstitute/picard.git")
3108 (commit version)))
3109 (file-name (string-append "java-picard-" version "-checkout"))
3110 (sha256
3111 (base32
3112 "1ll7mf4r3by92w2nhlmpa591xd1f46xlkwh59mq6fvbb5pdwzvx6"))
3113 (modules '((guix build utils)))
3114 (snippet
3115 '(begin
3116 ;; Delete pre-built binaries.
3117 (delete-file-recursively "lib")
3118 (mkdir-p "lib")
3119 (substitute* "build.xml"
3120 ;; Remove build-time dependency on git.
3121 (("failifexecutionfails=\"true\"")
3122 "failifexecutionfails=\"false\"")
3123 ;; Use our htsjdk.
3124 (("depends=\"compile-htsjdk, ")
3125 "depends=\"")
3126 (("depends=\"compile-htsjdk-tests, ")
3127 "depends=\"")
3128 ;; Build picard-lib.jar before building picard.jar
3129 (("name=\"picard-jar\" depends=\"" line)
3130 (string-append line "picard-lib-jar, ")))
3131 #t))))
3132 (build-system ant-build-system)
3133 (arguments
3134 `(#:build-target "picard-jar"
3135 #:test-target "test"
3136 ;; Tests require jacoco:coverage.
3137 #:tests? #f
3138 #:make-flags
3139 (list (string-append "-Dhtsjdk_lib_dir="
3140 (assoc-ref %build-inputs "java-htsjdk")
3141 "/share/java/htsjdk/")
3142 "-Dhtsjdk-classes=dist/tmp"
3143 (string-append "-Dhtsjdk-version="
3144 ,(package-version java-htsjdk)))
3145 #:jdk ,icedtea-8
3146 #:phases
3147 (modify-phases %standard-phases
3148 (add-after 'unpack 'use-our-htsjdk
3149 (lambda* (#:key inputs #:allow-other-keys)
3150 (substitute* "build.xml"
3151 (("\\$\\{htsjdk\\}/lib")
3152 (string-append (assoc-ref inputs "java-htsjdk")
3153 "/share/java/htsjdk/")))
3154 #t))
3155 (add-after 'unpack 'make-test-target-independent
3156 (lambda* (#:key inputs #:allow-other-keys)
3157 (substitute* "build.xml"
3158 (("name=\"test\" depends=\"compile, ")
3159 "name=\"test\" depends=\""))
3160 #t))
3161 (replace 'install (install-jars "dist")))))
3162 (inputs
3163 `(("java-htsjdk" ,java-htsjdk)
3164 ("java-guava" ,java-guava)))
3165 (native-inputs
3166 `(("java-testng" ,java-testng)))
3167 (home-page "http://broadinstitute.github.io/picard/")
3168 (synopsis "Tools for manipulating high-throughput sequencing data and formats")
3169 (description "Picard is a set of Java command line tools for manipulating
3170 high-throughput sequencing (HTS) data and formats. Picard is implemented
3171 using the HTSJDK Java library to support accessing file formats that are
3172 commonly used for high-throughput sequencing data such as SAM, BAM, CRAM and
3173 VCF.")
3174 (license license:expat)))
3175
3176 ;; This is needed for dropseq-tools
3177 (define-public java-picard-2.10.3
3178 (package
3179 (name "java-picard")
3180 (version "2.10.3")
3181 (source (origin
3182 (method git-fetch)
3183 (uri (git-reference
3184 (url "https://github.com/broadinstitute/picard.git")
3185 (commit version)))
3186 (file-name (string-append "java-picard-" version "-checkout"))
3187 (sha256
3188 (base32
3189 "1ajlx31l6i1k3y2rhnmgq07sz99g2czqfqgkr9mihmdjp3gwjhvi"))))
3190 (build-system ant-build-system)
3191 (arguments
3192 `(#:jar-name "picard.jar"
3193 ;; Tests require jacoco:coverage.
3194 #:tests? #f
3195 #:jdk ,icedtea-8
3196 #:main-class "picard.cmdline.PicardCommandLine"
3197 #:modules ((guix build ant-build-system)
3198 (guix build utils)
3199 (guix build java-utils)
3200 (sxml simple)
3201 (sxml transform)
3202 (sxml xpath))
3203 #:phases
3204 (modify-phases %standard-phases
3205 (add-after 'unpack 'remove-useless-build.xml
3206 (lambda _ (delete-file "build.xml") #t))
3207 ;; This is necessary to ensure that htsjdk is found when using
3208 ;; picard.jar as an executable.
3209 (add-before 'build 'edit-classpath-in-manifest
3210 (lambda* (#:key inputs #:allow-other-keys)
3211 (chmod "build.xml" #o664)
3212 (call-with-output-file "build.xml.new"
3213 (lambda (port)
3214 (sxml->xml
3215 (pre-post-order
3216 (with-input-from-file "build.xml"
3217 (lambda _ (xml->sxml #:trim-whitespace? #t)))
3218 `((target . ,(lambda (tag . kids)
3219 (let ((name ((sxpath '(name *text*))
3220 (car kids)))
3221 ;; FIXME: We're breaking the line
3222 ;; early with a dummy path to
3223 ;; ensure that the store reference
3224 ;; isn't broken apart and can still
3225 ;; be found by the reference
3226 ;; scanner.
3227 (msg (format #f
3228 "\
3229 Class-Path: /~a \
3230 ~a/share/java/htsjdk.jar${line.separator}"
3231 ;; maximum line length is 70
3232 (string-tabulate (const #\b) 57)
3233 (assoc-ref inputs "java-htsjdk"))))
3234 (if (member "manifest" name)
3235 `(,tag ,@kids
3236 (echo
3237 (@ (message ,msg)
3238 (file "${manifest.file}")
3239 (append "true"))))
3240 `(,tag ,@kids)))))
3241 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
3242 (*text* . ,(lambda (_ txt) txt))))
3243 port)))
3244 (rename-file "build.xml.new" "build.xml")
3245 #t)))))
3246 (propagated-inputs
3247 `(("java-htsjdk" ,java-htsjdk-2.10.1)))
3248 (native-inputs
3249 `(("java-testng" ,java-testng)
3250 ("java-guava" ,java-guava)))
3251 (home-page "http://broadinstitute.github.io/picard/")
3252 (synopsis "Tools for manipulating high-throughput sequencing data and formats")
3253 (description "Picard is a set of Java command line tools for manipulating
3254 high-throughput sequencing (HTS) data and formats. Picard is implemented
3255 using the HTSJDK Java library to support accessing file formats that are
3256 commonly used for high-throughput sequencing data such as SAM, BAM, CRAM and
3257 VCF.")
3258 (license license:expat)))
3259
3260 ;; This is the last version of Picard to provide net.sf.samtools
3261 (define-public java-picard-1.113
3262 (package (inherit java-picard)
3263 (name "java-picard")
3264 (version "1.113")
3265 (source (origin
3266 (method git-fetch)
3267 (uri (git-reference
3268 (url "https://github.com/broadinstitute/picard.git")
3269 (commit version)))
3270 (file-name (string-append "java-picard-" version "-checkout"))
3271 (sha256
3272 (base32
3273 "0lkpvin2fz3hhly4l02kk56fqy8lmlgyzr9kmvljk6ry6l1hw973"))
3274 (modules '((guix build utils)))
3275 (snippet
3276 '(begin
3277 ;; Delete pre-built binaries.
3278 (delete-file-recursively "lib")
3279 (mkdir-p "lib")
3280 #t))))
3281 (build-system ant-build-system)
3282 (arguments
3283 `(#:build-target "picard-jar"
3284 #:test-target "test"
3285 ;; FIXME: the class path at test time is wrong.
3286 ;; [testng] Error: A JNI error has occurred, please check your installation and try again
3287 ;; [testng] Exception in thread "main" java.lang.NoClassDefFoundError: com/beust/jcommander/ParameterException
3288 #:tests? #f
3289 #:jdk ,icedtea-8
3290 ;; This is only used for tests.
3291 #:make-flags
3292 (list "-Dsamjdk.intel_deflater_so_path=lib/jni/libIntelDeflater.so")
3293 #:phases
3294 (modify-phases %standard-phases
3295 ;; Do not use bundled ant bzip2.
3296 (add-after 'unpack 'use-ant-bzip
3297 (lambda* (#:key inputs #:allow-other-keys)
3298 (substitute* "build.xml"
3299 (("\\$\\{lib\\}/apache-ant-1.8.2-bzip2.jar")
3300 (string-append (assoc-ref inputs "ant")
3301 "/lib/ant.jar")))
3302 #t))
3303 (add-after 'unpack 'make-test-target-independent
3304 (lambda* (#:key inputs #:allow-other-keys)
3305 (substitute* "build.xml"
3306 (("name=\"test\" depends=\"compile, ")
3307 "name=\"test\" depends=\"compile-tests, ")
3308 (("name=\"compile\" depends=\"compile-src, compile-tests\"")
3309 "name=\"compile\" depends=\"compile-src\""))
3310 #t))
3311 (add-after 'unpack 'fix-deflater-path
3312 (lambda* (#:key outputs #:allow-other-keys)
3313 (substitute* "src/java/net/sf/samtools/Defaults.java"
3314 (("getStringProperty\\(\"intel_deflater_so_path\", null\\)")
3315 (string-append "getStringProperty(\"intel_deflater_so_path\", \""
3316 (assoc-ref outputs "out")
3317 "/lib/jni/libIntelDeflater.so"
3318 "\")")))
3319 #t))
3320 ;; Build the deflater library, because we've previously deleted the
3321 ;; pre-built one. This can only be built with access to the JDK
3322 ;; sources.
3323 (add-after 'build 'build-jni
3324 (lambda* (#:key inputs #:allow-other-keys)
3325 (mkdir-p "lib/jni")
3326 (mkdir-p "jdk-src")
3327 (and (zero? (system* "tar" "--strip-components=1" "-C" "jdk-src"
3328 "-xf" (assoc-ref inputs "jdk-src")))
3329 (zero? (system* "javah" "-jni"
3330 "-classpath" "classes"
3331 "-d" "lib/"
3332 "net.sf.samtools.util.zip.IntelDeflater"))
3333 (with-directory-excursion "src/c/inteldeflater"
3334 (zero? (system* "gcc" "-I../../../lib" "-I."
3335 (string-append "-I" (assoc-ref inputs "jdk")
3336 "/include/linux")
3337 "-I../../../jdk-src/src/share/native/common/"
3338 "-I../../../jdk-src/src/solaris/native/common/"
3339 "-c" "-O3" "-fPIC" "IntelDeflater.c"))
3340 (zero? (system* "gcc" "-shared"
3341 "-o" "../../../lib/jni/libIntelDeflater.so"
3342 "IntelDeflater.o" "-lz" "-lstdc++"))))))
3343 ;; We can only build everything else after building the JNI library.
3344 (add-after 'build-jni 'build-rest
3345 (lambda* (#:key make-flags #:allow-other-keys)
3346 (zero? (apply system* `("ant" "all" ,@make-flags)))))
3347 (add-before 'build 'set-JAVA6_HOME
3348 (lambda _
3349 (setenv "JAVA6_HOME" (getenv "JAVA_HOME"))
3350 #t))
3351 (replace 'install (install-jars "dist"))
3352 (add-after 'install 'install-jni-lib
3353 (lambda* (#:key outputs #:allow-other-keys)
3354 (let ((jni (string-append (assoc-ref outputs "out")
3355 "/lib/jni")))
3356 (mkdir-p jni)
3357 (install-file "lib/jni/libIntelDeflater.so" jni)
3358 #t))))))
3359 (inputs
3360 `(("java-snappy-1" ,java-snappy-1)
3361 ("java-commons-jexl-2" ,java-commons-jexl-2)
3362 ("java-cofoja" ,java-cofoja)
3363 ("ant" ,ant) ; for bzip2 support at runtime
3364 ("zlib" ,zlib)))
3365 (native-inputs
3366 `(("ant-apache-bcel" ,ant-apache-bcel)
3367 ("ant-junit" ,ant-junit)
3368 ("java-testng" ,java-testng)
3369 ("java-commons-bcel" ,java-commons-bcel)
3370 ("java-jcommander" ,java-jcommander)
3371 ("jdk" ,icedtea-8 "jdk")
3372 ("jdk-src" ,(car (assoc-ref (package-native-inputs icedtea-8) "jdk-drop")))))))
3373
3374 (define-public fastqc
3375 (package
3376 (name "fastqc")
3377 (version "0.11.5")
3378 (source
3379 (origin
3380 (method url-fetch)
3381 (uri (string-append "http://www.bioinformatics.babraham.ac.uk/"
3382 "projects/fastqc/fastqc_v"
3383 version "_source.zip"))
3384 (sha256
3385 (base32
3386 "18rrlkhcrxvvvlapch4dpj6xc6mpayzys8qfppybi8jrpgx5cc5f"))))
3387 (build-system ant-build-system)
3388 (arguments
3389 `(#:tests? #f ; there are no tests
3390 #:build-target "build"
3391 #:phases
3392 (modify-phases %standard-phases
3393 (add-after 'unpack 'fix-dependencies
3394 (lambda* (#:key inputs #:allow-other-keys)
3395 (substitute* "build.xml"
3396 (("jbzip2-0.9.jar")
3397 (string-append (assoc-ref inputs "java-jbzip2")
3398 "/share/java/jbzip2.jar"))
3399 (("sam-1.103.jar")
3400 (string-append (assoc-ref inputs "java-picard-1.113")
3401 "/share/java/sam-1.112.jar"))
3402 (("cisd-jhdf5.jar")
3403 (string-append (assoc-ref inputs "java-cisd-jhdf5")
3404 "/share/java/sis-jhdf5.jar")))
3405 #t))
3406 ;; There is no installation target
3407 (replace 'install
3408 (lambda* (#:key inputs outputs #:allow-other-keys)
3409 (let* ((out (assoc-ref outputs "out"))
3410 (bin (string-append out "/bin"))
3411 (share (string-append out "/share/fastqc/"))
3412 (exe (string-append share "/fastqc")))
3413 (for-each mkdir-p (list bin share))
3414 (copy-recursively "bin" share)
3415 (substitute* exe
3416 (("my \\$java_bin = 'java';")
3417 (string-append "my $java_bin = '"
3418 (assoc-ref inputs "java")
3419 "/bin/java';")))
3420 (chmod exe #o555)
3421 (symlink exe (string-append bin "/fastqc"))
3422 #t))))))
3423 (inputs
3424 `(("java" ,icedtea)
3425 ("perl" ,perl) ; needed for the wrapper script
3426 ("java-cisd-jhdf5" ,java-cisd-jhdf5)
3427 ("java-picard-1.113" ,java-picard-1.113)
3428 ("java-jbzip2" ,java-jbzip2)))
3429 (native-inputs
3430 `(("unzip" ,unzip)))
3431 (home-page "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/")
3432 (synopsis "Quality control tool for high throughput sequence data")
3433 (description
3434 "FastQC aims to provide a simple way to do some quality control
3435 checks on raw sequence data coming from high throughput sequencing
3436 pipelines. It provides a modular set of analyses which you can use to
3437 give a quick impression of whether your data has any problems of which
3438 you should be aware before doing any further analysis.
3439
3440 The main functions of FastQC are:
3441
3442 @itemize
3443 @item Import of data from BAM, SAM or FastQ files (any variant);
3444 @item Providing a quick overview to tell you in which areas there may
3445 be problems;
3446 @item Summary graphs and tables to quickly assess your data;
3447 @item Export of results to an HTML based permanent report;
3448 @item Offline operation to allow automated generation of reports
3449 without running the interactive application.
3450 @end itemize\n")
3451 (license license:gpl3+)))
3452
3453 (define-public fastp
3454 (package
3455 (name "fastp")
3456 (version "0.14.1")
3457 (source
3458 (origin
3459 (method git-fetch)
3460 (uri (git-reference
3461 (url "https://github.com/OpenGene/fastp.git")
3462 (commit (string-append "v" version))))
3463 (file-name (git-file-name name version))
3464 (sha256
3465 (base32
3466 "1r6ms5zbf5rps4rgp4z73nczadl00b5rqylw8f684isfz27dp0xh"))))
3467 (build-system gnu-build-system)
3468 (arguments
3469 `(#:tests? #f ; there are none
3470 #:make-flags
3471 (list (string-append "BINDIR=" (assoc-ref %outputs "out") "/bin"))
3472 #:phases
3473 (modify-phases %standard-phases
3474 (delete 'configure)
3475 (add-before 'install 'create-target-dir
3476 (lambda* (#:key outputs #:allow-other-keys)
3477 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
3478 #t)))))
3479 (inputs
3480 `(("zlib" ,zlib)))
3481 (home-page "https://github.com/OpenGene/fastp/")
3482 (synopsis "All-in-one FastQ preprocessor")
3483 (description
3484 "Fastp is a tool designed to provide fast all-in-one preprocessing for
3485 FastQ files. This tool has multi-threading support to afford high
3486 performance.")
3487 (license license:expat)))
3488
3489 (define-public htslib
3490 (package
3491 (name "htslib")
3492 (version "1.8")
3493 (source (origin
3494 (method url-fetch)
3495 (uri (string-append
3496 "https://github.com/samtools/htslib/releases/download/"
3497 version "/htslib-" version ".tar.bz2"))
3498 (sha256
3499 (base32
3500 "18bw0mn9pj5wgarnlaxmf1bb8pdqgl1zd6czirqcr62ajpn1xvy0"))))
3501 (build-system gnu-build-system)
3502 (inputs
3503 `(("openssl" ,openssl)
3504 ("curl" ,curl)
3505 ("zlib" ,zlib)))
3506 (native-inputs
3507 `(("perl" ,perl)))
3508 (home-page "http://www.htslib.org")
3509 (synopsis "C library for reading/writing high-throughput sequencing data")
3510 (description
3511 "HTSlib is a C library for reading/writing high-throughput sequencing
3512 data. It also provides the @command{bgzip}, @command{htsfile}, and
3513 @command{tabix} utilities.")
3514 ;; Files under cram/ are released under the modified BSD license;
3515 ;; the rest is released under the Expat license
3516 (license (list license:expat license:bsd-3))))
3517
3518 ;; This package should be removed once no packages rely upon it.
3519 (define htslib-1.3
3520 (package
3521 (inherit htslib)
3522 (version "1.3.1")
3523 (source (origin
3524 (method url-fetch)
3525 (uri (string-append
3526 "https://github.com/samtools/htslib/releases/download/"
3527 version "/htslib-" version ".tar.bz2"))
3528 (sha256
3529 (base32
3530 "1rja282fwdc25ql6izkhdyh8ppw8x2fs0w0js78zgkmqjlikmma9"))))))
3531
3532 (define-public idr
3533 (package
3534 (name "idr")
3535 (version "2.0.3")
3536 (source (origin
3537 (method url-fetch)
3538 (uri (string-append
3539 "https://github.com/nboley/idr/archive/"
3540 version ".tar.gz"))
3541 (file-name (string-append name "-" version ".tar.gz"))
3542 (sha256
3543 (base32
3544 "1rjdly6daslw66r43g9md8znizlscn1sphycqyldzsidkc4vxqv3"))
3545 ;; Delete generated C code.
3546 (snippet
3547 '(begin (delete-file "idr/inv_cdf.c") #t))))
3548 (build-system python-build-system)
3549 ;; There is only one test ("test_inv_cdf.py") and it tests features that
3550 ;; are no longer part of this package. It also asserts False, which
3551 ;; causes the tests to always fail.
3552 (arguments `(#:tests? #f))
3553 (propagated-inputs
3554 `(("python-scipy" ,python-scipy)
3555 ("python-sympy" ,python-sympy)
3556 ("python-numpy" ,python-numpy)
3557 ("python-matplotlib" ,python-matplotlib)))
3558 (native-inputs
3559 `(("python-cython" ,python-cython)))
3560 (home-page "https://github.com/nboley/idr")
3561 (synopsis "Tool to measure the irreproducible discovery rate (IDR)")
3562 (description
3563 "The IDR (Irreproducible Discovery Rate) framework is a unified approach
3564 to measure the reproducibility of findings identified from replicate
3565 experiments and provide highly stable thresholds based on reproducibility.")
3566 (license license:gpl2+)))
3567
3568 (define-public jellyfish
3569 (package
3570 (name "jellyfish")
3571 (version "2.2.7")
3572 (source (origin
3573 (method url-fetch)
3574 (uri (string-append "https://github.com/gmarcais/Jellyfish/"
3575 "releases/download/v" version
3576 "/jellyfish-" version ".tar.gz"))
3577 (sha256
3578 (base32
3579 "1a1iwq9pq54k2m9ypvwl5s0bqfl64gwh9dx5af9i382ajas2016q"))))
3580 (build-system gnu-build-system)
3581 (outputs '("out" ;for library
3582 "ruby" ;for Ruby bindings
3583 "python")) ;for Python bindings
3584 (arguments
3585 `(#:configure-flags
3586 (list (string-append "--enable-ruby-binding="
3587 (assoc-ref %outputs "ruby"))
3588 (string-append "--enable-python-binding="
3589 (assoc-ref %outputs "python")))
3590 #:phases
3591 (modify-phases %standard-phases
3592 (add-before 'check 'set-SHELL-variable
3593 (lambda _
3594 ;; generator_manager.hpp either uses /bin/sh or $SHELL
3595 ;; to run tests.
3596 (setenv "SHELL" (which "bash"))
3597 #t)))))
3598 (native-inputs
3599 `(("bc" ,bc)
3600 ("time" ,time)
3601 ("ruby" ,ruby)
3602 ("python" ,python-2)
3603 ("pkg-config" ,pkg-config)))
3604 (inputs
3605 `(("htslib" ,htslib)))
3606 (synopsis "Tool for fast counting of k-mers in DNA")
3607 (description
3608 "Jellyfish is a tool for fast, memory-efficient counting of k-mers in
3609 DNA. A k-mer is a substring of length k, and counting the occurrences of all
3610 such substrings is a central step in many analyses of DNA sequence. Jellyfish
3611 is a command-line program that reads FASTA and multi-FASTA files containing
3612 DNA sequences. It outputs its k-mer counts in a binary format, which can be
3613 translated into a human-readable text format using the @code{jellyfish dump}
3614 command, or queried for specific k-mers with @code{jellyfish query}.")
3615 (home-page "http://www.genome.umd.edu/jellyfish.html")
3616 ;; From their website: JELLYFISH runs on 64-bit Intel-compatible processors
3617 (supported-systems '("x86_64-linux"))
3618 ;; The combined work is published under the GPLv3 or later. Individual
3619 ;; files such as lib/jsoncpp.cpp are released under the Expat license.
3620 (license (list license:gpl3+ license:expat))))
3621
3622 (define-public khmer
3623 (package
3624 (name "khmer")
3625 (version "2.0")
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (pypi-uri "khmer" version))
3630 (sha256
3631 (base32
3632 "0wb05shqh77v00256qlm68vbbx3kl76fyzihszbz5nhanl4ni33a"))
3633 (patches (search-patches "khmer-use-libraries.patch"))))
3634 (build-system python-build-system)
3635 (arguments
3636 `(#:phases
3637 (modify-phases %standard-phases
3638 (add-after 'unpack 'set-paths
3639 (lambda* (#:key inputs outputs #:allow-other-keys)
3640 ;; Delete bundled libraries.
3641 (delete-file-recursively "third-party/zlib")
3642 (delete-file-recursively "third-party/bzip2")
3643 ;; Replace bundled seqan.
3644 (let* ((seqan-all "third-party/seqan")
3645 (seqan-include (string-append
3646 seqan-all "/core/include")))
3647 (delete-file-recursively seqan-all)
3648 (copy-recursively (string-append (assoc-ref inputs "seqan")
3649 "/include/seqan")
3650 (string-append seqan-include "/seqan")))
3651 ;; We do not replace the bundled MurmurHash as the canonical
3652 ;; repository for this code 'SMHasher' is unsuitable for
3653 ;; providing a library. See
3654 ;; https://lists.gnu.org/archive/html/guix-devel/2016-06/msg00977.html
3655 #t))
3656 (add-after 'unpack 'set-cc
3657 (lambda _
3658 (setenv "CC" "gcc")
3659 #t))
3660 ;; It is simpler to test after installation.
3661 (delete 'check)
3662 (add-after 'install 'post-install-check
3663 (lambda* (#:key inputs outputs #:allow-other-keys)
3664 (let ((out (assoc-ref outputs "out")))
3665 (setenv "PATH"
3666 (string-append
3667 (getenv "PATH")
3668 ":"
3669 (assoc-ref outputs "out")
3670 "/bin"))
3671 (setenv "PYTHONPATH"
3672 (string-append
3673 (getenv "PYTHONPATH")
3674 ":"
3675 out
3676 "/lib/python"
3677 (string-take (string-take-right
3678 (assoc-ref inputs "python") 5) 3)
3679 "/site-packages"))
3680 (with-directory-excursion "build"
3681 (zero? (system* "nosetests" "khmer" "--attr"
3682 "!known_failing")))))))))
3683 (native-inputs
3684 `(("seqan" ,seqan)
3685 ("python-nose" ,python-nose)))
3686 (inputs
3687 `(("zlib" ,zlib)
3688 ("bzip2" ,bzip2)
3689 ("python-screed" ,python-screed)
3690 ("python-bz2file" ,python-bz2file)
3691 ;; Tests fail when gcc-5 is used for compilation. Use gcc-4.9 at least
3692 ;; until the next version of khmer (likely 2.1) is released.
3693 ("gcc" ,gcc-4.9)))
3694 (home-page "https://khmer.readthedocs.org/")
3695 (synopsis "K-mer counting, filtering and graph traversal library")
3696 (description "The khmer software is a set of command-line tools for
3697 working with DNA shotgun sequencing data from genomes, transcriptomes,
3698 metagenomes and single cells. Khmer can make de novo assemblies faster, and
3699 sometimes better. Khmer can also identify and fix problems with shotgun
3700 data.")
3701 ;; When building on i686, armhf and mips64el, we get the following error:
3702 ;; error: ['khmer', 'khmer.tests', 'oxli'] require 64-bit operating system
3703 (supported-systems '("x86_64-linux" "aarch64-linux"))
3704 (license license:bsd-3)))
3705
3706 (define-public kaiju
3707 (package
3708 (name "kaiju")
3709 (version "1.6.2")
3710 (source (origin
3711 (method url-fetch)
3712 (uri (string-append
3713 "https://github.com/bioinformatics-centre/kaiju/archive/v"
3714 version ".tar.gz"))
3715 (file-name (string-append name "-" version ".tar.gz"))
3716 (sha256
3717 (base32
3718 "1kdn4rxs0kr9ibmrgrfcci71aa6j6gr71dbc8pff7731rpab6kj7"))))
3719 (build-system gnu-build-system)
3720 (arguments
3721 `(#:tests? #f ; There are no tests.
3722 #:phases
3723 (modify-phases %standard-phases
3724 (delete 'configure)
3725 (add-before 'build 'move-to-src-dir
3726 (lambda _ (chdir "src") #t))
3727 (replace 'install
3728 (lambda* (#:key inputs outputs #:allow-other-keys)
3729 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
3730 (mkdir-p bin)
3731 (chdir "..")
3732 (copy-recursively "bin" bin)
3733 (copy-recursively "util" bin))
3734 #t)))))
3735 (inputs
3736 `(("perl" ,perl)
3737 ("zlib" ,zlib)))
3738 (home-page "http://kaiju.binf.ku.dk/")
3739 (synopsis "Fast and sensitive taxonomic classification for metagenomics")
3740 (description "Kaiju is a program for sensitive taxonomic classification
3741 of high-throughput sequencing reads from metagenomic whole genome sequencing
3742 experiments.")
3743 (license license:gpl3+)))
3744
3745 (define-public macs
3746 (package
3747 (name "macs")
3748 (version "2.1.0.20151222")
3749 (source (origin
3750 (method url-fetch)
3751 (uri (pypi-uri "MACS2" version))
3752 (sha256
3753 (base32
3754 "1r2hcz6irhcq7lwbafjks98jbn34hv05avgbdjnp6w6mlfjkf8x5"))))
3755 (build-system python-build-system)
3756 (arguments
3757 `(#:python ,python-2 ; only compatible with Python 2.7
3758 #:tests? #f)) ; no test target
3759 (inputs
3760 `(("python-numpy" ,python2-numpy)))
3761 (home-page "https://github.com/taoliu/MACS/")
3762 (synopsis "Model based analysis for ChIP-Seq data")
3763 (description
3764 "MACS is an implementation of a ChIP-Seq analysis algorithm for
3765 identifying transcript factor binding sites named Model-based Analysis of
3766 ChIP-Seq (MACS). MACS captures the influence of genome complexity to evaluate
3767 the significance of enriched ChIP regions and it improves the spatial
3768 resolution of binding sites through combining the information of both
3769 sequencing tag position and orientation.")
3770 (license license:bsd-3)))
3771
3772 (define-public mafft
3773 (package
3774 (name "mafft")
3775 (version "7.394")
3776 (source (origin
3777 (method url-fetch)
3778 (uri (string-append
3779 "https://mafft.cbrc.jp/alignment/software/mafft-" version
3780 "-without-extensions-src.tgz"))
3781 (file-name (string-append name "-" version ".tgz"))
3782 (sha256
3783 (base32
3784 "0bacjkxfg944p5khhyh5rd4y7wkjc9qk4v2jjj442sqlq0f8ar7b"))))
3785 (build-system gnu-build-system)
3786 (arguments
3787 `(#:tests? #f ; no automated tests, though there are tests in the read me
3788 #:make-flags (let ((out (assoc-ref %outputs "out")))
3789 (list (string-append "PREFIX=" out)
3790 (string-append "BINDIR="
3791 (string-append out "/bin"))))
3792 #:phases
3793 (modify-phases %standard-phases
3794 (add-after 'unpack 'enter-dir
3795 (lambda _ (chdir "core") #t))
3796 (add-after 'enter-dir 'patch-makefile
3797 (lambda _
3798 ;; on advice from the MAFFT authors, there is no need to
3799 ;; distribute mafft-profile, mafft-distance, or
3800 ;; mafft-homologs.rb as they are too "specialised".
3801 (substitute* "Makefile"
3802 ;; remove mafft-homologs.rb from SCRIPTS
3803 (("^SCRIPTS = mafft mafft-homologs.rb")
3804 "SCRIPTS = mafft")
3805 ;; remove mafft-homologs from MANPAGES
3806 (("^MANPAGES = mafft.1 mafft-homologs.1")
3807 "MANPAGES = mafft.1")
3808 ;; remove mafft-distance from PROGS
3809 (("^PROGS = dvtditr dndfast7 dndblast sextet5 mafft-distance")
3810 "PROGS = dvtditr dndfast7 dndblast sextet5")
3811 ;; remove mafft-profile from PROGS
3812 (("splittbfast disttbfast tbfast mafft-profile 2cl mccaskillwrap")
3813 "splittbfast disttbfast tbfast f2cl mccaskillwrap")
3814 (("^rm -f mafft-profile mafft-profile.exe") "#")
3815 (("^rm -f mafft-distance mafft-distance.exe") ")#")
3816 ;; do not install MAN pages in libexec folder
3817 (("^\t\\$\\(INSTALL\\) -m 644 \\$\\(MANPAGES\\) \
3818 \\$\\(DESTDIR\\)\\$\\(LIBDIR\\)") "#"))
3819 #t))
3820 (add-after 'enter-dir 'patch-paths
3821 (lambda* (#:key inputs #:allow-other-keys)
3822 (substitute* '("pairash.c"
3823 "mafft.tmpl")
3824 (("perl") (which "perl"))
3825 (("([\"`| ])awk" _ prefix)
3826 (string-append prefix (which "awk")))
3827 (("grep") (which "grep")))
3828 #t))
3829 (delete 'configure)
3830 (add-after 'install 'wrap-programs
3831 (lambda* (#:key outputs #:allow-other-keys)
3832 (let* ((out (assoc-ref outputs "out"))
3833 (bin (string-append out "/bin"))
3834 (path (string-append
3835 (assoc-ref %build-inputs "coreutils") "/bin:")))
3836 (for-each (lambda (file)
3837 (wrap-program file
3838 `("PATH" ":" prefix (,path))))
3839 (find-files bin)))
3840 #t)))))
3841 (inputs
3842 `(("perl" ,perl)
3843 ("ruby" ,ruby)
3844 ("gawk" ,gawk)
3845 ("grep" ,grep)
3846 ("coreutils" ,coreutils)))
3847 (home-page "http://mafft.cbrc.jp/alignment/software/")
3848 (synopsis "Multiple sequence alignment program")
3849 (description
3850 "MAFFT offers a range of multiple alignment methods for nucleotide and
3851 protein sequences. For instance, it offers L-INS-i (accurate; for alignment
3852 of <~200 sequences) and FFT-NS-2 (fast; for alignment of <~30,000
3853 sequences).")
3854 (license (license:non-copyleft
3855 "http://mafft.cbrc.jp/alignment/software/license.txt"
3856 "BSD-3 with different formatting"))))
3857
3858 (define-public mash
3859 (package
3860 (name "mash")
3861 (version "2.0")
3862 (source (origin
3863 (method url-fetch)
3864 (uri (string-append
3865 "https://github.com/marbl/mash/archive/v"
3866 version ".tar.gz"))
3867 (file-name (string-append name "-" version ".tar.gz"))
3868 (sha256
3869 (base32
3870 "00fx14vpmgsijwxd1xql3if934l82v8ckqgjjyyhnr36qb9qrskv"))
3871 (modules '((guix build utils)))
3872 (snippet
3873 ;; Delete bundled kseq.
3874 ;; TODO: Also delete bundled murmurhash and open bloom filter.
3875 '(delete-file "src/mash/kseq.h"))))
3876 (build-system gnu-build-system)
3877 (arguments
3878 `(#:tests? #f ; No tests.
3879 #:configure-flags
3880 (list
3881 (string-append "--with-capnp=" (assoc-ref %build-inputs "capnproto"))
3882 (string-append "--with-gsl=" (assoc-ref %build-inputs "gsl")))
3883 #:make-flags (list "CC=gcc")
3884 #:phases
3885 (modify-phases %standard-phases
3886 (add-after 'unpack 'fix-includes
3887 (lambda _
3888 (substitute* '("src/mash/Sketch.cpp"
3889 "src/mash/CommandFind.cpp"
3890 "src/mash/CommandScreen.cpp")
3891 (("^#include \"kseq\\.h\"")
3892 "#include \"htslib/kseq.h\""))
3893 #t))
3894 (add-after 'fix-includes 'autoconf
3895 (lambda _ (zero? (system* "autoconf")))))))
3896 (native-inputs
3897 `(("autoconf" ,autoconf)
3898 ;; Capnproto and htslib are statically embedded in the final
3899 ;; application. Therefore we also list their licenses, below.
3900 ("capnproto" ,capnproto)
3901 ("htslib" ,htslib)))
3902 (inputs
3903 `(("gsl" ,gsl)
3904 ("zlib" ,zlib)))
3905 (supported-systems '("x86_64-linux"))
3906 (home-page "https://mash.readthedocs.io")
3907 (synopsis "Fast genome and metagenome distance estimation using MinHash")
3908 (description "Mash is a fast sequence distance estimator that uses the
3909 MinHash algorithm and is designed to work with genomes and metagenomes in the
3910 form of assemblies or reads.")
3911 (license (list license:bsd-3 ; Mash
3912 license:expat ; HTSlib and capnproto
3913 license:public-domain ; MurmurHash 3
3914 license:cpl1.0)))) ; Open Bloom Filter
3915
3916 (define-public metabat
3917 (package
3918 (name "metabat")
3919 (version "2.12.1")
3920 (source
3921 (origin
3922 (method url-fetch)
3923 (uri (string-append "https://bitbucket.org/berkeleylab/metabat/get/v"
3924 version ".tar.gz"))
3925 (file-name (string-append name "-" version ".tar.gz"))
3926 (sha256
3927 (base32
3928 "1hmvdalz3zj5sqqklg0l4npjdv37cv2hsdi1al9iby2ndxjs1b73"))
3929 (patches (search-patches "metabat-fix-compilation.patch"))))
3930 (build-system scons-build-system)
3931 (arguments
3932 `(#:scons ,scons-python2
3933 #:scons-flags
3934 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
3935 (string-append "BOOST_ROOT=" (assoc-ref %build-inputs "boost")))
3936 #:tests? #f ;; Tests are run during the build phase.
3937 #:phases
3938 (modify-phases %standard-phases
3939 (add-after 'unpack 'fix-includes
3940 (lambda _
3941 (substitute* "src/BamUtils.h"
3942 (("^#include \"bam/bam\\.h\"")
3943 "#include \"samtools/bam.h\"")
3944 (("^#include \"bam/sam\\.h\"")
3945 "#include \"samtools/sam.h\""))
3946 (substitute* "src/KseqReader.h"
3947 (("^#include \"bam/kseq\\.h\"")
3948 "#include \"htslib/kseq.h\""))
3949 #t))
3950 (add-after 'unpack 'fix-scons
3951 (lambda* (#:key inputs #:allow-other-keys)
3952 (substitute* "SConstruct"
3953 (("^htslib_dir += 'samtools'")
3954 (string-append "htslib_dir = '"
3955 (assoc-ref inputs "htslib")
3956 "'"))
3957 (("^samtools_dir = 'samtools'")
3958 (string-append "samtools_dir = '"
3959 (assoc-ref inputs "samtools")
3960 "'"))
3961 (("^findStaticOrShared\\('bam', hts_lib")
3962 (string-append "findStaticOrShared('bam', '"
3963 (assoc-ref inputs "samtools")
3964 "/lib'"))
3965 ;; Do not distribute README.
3966 (("^env\\.Install\\(idir_prefix, 'README\\.md'\\)") ""))
3967 #t)))))
3968 (inputs
3969 `(("zlib" ,zlib)
3970 ("perl" ,perl)
3971 ("samtools" ,samtools)
3972 ("htslib" ,htslib)
3973 ("boost" ,boost)))
3974 (home-page "https://bitbucket.org/berkeleylab/metabat")
3975 (synopsis
3976 "Reconstruction of single genomes from complex microbial communities")
3977 (description
3978 "Grouping large genomic fragments assembled from shotgun metagenomic
3979 sequences to deconvolute complex microbial communities, or metagenome binning,
3980 enables the study of individual organisms and their interactions. MetaBAT is
3981 an automated metagenome binning software, which integrates empirical
3982 probabilistic distances of genome abundance and tetranucleotide frequency.")
3983 ;; The source code contains inline assembly.
3984 (supported-systems '("x86_64-linux" "i686-linux"))
3985 (license (license:non-copyleft "file://license.txt"
3986 "See license.txt in the distribution."))))
3987
3988 (define-public minced
3989 (package
3990 (name "minced")
3991 (version "0.2.0")
3992 (source (origin
3993 (method url-fetch)
3994 (uri (string-append
3995 "https://github.com/ctSkennerton/minced/archive/"
3996 version ".tar.gz"))
3997 (file-name (string-append name "-" version ".tar.gz"))
3998 (sha256
3999 (base32
4000 "0wxmlsapxfpxfd3ps9636h7i2xy6la8i42mwh0j2lsky63h63jp1"))))
4001 (build-system gnu-build-system)
4002 (arguments
4003 `(#:test-target "test"
4004 #:phases
4005 (modify-phases %standard-phases
4006 (delete 'configure)
4007 (add-before 'check 'fix-test
4008 (lambda _
4009 ;; Fix test for latest version.
4010 (substitute* "t/Aquifex_aeolicus_VF5.expected"
4011 (("minced:0.1.6") "minced:0.2.0"))
4012 #t))
4013 (replace 'install ; No install target.
4014 (lambda* (#:key inputs outputs #:allow-other-keys)
4015 (let* ((out (assoc-ref outputs "out"))
4016 (bin (string-append out "/bin"))
4017 (wrapper (string-append bin "/minced")))
4018 ;; Minced comes with a wrapper script that tries to figure out where
4019 ;; it is located before running the JAR. Since these paths are known
4020 ;; to us, we build our own wrapper to avoid coreutils dependency.
4021 (install-file "minced.jar" bin)
4022 (with-output-to-file wrapper
4023 (lambda _
4024 (display
4025 (string-append
4026 "#!" (assoc-ref inputs "bash") "/bin/sh\n\n"
4027 (assoc-ref inputs "jre") "/bin/java -jar "
4028 bin "/minced.jar \"$@\"\n"))))
4029 (chmod wrapper #o555)))))))
4030 (native-inputs
4031 `(("jdk" ,icedtea "jdk")))
4032 (inputs
4033 `(("bash" ,bash)
4034 ("jre" ,icedtea "out")))
4035 (home-page "https://github.com/ctSkennerton/minced")
4036 (synopsis "Mining CRISPRs in Environmental Datasets")
4037 (description
4038 "MinCED is a program to find Clustered Regularly Interspaced Short
4039 Palindromic Repeats (CRISPRs) in DNA sequences. It can be used for
4040 unassembled metagenomic reads, but is mainly designed for full genomes and
4041 assembled metagenomic sequence.")
4042 (license license:gpl3+)))
4043
4044 (define-public miso
4045 (package
4046 (name "miso")
4047 (version "0.5.4")
4048 (source (origin
4049 (method url-fetch)
4050 (uri (pypi-uri "misopy" version))
4051 (sha256
4052 (base32
4053 "1z3x0vd8ma7pdrnywj7i3kgwl89sdkwrrn62zl7r5calqaq2hyip"))
4054 (modules '((guix build utils)))
4055 (snippet
4056 '(substitute* "setup.py"
4057 ;; Use setuptools, or else the executables are not
4058 ;; installed.
4059 (("distutils.core") "setuptools")
4060 ;; use "gcc" instead of "cc" for compilation
4061 (("^defines")
4062 "cc.set_executables(
4063 compiler='gcc',
4064 compiler_so='gcc',
4065 linker_exe='gcc',
4066 linker_so='gcc -shared'); defines")))))
4067 (build-system python-build-system)
4068 (arguments
4069 `(#:python ,python-2 ; only Python 2 is supported
4070 #:tests? #f)) ; no "test" target
4071 (inputs
4072 `(("samtools" ,samtools)
4073 ("python-numpy" ,python2-numpy)
4074 ("python-pysam" ,python2-pysam)
4075 ("python-scipy" ,python2-scipy)
4076 ("python-matplotlib" ,python2-matplotlib)))
4077 (native-inputs
4078 `(("python-mock" ,python2-mock) ;for tests
4079 ("python-pytz" ,python2-pytz))) ;for tests
4080 (home-page "http://genes.mit.edu/burgelab/miso/index.html")
4081 (synopsis "Mixture of Isoforms model for RNA-Seq isoform quantitation")
4082 (description
4083 "MISO (Mixture-of-Isoforms) is a probabilistic framework that quantitates
4084 the expression level of alternatively spliced genes from RNA-Seq data, and
4085 identifies differentially regulated isoforms or exons across samples. By
4086 modeling the generative process by which reads are produced from isoforms in
4087 RNA-Seq, the MISO model uses Bayesian inference to compute the probability
4088 that a read originated from a particular isoform.")
4089 (license license:gpl2)))
4090
4091 (define-public muscle
4092 (package
4093 (name "muscle")
4094 (version "3.8.1551")
4095 (source (origin
4096 (method url-fetch/tarbomb)
4097 (uri (string-append
4098 "http://www.drive5.com/muscle/muscle_src_"
4099 version ".tar.gz"))
4100 (sha256
4101 (base32
4102 "0bj8kj7sdizy3987zx6w7axihk40fk8rn76mpbqqjcnd64i5a367"))))
4103 (build-system gnu-build-system)
4104 (arguments
4105 `(#:make-flags (list "LDLIBS = -lm")
4106 #:phases
4107 (modify-phases %standard-phases
4108 (delete 'configure)
4109 (replace 'check
4110 ;; There are no tests, so just test if it runs.
4111 (lambda _ (zero? (system* "./muscle" "-version"))))
4112 (replace 'install
4113 (lambda* (#:key outputs #:allow-other-keys)
4114 (let* ((out (assoc-ref outputs "out"))
4115 (bin (string-append out "/bin")))
4116 (install-file "muscle" bin)))))))
4117 (home-page "http://www.drive5.com/muscle")
4118 (synopsis "Multiple sequence alignment program")
4119 (description
4120 "MUSCLE aims to be a fast and accurate multiple sequence alignment
4121 program for nucleotide and protein sequences.")
4122 ;; License information found in 'muscle -h' and usage.cpp.
4123 (license license:public-domain)))
4124
4125 (define-public newick-utils
4126 ;; There are no recent releases so we package from git.
4127 (let ((commit "da121155a977197cab9fbb15953ca1b40b11eb87"))
4128 (package
4129 (name "newick-utils")
4130 (version (string-append "1.6-1." (string-take commit 8)))
4131 (source (origin
4132 (method git-fetch)
4133 (uri (git-reference
4134 (url "https://github.com/tjunier/newick_utils.git")
4135 (commit commit)))
4136 (file-name (string-append name "-" version "-checkout"))
4137 (sha256
4138 (base32
4139 "1hkw21rq1mwf7xp0rmbb2gqc0i6p11108m69i7mr7xcjl268pxnb"))))
4140 (build-system gnu-build-system)
4141 (arguments
4142 `(#:phases
4143 (modify-phases %standard-phases
4144 (add-after 'unpack 'autoconf
4145 (lambda _ (zero? (system* "autoreconf" "-vif")))))))
4146 (inputs
4147 ;; XXX: TODO: Enable Lua and Guile bindings.
4148 ;; https://github.com/tjunier/newick_utils/issues/13
4149 `(("libxml2" ,libxml2)
4150 ("flex" ,flex)
4151 ("bison" ,bison)))
4152 (native-inputs
4153 `(("autoconf" ,autoconf)
4154 ("automake" ,automake)
4155 ("libtool" ,libtool)))
4156 (synopsis "Programs for working with newick format phylogenetic trees")
4157 (description
4158 "Newick-utils is a suite of utilities for processing phylogenetic trees
4159 in Newick format. Functions include re-rooting, extracting subtrees,
4160 trimming, pruning, condensing, drawing (ASCII graphics or SVG).")
4161 (home-page "https://github.com/tjunier/newick_utils")
4162 (license license:bsd-3))))
4163
4164 (define-public orfm
4165 (package
4166 (name "orfm")
4167 (version "0.7.1")
4168 (source (origin
4169 (method url-fetch)
4170 (uri (string-append
4171 "https://github.com/wwood/OrfM/releases/download/v"
4172 version "/orfm-" version ".tar.gz"))
4173 (sha256
4174 (base32
4175 "16iigyr2gd8x0imzkk1dr3k5xsds9bpmwg31ayvjg0f4pir9rwqr"))))
4176 (build-system gnu-build-system)
4177 (inputs `(("zlib" ,zlib)))
4178 (native-inputs
4179 `(("ruby-bio-commandeer" ,ruby-bio-commandeer)
4180 ("ruby-rspec" ,ruby-rspec)
4181 ("ruby" ,ruby)))
4182 (synopsis "Simple and not slow open reading frame (ORF) caller")
4183 (description
4184 "An ORF caller finds stretches of DNA that, when translated, are not
4185 interrupted by stop codons. OrfM finds and prints these ORFs.")
4186 (home-page "https://github.com/wwood/OrfM")
4187 (license license:lgpl3+)))
4188
4189 (define-public pplacer
4190 (let ((commit "g807f6f3"))
4191 (package
4192 (name "pplacer")
4193 ;; The commit should be updated with each version change.
4194 (version "1.1.alpha19")
4195 (source
4196 (origin
4197 (method url-fetch)
4198 (uri (string-append "https://github.com/matsen/pplacer/archive/v"
4199 version ".tar.gz"))
4200 (file-name (string-append name "-" version ".tar.gz"))
4201 (sha256
4202 (base32 "0z1lnd2s8sh6kpzg106wzbh2szw7h0hvq8syd5a6wv4rmyyz6x0f"))))
4203 (build-system ocaml-build-system)
4204 (arguments
4205 `(#:ocaml ,ocaml-4.01
4206 #:findlib ,ocaml4.01-findlib
4207 #:modules ((guix build ocaml-build-system)
4208 (guix build utils)
4209 (ice-9 ftw))
4210 #:phases
4211 (modify-phases %standard-phases
4212 (delete 'configure)
4213 (add-after 'unpack 'replace-bundled-cddlib
4214 (lambda* (#:key inputs #:allow-other-keys)
4215 (let* ((cddlib-src (assoc-ref inputs "cddlib-src"))
4216 (local-dir "cddlib_guix"))
4217 (mkdir local-dir)
4218 (with-directory-excursion local-dir
4219 (system* "tar" "xvf" cddlib-src))
4220 (let ((cddlib-src-folder
4221 (string-append local-dir "/"
4222 (list-ref (scandir local-dir) 2)
4223 "/lib-src")))
4224 (for-each
4225 (lambda (file)
4226 (copy-file file
4227 (string-append "cdd_src/" (basename file))))
4228 (find-files cddlib-src-folder ".*[ch]$")))
4229 #t)))
4230 (add-after 'unpack 'fix-makefile
4231 (lambda _
4232 ;; Remove system calls to 'git'.
4233 (substitute* "Makefile"
4234 (("^DESCRIPT:=pplacer-.*")
4235 (string-append
4236 "DESCRIPT:=pplacer-$(shell uname)-v" ,version "\n")))
4237 (substitute* "myocamlbuild.ml"
4238 (("git describe --tags --long .*\\\" with")
4239 (string-append
4240 "echo -n v" ,version "-" ,commit "\" with")))
4241 #t))
4242 (replace 'install
4243 (lambda* (#:key outputs #:allow-other-keys)
4244 (let* ((out (assoc-ref outputs "out"))
4245 (bin (string-append out "/bin")))
4246 (copy-recursively "bin" bin))
4247 #t)))))
4248 (native-inputs
4249 `(("zlib" ,zlib)
4250 ("gsl" ,gsl)
4251 ("ocaml-ounit" ,ocaml4.01-ounit)
4252 ("ocaml-batteries" ,ocaml4.01-batteries)
4253 ("ocaml-camlzip" ,ocaml4.01-camlzip)
4254 ("ocaml-csv" ,ocaml4.01-csv)
4255 ("ocaml-sqlite3" ,ocaml4.01-sqlite3)
4256 ("ocaml-xmlm" ,ocaml4.01-xmlm)
4257 ("ocaml-mcl" ,ocaml4.01-mcl)
4258 ("ocaml-gsl" ,ocaml4.01-gsl)
4259 ("cddlib-src" ,(package-source cddlib))))
4260 (propagated-inputs
4261 `(("pplacer-scripts" ,pplacer-scripts)))
4262 (synopsis "Phylogenetic placement of biological sequences")
4263 (description
4264 "Pplacer places query sequences on a fixed reference phylogenetic tree
4265 to maximize phylogenetic likelihood or posterior probability according to a
4266 reference alignment. Pplacer is designed to be fast, to give useful
4267 information about uncertainty, and to offer advanced visualization and
4268 downstream analysis.")
4269 (home-page "http://matsen.fhcrc.org/pplacer")
4270 (license license:gpl3))))
4271
4272 ;; This package is installed alongside 'pplacer'. It is a separate package so
4273 ;; that it can use the python-build-system for the scripts that are
4274 ;; distributed alongside the main OCaml binaries.
4275 (define pplacer-scripts
4276 (package
4277 (inherit pplacer)
4278 (name "pplacer-scripts")
4279 (build-system python-build-system)
4280 (arguments
4281 `(#:python ,python-2
4282 #:phases
4283 (modify-phases %standard-phases
4284 (add-after 'unpack 'enter-scripts-dir
4285 (lambda _ (chdir "scripts")))
4286 (replace 'check
4287 (lambda _
4288 (zero? (system* "python" "-m" "unittest" "discover" "-v"))))
4289 (add-after 'install 'wrap-executables
4290 (lambda* (#:key inputs outputs #:allow-other-keys)
4291 (let* ((out (assoc-ref outputs "out"))
4292 (bin (string-append out "/bin")))
4293 (let ((path (string-append
4294 (assoc-ref inputs "hmmer") "/bin:"
4295 (assoc-ref inputs "infernal") "/bin")))
4296 (display path)
4297 (wrap-program (string-append bin "/refpkg_align.py")
4298 `("PATH" ":" prefix (,path))))
4299 (let ((path (string-append
4300 (assoc-ref inputs "hmmer") "/bin")))
4301 (wrap-program (string-append bin "/hrefpkg_query.py")
4302 `("PATH" ":" prefix (,path)))))
4303 #t)))))
4304 (inputs
4305 `(("infernal" ,infernal)
4306 ("hmmer" ,hmmer)))
4307 (propagated-inputs
4308 `(("python-biopython" ,python2-biopython)
4309 ("taxtastic" ,taxtastic)))
4310 (synopsis "Pplacer Python scripts")))
4311
4312 (define-public python2-pbcore
4313 (package
4314 (name "python2-pbcore")
4315 (version "1.2.10")
4316 (source (origin
4317 (method url-fetch)
4318 (uri (pypi-uri "pbcore" version))
4319 (sha256
4320 (base32
4321 "1kjmv891d6qbpp4shhhvkl02ff4q5xlpnls2513sm2cjcrs52f1i"))))
4322 (build-system python-build-system)
4323 (arguments `(#:python ,python-2)) ; pbcore requires Python 2.7
4324 (propagated-inputs
4325 `(("python-cython" ,python2-cython)
4326 ("python-numpy" ,python2-numpy)
4327 ("python-pysam" ,python2-pysam)
4328 ("python-h5py" ,python2-h5py)))
4329 (native-inputs
4330 `(("python-nose" ,python2-nose)
4331 ("python-sphinx" ,python2-sphinx)
4332 ("python-pyxb" ,python2-pyxb)))
4333 (home-page "http://pacificbiosciences.github.io/pbcore/")
4334 (synopsis "Library for reading and writing PacBio data files")
4335 (description
4336 "The pbcore package provides Python APIs for interacting with PacBio data
4337 files and writing bioinformatics applications.")
4338 (license license:bsd-3)))
4339
4340 (define-public python2-warpedlmm
4341 (package
4342 (name "python2-warpedlmm")
4343 (version "0.21")
4344 (source
4345 (origin
4346 (method url-fetch)
4347 (uri (string-append
4348 "https://pypi.python.org/packages/source/W/WarpedLMM/WarpedLMM-"
4349 version ".zip"))
4350 (sha256
4351 (base32
4352 "1agfz6zqa8nc6cw47yh0s3y14gkpa9wqazwcj7mwwj3ffnw39p3j"))))
4353 (build-system python-build-system)
4354 (arguments
4355 `(#:python ,python-2)) ; requires Python 2.7
4356 (propagated-inputs
4357 `(("python-scipy" ,python2-scipy)
4358 ("python-numpy" ,python2-numpy)
4359 ("python-matplotlib" ,python2-matplotlib)
4360 ("python-fastlmm" ,python2-fastlmm)
4361 ("python-pandas" ,python2-pandas)
4362 ("python-pysnptools" ,python2-pysnptools)))
4363 (native-inputs
4364 `(("python-mock" ,python2-mock)
4365 ("python-nose" ,python2-nose)
4366 ("unzip" ,unzip)))
4367 (home-page "https://github.com/PMBio/warpedLMM")
4368 (synopsis "Implementation of warped linear mixed models")
4369 (description
4370 "WarpedLMM is a Python implementation of the warped linear mixed model,
4371 which automatically learns an optimal warping function (or transformation) for
4372 the phenotype as it models the data.")
4373 (license license:asl2.0)))
4374
4375 (define-public pbtranscript-tofu
4376 (let ((commit "8f5467fe6a4472bcfb4226c8720993c8507adfe4"))
4377 (package
4378 (name "pbtranscript-tofu")
4379 (version (string-append "2.2.3." (string-take commit 7)))
4380 (source (origin
4381 (method git-fetch)
4382 (uri (git-reference
4383 (url "https://github.com/PacificBiosciences/cDNA_primer.git")
4384 (commit commit)))
4385 (file-name (string-append name "-" version "-checkout"))
4386 (sha256
4387 (base32
4388 "1lgnpi35ihay42qx0b6yl3kkgra723i413j33kvs0kvs61h82w0f"))
4389 (modules '((guix build utils)))
4390 (snippet
4391 '(begin
4392 ;; remove bundled Cython sources
4393 (delete-file "pbtranscript-tofu/pbtranscript/Cython-0.20.1.tar.gz")
4394 #t))))
4395 (build-system python-build-system)
4396 (arguments
4397 `(#:python ,python-2
4398 ;; FIXME: Tests fail with "No such file or directory:
4399 ;; pbtools/pbtranscript/modified_bx_intervals/intersection_unique.so"
4400 #:tests? #f
4401 #:phases
4402 (modify-phases %standard-phases
4403 (add-after 'unpack 'enter-directory
4404 (lambda _
4405 (chdir "pbtranscript-tofu/pbtranscript/")
4406 #t))
4407 ;; With setuptools version 18.0 and later this setup.py hack causes
4408 ;; a build error, so we disable it.
4409 (add-after 'enter-directory 'patch-setuppy
4410 (lambda _
4411 (substitute* "setup.py"
4412 (("if 'setuptools.extension' in sys.modules:")
4413 "if False:"))
4414 #t)))))
4415 (inputs
4416 `(("python-numpy" ,python2-numpy)
4417 ("python-bx-python" ,python2-bx-python)
4418 ("python-networkx" ,python2-networkx)
4419 ("python-scipy" ,python2-scipy)
4420 ("python-pbcore" ,python2-pbcore)
4421 ("python-h5py" ,python2-h5py)))
4422 (native-inputs
4423 `(("python-cython" ,python2-cython)
4424 ("python-nose" ,python2-nose)))
4425 (home-page "https://github.com/PacificBiosciences/cDNA_primer")
4426 (synopsis "Analyze transcriptome data generated with the Iso-Seq protocol")
4427 (description
4428 "pbtranscript-tofu contains scripts to analyze transcriptome data
4429 generated using the PacBio Iso-Seq protocol.")
4430 (license license:bsd-3))))
4431
4432 (define-public prank
4433 (package
4434 (name "prank")
4435 (version "150803")
4436 (source (origin
4437 (method url-fetch)
4438 (uri (string-append
4439 "http://wasabiapp.org/download/prank/prank.source."
4440 version ".tgz"))
4441 (sha256
4442 (base32
4443 "0am4z94fs3w2n5xpfls9zda61vq7qqz4q2i7b9hlsxz5q4j3kfm4"))))
4444 (build-system gnu-build-system)
4445 (arguments
4446 `(#:phases
4447 (modify-phases %standard-phases
4448 (add-after 'unpack 'enter-src-dir
4449 (lambda _
4450 (chdir "src")
4451 #t))
4452 (add-after 'unpack 'remove-m64-flag
4453 ;; Prank will build with the correct 'bit-ness' without this flag
4454 ;; and this allows building on 32-bit machines.
4455 (lambda _ (substitute* "src/Makefile"
4456 (("-m64") ""))
4457 #t))
4458 (delete 'configure)
4459 (replace 'install
4460 (lambda* (#:key outputs #:allow-other-keys)
4461 (let* ((out (assoc-ref outputs "out"))
4462 (bin (string-append out "/bin"))
4463 (man (string-append out "/share/man/man1"))
4464 (path (string-append
4465 (assoc-ref %build-inputs "mafft") "/bin:"
4466 (assoc-ref %build-inputs "exonerate") "/bin:"
4467 (assoc-ref %build-inputs "bppsuite") "/bin")))
4468 (install-file "prank" bin)
4469 (wrap-program (string-append bin "/prank")
4470 `("PATH" ":" prefix (,path)))
4471 (install-file "prank.1" man))
4472 #t)))))
4473 (inputs
4474 `(("mafft" ,mafft)
4475 ("exonerate" ,exonerate)
4476 ("bppsuite" ,bppsuite)))
4477 (home-page "http://wasabiapp.org/software/prank/")
4478 (synopsis "Probabilistic multiple sequence alignment program")
4479 (description
4480 "PRANK is a probabilistic multiple sequence alignment program for DNA,
4481 codon and amino-acid sequences. It is based on a novel algorithm that treats
4482 insertions correctly and avoids over-estimation of the number of deletion
4483 events. In addition, PRANK borrows ideas from maximum likelihood methods used
4484 in phylogenetics and correctly takes into account the evolutionary distances
4485 between sequences. Lastly, PRANK allows for defining a potential structure
4486 for sequences to be aligned and then, simultaneously with the alignment,
4487 predicts the locations of structural units in the sequences.")
4488 (license license:gpl2+)))
4489
4490 (define-public proteinortho
4491 (package
4492 (name "proteinortho")
4493 (version "5.16b")
4494 (source
4495 (origin
4496 (method url-fetch)
4497 (uri
4498 (string-append
4499 "http://www.bioinf.uni-leipzig.de/Software/proteinortho/proteinortho_v"
4500 version "_src.tar.gz"))
4501 (sha256
4502 (base32
4503 "1wl0dawpssqwfjvr651r4wlww8hhjin8nba6xh71ks7sbypx886j"))))
4504 (build-system gnu-build-system)
4505 (arguments
4506 `(#:test-target "test"
4507 #:phases
4508 (modify-phases %standard-phases
4509 (replace 'configure
4510 ;; There is no configure script, so we modify the Makefile directly.
4511 (lambda* (#:key outputs #:allow-other-keys)
4512 (substitute* "Makefile"
4513 (("INSTALLDIR=.*")
4514 (string-append
4515 "INSTALLDIR=" (assoc-ref outputs "out") "/bin\n")))
4516 #t))
4517 (add-before 'install 'make-install-directory
4518 ;; The install directory is not created during 'make install'.
4519 (lambda* (#:key outputs #:allow-other-keys)
4520 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
4521 #t))
4522 (add-after 'install 'wrap-programs
4523 (lambda* (#:key inputs outputs #:allow-other-keys)
4524 (let* ((path (getenv "PATH"))
4525 (out (assoc-ref outputs "out"))
4526 (binary (string-append out "/bin/proteinortho5.pl")))
4527 (wrap-program binary `("PATH" ":" prefix (,path))))
4528 #t)))))
4529 (inputs
4530 `(("perl" ,perl)
4531 ("python" ,python-2)
4532 ("blast+" ,blast+)))
4533 (home-page "http://www.bioinf.uni-leipzig.de/Software/proteinortho")
4534 (synopsis "Detect orthologous genes across species")
4535 (description
4536 "Proteinortho is a tool to detect orthologous genes across different
4537 species. For doing so, it compares similarities of given gene sequences and
4538 clusters them to find significant groups. The algorithm was designed to handle
4539 large-scale data and can be applied to hundreds of species at once.")
4540 (license license:gpl2+)))
4541
4542 (define-public pyicoteo
4543 (package
4544 (name "pyicoteo")
4545 (version "2.0.7")
4546 (source
4547 (origin
4548 (method url-fetch)
4549 (uri (string-append "https://bitbucket.org/regulatorygenomicsupf/"
4550 "pyicoteo/get/v" version ".tar.bz2"))
4551 (file-name (string-append name "-" version ".tar.bz2"))
4552 (sha256
4553 (base32
4554 "0d6087f29xp8wxwlj111c3sylli98n0l8ry58c51ixzq0zfm50wa"))))
4555 (build-system python-build-system)
4556 (arguments
4557 `(#:python ,python-2 ; does not work with Python 3
4558 #:tests? #f)) ; there are no tests
4559 (inputs
4560 `(("python2-matplotlib" ,python2-matplotlib)))
4561 (home-page "https://bitbucket.org/regulatorygenomicsupf/pyicoteo")
4562 (synopsis "Analyze high-throughput genetic sequencing data")
4563 (description
4564 "Pyicoteo is a suite of tools for the analysis of high-throughput genetic
4565 sequencing data. It works with genomic coordinates. There are currently six
4566 different command-line tools:
4567
4568 @enumerate
4569 @item pyicoregion: for generating exploratory regions automatically;
4570 @item pyicoenrich: for differential enrichment between two conditions;
4571 @item pyicoclip: for calling CLIP-Seq peaks without a control;
4572 @item pyicos: for genomic coordinates manipulation;
4573 @item pyicoller: for peak calling on punctuated ChIP-Seq;
4574 @item pyicount: to count how many reads from N experiment files overlap in a
4575 region file;
4576 @item pyicotrocol: to combine operations from pyicoteo.
4577 @end enumerate\n")
4578 (license license:gpl3+)))
4579
4580 (define-public prodigal
4581 (package
4582 (name "prodigal")
4583 (version "2.6.3")
4584 (source (origin
4585 (method url-fetch)
4586 (uri (string-append
4587 "https://github.com/hyattpd/Prodigal/archive/v"
4588 version ".tar.gz"))
4589 (file-name (string-append name "-" version ".tar.gz"))
4590 (sha256
4591 (base32
4592 "17srxkqd3jc77xk15pfbgg1a9xahqg7337w95mrsia7mpza4l2c9"))))
4593 (build-system gnu-build-system)
4594 (arguments
4595 `(#:tests? #f ;no check target
4596 #:make-flags (list (string-append "INSTALLDIR="
4597 (assoc-ref %outputs "out")
4598 "/bin"))
4599 #:phases
4600 (modify-phases %standard-phases
4601 (delete 'configure))))
4602 (home-page "http://prodigal.ornl.gov")
4603 (synopsis "Protein-coding gene prediction for Archaea and Bacteria")
4604 (description
4605 "Prodigal runs smoothly on finished genomes, draft genomes, and
4606 metagenomes, providing gene predictions in GFF3, Genbank, or Sequin table
4607 format. It runs quickly, in an unsupervised fashion, handles gaps, handles
4608 partial genes, and identifies translation initiation sites.")
4609 (license license:gpl3+)))
4610
4611 (define-public roary
4612 (package
4613 (name "roary")
4614 (version "3.12.0")
4615 (source
4616 (origin
4617 (method url-fetch)
4618 (uri (string-append
4619 "mirror://cpan/authors/id/A/AJ/AJPAGE/Bio-Roary-"
4620 version ".tar.gz"))
4621 (sha256
4622 (base32
4623 "0qxrds9wx7cfhlkihrp6697kx0flhhxymap9fwan0b3rbdhcnmff"))))
4624 (build-system perl-build-system)
4625 (arguments
4626 `(#:phases
4627 (modify-phases %standard-phases
4628 (delete 'configure)
4629 (delete 'build)
4630 (replace 'check
4631 (lambda _
4632 ;; The tests are not run by default, so we run each test file
4633 ;; directly.
4634 (setenv "PATH" (string-append (getcwd) "/bin" ":"
4635 (getenv "PATH")))
4636 (setenv "PERL5LIB" (string-append (getcwd) "/lib" ":"
4637 (getenv "PERL5LIB")))
4638 (zero? (length (filter (lambda (file)
4639 (display file)(display "\n")
4640 (not (zero? (system* "perl" file))))
4641 (find-files "t" ".*\\.t$"))))))
4642 (replace 'install
4643 ;; There is no 'install' target in the Makefile.
4644 (lambda* (#:key outputs #:allow-other-keys)
4645 (let* ((out (assoc-ref outputs "out"))
4646 (bin (string-append out "/bin"))
4647 (perl (string-append out "/lib/perl5/site_perl"))
4648 (roary-plots "contrib/roary_plots"))
4649 (mkdir-p bin)
4650 (mkdir-p perl)
4651 (copy-recursively "bin" bin)
4652 (copy-recursively "lib" perl)
4653 #t)))
4654 (add-after 'install 'wrap-programs
4655 (lambda* (#:key inputs outputs #:allow-other-keys)
4656 (let* ((out (assoc-ref outputs "out"))
4657 (perl5lib (getenv "PERL5LIB"))
4658 (path (getenv "PATH")))
4659 (for-each (lambda (prog)
4660 (let ((binary (string-append out "/" prog)))
4661 (wrap-program binary
4662 `("PERL5LIB" ":" prefix
4663 (,(string-append perl5lib ":" out
4664 "/lib/perl5/site_perl"))))
4665 (wrap-program binary
4666 `("PATH" ":" prefix
4667 (,(string-append path ":" out "/bin"))))))
4668 (find-files "bin" ".*[^R]$"))
4669 (let ((file
4670 (string-append out "/bin/roary-create_pan_genome_plots.R"))
4671 (r-site-lib (getenv "R_LIBS_SITE"))
4672 (coreutils-path
4673 (string-append (assoc-ref inputs "coreutils") "/bin")))
4674 (wrap-program file
4675 `("R_LIBS_SITE" ":" prefix
4676 (,(string-append r-site-lib ":" out "/site-library/"))))
4677 (wrap-program file
4678 `("PATH" ":" prefix
4679 (,(string-append coreutils-path ":" out "/bin"))))))
4680 #t)))))
4681 (native-inputs
4682 `(("perl-env-path" ,perl-env-path)
4683 ("perl-test-files" ,perl-test-files)
4684 ("perl-test-most" ,perl-test-most)
4685 ("perl-test-output" ,perl-test-output)))
4686 (inputs
4687 `(("perl-array-utils" ,perl-array-utils)
4688 ("bioperl" ,bioperl-minimal)
4689 ("perl-digest-md5-file" ,perl-digest-md5-file)
4690 ("perl-exception-class" ,perl-exception-class)
4691 ("perl-file-find-rule" ,perl-file-find-rule)
4692 ("perl-file-grep" ,perl-file-grep)
4693 ("perl-file-slurper" ,perl-file-slurper)
4694 ("perl-file-which" ,perl-file-which)
4695 ("perl-graph" ,perl-graph)
4696 ("perl-graph-readwrite" ,perl-graph-readwrite)
4697 ("perl-log-log4perl" ,perl-log-log4perl)
4698 ("perl-moose" ,perl-moose)
4699 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
4700 ("perl-text-csv" ,perl-text-csv)
4701 ("bedtools" ,bedtools)
4702 ("cd-hit" ,cd-hit)
4703 ("blast+" ,blast+)
4704 ("mcl" ,mcl)
4705 ("parallel" ,parallel)
4706 ("prank" ,prank)
4707 ("mafft" ,mafft)
4708 ("fasttree" ,fasttree)
4709 ("grep" ,grep)
4710 ("sed" ,sed)
4711 ("gawk" ,gawk)
4712 ("r-minimal" ,r-minimal)
4713 ("r-ggplot2" ,r-ggplot2)
4714 ("coreutils" ,coreutils)))
4715 (home-page "http://sanger-pathogens.github.io/Roary")
4716 (synopsis "High speed stand-alone pan genome pipeline")
4717 (description
4718 "Roary is a high speed stand alone pan genome pipeline, which takes
4719 annotated assemblies in GFF3 format (produced by the Prokka program) and
4720 calculates the pan genome. Using a standard desktop PC, it can analyse
4721 datasets with thousands of samples, without compromising the quality of the
4722 results. 128 samples can be analysed in under 1 hour using 1 GB of RAM and a
4723 single processor. Roary is not intended for metagenomics or for comparing
4724 extremely diverse sets of genomes.")
4725 (license license:gpl3)))
4726
4727 (define-public raxml
4728 (package
4729 (name "raxml")
4730 (version "8.2.10")
4731 (source
4732 (origin
4733 (method url-fetch)
4734 (uri
4735 (string-append
4736 "https://github.com/stamatak/standard-RAxML/archive/v"
4737 version ".tar.gz"))
4738 (file-name (string-append name "-" version ".tar.gz"))
4739 (sha256
4740 (base32
4741 "13s7aspfdcfr6asynwdg1x6vznys6pzap5f8wsffbnnwpkkg9ya8"))))
4742 (build-system gnu-build-system)
4743 (arguments
4744 `(#:tests? #f ; There are no tests.
4745 ;; Use 'standard' Makefile rather than SSE or AVX ones.
4746 #:make-flags (list "-f" "Makefile.HYBRID.gcc")
4747 #:phases
4748 (modify-phases %standard-phases
4749 (delete 'configure)
4750 (replace 'install
4751 (lambda* (#:key outputs #:allow-other-keys)
4752 (let* ((out (assoc-ref outputs "out"))
4753 (bin (string-append out "/bin"))
4754 (executable "raxmlHPC-HYBRID"))
4755 (install-file executable bin)
4756 (symlink (string-append bin "/" executable) "raxml"))
4757 #t)))))
4758 (inputs
4759 `(("openmpi" ,openmpi)))
4760 (home-page "http://sco.h-its.org/exelixis/web/software/raxml/index.html")
4761 (synopsis "Randomized Axelerated Maximum Likelihood phylogenetic trees")
4762 (description
4763 "RAxML is a tool for phylogenetic analysis and post-analysis of large
4764 phylogenies.")
4765 ;; The source includes x86 specific code
4766 (supported-systems '("x86_64-linux" "i686-linux"))
4767 (license license:gpl2+)))
4768
4769 (define-public rsem
4770 (package
4771 (name "rsem")
4772 (version "1.2.20")
4773 (source
4774 (origin
4775 (method url-fetch)
4776 (uri
4777 (string-append "http://deweylab.biostat.wisc.edu/rsem/src/rsem-"
4778 version ".tar.gz"))
4779 (sha256
4780 (base32 "0nzdc0j0hjllhsd5f2xli95dafm3nawskigs140xzvjk67xh0r9q"))
4781 (patches (search-patches "rsem-makefile.patch"))
4782 (modules '((guix build utils)))
4783 (snippet
4784 '(begin
4785 ;; remove bundled copy of boost
4786 (delete-file-recursively "boost")
4787 #t))))
4788 (build-system gnu-build-system)
4789 (arguments
4790 `(#:tests? #f ;no "check" target
4791 #:phases
4792 (modify-phases %standard-phases
4793 ;; No "configure" script.
4794 ;; Do not build bundled samtools library.
4795 (replace 'configure
4796 (lambda _
4797 (substitute* "Makefile"
4798 (("^all : sam/libbam.a") "all : "))
4799 #t))
4800 (replace 'install
4801 (lambda* (#:key outputs #:allow-other-keys)
4802 (let* ((out (string-append (assoc-ref outputs "out")))
4803 (bin (string-append out "/bin/"))
4804 (perl (string-append out "/lib/perl5/site_perl")))
4805 (mkdir-p bin)
4806 (mkdir-p perl)
4807 (for-each (lambda (file)
4808 (install-file file bin))
4809 (find-files "." "rsem-.*"))
4810 (install-file "rsem_perl_utils.pm" perl))
4811 #t))
4812 (add-after
4813 'install 'wrap-program
4814 (lambda* (#:key outputs #:allow-other-keys)
4815 (let ((out (assoc-ref outputs "out")))
4816 (for-each (lambda (prog)
4817 (wrap-program (string-append out "/bin/" prog)
4818 `("PERL5LIB" ":" prefix
4819 (,(string-append out "/lib/perl5/site_perl")))))
4820 '("rsem-plot-transcript-wiggles"
4821 "rsem-calculate-expression"
4822 "rsem-generate-ngvector"
4823 "rsem-run-ebseq"
4824 "rsem-prepare-reference")))
4825 #t)))))
4826 (inputs
4827 `(("boost" ,boost)
4828 ("ncurses" ,ncurses)
4829 ("r-minimal" ,r-minimal)
4830 ("perl" ,perl)
4831 ("samtools" ,samtools-0.1)
4832 ("zlib" ,zlib)))
4833 (home-page "http://deweylab.biostat.wisc.edu/rsem/")
4834 (synopsis "Estimate gene expression levels from RNA-Seq data")
4835 (description
4836 "RSEM is a software package for estimating gene and isoform expression
4837 levels from RNA-Seq data. The RSEM package provides a user-friendly
4838 interface, supports threads for parallel computation of the EM algorithm,
4839 single-end and paired-end read data, quality scores, variable-length reads and
4840 RSPD estimation. In addition, it provides posterior mean and 95% credibility
4841 interval estimates for expression levels. For visualization, it can generate
4842 BAM and Wiggle files in both transcript-coordinate and genomic-coordinate.")
4843 (license license:gpl3+)))
4844
4845 (define-public rseqc
4846 (package
4847 (name "rseqc")
4848 (version "2.6.1")
4849 (source
4850 (origin
4851 (method url-fetch)
4852 (uri
4853 (string-append "mirror://sourceforge/rseqc/"
4854 "RSeQC-" version ".tar.gz"))
4855 (sha256
4856 (base32 "15ly0254yi032qzkdplg00q144qfdsd986gh62829rl5bkxhj330"))
4857 (modules '((guix build utils)))
4858 (snippet
4859 '(begin
4860 ;; remove bundled copy of pysam
4861 (delete-file-recursively "lib/pysam")
4862 (substitute* "setup.py"
4863 ;; remove dependency on outdated "distribute" module
4864 (("^from distribute_setup import use_setuptools") "")
4865 (("^use_setuptools\\(\\)") "")
4866 ;; do not use bundled copy of pysam
4867 (("^have_pysam = False") "have_pysam = True"))))))
4868 (build-system python-build-system)
4869 (arguments `(#:python ,python-2))
4870 (inputs
4871 `(("python-cython" ,python2-cython)
4872 ("python-pysam" ,python2-pysam)
4873 ("python-numpy" ,python2-numpy)
4874 ("zlib" ,zlib)))
4875 (native-inputs
4876 `(("python-nose" ,python2-nose)))
4877 (home-page "http://rseqc.sourceforge.net/")
4878 (synopsis "RNA-seq quality control package")
4879 (description
4880 "RSeQC provides a number of modules that can comprehensively evaluate
4881 high throughput sequence data, especially RNA-seq data. Some basic modules
4882 inspect sequence quality, nucleotide composition bias, PCR bias and GC bias,
4883 while RNA-seq specific modules evaluate sequencing saturation, mapped reads
4884 distribution, coverage uniformity, strand specificity, etc.")
4885 (license license:gpl3+)))
4886
4887 (define-public seek
4888 ;; There are no release tarballs. According to the installation
4889 ;; instructions at http://seek.princeton.edu/installation.jsp, the latest
4890 ;; stable release is identified by this changeset ID.
4891 (let ((changeset "2329130")
4892 (revision "1"))
4893 (package
4894 (name "seek")
4895 (version (string-append "0-" revision "." changeset))
4896 (source (origin
4897 (method hg-fetch)
4898 (uri (hg-reference
4899 (url "https://bitbucket.org/libsleipnir/sleipnir")
4900 (changeset changeset)))
4901 (file-name (string-append name "-" version "-checkout"))
4902 (sha256
4903 (base32
4904 "0qrvilwh18dpbhkf92qvxbmay0j75ra3jg2wrhz67gf538zzphsx"))))
4905 (build-system gnu-build-system)
4906 (arguments
4907 `(#:modules ((srfi srfi-1)
4908 (guix build gnu-build-system)
4909 (guix build utils))
4910 #:phases
4911 (let ((dirs '("SeekMiner"
4912 "SeekEvaluator"
4913 "SeekPrep"
4914 "Distancer"
4915 "Data2DB"
4916 "PCL2Bin")))
4917 (modify-phases %standard-phases
4918 (add-before 'configure 'bootstrap
4919 (lambda _
4920 (zero? (system* "bash" "gen_auto"))))
4921 (add-after 'build 'build-additional-tools
4922 (lambda* (#:key make-flags #:allow-other-keys)
4923 (every (lambda (dir)
4924 (with-directory-excursion (string-append "tools/" dir)
4925 (zero? (apply system* "make" make-flags))))
4926 dirs)))
4927 (add-after 'install 'install-additional-tools
4928 (lambda* (#:key make-flags #:allow-other-keys)
4929 (fold (lambda (dir result)
4930 (with-directory-excursion (string-append "tools/" dir)
4931 (and result
4932 (zero? (apply system*
4933 `("make" ,@make-flags "install"))))))
4934 #t dirs)))))))
4935 (inputs
4936 `(("gsl" ,gsl)
4937 ("boost" ,boost)
4938 ("libsvm" ,libsvm)
4939 ("readline" ,readline)
4940 ("gengetopt" ,gengetopt)
4941 ("log4cpp" ,log4cpp)))
4942 (native-inputs
4943 `(("autoconf" ,autoconf)
4944 ("automake" ,automake)
4945 ("perl" ,perl)))
4946 (home-page "http://seek.princeton.edu")
4947 (synopsis "Gene co-expression search engine")
4948 (description
4949 "SEEK is a computational gene co-expression search engine. SEEK provides
4950 biologists with a way to navigate the massive human expression compendium that
4951 now contains thousands of expression datasets. SEEK returns a robust ranking
4952 of co-expressed genes in the biological area of interest defined by the user's
4953 query genes. It also prioritizes thousands of expression datasets according
4954 to the user's query of interest.")
4955 (license license:cc-by3.0))))
4956
4957 (define-public samtools
4958 (package
4959 (name "samtools")
4960 (version "1.8")
4961 (source
4962 (origin
4963 (method url-fetch)
4964 (uri
4965 (string-append "mirror://sourceforge/samtools/samtools/"
4966 version "/samtools-" version ".tar.bz2"))
4967 (sha256
4968 (base32
4969 "05myg7bs90i68qbqab9cdg9rqj2xh39azibrx82ipzc5kcfvqhn9"))))
4970 (build-system gnu-build-system)
4971 (arguments
4972 `(#:modules ((ice-9 ftw)
4973 (ice-9 regex)
4974 (guix build gnu-build-system)
4975 (guix build utils))
4976 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
4977 #:configure-flags (list "--with-ncurses" "--with-htslib=system")
4978 #:phases
4979 (modify-phases %standard-phases
4980 (add-after 'unpack 'patch-tests
4981 (lambda _
4982 (substitute* "test/test.pl"
4983 ;; The test script calls out to /bin/bash
4984 (("/bin/bash") (which "bash")))
4985 #t))
4986 (add-after 'install 'install-library
4987 (lambda* (#:key outputs #:allow-other-keys)
4988 (let ((lib (string-append (assoc-ref outputs "out") "/lib")))
4989 (install-file "libbam.a" lib)
4990 #t)))
4991 (add-after 'install 'install-headers
4992 (lambda* (#:key outputs #:allow-other-keys)
4993 (let ((include (string-append (assoc-ref outputs "out")
4994 "/include/samtools/")))
4995 (for-each (lambda (file)
4996 (install-file file include))
4997 (scandir "." (lambda (name) (string-match "\\.h$" name))))
4998 #t))))))
4999 (native-inputs `(("pkg-config" ,pkg-config)))
5000 (inputs
5001 `(("htslib" ,htslib)
5002 ("ncurses" ,ncurses)
5003 ("perl" ,perl)
5004 ("python" ,python)
5005 ("zlib" ,zlib)))
5006 (home-page "http://samtools.sourceforge.net")
5007 (synopsis "Utilities to efficiently manipulate nucleotide sequence alignments")
5008 (description
5009 "Samtools implements various utilities for post-processing nucleotide
5010 sequence alignments in the SAM, BAM, and CRAM formats, including indexing,
5011 variant calling (in conjunction with bcftools), and a simple alignment
5012 viewer.")
5013 (license license:expat)))
5014
5015 (define-public samtools-0.1
5016 ;; This is the most recent version of the 0.1 line of samtools. The input
5017 ;; and output formats differ greatly from that used and produced by samtools
5018 ;; 1.x and is still used in many bioinformatics pipelines.
5019 (package (inherit samtools)
5020 (version "0.1.19")
5021 (source
5022 (origin
5023 (method url-fetch)
5024 (uri
5025 (string-append "mirror://sourceforge/samtools/samtools/"
5026 version "/samtools-" version ".tar.bz2"))
5027 (sha256
5028 (base32 "1m33xsfwz0s8qi45lylagfllqg7fphf4dr0780rsvw75av9wk06h"))))
5029 (arguments
5030 `(#:tests? #f ;no "check" target
5031 ,@(substitute-keyword-arguments (package-arguments samtools)
5032 ((#:make-flags flags)
5033 `(cons "LIBCURSES=-lncurses" ,flags))
5034 ((#:phases phases)
5035 `(modify-phases ,phases
5036 (replace 'install
5037 (lambda* (#:key outputs #:allow-other-keys)
5038 (let ((bin (string-append
5039 (assoc-ref outputs "out") "/bin")))
5040 (mkdir-p bin)
5041 (install-file "samtools" bin)
5042 #t)))
5043 (delete 'patch-tests)
5044 (delete 'configure))))))))
5045
5046 (define-public mosaik
5047 (let ((commit "5c25216d3522d6a33e53875cd76a6d65001e4e67"))
5048 (package
5049 (name "mosaik")
5050 (version "2.2.30")
5051 (source (origin
5052 ;; There are no release tarballs nor tags.
5053 (method git-fetch)
5054 (uri (git-reference
5055 (url "https://github.com/wanpinglee/MOSAIK.git")
5056 (commit commit)))
5057 (file-name (string-append name "-" version))
5058 (sha256
5059 (base32
5060 "17gj3s07cm77r41z92awh0bim7w7q7fbn0sf5nkqmcm1vw052qgw"))))
5061 (build-system gnu-build-system)
5062 (arguments
5063 `(#:tests? #f ; no tests
5064 #:make-flags (list "CC=gcc")
5065 #:phases
5066 (modify-phases %standard-phases
5067 (replace 'configure
5068 (lambda _ (chdir "src") #t))
5069 (replace 'install
5070 (lambda* (#:key outputs #:allow-other-keys)
5071 (let ((bin (string-append (assoc-ref outputs "out")
5072 "/bin")))
5073 (mkdir-p bin)
5074 (copy-recursively "../bin" bin)
5075 #t))))))
5076 (inputs
5077 `(("perl" ,perl)
5078 ("zlib" ,zlib)))
5079 (supported-systems '("x86_64-linux"))
5080 (home-page "https://github.com/wanpinglee/MOSAIK")
5081 (synopsis "Map nucleotide sequence reads to reference genomes")
5082 (description
5083 "MOSAIK is a program for mapping second and third-generation sequencing
5084 reads to a reference genome. MOSAIK can align reads generated by all the
5085 major sequencing technologies, including Illumina, Applied Biosystems SOLiD,
5086 Roche 454, Ion Torrent and Pacific BioSciences SMRT.")
5087 ;; MOSAIK is released under the GPLv2+ with the exception of third-party
5088 ;; code released into the public domain:
5089 ;; 1. fastlz by Ariya Hidayat - http://www.fastlz.org/
5090 ;; 2. MD5 implementation - RSA Data Security, RFC 1321
5091 (license (list license:gpl2+ license:public-domain)))))
5092
5093 (define-public ngs-sdk
5094 (package
5095 (name "ngs-sdk")
5096 (version "1.3.0")
5097 (source
5098 (origin
5099 (method url-fetch)
5100 (uri
5101 (string-append "https://github.com/ncbi/ngs/archive/"
5102 version ".tar.gz"))
5103 (file-name (string-append name "-" version ".tar.gz"))
5104 (sha256
5105 (base32
5106 "1wiyf4c6nm2j87pv015cbi0qny5byf3pbvcw3likifz5dl56ag40"))))
5107 (build-system gnu-build-system)
5108 (arguments
5109 `(#:parallel-build? #f ; not supported
5110 #:tests? #f ; no "check" target
5111 #:phases
5112 (modify-phases %standard-phases
5113 (replace 'configure
5114 (lambda* (#:key outputs #:allow-other-keys)
5115 (let ((out (assoc-ref outputs "out")))
5116 ;; Allow 'konfigure.perl' to find 'package.prl'.
5117 (setenv "PERL5LIB"
5118 (string-append ".:" (getenv "PERL5LIB")))
5119
5120 ;; The 'configure' script doesn't recognize things like
5121 ;; '--enable-fast-install'.
5122 (zero? (system* "./configure"
5123 (string-append "--build-prefix=" (getcwd) "/build")
5124 (string-append "--prefix=" out))))))
5125 (add-after 'unpack 'enter-dir
5126 (lambda _ (chdir "ngs-sdk") #t)))))
5127 (native-inputs `(("perl" ,perl)))
5128 ;; According to the test
5129 ;; unless ($MARCH =~ /x86_64/i || $MARCH =~ /i?86/i)
5130 ;; in ngs-sdk/setup/konfigure.perl
5131 (supported-systems '("i686-linux" "x86_64-linux"))
5132 (home-page "https://github.com/ncbi/ngs")
5133 (synopsis "API for accessing Next Generation Sequencing data")
5134 (description
5135 "NGS is a domain-specific API for accessing reads, alignments and pileups
5136 produced from Next Generation Sequencing. The API itself is independent from
5137 any particular back-end implementation, and supports use of multiple back-ends
5138 simultaneously.")
5139 (license license:public-domain)))
5140
5141 (define-public java-ngs
5142 (package (inherit ngs-sdk)
5143 (name "java-ngs")
5144 (arguments
5145 `(,@(substitute-keyword-arguments
5146 `(#:modules ((guix build gnu-build-system)
5147 (guix build utils)
5148 (srfi srfi-1)
5149 (srfi srfi-26))
5150 ,@(package-arguments ngs-sdk))
5151 ((#:phases phases)
5152 `(modify-phases ,phases
5153 (replace 'enter-dir (lambda _ (chdir "ngs-java") #t)))))))
5154 (inputs
5155 `(("jdk" ,icedtea "jdk")
5156 ("ngs-sdk" ,ngs-sdk)))
5157 (synopsis "Java bindings for NGS SDK")))
5158
5159 (define-public ncbi-vdb
5160 (package
5161 (name "ncbi-vdb")
5162 (version "2.8.2")
5163 (source
5164 (origin
5165 (method url-fetch)
5166 (uri
5167 (string-append "https://github.com/ncbi/ncbi-vdb/archive/"
5168 version ".tar.gz"))
5169 (file-name (string-append name "-" version ".tar.gz"))
5170 (sha256
5171 (base32
5172 "1acn4bv81mfl137qnbn9995mjjhwd36pm0b7qli1iw5skrxa9j8m"))))
5173 (build-system gnu-build-system)
5174 (arguments
5175 `(#:parallel-build? #f ; not supported
5176 #:tests? #f ; no "check" target
5177 #:phases
5178 (modify-phases %standard-phases
5179 (add-before 'configure 'set-perl-search-path
5180 (lambda _
5181 ;; Work around "dotless @INC" build failure.
5182 (setenv "PERL5LIB"
5183 (string-append (getcwd) "/setup:"
5184 (getenv "PERL5LIB")))
5185 #t))
5186 (replace 'configure
5187 (lambda* (#:key inputs outputs #:allow-other-keys)
5188 (let ((out (assoc-ref outputs "out")))
5189 ;; Override include path for libmagic
5190 (substitute* "setup/package.prl"
5191 (("name => 'magic', Include => '/usr/include'")
5192 (string-append "name=> 'magic', Include => '"
5193 (assoc-ref inputs "libmagic")
5194 "/include" "'")))
5195
5196 ;; Install kdf5 library (needed by sra-tools)
5197 (substitute* "build/Makefile.install"
5198 (("LIBRARIES_TO_INSTALL =")
5199 "LIBRARIES_TO_INSTALL = kdf5.$(VERSION_LIBX) kdf5.$(VERSION_SHLX)"))
5200
5201 (substitute* "build/Makefile.env"
5202 (("CFLAGS =" prefix)
5203 (string-append prefix "-msse2 ")))
5204
5205 ;; Override search path for ngs-java
5206 (substitute* "setup/package.prl"
5207 (("/usr/local/ngs/ngs-java")
5208 (assoc-ref inputs "java-ngs")))
5209
5210 ;; The 'configure' script doesn't recognize things like
5211 ;; '--enable-fast-install'.
5212 (zero? (system*
5213 "./configure"
5214 (string-append "--build-prefix=" (getcwd) "/build")
5215 (string-append "--prefix=" (assoc-ref outputs "out"))
5216 (string-append "--debug")
5217 (string-append "--with-xml2-prefix="
5218 (assoc-ref inputs "libxml2"))
5219 (string-append "--with-ngs-sdk-prefix="
5220 (assoc-ref inputs "ngs-sdk"))
5221 (string-append "--with-hdf5-prefix="
5222 (assoc-ref inputs "hdf5")))))))
5223 (add-after 'install 'install-interfaces
5224 (lambda* (#:key outputs #:allow-other-keys)
5225 ;; Install interface libraries. On i686 the interface libraries
5226 ;; are installed to "linux/gcc/i386", so we need to use the Linux
5227 ;; architecture name ("i386") instead of the target system prefix
5228 ;; ("i686").
5229 (mkdir (string-append (assoc-ref outputs "out") "/ilib"))
5230 (copy-recursively (string-append "build/ncbi-vdb/linux/gcc/"
5231 ,(system->linux-architecture
5232 (or (%current-target-system)
5233 (%current-system)))
5234 "/rel/ilib")
5235 (string-append (assoc-ref outputs "out")
5236 "/ilib"))
5237 ;; Install interface headers
5238 (copy-recursively "interfaces"
5239 (string-append (assoc-ref outputs "out")
5240 "/include"))
5241 #t))
5242 ;; These files are needed by sra-tools.
5243 (add-after 'install 'install-configuration-files
5244 (lambda* (#:key outputs #:allow-other-keys)
5245 (let ((target (string-append (assoc-ref outputs "out") "/kfg")))
5246 (mkdir target)
5247 (install-file "libs/kfg/default.kfg" target)
5248 (install-file "libs/kfg/certs.kfg" target))
5249 #t)))))
5250 (inputs
5251 `(("libxml2" ,libxml2)
5252 ("ngs-sdk" ,ngs-sdk)
5253 ("java-ngs" ,java-ngs)
5254 ("libmagic" ,file)
5255 ("hdf5" ,hdf5)))
5256 (native-inputs `(("perl" ,perl)))
5257 ;; NCBI-VDB requires SSE capability.
5258 (supported-systems '("i686-linux" "x86_64-linux"))
5259 (home-page "https://github.com/ncbi/ncbi-vdb")
5260 (synopsis "Database engine for genetic information")
5261 (description
5262 "The NCBI-VDB library implements a highly compressed columnar data
5263 warehousing engine that is most often used to store genetic information.
5264 Databases are stored in a portable image within the file system, and can be
5265 accessed/downloaded on demand across HTTP.")
5266 (license license:public-domain)))
5267
5268 (define-public plink
5269 (package
5270 (name "plink")
5271 (version "1.07")
5272 (source
5273 (origin
5274 (method url-fetch)
5275 (uri (string-append
5276 "http://pngu.mgh.harvard.edu/~purcell/plink/dist/plink-"
5277 version "-src.zip"))
5278 (sha256
5279 (base32 "0as8gxm4pjyc8dxmm1sl873rrd7wn5qs0l29nqfnl31x8i467xaa"))
5280 (patches (search-patches "plink-1.07-unclobber-i.patch"
5281 "plink-endian-detection.patch"))))
5282 (build-system gnu-build-system)
5283 (arguments
5284 '(#:tests? #f ;no "check" target
5285 #:make-flags (list (string-append "LIB_LAPACK="
5286 (assoc-ref %build-inputs "lapack")
5287 "/lib/liblapack.so")
5288 "WITH_LAPACK=1"
5289 "FORCE_DYNAMIC=1"
5290 ;; disable phoning home
5291 "WITH_WEBCHECK=")
5292 #:phases
5293 (modify-phases %standard-phases
5294 ;; no "configure" script
5295 (delete 'configure)
5296 (replace 'install
5297 (lambda* (#:key outputs #:allow-other-keys)
5298 (let ((bin (string-append (assoc-ref outputs "out")
5299 "/bin/")))
5300 (install-file "plink" bin)
5301 #t))))))
5302 (inputs
5303 `(("zlib" ,zlib)
5304 ("lapack" ,lapack)))
5305 (native-inputs
5306 `(("unzip" ,unzip)))
5307 (home-page "http://pngu.mgh.harvard.edu/~purcell/plink/")
5308 (synopsis "Whole genome association analysis toolset")
5309 (description
5310 "PLINK is a whole genome association analysis toolset, designed to
5311 perform a range of basic, large-scale analyses in a computationally efficient
5312 manner. The focus of PLINK is purely on analysis of genotype/phenotype data,
5313 so there is no support for steps prior to this (e.g. study design and
5314 planning, generating genotype or CNV calls from raw data). Through
5315 integration with gPLINK and Haploview, there is some support for the
5316 subsequent visualization, annotation and storage of results.")
5317 ;; Code is released under GPLv2, except for fisher.h, which is under
5318 ;; LGPLv2.1+
5319 (license (list license:gpl2 license:lgpl2.1+))))
5320
5321 (define-public plink-ng
5322 (package (inherit plink)
5323 (name "plink-ng")
5324 (version "1.90b4")
5325 (source
5326 (origin
5327 (method url-fetch)
5328 (uri (string-append "https://github.com/chrchang/plink-ng/archive/v"
5329 version ".tar.gz"))
5330 (file-name (string-append name "-" version ".tar.gz"))
5331 (sha256
5332 (base32 "09ixrds009aczjswxr2alcb774mksq5g0v78dgjjn1h4dky0kf9a"))))
5333 (build-system gnu-build-system)
5334 (arguments
5335 '(#:tests? #f ;no "check" target
5336 #:make-flags (list "BLASFLAGS=-llapack -lopenblas"
5337 "CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
5338 "ZLIB=-lz"
5339 "-f" "Makefile.std")
5340 #:phases
5341 (modify-phases %standard-phases
5342 (add-after 'unpack 'chdir
5343 (lambda _ (chdir "1.9") #t))
5344 (delete 'configure) ; no "configure" script
5345 (replace 'install
5346 (lambda* (#:key outputs #:allow-other-keys)
5347 (let ((bin (string-append (assoc-ref outputs "out")
5348 "/bin/")))
5349 (install-file "plink" bin)
5350 #t))))))
5351 (inputs
5352 `(("zlib" ,zlib)
5353 ("lapack" ,lapack)
5354 ("openblas" ,openblas)))
5355 (home-page "https://www.cog-genomics.org/plink/")
5356 (license license:gpl3+)))
5357
5358 (define-public smithlab-cpp
5359 (let ((revision "1")
5360 (commit "728a097bec88c6f4b8528b685932049e660eff2e"))
5361 (package
5362 (name "smithlab-cpp")
5363 (version (string-append "0." revision "." (string-take commit 7)))
5364 (source (origin
5365 (method git-fetch)
5366 (uri (git-reference
5367 (url "https://github.com/smithlabcode/smithlab_cpp.git")
5368 (commit commit)))
5369 (file-name (string-append name "-" version "-checkout"))
5370 (sha256
5371 (base32
5372 "0d476lmj312xk77kr9fzrv7z1bv96yfyx0w7y62ycmnfbx32ll74"))))
5373 (build-system gnu-build-system)
5374 (arguments
5375 `(#:modules ((guix build gnu-build-system)
5376 (guix build utils)
5377 (srfi srfi-26))
5378 #:tests? #f ;no "check" target
5379 #:phases
5380 (modify-phases %standard-phases
5381 (add-after 'unpack 'use-samtools-headers
5382 (lambda _
5383 (substitute* '("SAM.cpp"
5384 "SAM.hpp")
5385 (("sam.h") "samtools/sam.h"))
5386 #t))
5387 (replace 'install
5388 (lambda* (#:key outputs #:allow-other-keys)
5389 (let* ((out (assoc-ref outputs "out"))
5390 (lib (string-append out "/lib"))
5391 (include (string-append out "/include/smithlab-cpp")))
5392 (mkdir-p lib)
5393 (mkdir-p include)
5394 (for-each (cut install-file <> lib)
5395 (find-files "." "\\.o$"))
5396 (for-each (cut install-file <> include)
5397 (find-files "." "\\.hpp$")))
5398 #t))
5399 (delete 'configure))))
5400 (inputs
5401 `(("samtools" ,samtools-0.1)
5402 ("zlib" ,zlib)))
5403 (home-page "https://github.com/smithlabcode/smithlab_cpp")
5404 (synopsis "C++ helper library for functions used in Smith lab projects")
5405 (description
5406 "Smithlab CPP is a C++ library that includes functions used in many of
5407 the Smith lab bioinformatics projects, such as a wrapper around Samtools data
5408 structures, classes for genomic regions, mapped sequencing reads, etc.")
5409 (license license:gpl3+))))
5410
5411 (define-public preseq
5412 (package
5413 (name "preseq")
5414 (version "2.0")
5415 (source (origin
5416 (method url-fetch)
5417 (uri (string-append "https://github.com/smithlabcode/"
5418 "preseq/archive/v" version ".tar.gz"))
5419 (file-name (string-append name "-" version ".tar.gz"))
5420 (sha256
5421 (base32 "08r684l50pnxjpvmhzjgqq56yv9rfw90k8vx0nsrnrzk8mf9hsdq"))
5422 (modules '((guix build utils)))
5423 (snippet
5424 ;; Remove bundled samtools.
5425 '(delete-file-recursively "samtools"))))
5426 (build-system gnu-build-system)
5427 (arguments
5428 `(#:tests? #f ;no "check" target
5429 #:phases
5430 (modify-phases %standard-phases
5431 (delete 'configure))
5432 #:make-flags
5433 (list (string-append "PREFIX="
5434 (assoc-ref %outputs "out"))
5435 (string-append "LIBBAM="
5436 (assoc-ref %build-inputs "samtools")
5437 "/lib/libbam.a")
5438 (string-append "SMITHLAB_CPP="
5439 (assoc-ref %build-inputs "smithlab-cpp")
5440 "/lib")
5441 "PROGS=preseq"
5442 "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp $(SAMTOOLS_DIR)")))
5443 (inputs
5444 `(("gsl" ,gsl)
5445 ("samtools" ,samtools-0.1)
5446 ("smithlab-cpp" ,smithlab-cpp)
5447 ("zlib" ,zlib)))
5448 (home-page "http://smithlabresearch.org/software/preseq/")
5449 (synopsis "Program for analyzing library complexity")
5450 (description
5451 "The preseq package is aimed at predicting and estimating the complexity
5452 of a genomic sequencing library, equivalent to predicting and estimating the
5453 number of redundant reads from a given sequencing depth and how many will be
5454 expected from additional sequencing using an initial sequencing experiment.
5455 The estimates can then be used to examine the utility of further sequencing,
5456 optimize the sequencing depth, or to screen multiple libraries to avoid low
5457 complexity samples.")
5458 (license license:gpl3+)))
5459
5460 (define-public python-screed
5461 (package
5462 (name "python-screed")
5463 (version "0.9")
5464 (source
5465 (origin
5466 (method url-fetch)
5467 (uri (pypi-uri "screed" version))
5468 (sha256
5469 (base32
5470 "18czszp9fkx3j6jr7y5kp6dfialscgddk05mw1zkhh2zhn0jd8i0"))))
5471 (build-system python-build-system)
5472 (arguments
5473 `(#:phases
5474 (modify-phases %standard-phases
5475 (replace 'check
5476 (lambda _
5477 (setenv "PYTHONPATH"
5478 (string-append (getenv "PYTHONPATH") ":."))
5479 (zero? (system* "nosetests" "--attr" "!known_failing")))))))
5480 (native-inputs
5481 `(("python-nose" ,python-nose)))
5482 (inputs
5483 `(("python-bz2file" ,python-bz2file)))
5484 (home-page "https://github.com/dib-lab/screed/")
5485 (synopsis "Short read sequence database utilities")
5486 (description "Screed parses FASTA and FASTQ files and generates databases.
5487 Values such as sequence name, sequence description, sequence quality and the
5488 sequence itself can be retrieved from these databases.")
5489 (license license:bsd-3)))
5490
5491 (define-public python2-screed
5492 (package-with-python2 python-screed))
5493
5494 (define-public sra-tools
5495 (package
5496 (name "sra-tools")
5497 (version "2.8.2-1")
5498 (source
5499 (origin
5500 (method url-fetch)
5501 (uri
5502 (string-append "https://github.com/ncbi/sra-tools/archive/"
5503 version ".tar.gz"))
5504 (file-name (string-append name "-" version ".tar.gz"))
5505 (sha256
5506 (base32
5507 "1camsijmvv2s45mb4iyf44ghl4gkd4rl0viphpcgl3ccchy32a0g"))))
5508 (build-system gnu-build-system)
5509 (arguments
5510 `(#:parallel-build? #f ; not supported
5511 #:tests? #f ; no "check" target
5512 #:make-flags
5513 (list (string-append "DEFAULT_CRT="
5514 (assoc-ref %build-inputs "ncbi-vdb")
5515 "/kfg/certs.kfg")
5516 (string-append "DEFAULT_KFG="
5517 (assoc-ref %build-inputs "ncbi-vdb")
5518 "/kfg/default.kfg")
5519 (string-append "VDB_LIBDIR="
5520 (assoc-ref %build-inputs "ncbi-vdb")
5521 ,(if (string-prefix? "x86_64"
5522 (or (%current-target-system)
5523 (%current-system)))
5524 "/lib64"
5525 "/lib32")))
5526 #:phases
5527 (modify-phases %standard-phases
5528 (add-before 'configure 'set-perl-search-path
5529 (lambda _
5530 ;; Work around "dotless @INC" build failure.
5531 (setenv "PERL5LIB"
5532 (string-append (getcwd) "/setup:"
5533 (getenv "PERL5LIB")))
5534 #t))
5535 (replace 'configure
5536 (lambda* (#:key inputs outputs #:allow-other-keys)
5537 ;; The build system expects a directory containing the sources and
5538 ;; raw build output of ncbi-vdb, including files that are not
5539 ;; installed. Since we are building against an installed version of
5540 ;; ncbi-vdb, the following modifications are needed.
5541 (substitute* "setup/konfigure.perl"
5542 ;; Make the configure script look for the "ilib" directory of
5543 ;; "ncbi-vdb" without first checking for the existence of a
5544 ;; matching library in its "lib" directory.
5545 (("^ my \\$f = File::Spec->catdir\\(\\$libdir, \\$lib\\);")
5546 "my $f = File::Spec->catdir($ilibdir, $ilib);")
5547 ;; Look for interface libraries in ncbi-vdb's "ilib" directory.
5548 (("my \\$ilibdir = File::Spec->catdir\\(\\$builddir, 'ilib'\\);")
5549 "my $ilibdir = File::Spec->catdir($dir, 'ilib');"))
5550
5551 ;; Dynamic linking
5552 (substitute* "tools/copycat/Makefile"
5553 (("smagic-static") "lmagic"))
5554
5555 ;; The 'configure' script doesn't recognize things like
5556 ;; '--enable-fast-install'.
5557 (zero? (system*
5558 "./configure"
5559 (string-append "--build-prefix=" (getcwd) "/build")
5560 (string-append "--prefix=" (assoc-ref outputs "out"))
5561 (string-append "--debug")
5562 (string-append "--with-fuse-prefix="
5563 (assoc-ref inputs "fuse"))
5564 (string-append "--with-magic-prefix="
5565 (assoc-ref inputs "libmagic"))
5566 ;; TODO: building with libxml2 fails with linker errors
5567 ;; (string-append "--with-xml2-prefix="
5568 ;; (assoc-ref inputs "libxml2"))
5569 (string-append "--with-ncbi-vdb-sources="
5570 (assoc-ref inputs "ncbi-vdb"))
5571 (string-append "--with-ncbi-vdb-build="
5572 (assoc-ref inputs "ncbi-vdb"))
5573 (string-append "--with-ngs-sdk-prefix="
5574 (assoc-ref inputs "ngs-sdk"))
5575 (string-append "--with-hdf5-prefix="
5576 (assoc-ref inputs "hdf5"))))))
5577 ;; This version of sra-tools fails to build with glibc because of a
5578 ;; naming conflict. glibc-2.25/include/bits/mathcalls.h already
5579 ;; contains a definition of "canonicalize", so we rename it.
5580 ;;
5581 ;; See upstream bug report:
5582 ;; https://github.com/ncbi/sra-tools/issues/67
5583 (add-after 'unpack 'patch-away-glibc-conflict
5584 (lambda _
5585 (substitute* "tools/bam-loader/bam.c"
5586 (("canonicalize\\(" line)
5587 (string-append "sra_tools_" line)))
5588 #t)))))
5589 (native-inputs `(("perl" ,perl)))
5590 (inputs
5591 `(("ngs-sdk" ,ngs-sdk)
5592 ("ncbi-vdb" ,ncbi-vdb)
5593 ("libmagic" ,file)
5594 ("fuse" ,fuse)
5595 ("hdf5" ,hdf5)
5596 ("zlib" ,zlib)))
5597 (home-page "http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software")
5598 (synopsis "Tools and libraries for reading and writing sequencing data")
5599 (description
5600 "The SRA Toolkit from NCBI is a collection of tools and libraries for
5601 reading of sequencing files from the Sequence Read Archive (SRA) database and
5602 writing files into the .sra format.")
5603 (license license:public-domain)))
5604
5605 (define-public seqan
5606 (package
5607 (name "seqan")
5608 (version "1.4.2")
5609 (source (origin
5610 (method url-fetch)
5611 (uri (string-append "http://packages.seqan.de/seqan-library/"
5612 "seqan-library-" version ".tar.bz2"))
5613 (sha256
5614 (base32
5615 "05s3wrrwn50f81aklfm65i4a749zag1vr8z03k21xm0pdxy47yvp"))))
5616 ;; The documentation is 7.8MB and the includes are 3.6MB heavy, so it
5617 ;; makes sense to split the outputs.
5618 (outputs '("out" "doc"))
5619 (build-system trivial-build-system)
5620 (arguments
5621 `(#:modules ((guix build utils))
5622 #:builder
5623 (begin
5624 (use-modules (guix build utils))
5625 (let ((tar (assoc-ref %build-inputs "tar"))
5626 (bzip (assoc-ref %build-inputs "bzip2"))
5627 (out (assoc-ref %outputs "out"))
5628 (doc (assoc-ref %outputs "doc")))
5629 (setenv "PATH" (string-append tar "/bin:" bzip "/bin"))
5630 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
5631 (chdir (string-append "seqan-library-" ,version))
5632 (copy-recursively "include" (string-append out "/include"))
5633 (copy-recursively "share" (string-append doc "/share"))))))
5634 (native-inputs
5635 `(("source" ,source)
5636 ("tar" ,tar)
5637 ("bzip2" ,bzip2)))
5638 (home-page "http://www.seqan.de")
5639 (synopsis "Library for nucleotide sequence analysis")
5640 (description
5641 "SeqAn is a C++ library of efficient algorithms and data structures for
5642 the analysis of sequences with the focus on biological data. It contains
5643 algorithms and data structures for string representation and their
5644 manipulation, online and indexed string search, efficient I/O of
5645 bioinformatics file formats, sequence alignment, and more.")
5646 (license license:bsd-3)))
5647
5648 (define-public seqmagick
5649 (package
5650 (name "seqmagick")
5651 (version "0.7.0")
5652 (source
5653 (origin
5654 (method url-fetch)
5655 (uri (pypi-uri "seqmagick" version))
5656 (sha256
5657 (base32
5658 "12bfyp8nqi0hd36rmj450aygafp01qy3hkbvlwn3bk39pyjjkgg5"))))
5659 (build-system python-build-system)
5660 (inputs
5661 `(("python-biopython" ,python-biopython)))
5662 (native-inputs
5663 `(("python-nose" ,python-nose)))
5664 (home-page "https://github.com/fhcrc/seqmagick")
5665 (synopsis "Tools for converting and modifying sequence files")
5666 (description
5667 "Bioinformaticians often have to convert sequence files between formats
5668 and do little manipulations on them, and it's not worth writing scripts for
5669 that. Seqmagick is a utility to expose the file format conversion in
5670 BioPython in a convenient way. Instead of having a big mess of scripts, there
5671 is one that takes arguments.")
5672 (license license:gpl3)))
5673
5674 (define-public seqtk
5675 (package
5676 (name "seqtk")
5677 (version "1.2")
5678 (source (origin
5679 (method url-fetch)
5680 (uri (string-append
5681 "https://github.com/lh3/seqtk/archive/v"
5682 version ".tar.gz"))
5683 (file-name (string-append name "-" version ".tar.gz"))
5684 (sha256
5685 (base32
5686 "0ywdyzpmfiz2wp6ampbzqg4y8bj450nfgqarpamg045b8mk32lxx"))
5687 (modules '((guix build utils)))
5688 (snippet
5689 '(begin
5690 ;; Remove extraneous header files, as is done in the seqtk
5691 ;; master branch.
5692 (for-each (lambda (file) (delete-file file))
5693 (list "ksort.h" "kstring.h" "kvec.h"))
5694 #t))))
5695 (build-system gnu-build-system)
5696 (arguments
5697 `(#:phases
5698 (modify-phases %standard-phases
5699 (delete 'configure)
5700 (replace 'check
5701 ;; There are no tests, so we just run a sanity check.
5702 (lambda _ (zero? (system* "./seqtk" "seq"))))
5703 (replace 'install
5704 (lambda* (#:key outputs #:allow-other-keys)
5705 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
5706 (install-file "seqtk" bin)))))))
5707 (inputs
5708 `(("zlib" ,zlib)))
5709 (home-page "https://github.com/lh3/seqtk")
5710 (synopsis "Toolkit for processing biological sequences in FASTA/Q format")
5711 (description
5712 "Seqtk is a fast and lightweight tool for processing sequences in the
5713 FASTA or FASTQ format. It parses both FASTA and FASTQ files which can be
5714 optionally compressed by gzip.")
5715 (license license:expat)))
5716
5717 (define-public snap-aligner
5718 (package
5719 (name "snap-aligner")
5720 (version "1.0beta.18")
5721 (source (origin
5722 (method url-fetch)
5723 (uri (string-append
5724 "https://github.com/amplab/snap/archive/v"
5725 version ".tar.gz"))
5726 (file-name (string-append name "-" version ".tar.gz"))
5727 (sha256
5728 (base32
5729 "1vnsjwv007k1fl1q7d681kbwn6bc66cgw6h16hym6gvyy71qv2ly"))))
5730 (build-system gnu-build-system)
5731 (arguments
5732 '(#:phases
5733 (modify-phases %standard-phases
5734 (delete 'configure)
5735 (replace 'check (lambda _ (zero? (system* "./unit_tests"))))
5736 (replace 'install
5737 (lambda* (#:key outputs #:allow-other-keys)
5738 (let* ((out (assoc-ref outputs "out"))
5739 (bin (string-append out "/bin")))
5740 (install-file "snap-aligner" bin)
5741 (install-file "SNAPCommand" bin)
5742 #t))))))
5743 (native-inputs
5744 `(("zlib" ,zlib)))
5745 (home-page "http://snap.cs.berkeley.edu/")
5746 (synopsis "Short read DNA sequence aligner")
5747 (description
5748 "SNAP is a fast and accurate aligner for short DNA reads. It is
5749 optimized for modern read lengths of 100 bases or higher, and takes advantage
5750 of these reads to align data quickly through a hash-based indexing scheme.")
5751 ;; 32-bit systems are not supported by the unpatched code.
5752 ;; Following the bug reports https://github.com/amplab/snap/issues/68 and
5753 ;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812378 we see that
5754 ;; systems without a lot of memory cannot make good use of this program.
5755 (supported-systems '("x86_64-linux"))
5756 (license license:asl2.0)))
5757
5758 (define-public sortmerna
5759 (package
5760 (name "sortmerna")
5761 (version "2.1b")
5762 (source
5763 (origin
5764 (method url-fetch)
5765 (uri (string-append
5766 "https://github.com/biocore/sortmerna/archive/"
5767 version ".tar.gz"))
5768 (file-name (string-append name "-" version ".tar.gz"))
5769 (sha256
5770 (base32
5771 "1ghaghvd82af9j5adavxh77g7hm247d1r69m3fbi6f1jdivj5ldk"))))
5772 (build-system gnu-build-system)
5773 (outputs '("out" ;for binaries
5774 "db")) ;for sequence databases
5775 (arguments
5776 `(#:phases
5777 (modify-phases %standard-phases
5778 (replace 'install
5779 (lambda* (#:key outputs #:allow-other-keys)
5780 (let* ((out (assoc-ref outputs "out"))
5781 (bin (string-append out "/bin"))
5782 (db (assoc-ref outputs "db"))
5783 (share
5784 (string-append db "/share/sortmerna/rRNA_databases")))
5785 (install-file "sortmerna" bin)
5786 (install-file "indexdb_rna" bin)
5787 (for-each (lambda (file)
5788 (install-file file share))
5789 (find-files "rRNA_databases" ".*fasta"))
5790 #t))))))
5791 (inputs
5792 `(("zlib" ,zlib)))
5793 (home-page "http://bioinfo.lifl.fr/RNA/sortmerna")
5794 (synopsis "Biological sequence analysis tool for NGS reads")
5795 (description
5796 "SortMeRNA is a biological sequence analysis tool for filtering, mapping
5797 and operational taxonomic unit (OTU) picking of next generation
5798 sequencing (NGS) reads. The core algorithm is based on approximate seeds and
5799 allows for fast and sensitive analyses of nucleotide sequences. The main
5800 application of SortMeRNA is filtering rRNA from metatranscriptomic data.")
5801 ;; The source includes x86 specific code
5802 (supported-systems '("x86_64-linux" "i686-linux"))
5803 (license license:lgpl3)))
5804
5805 (define-public star
5806 (package
5807 (name "star")
5808 (version "2.6.0a")
5809 (source (origin
5810 (method url-fetch)
5811 (uri (string-append "https://github.com/alexdobin/STAR/archive/"
5812 version ".tar.gz"))
5813 (file-name (string-append name "-" version ".tar.gz"))
5814 (sha256
5815 (base32
5816 "0yci4ymy4407kjh0lqp021nzccp6r31wgrkixkmix5p130cxvc56"))
5817 (modules '((guix build utils)))
5818 (snippet
5819 '(begin
5820 (substitute* "source/Makefile"
5821 (("/bin/rm") "rm"))
5822 ;; Remove pre-built binaries and bundled htslib sources.
5823 (delete-file-recursively "bin/MacOSX_x86_64")
5824 (delete-file-recursively "bin/Linux_x86_64")
5825 (delete-file-recursively "bin/Linux_x86_64_static")
5826 (delete-file-recursively "source/htslib")
5827 #t))))
5828 (build-system gnu-build-system)
5829 (arguments
5830 '(#:tests? #f ;no check target
5831 #:make-flags '("STAR")
5832 #:phases
5833 (modify-phases %standard-phases
5834 (add-after 'unpack 'enter-source-dir
5835 (lambda _ (chdir "source") #t))
5836 (add-after 'enter-source-dir 'make-reproducible
5837 (lambda _
5838 (substitute* "Makefile"
5839 (("(COMPILATION_TIME_PLACE=\")(.*)(\")" _ pre mid post)
5840 (string-append pre "Built with Guix" post)))))
5841 (add-after 'enter-source-dir 'do-not-use-bundled-htslib
5842 (lambda _
5843 (substitute* "Makefile"
5844 (("(Depend.list: \\$\\(SOURCES\\) parametersDefault\\.xxd) htslib"
5845 _ prefix) prefix))
5846 (substitute* '("BAMfunctions.cpp"
5847 "signalFromBAM.h"
5848 "bam_cat.h"
5849 "bam_cat.c"
5850 "STAR.cpp"
5851 "bamRemoveDuplicates.cpp")
5852 (("#include \"htslib/([^\"]+\\.h)\"" _ header)
5853 (string-append "#include <" header ">")))
5854 (substitute* "IncludeDefine.h"
5855 (("\"htslib/(htslib/[^\"]+.h)\"" _ header)
5856 (string-append "<" header ">")))
5857 #t))
5858 (replace 'install
5859 (lambda* (#:key outputs #:allow-other-keys)
5860 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
5861 (install-file "STAR" bin))
5862 #t))
5863 (delete 'configure))))
5864 (native-inputs
5865 `(("xxd" ,xxd)))
5866 (inputs
5867 `(("htslib" ,htslib)
5868 ("zlib" ,zlib)))
5869 (home-page "https://github.com/alexdobin/STAR")
5870 (synopsis "Universal RNA-seq aligner")
5871 (description
5872 "The Spliced Transcripts Alignment to a Reference (STAR) software is
5873 based on a previously undescribed RNA-seq alignment algorithm that uses
5874 sequential maximum mappable seed search in uncompressed suffix arrays followed
5875 by seed clustering and stitching procedure. In addition to unbiased de novo
5876 detection of canonical junctions, STAR can discover non-canonical splices and
5877 chimeric (fusion) transcripts, and is also capable of mapping full-length RNA
5878 sequences.")
5879 ;; Only 64-bit systems are supported according to the README.
5880 (supported-systems '("x86_64-linux" "mips64el-linux"))
5881 ;; STAR is licensed under GPLv3 or later; htslib is MIT-licensed.
5882 (license license:gpl3+)))
5883
5884 (define-public subread
5885 (package
5886 (name "subread")
5887 (version "1.6.0")
5888 (source (origin
5889 (method url-fetch)
5890 (uri (string-append "mirror://sourceforge/subread/subread-"
5891 version "/subread-" version "-source.tar.gz"))
5892 (sha256
5893 (base32
5894 "0ah0n4jx6ksk2m2j7xk385x2qzmk1y4rfc6a4mfrdqrlq721w99i"))))
5895 (build-system gnu-build-system)
5896 (arguments
5897 `(#:tests? #f ;no "check" target
5898 ;; The CC and CCFLAGS variables are set to contain a lot of x86_64
5899 ;; optimizations by default, so we override these flags such that x86_64
5900 ;; flags are only added when the build target is an x86_64 system.
5901 #:make-flags
5902 (list (let ((system ,(or (%current-target-system)
5903 (%current-system)))
5904 (flags '("-ggdb" "-fomit-frame-pointer"
5905 "-ffast-math" "-funroll-loops"
5906 "-fmessage-length=0"
5907 "-O9" "-Wall" "-DMAKE_FOR_EXON"
5908 "-DMAKE_STANDALONE"
5909 "-DSUBREAD_VERSION=\\\"${SUBREAD_VERSION}\\\""))
5910 (flags64 '("-mmmx" "-msse" "-msse2" "-msse3")))
5911 (if (string-prefix? "x86_64" system)
5912 (string-append "CCFLAGS=" (string-join (append flags flags64)))
5913 (string-append "CCFLAGS=" (string-join flags))))
5914 "-f" "Makefile.Linux"
5915 "CC=gcc ${CCFLAGS}")
5916 #:phases
5917 (modify-phases %standard-phases
5918 (add-after 'unpack 'enter-dir
5919 (lambda _ (chdir "src") #t))
5920 (replace 'install
5921 (lambda* (#:key outputs #:allow-other-keys)
5922 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
5923 (mkdir-p bin)
5924 (copy-recursively "../bin" bin))))
5925 ;; no "configure" script
5926 (delete 'configure))))
5927 (inputs `(("zlib" ,zlib)))
5928 (home-page "http://bioinf.wehi.edu.au/subread-package/")
5929 (synopsis "Tool kit for processing next-gen sequencing data")
5930 (description
5931 "The subread package contains the following tools: subread aligner, a
5932 general-purpose read aligner; subjunc aligner: detecting exon-exon junctions
5933 and mapping RNA-seq reads; featureCounts: counting mapped reads for genomic
5934 features; exactSNP: a SNP caller that discovers SNPs by testing signals
5935 against local background noises.")
5936 (license license:gpl3+)))
5937
5938 (define-public stringtie
5939 (package
5940 (name "stringtie")
5941 (version "1.2.1")
5942 (source (origin
5943 (method url-fetch)
5944 (uri (string-append "http://ccb.jhu.edu/software/stringtie/dl/"
5945 "stringtie-" version ".tar.gz"))
5946 (sha256
5947 (base32
5948 "1cqllsc1maq4kh92isi8yadgzbmnf042hlnalpk3y59aph1z3bfz"))
5949 (modules '((guix build utils)))
5950 (snippet
5951 '(begin
5952 (delete-file-recursively "samtools-0.1.18")
5953 #t))))
5954 (build-system gnu-build-system)
5955 (arguments
5956 `(#:tests? #f ;no test suite
5957 #:phases
5958 (modify-phases %standard-phases
5959 ;; no configure script
5960 (delete 'configure)
5961 (add-before 'build 'use-system-samtools
5962 (lambda _
5963 (substitute* "Makefile"
5964 (("stringtie: \\$\\{BAM\\}/libbam\\.a")
5965 "stringtie: "))
5966 (substitute* '("gclib/GBam.h"
5967 "gclib/GBam.cpp")
5968 (("#include \"(bam|sam|kstring).h\"" _ header)
5969 (string-append "#include <samtools/" header ".h>")))
5970 #t))
5971 (add-after 'unpack 'remove-duplicate-typedef
5972 (lambda _
5973 ;; This typedef conflicts with the typedef in
5974 ;; glibc-2.25/include/bits/types.h
5975 (substitute* "gclib/GThreads.h"
5976 (("typedef long long __intmax_t;") ""))
5977 #t))
5978 (replace 'install
5979 (lambda* (#:key outputs #:allow-other-keys)
5980 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
5981 (install-file "stringtie" bin)
5982 #t))))))
5983 (inputs
5984 `(("samtools" ,samtools-0.1)
5985 ("zlib" ,zlib)))
5986 (home-page "http://ccb.jhu.edu/software/stringtie/")
5987 (synopsis "Transcript assembly and quantification for RNA-Seq data")
5988 (description
5989 "StringTie is a fast and efficient assembler of RNA-Seq sequence
5990 alignments into potential transcripts. It uses a novel network flow algorithm
5991 as well as an optional de novo assembly step to assemble and quantitate
5992 full-length transcripts representing multiple splice variants for each gene
5993 locus. Its input can include not only the alignments of raw reads used by
5994 other transcript assemblers, but also alignments of longer sequences that have
5995 been assembled from those reads. To identify differentially expressed genes
5996 between experiments, StringTie's output can be processed either by the
5997 Cuffdiff or Ballgown programs.")
5998 (license license:artistic2.0)))
5999
6000 (define-public taxtastic
6001 (package
6002 (name "taxtastic")
6003 (version "0.8.5")
6004 (source (origin
6005 (method url-fetch)
6006 (uri (pypi-uri "taxtastic" version))
6007 (sha256
6008 (base32
6009 "03pysw79lsrvz4lwzis88j15067ffqbi4cid5pqhrlxmd6bh8rrk"))))
6010 (build-system python-build-system)
6011 (arguments
6012 `(#:python ,python-2
6013 #:phases
6014 (modify-phases %standard-phases
6015 (replace 'check
6016 (lambda _
6017 (zero? (system* "python" "-m" "unittest" "discover" "-v")))))))
6018 (propagated-inputs
6019 `(("python-sqlalchemy" ,python2-sqlalchemy)
6020 ("python-decorator" ,python2-decorator)
6021 ("python-biopython" ,python2-biopython)
6022 ("python-pandas" ,python2-pandas)))
6023 (home-page "https://github.com/fhcrc/taxtastic")
6024 (synopsis "Tools for taxonomic naming and annotation")
6025 (description
6026 "Taxtastic is software written in python used to build and maintain
6027 reference packages i.e. collections of reference trees, reference alignments,
6028 profiles, and associated taxonomic information.")
6029 (license license:gpl3+)))
6030
6031 (define-public vcftools
6032 (package
6033 (name "vcftools")
6034 (version "0.1.15")
6035 (source (origin
6036 (method url-fetch)
6037 (uri (string-append
6038 "https://github.com/vcftools/vcftools/releases/download/v"
6039 version "/vcftools-" version ".tar.gz"))
6040 (sha256
6041 (base32
6042 "1qw30c45wihgy632rbz4rh3njnwj4msj46l1rsgdhyg6bgypmr1i"))))
6043 (build-system gnu-build-system)
6044 (arguments
6045 `(#:tests? #f ; no "check" target
6046 #:make-flags (list
6047 "CFLAGS=-O2" ; override "-m64" flag
6048 (string-append "PREFIX=" (assoc-ref %outputs "out"))
6049 (string-append "MANDIR=" (assoc-ref %outputs "out")
6050 "/share/man/man1"))))
6051 (native-inputs
6052 `(("pkg-config" ,pkg-config)))
6053 (inputs
6054 `(("perl" ,perl)
6055 ("zlib" ,zlib)))
6056 (home-page "https://vcftools.github.io/")
6057 (synopsis "Tools for working with VCF files")
6058 (description
6059 "VCFtools is a program package designed for working with VCF files, such
6060 as those generated by the 1000 Genomes Project. The aim of VCFtools is to
6061 provide easily accessible methods for working with complex genetic variation
6062 data in the form of VCF files.")
6063 ;; The license is declared as LGPLv3 in the README and
6064 ;; at https://vcftools.github.io/license.html
6065 (license license:lgpl3)))
6066
6067 (define-public infernal
6068 (package
6069 (name "infernal")
6070 (version "1.1.2")
6071 (source (origin
6072 (method url-fetch)
6073 (uri (string-append "http://eddylab.org/software/infernal/"
6074 "infernal-" version ".tar.gz"))
6075 (sha256
6076 (base32
6077 "0sr2hiz3qxfwqpz3whxr6n82p3x27336v3f34iqznp10hks2935c"))))
6078 (build-system gnu-build-system)
6079 (native-inputs
6080 `(("perl" ,perl))) ; for tests
6081 (home-page "http://eddylab.org/infernal/")
6082 (synopsis "Inference of RNA alignments")
6083 (description "Infernal (\"INFERence of RNA ALignment\") is a tool for
6084 searching DNA sequence databases for RNA structure and sequence similarities.
6085 It is an implementation of a special case of profile stochastic context-free
6086 grammars called @dfn{covariance models} (CMs). A CM is like a sequence
6087 profile, but it scores a combination of sequence consensus and RNA secondary
6088 structure consensus, so in many cases, it is more capable of identifying RNA
6089 homologs that conserve their secondary structure more than their primary
6090 sequence.")
6091 ;; Infernal 1.1.2 requires VMX or SSE capability for parallel instructions.
6092 (supported-systems '("i686-linux" "x86_64-linux"))
6093 (license license:bsd-3)))
6094
6095 (define-public r-centipede
6096 (package
6097 (name "r-centipede")
6098 (version "1.2")
6099 (source (origin
6100 (method url-fetch)
6101 (uri (string-append "http://download.r-forge.r-project.org/"
6102 "src/contrib/CENTIPEDE_" version ".tar.gz"))
6103 (sha256
6104 (base32
6105 "1hsx6qgwr0i67fhy9257zj7s0ppncph2hjgbia5nn6nfmj0ax6l9"))))
6106 (build-system r-build-system)
6107 (home-page "http://centipede.uchicago.edu/")
6108 (synopsis "Predict transcription factor binding sites")
6109 (description
6110 "CENTIPEDE applies a hierarchical Bayesian mixture model to infer regions
6111 of the genome that are bound by particular transcription factors. It starts
6112 by identifying a set of candidate binding sites, and then aims to classify the
6113 sites according to whether each site is bound or not bound by a transcription
6114 factor. CENTIPEDE is an unsupervised learning algorithm that discriminates
6115 between two different types of motif instances using as much relevant
6116 information as possible.")
6117 (license (list license:gpl2+ license:gpl3+))))
6118
6119 (define-public r-vegan
6120 (package
6121 (name "r-vegan")
6122 (version "2.5-2")
6123 (source
6124 (origin
6125 (method url-fetch)
6126 (uri (cran-uri "vegan" version))
6127 (sha256
6128 (base32
6129 "13pyqvlpz64qibi8k5d109v7q09j06mbv6ndix3n4cn21mjx391c"))))
6130 (build-system r-build-system)
6131 (native-inputs
6132 `(("gfortran" ,gfortran)))
6133 (propagated-inputs
6134 `(("r-cluster" ,r-cluster)
6135 ("r-knitr" ,r-knitr) ; needed for vignettes
6136 ("r-lattice" ,r-lattice)
6137 ("r-mass" ,r-mass)
6138 ("r-mgcv" ,r-mgcv)
6139 ("r-permute" ,r-permute)))
6140 (home-page "https://cran.r-project.org/web/packages/vegan")
6141 (synopsis "Functions for community ecology")
6142 (description
6143 "The vegan package provides tools for descriptive community ecology. It
6144 has most basic functions of diversity analysis, community ordination and
6145 dissimilarity analysis. Most of its multivariate tools can be used for other
6146 data types as well.")
6147 (license license:gpl2+)))
6148
6149 (define-public r-annotate
6150 (package
6151 (name "r-annotate")
6152 (version "1.58.0")
6153 (source
6154 (origin
6155 (method url-fetch)
6156 (uri (bioconductor-uri "annotate" version))
6157 (sha256
6158 (base32
6159 "1qmncyvy147a1ll3iri45p822kcs3s7583jfnq9jf6sz9ilk8cjf"))))
6160 (build-system r-build-system)
6161 (propagated-inputs
6162 `(("r-annotationdbi" ,r-annotationdbi)
6163 ("r-biobase" ,r-biobase)
6164 ("r-biocgenerics" ,r-biocgenerics)
6165 ("r-dbi" ,r-dbi)
6166 ("r-rcurl" ,r-rcurl)
6167 ("r-xml" ,r-xml)
6168 ("r-xtable" ,r-xtable)))
6169 (home-page
6170 "https://bioconductor.org/packages/annotate")
6171 (synopsis "Annotation for microarrays")
6172 (description "This package provides R environments for the annotation of
6173 microarrays.")
6174 (license license:artistic2.0)))
6175
6176 (define-public r-copynumber
6177 (package
6178 (name "r-copynumber")
6179 (version "1.20.0")
6180 (source (origin
6181 (method url-fetch)
6182 (uri (bioconductor-uri "copynumber" version))
6183 (sha256
6184 (base32
6185 "0y9nnwb0psphp3ix88wj2f8z5gr45r5znf55w892ysm27isdpmms"))))
6186 (build-system r-build-system)
6187 (propagated-inputs
6188 `(("r-s4vectors" ,r-s4vectors)
6189 ("r-iranges" ,r-iranges)
6190 ("r-genomicranges" ,r-genomicranges)
6191 ("r-biocgenerics" ,r-biocgenerics)))
6192 (home-page "https://bioconductor.org/packages/copynumber")
6193 (synopsis "Segmentation of single- and multi-track copy number data")
6194 (description
6195 "This package segments single- and multi-track copy number data by a
6196 penalized least squares regression method.")
6197 (license license:artistic2.0)))
6198
6199 (define-public r-geneplotter
6200 (package
6201 (name "r-geneplotter")
6202 (version "1.58.0")
6203 (source
6204 (origin
6205 (method url-fetch)
6206 (uri (bioconductor-uri "geneplotter" version))
6207 (sha256
6208 (base32
6209 "055g28xgiazl4l0gkg8xiamks64f5yckjjyvw1abd6d6qjavwx0g"))))
6210 (build-system r-build-system)
6211 (propagated-inputs
6212 `(("r-annotate" ,r-annotate)
6213 ("r-annotationdbi" ,r-annotationdbi)
6214 ("r-biobase" ,r-biobase)
6215 ("r-biocgenerics" ,r-biocgenerics)
6216 ("r-lattice" ,r-lattice)
6217 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6218 (home-page "https://bioconductor.org/packages/geneplotter")
6219 (synopsis "Graphics functions for genomic data")
6220 (description
6221 "This package provides functions for plotting genomic data.")
6222 (license license:artistic2.0)))
6223
6224 (define-public r-genefilter
6225 (package
6226 (name "r-genefilter")
6227 (version "1.62.0")
6228 (source
6229 (origin
6230 (method url-fetch)
6231 (uri (bioconductor-uri "genefilter" version))
6232 (sha256
6233 (base32
6234 "14l0ff02spmjwxj0m1czhg5vlkgwcfi73cym8m2n9vn6i7bjdaqi"))))
6235 (build-system r-build-system)
6236 (native-inputs
6237 `(("gfortran" ,gfortran)))
6238 (propagated-inputs
6239 `(("r-annotate" ,r-annotate)
6240 ("r-annotationdbi" ,r-annotationdbi)
6241 ("r-biobase" ,r-biobase)
6242 ("r-s4vectors" ,r-s4vectors)
6243 ("r-survival" ,r-survival)))
6244 (home-page "https://bioconductor.org/packages/genefilter")
6245 (synopsis "Filter genes from high-throughput experiments")
6246 (description
6247 "This package provides basic functions for filtering genes from
6248 high-throughput sequencing experiments.")
6249 (license license:artistic2.0)))
6250
6251 (define-public r-deseq2
6252 (package
6253 (name "r-deseq2")
6254 (version "1.20.0")
6255 (source
6256 (origin
6257 (method url-fetch)
6258 (uri (bioconductor-uri "DESeq2" version))
6259 (sha256
6260 (base32
6261 "1wjnfpb41a9mmf9a22bz4zh7r1d4id50vpdc1mn5vfzrz7li9qik"))))
6262 (properties `((upstream-name . "DESeq2")))
6263 (build-system r-build-system)
6264 (propagated-inputs
6265 `(("r-biobase" ,r-biobase)
6266 ("r-biocgenerics" ,r-biocgenerics)
6267 ("r-biocparallel" ,r-biocparallel)
6268 ("r-genefilter" ,r-genefilter)
6269 ("r-geneplotter" ,r-geneplotter)
6270 ("r-genomicranges" ,r-genomicranges)
6271 ("r-ggplot2" ,r-ggplot2)
6272 ("r-hmisc" ,r-hmisc)
6273 ("r-iranges" ,r-iranges)
6274 ("r-locfit" ,r-locfit)
6275 ("r-rcpp" ,r-rcpp)
6276 ("r-rcpparmadillo" ,r-rcpparmadillo)
6277 ("r-s4vectors" ,r-s4vectors)
6278 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6279 (home-page "https://bioconductor.org/packages/DESeq2")
6280 (synopsis "Differential gene expression analysis")
6281 (description
6282 "This package provides functions to estimate variance-mean dependence in
6283 count data from high-throughput nucleotide sequencing assays and test for
6284 differential expression based on a model using the negative binomial
6285 distribution.")
6286 (license license:lgpl3+)))
6287
6288 (define-public r-dexseq
6289 (package
6290 (name "r-dexseq")
6291 (version "1.26.0")
6292 (source
6293 (origin
6294 (method url-fetch)
6295 (uri (bioconductor-uri "DEXSeq" version))
6296 (sha256
6297 (base32
6298 "1mqb3mdxcsi3largsl7k27bvqrgps9ixv806xvmf29pw0xn05sg1"))))
6299 (properties `((upstream-name . "DEXSeq")))
6300 (build-system r-build-system)
6301 (propagated-inputs
6302 `(("r-annotationdbi" ,r-annotationdbi)
6303 ("r-biobase" ,r-biobase)
6304 ("r-biocgenerics" ,r-biocgenerics)
6305 ("r-biocparallel" ,r-biocparallel)
6306 ("r-biomart" ,r-biomart)
6307 ("r-deseq2" ,r-deseq2)
6308 ("r-genefilter" ,r-genefilter)
6309 ("r-geneplotter" ,r-geneplotter)
6310 ("r-genomicranges" ,r-genomicranges)
6311 ("r-hwriter" ,r-hwriter)
6312 ("r-iranges" ,r-iranges)
6313 ("r-rcolorbrewer" ,r-rcolorbrewer)
6314 ("r-rsamtools" ,r-rsamtools)
6315 ("r-s4vectors" ,r-s4vectors)
6316 ("r-statmod" ,r-statmod)
6317 ("r-stringr" ,r-stringr)
6318 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6319 (home-page "https://bioconductor.org/packages/DEXSeq")
6320 (synopsis "Inference of differential exon usage in RNA-Seq")
6321 (description
6322 "This package is focused on finding differential exon usage using RNA-seq
6323 exon counts between samples with different experimental designs. It provides
6324 functions that allows the user to make the necessary statistical tests based
6325 on a model that uses the negative binomial distribution to estimate the
6326 variance between biological replicates and generalized linear models for
6327 testing. The package also provides functions for the visualization and
6328 exploration of the results.")
6329 (license license:gpl3+)))
6330
6331 (define-public r-annotationforge
6332 (package
6333 (name "r-annotationforge")
6334 (version "1.22.0")
6335 (source
6336 (origin
6337 (method url-fetch)
6338 (uri (bioconductor-uri "AnnotationForge" version))
6339 (sha256
6340 (base32
6341 "12ffj7h95adiya5mzyjxazqn1qgr434ajpabfcyhrj5v83s4vk65"))))
6342 (properties
6343 `((upstream-name . "AnnotationForge")))
6344 (build-system r-build-system)
6345 (propagated-inputs
6346 `(("r-annotationdbi" ,r-annotationdbi)
6347 ("r-biobase" ,r-biobase)
6348 ("r-biocgenerics" ,r-biocgenerics)
6349 ("r-dbi" ,r-dbi)
6350 ("r-rcurl" ,r-rcurl)
6351 ("r-rsqlite" ,r-rsqlite)
6352 ("r-s4vectors" ,r-s4vectors)
6353 ("r-xml" ,r-xml)))
6354 (home-page "https://bioconductor.org/packages/AnnotationForge")
6355 (synopsis "Code for building annotation database packages")
6356 (description
6357 "This package provides code for generating Annotation packages and their
6358 databases. Packages produced are intended to be used with AnnotationDbi.")
6359 (license license:artistic2.0)))
6360
6361 (define-public r-rbgl
6362 (package
6363 (name "r-rbgl")
6364 (version "1.56.0")
6365 (source
6366 (origin
6367 (method url-fetch)
6368 (uri (bioconductor-uri "RBGL" version))
6369 (sha256
6370 (base32
6371 "0hj972mmqpyi5fx1rq33kysavdyz4nspi6gcffzi3rv339m0anhf"))))
6372 (properties `((upstream-name . "RBGL")))
6373 (build-system r-build-system)
6374 (propagated-inputs `(("r-graph" ,r-graph)))
6375 (home-page "https://www.bioconductor.org/packages/RBGL")
6376 (synopsis "Interface to the Boost graph library")
6377 (description
6378 "This package provides a fairly extensive and comprehensive interface to
6379 the graph algorithms contained in the Boost library.")
6380 (license license:artistic2.0)))
6381
6382 (define-public r-gseabase
6383 (package
6384 (name "r-gseabase")
6385 (version "1.42.0")
6386 (source
6387 (origin
6388 (method url-fetch)
6389 (uri (bioconductor-uri "GSEABase" version))
6390 (sha256
6391 (base32
6392 "11bv92svik399q677jv96b71i4bq68xxyxn1yijpdik2lq4hgl7a"))))
6393 (properties `((upstream-name . "GSEABase")))
6394 (build-system r-build-system)
6395 (propagated-inputs
6396 `(("r-annotate" ,r-annotate)
6397 ("r-annotationdbi" ,r-annotationdbi)
6398 ("r-biobase" ,r-biobase)
6399 ("r-biocgenerics" ,r-biocgenerics)
6400 ("r-graph" ,r-graph)
6401 ("r-xml" ,r-xml)))
6402 (home-page "https://bioconductor.org/packages/GSEABase")
6403 (synopsis "Gene set enrichment data structures and methods")
6404 (description
6405 "This package provides classes and methods to support @dfn{Gene Set
6406 Enrichment Analysis} (GSEA).")
6407 (license license:artistic2.0)))
6408
6409 (define-public r-category
6410 (package
6411 (name "r-category")
6412 (version "2.46.0")
6413 (source
6414 (origin
6415 (method url-fetch)
6416 (uri (bioconductor-uri "Category" version))
6417 (sha256
6418 (base32
6419 "03wfqa8d1dgwsm327zl2mpkq7dq3mzhq12598qz3ylfhrwplbgx0"))))
6420 (properties `((upstream-name . "Category")))
6421 (build-system r-build-system)
6422 (propagated-inputs
6423 `(("r-annotate" ,r-annotate)
6424 ("r-annotationdbi" ,r-annotationdbi)
6425 ("r-biobase" ,r-biobase)
6426 ("r-biocgenerics" ,r-biocgenerics)
6427 ("r-genefilter" ,r-genefilter)
6428 ("r-graph" ,r-graph)
6429 ("r-gseabase" ,r-gseabase)
6430 ("r-matrix" ,r-matrix)
6431 ("r-rbgl" ,r-rbgl)
6432 ("r-dbi" ,r-dbi)))
6433 (home-page "https://bioconductor.org/packages/Category")
6434 (synopsis "Category analysis")
6435 (description
6436 "This package provides a collection of tools for performing category
6437 analysis.")
6438 (license license:artistic2.0)))
6439
6440 (define-public r-gostats
6441 (package
6442 (name "r-gostats")
6443 (version "2.46.0")
6444 (source
6445 (origin
6446 (method url-fetch)
6447 (uri (bioconductor-uri "GOstats" version))
6448 (sha256
6449 (base32
6450 "1i5mydz5d95w2k28qr9j01hmbnl2id55jq94jvcpcyp1pvinkdq0"))))
6451 (properties `((upstream-name . "GOstats")))
6452 (build-system r-build-system)
6453 (propagated-inputs
6454 `(("r-annotate" ,r-annotate)
6455 ("r-annotationdbi" ,r-annotationdbi)
6456 ("r-annotationforge" ,r-annotationforge)
6457 ("r-biobase" ,r-biobase)
6458 ("r-category" ,r-category)
6459 ("r-go-db" ,r-go-db)
6460 ("r-graph" ,r-graph)
6461 ("r-rgraphviz" ,r-rgraphviz)
6462 ("r-rbgl" ,r-rbgl)))
6463 (home-page "https://bioconductor.org/packages/GOstats")
6464 (synopsis "Tools for manipulating GO and microarrays")
6465 (description
6466 "This package provides a set of tools for interacting with GO and
6467 microarray data. A variety of basic manipulation tools for graphs, hypothesis
6468 testing and other simple calculations.")
6469 (license license:artistic2.0)))
6470
6471 (define-public r-shortread
6472 (package
6473 (name "r-shortread")
6474 (version "1.38.0")
6475 (source
6476 (origin
6477 (method url-fetch)
6478 (uri (bioconductor-uri "ShortRead" version))
6479 (sha256
6480 (base32
6481 "038z3z7qaw5bpgjzy91sjkybsny6jwjjsrnnq4gdqdw9ss1qy1fb"))))
6482 (properties `((upstream-name . "ShortRead")))
6483 (build-system r-build-system)
6484 (inputs
6485 `(("zlib" ,zlib)))
6486 (propagated-inputs
6487 `(("r-biobase" ,r-biobase)
6488 ("r-biocgenerics" ,r-biocgenerics)
6489 ("r-biocparallel" ,r-biocparallel)
6490 ("r-biostrings" ,r-biostrings)
6491 ("r-genomeinfodb" ,r-genomeinfodb)
6492 ("r-genomicalignments" ,r-genomicalignments)
6493 ("r-genomicranges" ,r-genomicranges)
6494 ("r-hwriter" ,r-hwriter)
6495 ("r-iranges" ,r-iranges)
6496 ("r-lattice" ,r-lattice)
6497 ("r-latticeextra" ,r-latticeextra)
6498 ("r-rsamtools" ,r-rsamtools)
6499 ("r-s4vectors" ,r-s4vectors)
6500 ("r-xvector" ,r-xvector)
6501 ("r-zlibbioc" ,r-zlibbioc)))
6502 (home-page "https://bioconductor.org/packages/ShortRead")
6503 (synopsis "FASTQ input and manipulation tools")
6504 (description
6505 "This package implements sampling, iteration, and input of FASTQ files.
6506 It includes functions for filtering and trimming reads, and for generating a
6507 quality assessment report. Data are represented as
6508 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
6509 purposes. The package also contains legacy support for early single-end,
6510 ungapped alignment formats.")
6511 (license license:artistic2.0)))
6512
6513 (define-public r-systempiper
6514 (package
6515 (name "r-systempiper")
6516 (version "1.14.0")
6517 (source
6518 (origin
6519 (method url-fetch)
6520 (uri (bioconductor-uri "systemPipeR" version))
6521 (sha256
6522 (base32
6523 "1550pd63mmky0vgkmpni7zf14kqz1741wv63nfaw29kcmhh3m5lm"))))
6524 (properties `((upstream-name . "systemPipeR")))
6525 (build-system r-build-system)
6526 (propagated-inputs
6527 `(("r-annotate" ,r-annotate)
6528 ("r-batchjobs" ,r-batchjobs)
6529 ("r-biocgenerics" ,r-biocgenerics)
6530 ("r-biostrings" ,r-biostrings)
6531 ("r-deseq2" ,r-deseq2)
6532 ("r-edger" ,r-edger)
6533 ("r-genomicfeatures" ,r-genomicfeatures)
6534 ("r-genomicranges" ,r-genomicranges)
6535 ("r-ggplot2" ,r-ggplot2)
6536 ("r-go-db" ,r-go-db)
6537 ("r-gostats" ,r-gostats)
6538 ("r-limma" ,r-limma)
6539 ("r-pheatmap" ,r-pheatmap)
6540 ("r-rjson" ,r-rjson)
6541 ("r-rsamtools" ,r-rsamtools)
6542 ("r-shortread" ,r-shortread)
6543 ("r-summarizedexperiment" ,r-summarizedexperiment)
6544 ("r-variantannotation" ,r-variantannotation)))
6545 (home-page "https://github.com/tgirke/systemPipeR")
6546 (synopsis "Next generation sequencing workflow and reporting environment")
6547 (description
6548 "This R package provides tools for building and running automated
6549 end-to-end analysis workflows for a wide range of @dfn{next generation
6550 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
6551 Important features include a uniform workflow interface across different NGS
6552 applications, automated report generation, and support for running both R and
6553 command-line software, such as NGS aligners or peak/variant callers, on local
6554 computers or compute clusters. Efficient handling of complex sample sets and
6555 experimental designs is facilitated by a consistently implemented sample
6556 annotation infrastructure.")
6557 (license license:artistic2.0)))
6558
6559 (define-public r-grohmm
6560 (package
6561 (name "r-grohmm")
6562 (version "1.14.0")
6563 (source
6564 (origin
6565 (method url-fetch)
6566 (uri (bioconductor-uri "groHMM" version))
6567 (sha256
6568 (base32
6569 "1kjb14apyly44qdlx2ld6gr69wlazd4mbhs58l35hir12aphgrzp"))))
6570 (properties `((upstream-name . "groHMM")))
6571 (build-system r-build-system)
6572 (propagated-inputs
6573 `(("r-genomeinfodb" ,r-genomeinfodb)
6574 ("r-genomicalignments" ,r-genomicalignments)
6575 ("r-genomicranges" ,r-genomicranges)
6576 ("r-iranges" ,r-iranges)
6577 ("r-mass" ,r-mass)
6578 ("r-rtracklayer" ,r-rtracklayer)
6579 ("r-s4vectors" ,r-s4vectors)))
6580 (home-page "https://github.com/Kraus-Lab/groHMM")
6581 (synopsis "GRO-seq analysis pipeline")
6582 (description
6583 "This package provides a pipeline for the analysis of GRO-seq data.")
6584 (license license:gpl3+)))
6585
6586 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
6587 (package
6588 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
6589 (version "3.2.2")
6590 (source (origin
6591 (method url-fetch)
6592 ;; We cannot use bioconductor-uri here because this tarball is
6593 ;; located under "data/annotation/" instead of "bioc/".
6594 (uri (string-append "https://bioconductor.org/packages/"
6595 "release/data/annotation/src/contrib"
6596 "/TxDb.Hsapiens.UCSC.hg19.knownGene_"
6597 version ".tar.gz"))
6598 (sha256
6599 (base32
6600 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
6601 (properties
6602 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
6603 (build-system r-build-system)
6604 ;; As this package provides little more than a very large data file it
6605 ;; doesn't make sense to build substitutes.
6606 (arguments `(#:substitutable? #f))
6607 (propagated-inputs
6608 `(("r-genomicfeatures" ,r-genomicfeatures)))
6609 (home-page
6610 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
6611 (synopsis "Annotation package for human genome in TxDb format")
6612 (description
6613 "This package provides an annotation database of Homo sapiens genome
6614 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
6615 track. The database is exposed as a @code{TxDb} object.")
6616 (license license:artistic2.0)))
6617
6618 (define-public r-sparql
6619 (package
6620 (name "r-sparql")
6621 (version "1.16")
6622 (source (origin
6623 (method url-fetch)
6624 (uri (cran-uri "SPARQL" version))
6625 (sha256
6626 (base32
6627 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
6628 (properties `((upstream-name . "SPARQL")))
6629 (build-system r-build-system)
6630 (propagated-inputs
6631 `(("r-rcurl" ,r-rcurl)
6632 ("r-xml" ,r-xml)))
6633 (home-page "https://cran.r-project.org/web/packages/SPARQL")
6634 (synopsis "SPARQL client for R")
6635 (description "This package provides an interface to use SPARQL to pose
6636 SELECT or UPDATE queries to an end-point.")
6637 ;; The only license indication is found in the DESCRIPTION file,
6638 ;; which states GPL-3. So we cannot assume GPLv3+.
6639 (license license:gpl3)))
6640
6641 (define-public vsearch
6642 (package
6643 (name "vsearch")
6644 (version "2.8.0")
6645 (source
6646 (origin
6647 (method url-fetch)
6648 (uri (string-append
6649 "https://github.com/torognes/vsearch/archive/v"
6650 version ".tar.gz"))
6651 (file-name (string-append name "-" version ".tar.gz"))
6652 (sha256
6653 (base32
6654 "15pbirgzhvflj4pi5n82vybbzjy9mlb0lv5l3qhrmdkfzpbyahw3"))
6655 (patches (search-patches "vsearch-unbundle-cityhash.patch"))
6656 (snippet
6657 '(begin
6658 ;; Remove bundled cityhash sources. The vsearch source is adjusted
6659 ;; for this in the patch.
6660 (delete-file "src/city.h")
6661 (delete-file "src/citycrc.h")
6662 (delete-file "src/city.cc")
6663 #t))))
6664 (build-system gnu-build-system)
6665 (arguments
6666 `(#:phases
6667 (modify-phases %standard-phases
6668 (add-after 'unpack 'autogen
6669 (lambda _ (zero? (system* "autoreconf" "-vif")))))))
6670 (inputs
6671 `(("zlib" ,zlib)
6672 ("bzip2" ,bzip2)
6673 ("cityhash" ,cityhash)))
6674 (native-inputs
6675 `(("autoconf" ,autoconf)
6676 ("automake" ,automake)))
6677 (synopsis "Sequence search tools for metagenomics")
6678 (description
6679 "VSEARCH supports DNA sequence searching, clustering, chimera detection,
6680 dereplication, pairwise alignment, shuffling, subsampling, sorting and
6681 masking. The tool takes advantage of parallelism in the form of SIMD
6682 vectorization as well as multiple threads to perform accurate alignments at
6683 high speed. VSEARCH uses an optimal global aligner (full dynamic programming
6684 Needleman-Wunsch).")
6685 (home-page "https://github.com/torognes/vsearch")
6686 ;; vsearch uses non-portable SSE intrinsics so building fails on other
6687 ;; platforms.
6688 (supported-systems '("x86_64-linux"))
6689 ;; Dual licensed; also includes public domain source.
6690 (license (list license:gpl3 license:bsd-2))))
6691
6692 (define-public pardre
6693 (package
6694 (name "pardre")
6695 ;; The source of 1.1.5 changed in place, so we append "-1" to the version.
6696 (version "1.1.5-1")
6697 (source
6698 (origin
6699 (method url-fetch)
6700 (uri (string-append "mirror://sourceforge/pardre/ParDRe-rel"
6701 "1.1.5" ".tar.gz"))
6702 (sha256
6703 (base32
6704 "17j73nc0viq4f6qj50nrndsrif5d6b71q8fl87m54psiv0ilns2b"))))
6705 (build-system gnu-build-system)
6706 (arguments
6707 `(#:tests? #f ; no tests included
6708 #:phases
6709 (modify-phases %standard-phases
6710 (delete 'configure)
6711 (replace 'install
6712 (lambda* (#:key outputs #:allow-other-keys)
6713 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
6714 (install-file "ParDRe" bin)
6715 #t))))))
6716 (inputs
6717 `(("openmpi" ,openmpi)
6718 ("zlib" ,zlib)))
6719 (synopsis "Parallel tool to remove duplicate DNA reads")
6720 (description
6721 "ParDRe is a parallel tool to remove duplicate genetic sequence reads.
6722 Duplicate reads can be seen as identical or nearly identical sequences with
6723 some mismatches. This tool lets users avoid the analysis of unnecessary
6724 reads, reducing the time of subsequent procedures with the
6725 dataset (e.g. assemblies, mappings, etc.). The tool is implemented with MPI
6726 in order to exploit the parallel capabilities of multicore clusters. It is
6727 faster than multithreaded counterparts (end of 2015) for the same number of
6728 cores and, thanks to the message-passing technology, it can be executed on
6729 clusters.")
6730 (home-page "https://sourceforge.net/projects/pardre/")
6731 (license license:gpl3+)))
6732
6733 (define-public ruby-bio-kseq
6734 (package
6735 (name "ruby-bio-kseq")
6736 (version "0.0.2")
6737 (source
6738 (origin
6739 (method url-fetch)
6740 (uri (rubygems-uri "bio-kseq" version))
6741 (sha256
6742 (base32
6743 "1xyaha46khb5jc6wzkbf7040jagac49jbimn0vcrzid0j8jdikrz"))))
6744 (build-system ruby-build-system)
6745 (arguments
6746 `(#:test-target "spec"))
6747 (native-inputs
6748 `(("bundler" ,bundler)
6749 ("ruby-rspec" ,ruby-rspec)
6750 ("ruby-rake-compiler" ,ruby-rake-compiler)))
6751 (inputs
6752 `(("zlib" ,zlib)))
6753 (synopsis "Ruby bindings for the kseq.h FASTA/Q parser")
6754 (description
6755 "@code{Bio::Kseq} provides ruby bindings to the @code{kseq.h} FASTA and
6756 FASTQ parsing code. It provides a fast iterator over sequences and their
6757 quality scores.")
6758 (home-page "https://github.com/gusevfe/bio-kseq")
6759 (license license:expat)))
6760
6761 (define-public bio-locus
6762 (package
6763 (name "bio-locus")
6764 (version "0.0.7")
6765 (source
6766 (origin
6767 (method url-fetch)
6768 (uri (rubygems-uri "bio-locus" version))
6769 (sha256
6770 (base32
6771 "02vmrxyimkj9sahsp4zhfhnmbvz6dbbqz1y01vglf8cbwvkajfl0"))))
6772 (build-system ruby-build-system)
6773 (native-inputs
6774 `(("ruby-rspec" ,ruby-rspec)))
6775 (synopsis "Tool for fast querying of genome locations")
6776 (description
6777 "Bio-locus is a tabix-like tool for fast querying of genome
6778 locations. Many file formats in bioinformatics contain records that
6779 start with a chromosome name and a position for a SNP, or a start-end
6780 position for indels. Bio-locus allows users to store this chr+pos or
6781 chr+pos+alt information in a database.")
6782 (home-page "https://github.com/pjotrp/bio-locus")
6783 (license license:expat)))
6784
6785 (define-public bio-blastxmlparser
6786 (package
6787 (name "bio-blastxmlparser")
6788 (version "2.0.4")
6789 (source (origin
6790 (method url-fetch)
6791 (uri (rubygems-uri "bio-blastxmlparser" version))
6792 (sha256
6793 (base32
6794 "1wf4qygcmdjgcqm6flmvsagfr1gs9lf63mj32qv3z1f481zc5692"))))
6795 (build-system ruby-build-system)
6796 (propagated-inputs
6797 `(("ruby-bio-logger" ,ruby-bio-logger)
6798 ("ruby-nokogiri" ,ruby-nokogiri)))
6799 (inputs
6800 `(("ruby-rspec" ,ruby-rspec)))
6801 (synopsis "Fast big data BLAST XML parser and library")
6802 (description
6803 "Very fast parallel big-data BLAST XML file parser which can be used as
6804 command line utility. Use blastxmlparser to: Parse BLAST XML; filter output;
6805 generate FASTA, JSON, YAML, RDF, JSON-LD, HTML, CSV, tabular output etc.")
6806 (home-page "https://github.com/pjotrp/blastxmlparser")
6807 (license license:expat)))
6808
6809 (define-public bioruby
6810 (package
6811 (name "bioruby")
6812 (version "1.5.1")
6813 (source
6814 (origin
6815 (method url-fetch)
6816 (uri (rubygems-uri "bio" version))
6817 (sha256
6818 (base32
6819 "0hdl0789c9n4mprnx5pgd46bfwl8d000rqpamj5h6kkjgspijv49"))))
6820 (build-system ruby-build-system)
6821 (propagated-inputs
6822 `(("ruby-libxml" ,ruby-libxml)))
6823 (native-inputs
6824 `(("which" ,which))) ; required for test phase
6825 (arguments
6826 `(#:phases
6827 (modify-phases %standard-phases
6828 (add-before 'build 'patch-test-command
6829 (lambda _
6830 (substitute* '("test/functional/bio/test_command.rb")
6831 (("/bin/sh") (which "sh")))
6832 (substitute* '("test/functional/bio/test_command.rb")
6833 (("/bin/ls") (which "ls")))
6834 (substitute* '("test/functional/bio/test_command.rb")
6835 (("which") (which "which")))
6836 (substitute* '("test/functional/bio/test_command.rb",
6837 "test/data/command/echoarg2.sh")
6838 (("/bin/echo") (which "echo")))
6839 #t)))))
6840 (synopsis "Ruby library, shell and utilities for bioinformatics")
6841 (description "BioRuby comes with a comprehensive set of Ruby development
6842 tools and libraries for bioinformatics and molecular biology. BioRuby has
6843 components for sequence analysis, pathway analysis, protein modelling and
6844 phylogenetic analysis; it supports many widely used data formats and provides
6845 easy access to databases, external programs and public web services, including
6846 BLAST, KEGG, GenBank, MEDLINE and GO.")
6847 (home-page "http://bioruby.org/")
6848 ;; Code is released under Ruby license, except for setup
6849 ;; (LGPLv2.1+) and scripts in samples (which have GPL2 and GPL2+)
6850 (license (list license:ruby license:lgpl2.1+ license:gpl2+ ))))
6851
6852 (define-public r-acsnminer
6853 (package
6854 (name "r-acsnminer")
6855 (version "0.16.8.25")
6856 (source (origin
6857 (method url-fetch)
6858 (uri (cran-uri "ACSNMineR" version))
6859 (sha256
6860 (base32
6861 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
6862 (properties `((upstream-name . "ACSNMineR")))
6863 (build-system r-build-system)
6864 (propagated-inputs
6865 `(("r-ggplot2" ,r-ggplot2)
6866 ("r-gridextra" ,r-gridextra)))
6867 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
6868 (synopsis "Gene enrichment analysis")
6869 (description
6870 "This package provides tools to compute and represent gene set enrichment
6871 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
6872 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
6873 enrichment can be run with hypergeometric test or Fisher exact test, and can
6874 use multiple corrections. Visualization of data can be done either by
6875 barplots or heatmaps.")
6876 (license license:gpl2+)))
6877
6878 (define-public r-biocgenerics
6879 (package
6880 (name "r-biocgenerics")
6881 (version "0.26.0")
6882 (source (origin
6883 (method url-fetch)
6884 (uri (bioconductor-uri "BiocGenerics" version))
6885 (sha256
6886 (base32
6887 "19qxhy2cd3pykkhzbb5q3crgaxf65cpzf2mkfsz16gqhi8flj72p"))))
6888 (properties
6889 `((upstream-name . "BiocGenerics")))
6890 (build-system r-build-system)
6891 (home-page "https://bioconductor.org/packages/BiocGenerics")
6892 (synopsis "S4 generic functions for Bioconductor")
6893 (description
6894 "This package provides S4 generic functions needed by many Bioconductor
6895 packages.")
6896 (license license:artistic2.0)))
6897
6898 (define-public r-biocinstaller
6899 (package
6900 (name "r-biocinstaller")
6901 (version "1.30.0")
6902 (source (origin
6903 (method url-fetch)
6904 (uri (bioconductor-uri "BiocInstaller" version))
6905 (sha256
6906 (base32
6907 "1xg1gi1hf5vflp71ji21gnmr4kcjpx8a6c47cllpc7yqnjv5nfg0"))))
6908 (properties
6909 `((upstream-name . "BiocInstaller")))
6910 (build-system r-build-system)
6911 (home-page "https://bioconductor.org/packages/BiocInstaller")
6912 (synopsis "Install Bioconductor packages")
6913 (description "This package is used to install and update R packages from
6914 Bioconductor, CRAN, and Github.")
6915 (license license:artistic2.0)))
6916
6917 (define-public r-biocviews
6918 (package
6919 (name "r-biocviews")
6920 (version "1.48.0")
6921 (source (origin
6922 (method url-fetch)
6923 (uri (bioconductor-uri "biocViews" version))
6924 (sha256
6925 (base32
6926 "1yx2lir67ny0j150wyfqca0wsxp84byri8nscbs9qlndkh2jppq9"))))
6927 (properties
6928 `((upstream-name . "biocViews")))
6929 (build-system r-build-system)
6930 (propagated-inputs
6931 `(("r-biobase" ,r-biobase)
6932 ("r-graph" ,r-graph)
6933 ("r-rbgl" ,r-rbgl)
6934 ("r-rcurl" ,r-rcurl)
6935 ("r-xml" ,r-xml)
6936 ("r-runit" ,r-runit)))
6937 (home-page "https://bioconductor.org/packages/biocViews")
6938 (synopsis "Bioconductor package categorization helper")
6939 (description "The purpose of biocViews is to create HTML pages that
6940 categorize packages in a Bioconductor package repository according to keywords,
6941 also known as views, in a controlled vocabulary.")
6942 (license license:artistic2.0)))
6943
6944 (define-public r-bookdown
6945 (package
6946 (name "r-bookdown")
6947 (version "0.7")
6948 (source (origin
6949 (method url-fetch)
6950 (uri (cran-uri "bookdown" version))
6951 (sha256
6952 (base32
6953 "1b3fw1f41zph5yw3kynb47aijq53vhaa6mnnvxly72zamyzdf95q"))))
6954 (build-system r-build-system)
6955 (propagated-inputs
6956 `(("r-htmltools" ,r-htmltools)
6957 ("r-knitr" ,r-knitr)
6958 ("r-rmarkdown" ,r-rmarkdown)
6959 ("r-tinytex" ,r-tinytex)
6960 ("r-yaml" ,r-yaml)
6961 ("r-xfun" ,r-xfun)))
6962 (home-page "https://github.com/rstudio/bookdown")
6963 (synopsis "Authoring books and technical documents with R markdown")
6964 (description "This package provides output formats and utilities for
6965 authoring books and technical documents with R Markdown.")
6966 (license license:gpl3)))
6967
6968 (define-public r-biocstyle
6969 (package
6970 (name "r-biocstyle")
6971 (version "2.8.2")
6972 (source (origin
6973 (method url-fetch)
6974 (uri (bioconductor-uri "BiocStyle" version))
6975 (sha256
6976 (base32
6977 "17m901ylz00w1a3nq5f910v55zixm1nr6rb3qrsbhqd94qzr0l2p"))))
6978 (properties
6979 `((upstream-name . "BiocStyle")))
6980 (build-system r-build-system)
6981 (propagated-inputs
6982 `(("r-bookdown" ,r-bookdown)
6983 ("r-knitr" ,r-knitr)
6984 ("r-rmarkdown" ,r-rmarkdown)
6985 ("r-yaml" ,r-yaml)))
6986 (home-page "https://bioconductor.org/packages/BiocStyle")
6987 (synopsis "Bioconductor formatting styles")
6988 (description "This package provides standard formatting styles for
6989 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
6990 functionality.")
6991 (license license:artistic2.0)))
6992
6993 (define-public r-bioccheck
6994 (package
6995 (name "r-bioccheck")
6996 (version "1.16.0")
6997 (source (origin
6998 (method url-fetch)
6999 (uri (bioconductor-uri "BiocCheck" version))
7000 (sha256
7001 (base32
7002 "1srp1g809f1nn0fyqknr7r6dq89bw1xpjvmygr7cw6ffknbc671s"))))
7003 (properties
7004 `((upstream-name . "BiocCheck")))
7005 (build-system r-build-system)
7006 (arguments
7007 '(#:phases
7008 (modify-phases %standard-phases
7009 ;; This package can be used by calling BiocCheck(<package>) from
7010 ;; within R, or by running R CMD BiocCheck <package>. This phase
7011 ;; makes sure the latter works. For this to work, the BiocCheck
7012 ;; script must be somewhere on the PATH (not the R bin directory).
7013 (add-after 'install 'install-bioccheck-subcommand
7014 (lambda* (#:key outputs #:allow-other-keys)
7015 (let* ((out (assoc-ref outputs "out"))
7016 (dest-dir (string-append out "/bin"))
7017 (script-dir
7018 (string-append out "/site-library/BiocCheck/script/")))
7019 (mkdir-p dest-dir)
7020 (symlink (string-append script-dir "/checkBadDeps.R")
7021 (string-append dest-dir "/checkBadDeps.R"))
7022 (symlink (string-append script-dir "/BiocCheck")
7023 (string-append dest-dir "/BiocCheck")))
7024 #t)))))
7025 (propagated-inputs
7026 `(("r-codetools" ,r-codetools)
7027 ("r-graph" ,r-graph)
7028 ("r-httr" ,r-httr)
7029 ("r-optparse" ,r-optparse)
7030 ("r-biocinstaller" ,r-biocinstaller)
7031 ("r-biocviews" ,r-biocviews)
7032 ("r-stringdist" ,r-stringdist)))
7033 (home-page "https://bioconductor.org/packages/BiocCheck")
7034 (synopsis "Executes Bioconductor-specific package checks")
7035 (description "This package contains tools to perform additional quality
7036 checks on R packages that are to be submitted to the Bioconductor repository.")
7037 (license license:artistic2.0)))
7038
7039 (define-public r-getopt
7040 (package
7041 (name "r-getopt")
7042 (version "1.20.2")
7043 (source
7044 (origin
7045 (method url-fetch)
7046 (uri (cran-uri "getopt" version))
7047 (sha256
7048 (base32
7049 "13p35lbpy7i578752fa71sbfvcsqw5qfa9p6kf8b5m3c5p9i4v1x"))))
7050 (build-system r-build-system)
7051 (home-page "https://github.com/trevorld/getopt")
7052 (synopsis "Command-line option processor for R")
7053 (description
7054 "This package is designed to be used with Rscript to write shebang
7055 scripts that accept short and long options. Many users will prefer to
7056 use the packages @code{optparse} or @code{argparse} which add extra
7057 features like automatically generated help options and usage texts,
7058 support for default values, positional argument support, etc.")
7059 (license license:gpl2+)))
7060
7061 (define-public r-optparse
7062 (package
7063 (name "r-optparse")
7064 (version "1.4.4")
7065 (source
7066 (origin
7067 (method url-fetch)
7068 (uri (cran-uri "optparse" version))
7069 (sha256
7070 (base32
7071 "1ff4wmsszrb3spwfp7ynfs8w11qpy1sdzfxm1wk8dqqvdwris7qb"))))
7072 (build-system r-build-system)
7073 (propagated-inputs
7074 `(("r-getopt" ,r-getopt)))
7075 (home-page
7076 "https://github.com/trevorld/optparse")
7077 (synopsis "Command line option parser")
7078 (description
7079 "This package provides a command line parser inspired by Python's
7080 @code{optparse} library to be used with Rscript to write shebang scripts
7081 that accept short and long options.")
7082 (license license:gpl2+)))
7083
7084 (define-public r-dnacopy
7085 (package
7086 (name "r-dnacopy")
7087 (version "1.54.0")
7088 (source (origin
7089 (method url-fetch)
7090 (uri (bioconductor-uri "DNAcopy" version))
7091 (sha256
7092 (base32
7093 "03hfhmmc5y60r2gcgm367w2fr7qj115l74m9bp3h9qpn5yci0d8n"))))
7094 (properties
7095 `((upstream-name . "DNAcopy")))
7096 (build-system r-build-system)
7097 (inputs
7098 `(("gfortran" ,gfortran)))
7099 (home-page "https://bioconductor.org/packages/DNAcopy")
7100 (synopsis "Implementation of a circular binary segmentation algorithm")
7101 (description "This package implements the circular binary segmentation (CBS)
7102 algorithm to segment DNA copy number data and identify genomic regions with
7103 abnormal copy number.")
7104 (license license:gpl2+)))
7105
7106 (define-public r-s4vectors
7107 (package
7108 (name "r-s4vectors")
7109 (version "0.18.2")
7110 (source (origin
7111 (method url-fetch)
7112 (uri (bioconductor-uri "S4Vectors" version))
7113 (sha256
7114 (base32
7115 "0qvj2j0zl4djjl7vrwc6xak6h8dxr53iwypfbcvfb3sh7jwhdiz5"))))
7116 (properties
7117 `((upstream-name . "S4Vectors")))
7118 (build-system r-build-system)
7119 (propagated-inputs
7120 `(("r-biocgenerics" ,r-biocgenerics)))
7121 (home-page "https://bioconductor.org/packages/S4Vectors")
7122 (synopsis "S4 implementation of vectors and lists")
7123 (description
7124 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
7125 classes and a set of generic functions that extend the semantic of ordinary
7126 vectors and lists in R. Package developers can easily implement vector-like
7127 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
7128 In addition, a few low-level concrete subclasses of general interest (e.g.
7129 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
7130 S4Vectors package itself.")
7131 (license license:artistic2.0)))
7132
7133 (define-public r-seqinr
7134 (package
7135 (name "r-seqinr")
7136 (version "3.4-5")
7137 (source
7138 (origin
7139 (method url-fetch)
7140 (uri (cran-uri "seqinr" version))
7141 (sha256
7142 (base32
7143 "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn"))))
7144 (build-system r-build-system)
7145 (propagated-inputs
7146 `(("r-ade4" ,r-ade4)
7147 ("r-segmented" ,r-segmented)))
7148 (inputs
7149 `(("zlib" ,zlib)))
7150 (home-page "http://seqinr.r-forge.r-project.org/")
7151 (synopsis "Biological sequences retrieval and analysis")
7152 (description
7153 "This package provides tools for exploratory data analysis and data
7154 visualization of biological sequence (DNA and protein) data. It also includes
7155 utilities for sequence data management under the ACNUC system.")
7156 (license license:gpl2+)))
7157
7158 (define-public r-iranges
7159 (package
7160 (name "r-iranges")
7161 (version "2.14.10")
7162 (source (origin
7163 (method url-fetch)
7164 (uri (bioconductor-uri "IRanges" version))
7165 (sha256
7166 (base32
7167 "10ccw930vfmkskkrzbps14xglqlkxf588623dr7f1a9ckx7yr2p6"))))
7168 (properties
7169 `((upstream-name . "IRanges")))
7170 (build-system r-build-system)
7171 (propagated-inputs
7172 `(("r-biocgenerics" ,r-biocgenerics)
7173 ("r-s4vectors" ,r-s4vectors)))
7174 (home-page "https://bioconductor.org/packages/IRanges")
7175 (synopsis "Infrastructure for manipulating intervals on sequences")
7176 (description
7177 "This package provides efficient low-level and highly reusable S4 classes
7178 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
7179 generally, data that can be organized sequentially (formally defined as
7180 @code{Vector} objects), as well as views on these @code{Vector} objects.
7181 Efficient list-like classes are also provided for storing big collections of
7182 instances of the basic classes. All classes in the package use consistent
7183 naming and share the same rich and consistent \"Vector API\" as much as
7184 possible.")
7185 (license license:artistic2.0)))
7186
7187 (define-public r-genomeinfodbdata
7188 (package
7189 (name "r-genomeinfodbdata")
7190 (version "0.99.1")
7191 (source (origin
7192 (method url-fetch)
7193 ;; We cannot use bioconductor-uri here because this tarball is
7194 ;; located under "data/annotation/" instead of "bioc/".
7195 (uri (string-append "https://bioconductor.org/packages/release/"
7196 "data/annotation/src/contrib/GenomeInfoDbData_"
7197 version ".tar.gz"))
7198 (sha256
7199 (base32
7200 "0hipipvyvrh75n68hsjg35sxbcfzrghzxv547vnkk2f8ya99g01r"))))
7201 (properties
7202 `((upstream-name . "GenomeInfoDbData")))
7203 (build-system r-build-system)
7204 (home-page "https://bioconductor.org/packages/GenomeInfoDbData")
7205 (synopsis "Species and taxonomy ID look up tables for GenomeInfoDb")
7206 (description "This package contains data for mapping between NCBI taxonomy
7207 ID and species. It is used by functions in the GenomeInfoDb package.")
7208 (license license:artistic2.0)))
7209
7210 (define-public r-genomeinfodb
7211 (package
7212 (name "r-genomeinfodb")
7213 (version "1.16.0")
7214 (source (origin
7215 (method url-fetch)
7216 (uri (bioconductor-uri "GenomeInfoDb" version))
7217 (sha256
7218 (base32
7219 "0yhnqhaydmmq7ihmhj3rbal4afq5p993l2qqrd0n5wmbyg7glg2d"))))
7220 (properties
7221 `((upstream-name . "GenomeInfoDb")))
7222 (build-system r-build-system)
7223 (propagated-inputs
7224 `(("r-biocgenerics" ,r-biocgenerics)
7225 ("r-genomeinfodbdata" ,r-genomeinfodbdata)
7226 ("r-iranges" ,r-iranges)
7227 ("r-rcurl" ,r-rcurl)
7228 ("r-s4vectors" ,r-s4vectors)))
7229 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
7230 (synopsis "Utilities for manipulating chromosome identifiers")
7231 (description
7232 "This package contains data and functions that define and allow
7233 translation between different chromosome sequence naming conventions (e.g.,
7234 \"chr1\" versus \"1\"), including a function that attempts to place sequence
7235 names in their natural, rather than lexicographic, order.")
7236 (license license:artistic2.0)))
7237
7238 (define-public r-edger
7239 (package
7240 (name "r-edger")
7241 (version "3.22.2")
7242 (source (origin
7243 (method url-fetch)
7244 (uri (bioconductor-uri "edgeR" version))
7245 (sha256
7246 (base32
7247 "07py2g6vg9jbflwhc1hnzr2silbinrjwxq3mkq30nzjgf0n0hrf3"))))
7248 (properties `((upstream-name . "edgeR")))
7249 (build-system r-build-system)
7250 (propagated-inputs
7251 `(("r-limma" ,r-limma)
7252 ("r-locfit" ,r-locfit)
7253 ("r-rcpp" ,r-rcpp)
7254 ("r-statmod" ,r-statmod))) ;for estimateDisp
7255 (home-page "http://bioinf.wehi.edu.au/edgeR")
7256 (synopsis "EdgeR does empirical analysis of digital gene expression data")
7257 (description "This package can do differential expression analysis of
7258 RNA-seq expression profiles with biological replication. It implements a range
7259 of statistical methodology based on the negative binomial distributions,
7260 including empirical Bayes estimation, exact tests, generalized linear models
7261 and quasi-likelihood tests. It be applied to differential signal analysis of
7262 other types of genomic data that produce counts, including ChIP-seq, SAGE and
7263 CAGE.")
7264 (license license:gpl2+)))
7265
7266 (define-public r-variantannotation
7267 (package
7268 (name "r-variantannotation")
7269 (version "1.26.0")
7270 (source (origin
7271 (method url-fetch)
7272 (uri (bioconductor-uri "VariantAnnotation" version))
7273 (sha256
7274 (base32
7275 "06bccdf57vja7m63chmgc4539lwng3q3b8zxn285fj8524l6mcn7"))))
7276 (properties
7277 `((upstream-name . "VariantAnnotation")))
7278 (inputs
7279 `(("zlib" ,zlib)))
7280 (propagated-inputs
7281 `(("r-annotationdbi" ,r-annotationdbi)
7282 ("r-biobase" ,r-biobase)
7283 ("r-biocgenerics" ,r-biocgenerics)
7284 ("r-biostrings" ,r-biostrings)
7285 ("r-bsgenome" ,r-bsgenome)
7286 ("r-dbi" ,r-dbi)
7287 ("r-genomeinfodb" ,r-genomeinfodb)
7288 ("r-genomicfeatures" ,r-genomicfeatures)
7289 ("r-genomicranges" ,r-genomicranges)
7290 ("r-iranges" ,r-iranges)
7291 ("r-summarizedexperiment" ,r-summarizedexperiment)
7292 ("r-rsamtools" ,r-rsamtools)
7293 ("r-rtracklayer" ,r-rtracklayer)
7294 ("r-s4vectors" ,r-s4vectors)
7295 ("r-xvector" ,r-xvector)
7296 ("r-zlibbioc" ,r-zlibbioc)))
7297 (build-system r-build-system)
7298 (home-page "https://bioconductor.org/packages/VariantAnnotation")
7299 (synopsis "Package for annotation of genetic variants")
7300 (description "This R package can annotate variants, compute amino acid
7301 coding changes and predict coding outcomes.")
7302 (license license:artistic2.0)))
7303
7304 (define-public r-limma
7305 (package
7306 (name "r-limma")
7307 (version "3.36.1")
7308 (source (origin
7309 (method url-fetch)
7310 (uri (bioconductor-uri "limma" version))
7311 (sha256
7312 (base32
7313 "1982g5v35ilfgxm2vkq1p3j1bbir795pjvfzx4nzam2rlqqymbqm"))))
7314 (build-system r-build-system)
7315 (home-page "http://bioinf.wehi.edu.au/limma")
7316 (synopsis "Package for linear models for microarray and RNA-seq data")
7317 (description "This package can be used for the analysis of gene expression
7318 studies, especially the use of linear models for analysing designed experiments
7319 and the assessment of differential expression. The analysis methods apply to
7320 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
7321 (license license:gpl2+)))
7322
7323 (define-public r-xvector
7324 (package
7325 (name "r-xvector")
7326 (version "0.20.0")
7327 (source (origin
7328 (method url-fetch)
7329 (uri (bioconductor-uri "XVector" version))
7330 (sha256
7331 (base32
7332 "1zjlhh9lsyhg0js1858csyw2389kbrzdqnqnha833wazkwxilp3f"))))
7333 (properties
7334 `((upstream-name . "XVector")))
7335 (build-system r-build-system)
7336 (arguments
7337 `(#:phases
7338 (modify-phases %standard-phases
7339 (add-after 'unpack 'use-system-zlib
7340 (lambda _
7341 (substitute* "DESCRIPTION"
7342 (("zlibbioc, ") ""))
7343 (substitute* "NAMESPACE"
7344 (("import\\(zlibbioc\\)") ""))
7345 #t)))))
7346 (inputs
7347 `(("zlib" ,zlib)))
7348 (propagated-inputs
7349 `(("r-biocgenerics" ,r-biocgenerics)
7350 ("r-iranges" ,r-iranges)
7351 ("r-s4vectors" ,r-s4vectors)))
7352 (home-page "https://bioconductor.org/packages/XVector")
7353 (synopsis "Representation and manpulation of external sequences")
7354 (description
7355 "This package provides memory efficient S4 classes for storing sequences
7356 \"externally\" (behind an R external pointer, or on disk).")
7357 (license license:artistic2.0)))
7358
7359 (define-public r-genomicranges
7360 (package
7361 (name "r-genomicranges")
7362 (version "1.32.3")
7363 (source (origin
7364 (method url-fetch)
7365 (uri (bioconductor-uri "GenomicRanges" version))
7366 (sha256
7367 (base32
7368 "03gmka6rlz18vd4229796l5l3l6446v5cb90sn2nb5knjbp84hni"))))
7369 (properties
7370 `((upstream-name . "GenomicRanges")))
7371 (build-system r-build-system)
7372 (propagated-inputs
7373 `(("r-biocgenerics" ,r-biocgenerics)
7374 ("r-genomeinfodb" ,r-genomeinfodb)
7375 ("r-iranges" ,r-iranges)
7376 ("r-s4vectors" ,r-s4vectors)
7377 ("r-xvector" ,r-xvector)))
7378 (home-page "https://bioconductor.org/packages/GenomicRanges")
7379 (synopsis "Representation and manipulation of genomic intervals")
7380 (description
7381 "This package provides tools to efficiently represent and manipulate
7382 genomic annotations and alignments is playing a central role when it comes to
7383 analyzing high-throughput sequencing data (a.k.a. NGS data). The
7384 GenomicRanges package defines general purpose containers for storing and
7385 manipulating genomic intervals and variables defined along a genome.")
7386 (license license:artistic2.0)))
7387
7388 (define-public r-biobase
7389 (package
7390 (name "r-biobase")
7391 (version "2.40.0")
7392 (source (origin
7393 (method url-fetch)
7394 (uri (bioconductor-uri "Biobase" version))
7395 (sha256
7396 (base32
7397 "1iwds2a5ir29k19dbpynlc7nn836cw2gamchhgpi2jf2xar9m9jz"))))
7398 (properties
7399 `((upstream-name . "Biobase")))
7400 (build-system r-build-system)
7401 (propagated-inputs
7402 `(("r-biocgenerics" ,r-biocgenerics)))
7403 (home-page "https://bioconductor.org/packages/Biobase")
7404 (synopsis "Base functions for Bioconductor")
7405 (description
7406 "This package provides functions that are needed by many other packages
7407 on Bioconductor or which replace R functions.")
7408 (license license:artistic2.0)))
7409
7410 (define-public r-annotationdbi
7411 (package
7412 (name "r-annotationdbi")
7413 (version "1.42.1")
7414 (source (origin
7415 (method url-fetch)
7416 (uri (bioconductor-uri "AnnotationDbi" version))
7417 (sha256
7418 (base32
7419 "0afkbzli08vq02r2pr9phrz3rxd6ilp1w7yw8y99nbjiz14f8b1c"))))
7420 (properties
7421 `((upstream-name . "AnnotationDbi")))
7422 (build-system r-build-system)
7423 (propagated-inputs
7424 `(("r-biobase" ,r-biobase)
7425 ("r-biocgenerics" ,r-biocgenerics)
7426 ("r-dbi" ,r-dbi)
7427 ("r-iranges" ,r-iranges)
7428 ("r-rsqlite" ,r-rsqlite)
7429 ("r-s4vectors" ,r-s4vectors)))
7430 (home-page "https://bioconductor.org/packages/AnnotationDbi")
7431 (synopsis "Annotation database interface")
7432 (description
7433 "This package provides user interface and database connection code for
7434 annotation data packages using SQLite data storage.")
7435 (license license:artistic2.0)))
7436
7437 (define-public r-biomart
7438 (package
7439 (name "r-biomart")
7440 (version "2.36.1")
7441 (source (origin
7442 (method url-fetch)
7443 (uri (bioconductor-uri "biomaRt" version))
7444 (sha256
7445 (base32
7446 "0b70s350ffc74v3xz5c3jpazr9zxdb7gjmjfj7aghlsrizrspill"))))
7447 (properties
7448 `((upstream-name . "biomaRt")))
7449 (build-system r-build-system)
7450 (propagated-inputs
7451 `(("r-annotationdbi" ,r-annotationdbi)
7452 ("r-httr" ,r-httr)
7453 ("r-progress" ,r-progress)
7454 ("r-rcurl" ,r-rcurl)
7455 ("r-stringr" ,r-stringr)
7456 ("r-xml" ,r-xml)))
7457 (home-page "https://bioconductor.org/packages/biomaRt")
7458 (synopsis "Interface to BioMart databases")
7459 (description
7460 "biomaRt provides an interface to a growing collection of databases
7461 implementing the @url{BioMart software suite, http://www.biomart.org}. The
7462 package enables retrieval of large amounts of data in a uniform way without
7463 the need to know the underlying database schemas or write complex SQL queries.
7464 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
7465 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
7466 users direct access to a diverse set of data and enable a wide range of
7467 powerful online queries from gene annotation to database mining.")
7468 (license license:artistic2.0)))
7469
7470 (define-public r-biocparallel
7471 (package
7472 (name "r-biocparallel")
7473 (version "1.14.1")
7474 (source (origin
7475 (method url-fetch)
7476 (uri (bioconductor-uri "BiocParallel" version))
7477 (sha256
7478 (base32
7479 "00qg1kg2l9qqpyjaw5q910cmf84vwfiw1fhsx3ig784gwinwgj6n"))))
7480 (properties
7481 `((upstream-name . "BiocParallel")))
7482 (build-system r-build-system)
7483 (propagated-inputs
7484 `(("r-futile-logger" ,r-futile-logger)
7485 ("r-snow" ,r-snow)
7486 ("r-bh" ,r-bh)))
7487 (home-page "https://bioconductor.org/packages/BiocParallel")
7488 (synopsis "Bioconductor facilities for parallel evaluation")
7489 (description
7490 "This package provides modified versions and novel implementation of
7491 functions for parallel evaluation, tailored to use with Bioconductor
7492 objects.")
7493 (license (list license:gpl2+ license:gpl3+))))
7494
7495 (define-public r-biostrings
7496 (package
7497 (name "r-biostrings")
7498 (version "2.48.0")
7499 (source (origin
7500 (method url-fetch)
7501 (uri (bioconductor-uri "Biostrings" version))
7502 (sha256
7503 (base32
7504 "118b490jk87ydigm6ln25ms4kskzkw0akmh77clzznhzpqnxsi6j"))))
7505 (properties
7506 `((upstream-name . "Biostrings")))
7507 (build-system r-build-system)
7508 (propagated-inputs
7509 `(("r-biocgenerics" ,r-biocgenerics)
7510 ("r-iranges" ,r-iranges)
7511 ("r-s4vectors" ,r-s4vectors)
7512 ("r-xvector" ,r-xvector)))
7513 (home-page "https://bioconductor.org/packages/Biostrings")
7514 (synopsis "String objects and algorithms for biological sequences")
7515 (description
7516 "This package provides memory efficient string containers, string
7517 matching algorithms, and other utilities, for fast manipulation of large
7518 biological sequences or sets of sequences.")
7519 (license license:artistic2.0)))
7520
7521 (define-public r-rsamtools
7522 (package
7523 (name "r-rsamtools")
7524 (version "1.32.0")
7525 (source (origin
7526 (method url-fetch)
7527 (uri (bioconductor-uri "Rsamtools" version))
7528 (sha256
7529 (base32
7530 "1s65y5wn4d0x8zsljg2kmhcl6r9884h95kr041j7hp49bmxg3an6"))))
7531 (properties
7532 `((upstream-name . "Rsamtools")))
7533 (build-system r-build-system)
7534 (arguments
7535 `(#:phases
7536 (modify-phases %standard-phases
7537 (add-after 'unpack 'use-system-zlib
7538 (lambda _
7539 (substitute* "DESCRIPTION"
7540 (("zlibbioc, ") ""))
7541 (substitute* "NAMESPACE"
7542 (("import\\(zlibbioc\\)") ""))
7543 #t)))))
7544 (inputs
7545 `(("zlib" ,zlib)))
7546 (propagated-inputs
7547 `(("r-biocgenerics" ,r-biocgenerics)
7548 ("r-biocparallel" ,r-biocparallel)
7549 ("r-biostrings" ,r-biostrings)
7550 ("r-bitops" ,r-bitops)
7551 ("r-genomeinfodb" ,r-genomeinfodb)
7552 ("r-genomicranges" ,r-genomicranges)
7553 ("r-iranges" ,r-iranges)
7554 ("r-s4vectors" ,r-s4vectors)
7555 ("r-xvector" ,r-xvector)))
7556 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
7557 (synopsis "Interface to samtools, bcftools, and tabix")
7558 (description
7559 "This package provides an interface to the 'samtools', 'bcftools', and
7560 'tabix' utilities for manipulating SAM (Sequence Alignment / Map), FASTA,
7561 binary variant call (BCF) and compressed indexed tab-delimited (tabix)
7562 files.")
7563 (license license:expat)))
7564
7565 (define-public r-delayedarray
7566 (package
7567 (name "r-delayedarray")
7568 (version "0.6.0")
7569 (source (origin
7570 (method url-fetch)
7571 (uri (bioconductor-uri "DelayedArray" version))
7572 (sha256
7573 (base32
7574 "0n3w57cwy911q812wc8658y0v3xgpmg379sj98kfqdxa80z1mxdf"))))
7575 (properties
7576 `((upstream-name . "DelayedArray")))
7577 (build-system r-build-system)
7578 (propagated-inputs
7579 `(("r-biocgenerics" ,r-biocgenerics)
7580 ("r-biocparallel" ,r-biocparallel)
7581 ("r-s4vectors" ,r-s4vectors)
7582 ("r-iranges" ,r-iranges)
7583 ("r-matrixstats" ,r-matrixstats)))
7584 (home-page "https://bioconductor.org/packages/DelayedArray")
7585 (synopsis "Delayed operations on array-like objects")
7586 (description
7587 "Wrapping an array-like object (typically an on-disk object) in a
7588 @code{DelayedArray} object allows one to perform common array operations on it
7589 without loading the object in memory. In order to reduce memory usage and
7590 optimize performance, operations on the object are either delayed or executed
7591 using a block processing mechanism. Note that this also works on in-memory
7592 array-like objects like @code{DataFrame} objects (typically with Rle columns),
7593 @code{Matrix} objects, and ordinary arrays and data frames.")
7594 (license license:artistic2.0)))
7595
7596 (define-public r-summarizedexperiment
7597 (package
7598 (name "r-summarizedexperiment")
7599 (version "1.10.1")
7600 (source (origin
7601 (method url-fetch)
7602 (uri (bioconductor-uri "SummarizedExperiment" version))
7603 (sha256
7604 (base32
7605 "0v3zxl9cqsv79ag5cnvzlhvgaz5cr8f4rn7flmwnwpqd508cznl1"))))
7606 (properties
7607 `((upstream-name . "SummarizedExperiment")))
7608 (build-system r-build-system)
7609 (propagated-inputs
7610 `(("r-biobase" ,r-biobase)
7611 ("r-biocgenerics" ,r-biocgenerics)
7612 ("r-delayedarray" ,r-delayedarray)
7613 ("r-genomeinfodb" ,r-genomeinfodb)
7614 ("r-genomicranges" ,r-genomicranges)
7615 ("r-iranges" ,r-iranges)
7616 ("r-matrix" ,r-matrix)
7617 ("r-s4vectors" ,r-s4vectors)))
7618 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
7619 (synopsis "Container for representing genomic ranges by sample")
7620 (description
7621 "The SummarizedExperiment container contains one or more assays, each
7622 represented by a matrix-like object of numeric or other mode. The rows
7623 typically represent genomic ranges of interest and the columns represent
7624 samples.")
7625 (license license:artistic2.0)))
7626
7627 (define-public r-genomicalignments
7628 (package
7629 (name "r-genomicalignments")
7630 (version "1.16.0")
7631 (source (origin
7632 (method url-fetch)
7633 (uri (bioconductor-uri "GenomicAlignments" version))
7634 (sha256
7635 (base32
7636 "00pi2cnkkbj2023fg2x2cmglkdalwzy1vr3glsikwz7ix9yylcaw"))))
7637 (properties
7638 `((upstream-name . "GenomicAlignments")))
7639 (build-system r-build-system)
7640 (propagated-inputs
7641 `(("r-biocgenerics" ,r-biocgenerics)
7642 ("r-biocparallel" ,r-biocparallel)
7643 ("r-biostrings" ,r-biostrings)
7644 ("r-genomeinfodb" ,r-genomeinfodb)
7645 ("r-genomicranges" ,r-genomicranges)
7646 ("r-iranges" ,r-iranges)
7647 ("r-rsamtools" ,r-rsamtools)
7648 ("r-s4vectors" ,r-s4vectors)
7649 ("r-summarizedexperiment" ,r-summarizedexperiment)))
7650 (home-page "https://bioconductor.org/packages/GenomicAlignments")
7651 (synopsis "Representation and manipulation of short genomic alignments")
7652 (description
7653 "This package provides efficient containers for storing and manipulating
7654 short genomic alignments (typically obtained by aligning short reads to a
7655 reference genome). This includes read counting, computing the coverage,
7656 junction detection, and working with the nucleotide content of the
7657 alignments.")
7658 (license license:artistic2.0)))
7659
7660 (define-public r-rtracklayer
7661 (package
7662 (name "r-rtracklayer")
7663 (version "1.40.2")
7664 (source (origin
7665 (method url-fetch)
7666 (uri (bioconductor-uri "rtracklayer" version))
7667 (sha256
7668 (base32
7669 "0l90jn4df3akxl0n1i9wvnbjqrzjc0d15r8vqr7b15q2117mrn5r"))))
7670 (build-system r-build-system)
7671 (arguments
7672 `(#:phases
7673 (modify-phases %standard-phases
7674 (add-after 'unpack 'use-system-zlib
7675 (lambda _
7676 (substitute* "DESCRIPTION"
7677 ((" zlibbioc,") ""))
7678 (substitute* "NAMESPACE"
7679 (("import\\(zlibbioc\\)") ""))
7680 #t)))))
7681 (native-inputs
7682 `(("pkg-config" ,pkg-config)))
7683 (inputs
7684 `(("zlib" ,zlib)))
7685 (propagated-inputs
7686 `(("r-biocgenerics" ,r-biocgenerics)
7687 ("r-biostrings" ,r-biostrings)
7688 ("r-genomeinfodb" ,r-genomeinfodb)
7689 ("r-genomicalignments" ,r-genomicalignments)
7690 ("r-genomicranges" ,r-genomicranges)
7691 ("r-iranges" ,r-iranges)
7692 ("r-rcurl" ,r-rcurl)
7693 ("r-rsamtools" ,r-rsamtools)
7694 ("r-s4vectors" ,r-s4vectors)
7695 ("r-xml" ,r-xml)
7696 ("r-xvector" ,r-xvector)))
7697 (home-page "https://bioconductor.org/packages/rtracklayer")
7698 (synopsis "R interface to genome browsers and their annotation tracks")
7699 (description
7700 "rtracklayer is an extensible framework for interacting with multiple
7701 genome browsers (currently UCSC built-in) and manipulating annotation tracks
7702 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
7703 built-in). The user may export/import tracks to/from the supported browsers,
7704 as well as query and modify the browser state, such as the current viewport.")
7705 (license license:artistic2.0)))
7706
7707 (define-public r-genomicfeatures
7708 (package
7709 (name "r-genomicfeatures")
7710 (version "1.32.0")
7711 (source (origin
7712 (method url-fetch)
7713 (uri (bioconductor-uri "GenomicFeatures" version))
7714 (sha256
7715 (base32
7716 "1cqcl72q0k5wylw1brn4g4h7xzys1v06piry19cvp0gjcvm5sp7a"))))
7717 (properties
7718 `((upstream-name . "GenomicFeatures")))
7719 (build-system r-build-system)
7720 (propagated-inputs
7721 `(("r-annotationdbi" ,r-annotationdbi)
7722 ("r-biobase" ,r-biobase)
7723 ("r-biocgenerics" ,r-biocgenerics)
7724 ("r-biomart" ,r-biomart)
7725 ("r-biostrings" ,r-biostrings)
7726 ("r-dbi" ,r-dbi)
7727 ("r-genomeinfodb" ,r-genomeinfodb)
7728 ("r-genomicranges" ,r-genomicranges)
7729 ("r-iranges" ,r-iranges)
7730 ("r-rcurl" ,r-rcurl)
7731 ("r-rsqlite" ,r-rsqlite)
7732 ("r-rtracklayer" ,r-rtracklayer)
7733 ("r-s4vectors" ,r-s4vectors)
7734 ("r-xvector" ,r-xvector)))
7735 (home-page "https://bioconductor.org/packages/GenomicFeatures")
7736 (synopsis "Tools for working with transcript centric annotations")
7737 (description
7738 "This package provides a set of tools and methods for making and
7739 manipulating transcript centric annotations. With these tools the user can
7740 easily download the genomic locations of the transcripts, exons and cds of a
7741 given organism, from either the UCSC Genome Browser or a BioMart
7742 database (more sources will be supported in the future). This information is
7743 then stored in a local database that keeps track of the relationship between
7744 transcripts, exons, cds and genes. Flexible methods are provided for
7745 extracting the desired features in a convenient format.")
7746 (license license:artistic2.0)))
7747
7748 (define-public r-go-db
7749 (package
7750 (name "r-go-db")
7751 (version "3.5.0")
7752 (source (origin
7753 (method url-fetch)
7754 (uri (string-append "https://www.bioconductor.org/packages/"
7755 "release/data/annotation/src/contrib/GO.db_"
7756 version ".tar.gz"))
7757 (sha256
7758 (base32
7759 "02d1mn1al3q7qvhx1ylrr3ar4w4iw0qyi5d89v2336rzwk9maq35"))))
7760 (properties
7761 `((upstream-name . "GO.db")))
7762 (build-system r-build-system)
7763 (propagated-inputs
7764 `(("r-annotationdbi" ,r-annotationdbi)))
7765 (home-page "https://bioconductor.org/packages/GO.db")
7766 (synopsis "Annotation maps describing the entire Gene Ontology")
7767 (description
7768 "The purpose of this GO.db annotation package is to provide detailed
7769 information about the latest version of the Gene Ontologies.")
7770 (license license:artistic2.0)))
7771
7772 (define-public r-graph
7773 (package
7774 (name "r-graph")
7775 (version "1.58.0")
7776 (source (origin
7777 (method url-fetch)
7778 (uri (bioconductor-uri "graph" version))
7779 (sha256
7780 (base32
7781 "1zx445lk36g1s6i5dbhhf00nzzazyklfjxxjfax6q8hnhvgm9759"))))
7782 (build-system r-build-system)
7783 (propagated-inputs
7784 `(("r-biocgenerics" ,r-biocgenerics)))
7785 (home-page "https://bioconductor.org/packages/graph")
7786 (synopsis "Handle graph data structures in R")
7787 (description
7788 "This package implements some simple graph handling capabilities for R.")
7789 (license license:artistic2.0)))
7790
7791 (define-public r-topgo
7792 (package
7793 (name "r-topgo")
7794 (version "2.32.0")
7795 (source (origin
7796 (method url-fetch)
7797 (uri (bioconductor-uri "topGO" version))
7798 (sha256
7799 (base32
7800 "05yxnkid8bgw9lkm90if9fg63djhgvbailfa3qsfqa5c0zjmixw1"))))
7801 (properties
7802 `((upstream-name . "topGO")))
7803 (build-system r-build-system)
7804 (propagated-inputs
7805 `(("r-annotationdbi" ,r-annotationdbi)
7806 ("r-dbi" ,r-dbi)
7807 ("r-biobase" ,r-biobase)
7808 ("r-biocgenerics" ,r-biocgenerics)
7809 ("r-go-db" ,r-go-db)
7810 ("r-graph" ,r-graph)
7811 ("r-lattice" ,r-lattice)
7812 ("r-matrixstats" ,r-matrixstats)
7813 ("r-sparsem" ,r-sparsem)))
7814 (home-page "https://bioconductor.org/packages/topGO")
7815 (synopsis "Enrichment analysis for gene ontology")
7816 (description
7817 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
7818 terms while accounting for the topology of the GO graph. Different test
7819 statistics and different methods for eliminating local similarities and
7820 dependencies between GO terms can be implemented and applied.")
7821 ;; Any version of the LGPL applies.
7822 (license license:lgpl2.1+)))
7823
7824 (define-public r-bsgenome
7825 (package
7826 (name "r-bsgenome")
7827 (version "1.48.0")
7828 (source (origin
7829 (method url-fetch)
7830 (uri (bioconductor-uri "BSgenome" version))
7831 (sha256
7832 (base32
7833 "1rk2piqq5dppkd51ln3r872d7ng3rvq98071mnd0xdv2xwnyn5g8"))))
7834 (properties
7835 `((upstream-name . "BSgenome")))
7836 (build-system r-build-system)
7837 (propagated-inputs
7838 `(("r-biocgenerics" ,r-biocgenerics)
7839 ("r-biostrings" ,r-biostrings)
7840 ("r-genomeinfodb" ,r-genomeinfodb)
7841 ("r-genomicranges" ,r-genomicranges)
7842 ("r-iranges" ,r-iranges)
7843 ("r-rsamtools" ,r-rsamtools)
7844 ("r-rtracklayer" ,r-rtracklayer)
7845 ("r-s4vectors" ,r-s4vectors)
7846 ("r-xvector" ,r-xvector)))
7847 (home-page "https://bioconductor.org/packages/BSgenome")
7848 (synopsis "Infrastructure for Biostrings-based genome data packages")
7849 (description
7850 "This package provides infrastructure shared by all Biostrings-based
7851 genome data packages and support for efficient SNP representation.")
7852 (license license:artistic2.0)))
7853
7854 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
7855 (package
7856 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
7857 (version "0.99.1")
7858 (source (origin
7859 (method url-fetch)
7860 ;; We cannot use bioconductor-uri here because this tarball is
7861 ;; located under "data/annotation/" instead of "bioc/".
7862 (uri (string-append "https://www.bioconductor.org/packages/"
7863 "release/data/annotation/src/contrib/"
7864 "BSgenome.Hsapiens.1000genomes.hs37d5_"
7865 version ".tar.gz"))
7866 (sha256
7867 (base32
7868 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
7869 (properties
7870 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
7871 (build-system r-build-system)
7872 ;; As this package provides little more than a very large data file it
7873 ;; doesn't make sense to build substitutes.
7874 (arguments `(#:substitutable? #f))
7875 (propagated-inputs
7876 `(("r-bsgenome" ,r-bsgenome)))
7877 (home-page
7878 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
7879 (synopsis "Full genome sequences for Homo sapiens")
7880 (description
7881 "This package provides full genome sequences for Homo sapiens from
7882 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
7883 (license license:artistic2.0)))
7884
7885 (define-public r-impute
7886 (package
7887 (name "r-impute")
7888 (version "1.54.0")
7889 (source (origin
7890 (method url-fetch)
7891 (uri (bioconductor-uri "impute" version))
7892 (sha256
7893 (base32
7894 "1d3cpfaqlq2gnb3hsc2yhxwkrnbd7m6ifif32yp0ya0jr5brl4hr"))))
7895 (inputs
7896 `(("gfortran" ,gfortran)))
7897 (build-system r-build-system)
7898 (home-page "https://bioconductor.org/packages/impute")
7899 (synopsis "Imputation for microarray data")
7900 (description
7901 "This package provides a function to impute missing gene expression
7902 microarray data, using nearest neighbor averaging.")
7903 (license license:gpl2+)))
7904
7905 (define-public r-seqpattern
7906 (package
7907 (name "r-seqpattern")
7908 (version "1.12.0")
7909 (source (origin
7910 (method url-fetch)
7911 (uri (bioconductor-uri "seqPattern" version))
7912 (sha256
7913 (base32
7914 "0dw0yldfcf0ibvpqxlpx1ijnjf9lma47w9w22siszzhw09i0wp3w"))))
7915 (properties
7916 `((upstream-name . "seqPattern")))
7917 (build-system r-build-system)
7918 (propagated-inputs
7919 `(("r-biostrings" ,r-biostrings)
7920 ("r-genomicranges" ,r-genomicranges)
7921 ("r-iranges" ,r-iranges)
7922 ("r-kernsmooth" ,r-kernsmooth)
7923 ("r-plotrix" ,r-plotrix)))
7924 (home-page "https://bioconductor.org/packages/seqPattern")
7925 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
7926 (description
7927 "This package provides tools to visualize oligonucleotide patterns and
7928 sequence motif occurrences across a large set of sequences centred at a common
7929 reference point and sorted by a user defined feature.")
7930 (license license:gpl3+)))
7931
7932 (define-public r-genomation
7933 (package
7934 (name "r-genomation")
7935 (version "1.12.0")
7936 (source (origin
7937 (method url-fetch)
7938 (uri (bioconductor-uri "genomation" version))
7939 (sha256
7940 (base32
7941 "1vdmdyrq0n7pf8cvy2950v7hrcrcbd9zl4fg7dcmyly3iiwdyirp"))))
7942 (build-system r-build-system)
7943 (propagated-inputs
7944 `(("r-biostrings" ,r-biostrings)
7945 ("r-bsgenome" ,r-bsgenome)
7946 ("r-data-table" ,r-data-table)
7947 ("r-genomeinfodb" ,r-genomeinfodb)
7948 ("r-genomicalignments" ,r-genomicalignments)
7949 ("r-genomicranges" ,r-genomicranges)
7950 ("r-ggplot2" ,r-ggplot2)
7951 ("r-gridbase" ,r-gridbase)
7952 ("r-impute" ,r-impute)
7953 ("r-iranges" ,r-iranges)
7954 ("r-matrixstats" ,r-matrixstats)
7955 ("r-plotrix" ,r-plotrix)
7956 ("r-plyr" ,r-plyr)
7957 ("r-rcpp" ,r-rcpp)
7958 ("r-readr" ,r-readr)
7959 ("r-reshape2" ,r-reshape2)
7960 ("r-rsamtools" ,r-rsamtools)
7961 ("r-rtracklayer" ,r-rtracklayer)
7962 ("r-runit" ,r-runit)
7963 ("r-s4vectors" ,r-s4vectors)
7964 ("r-seqpattern" ,r-seqpattern)))
7965 (home-page "http://bioinformatics.mdc-berlin.de/genomation/")
7966 (synopsis "Summary, annotation and visualization of genomic data")
7967 (description
7968 "This package provides a package for summary and annotation of genomic
7969 intervals. Users can visualize and quantify genomic intervals over
7970 pre-defined functional regions, such as promoters, exons, introns, etc. The
7971 genomic intervals represent regions with a defined chromosome position, which
7972 may be associated with a score, such as aligned reads from HT-seq experiments,
7973 TF binding sites, methylation scores, etc. The package can use any tabular
7974 genomic feature data as long as it has minimal information on the locations of
7975 genomic intervals. In addition, it can use BAM or BigWig files as input.")
7976 (license license:artistic2.0)))
7977
7978 (define-public r-genomationdata
7979 (package
7980 (name "r-genomationdata")
7981 (version "1.10.0")
7982 (source (origin
7983 (method url-fetch)
7984 ;; We cannot use bioconductor-uri here because this tarball is
7985 ;; located under "data/annotation/" instead of "bioc/".
7986 (uri (string-append "https://bioconductor.org/packages/"
7987 "release/data/experiment/src/contrib/"
7988 "genomationData_" version ".tar.gz"))
7989 (sha256
7990 (base32
7991 "0h7g5x3kyb50qlblz5hc85lfm6n6f5nb68i146way3ggs04sqvla"))))
7992 (build-system r-build-system)
7993 ;; As this package provides little more than large data files, it doesn't
7994 ;; make sense to build substitutes.
7995 (arguments `(#:substitutable? #f))
7996 (native-inputs
7997 `(("r-knitr" ,r-knitr)))
7998 (home-page "http://bioinformatics.mdc-berlin.de/genomation/")
7999 (synopsis "Experimental data for use with the genomation package")
8000 (description
8001 "This package contains experimental genetic data for use with the
8002 genomation package. Included are Chip Seq, Methylation and Cage data,
8003 downloaded from Encode.")
8004 (license license:gpl3+)))
8005
8006 (define-public r-org-hs-eg-db
8007 (package
8008 (name "r-org-hs-eg-db")
8009 (version "3.5.0")
8010 (source (origin
8011 (method url-fetch)
8012 ;; We cannot use bioconductor-uri here because this tarball is
8013 ;; located under "data/annotation/" instead of "bioc/".
8014 (uri (string-append "https://www.bioconductor.org/packages/"
8015 "release/data/annotation/src/contrib/"
8016 "org.Hs.eg.db_" version ".tar.gz"))
8017 (sha256
8018 (base32
8019 "1v6wa5613cjq59xd7x1qz8lr9nb2abm9abl2cci1khrnrlpla927"))))
8020 (properties
8021 `((upstream-name . "org.Hs.eg.db")))
8022 (build-system r-build-system)
8023 (propagated-inputs
8024 `(("r-annotationdbi" ,r-annotationdbi)))
8025 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
8026 (synopsis "Genome wide annotation for Human")
8027 (description
8028 "This package contains genome-wide annotations for Human, primarily based
8029 on mapping using Entrez Gene identifiers.")
8030 (license license:artistic2.0)))
8031
8032 (define-public r-org-ce-eg-db
8033 (package
8034 (name "r-org-ce-eg-db")
8035 (version "3.5.0")
8036 (source (origin
8037 (method url-fetch)
8038 ;; We cannot use bioconductor-uri here because this tarball is
8039 ;; located under "data/annotation/" instead of "bioc/".
8040 (uri (string-append "https://www.bioconductor.org/packages/"
8041 "release/data/annotation/src/contrib/"
8042 "org.Ce.eg.db_" version ".tar.gz"))
8043 (sha256
8044 (base32
8045 "02ggchixlmzywhsbr0h2ms4dravv7m5964cjxqcjxqs16vjwlbk9"))))
8046 (properties
8047 `((upstream-name . "org.Ce.eg.db")))
8048 (build-system r-build-system)
8049 (propagated-inputs
8050 `(("r-annotationdbi" ,r-annotationdbi)))
8051 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
8052 (synopsis "Genome wide annotation for Worm")
8053 (description
8054 "This package provides mappings from Entrez gene identifiers to various
8055 annotations for the genome of the model worm Caenorhabditis elegans.")
8056 (license license:artistic2.0)))
8057
8058 (define-public r-org-dm-eg-db
8059 (package
8060 (name "r-org-dm-eg-db")
8061 (version "3.5.0")
8062 (source (origin
8063 (method url-fetch)
8064 ;; We cannot use bioconductor-uri here because this tarball is
8065 ;; located under "data/annotation/" instead of "bioc/".
8066 (uri (string-append "https://www.bioconductor.org/packages/"
8067 "release/data/annotation/src/contrib/"
8068 "org.Dm.eg.db_" version ".tar.gz"))
8069 (sha256
8070 (base32
8071 "033qak1d3wwz17va0bh8z8p8arx0aw2va6gm1qfwsvdkj9cd9d7d"))))
8072 (properties
8073 `((upstream-name . "org.Dm.eg.db")))
8074 (build-system r-build-system)
8075 (propagated-inputs
8076 `(("r-annotationdbi" ,r-annotationdbi)))
8077 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
8078 (synopsis "Genome wide annotation for Fly")
8079 (description
8080 "This package provides mappings from Entrez gene identifiers to various
8081 annotations for the genome of the model fruit fly Drosophila melanogaster.")
8082 (license license:artistic2.0)))
8083
8084 (define-public r-org-mm-eg-db
8085 (package
8086 (name "r-org-mm-eg-db")
8087 (version "3.5.0")
8088 (source (origin
8089 (method url-fetch)
8090 ;; We cannot use bioconductor-uri here because this tarball is
8091 ;; located under "data/annotation/" instead of "bioc/".
8092 (uri (string-append "https://www.bioconductor.org/packages/"
8093 "release/data/annotation/src/contrib/"
8094 "org.Mm.eg.db_" version ".tar.gz"))
8095 (sha256
8096 (base32
8097 "11q21p3ki4bn4hb3aix0g775l45l66jmas6m94nfhqqnpjhv4d6g"))))
8098 (properties
8099 `((upstream-name . "org.Mm.eg.db")))
8100 (build-system r-build-system)
8101 (propagated-inputs
8102 `(("r-annotationdbi" ,r-annotationdbi)))
8103 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
8104 (synopsis "Genome wide annotation for Mouse")
8105 (description
8106 "This package provides mappings from Entrez gene identifiers to various
8107 annotations for the genome of the model mouse Mus musculus.")
8108 (license license:artistic2.0)))
8109
8110 (define-public r-seqlogo
8111 (package
8112 (name "r-seqlogo")
8113 (version "1.46.0")
8114 (source
8115 (origin
8116 (method url-fetch)
8117 (uri (bioconductor-uri "seqLogo" version))
8118 (sha256
8119 (base32
8120 "16xvqcdknix9vjm8mrixi6nyfsr45jm844jh1x90m8044lwrsic1"))))
8121 (properties `((upstream-name . "seqLogo")))
8122 (build-system r-build-system)
8123 (home-page "https://bioconductor.org/packages/seqLogo")
8124 (synopsis "Sequence logos for DNA sequence alignments")
8125 (description
8126 "seqLogo takes the position weight matrix of a DNA sequence motif and
8127 plots the corresponding sequence logo as introduced by Schneider and
8128 Stephens (1990).")
8129 (license license:lgpl2.0+)))
8130
8131 (define-public r-bsgenome-hsapiens-ucsc-hg19
8132 (package
8133 (name "r-bsgenome-hsapiens-ucsc-hg19")
8134 (version "1.4.0")
8135 (source (origin
8136 (method url-fetch)
8137 ;; We cannot use bioconductor-uri here because this tarball is
8138 ;; located under "data/annotation/" instead of "bioc/".
8139 (uri (string-append "https://www.bioconductor.org/packages/"
8140 "release/data/annotation/src/contrib/"
8141 "BSgenome.Hsapiens.UCSC.hg19_"
8142 version ".tar.gz"))
8143 (sha256
8144 (base32
8145 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
8146 (properties
8147 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
8148 (build-system r-build-system)
8149 ;; As this package provides little more than a very large data file it
8150 ;; doesn't make sense to build substitutes.
8151 (arguments `(#:substitutable? #f))
8152 (propagated-inputs
8153 `(("r-bsgenome" ,r-bsgenome)))
8154 (home-page
8155 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
8156 (synopsis "Full genome sequences for Homo sapiens")
8157 (description
8158 "This package provides full genome sequences for Homo sapiens as provided
8159 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
8160 (license license:artistic2.0)))
8161
8162 (define-public r-bsgenome-mmusculus-ucsc-mm9
8163 (package
8164 (name "r-bsgenome-mmusculus-ucsc-mm9")
8165 (version "1.4.0")
8166 (source (origin
8167 (method url-fetch)
8168 ;; We cannot use bioconductor-uri here because this tarball is
8169 ;; located under "data/annotation/" instead of "bioc/".
8170 (uri (string-append "https://www.bioconductor.org/packages/"
8171 "release/data/annotation/src/contrib/"
8172 "BSgenome.Mmusculus.UCSC.mm9_"
8173 version ".tar.gz"))
8174 (sha256
8175 (base32
8176 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
8177 (properties
8178 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
8179 (build-system r-build-system)
8180 ;; As this package provides little more than a very large data file it
8181 ;; doesn't make sense to build substitutes.
8182 (arguments `(#:substitutable? #f))
8183 (propagated-inputs
8184 `(("r-bsgenome" ,r-bsgenome)))
8185 (home-page
8186 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
8187 (synopsis "Full genome sequences for Mouse")
8188 (description
8189 "This package provides full genome sequences for Mus musculus (Mouse) as
8190 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
8191 (license license:artistic2.0)))
8192
8193 (define-public r-bsgenome-mmusculus-ucsc-mm10
8194 (package
8195 (name "r-bsgenome-mmusculus-ucsc-mm10")
8196 (version "1.4.0")
8197 (source (origin
8198 (method url-fetch)
8199 ;; We cannot use bioconductor-uri here because this tarball is
8200 ;; located under "data/annotation/" instead of "bioc/".
8201 (uri (string-append "https://www.bioconductor.org/packages/"
8202 "release/data/annotation/src/contrib/"
8203 "BSgenome.Mmusculus.UCSC.mm10_"
8204 version ".tar.gz"))
8205 (sha256
8206 (base32
8207 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
8208 (properties
8209 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
8210 (build-system r-build-system)
8211 ;; As this package provides little more than a very large data file it
8212 ;; doesn't make sense to build substitutes.
8213 (arguments `(#:substitutable? #f))
8214 (propagated-inputs
8215 `(("r-bsgenome" ,r-bsgenome)))
8216 (home-page
8217 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
8218 (synopsis "Full genome sequences for Mouse")
8219 (description
8220 "This package provides full genome sequences for Mus
8221 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
8222 in Biostrings objects.")
8223 (license license:artistic2.0)))
8224
8225 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
8226 (package
8227 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
8228 (version "3.4.0")
8229 (source (origin
8230 (method url-fetch)
8231 ;; We cannot use bioconductor-uri here because this tarball is
8232 ;; located under "data/annotation/" instead of "bioc/".
8233 (uri (string-append "https://www.bioconductor.org/packages/"
8234 "release/data/annotation/src/contrib/"
8235 "TxDb.Mmusculus.UCSC.mm10.knownGene_"
8236 version ".tar.gz"))
8237 (sha256
8238 (base32
8239 "08gava9wsvpcqz51k2sni3pj03n5155v32d9riqbf305nbirqbkb"))))
8240 (properties
8241 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
8242 (build-system r-build-system)
8243 ;; As this package provides little more than a very large data file it
8244 ;; doesn't make sense to build substitutes.
8245 (arguments `(#:substitutable? #f))
8246 (propagated-inputs
8247 `(("r-bsgenome" ,r-bsgenome)
8248 ("r-genomicfeatures" ,r-genomicfeatures)
8249 ("r-annotationdbi" ,r-annotationdbi)))
8250 (home-page
8251 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
8252 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
8253 (description
8254 "This package loads a TxDb object, which is an R interface to
8255 prefabricated databases contained in this package. This package provides
8256 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
8257 based on the knownGene track.")
8258 (license license:artistic2.0)))
8259
8260 (define-public r-bsgenome-celegans-ucsc-ce6
8261 (package
8262 (name "r-bsgenome-celegans-ucsc-ce6")
8263 (version "1.4.0")
8264 (source (origin
8265 (method url-fetch)
8266 ;; We cannot use bioconductor-uri here because this tarball is
8267 ;; located under "data/annotation/" instead of "bioc/".
8268 (uri (string-append "https://www.bioconductor.org/packages/"
8269 "release/data/annotation/src/contrib/"
8270 "BSgenome.Celegans.UCSC.ce6_"
8271 version ".tar.gz"))
8272 (sha256
8273 (base32
8274 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
8275 (properties
8276 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
8277 (build-system r-build-system)
8278 ;; As this package provides little more than a very large data file it
8279 ;; doesn't make sense to build substitutes.
8280 (arguments `(#:substitutable? #f))
8281 (propagated-inputs
8282 `(("r-bsgenome" ,r-bsgenome)))
8283 (home-page
8284 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
8285 (synopsis "Full genome sequences for Worm")
8286 (description
8287 "This package provides full genome sequences for Caenorhabditis
8288 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
8289 objects.")
8290 (license license:artistic2.0)))
8291
8292 (define-public r-bsgenome-celegans-ucsc-ce10
8293 (package
8294 (name "r-bsgenome-celegans-ucsc-ce10")
8295 (version "1.4.0")
8296 (source (origin
8297 (method url-fetch)
8298 ;; We cannot use bioconductor-uri here because this tarball is
8299 ;; located under "data/annotation/" instead of "bioc/".
8300 (uri (string-append "https://www.bioconductor.org/packages/"
8301 "release/data/annotation/src/contrib/"
8302 "BSgenome.Celegans.UCSC.ce10_"
8303 version ".tar.gz"))
8304 (sha256
8305 (base32
8306 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
8307 (properties
8308 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
8309 (build-system r-build-system)
8310 ;; As this package provides little more than a very large data file it
8311 ;; doesn't make sense to build substitutes.
8312 (arguments `(#:substitutable? #f))
8313 (propagated-inputs
8314 `(("r-bsgenome" ,r-bsgenome)))
8315 (home-page
8316 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
8317 (synopsis "Full genome sequences for Worm")
8318 (description
8319 "This package provides full genome sequences for Caenorhabditis
8320 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
8321 objects.")
8322 (license license:artistic2.0)))
8323
8324 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
8325 (package
8326 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
8327 (version "1.4.0")
8328 (source (origin
8329 (method url-fetch)
8330 ;; We cannot use bioconductor-uri here because this tarball is
8331 ;; located under "data/annotation/" instead of "bioc/".
8332 (uri (string-append "https://www.bioconductor.org/packages/"
8333 "release/data/annotation/src/contrib/"
8334 "BSgenome.Dmelanogaster.UCSC.dm3_"
8335 version ".tar.gz"))
8336 (sha256
8337 (base32
8338 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
8339 (properties
8340 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
8341 (build-system r-build-system)
8342 ;; As this package provides little more than a very large data file it
8343 ;; doesn't make sense to build substitutes.
8344 (arguments `(#:substitutable? #f))
8345 (propagated-inputs
8346 `(("r-bsgenome" ,r-bsgenome)))
8347 (home-page
8348 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
8349 (synopsis "Full genome sequences for Fly")
8350 (description
8351 "This package provides full genome sequences for Drosophila
8352 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
8353 Biostrings objects.")
8354 (license license:artistic2.0)))
8355
8356 (define-public r-motifrg
8357 (package
8358 (name "r-motifrg")
8359 (version "1.24.0")
8360 (source
8361 (origin
8362 (method url-fetch)
8363 (uri (bioconductor-uri "motifRG" version))
8364 (sha256
8365 (base32
8366 "0mxhyidkyd2zqahdbg69y20r550z78lvr1r3pbjymnwfg4hcfq1p"))))
8367 (properties `((upstream-name . "motifRG")))
8368 (build-system r-build-system)
8369 (propagated-inputs
8370 `(("r-biostrings" ,r-biostrings)
8371 ("r-bsgenome" ,r-bsgenome)
8372 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8373 ("r-iranges" ,r-iranges)
8374 ("r-seqlogo" ,r-seqlogo)
8375 ("r-xvector" ,r-xvector)))
8376 (home-page "https://bioconductor.org/packages/motifRG")
8377 (synopsis "Discover motifs in high throughput sequencing data")
8378 (description
8379 "This package provides tools for discriminative motif discovery in high
8380 throughput genetic sequencing data sets using regression methods.")
8381 (license license:artistic2.0)))
8382
8383 (define-public r-qtl
8384 (package
8385 (name "r-qtl")
8386 (version "1.42-8")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (string-append "mirror://cran/src/contrib/qtl_"
8391 version ".tar.gz"))
8392 (sha256
8393 (base32
8394 "1l528dwvfpdlr05imrrm4rq32axp6hld9nqm6mm43kn5n7z2f5k6"))))
8395 (build-system r-build-system)
8396 (home-page "http://rqtl.org/")
8397 (synopsis "R package for analyzing QTL experiments in genetics")
8398 (description "R/qtl is an extension library for the R statistics
8399 system. It is used to analyze experimental crosses for identifying
8400 genes contributing to variation in quantitative traits (so-called
8401 quantitative trait loci, QTLs).
8402
8403 Using a hidden Markov model, R/qtl allows to estimate genetic maps, to
8404 identify genotyping errors, and to perform single-QTL and two-QTL,
8405 two-dimensional genome scans.")
8406 (license license:gpl3)))
8407
8408 (define-public r-zlibbioc
8409 (package
8410 (name "r-zlibbioc")
8411 (version "1.26.0")
8412 (source (origin
8413 (method url-fetch)
8414 (uri (bioconductor-uri "zlibbioc" version))
8415 (sha256
8416 (base32
8417 "1rwr0mci8a712q0isavi4jmhm94gwivc4nr8j7r4kw05flp4g7gz"))))
8418 (properties
8419 `((upstream-name . "zlibbioc")))
8420 (build-system r-build-system)
8421 (home-page "https://bioconductor.org/packages/zlibbioc")
8422 (synopsis "Provider for zlib-1.2.5 to R packages")
8423 (description "This package uses the source code of zlib-1.2.5 to create
8424 libraries for systems that do not have these available via other means.")
8425 (license license:artistic2.0)))
8426
8427 (define-public r-r4rna
8428 (package
8429 (name "r-r4rna")
8430 (version "0.1.4")
8431 (source
8432 (origin
8433 (method url-fetch)
8434 (uri (string-append "http://www.e-rna.org/r-chie/files/R4RNA_"
8435 version ".tar.gz"))
8436 (sha256
8437 (base32
8438 "1p0i78wh76jfgmn9jphbwwaz6yy6pipzfg08xs54cxavxg2j81p5"))))
8439 (build-system r-build-system)
8440 (propagated-inputs
8441 `(("r-optparse" ,r-optparse)
8442 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8443 (home-page "http://www.e-rna.org/r-chie/index.cgi")
8444 (synopsis "Analysis framework for RNA secondary structure")
8445 (description
8446 "The R4RNA package aims to be a general framework for the analysis of RNA
8447 secondary structure and comparative analysis in R.")
8448 (license license:gpl3+)))
8449
8450 (define-public r-rhtslib
8451 (package
8452 (name "r-rhtslib")
8453 (version "1.12.1")
8454 (source
8455 (origin
8456 (method url-fetch)
8457 (uri (bioconductor-uri "Rhtslib" version))
8458 (sha256
8459 (base32
8460 "16ywnb8cmr2xabd1i21b92rfziw7xfbv25yv16ipw617p41wa39z"))))
8461 (properties `((upstream-name . "Rhtslib")))
8462 (build-system r-build-system)
8463 (propagated-inputs
8464 `(("r-zlibbioc" ,r-zlibbioc)))
8465 (inputs
8466 `(("zlib" ,zlib)))
8467 (native-inputs
8468 `(("pkg-config" ,pkg-config)))
8469 (home-page "https://github.com/nhayden/Rhtslib")
8470 (synopsis "High-throughput sequencing library as an R package")
8471 (description
8472 "This package provides the HTSlib C library for high-throughput
8473 nucleotide sequence analysis. The package is primarily useful to developers
8474 of other R packages who wish to make use of HTSlib.")
8475 (license license:lgpl2.0+)))
8476
8477 (define-public r-bamsignals
8478 (package
8479 (name "r-bamsignals")
8480 (version "1.12.0")
8481 (source
8482 (origin
8483 (method url-fetch)
8484 (uri (bioconductor-uri "bamsignals" version))
8485 (sha256
8486 (base32
8487 "09l4v414ijkjpkvcv2580v13v18ky196f0lv27ldblpa8bddvmns"))))
8488 (build-system r-build-system)
8489 (propagated-inputs
8490 `(("r-biocgenerics" ,r-biocgenerics)
8491 ("r-genomicranges" ,r-genomicranges)
8492 ("r-iranges" ,r-iranges)
8493 ("r-rcpp" ,r-rcpp)
8494 ("r-rhtslib" ,r-rhtslib)
8495 ("r-zlibbioc" ,r-zlibbioc)))
8496 (inputs
8497 `(("zlib" ,zlib)))
8498 (home-page "https://bioconductor.org/packages/bamsignals")
8499 (synopsis "Extract read count signals from bam files")
8500 (description
8501 "This package allows to efficiently obtain count vectors from indexed bam
8502 files. It counts the number of nucleotide sequence reads in given genomic
8503 ranges and it computes reads profiles and coverage profiles. It also handles
8504 paired-end data.")
8505 (license license:gpl2+)))
8506
8507 (define-public r-rcas
8508 (package
8509 (name "r-rcas")
8510 (version "1.3.4")
8511 (source (origin
8512 (method url-fetch)
8513 (uri (string-append "https://github.com/BIMSBbioinfo/RCAS/archive/v"
8514 version ".tar.gz"))
8515 (file-name (string-append name "-" version ".tar.gz"))
8516 (sha256
8517 (base32
8518 "1qgc7vi6fpzl440yg7jhiycg5q336kd4pxqzx10yx2zcq3bq3msg"))))
8519 (build-system r-build-system)
8520 (native-inputs
8521 `(("r-knitr" ,r-knitr)
8522 ("r-testthat" ,r-testthat)
8523 ;; During vignette building knitr checks that "pandoc-citeproc"
8524 ;; is in the PATH.
8525 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc-with-pandoc-1)))
8526 (propagated-inputs
8527 `(("r-data-table" ,r-data-table)
8528 ("r-biomart" ,r-biomart)
8529 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
8530 ("r-org-ce-eg-db" ,r-org-ce-eg-db)
8531 ("r-org-dm-eg-db" ,r-org-dm-eg-db)
8532 ("r-org-mm-eg-db" ,r-org-mm-eg-db)
8533 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8534 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
8535 ("r-bsgenome-celegans-ucsc-ce10" ,r-bsgenome-celegans-ucsc-ce10)
8536 ("r-bsgenome-dmelanogaster-ucsc-dm3" ,r-bsgenome-dmelanogaster-ucsc-dm3)
8537 ("r-topgo" ,r-topgo)
8538 ("r-dt" ,r-dt)
8539 ("r-pbapply" ,r-pbapply)
8540 ("r-plotly" ,r-plotly)
8541 ("r-plotrix" ,r-plotrix)
8542 ("r-motifrg" ,r-motifrg)
8543 ("r-genomation" ,r-genomation)
8544 ("r-genomicfeatures" ,r-genomicfeatures)
8545 ("r-rtracklayer" ,r-rtracklayer)
8546 ("r-rmarkdown" ,r-rmarkdown)))
8547 (synopsis "RNA-centric annotation system")
8548 (description
8549 "RCAS aims to be a standalone RNA-centric annotation system that provides
8550 intuitive reports and publication-ready graphics. This package provides the R
8551 library implementing most of the pipeline's features.")
8552 (home-page "https://github.com/BIMSBbioinfo/RCAS")
8553 (license license:artistic2.0)))
8554
8555 (define-public rcas-web
8556 (package
8557 (name "rcas-web")
8558 (version "0.0.4")
8559 (source
8560 (origin
8561 (method url-fetch)
8562 (uri (string-append "https://github.com/BIMSBbioinfo/rcas-web/"
8563 "releases/download/v" version
8564 "/rcas-web-" version ".tar.gz"))
8565 (sha256
8566 (base32
8567 "1p16frfys41a8yaa4gkm457nzkqhqs2pc3lkac0ds457w9w5j1gm"))))
8568 (build-system gnu-build-system)
8569 (arguments
8570 `(#:phases
8571 (modify-phases %standard-phases
8572 (add-after 'install 'wrap-executable
8573 (lambda* (#:key inputs outputs #:allow-other-keys)
8574 (let* ((out (assoc-ref outputs "out"))
8575 (json (assoc-ref inputs "guile-json"))
8576 (redis (assoc-ref inputs "guile-redis"))
8577 (path (string-append
8578 json "/share/guile/site/2.2:"
8579 redis "/share/guile/site/2.2")))
8580 (wrap-program (string-append out "/bin/rcas-web")
8581 `("GUILE_LOAD_PATH" ":" = (,path))
8582 `("GUILE_LOAD_COMPILED_PATH" ":" = (,path))
8583 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))))
8584 #t)))))
8585 (inputs
8586 `(("r-minimal" ,r-minimal)
8587 ("r-rcas" ,r-rcas)
8588 ("guile-next" ,guile-2.2)
8589 ("guile-json" ,guile-json)
8590 ("guile-redis" ,guile2.2-redis)))
8591 (native-inputs
8592 `(("pkg-config" ,pkg-config)))
8593 (home-page "https://github.com/BIMSBbioinfo/rcas-web")
8594 (synopsis "Web interface for RNA-centric annotation system (RCAS)")
8595 (description "This package provides a simple web interface for the
8596 @dfn{RNA-centric annotation system} (RCAS).")
8597 (license license:agpl3+)))
8598
8599 (define-public r-mutationalpatterns
8600 (package
8601 (name "r-mutationalpatterns")
8602 (version "1.6.1")
8603 (source
8604 (origin
8605 (method url-fetch)
8606 (uri (bioconductor-uri "MutationalPatterns" version))
8607 (sha256
8608 (base32
8609 "1yq7351j42mjxn8fd3c5bdxzb2l5s4lvqhjdvv4rwj4f600n6wj9"))))
8610 (build-system r-build-system)
8611 (propagated-inputs
8612 `(("r-biocgenerics" ,r-biocgenerics)
8613 ("r-biostrings" ,r-biostrings)
8614 ;; These two packages are suggested packages
8615 ("r-bsgenome-hsapiens-1000g" ,r-bsgenome-hsapiens-1000genomes-hs37d5)
8616 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8617 ("r-genomicranges" ,r-genomicranges)
8618 ("r-genomeinfodb" ,r-genomeinfodb)
8619 ("r-ggplot2" ,r-ggplot2)
8620 ("r-iranges" ,r-iranges)
8621 ("r-nmf" ,r-nmf)
8622 ("r-plyr" ,r-plyr)
8623 ("r-pracma" ,r-pracma)
8624 ("r-reshape2" ,r-reshape2)
8625 ("r-cowplot" ,r-cowplot)
8626 ("r-ggdendro" ,r-ggdendro)
8627 ("r-s4vectors" ,r-s4vectors)
8628 ("r-summarizedexperiment" ,r-summarizedexperiment)
8629 ("r-variantannotation" ,r-variantannotation)))
8630 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
8631 (synopsis "Extract and visualize mutational patterns in genomic data")
8632 (description "This package provides an extensive toolset for the
8633 characterization and visualization of a wide range of mutational patterns
8634 in SNV base substitution data.")
8635 (license license:expat)))
8636
8637 (define-public r-wgcna
8638 (package
8639 (name "r-wgcna")
8640 (version "1.63")
8641 (source
8642 (origin
8643 (method url-fetch)
8644 (uri (cran-uri "WGCNA" version))
8645 (sha256
8646 (base32
8647 "1225dqm68bynkmklnsxdqdd3zqrpzbvqwyly8ibxmk75z33xz309"))))
8648 (properties `((upstream-name . "WGCNA")))
8649 (build-system r-build-system)
8650 (propagated-inputs
8651 `(("r-annotationdbi" ,r-annotationdbi)
8652 ("r-doparallel" ,r-doparallel)
8653 ("r-dynamictreecut" ,r-dynamictreecut)
8654 ("r-fastcluster" ,r-fastcluster)
8655 ("r-foreach" ,r-foreach)
8656 ("r-go-db" ,r-go-db)
8657 ("r-hmisc" ,r-hmisc)
8658 ("r-impute" ,r-impute)
8659 ("r-rcpp" ,r-rcpp)
8660 ("r-robust" ,r-robust)
8661 ("r-survival" ,r-survival)
8662 ("r-matrixstats" ,r-matrixstats)
8663 ("r-preprocesscore" ,r-preprocesscore)))
8664 (home-page
8665 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
8666 (synopsis "Weighted correlation network analysis")
8667 (description
8668 "This package provides functions necessary to perform Weighted
8669 Correlation Network Analysis on high-dimensional data. It includes functions
8670 for rudimentary data cleaning, construction and summarization of correlation
8671 networks, module identification and functions for relating both variables and
8672 modules to sample traits. It also includes a number of utility functions for
8673 data manipulation and visualization.")
8674 (license license:gpl2+)))
8675
8676 (define-public r-chipkernels
8677 (let ((commit "c9cfcacb626b1221094fb3490ea7bac0fd625372")
8678 (revision "1"))
8679 (package
8680 (name "r-chipkernels")
8681 (version (string-append "1.1-" revision "." (string-take commit 9)))
8682 (source
8683 (origin
8684 (method git-fetch)
8685 (uri (git-reference
8686 (url "https://github.com/ManuSetty/ChIPKernels.git")
8687 (commit commit)))
8688 (file-name (string-append name "-" version))
8689 (sha256
8690 (base32
8691 "14bj5qhjm1hsm9ay561nfbqi9wxsa7y487df2idsaaf6z10nw4v0"))))
8692 (build-system r-build-system)
8693 (propagated-inputs
8694 `(("r-iranges" ,r-iranges)
8695 ("r-xvector" ,r-xvector)
8696 ("r-biostrings" ,r-biostrings)
8697 ("r-bsgenome" ,r-bsgenome)
8698 ("r-gtools" ,r-gtools)
8699 ("r-genomicranges" ,r-genomicranges)
8700 ("r-sfsmisc" ,r-sfsmisc)
8701 ("r-kernlab" ,r-kernlab)
8702 ("r-s4vectors" ,r-s4vectors)
8703 ("r-biocgenerics" ,r-biocgenerics)))
8704 (home-page "https://github.com/ManuSetty/ChIPKernels")
8705 (synopsis "Build string kernels for DNA Sequence analysis")
8706 (description "ChIPKernels is an R package for building different string
8707 kernels used for DNA Sequence analysis. A dictionary of the desired kernel
8708 must be built and this dictionary can be used for determining kernels for DNA
8709 Sequences.")
8710 (license license:gpl2+))))
8711
8712 (define-public r-seqgl
8713 (package
8714 (name "r-seqgl")
8715 (version "1.1.4")
8716 (source
8717 (origin
8718 (method url-fetch)
8719 (uri (string-append "https://github.com/ManuSetty/SeqGL/"
8720 "archive/" version ".tar.gz"))
8721 (file-name (string-append name "-" version ".tar.gz"))
8722 (sha256
8723 (base32
8724 "0pnk1p3sci5yipyc8xnb6jbmydpl80fld927xgnbcv104hy8h8yh"))))
8725 (build-system r-build-system)
8726 (propagated-inputs
8727 `(("r-biostrings" ,r-biostrings)
8728 ("r-chipkernels" ,r-chipkernels)
8729 ("r-genomicranges" ,r-genomicranges)
8730 ("r-spams" ,r-spams)
8731 ("r-wgcna" ,r-wgcna)
8732 ("r-fastcluster" ,r-fastcluster)))
8733 (home-page "https://github.com/ManuSetty/SeqGL")
8734 (synopsis "Group lasso for Dnase/ChIP-seq data")
8735 (description "SeqGL is a group lasso based algorithm to extract
8736 transcription factor sequence signals from ChIP, DNase and ATAC-seq profiles.
8737 This package presents a method which uses group lasso to discriminate between
8738 bound and non bound genomic regions to accurately identify transcription
8739 factors bound at the specific regions.")
8740 (license license:gpl2+)))
8741
8742 (define-public r-gkmsvm
8743 (package
8744 (name "r-gkmsvm")
8745 (version "0.79.0")
8746 (source
8747 (origin
8748 (method url-fetch)
8749 (uri (cran-uri "gkmSVM" version))
8750 (sha256
8751 (base32
8752 "04dakbgfvfalz4rm4fvvybp506dn5fbj5g86ybfhrc6wywjllsz3"))))
8753 (properties `((upstream-name . "gkmSVM")))
8754 (build-system r-build-system)
8755 (propagated-inputs
8756 `(("r-biocgenerics" ,r-biocgenerics)
8757 ("r-biostrings" ,r-biostrings)
8758 ("r-genomeinfodb" ,r-genomeinfodb)
8759 ("r-genomicranges" ,r-genomicranges)
8760 ("r-iranges" ,r-iranges)
8761 ("r-kernlab" ,r-kernlab)
8762 ("r-rcpp" ,r-rcpp)
8763 ("r-rocr" ,r-rocr)
8764 ("r-rtracklayer" ,r-rtracklayer)
8765 ("r-s4vectors" ,r-s4vectors)
8766 ("r-seqinr" ,r-seqinr)))
8767 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
8768 (synopsis "Gapped-kmer support vector machine")
8769 (description
8770 "This R package provides tools for training gapped-kmer SVM classifiers
8771 for DNA and protein sequences. This package supports several sequence
8772 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
8773 (license license:gpl2+)))
8774
8775 (define-public r-tximport
8776 (package
8777 (name "r-tximport")
8778 (version "1.8.0")
8779 (source (origin
8780 (method url-fetch)
8781 (uri (bioconductor-uri "tximport" version))
8782 (sha256
8783 (base32
8784 "1qjc7ah9dzccpvcjrp9k4qnaz13x6kvy1c1xpdj503km6k528lip"))))
8785 (build-system r-build-system)
8786 (home-page "https://bioconductor.org/packages/tximport")
8787 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
8788 (description
8789 "This package provides tools to import transcript-level abundance,
8790 estimated counts and transcript lengths, and to summarize them into matrices
8791 for use with downstream gene-level analysis packages. Average transcript
8792 length, weighted by sample-specific transcript abundance estimates, is
8793 provided as a matrix which can be used as an offset for different expression
8794 of gene-level counts.")
8795 (license license:gpl2+)))
8796
8797 (define-public r-rhdf5
8798 (package
8799 (name "r-rhdf5")
8800 (version "2.24.0")
8801 (source (origin
8802 (method url-fetch)
8803 (uri (bioconductor-uri "rhdf5" version))
8804 (sha256
8805 (base32
8806 "15cmmchhk8bnp94gxg0zk9qyzdjx5kv16dzpbnb62mkq7ydmifx6"))))
8807 (build-system r-build-system)
8808 (propagated-inputs
8809 `(("r-rhdf5lib" ,r-rhdf5lib)))
8810 (inputs
8811 `(("zlib" ,zlib)))
8812 (home-page "https://bioconductor.org/packages/rhdf5")
8813 (synopsis "HDF5 interface to R")
8814 (description
8815 "This R/Bioconductor package provides an interface between HDF5 and R.
8816 HDF5's main features are the ability to store and access very large and/or
8817 complex datasets and a wide variety of metadata on mass storage (disk) through
8818 a completely portable file format. The rhdf5 package is thus suited for the
8819 exchange of large and/or complex datasets between R and other software
8820 package, and for letting R applications work on datasets that are larger than
8821 the available RAM.")
8822 (license license:artistic2.0)))
8823
8824 (define-public r-annotationfilter
8825 (package
8826 (name "r-annotationfilter")
8827 (version "1.4.0")
8828 (source (origin
8829 (method url-fetch)
8830 (uri (bioconductor-uri "AnnotationFilter" version))
8831 (sha256
8832 (base32
8833 "1w8ypfdz4g7vnwfrvnhjcpm8waciqyq2cn883ajdwg4vv7a5mj9a"))))
8834 (properties
8835 `((upstream-name . "AnnotationFilter")))
8836 (build-system r-build-system)
8837 (propagated-inputs
8838 `(("r-genomicranges" ,r-genomicranges)
8839 ("r-lazyeval" ,r-lazyeval)))
8840 (home-page "https://github.com/Bioconductor/AnnotationFilter")
8841 (synopsis "Facilities for filtering Bioconductor annotation resources")
8842 (description
8843 "This package provides classes and other infrastructure to implement
8844 filters for manipulating Bioconductor annotation resources. The filters are
8845 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
8846 (license license:artistic2.0)))
8847
8848 (define-public emboss
8849 (package
8850 (name "emboss")
8851 (version "6.5.7")
8852 (source (origin
8853 (method url-fetch)
8854 (uri (string-append "ftp://emboss.open-bio.org/pub/EMBOSS/old/"
8855 (version-major+minor version) ".0/"
8856 "EMBOSS-" version ".tar.gz"))
8857 (sha256
8858 (base32
8859 "0vsmz96gc411yj2iyzdrsmg4l2n1nhgmp7vrgzlxx3xixv9xbf0q"))))
8860 (build-system gnu-build-system)
8861 (arguments
8862 `(#:configure-flags
8863 (list (string-append "--with-hpdf="
8864 (assoc-ref %build-inputs "libharu")))
8865 #:phases
8866 (modify-phases %standard-phases
8867 (add-after 'unpack 'fix-checks
8868 (lambda _
8869 ;; The PNGDRIVER tests check for the presence of libgd, libpng
8870 ;; and zlib, but assume that they are all found at the same
8871 ;; prefix.
8872 (substitute* "configure.in"
8873 (("CHECK_PNGDRIVER")
8874 "LIBS=\"$LIBS -lgd -lpng -lz -lm\"
8875 AC_DEFINE([PLD_png], [1], [Define to 1 if PNG support is available])
8876 AM_CONDITIONAL(AMPNG, true)"))
8877 #t))
8878 (add-after 'fix-checks 'disable-update-check
8879 (lambda _
8880 ;; At build time there is no connection to the Internet, so
8881 ;; looking for updates will not work.
8882 (substitute* "Makefile.am"
8883 (("\\$\\(bindir\\)/embossupdate") ""))
8884 #t))
8885 (add-after 'disable-update-check 'autogen
8886 (lambda _ (zero? (system* "autoreconf" "-vif")))))))
8887 (inputs
8888 `(("perl" ,perl)
8889 ("libpng" ,libpng)
8890 ("gd" ,gd)
8891 ("libx11" ,libx11)
8892 ("libharu" ,libharu)
8893 ("zlib" ,zlib)))
8894 (native-inputs
8895 `(("autoconf" ,autoconf)
8896 ("automake" ,automake)
8897 ("libtool" ,libtool)
8898 ("pkg-config" ,pkg-config)))
8899 (home-page "http://emboss.sourceforge.net")
8900 (synopsis "Molecular biology analysis suite")
8901 (description "EMBOSS is the \"European Molecular Biology Open Software
8902 Suite\". EMBOSS is an analysis package specially developed for the needs of
8903 the molecular biology (e.g. EMBnet) user community. The software
8904 automatically copes with data in a variety of formats and even allows
8905 transparent retrieval of sequence data from the web. It also provides a
8906 number of libraries for the development of software in the field of molecular
8907 biology. EMBOSS also integrates a range of currently available packages and
8908 tools for sequence analysis into a seamless whole.")
8909 (license license:gpl2+)))
8910
8911 (define-public bits
8912 (let ((revision "1")
8913 (commit "3cc4567896d9d6442923da944beb704750a08d2d"))
8914 (package
8915 (name "bits")
8916 ;; The version is 2.13.0 even though no release archives have been
8917 ;; published as yet.
8918 (version (string-append "2.13.0-" revision "." (string-take commit 9)))
8919 (source (origin
8920 (method git-fetch)
8921 (uri (git-reference
8922 (url "https://github.com/arq5x/bits.git")
8923 (commit commit)))
8924 (file-name (string-append name "-" version "-checkout"))
8925 (sha256
8926 (base32
8927 "17n2kffk4kmhivd8c98g2vr6y1s23vbg4sxlxs689wni66797hbs"))))
8928 (build-system gnu-build-system)
8929 (arguments
8930 `(#:tests? #f ;no tests included
8931 #:phases
8932 (modify-phases %standard-phases
8933 (delete 'configure)
8934 (add-after 'unpack 'remove-cuda
8935 (lambda _
8936 (substitute* "Makefile"
8937 ((".*_cuda") "")
8938 (("(bits_test_intersections) \\\\" _ match) match))
8939 #t))
8940 (replace 'install
8941 (lambda* (#:key outputs #:allow-other-keys)
8942 (copy-recursively
8943 "bin" (string-append (assoc-ref outputs "out") "/bin"))
8944 #t)))))
8945 (inputs
8946 `(("gsl" ,gsl)
8947 ("zlib" ,zlib)))
8948 (home-page "https://github.com/arq5x/bits")
8949 (synopsis "Implementation of binary interval search algorithm")
8950 (description "This package provides an implementation of the
8951 BITS (Binary Interval Search) algorithm, an approach to interval set
8952 intersection. It is especially suited for the comparison of diverse genomic
8953 datasets and the exploration of large datasets of genome
8954 intervals (e.g. genes, sequence alignments).")
8955 (license license:gpl2))))
8956
8957 (define-public piranha
8958 ;; There is no release tarball for the latest version. The latest commit is
8959 ;; older than one year at the time of this writing.
8960 (let ((revision "1")
8961 (commit "0466d364b71117d01e4471b74c514436cc281233"))
8962 (package
8963 (name "piranha")
8964 (version (string-append "1.2.1-" revision "." (string-take commit 9)))
8965 (source (origin
8966 (method git-fetch)
8967 (uri (git-reference
8968 (url "https://github.com/smithlabcode/piranha.git")
8969 (commit commit)))
8970 (file-name (git-file-name name version))
8971 (sha256
8972 (base32
8973 "117dc0zf20c61jam69sk4abl57ah6yi6i7qra7d7y5zrbgk12q5n"))))
8974 (build-system gnu-build-system)
8975 (arguments
8976 `(#:test-target "test"
8977 #:phases
8978 (modify-phases %standard-phases
8979 (add-after 'unpack 'copy-smithlab-cpp
8980 (lambda* (#:key inputs #:allow-other-keys)
8981 (for-each (lambda (file)
8982 (install-file file "./src/smithlab_cpp/"))
8983 (find-files (assoc-ref inputs "smithlab-cpp")))
8984 #t))
8985 (add-after 'install 'install-to-store
8986 (lambda* (#:key outputs #:allow-other-keys)
8987 (let* ((out (assoc-ref outputs "out"))
8988 (bin (string-append out "/bin")))
8989 (for-each (lambda (file)
8990 (install-file file bin))
8991 (find-files "bin" ".*")))
8992 #t)))
8993 #:configure-flags
8994 (list (string-append "--with-bam_tools_headers="
8995 (assoc-ref %build-inputs "bamtools") "/include/bamtools")
8996 (string-append "--with-bam_tools_library="
8997 (assoc-ref %build-inputs "bamtools") "/lib/bamtools"))))
8998 (inputs
8999 `(("bamtools" ,bamtools)
9000 ("samtools" ,samtools-0.1)
9001 ("gsl" ,gsl)
9002 ("smithlab-cpp"
9003 ,(let ((commit "3723e2db438c51501d0423429ff396c3035ba46a"))
9004 (origin
9005 (method git-fetch)
9006 (uri (git-reference
9007 (url "https://github.com/smithlabcode/smithlab_cpp.git")
9008 (commit commit)))
9009 (file-name (string-append "smithlab_cpp-" commit "-checkout"))
9010 (sha256
9011 (base32
9012 "0l4gvbwslw5ngziskja41c00x1r06l3yidv7y0xw9djibhykzy0g")))))))
9013 (native-inputs
9014 `(("python" ,python-2)))
9015 (home-page "https://github.com/smithlabcode/piranha")
9016 (synopsis "Peak-caller for CLIP-seq and RIP-seq data")
9017 (description
9018 "Piranha is a peak-caller for genomic data produced by CLIP-seq and
9019 RIP-seq experiments. It takes input in BED or BAM format and identifies
9020 regions of statistically significant read enrichment. Additional covariates
9021 may optionally be provided to further inform the peak-calling process.")
9022 (license license:gpl3+))))
9023
9024 (define-public pepr
9025 (package
9026 (name "pepr")
9027 (version "1.0.9")
9028 (source (origin
9029 (method url-fetch)
9030 (uri (string-append "https://pypi.python.org/packages/source/P"
9031 "/PePr/PePr-" version ".tar.gz"))
9032 (sha256
9033 (base32
9034 "0qxjfdpl1b1y53nccws2d85f6k74zwmx8y8sd9rszcqhfayx6gdx"))))
9035 (build-system python-build-system)
9036 (arguments
9037 `(#:python ,python-2 ; python2 only
9038 #:tests? #f)) ; no tests included
9039 (propagated-inputs
9040 `(("python2-numpy" ,python2-numpy)
9041 ("python2-scipy" ,python2-scipy)
9042 ("python2-pysam" ,python2-pysam)))
9043 (home-page "https://github.com/shawnzhangyx/PePr")
9044 (synopsis "Peak-calling and prioritization pipeline for ChIP-Seq data")
9045 (description
9046 "PePr is a ChIP-Seq peak calling or differential binding analysis tool
9047 that is primarily designed for data with biological replicates. It uses a
9048 negative binomial distribution to model the read counts among the samples in
9049 the same group, and look for consistent differences between ChIP and control
9050 group or two ChIP groups run under different conditions.")
9051 (license license:gpl3+)))
9052
9053 (define-public filevercmp
9054 (let ((commit "1a9b779b93d0b244040274794d402106907b71b7"))
9055 (package
9056 (name "filevercmp")
9057 (version (string-append "0-1." (string-take commit 7)))
9058 (source (origin
9059 (method url-fetch)
9060 (uri (string-append "https://github.com/ekg/filevercmp/archive/"
9061 commit ".tar.gz"))
9062 (file-name (string-append name "-" version ".tar.gz"))
9063 (sha256
9064 (base32 "0yp5jswf5j2pqc6517x277s4s6h1ss99v57kxw9gy0jkfl3yh450"))))
9065 (build-system gnu-build-system)
9066 (arguments
9067 `(#:tests? #f ; There are no tests to run.
9068 #:phases
9069 (modify-phases %standard-phases
9070 (delete 'configure) ; There is no configure phase.
9071 (replace 'install
9072 (lambda* (#:key outputs #:allow-other-keys)
9073 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
9074 (install-file "filevercmp" bin)))))))
9075 (home-page "https://github.com/ekg/filevercmp")
9076 (synopsis "This program compares version strings")
9077 (description "This program compares version strings. It intends to be a
9078 replacement for strverscmp.")
9079 (license license:gpl3+))))
9080
9081 (define-public multiqc
9082 (package
9083 (name "multiqc")
9084 (version "1.5")
9085 (source
9086 (origin
9087 (method url-fetch)
9088 (uri (pypi-uri "multiqc" version))
9089 (sha256
9090 (base32
9091 "02iihfl0w0hpnr4pa0sbd1y9qxrg3ycyhjp5lidkcrqh1lmzs3zy"))))
9092 (build-system python-build-system)
9093 (propagated-inputs
9094 `(("python-jinja2" ,python-jinja2)
9095 ("python-simplejson" ,python-simplejson)
9096 ("python-pyyaml" ,python-pyyaml)
9097 ("python-click" ,python-click)
9098 ("python-spectra" ,python-spectra)
9099 ("python-requests" ,python-requests)
9100 ("python-markdown" ,python-markdown)
9101 ("python-lzstring" ,python-lzstring)
9102 ("python-matplotlib" ,python-matplotlib)
9103 ("python-numpy" ,python-numpy)
9104 ;; MultQC checks for the presence of nose at runtime.
9105 ("python-nose" ,python-nose)))
9106 (arguments
9107 `(#:phases
9108 (modify-phases %standard-phases
9109 (add-after 'unpack 'relax-requirements
9110 (lambda _
9111 (substitute* "setup.py"
9112 ;; MultiQC 1.5 ‘requires’ a version of python-matplotlib older
9113 ;; than the one in Guix, but should work fine with 2.2.2.
9114 ;; See <https://github.com/ewels/MultiQC/issues/725> and
9115 ;; <https://github.com/ewels/MultiQC/issues/732> for details.
9116 (("['\"]matplotlib.*?['\"]")
9117 "'matplotlib'"))
9118 #t)))))
9119 (home-page "http://multiqc.info")
9120 (synopsis "Aggregate bioinformatics analysis reports")
9121 (description
9122 "MultiQC is a tool to aggregate bioinformatics results across many
9123 samples into a single report. It contains modules for a large number of
9124 common bioinformatics tools.")
9125 (license license:gpl3+)))
9126
9127 (define-public r-chipseq
9128 (package
9129 (name "r-chipseq")
9130 (version "1.30.0")
9131 (source
9132 (origin
9133 (method url-fetch)
9134 (uri (bioconductor-uri "chipseq" version))
9135 (sha256
9136 (base32
9137 "09f8dgl5ni75qkf7nvvppwr3irpplv4xb3ks59ld7l8i2mplcrx7"))))
9138 (build-system r-build-system)
9139 (propagated-inputs
9140 `(("r-biocgenerics" ,r-biocgenerics)
9141 ("r-genomicranges" ,r-genomicranges)
9142 ("r-iranges" ,r-iranges)
9143 ("r-lattice" ,r-lattice)
9144 ("r-s4vectors" ,r-s4vectors)
9145 ("r-shortread" ,r-shortread)))
9146 (home-page "https://bioconductor.org/packages/chipseq")
9147 (synopsis "Package for analyzing ChIPseq data")
9148 (description
9149 "This package provides tools for processing short read data from ChIPseq
9150 experiments.")
9151 (license license:artistic2.0)))
9152
9153 (define-public r-copyhelper
9154 (package
9155 (name "r-copyhelper")
9156 (version "1.6.0")
9157 (source
9158 (origin
9159 (method url-fetch)
9160 (uri (string-append "https://bioconductor.org/packages/release/"
9161 "data/experiment/src/contrib/CopyhelpeR_"
9162 version ".tar.gz"))
9163 (sha256
9164 (base32
9165 "0x7cyynjmxls9as2gg0iyp9x5fpalxmdjq914ss7i84i9zyk5bhq"))))
9166 (properties `((upstream-name . "CopyhelpeR")))
9167 (build-system r-build-system)
9168 (home-page "https://bioconductor.org/packages/CopyhelpeR/")
9169 (synopsis "Helper files for CopywriteR")
9170 (description
9171 "This package contains the helper files that are required to run the
9172 Bioconductor package CopywriteR. It contains pre-assembled 1kb bin GC-content
9173 and mappability files for the reference genomes hg18, hg19, hg38, mm9 and
9174 mm10. In addition, it contains a blacklist filter to remove regions that
9175 display copy number variation. Files are stored as GRanges objects from the
9176 GenomicRanges Bioconductor package.")
9177 (license license:gpl2)))
9178
9179 (define-public r-copywriter
9180 (package
9181 (name "r-copywriter")
9182 (version "2.12.0")
9183 (source
9184 (origin
9185 (method url-fetch)
9186 (uri (bioconductor-uri "CopywriteR" version))
9187 (sha256
9188 (base32
9189 "0b7xwq1va2zclb54f07c5ipmmq4iv2hrlph3j93jz5hmyayv50z3"))))
9190 (properties `((upstream-name . "CopywriteR")))
9191 (build-system r-build-system)
9192 (propagated-inputs
9193 `(("r-biocparallel" ,r-biocparallel)
9194 ("r-chipseq" ,r-chipseq)
9195 ("r-copyhelper" ,r-copyhelper)
9196 ("r-data-table" ,r-data-table)
9197 ("r-dnacopy" ,r-dnacopy)
9198 ("r-futile-logger" ,r-futile-logger)
9199 ("r-genomeinfodb" ,r-genomeinfodb)
9200 ("r-genomicalignments" ,r-genomicalignments)
9201 ("r-genomicranges" ,r-genomicranges)
9202 ("r-gtools" ,r-gtools)
9203 ("r-iranges" ,r-iranges)
9204 ("r-matrixstats" ,r-matrixstats)
9205 ("r-rsamtools" ,r-rsamtools)
9206 ("r-s4vectors" ,r-s4vectors)))
9207 (home-page "https://github.com/PeeperLab/CopywriteR")
9208 (synopsis "Copy number information from targeted sequencing")
9209 (description
9210 "CopywriteR extracts DNA copy number information from targeted sequencing
9211 by utilizing off-target reads. It allows for extracting uniformly distributed
9212 copy number information, can be used without reference, and can be applied to
9213 sequencing data obtained from various techniques including chromatin
9214 immunoprecipitation and target enrichment on small gene panels. Thereby,
9215 CopywriteR constitutes a widely applicable alternative to available copy
9216 number detection tools.")
9217 (license license:gpl2)))
9218
9219 (define-public r-methylkit
9220 (package
9221 (name "r-methylkit")
9222 (version "1.6.0")
9223 (source (origin
9224 (method url-fetch)
9225 (uri (bioconductor-uri "methylKit" version))
9226 (sha256
9227 (base32
9228 "01qmndm5z21p78w7xfp8ynan6jpfg54rnkpj8b86rc081qh0sgjj"))))
9229 (properties `((upstream-name . "methylKit")))
9230 (build-system r-build-system)
9231 (propagated-inputs
9232 `(("r-data-table" ,r-data-table)
9233 ("r-emdbook" ,r-emdbook)
9234 ("r-fastseg" ,r-fastseg)
9235 ("r-genomeinfodb" ,r-genomeinfodb)
9236 ("r-genomicranges" ,r-genomicranges)
9237 ("r-gtools" ,r-gtools)
9238 ("r-iranges" ,r-iranges)
9239 ("r-kernsmooth" ,r-kernsmooth)
9240 ("r-limma" ,r-limma)
9241 ("r-mclust" ,r-mclust)
9242 ("r-qvalue" ,r-qvalue)
9243 ("r-r-utils" ,r-r-utils)
9244 ("r-rcpp" ,r-rcpp)
9245 ("r-rhtslib" ,r-rhtslib)
9246 ("r-rsamtools" ,r-rsamtools)
9247 ("r-rtracklayer" ,r-rtracklayer)
9248 ("r-s4vectors" ,r-s4vectors)
9249 ("r-zlibbioc" ,r-zlibbioc)))
9250 (inputs
9251 `(("zlib" ,zlib)))
9252 (home-page "https://github.com/al2na/methylKit")
9253 (synopsis
9254 "DNA methylation analysis from high-throughput bisulfite sequencing results")
9255 (description
9256 "MethylKit is an R package for DNA methylation analysis and annotation
9257 from high-throughput bisulfite sequencing. The package is designed to deal
9258 with sequencing data from @dfn{Reduced representation bisulfite
9259 sequencing} (RRBS) and its variants, but also target-capture methods and whole
9260 genome bisulfite sequencing. It also has functions to analyze base-pair
9261 resolution 5hmC data from experimental protocols such as oxBS-Seq and
9262 TAB-Seq.")
9263 (license license:artistic2.0)))
9264
9265 (define-public r-sva
9266 (package
9267 (name "r-sva")
9268 (version "3.28.0")
9269 (source
9270 (origin
9271 (method url-fetch)
9272 (uri (bioconductor-uri "sva" version))
9273 (sha256
9274 (base32
9275 "0a3jqbz0jp1jxrnjkqfpmca840yqcdwxprdl608bzzx2zb4jl52s"))))
9276 (build-system r-build-system)
9277 (propagated-inputs
9278 `(("r-genefilter" ,r-genefilter)
9279 ("r-mgcv" ,r-mgcv)
9280 ("r-biocparallel" ,r-biocparallel)
9281 ("r-matrixstats" ,r-matrixstats)
9282 ("r-limma" ,r-limma)))
9283 (home-page "https://bioconductor.org/packages/sva")
9284 (synopsis "Surrogate variable analysis")
9285 (description
9286 "This package contains functions for removing batch effects and other
9287 unwanted variation in high-throughput experiment. It also contains functions
9288 for identifying and building surrogate variables for high-dimensional data
9289 sets. Surrogate variables are covariates constructed directly from
9290 high-dimensional data like gene expression/RNA sequencing/methylation/brain
9291 imaging data that can be used in subsequent analyses to adjust for unknown,
9292 unmodeled, or latent sources of noise.")
9293 (license license:artistic2.0)))
9294
9295 (define-public r-seqminer
9296 (package
9297 (name "r-seqminer")
9298 (version "6.0")
9299 (source
9300 (origin
9301 (method url-fetch)
9302 (uri (cran-uri "seqminer" version))
9303 (sha256
9304 (base32
9305 "057j1l6dip35l1aivilapl2zv9db677b3di2pb3sfgq2sxg0ps3l"))))
9306 (build-system r-build-system)
9307 (inputs
9308 `(("zlib" ,zlib)))
9309 (home-page "http://seqminer.genomic.codes")
9310 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
9311 (description
9312 "This package provides tools to integrate nucleotide sequencing
9313 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
9314 ;; Any version of the GPL is acceptable
9315 (license (list license:gpl2+ license:gpl3+))))
9316
9317 (define-public r-raremetals2
9318 (package
9319 (name "r-raremetals2")
9320 (version "0.1")
9321 (source
9322 (origin
9323 (method url-fetch)
9324 (uri (string-append "http://genome.sph.umich.edu/w/images/"
9325 "b/b7/RareMETALS2_" version ".tar.gz"))
9326 (sha256
9327 (base32
9328 "0z5ljcgvnm06ja9lm85a3cniq7slxcy37aqqkxrdidr79an5fs4s"))))
9329 (properties `((upstream-name . "RareMETALS2")))
9330 (build-system r-build-system)
9331 (propagated-inputs
9332 `(("r-seqminer" ,r-seqminer)
9333 ("r-mvtnorm" ,r-mvtnorm)
9334 ("r-mass" ,r-mass)
9335 ("r-compquadform" ,r-compquadform)
9336 ("r-getopt" ,r-getopt)))
9337 (home-page "http://genome.sph.umich.edu/wiki/RareMETALS2")
9338 (synopsis "Analyze gene-level association tests for binary trait")
9339 (description
9340 "The R package rareMETALS2 is an extension of the R package rareMETALS.
9341 It was designed to meta-analyze gene-level association tests for binary trait.
9342 While rareMETALS offers a near-complete solution for meta-analysis of
9343 gene-level tests for quantitative trait, it does not offer the optimal
9344 solution for binary trait. The package rareMETALS2 offers improved features
9345 for analyzing gene-level association tests in meta-analyses for binary
9346 trait.")
9347 (license license:gpl3)))
9348
9349 (define-public r-maldiquant
9350 (package
9351 (name "r-maldiquant")
9352 (version "1.17")
9353 (source
9354 (origin
9355 (method url-fetch)
9356 (uri (cran-uri "MALDIquant" version))
9357 (sha256
9358 (base32
9359 "047s6007ydc38x8wm027mlb4mngz15n0d4238fr8h43wyll5zy0z"))))
9360 (properties `((upstream-name . "MALDIquant")))
9361 (build-system r-build-system)
9362 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
9363 (synopsis "Quantitative analysis of mass spectrometry data")
9364 (description
9365 "This package provides a complete analysis pipeline for matrix-assisted
9366 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
9367 two-dimensional mass spectrometry data. In addition to commonly used plotting
9368 and processing methods it includes distinctive features, namely baseline
9369 subtraction methods such as morphological filters (TopHat) or the
9370 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
9371 alignment using warping functions, handling of replicated measurements as well
9372 as allowing spectra with different resolutions.")
9373 (license license:gpl3+)))
9374
9375 (define-public r-protgenerics
9376 (package
9377 (name "r-protgenerics")
9378 (version "1.12.0")
9379 (source
9380 (origin
9381 (method url-fetch)
9382 (uri (bioconductor-uri "ProtGenerics" version))
9383 (sha256
9384 (base32
9385 "05jbadw2aiwy8vi2ia0jxg06cmwhly2cq4dy1ag7kdxf1c5i9ccn"))))
9386 (properties `((upstream-name . "ProtGenerics")))
9387 (build-system r-build-system)
9388 (home-page "https://github.com/lgatto/ProtGenerics")
9389 (synopsis "S4 generic functions for proteomics infrastructure")
9390 (description
9391 "This package provides S4 generic functions needed by Bioconductor
9392 proteomics packages.")
9393 (license license:artistic2.0)))
9394
9395 (define-public r-mzr
9396 (package
9397 (name "r-mzr")
9398 (version "2.14.0")
9399 (source
9400 (origin
9401 (method url-fetch)
9402 (uri (bioconductor-uri "mzR" version))
9403 (sha256
9404 (base32
9405 "190m2bq5bqxhljaj4f7vz9wj5h5laaxd8zp5jampnql6xc4zmarg"))
9406 (modules '((guix build utils)))
9407 (snippet
9408 '(begin
9409 (delete-file-recursively "src/boost")
9410 #t))))
9411 (properties `((upstream-name . "mzR")))
9412 (build-system r-build-system)
9413 (arguments
9414 `(#:phases
9415 (modify-phases %standard-phases
9416 (add-after 'unpack 'use-system-boost
9417 (lambda _
9418 (substitute* "src/Makevars"
9419 (("\\./boost/libs.*") "")
9420 (("ARCH_OBJS=" line)
9421 (string-append line
9422 "\nARCH_LIBS=-lboost_system -lboost_regex \
9423 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n")))
9424 #t)))))
9425 (inputs
9426 `(("boost" ,boost) ; use this instead of the bundled boost sources
9427 ("netcdf" ,netcdf)
9428 ("zlib" ,zlib)))
9429 (propagated-inputs
9430 `(("r-biobase" ,r-biobase)
9431 ("r-biocgenerics" ,r-biocgenerics)
9432 ("r-protgenerics" ,r-protgenerics)
9433 ("r-rcpp" ,r-rcpp)
9434 ("r-rhdf5lib" ,r-rhdf5lib)
9435 ("r-zlibbioc" ,r-zlibbioc)))
9436 (home-page "https://github.com/sneumann/mzR/")
9437 (synopsis "Parser for mass spectrometry data files")
9438 (description
9439 "The mzR package provides a unified API to the common file formats and
9440 parsers available for mass spectrometry data. It comes with a wrapper for the
9441 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
9442 The package contains the original code written by the ISB, and a subset of the
9443 proteowizard library for mzML and mzIdentML. The netCDF reading code has
9444 previously been used in XCMS.")
9445 (license license:artistic2.0)))
9446
9447 (define-public r-affyio
9448 (package
9449 (name "r-affyio")
9450 (version "1.50.0")
9451 (source
9452 (origin
9453 (method url-fetch)
9454 (uri (bioconductor-uri "affyio" version))
9455 (sha256
9456 (base32
9457 "0sh5wnnchyfpq5n6rchbqmb27byn7kdzn5rgran6i39c81i5z22n"))))
9458 (build-system r-build-system)
9459 (propagated-inputs
9460 `(("r-zlibbioc" ,r-zlibbioc)))
9461 (inputs
9462 `(("zlib" ,zlib)))
9463 (home-page "https://github.com/bmbolstad/affyio")
9464 (synopsis "Tools for parsing Affymetrix data files")
9465 (description
9466 "This package provides routines for parsing Affymetrix data files based
9467 upon file format information. The primary focus is on accessing the CEL and
9468 CDF file formats.")
9469 (license license:lgpl2.0+)))
9470
9471 (define-public r-affy
9472 (package
9473 (name "r-affy")
9474 (version "1.58.0")
9475 (source
9476 (origin
9477 (method url-fetch)
9478 (uri (bioconductor-uri "affy" version))
9479 (sha256
9480 (base32
9481 "0sxq875sigm21sf3qncrfrwfdz9nqw1vldxn3d3hj6aq64jg1ki6"))))
9482 (build-system r-build-system)
9483 (propagated-inputs
9484 `(("r-affyio" ,r-affyio)
9485 ("r-biobase" ,r-biobase)
9486 ("r-biocgenerics" ,r-biocgenerics)
9487 ("r-biocinstaller" ,r-biocinstaller)
9488 ("r-preprocesscore" ,r-preprocesscore)
9489 ("r-zlibbioc" ,r-zlibbioc)))
9490 (inputs
9491 `(("zlib" ,zlib)))
9492 (home-page "https://bioconductor.org/packages/affy")
9493 (synopsis "Methods for affymetrix oligonucleotide arrays")
9494 (description
9495 "This package contains functions for exploratory oligonucleotide array
9496 analysis.")
9497 (license license:lgpl2.0+)))
9498
9499 (define-public r-vsn
9500 (package
9501 (name "r-vsn")
9502 (version "3.48.1")
9503 (source
9504 (origin
9505 (method url-fetch)
9506 (uri (bioconductor-uri "vsn" version))
9507 (sha256
9508 (base32
9509 "0k6mah3g3zqbfap31xmvig4fn452a18xwwa5y0mfj5mj8588p57h"))))
9510 (build-system r-build-system)
9511 (propagated-inputs
9512 `(("r-affy" ,r-affy)
9513 ("r-biobase" ,r-biobase)
9514 ("r-ggplot2" ,r-ggplot2)
9515 ("r-lattice" ,r-lattice)
9516 ("r-limma" ,r-limma)))
9517 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
9518 (synopsis "Variance stabilization and calibration for microarray data")
9519 (description
9520 "The package implements a method for normalising microarray intensities,
9521 and works for single- and multiple-color arrays. It can also be used for data
9522 from other technologies, as long as they have similar format. The method uses
9523 a robust variant of the maximum-likelihood estimator for an
9524 additive-multiplicative error model and affine calibration. The model
9525 incorporates data calibration step (a.k.a. normalization), a model for the
9526 dependence of the variance on the mean intensity and a variance stabilizing
9527 data transformation. Differences between transformed intensities are
9528 analogous to \"normalized log-ratios\". However, in contrast to the latter,
9529 their variance is independent of the mean, and they are usually more sensitive
9530 and specific in detecting differential transcription.")
9531 (license license:artistic2.0)))
9532
9533 (define-public r-mzid
9534 (package
9535 (name "r-mzid")
9536 (version "1.18.0")
9537 (source
9538 (origin
9539 (method url-fetch)
9540 (uri (bioconductor-uri "mzID" version))
9541 (sha256
9542 (base32
9543 "060k0xlhg8q802c6zsb4b8ps0ccd9ybyaz0gnsvqkxb786i2vk40"))))
9544 (properties `((upstream-name . "mzID")))
9545 (build-system r-build-system)
9546 (propagated-inputs
9547 `(("r-doparallel" ,r-doparallel)
9548 ("r-foreach" ,r-foreach)
9549 ("r-iterators" ,r-iterators)
9550 ("r-plyr" ,r-plyr)
9551 ("r-protgenerics" ,r-protgenerics)
9552 ("r-rcpp" ,r-rcpp)
9553 ("r-xml" ,r-xml)))
9554 (home-page "https://bioconductor.org/packages/mzID")
9555 (synopsis "Parser for mzIdentML files")
9556 (description
9557 "This package provides a parser for mzIdentML files implemented using the
9558 XML package. The parser tries to be general and able to handle all types of
9559 mzIdentML files with the drawback of having less pretty output than a vendor
9560 specific parser.")
9561 (license license:gpl2+)))
9562
9563 (define-public r-pcamethods
9564 (package
9565 (name "r-pcamethods")
9566 (version "1.72.0")
9567 (source
9568 (origin
9569 (method url-fetch)
9570 (uri (bioconductor-uri "pcaMethods" version))
9571 (sha256
9572 (base32
9573 "0v99yf8m7ryh6z0r3z0ggpqfnflcq5bn1q1i1cl9b7q4p6b4sa07"))))
9574 (properties `((upstream-name . "pcaMethods")))
9575 (build-system r-build-system)
9576 (propagated-inputs
9577 `(("r-biobase" ,r-biobase)
9578 ("r-biocgenerics" ,r-biocgenerics)
9579 ("r-mass" ,r-mass)
9580 ("r-rcpp" ,r-rcpp)))
9581 (home-page "https://github.com/hredestig/pcamethods")
9582 (synopsis "Collection of PCA methods")
9583 (description
9584 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
9585 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
9586 for missing value estimation is included for comparison. BPCA, PPCA and
9587 NipalsPCA may be used to perform PCA on incomplete data as well as for
9588 accurate missing value estimation. A set of methods for printing and plotting
9589 the results is also provided. All PCA methods make use of the same data
9590 structure (pcaRes) to provide a common interface to the PCA results.")
9591 (license license:gpl3+)))
9592
9593 (define-public r-msnbase
9594 (package
9595 (name "r-msnbase")
9596 (version "2.6.1")
9597 (source
9598 (origin
9599 (method url-fetch)
9600 (uri (bioconductor-uri "MSnbase" version))
9601 (sha256
9602 (base32
9603 "0zrpx9r93q5ca2zdak5rs2m9sjm0wjdra1xfj3d3sx6p5gzfyg6n"))))
9604 (properties `((upstream-name . "MSnbase")))
9605 (build-system r-build-system)
9606 (propagated-inputs
9607 `(("r-affy" ,r-affy)
9608 ("r-biobase" ,r-biobase)
9609 ("r-biocgenerics" ,r-biocgenerics)
9610 ("r-biocparallel" ,r-biocparallel)
9611 ("r-digest" ,r-digest)
9612 ("r-ggplot2" ,r-ggplot2)
9613 ("r-impute" ,r-impute)
9614 ("r-iranges" ,r-iranges)
9615 ("r-lattice" ,r-lattice)
9616 ("r-maldiquant" ,r-maldiquant)
9617 ("r-mass" ,r-mass)
9618 ("r-mzid" ,r-mzid)
9619 ("r-mzr" ,r-mzr)
9620 ("r-pcamethods" ,r-pcamethods)
9621 ("r-plyr" ,r-plyr)
9622 ("r-preprocesscore" ,r-preprocesscore)
9623 ("r-protgenerics" ,r-protgenerics)
9624 ("r-rcpp" ,r-rcpp)
9625 ("r-s4vectors" ,r-s4vectors)
9626 ("r-scales" ,r-scales)
9627 ("r-vsn" ,r-vsn)
9628 ("r-xml" ,r-xml)))
9629 (home-page "https://github.com/lgatto/MSnbase")
9630 (synopsis "Base functions and classes for MS-based proteomics")
9631 (description
9632 "This package provides basic plotting, data manipulation and processing
9633 of mass spectrometry based proteomics data.")
9634 (license license:artistic2.0)))
9635
9636 (define-public r-msnid
9637 (package
9638 (name "r-msnid")
9639 (version "1.14.0")
9640 (source
9641 (origin
9642 (method url-fetch)
9643 (uri (bioconductor-uri "MSnID" version))
9644 (sha256
9645 (base32
9646 "172q5chi44104iz4y0g42wrimfp7hlhrfa8vzybx6m0ccrkkhl17"))))
9647 (properties `((upstream-name . "MSnID")))
9648 (build-system r-build-system)
9649 (propagated-inputs
9650 `(("r-biobase" ,r-biobase)
9651 ("r-data-table" ,r-data-table)
9652 ("r-doparallel" ,r-doparallel)
9653 ("r-dplyr" ,r-dplyr)
9654 ("r-foreach" ,r-foreach)
9655 ("r-iterators" ,r-iterators)
9656 ("r-msnbase" ,r-msnbase)
9657 ("r-mzid" ,r-mzid)
9658 ("r-mzr" ,r-mzr)
9659 ("r-protgenerics" ,r-protgenerics)
9660 ("r-r-cache" ,r-r-cache)
9661 ("r-rcpp" ,r-rcpp)
9662 ("r-reshape2" ,r-reshape2)))
9663 (home-page "https://bioconductor.org/packages/MSnID")
9664 (synopsis "Utilities for LC-MSn proteomics identifications")
9665 (description
9666 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
9667 from mzIdentML (leveraging the mzID package) or text files. After collating
9668 the search results from multiple datasets it assesses their identification
9669 quality and optimize filtering criteria to achieve the maximum number of
9670 identifications while not exceeding a specified false discovery rate. It also
9671 contains a number of utilities to explore the MS/MS results and assess missed
9672 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
9673 (license license:artistic2.0)))
9674
9675 (define-public r-seurat
9676 (package
9677 (name "r-seurat")
9678 (version "2.3.1")
9679 (source (origin
9680 (method url-fetch)
9681 (uri (cran-uri "Seurat" version))
9682 (sha256
9683 (base32
9684 "0hi59rgdrr2iqfvx5bq7yq02hbjxkjl1fzidqj14z0ypq0nzbjys"))
9685 ;; Delete pre-built jar.
9686 (snippet
9687 '(begin (delete-file "inst/java/ModularityOptimizer.jar")
9688 #t))))
9689 (properties `((upstream-name . "Seurat")))
9690 (build-system r-build-system)
9691 (arguments
9692 `(#:phases
9693 (modify-phases %standard-phases
9694 (add-after 'unpack 'build-jar
9695 (lambda* (#:key inputs #:allow-other-keys)
9696 (let ((classesdir "tmp-classes"))
9697 (setenv "JAVA_HOME" (assoc-ref inputs "jdk"))
9698 (mkdir classesdir)
9699 (with-output-to-file "manifest"
9700 (lambda _
9701 (display "Manifest-Version: 1.0
9702 Main-Class: ModularityOptimizer\n")))
9703 (and (zero? (apply system* `("javac" "-d" ,classesdir
9704 ,@(find-files "java" "\\.java$"))))
9705 (zero? (system* "jar"
9706 "-cmf" "manifest"
9707 "inst/java/ModularityOptimizer.jar"
9708 "-C" classesdir ".")))))))))
9709 (native-inputs
9710 `(("jdk" ,icedtea "jdk")))
9711 (propagated-inputs
9712 `(("r-ape" ,r-ape)
9713 ("r-caret" ,r-caret)
9714 ("r-cluster" ,r-cluster)
9715 ("r-cowplot" ,r-cowplot)
9716 ("r-diffusionmap" ,r-diffusionmap)
9717 ("r-dosnow" ,r-dosnow)
9718 ("r-dplyr" ,r-dplyr)
9719 ("r-dtw" ,r-dtw)
9720 ("r-fitdistrplus" ,r-fitdistrplus)
9721 ("r-fnn" ,r-fnn)
9722 ("r-foreach" ,r-foreach)
9723 ("r-fpc" ,r-fpc)
9724 ("r-gdata" ,r-gdata)
9725 ("r-ggplot2" ,r-ggplot2)
9726 ("r-ggridges" ,r-ggridges)
9727 ("r-gplots" ,r-gplots)
9728 ("r-hmisc" ,r-hmisc)
9729 ("r-ica" ,r-ica)
9730 ("r-igraph" ,r-igraph)
9731 ("r-irlba" ,r-irlba)
9732 ("r-lars" ,r-lars)
9733 ("r-lmtest" ,r-lmtest)
9734 ("r-mass" ,r-mass)
9735 ("r-matrix" ,r-matrix)
9736 ("r-metap" ,r-metap)
9737 ("r-mixtools" ,r-mixtools)
9738 ("r-pbapply" ,r-pbapply)
9739 ("r-plotly" ,r-plotly)
9740 ("r-png" ,r-png)
9741 ("r-ranger" ,r-ranger)
9742 ("r-rann" ,r-rann)
9743 ("r-rcolorbrewer" ,r-rcolorbrewer)
9744 ("r-rcpp" ,r-rcpp)
9745 ("r-rcppeigen" ,r-rcppeigen)
9746 ("r-rcppprogress" ,r-rcppprogress)
9747 ("r-reshape2" ,r-reshape2)
9748 ("r-reticulate" ,r-reticulate)
9749 ("r-rocr" ,r-rocr)
9750 ("r-rtsne" ,r-rtsne)
9751 ("r-sdmtools" ,r-sdmtools)
9752 ("r-stringr" ,r-stringr)
9753 ("r-tclust" ,r-tclust)
9754 ("r-tidyr" ,r-tidyr)
9755 ("r-tsne" ,r-tsne)
9756 ("r-vgam" ,r-vgam)))
9757 (home-page "http://www.satijalab.org/seurat")
9758 (synopsis "Seurat is an R toolkit for single cell genomics")
9759 (description
9760 "This package is an R package designed for QC, analysis, and
9761 exploration of single cell RNA-seq data. It easily enables widely-used
9762 analytical techniques, including the identification of highly variable genes,
9763 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
9764 algorithms; density clustering, hierarchical clustering, k-means, and the
9765 discovery of differentially expressed genes and markers.")
9766 (license license:gpl3)))
9767
9768 (define-public r-aroma-light
9769 (package
9770 (name "r-aroma-light")
9771 (version "3.10.0")
9772 (source
9773 (origin
9774 (method url-fetch)
9775 (uri (bioconductor-uri "aroma.light" version))
9776 (sha256
9777 (base32
9778 "1dxsiwsrwcq9mj573f9vpdzrhagdqzal328ma8076px4gg6khxkn"))))
9779 (properties `((upstream-name . "aroma.light")))
9780 (build-system r-build-system)
9781 (propagated-inputs
9782 `(("r-matrixstats" ,r-matrixstats)
9783 ("r-r-methodss3" ,r-r-methodss3)
9784 ("r-r-oo" ,r-r-oo)
9785 ("r-r-utils" ,r-r-utils)))
9786 (home-page "https://github.com/HenrikBengtsson/aroma.light")
9787 (synopsis "Methods for normalization and visualization of microarray data")
9788 (description
9789 "This package provides methods for microarray analysis that take basic
9790 data types such as matrices and lists of vectors. These methods can be used
9791 standalone, be utilized in other packages, or be wrapped up in higher-level
9792 classes.")
9793 (license license:gpl2+)))
9794
9795 (define-public r-deseq
9796 (package
9797 (name "r-deseq")
9798 (version "1.32.0")
9799 (source
9800 (origin
9801 (method url-fetch)
9802 (uri (bioconductor-uri "DESeq" version))
9803 (sha256
9804 (base32
9805 "0ykxw8ksif026xy25wx50j2sdsrp156aqkmhcgfjkpgcw699glnm"))))
9806 (properties `((upstream-name . "DESeq")))
9807 (build-system r-build-system)
9808 (propagated-inputs
9809 `(("r-biobase" ,r-biobase)
9810 ("r-biocgenerics" ,r-biocgenerics)
9811 ("r-genefilter" ,r-genefilter)
9812 ("r-geneplotter" ,r-geneplotter)
9813 ("r-lattice" ,r-lattice)
9814 ("r-locfit" ,r-locfit)
9815 ("r-mass" ,r-mass)
9816 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9817 (home-page "http://www-huber.embl.de/users/anders/DESeq")
9818 (synopsis "Differential gene expression analysis")
9819 (description
9820 "This package provides tools for estimating variance-mean dependence in
9821 count data from high-throughput genetic sequencing assays and for testing for
9822 differential expression based on a model using the negative binomial
9823 distribution.")
9824 (license license:gpl3+)))
9825
9826 (define-public r-edaseq
9827 (package
9828 (name "r-edaseq")
9829 (version "2.14.0")
9830 (source
9831 (origin
9832 (method url-fetch)
9833 (uri (bioconductor-uri "EDASeq" version))
9834 (sha256
9835 (base32
9836 "1832pb3jkim4vrqzb8lajwx9r482bhww5n9nz3s6crvyamlp2dj0"))))
9837 (properties `((upstream-name . "EDASeq")))
9838 (build-system r-build-system)
9839 (propagated-inputs
9840 `(("r-annotationdbi" ,r-annotationdbi)
9841 ("r-aroma-light" ,r-aroma-light)
9842 ("r-biobase" ,r-biobase)
9843 ("r-biocgenerics" ,r-biocgenerics)
9844 ("r-biomart" ,r-biomart)
9845 ("r-biostrings" ,r-biostrings)
9846 ("r-deseq" ,r-deseq)
9847 ("r-genomicfeatures" ,r-genomicfeatures)
9848 ("r-genomicranges" ,r-genomicranges)
9849 ("r-iranges" ,r-iranges)
9850 ("r-rsamtools" ,r-rsamtools)
9851 ("r-shortread" ,r-shortread)))
9852 (home-page "https://github.com/drisso/EDASeq")
9853 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
9854 (description
9855 "This package provides support for numerical and graphical summaries of
9856 RNA-Seq genomic read data. Provided within-lane normalization procedures to
9857 adjust for GC-content effect (or other gene-level effects) on read counts:
9858 loess robust local regression, global-scaling, and full-quantile
9859 normalization. Between-lane normalization procedures to adjust for
9860 distributional differences between lanes (e.g., sequencing depth):
9861 global-scaling and full-quantile normalization.")
9862 (license license:artistic2.0)))
9863
9864 (define-public r-interactivedisplaybase
9865 (package
9866 (name "r-interactivedisplaybase")
9867 (version "1.18.0")
9868 (source
9869 (origin
9870 (method url-fetch)
9871 (uri (bioconductor-uri "interactiveDisplayBase" version))
9872 (sha256
9873 (base32
9874 "05w58z3i9vkma4jd6rhjaxls4yiq4kwrppgcdq9xrr1pxp99k575"))))
9875 (properties
9876 `((upstream-name . "interactiveDisplayBase")))
9877 (build-system r-build-system)
9878 (propagated-inputs
9879 `(("r-biocgenerics" ,r-biocgenerics)
9880 ("r-shiny" ,r-shiny)))
9881 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
9882 (synopsis "Base package for web displays of Bioconductor objects")
9883 (description
9884 "This package contains the basic methods needed to generate interactive
9885 Shiny-based display methods for Bioconductor objects.")
9886 (license license:artistic2.0)))
9887
9888 (define-public r-annotationhub
9889 (package
9890 (name "r-annotationhub")
9891 (version "2.12.0")
9892 (source
9893 (origin
9894 (method url-fetch)
9895 (uri (bioconductor-uri "AnnotationHub" version))
9896 (sha256
9897 (base32
9898 "11gh7qkgazs90czdqgv74gh2hz26xrmdp6wsz9x5pygbxls8xdw3"))))
9899 (properties `((upstream-name . "AnnotationHub")))
9900 (build-system r-build-system)
9901 (propagated-inputs
9902 `(("r-annotationdbi" ,r-annotationdbi)
9903 ("r-biocgenerics" ,r-biocgenerics)
9904 ("r-biocinstaller" ,r-biocinstaller)
9905 ("r-curl" ,r-curl)
9906 ("r-httr" ,r-httr)
9907 ("r-interactivedisplaybase" ,r-interactivedisplaybase)
9908 ("r-rsqlite" ,r-rsqlite)
9909 ("r-s4vectors" ,r-s4vectors)
9910 ("r-yaml" ,r-yaml)))
9911 (home-page "https://bioconductor.org/packages/AnnotationHub")
9912 (synopsis "Client to access AnnotationHub resources")
9913 (description
9914 "This package provides a client for the Bioconductor AnnotationHub web
9915 resource. The AnnotationHub web resource provides a central location where
9916 genomic files (e.g. VCF, bed, wig) and other resources from standard
9917 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
9918 metadata about each resource, e.g., a textual description, tags, and date of
9919 modification. The client creates and manages a local cache of files retrieved
9920 by the user, helping with quick and reproducible access.")
9921 (license license:artistic2.0)))
9922
9923 (define-public r-fastseg
9924 (package
9925 (name "r-fastseg")
9926 (version "1.26.0")
9927 (source
9928 (origin
9929 (method url-fetch)
9930 (uri (bioconductor-uri "fastseg" version))
9931 (sha256
9932 (base32
9933 "1yw6hai6hb8qy7akdm4frfp6h4zy93zb68kdj094sanm7kgqmgik"))))
9934 (build-system r-build-system)
9935 (propagated-inputs
9936 `(("r-biobase" ,r-biobase)
9937 ("r-biocgenerics" ,r-biocgenerics)
9938 ("r-genomicranges" ,r-genomicranges)
9939 ("r-iranges" ,r-iranges)
9940 ("r-s4vectors" ,r-s4vectors)))
9941 (home-page "http://www.bioinf.jku.at/software/fastseg/index.html")
9942 (synopsis "Fast segmentation algorithm for genetic sequencing data")
9943 (description
9944 "Fastseg implements a very fast and efficient segmentation algorithm.
9945 It can segment data from DNA microarrays and data from next generation
9946 sequencing for example to detect copy number segments. Further it can segment
9947 data from RNA microarrays like tiling arrays to identify transcripts. Most
9948 generally, it can segment data given as a matrix or as a vector. Various data
9949 formats can be used as input to fastseg like expression set objects for
9950 microarrays or GRanges for sequencing data.")
9951 (license license:lgpl2.0+)))
9952
9953 (define-public r-keggrest
9954 (package
9955 (name "r-keggrest")
9956 (version "1.20.0")
9957 (source
9958 (origin
9959 (method url-fetch)
9960 (uri (bioconductor-uri "KEGGREST" version))
9961 (sha256
9962 (base32
9963 "1349vidgl9m10l1rbrp3pkwwgi2xcbsw9h9z2xqbvg97lmqc4r8j"))))
9964 (properties `((upstream-name . "KEGGREST")))
9965 (build-system r-build-system)
9966 (propagated-inputs
9967 `(("r-biostrings" ,r-biostrings)
9968 ("r-httr" ,r-httr)
9969 ("r-png" ,r-png)))
9970 (home-page "https://bioconductor.org/packages/KEGGREST")
9971 (synopsis "Client-side REST access to KEGG")
9972 (description
9973 "This package provides a package that provides a client interface to the
9974 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
9975 (license license:artistic2.0)))
9976
9977 (define-public r-gage
9978 (package
9979 (name "r-gage")
9980 (version "2.30.0")
9981 (source
9982 (origin
9983 (method url-fetch)
9984 (uri (bioconductor-uri "gage" version))
9985 (sha256
9986 (base32
9987 "0j3cqxy97lpf146wkmdfaq9680gicmzxvhp6w5pxq3j7ipiy7262"))))
9988 (build-system r-build-system)
9989 (propagated-inputs
9990 `(("r-annotationdbi" ,r-annotationdbi)
9991 ("r-graph" ,r-graph)
9992 ("r-keggrest" ,r-keggrest)))
9993 (home-page "http://www.biomedcentral.com/1471-2105/10/161")
9994 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
9995 (description
9996 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
9997 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
9998 data attributes including sample sizes, experimental designs, assay platforms,
9999 and other types of heterogeneity. The gage package provides functions for
10000 basic GAGE analysis, result processing and presentation. In addition, it
10001 provides demo microarray data and commonly used gene set data based on KEGG
10002 pathways and GO terms. These funtions and data are also useful for gene set
10003 analysis using other methods.")
10004 (license license:gpl2+)))
10005
10006 (define-public r-genomicfiles
10007 (package
10008 (name "r-genomicfiles")
10009 (version "1.16.0")
10010 (source
10011 (origin
10012 (method url-fetch)
10013 (uri (bioconductor-uri "GenomicFiles" version))
10014 (sha256
10015 (base32
10016 "0bhsq5czigrjyl9gkb2kpkpl367b3ac5g8s280adkcxggn9g7sxq"))))
10017 (properties `((upstream-name . "GenomicFiles")))
10018 (build-system r-build-system)
10019 (propagated-inputs
10020 `(("r-biocgenerics" ,r-biocgenerics)
10021 ("r-biocparallel" ,r-biocparallel)
10022 ("r-genomeinfodb" ,r-genomeinfodb)
10023 ("r-genomicalignments" ,r-genomicalignments)
10024 ("r-genomicranges" ,r-genomicranges)
10025 ("r-iranges" ,r-iranges)
10026 ("r-rsamtools" ,r-rsamtools)
10027 ("r-rtracklayer" ,r-rtracklayer)
10028 ("r-s4vectors" ,r-s4vectors)
10029 ("r-summarizedexperiment" ,r-summarizedexperiment)
10030 ("r-variantannotation" ,r-variantannotation)))
10031 (home-page "https://bioconductor.org/packages/GenomicFiles")
10032 (synopsis "Distributed computing by file or by range")
10033 (description
10034 "This package provides infrastructure for parallel computations
10035 distributed by file or by range. User defined mapper and reducer functions
10036 provide added flexibility for data combination and manipulation.")
10037 (license license:artistic2.0)))
10038
10039 (define-public r-complexheatmap
10040 (package
10041 (name "r-complexheatmap")
10042 (version "1.18.0")
10043 (source
10044 (origin
10045 (method url-fetch)
10046 (uri (bioconductor-uri "ComplexHeatmap" version))
10047 (sha256
10048 (base32
10049 "0z57mrginzd40niy51dvnyqgbrij05ji0dbwqs3x2as80sq28i3q"))))
10050 (properties
10051 `((upstream-name . "ComplexHeatmap")))
10052 (build-system r-build-system)
10053 (propagated-inputs
10054 `(("r-circlize" ,r-circlize)
10055 ("r-colorspace" ,r-colorspace)
10056 ("r-getoptlong" ,r-getoptlong)
10057 ("r-globaloptions" ,r-globaloptions)
10058 ("r-rcolorbrewer" ,r-rcolorbrewer)))
10059 (home-page
10060 "https://github.com/jokergoo/ComplexHeatmap")
10061 (synopsis "Making Complex Heatmaps")
10062 (description
10063 "Complex heatmaps are efficient to visualize associations between
10064 different sources of data sets and reveal potential structures. This package
10065 provides a highly flexible way to arrange multiple heatmaps and supports
10066 self-defined annotation graphics.")
10067 (license license:gpl2+)))
10068
10069 (define-public r-dirichletmultinomial
10070 (package
10071 (name "r-dirichletmultinomial")
10072 (version "1.22.0")
10073 (source
10074 (origin
10075 (method url-fetch)
10076 (uri (bioconductor-uri "DirichletMultinomial" version))
10077 (sha256
10078 (base32
10079 "0vcyp81b90in4ls5nbadc66cw2g9aydr94aqifq5j4b7diq74yfs"))))
10080 (properties
10081 `((upstream-name . "DirichletMultinomial")))
10082 (build-system r-build-system)
10083 (inputs
10084 `(("gsl" ,gsl)))
10085 (propagated-inputs
10086 `(("r-biocgenerics" ,r-biocgenerics)
10087 ("r-iranges" ,r-iranges)
10088 ("r-s4vectors" ,r-s4vectors)))
10089 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
10090 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
10091 (description
10092 "Dirichlet-multinomial mixture models can be used to describe variability
10093 in microbial metagenomic data. This package is an interface to code
10094 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
10095 1-15.")
10096 (license license:lgpl3)))
10097
10098 (define-public r-ensembldb
10099 (package
10100 (name "r-ensembldb")
10101 (version "2.4.1")
10102 (source
10103 (origin
10104 (method url-fetch)
10105 (uri (bioconductor-uri "ensembldb" version))
10106 (sha256
10107 (base32
10108 "1l2b4cxiycv05mz4z4f3dhx57r9ksha02psc114h30ldm5rxz8w6"))))
10109 (build-system r-build-system)
10110 (propagated-inputs
10111 `(("r-annotationdbi" ,r-annotationdbi)
10112 ("r-annotationfilter" ,r-annotationfilter)
10113 ("r-biobase" ,r-biobase)
10114 ("r-biocgenerics" ,r-biocgenerics)
10115 ("r-biostrings" ,r-biostrings)
10116 ("r-curl" ,r-curl)
10117 ("r-dbi" ,r-dbi)
10118 ("r-genomeinfodb" ,r-genomeinfodb)
10119 ("r-genomicfeatures" ,r-genomicfeatures)
10120 ("r-genomicranges" ,r-genomicranges)
10121 ("r-iranges" ,r-iranges)
10122 ("r-protgenerics" ,r-protgenerics)
10123 ("r-rsamtools" ,r-rsamtools)
10124 ("r-rsqlite" ,r-rsqlite)
10125 ("r-rtracklayer" ,r-rtracklayer)
10126 ("r-s4vectors" ,r-s4vectors)))
10127 (home-page "https://github.com/jotsetung/ensembldb")
10128 (synopsis "Utilities to create and use Ensembl-based annotation databases")
10129 (description
10130 "The package provides functions to create and use transcript-centric
10131 annotation databases/packages. The annotation for the databases are directly
10132 fetched from Ensembl using their Perl API. The functionality and data is
10133 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
10134 but, in addition to retrieve all gene/transcript models and annotations from
10135 the database, the @code{ensembldb} package also provides a filter framework
10136 allowing to retrieve annotations for specific entries like genes encoded on a
10137 chromosome region or transcript models of lincRNA genes.")
10138 ;; No version specified
10139 (license license:lgpl3+)))
10140
10141 (define-public r-organismdbi
10142 (package
10143 (name "r-organismdbi")
10144 (version "1.22.0")
10145 (source
10146 (origin
10147 (method url-fetch)
10148 (uri (bioconductor-uri "OrganismDbi" version))
10149 (sha256
10150 (base32
10151 "0hb9ni41bjfy5s5ryw2qmqs2sx3i7j47w1g0l8g1pvn7ppnxb6cv"))))
10152 (properties `((upstream-name . "OrganismDbi")))
10153 (build-system r-build-system)
10154 (propagated-inputs
10155 `(("r-annotationdbi" ,r-annotationdbi)
10156 ("r-biobase" ,r-biobase)
10157 ("r-biocgenerics" ,r-biocgenerics)
10158 ("r-biocinstaller" ,r-biocinstaller)
10159 ("r-dbi" ,r-dbi)
10160 ("r-genomicfeatures" ,r-genomicfeatures)
10161 ("r-genomicranges" ,r-genomicranges)
10162 ("r-graph" ,r-graph)
10163 ("r-iranges" ,r-iranges)
10164 ("r-rbgl" ,r-rbgl)
10165 ("r-s4vectors" ,r-s4vectors)))
10166 (home-page "https://bioconductor.org/packages/OrganismDbi")
10167 (synopsis "Software to enable the smooth interfacing of database packages")
10168 (description "The package enables a simple unified interface to several
10169 annotation packages each of which has its own schema by taking advantage of
10170 the fact that each of these packages implements a select methods.")
10171 (license license:artistic2.0)))
10172
10173 (define-public r-biovizbase
10174 (package
10175 (name "r-biovizbase")
10176 (version "1.28.0")
10177 (source
10178 (origin
10179 (method url-fetch)
10180 (uri (bioconductor-uri "biovizBase" version))
10181 (sha256
10182 (base32
10183 "0lkiqdr3ics6hgv47lwkykcy761823bbkhffbn4ykyfzyqwl4p67"))))
10184 (properties `((upstream-name . "biovizBase")))
10185 (build-system r-build-system)
10186 (propagated-inputs
10187 `(("r-annotationdbi" ,r-annotationdbi)
10188 ("r-annotationfilter" ,r-annotationfilter)
10189 ("r-biocgenerics" ,r-biocgenerics)
10190 ("r-biostrings" ,r-biostrings)
10191 ("r-dichromat" ,r-dichromat)
10192 ("r-ensembldb" ,r-ensembldb)
10193 ("r-genomeinfodb" ,r-genomeinfodb)
10194 ("r-genomicalignments" ,r-genomicalignments)
10195 ("r-genomicfeatures" ,r-genomicfeatures)
10196 ("r-genomicranges" ,r-genomicranges)
10197 ("r-hmisc" ,r-hmisc)
10198 ("r-iranges" ,r-iranges)
10199 ("r-rcolorbrewer" ,r-rcolorbrewer)
10200 ("r-rsamtools" ,r-rsamtools)
10201 ("r-s4vectors" ,r-s4vectors)
10202 ("r-scales" ,r-scales)
10203 ("r-summarizedexperiment" ,r-summarizedexperiment)
10204 ("r-variantannotation" ,r-variantannotation)))
10205 (home-page "https://bioconductor.org/packages/biovizBase")
10206 (synopsis "Basic graphic utilities for visualization of genomic data")
10207 (description
10208 "The biovizBase package is designed to provide a set of utilities, color
10209 schemes and conventions for genomic data. It serves as the base for various
10210 high-level packages for biological data visualization. This saves development
10211 effort and encourages consistency.")
10212 (license license:artistic2.0)))
10213
10214 (define-public r-ggbio
10215 (package
10216 (name "r-ggbio")
10217 (version "1.28.0")
10218 (source
10219 (origin
10220 (method url-fetch)
10221 (uri (bioconductor-uri "ggbio" version))
10222 (sha256
10223 (base32
10224 "0wszh3w8yia5zw758h837i1q35k99sn444y2hahcxqbdmmlbf7in"))))
10225 (build-system r-build-system)
10226 (propagated-inputs
10227 `(("r-annotationdbi" ,r-annotationdbi)
10228 ("r-annotationfilter" ,r-annotationfilter)
10229 ("r-biobase" ,r-biobase)
10230 ("r-biocgenerics" ,r-biocgenerics)
10231 ("r-biostrings" ,r-biostrings)
10232 ("r-biovizbase" ,r-biovizbase)
10233 ("r-bsgenome" ,r-bsgenome)
10234 ("r-ensembldb" ,r-ensembldb)
10235 ("r-genomeinfodb" ,r-genomeinfodb)
10236 ("r-genomicalignments" ,r-genomicalignments)
10237 ("r-genomicfeatures" ,r-genomicfeatures)
10238 ("r-genomicranges" ,r-genomicranges)
10239 ("r-ggally" ,r-ggally)
10240 ("r-ggplot2" ,r-ggplot2)
10241 ("r-gridextra" ,r-gridextra)
10242 ("r-gtable" ,r-gtable)
10243 ("r-hmisc" ,r-hmisc)
10244 ("r-iranges" ,r-iranges)
10245 ("r-organismdbi" ,r-organismdbi)
10246 ("r-reshape2" ,r-reshape2)
10247 ("r-rsamtools" ,r-rsamtools)
10248 ("r-rtracklayer" ,r-rtracklayer)
10249 ("r-s4vectors" ,r-s4vectors)
10250 ("r-scales" ,r-scales)
10251 ("r-summarizedexperiment" ,r-summarizedexperiment)
10252 ("r-variantannotation" ,r-variantannotation)))
10253 (home-page "http://www.tengfei.name/ggbio/")
10254 (synopsis "Visualization tools for genomic data")
10255 (description
10256 "The ggbio package extends and specializes the grammar of graphics for
10257 biological data. The graphics are designed to answer common scientific
10258 questions, in particular those often asked of high throughput genomics data.
10259 All core Bioconductor data structures are supported, where appropriate. The
10260 package supports detailed views of particular genomic regions, as well as
10261 genome-wide overviews. Supported overviews include ideograms and grand linear
10262 views. High-level plots include sequence fragment length, edge-linked
10263 interval to data view, mismatch pileup, and several splicing summaries.")
10264 (license license:artistic2.0)))
10265
10266 (define-public r-gprofiler
10267 (package
10268 (name "r-gprofiler")
10269 (version "0.6.6")
10270 (source
10271 (origin
10272 (method url-fetch)
10273 (uri (cran-uri "gProfileR" version))
10274 (sha256
10275 (base32
10276 "1n6cj12j102b4x9vhyl4dljp1i0r43p23cnhqbx4als2xfxdlqgi"))))
10277 (properties `((upstream-name . "gProfileR")))
10278 (build-system r-build-system)
10279 (propagated-inputs
10280 `(("r-plyr" ,r-plyr)
10281 ("r-rcurl" ,r-rcurl)))
10282 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
10283 (synopsis "Interface to the g:Profiler toolkit")
10284 (description
10285 "This package provides tools for functional enrichment analysis,
10286 gene identifier conversion and mapping homologous genes across related
10287 organisms via the @code{g:Profiler} toolkit.")
10288 (license license:gpl2+)))
10289
10290 (define-public r-gqtlbase
10291 (package
10292 (name "r-gqtlbase")
10293 (version "1.12.0")
10294 (source
10295 (origin
10296 (method url-fetch)
10297 (uri (bioconductor-uri "gQTLBase" version))
10298 (sha256
10299 (base32
10300 "1m3ajpqjhw1nwwsn372r44xfxq0a9a0pzsnrprzdjp6mh52p9b5m"))))
10301 (properties `((upstream-name . "gQTLBase")))
10302 (build-system r-build-system)
10303 (propagated-inputs
10304 `(("r-batchjobs" ,r-batchjobs)
10305 ("r-bbmisc" ,r-bbmisc)
10306 ("r-biocgenerics" ,r-biocgenerics)
10307 ("r-bit" ,r-bit)
10308 ("r-doparallel" ,r-doparallel)
10309 ("r-ff" ,r-ff)
10310 ("r-ffbase" ,r-ffbase)
10311 ("r-foreach" ,r-foreach)
10312 ("r-genomicfiles" ,r-genomicfiles)
10313 ("r-genomicranges" ,r-genomicranges)
10314 ("r-rtracklayer" ,r-rtracklayer)
10315 ("r-s4vectors" ,r-s4vectors)
10316 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10317 (home-page "https://bioconductor.org/packages/gQTLBase")
10318 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
10319 (description
10320 "The purpose of this package is to simplify the storage and interrogation
10321 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
10322 and more.")
10323 (license license:artistic2.0)))
10324
10325 (define-public r-snpstats
10326 (package
10327 (name "r-snpstats")
10328 (version "1.30.0")
10329 (source
10330 (origin
10331 (method url-fetch)
10332 (uri (bioconductor-uri "snpStats" version))
10333 (sha256
10334 (base32
10335 "0iydgfnm053iw860qa1bbh4f6nwzlsf3vhgq92gvl2v4xsz1jbbs"))))
10336 (properties `((upstream-name . "snpStats")))
10337 (build-system r-build-system)
10338 (inputs `(("zlib" ,zlib)))
10339 (propagated-inputs
10340 `(("r-biocgenerics" ,r-biocgenerics)
10341 ("r-matrix" ,r-matrix)
10342 ("r-survival" ,r-survival)
10343 ("r-zlibbioc" ,r-zlibbioc)))
10344 (home-page "https://bioconductor.org/packages/snpStats")
10345 (synopsis "Methods for SNP association studies")
10346 (description
10347 "This package provides classes and statistical methods for large
10348 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
10349 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
10350 (license license:gpl3)))
10351
10352 (define-public r-homo-sapiens
10353 (package
10354 (name "r-homo-sapiens")
10355 (version "1.3.1")
10356 (source (origin
10357 (method url-fetch)
10358 ;; We cannot use bioconductor-uri here because this tarball is
10359 ;; located under "data/annotation/" instead of "bioc/".
10360 (uri (string-append "http://www.bioconductor.org/packages/"
10361 "release/data/annotation/src/contrib/"
10362 "Homo.sapiens_"
10363 version ".tar.gz"))
10364 (sha256
10365 (base32
10366 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
10367 (properties
10368 `((upstream-name . "Homo.sapiens")))
10369 (build-system r-build-system)
10370 (propagated-inputs
10371 `(("r-genomicfeatures" ,r-genomicfeatures)
10372 ("r-go-db" ,r-go-db)
10373 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
10374 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
10375 ("r-organismdbi" ,r-organismdbi)
10376 ("r-annotationdbi" ,r-annotationdbi)))
10377 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
10378 (synopsis "Annotation package for the Homo.sapiens object")
10379 (description
10380 "This package contains the Homo.sapiens object to access data from
10381 several related annotation packages.")
10382 (license license:artistic2.0)))
10383
10384 (define-public r-erma
10385 (package
10386 (name "r-erma")
10387 (version "0.12.0")
10388 (source
10389 (origin
10390 (method url-fetch)
10391 (uri (bioconductor-uri "erma" version))
10392 (sha256
10393 (base32
10394 "1ka68n18yizlyvb8bpwwcl4hqbsasg8hw8jb3vgy3cd4szji87hh"))))
10395 (build-system r-build-system)
10396 (propagated-inputs
10397 `(("r-annotationdbi" ,r-annotationdbi)
10398 ("r-biobase" ,r-biobase)
10399 ("r-biocgenerics" ,r-biocgenerics)
10400 ("r-biocparallel" ,r-biocparallel)
10401 ("r-genomeinfodb" ,r-genomeinfodb)
10402 ("r-genomicfiles" ,r-genomicfiles)
10403 ("r-genomicranges" ,r-genomicranges)
10404 ("r-ggplot2" ,r-ggplot2)
10405 ("r-homo-sapiens" ,r-homo-sapiens)
10406 ("r-iranges" ,r-iranges)
10407 ("r-rtracklayer" ,r-rtracklayer)
10408 ("r-s4vectors" ,r-s4vectors)
10409 ("r-shiny" ,r-shiny)
10410 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10411 (home-page "https://bioconductor.org/packages/erma")
10412 (synopsis "Epigenomic road map adventures")
10413 (description
10414 "The epigenomics road map describes locations of epigenetic marks in DNA
10415 from a variety of cell types. Of interest are locations of histone
10416 modifications, sites of DNA methylation, and regions of accessible chromatin.
10417 This package presents a selection of elements of the road map including
10418 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
10419 by Ernst and Kellis.")
10420 (license license:artistic2.0)))
10421
10422 (define-public r-ldblock
10423 (package
10424 (name "r-ldblock")
10425 (version "1.10.0")
10426 (source
10427 (origin
10428 (method url-fetch)
10429 (uri (bioconductor-uri "ldblock" version))
10430 (sha256
10431 (base32
10432 "0c24zvnwsp39d3q0bps13sc441jj9ms2zi34xsb8c392lqmbypvd"))))
10433 (build-system r-build-system)
10434 (propagated-inputs
10435 `(("r-biocgenerics" ,r-biocgenerics)
10436 ("r-erma" ,r-erma)
10437 ("r-genomeinfodb" ,r-genomeinfodb)
10438 ("r-genomicfiles" ,r-genomicfiles)
10439 ("r-go-db" ,r-go-db)
10440 ("r-homo-sapiens" ,r-homo-sapiens)
10441 ("r-matrix" ,r-matrix)
10442 ("r-rsamtools" ,r-rsamtools)
10443 ("r-snpstats" ,r-snpstats)
10444 ("r-variantannotation" ,r-variantannotation)))
10445 (home-page "https://bioconductor.org/packages/ldblock")
10446 (synopsis "Data structures for linkage disequilibrium measures in populations")
10447 (description
10448 "This package defines data structures for @dfn{linkage
10449 disequilibrium} (LD) measures in populations. Its purpose is to simplify
10450 handling of existing population-level data for the purpose of flexibly
10451 defining LD blocks.")
10452 (license license:artistic2.0)))
10453
10454 (define-public r-gqtlstats
10455 (package
10456 (name "r-gqtlstats")
10457 (version "1.12.0")
10458 (source
10459 (origin
10460 (method url-fetch)
10461 (uri (bioconductor-uri "gQTLstats" version))
10462 (sha256
10463 (base32
10464 "19g8qhfgngdc14cw9k4i44cxhs3qva87x56gjzmn25k1yj8qgsp1"))))
10465 (properties `((upstream-name . "gQTLstats")))
10466 (build-system r-build-system)
10467 (propagated-inputs
10468 `(("r-annotationdbi" ,r-annotationdbi)
10469 ("r-batchjobs" ,r-batchjobs)
10470 ("r-bbmisc" ,r-bbmisc)
10471 ("r-beeswarm" ,r-beeswarm)
10472 ("r-biobase" ,r-biobase)
10473 ("r-biocgenerics" ,r-biocgenerics)
10474 ("r-doparallel" ,r-doparallel)
10475 ("r-dplyr" ,r-dplyr)
10476 ("r-erma" ,r-erma)
10477 ("r-ffbase" ,r-ffbase)
10478 ("r-foreach" ,r-foreach)
10479 ("r-genomeinfodb" ,r-genomeinfodb)
10480 ("r-genomicfeatures" ,r-genomicfeatures)
10481 ("r-genomicfiles" ,r-genomicfiles)
10482 ("r-genomicranges" ,r-genomicranges)
10483 ("r-ggbeeswarm" ,r-ggbeeswarm)
10484 ("r-ggplot2" ,r-ggplot2)
10485 ("r-gqtlbase" ,r-gqtlbase)
10486 ("r-hardyweinberg" ,r-hardyweinberg)
10487 ("r-homo-sapiens" ,r-homo-sapiens)
10488 ("r-iranges" ,r-iranges)
10489 ("r-limma" ,r-limma)
10490 ("r-mgcv" ,r-mgcv)
10491 ("r-plotly" ,r-plotly)
10492 ("r-reshape2" ,r-reshape2)
10493 ("r-s4vectors" ,r-s4vectors)
10494 ("r-shiny" ,r-shiny)
10495 ("r-snpstats" ,r-snpstats)
10496 ("r-summarizedexperiment" ,r-summarizedexperiment)
10497 ("r-variantannotation" ,r-variantannotation)))
10498 (home-page "https://bioconductor.org/packages/gQTLstats")
10499 (synopsis "Computationally efficient analysis for eQTL and allied studies")
10500 (description
10501 "This package provides tools for the computationally efficient analysis
10502 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
10503 The software in this package aims to support refinements and functional
10504 interpretation of members of a collection of association statistics on a
10505 family of feature/genome hypotheses.")
10506 (license license:artistic2.0)))
10507
10508 (define-public r-gviz
10509 (package
10510 (name "r-gviz")
10511 (version "1.24.0")
10512 (source
10513 (origin
10514 (method url-fetch)
10515 (uri (bioconductor-uri "Gviz" version))
10516 (sha256
10517 (base32
10518 "1fhli7ahkl5r43j0hc89ib41mfadj6qyrg36i03ncz8zs6iqwpx4"))))
10519 (properties `((upstream-name . "Gviz")))
10520 (build-system r-build-system)
10521 (propagated-inputs
10522 `(("r-annotationdbi" ,r-annotationdbi)
10523 ("r-biobase" ,r-biobase)
10524 ("r-biocgenerics" ,r-biocgenerics)
10525 ("r-biomart" ,r-biomart)
10526 ("r-biostrings" ,r-biostrings)
10527 ("r-biovizbase" ,r-biovizbase)
10528 ("r-bsgenome" ,r-bsgenome)
10529 ("r-digest" ,r-digest)
10530 ("r-genomeinfodb" ,r-genomeinfodb)
10531 ("r-genomicalignments" ,r-genomicalignments)
10532 ("r-genomicfeatures" ,r-genomicfeatures)
10533 ("r-genomicranges" ,r-genomicranges)
10534 ("r-iranges" ,r-iranges)
10535 ("r-lattice" ,r-lattice)
10536 ("r-latticeextra" ,r-latticeextra)
10537 ("r-matrixstats" ,r-matrixstats)
10538 ("r-rcolorbrewer" ,r-rcolorbrewer)
10539 ("r-rsamtools" ,r-rsamtools)
10540 ("r-rtracklayer" ,r-rtracklayer)
10541 ("r-s4vectors" ,r-s4vectors)
10542 ("r-xvector" ,r-xvector)))
10543 (home-page "https://bioconductor.org/packages/Gviz")
10544 (synopsis "Plotting data and annotation information along genomic coordinates")
10545 (description
10546 "Genomic data analyses requires integrated visualization of known genomic
10547 information and new experimental data. Gviz uses the biomaRt and the
10548 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
10549 and translates this to e.g. gene/transcript structures in viewports of the
10550 grid graphics package. This results in genomic information plotted together
10551 with your data.")
10552 (license license:artistic2.0)))
10553
10554 (define-public r-gwascat
10555 (package
10556 (name "r-gwascat")
10557 (version "2.12.0")
10558 (source
10559 (origin
10560 (method url-fetch)
10561 (uri (bioconductor-uri "gwascat" version))
10562 (sha256
10563 (base32
10564 "08ba9il4vbjjwlbwmqg4ai6ya1p09js9agn95sw0dhc9gqln42hx"))))
10565 (build-system r-build-system)
10566 (propagated-inputs
10567 `(("r-annotationdbi" ,r-annotationdbi)
10568 ("r-annotationhub" ,r-annotationhub)
10569 ("r-biocgenerics" ,r-biocgenerics)
10570 ("r-biostrings" ,r-biostrings)
10571 ("r-genomeinfodb" ,r-genomeinfodb)
10572 ("r-genomicfeatures" ,r-genomicfeatures)
10573 ("r-genomicranges" ,r-genomicranges)
10574 ("r-ggbio" ,r-ggbio)
10575 ("r-ggplot2" ,r-ggplot2)
10576 ("r-gqtlstats" ,r-gqtlstats)
10577 ("r-graph" ,r-graph)
10578 ("r-gviz" ,r-gviz)
10579 ("r-homo-sapiens" ,r-homo-sapiens)
10580 ("r-iranges" ,r-iranges)
10581 ("r-rsamtools" ,r-rsamtools)
10582 ("r-rtracklayer" ,r-rtracklayer)
10583 ("r-s4vectors" ,r-s4vectors)
10584 ("r-snpstats" ,r-snpstats)
10585 ("r-summarizedexperiment" ,r-summarizedexperiment)
10586 ("r-variantannotation" ,r-variantannotation)))
10587 (home-page "https://bioconductor.org/packages/gwascat")
10588 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
10589 (description
10590 "This package provides tools for representing and modeling data in the
10591 EMBL-EBI GWAS catalog.")
10592 (license license:artistic2.0)))
10593
10594 (define-public r-sushi
10595 (package
10596 (name "r-sushi")
10597 (version "1.18.0")
10598 (source (origin
10599 (method url-fetch)
10600 (uri (bioconductor-uri "Sushi" version))
10601 (sha256
10602 (base32
10603 "1m15hmg4k0qhshyn65xfj5hx7xbaf0kxqw70lxisak6pj1w00l41"))))
10604 (properties `((upstream-name . "Sushi")))
10605 (build-system r-build-system)
10606 (propagated-inputs
10607 `(("r-biomart" ,r-biomart)
10608 ("r-zoo" ,r-zoo)))
10609 (home-page "https://bioconductor.org/packages/Sushi")
10610 (synopsis "Tools for visualizing genomics data")
10611 (description
10612 "This package provides flexible, quantitative, and integrative genomic
10613 visualizations for publication-quality multi-panel figures.")
10614 (license license:gpl2+)))
10615
10616 (define-public r-fithic
10617 (package
10618 (name "r-fithic")
10619 (version "1.6.0")
10620 (source (origin
10621 (method url-fetch)
10622 (uri (bioconductor-uri "FitHiC" version))
10623 (sha256
10624 (base32
10625 "06w4q836bi1mvkbl1saghv4r5p4hxpjg8cp7kgad13ls450kqmyd"))))
10626 (properties `((upstream-name . "FitHiC")))
10627 (build-system r-build-system)
10628 (propagated-inputs
10629 `(("r-data-table" ,r-data-table)
10630 ("r-fdrtool" ,r-fdrtool)
10631 ("r-rcpp" ,r-rcpp)))
10632 (home-page "https://bioconductor.org/packages/FitHiC")
10633 (synopsis "Confidence estimation for intra-chromosomal contact maps")
10634 (description
10635 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
10636 intra-chromosomal contact maps produced by genome-wide genome architecture
10637 assays such as Hi-C.")
10638 (license license:gpl2+)))
10639
10640 (define-public r-hitc
10641 (package
10642 (name "r-hitc")
10643 (version "1.24.0")
10644 (source (origin
10645 (method url-fetch)
10646 (uri (bioconductor-uri "HiTC" version))
10647 (sha256
10648 (base32
10649 "0qkk5139f51lwwy1yh7nbkflh5d69prirmhniwam34nlg9rzjm2z"))))
10650 (properties `((upstream-name . "HiTC")))
10651 (build-system r-build-system)
10652 (propagated-inputs
10653 `(("r-biostrings" ,r-biostrings)
10654 ("r-genomeinfodb" ,r-genomeinfodb)
10655 ("r-genomicranges" ,r-genomicranges)
10656 ("r-iranges" ,r-iranges)
10657 ("r-matrix" ,r-matrix)
10658 ("r-rcolorbrewer" ,r-rcolorbrewer)
10659 ("r-rtracklayer" ,r-rtracklayer)))
10660 (home-page "https://bioconductor.org/packages/HiTC")
10661 (synopsis "High throughput chromosome conformation capture analysis")
10662 (description
10663 "The HiTC package was developed to explore high-throughput \"C\" data
10664 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
10665 quality controls, normalization, visualization, and further analysis are also
10666 provided.")
10667 (license license:artistic2.0)))
10668
10669 (define-public r-qvalue
10670 (package
10671 (name "r-qvalue")
10672 (version "2.10.0")
10673 (source
10674 (origin
10675 (method url-fetch)
10676 (uri (bioconductor-uri "qvalue" version))
10677 (sha256
10678 (base32
10679 "1rd9rnf16kh8wc076kahd9hsb9rfwsbzmz3kjmp0pj6rbiq0051i"))))
10680 (build-system r-build-system)
10681 (propagated-inputs
10682 `(("r-ggplot2" ,r-ggplot2)
10683 ("r-reshape2" ,r-reshape2)))
10684 (home-page "http://github.com/jdstorey/qvalue")
10685 (synopsis "Q-value estimation for false discovery rate control")
10686 (description
10687 "This package takes a list of p-values resulting from the simultaneous
10688 testing of many hypotheses and estimates their q-values and local @dfn{false
10689 discovery rate} (FDR) values. The q-value of a test measures the proportion
10690 of false positives incurred when that particular test is called significant.
10691 The local FDR measures the posterior probability the null hypothesis is true
10692 given the test's p-value. Various plots are automatically generated, allowing
10693 one to make sensible significance cut-offs. The software can be applied to
10694 problems in genomics, brain imaging, astrophysics, and data mining.")
10695 ;; Any version of the LGPL.
10696 (license license:lgpl3+)))
10697
10698 (define-public r-hdf5array
10699 (package
10700 (name "r-hdf5array")
10701 (version "1.6.0")
10702 (source
10703 (origin
10704 (method url-fetch)
10705 (uri (bioconductor-uri "HDF5Array" version))
10706 (sha256
10707 (base32
10708 "0kcdza41saqv6vlpvqd841awbiwkg84lh0plx6c7fmfgbqv7a0jh"))))
10709 (properties `((upstream-name . "HDF5Array")))
10710 (build-system r-build-system)
10711 (propagated-inputs
10712 `(("r-biocgenerics" ,r-biocgenerics)
10713 ("r-delayedarray" ,r-delayedarray)
10714 ("r-iranges" ,r-iranges)
10715 ("r-rhdf5" ,r-rhdf5)
10716 ("r-s4vectors" ,r-s4vectors)))
10717 (home-page "https://bioconductor.org/packages/HDF5Array")
10718 (synopsis "HDF5 back end for DelayedArray objects")
10719 (description "This package provides an array-like container for convenient
10720 access and manipulation of HDF5 datasets. It supports delayed operations and
10721 block processing.")
10722 (license license:artistic2.0)))
10723
10724 (define-public r-rhdf5lib
10725 (package
10726 (name "r-rhdf5lib")
10727 (version "1.0.0")
10728 (source
10729 (origin
10730 (method url-fetch)
10731 (uri (bioconductor-uri "Rhdf5lib" version))
10732 (sha256
10733 (base32
10734 "0kkc4rprjbqn2wvbx4d49kk9l91vihccxbl4843qr1wqk6v33r1w"))))
10735 (properties `((upstream-name . "Rhdf5lib")))
10736 (build-system r-build-system)
10737 (arguments
10738 `(#:phases
10739 (modify-phases %standard-phases
10740 (add-after 'unpack 'do-not-use-bundled-hdf5
10741 (lambda* (#:key inputs #:allow-other-keys)
10742 (for-each delete-file '("configure" "configure.ac"))
10743 ;; Do not make other packages link with the proprietary libsz.
10744 (substitute* "R/zzz.R"
10745 (("'%s/libhdf5_cpp.a %s/libhdf5.a %s/libsz.a'")
10746 "'%s/libhdf5_cpp.a %s/libhdf5.a %s/libhdf5.a'")
10747 (("'%s/libhdf5.a %s/libsz.a'")
10748 "'%s/libhdf5.a %s/libhdf5.a'"))
10749 (with-directory-excursion "src"
10750 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
10751 (rename-file (string-append "hdf5-" ,(package-version hdf5))
10752 "hdf5")
10753 ;; Remove timestamp and host system information to make
10754 ;; the build reproducible.
10755 (substitute* "hdf5/src/libhdf5.settings.in"
10756 (("Configured on: @CONFIG_DATE@")
10757 "Configured on: Guix")
10758 (("Uname information:.*")
10759 "Uname information: Linux\n")
10760 ;; Remove unnecessary store reference.
10761 (("C Compiler:.*")
10762 "C Compiler: GCC\n"))
10763 (rename-file "Makevars.in" "Makevars")
10764 (substitute* "Makevars"
10765 (("HDF5_CXX_LIB=.*")
10766 (string-append "HDF5_CXX_LIB="
10767 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
10768 (("HDF5_LIB=.*")
10769 (string-append "HDF5_LIB="
10770 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
10771 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
10772 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
10773 ;; szip is non-free software
10774 (("cp \\$\\{SZIP_LIB\\}.*") "")
10775 (("PKG_LIBS = \\$\\{HDF5_LIB\\} \\$\\{SZIP_LIB\\}")
10776 "PKG_LIBS = ${HDF5_LIB}\n")))
10777 #t)))))
10778 (inputs
10779 `(("zlib" ,zlib)))
10780 (propagated-inputs
10781 `(("hdf5" ,hdf5)))
10782 (native-inputs
10783 `(("hdf5-source" ,(package-source hdf5))))
10784 (home-page "https://bioconductor.org/packages/Rhdf5lib")
10785 (synopsis "HDF5 library as an R package")
10786 (description "This package provides C and C++ HDF5 libraries for use in R
10787 packages.")
10788 (license license:artistic2.0)))
10789
10790 (define-public r-beachmat
10791 (package
10792 (name "r-beachmat")
10793 (version "1.0.2")
10794 (source
10795 (origin
10796 (method url-fetch)
10797 (uri (bioconductor-uri "beachmat" version))
10798 (sha256
10799 (base32
10800 "0b6dzja5fbx4dawb7ixj67mlhw4fy62pfp20mfp918fy96zmdwqz"))))
10801 (build-system r-build-system)
10802 (inputs
10803 `(("hdf5" ,hdf5)))
10804 (propagated-inputs
10805 `(("r-delayedarray" ,r-delayedarray)
10806 ("r-hdf5array" ,r-hdf5array)
10807 ("r-rcpp" ,r-rcpp)
10808 ("r-rhdf5" ,r-rhdf5)
10809 ("r-rhdf5lib" ,r-rhdf5lib)))
10810 (home-page "https://bioconductor.org/packages/beachmat")
10811 (synopsis "Compiling Bioconductor to handle each matrix type")
10812 (description "This package provides a consistent C++ class interface for a
10813 variety of commonly used matrix types, including sparse and HDF5-backed
10814 matrices.")
10815 (license license:gpl3)))
10816
10817 (define-public r-singlecellexperiment
10818 (package
10819 (name "r-singlecellexperiment")
10820 (version "1.0.0")
10821 (source
10822 (origin
10823 (method url-fetch)
10824 (uri (bioconductor-uri "SingleCellExperiment" version))
10825 (sha256
10826 (base32
10827 "1r276i97w64a5vdlg6952gkj7bls909p42zl8fn8yz87cdwyaars"))))
10828 (properties
10829 `((upstream-name . "SingleCellExperiment")))
10830 (build-system r-build-system)
10831 (propagated-inputs
10832 `(("r-biocgenerics" ,r-biocgenerics)
10833 ("r-s4vectors" ,r-s4vectors)
10834 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10835 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
10836 (synopsis "S4 classes for single cell data")
10837 (description "This package defines an S4 class for storing data from
10838 single-cell experiments. This includes specialized methods to store and
10839 retrieve spike-in information, dimensionality reduction coordinates and size
10840 factors for each cell, along with the usual metadata for genes and
10841 libraries.")
10842 (license license:gpl3)))
10843
10844 (define-public r-scater
10845 (package
10846 (name "r-scater")
10847 (version "1.6.3")
10848 (source (origin
10849 (method url-fetch)
10850 (uri (bioconductor-uri "scater" version))
10851 (sha256
10852 (base32
10853 "0q3s96gf8saa1dq2fvmpl0jyj7bx3wrdfck3hanb8pxkcir2p7dn"))))
10854 (build-system r-build-system)
10855 (propagated-inputs
10856 `(("r-beachmat" ,r-beachmat)
10857 ("r-biobase" ,r-biobase)
10858 ("r-biocgenerics" ,r-biocgenerics)
10859 ("r-biomart" ,r-biomart)
10860 ("r-data-table" ,r-data-table)
10861 ("r-dplyr" ,r-dplyr)
10862 ("r-edger" ,r-edger)
10863 ("r-ggbeeswarm" ,r-ggbeeswarm)
10864 ("r-ggplot2" ,r-ggplot2)
10865 ("r-limma" ,r-limma)
10866 ("r-matrix" ,r-matrix)
10867 ("r-matrixstats" ,r-matrixstats)
10868 ("r-plyr" ,r-plyr)
10869 ("r-rcpp" ,r-rcpp)
10870 ("r-reshape2" ,r-reshape2)
10871 ("r-rhdf5" ,r-rhdf5)
10872 ("r-rhdf5lib" ,r-rhdf5lib)
10873 ("r-rjson" ,r-rjson)
10874 ("r-s4vectors" ,r-s4vectors)
10875 ("r-shiny" ,r-shiny)
10876 ("r-shinydashboard" ,r-shinydashboard)
10877 ("r-singlecellexperiment" ,r-singlecellexperiment)
10878 ("r-summarizedexperiment" ,r-summarizedexperiment)
10879 ("r-tximport" ,r-tximport)
10880 ("r-viridis" ,r-viridis)))
10881 (home-page "https://github.com/davismcc/scater")
10882 (synopsis "Single-cell analysis toolkit for gene expression data in R")
10883 (description "This package provides a collection of tools for doing
10884 various analyses of single-cell RNA-seq gene expression data, with a focus on
10885 quality control.")
10886 (license license:gpl2+)))
10887
10888 (define-public r-scran
10889 (package
10890 (name "r-scran")
10891 (version "1.6.9")
10892 (source
10893 (origin
10894 (method url-fetch)
10895 (uri (bioconductor-uri "scran" version))
10896 (sha256
10897 (base32
10898 "0cs64cnf0xjcgmawr210y99j3gxs6aqgh8081n9827kkqnx2y5dm"))))
10899 (build-system r-build-system)
10900 (propagated-inputs
10901 `(("r-beachmat" ,r-beachmat)
10902 ("r-biocgenerics" ,r-biocgenerics)
10903 ("r-biocparallel" ,r-biocparallel)
10904 ("r-dt" ,r-dt)
10905 ("r-dynamictreecut" ,r-dynamictreecut)
10906 ("r-edger" ,r-edger)
10907 ("r-fnn" ,r-fnn)
10908 ("r-ggplot2" ,r-ggplot2)
10909 ("r-igraph" ,r-igraph)
10910 ("r-limma" ,r-limma)
10911 ("r-matrix" ,r-matrix)
10912 ("r-rcpp" ,r-rcpp)
10913 ("r-rhdf5lib" ,r-rhdf5lib)
10914 ("r-s4vectors" ,r-s4vectors)
10915 ("r-scater" ,r-scater)
10916 ("r-shiny" ,r-shiny)
10917 ("r-singlecellexperiment" ,r-singlecellexperiment)
10918 ("r-statmod" ,r-statmod)
10919 ("r-summarizedexperiment" ,r-summarizedexperiment)
10920 ("r-viridis" ,r-viridis)
10921 ("r-zoo" ,r-zoo)))
10922 (home-page "https://bioconductor.org/packages/scran")
10923 (synopsis "Methods for single-cell RNA-Seq data analysis")
10924 (description "This package implements a variety of low-level analyses of
10925 single-cell RNA-seq data. Methods are provided for normalization of
10926 cell-specific biases, assignment of cell cycle phase, and detection of highly
10927 variable and significantly correlated genes.")
10928 (license license:gpl3)))
10929
10930 (define-public r-delayedmatrixstats
10931 (package
10932 (name "r-delayedmatrixstats")
10933 (version "1.0.3")
10934 (source
10935 (origin
10936 (method url-fetch)
10937 (uri (bioconductor-uri "DelayedMatrixStats" version))
10938 (sha256
10939 (base32
10940 "1cxjbjdq9hg9cm95rci0al7a4pk2h73ym276ahw9q4977zbg6381"))))
10941 (properties
10942 `((upstream-name . "DelayedMatrixStats")))
10943 (build-system r-build-system)
10944 (propagated-inputs
10945 `(("r-delayedarray" ,r-delayedarray)
10946 ("r-iranges" ,r-iranges)
10947 ("r-matrix" ,r-matrix)
10948 ("r-matrixstats" ,r-matrixstats)
10949 ("r-s4vectors" ,r-s4vectors)))
10950 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
10951 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
10952 (description
10953 "This package provides a port of the @code{matrixStats} API for use with
10954 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
10955 contains high-performing functions operating on rows and columns of
10956 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
10957 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
10958 are optimized per data type and for subsetted calculations such that both
10959 memory usage and processing time is minimized.")
10960 (license license:expat)))
10961
10962 (define-public r-phangorn
10963 (package
10964 (name "r-phangorn")
10965 (version "2.4.0")
10966 (source
10967 (origin
10968 (method url-fetch)
10969 (uri (cran-uri "phangorn" version))
10970 (sha256
10971 (base32
10972 "0xc8k552nxczy19jr0xjjagrzc8x6lafasgk2c099ls8bc1yml1i"))))
10973 (build-system r-build-system)
10974 (propagated-inputs
10975 `(("r-ape" ,r-ape)
10976 ("r-fastmatch" ,r-fastmatch)
10977 ("r-igraph" ,r-igraph)
10978 ("r-magrittr" ,r-magrittr)
10979 ("r-matrix" ,r-matrix)
10980 ("r-quadprog" ,r-quadprog)
10981 ("r-rcpp" ,r-rcpp)))
10982 (home-page "https://github.com/KlausVigo/phangorn")
10983 (synopsis "Phylogenetic analysis in R")
10984 (description
10985 "Phangorn is a package for phylogenetic analysis in R. It supports
10986 estimation of phylogenetic trees and networks using Maximum Likelihood,
10987 Maximum Parsimony, distance methods and Hadamard conjugation.")
10988 (license license:gpl2+)))
10989
10990 (define-public r-dropbead
10991 (let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
10992 (revision "2"))
10993 (package
10994 (name "r-dropbead")
10995 (version (string-append "0-" revision "." (string-take commit 7)))
10996 (source
10997 (origin
10998 (method git-fetch)
10999 (uri (git-reference
11000 (url "https://github.com/rajewsky-lab/dropbead.git")
11001 (commit commit)))
11002 (file-name (git-file-name name version))
11003 (sha256
11004 (base32
11005 "0sbzma49aiiyw8b0jpr7fnhzys9nsqmp4hy4hdz1gzyg1lhnca26"))))
11006 (build-system r-build-system)
11007 (propagated-inputs
11008 `(("r-ggplot2" ,r-ggplot2)
11009 ("r-rcolorbrewer" ,r-rcolorbrewer)
11010 ("r-gridextra" ,r-gridextra)
11011 ("r-gplots" ,r-gplots)
11012 ("r-plyr" ,r-plyr)))
11013 (home-page "https://github.com/rajewsky-lab/dropbead")
11014 (synopsis "Basic exploration and analysis of Drop-seq data")
11015 (description "This package offers a quick and straight-forward way to
11016 explore and perform basic analysis of single cell sequencing data coming from
11017 droplet sequencing. It has been particularly tailored for Drop-seq.")
11018 (license license:gpl3))))
11019
11020 (define htslib-for-sambamba
11021 (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
11022 (package
11023 (inherit htslib)
11024 (name "htslib-for-sambamba")
11025 (version (string-append "1.3.1-1." (string-take commit 9)))
11026 (source
11027 (origin
11028 (method git-fetch)
11029 (uri (git-reference
11030 (url "https://github.com/lomereiter/htslib.git")
11031 (commit commit)))
11032 (file-name (string-append "htslib-" version "-checkout"))
11033 (sha256
11034 (base32
11035 "0g38g8s3npr0gjm9fahlbhiskyfws9l5i0x1ml3rakzj7az5l9c9"))))
11036 (arguments
11037 `(#:phases
11038 (modify-phases %standard-phases
11039 (add-after 'unpack 'bootstrap
11040 (lambda _ (invoke "autoreconf" "-vif"))))))
11041 (native-inputs
11042 `(("autoconf" ,autoconf)
11043 ("automake" ,automake)
11044 ,@(package-native-inputs htslib))))))
11045
11046 (define-public sambamba
11047 (package
11048 (name "sambamba")
11049 (version "0.6.7-10-g223fa20")
11050 (source
11051 (origin
11052 (method git-fetch)
11053 (uri (git-reference
11054 (url "https://github.com/lomereiter/sambamba.git")
11055 (commit (string-append "v" version))))
11056 (file-name (string-append name "-" version "-checkout"))
11057 (sha256
11058 (base32
11059 "1zb9hrxglxqh13ava9wwri30cvf85hjnbn8ccnr8l60a3k5avczn"))))
11060 (build-system gnu-build-system)
11061 (arguments
11062 `(#:tests? #f ; there is no test target
11063 #:parallel-build? #f ; not supported
11064 #:phases
11065 (modify-phases %standard-phases
11066 (delete 'configure)
11067 (add-after 'unpack 'fix-ldc-version
11068 (lambda _
11069 (substitute* "gen_ldc_version_info.py"
11070 (("/usr/bin/env.*") (which "python")))
11071 (substitute* "Makefile"
11072 (("\\$\\(shell which ldmd2\\)") (which "ldmd2")))
11073 #t))
11074 (add-after 'unpack 'place-biod-and-undead
11075 (lambda* (#:key inputs #:allow-other-keys)
11076 (copy-recursively (assoc-ref inputs "biod") "BioD")
11077 (copy-recursively (assoc-ref inputs "undead") "undeaD")
11078 #t))
11079 (add-after 'unpack 'unbundle-prerequisites
11080 (lambda _
11081 (substitute* "Makefile"
11082 (("htslib/libhts.a lz4/lib/liblz4.a")
11083 "-L-lhts -L-llz4")
11084 ((" htslib-static lz4-static") ""))
11085 #t))
11086 (replace 'install
11087 (lambda* (#:key outputs #:allow-other-keys)
11088 (let* ((out (assoc-ref outputs "out"))
11089 (bin (string-append out "/bin")))
11090 (mkdir-p bin)
11091 (install-file "build/sambamba" bin)
11092 #t))))))
11093 (native-inputs
11094 `(("ldc" ,ldc)
11095 ("rdmd" ,rdmd)
11096 ("python" ,python2-minimal)
11097 ("biod"
11098 ,(let ((commit "c778e4f2d8bacea7499283ce39f5577b232732c6"))
11099 (origin
11100 (method git-fetch)
11101 (uri (git-reference
11102 (url "https://github.com/biod/BioD.git")
11103 (commit commit)))
11104 (file-name (string-append "biod-"
11105 (string-take commit 9)
11106 "-checkout"))
11107 (sha256
11108 (base32
11109 "1z90562hg47i63gx042wb3ak2vqjg5z7hwgn9bp2pdxfg3nxrw37")))))
11110 ("undead"
11111 ,(let ((commit "92803d25c88657e945511f0976a0c79d8da46e89"))
11112 (origin
11113 (method git-fetch)
11114 (uri (git-reference
11115 (url "https://github.com/dlang/undeaD.git")
11116 (commit commit)))
11117 (file-name (string-append "undead-"
11118 (string-take commit 9)
11119 "-checkout"))
11120 (sha256
11121 (base32
11122 "0vq6n81vzqvgphjw54lz2isc1j8lcxwjdbrhqz1h5gwrvw9w5138")))))))
11123 (inputs
11124 `(("lz4" ,lz4)
11125 ("htslib" ,htslib-for-sambamba)))
11126 (home-page "http://lomereiter.github.io/sambamba")
11127 (synopsis "Tools for working with SAM/BAM data")
11128 (description "Sambamba is a high performance modern robust and
11129 fast tool (and library), written in the D programming language, for
11130 working with SAM and BAM files. Current parallelised functionality is
11131 an important subset of samtools functionality, including view, index,
11132 sort, markdup, and depth.")
11133 (license license:gpl2+)))
11134
11135 (define-public ritornello
11136 (package
11137 (name "ritornello")
11138 (version "1.0.0")
11139 (source (origin
11140 (method url-fetch)
11141 (uri (string-append "https://github.com/KlugerLab/"
11142 "Ritornello/archive/v"
11143 version ".tar.gz"))
11144 (file-name (string-append name "-" version ".tar.gz"))
11145 (sha256
11146 (base32
11147 "02nik86gq9ljjriv6pamwlmqnfky3ads1fpklx6mc3hx6k40pg38"))))
11148 (build-system gnu-build-system)
11149 (arguments
11150 `(#:tests? #f ; there are no tests
11151 #:phases
11152 (modify-phases %standard-phases
11153 (add-after 'unpack 'patch-samtools-references
11154 (lambda* (#:key inputs #:allow-other-keys)
11155 (substitute* '("src/SamStream.h"
11156 "src/BufferedGenomeReader.h")
11157 (("<sam.h>") "<samtools/sam.h>"))
11158 #t))
11159 (delete 'configure)
11160 (replace 'install
11161 (lambda* (#:key inputs outputs #:allow-other-keys)
11162 (let* ((out (assoc-ref outputs "out"))
11163 (bin (string-append out "/bin/")))
11164 (mkdir-p bin)
11165 (install-file "bin/Ritornello" bin)
11166 #t))))))
11167 (inputs
11168 `(("samtools" ,samtools-0.1)
11169 ("fftw" ,fftw)
11170 ("boost" ,boost)
11171 ("zlib" ,zlib)))
11172 (home-page "https://github.com/KlugerLab/Ritornello")
11173 (synopsis "Control-free peak caller for ChIP-seq data")
11174 (description "Ritornello is a ChIP-seq peak calling algorithm based on
11175 signal processing that can accurately call binding events without the need to
11176 do a pair total DNA input or IgG control sample. It has been tested for use
11177 with narrow binding events such as transcription factor ChIP-seq.")
11178 (license license:gpl3+)))
11179
11180 (define-public trim-galore
11181 (package
11182 (name "trim-galore")
11183 (version "0.4.5")
11184 (source
11185 (origin
11186 (method git-fetch)
11187 (uri (git-reference
11188 (url "https://github.com/FelixKrueger/TrimGalore.git")
11189 (commit version)))
11190 (file-name (string-append name "-" version "-checkout"))
11191 (sha256
11192 (base32
11193 "0x5892l48c816pf00wmnz5vq0zq6170d3xc8zrxncd4jcz7h1p71"))))
11194 (build-system gnu-build-system)
11195 (arguments
11196 `(#:tests? #f ; no tests
11197 #:phases
11198 (modify-phases %standard-phases
11199 (delete 'configure)
11200 (delete 'build)
11201 (add-after 'unpack 'hardcode-tool-references
11202 (lambda* (#:key inputs #:allow-other-keys)
11203 (substitute* "trim_galore"
11204 (("\\$path_to_cutadapt = 'cutadapt'")
11205 (string-append "$path_to_cutadapt = '"
11206 (assoc-ref inputs "cutadapt")
11207 "/bin/cutadapt'"))
11208 (("\\| gzip")
11209 (string-append "| "
11210 (assoc-ref inputs "gzip")
11211 "/bin/gzip"))
11212 (("\"gunzip")
11213 (string-append "\""
11214 (assoc-ref inputs "gzip")
11215 "/bin/gunzip")))
11216 #t))
11217 (replace 'install
11218 (lambda* (#:key outputs #:allow-other-keys)
11219 (let ((bin (string-append (assoc-ref outputs "out")
11220 "/bin")))
11221 (mkdir-p bin)
11222 (install-file "trim_galore" bin)
11223 #t))))))
11224 (inputs
11225 `(("gzip" ,gzip)
11226 ("perl" ,perl)
11227 ("cutadapt" ,cutadapt)))
11228 (native-inputs
11229 `(("unzip" ,unzip)))
11230 (home-page "http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/")
11231 (synopsis "Wrapper around Cutadapt and FastQC")
11232 (description "Trim Galore! is a wrapper script to automate quality and
11233 adapter trimming as well as quality control, with some added functionality to
11234 remove biased methylation positions for RRBS sequence files.")
11235 (license license:gpl3+)))
11236
11237 (define-public gess
11238 (package
11239 (name "gess")
11240 (version "1.0")
11241 (source (origin
11242 (method url-fetch)
11243 (uri (string-append "http://compbio.uthscsa.edu/"
11244 "GESS_Web/files/"
11245 "gess-" version ".src.tar.gz"))
11246 (sha256
11247 (base32
11248 "0hyk403kxscclzfs24pvdgiv0wm03kjcziqdrp5w46cb049gz0d7"))))
11249 (build-system gnu-build-system)
11250 (arguments
11251 `(#:tests? #f ; no tests
11252 #:phases
11253 (modify-phases %standard-phases
11254 (delete 'configure)
11255 (delete 'build)
11256 (replace 'install
11257 (lambda* (#:key inputs outputs #:allow-other-keys)
11258 (let* ((python (assoc-ref inputs "python"))
11259 (out (assoc-ref outputs "out"))
11260 (bin (string-append out "/bin/"))
11261 (target (string-append
11262 out "/lib/python2.7/site-packages/gess/")))
11263 (mkdir-p target)
11264 (copy-recursively "." target)
11265 ;; Make GESS.py executable
11266 (chmod (string-append target "GESS.py") #o555)
11267 ;; Add Python shebang to the top and make Matplotlib
11268 ;; usable.
11269 (substitute* (string-append target "GESS.py")
11270 (("\"\"\"Description:" line)
11271 (string-append "#!" (which "python") "
11272 import matplotlib
11273 matplotlib.use('Agg')
11274 " line)))
11275 ;; Make sure GESS has all modules in its path
11276 (wrap-program (string-append target "GESS.py")
11277 `("PYTHONPATH" ":" prefix (,target ,(getenv "PYTHONPATH"))))
11278 (mkdir-p bin)
11279 (symlink (string-append target "GESS.py")
11280 (string-append bin "GESS.py"))
11281 #t))))))
11282 (inputs
11283 `(("python" ,python-2)
11284 ("python2-pysam" ,python2-pysam)
11285 ("python2-scipy" ,python2-scipy)
11286 ("python2-numpy" ,python2-numpy)
11287 ("python2-networkx" ,python2-networkx)
11288 ("python2-biopython" ,python2-biopython)))
11289 (home-page "http://compbio.uthscsa.edu/GESS_Web/")
11290 (synopsis "Detect exon-skipping events from raw RNA-seq data")
11291 (description
11292 "GESS is an implementation of a novel computational method to detect de
11293 novo exon-skipping events directly from raw RNA-seq data without the prior
11294 knowledge of gene annotation information. GESS stands for the graph-based
11295 exon-skipping scanner detection scheme.")
11296 (license license:bsd-3)))
11297
11298 (define-public phylip
11299 (package
11300 (name "phylip")
11301 (version "3.696")
11302 (source
11303 (origin
11304 (method url-fetch)
11305 (uri (string-append "http://evolution.gs.washington.edu/phylip/"
11306 "download/phylip-" version ".tar.gz"))
11307 (sha256
11308 (base32
11309 "01jar1rayhr2gba2pgbw49m56rc5z4p5wn3ds0m188hrlln4a2nd"))))
11310 (build-system gnu-build-system)
11311 (arguments
11312 `(#:tests? #f ; no check target
11313 #:make-flags (list "-f" "Makefile.unx" "install")
11314 #:parallel-build? #f ; not supported
11315 #:phases
11316 (modify-phases %standard-phases
11317 (add-after 'unpack 'enter-dir
11318 (lambda _ (chdir "src") #t))
11319 (delete 'configure)
11320 (replace 'install
11321 (lambda* (#:key inputs outputs #:allow-other-keys)
11322 (let ((target (string-append (assoc-ref outputs "out")
11323 "/bin")))
11324 (mkdir-p target)
11325 (for-each (lambda (file)
11326 (install-file file target))
11327 (find-files "../exe" ".*")))
11328 #t)))))
11329 (home-page "http://evolution.genetics.washington.edu/phylip/")
11330 (synopsis "Tools for inferring phylogenies")
11331 (description "PHYLIP (the PHYLogeny Inference Package) is a package of
11332 programs for inferring phylogenies (evolutionary trees).")
11333 (license license:bsd-2)))
11334
11335 (define-public imp
11336 (package
11337 (name "imp")
11338 (version "2.6.2")
11339 (source
11340 (origin
11341 (method url-fetch)
11342 (uri (string-append "https://integrativemodeling.org/"
11343 version "/download/imp-" version ".tar.gz"))
11344 (sha256
11345 (base32
11346 "0lxqx7vh79d771svr611dkilp6sn30qrbw8zvscbrm37v38d2j6h"))))
11347 (build-system cmake-build-system)
11348 (arguments
11349 `(;; FIXME: Some tests fail because they produce warnings, others fail
11350 ;; because the PYTHONPATH does not include the modeller's directory.
11351 #:tests? #f))
11352 (inputs
11353 `(("boost" ,boost)
11354 ("gsl" ,gsl)
11355 ("swig" ,swig)
11356 ("hdf5" ,hdf5)
11357 ("fftw" ,fftw)
11358 ("python" ,python-2)))
11359 (propagated-inputs
11360 `(("python2-numpy" ,python2-numpy)
11361 ("python2-scipy" ,python2-scipy)
11362 ("python2-pandas" ,python2-pandas)
11363 ("python2-scikit-learn" ,python2-scikit-learn)
11364 ("python2-networkx" ,python2-networkx)))
11365 (home-page "https://integrativemodeling.org")
11366 (synopsis "Integrative modeling platform")
11367 (description "IMP's broad goal is to contribute to a comprehensive
11368 structural characterization of biomolecules ranging in size and complexity
11369 from small peptides to large macromolecular assemblies, by integrating data
11370 from diverse biochemical and biophysical experiments. IMP provides a C++ and
11371 Python toolbox for solving complex modeling problems, and a number of
11372 applications for tackling some common problems in a user-friendly way.")
11373 ;; IMP is largely available under the GNU Lesser GPL; see the file
11374 ;; COPYING.LGPL for the full text of this license. Some IMP modules are
11375 ;; available under the GNU GPL (see the file COPYING.GPL).
11376 (license (list license:lgpl2.1+
11377 license:gpl3+))))
11378
11379 (define-public tadbit
11380 (package
11381 (name "tadbit")
11382 (version "0.2")
11383 (source (origin
11384 (method url-fetch)
11385 (uri (string-append "https://github.com/3DGenomes/TADbit/"
11386 "archive/v" version ".tar.gz"))
11387 (file-name (string-append name "-" version ".tar.gz"))
11388 (sha256
11389 (base32
11390 "1cnfqrl4685zar4nnw94j94nhvl2h29jm448nadqi1h05z6fdk4f"))))
11391 (build-system python-build-system)
11392 (arguments
11393 `(;; Tests are included and must be run after installation, but
11394 ;; they are incomplete and thus cannot be run.
11395 #:tests? #f
11396 #:python ,python-2
11397 #:phases
11398 (modify-phases %standard-phases
11399 (add-after 'unpack 'fix-problems-with-setup.py
11400 (lambda* (#:key outputs #:allow-other-keys)
11401 ;; setup.py opens these files for writing
11402 (chmod "_pytadbit/_version.py" #o664)
11403 (chmod "README.rst" #o664)
11404
11405 ;; Don't attempt to install the bash completions to
11406 ;; the home directory.
11407 (rename-file "extras/.bash_completion"
11408 "extras/tadbit")
11409 (substitute* "setup.py"
11410 (("\\(path.expanduser\\('~'\\)")
11411 (string-append "(\""
11412 (assoc-ref outputs "out")
11413 "/etc/bash_completion.d\""))
11414 (("extras/\\.bash_completion")
11415 "extras/tadbit"))
11416 #t)))))
11417 (inputs
11418 ;; TODO: add Chimera for visualization
11419 `(("imp" ,imp)
11420 ("mcl" ,mcl)
11421 ("python2-scipy" ,python2-scipy)
11422 ("python2-numpy" ,python2-numpy)
11423 ("python2-matplotlib" ,python2-matplotlib)
11424 ("python2-pysam" ,python2-pysam)))
11425 (home-page "http://3dgenomes.github.io/TADbit/")
11426 (synopsis "Analyze, model, and explore 3C-based data")
11427 (description
11428 "TADbit is a complete Python library to deal with all steps to analyze,
11429 model, and explore 3C-based data. With TADbit the user can map FASTQ files to
11430 obtain raw interaction binned matrices (Hi-C like matrices), normalize and
11431 correct interaction matrices, identify and compare the so-called
11432 @dfn{Topologically Associating Domains} (TADs), build 3D models from the
11433 interaction matrices, and finally, extract structural properties from the
11434 models. TADbit is complemented by TADkit for visualizing 3D models.")
11435 (license license:gpl3+)))
11436
11437 (define-public kentutils
11438 (package
11439 (name "kentutils")
11440 ;; 302.1.0 is out, but the only difference is the inclusion of
11441 ;; pre-built binaries.
11442 (version "302.0.0")
11443 (source
11444 (origin
11445 (method url-fetch)
11446 (uri (string-append "https://github.com/ENCODE-DCC/kentUtils/"
11447 "archive/v" version ".tar.gz"))
11448 (file-name (string-append name "-" version ".tar.gz"))
11449 (sha256
11450 (base32
11451 "134aja3k1cj32kbk1nnw0q9gxjb2krr15q6sga8qldzvc0585rmm"))
11452 (modules '((guix build utils)
11453 (srfi srfi-26)
11454 (ice-9 ftw)))
11455 (snippet
11456 '(begin
11457 ;; Only the contents of the specified directories are free
11458 ;; for all uses, so we remove the rest. "hg/autoSql" and
11459 ;; "hg/autoXml" are nominally free, but they depend on a
11460 ;; library that is built from the sources in "hg/lib",
11461 ;; which is nonfree.
11462 (let ((free (list "." ".."
11463 "utils" "lib" "inc" "tagStorm"
11464 "parasol" "htslib"))
11465 (directory? (lambda (file)
11466 (eq? 'directory (stat:type (stat file))))))
11467 (for-each (lambda (file)
11468 (and (directory? file)
11469 (delete-file-recursively file)))
11470 (map (cut string-append "src/" <>)
11471 (scandir "src"
11472 (lambda (file)
11473 (not (member file free)))))))
11474 ;; Only make the utils target, not the userApps target,
11475 ;; because that requires libraries we won't build.
11476 (substitute* "Makefile"
11477 ((" userApps") " utils"))
11478 ;; Only build libraries that are free.
11479 (substitute* "src/makefile"
11480 (("DIRS =.*") "DIRS =\n")
11481 (("cd jkOwnLib.*") "")
11482 ((" hgLib") "")
11483 (("cd hg.*") ""))
11484 (substitute* "src/utils/makefile"
11485 ;; These tools depend on "jkhgap.a", which is part of the
11486 ;; nonfree "src/hg/lib" directory.
11487 (("raSqlQuery") "")
11488 (("pslLiftSubrangeBlat") "")
11489
11490 ;; Do not build UCSC tools, which may require nonfree
11491 ;; components.
11492 (("ALL_APPS =.*") "ALL_APPS = $(UTILS_APPLIST)\n"))
11493 #t))))
11494 (build-system gnu-build-system)
11495 (arguments
11496 `( ;; There is no global test target and the test target for
11497 ;; individual tools depends on input files that are not
11498 ;; included.
11499 #:tests? #f
11500 #:phases
11501 (modify-phases %standard-phases
11502 (add-after 'unpack 'fix-paths
11503 (lambda _
11504 (substitute* "Makefile"
11505 (("/bin/echo") (which "echo")))
11506 #t))
11507 (add-after 'unpack 'prepare-samtabix
11508 (lambda* (#:key inputs #:allow-other-keys)
11509 (copy-recursively (assoc-ref inputs "samtabix")
11510 "samtabix")
11511 #t))
11512 (delete 'configure)
11513 (replace 'install
11514 (lambda* (#:key outputs #:allow-other-keys)
11515 (let ((bin (string-append (assoc-ref outputs "out")
11516 "/bin")))
11517 (copy-recursively "bin" bin))
11518 #t)))))
11519 (native-inputs
11520 `(("samtabix"
11521 ,(origin
11522 (method git-fetch)
11523 (uri (git-reference
11524 (url "http://genome-source.cse.ucsc.edu/samtabix.git")
11525 (commit "10fd107909c1ac4d679299908be4262a012965ba")))
11526 (sha256
11527 (base32
11528 "0c1nj64l42v395sa84n7az43xiap4i6f9n9dfz4058aqiwkhkmma"))))))
11529 (inputs
11530 `(("zlib" ,zlib)
11531 ("tcsh" ,tcsh)
11532 ("perl" ,perl)
11533 ("libpng" ,libpng)
11534 ("mariadb" ,mariadb)
11535 ("openssl" ,openssl)))
11536 (home-page "http://genome.cse.ucsc.edu/index.html")
11537 (synopsis "Assorted bioinformatics utilities")
11538 (description "This package provides the kentUtils, a selection of
11539 bioinformatics utilities used in combination with the UCSC genome
11540 browser.")
11541 ;; Only a subset of the sources are released under a non-copyleft
11542 ;; free software license. All other sources are removed in a
11543 ;; snippet. See this bug report for an explanation of how the
11544 ;; license statements apply:
11545 ;; https://github.com/ENCODE-DCC/kentUtils/issues/12
11546 (license (license:non-copyleft
11547 "http://genome.ucsc.edu/license/"
11548 "The contents of this package are free for all uses."))))
11549
11550 (define-public f-seq
11551 (let ((commit "6ccded34cff38cf432deed8503648b4a66953f9b")
11552 (revision "1"))
11553 (package
11554 (name "f-seq")
11555 (version (string-append "1.1-" revision "." (string-take commit 7)))
11556 (source (origin
11557 (method git-fetch)
11558 (uri (git-reference
11559 (url "https://github.com/aboyle/F-seq.git")
11560 (commit commit)))
11561 (file-name (string-append name "-" version))
11562 (sha256
11563 (base32
11564 "1nk33k0yajg2id4g59bc4szr58r2q6pdq42vgcw054m8ip9wv26h"))
11565 (modules '((guix build utils)))
11566 ;; Remove bundled Java library archives.
11567 (snippet
11568 '(begin
11569 (for-each delete-file (find-files "lib" ".*"))
11570 #t))))
11571 (build-system ant-build-system)
11572 (arguments
11573 `(#:tests? #f ; no tests included
11574 #:phases
11575 (modify-phases %standard-phases
11576 (replace 'install
11577 (lambda* (#:key inputs outputs #:allow-other-keys)
11578 (let* ((target (assoc-ref outputs "out"))
11579 (bin (string-append target "/bin"))
11580 (doc (string-append target "/share/doc/f-seq"))
11581 (lib (string-append target "/lib")))
11582 (mkdir-p target)
11583 (mkdir-p doc)
11584 (substitute* "bin/linux/fseq"
11585 (("java") (which "java"))
11586 (("\\$REALDIR/../lib/commons-cli-1.1.jar")
11587 (string-append (assoc-ref inputs "java-commons-cli")
11588 "/share/java/commons-cli.jar"))
11589 (("REALDIR=.*")
11590 (string-append "REALDIR=" bin "\n")))
11591 (install-file "README.txt" doc)
11592 (install-file "bin/linux/fseq" bin)
11593 (install-file "build~/fseq.jar" lib)
11594 (copy-recursively "lib" lib)
11595 #t))))))
11596 (inputs
11597 `(("perl" ,perl)
11598 ("java-commons-cli" ,java-commons-cli)))
11599 (home-page "http://fureylab.web.unc.edu/software/fseq/")
11600 (synopsis "Feature density estimator for high-throughput sequence tags")
11601 (description
11602 "F-Seq is a software package that generates a continuous tag sequence
11603 density estimation allowing identification of biologically meaningful sites
11604 such as transcription factor binding sites (ChIP-seq) or regions of open
11605 chromatin (DNase-seq). Output can be displayed directly in the UCSC Genome
11606 Browser.")
11607 (license license:gpl3+))))
11608
11609 (define-public bismark
11610 (package
11611 (name "bismark")
11612 (version "0.19.1")
11613 (source
11614 (origin
11615 (method git-fetch)
11616 (uri (git-reference
11617 (url "https://github.com/FelixKrueger/Bismark.git")
11618 (commit version)))
11619 (file-name (string-append name "-" version "-checkout"))
11620 (sha256
11621 (base32
11622 "0yb5l36slwg02fp4b1jdlplgljcsxgqfzvzihzdnphd87dghcc84"))
11623 (snippet
11624 '(begin
11625 ;; highcharts.js is non-free software. The code is available under
11626 ;; CC-BY-NC or proprietary licenses only.
11627 (delete-file "bismark_sitrep/highcharts.js")
11628 #t))))
11629 (build-system perl-build-system)
11630 (arguments
11631 `(#:tests? #f ; there are no tests
11632 #:phases
11633 (modify-phases %standard-phases
11634 (delete 'configure)
11635 (delete 'build)
11636 (replace 'install
11637 (lambda* (#:key inputs outputs #:allow-other-keys)
11638 (let* ((out (assoc-ref outputs "out"))
11639 (bin (string-append out "/bin"))
11640 (share (string-append out "/share/bismark"))
11641 (docdir (string-append out "/share/doc/bismark"))
11642 (docs '("Docs/Bismark_User_Guide.html"))
11643 (scripts '("bismark"
11644 "bismark_genome_preparation"
11645 "bismark_methylation_extractor"
11646 "bismark2bedGraph"
11647 "bismark2report"
11648 "coverage2cytosine"
11649 "deduplicate_bismark"
11650 "filter_non_conversion"
11651 "bam2nuc"
11652 "bismark2summary")))
11653 (substitute* "bismark2report"
11654 (("\\$RealBin/bismark_sitrep")
11655 (string-append share "/bismark_sitrep")))
11656 (mkdir-p share)
11657 (mkdir-p docdir)
11658 (mkdir-p bin)
11659 (for-each (lambda (file) (install-file file bin))
11660 scripts)
11661 (for-each (lambda (file) (install-file file docdir))
11662 docs)
11663 (copy-recursively "Docs/Images" (string-append docdir "/Images"))
11664 (copy-recursively "bismark_sitrep"
11665 (string-append share "/bismark_sitrep"))
11666
11667 ;; Fix references to gunzip
11668 (substitute* (map (lambda (file)
11669 (string-append bin "/" file))
11670 scripts)
11671 (("\"gunzip -c")
11672 (string-append "\"" (assoc-ref inputs "gzip")
11673 "/bin/gunzip -c")))
11674 #t))))))
11675 (inputs
11676 `(("gzip" ,gzip)))
11677 (home-page "http://www.bioinformatics.babraham.ac.uk/projects/bismark/")
11678 (synopsis "Map bisulfite treated sequence reads and analyze methylation")
11679 (description "Bismark is a program to map bisulfite treated sequencing
11680 reads to a genome of interest and perform methylation calls in a single step.
11681 The output can be easily imported into a genome viewer, such as SeqMonk, and
11682 enables a researcher to analyse the methylation levels of their samples
11683 straight away. Its main features are:
11684
11685 @itemize
11686 @item Bisulfite mapping and methylation calling in one single step
11687 @item Supports single-end and paired-end read alignments
11688 @item Supports ungapped and gapped alignments
11689 @item Alignment seed length, number of mismatches etc are adjustable
11690 @item Output discriminates between cytosine methylation in CpG, CHG
11691 and CHH context
11692 @end itemize\n")
11693 (license license:gpl3+)))
11694
11695 (define-public paml
11696 (package
11697 (name "paml")
11698 (version "4.9e")
11699 (source (origin
11700 (method url-fetch)
11701 (uri (string-append "http://abacus.gene.ucl.ac.uk/software/"
11702 "paml" version ".tgz"))
11703 (sha256
11704 (base32
11705 "13zf6h9fiqghwhch2h06x1zdr6s42plsnqahflp5g7myr3han3s6"))
11706 (modules '((guix build utils)))
11707 ;; Remove Windows binaries
11708 (snippet
11709 '(begin
11710 (for-each delete-file (find-files "." "\\.exe$"))
11711 #t))))
11712 (build-system gnu-build-system)
11713 (arguments
11714 `(#:tests? #f ; there are no tests
11715 #:make-flags '("CC=gcc")
11716 #:phases
11717 (modify-phases %standard-phases
11718 (replace 'configure
11719 (lambda _
11720 (substitute* "src/BFdriver.c"
11721 (("/bin/bash") (which "bash")))
11722 (chdir "src")
11723 #t))
11724 (replace 'install
11725 (lambda* (#:key outputs #:allow-other-keys)
11726 (let ((tools '("baseml" "basemlg" "codeml"
11727 "pamp" "evolver" "yn00" "chi2"))
11728 (bin (string-append (assoc-ref outputs "out") "/bin"))
11729 (docdir (string-append (assoc-ref outputs "out")
11730 "/share/doc/paml")))
11731 (mkdir-p bin)
11732 (for-each (lambda (file) (install-file file bin)) tools)
11733 (copy-recursively "../doc" docdir)
11734 #t))))))
11735 (home-page "http://abacus.gene.ucl.ac.uk/software/paml.html")
11736 (synopsis "Phylogentic analysis by maximum likelihood")
11737 (description "PAML (for Phylogentic Analysis by Maximum Likelihood)
11738 contains a few programs for model fitting and phylogenetic tree reconstruction
11739 using nucleotide or amino-acid sequence data.")
11740 ;; GPLv3 only
11741 (license license:gpl3)))
11742
11743 (define-public kallisto
11744 (package
11745 (name "kallisto")
11746 (version "0.43.1")
11747 (source (origin
11748 (method url-fetch)
11749 (uri (string-append "https://github.com/pachterlab/"
11750 "kallisto/archive/v" version ".tar.gz"))
11751 (file-name (string-append name "-" version ".tar.gz"))
11752 (sha256
11753 (base32
11754 "03j3iqhvq7ya3c91gidly3k3jvgm97vjq4scihrlxh315j696r11"))))
11755 (build-system cmake-build-system)
11756 (arguments `(#:tests? #f)) ; no "check" target
11757 (inputs
11758 `(("hdf5" ,hdf5)
11759 ("zlib" ,zlib)))
11760 (home-page "http://pachterlab.github.io/kallisto/")
11761 (synopsis "Near-optimal RNA-Seq quantification")
11762 (description
11763 "Kallisto is a program for quantifying abundances of transcripts from
11764 RNA-Seq data, or more generally of target sequences using high-throughput
11765 sequencing reads. It is based on the novel idea of pseudoalignment for
11766 rapidly determining the compatibility of reads with targets, without the need
11767 for alignment. Pseudoalignment of reads preserves the key information needed
11768 for quantification, and kallisto is therefore not only fast, but also as
11769 accurate as existing quantification tools.")
11770 (license license:bsd-2)))
11771
11772 (define-public libgff
11773 (package
11774 (name "libgff")
11775 (version "1.0")
11776 (source (origin
11777 (method url-fetch)
11778 (uri (string-append
11779 "https://github.com/Kingsford-Group/"
11780 "libgff/archive/v" version ".tar.gz"))
11781 (file-name (string-append name "-" version ".tar.gz"))
11782 (sha256
11783 (base32
11784 "0vc4nxyhlm6g9vvmx5l4lfs5pnvixsv1hiiy4kddf2y3p6jna8ls"))))
11785 (build-system cmake-build-system)
11786 (arguments `(#:tests? #f)) ; no tests included
11787 (home-page "https://github.com/Kingsford-Group/libgff")
11788 (synopsis "Parser library for reading/writing GFF files")
11789 (description "This is a simple \"libraryfication\" of the GFF/GTF parsing
11790 code that is used in the Cufflinks codebase. The goal of this library is to
11791 provide this functionality without the necessity of drawing in a heavy-weight
11792 dependency like SeqAn.")
11793 (license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"))))
11794
11795 (define-public libdivsufsort
11796 (package
11797 (name "libdivsufsort")
11798 (version "2.0.1")
11799 (source (origin
11800 (method git-fetch)
11801 (uri (git-reference
11802 (url "https://github.com/y-256/libdivsufsort.git")
11803 (commit version)))
11804 (file-name (git-file-name name version))
11805 (sha256
11806 (base32
11807 "0fgdz9fzihlvjjrxy01md1bv9vh12rkgkwbm90b1hj5xpbaqp7z2"))))
11808 (build-system cmake-build-system)
11809 (arguments
11810 '(#:tests? #f ; there are no tests
11811 #:configure-flags
11812 ;; Needed for rapmap and sailfish.
11813 '("-DBUILD_DIVSUFSORT64=ON")))
11814 (home-page "https://github.com/y-256/libdivsufsort")
11815 (synopsis "Lightweight suffix-sorting library")
11816 (description "libdivsufsort is a software library that implements a
11817 lightweight suffix array construction algorithm. This library provides a
11818 simple and an efficient C API to construct a suffix array and a
11819 Burrows-Wheeler transformed string from a given string over a constant-size
11820 alphabet. The algorithm runs in O(n log n) worst-case time using only 5n+O(1)
11821 bytes of memory space, where n is the length of the string.")
11822 (license license:expat)))
11823
11824 (define-public sailfish
11825 (package
11826 (name "sailfish")
11827 (version "0.10.1")
11828 (source (origin
11829 (method url-fetch)
11830 (uri
11831 (string-append "https://github.com/kingsfordgroup/"
11832 "sailfish/archive/v" version ".tar.gz"))
11833 (file-name (string-append name "-" version ".tar.gz"))
11834 (sha256
11835 (base32
11836 "1inn60dxiwsz8g9w7kvfhjxj4bwfb0r12dyhpzzhfbig712dkmm0"))
11837 (modules '((guix build utils)))
11838 (snippet
11839 '(begin
11840 ;; Delete bundled headers for eigen3.
11841 (delete-file-recursively "include/eigen3/")
11842 #t))))
11843 (build-system cmake-build-system)
11844 (arguments
11845 `(#:configure-flags
11846 (list (string-append "-DBOOST_INCLUDEDIR="
11847 (assoc-ref %build-inputs "boost")
11848 "/include/")
11849 (string-append "-DBOOST_LIBRARYDIR="
11850 (assoc-ref %build-inputs "boost")
11851 "/lib/")
11852 (string-append "-DBoost_LIBRARIES="
11853 "-lboost_iostreams "
11854 "-lboost_filesystem "
11855 "-lboost_system "
11856 "-lboost_thread "
11857 "-lboost_timer "
11858 "-lboost_chrono "
11859 "-lboost_program_options")
11860 "-DBoost_FOUND=TRUE"
11861 ;; Don't download RapMap---we already have it!
11862 "-DFETCHED_RAPMAP=1")
11863 ;; Tests must be run after installation and the location of the test
11864 ;; data file must be overridden. But the tests fail. It looks like
11865 ;; they are not really meant to be run.
11866 #:tests? #f
11867 #:phases
11868 (modify-phases %standard-phases
11869 ;; Boost cannot be found, even though it's right there.
11870 (add-after 'unpack 'do-not-look-for-boost
11871 (lambda* (#:key inputs #:allow-other-keys)
11872 (substitute* "CMakeLists.txt"
11873 (("find_package\\(Boost 1\\.53\\.0") "#"))))
11874 (add-after 'unpack 'do-not-assign-to-macro
11875 (lambda _
11876 (substitute* "include/spdlog/details/format.cc"
11877 (("const unsigned CHAR_WIDTH = 1;") ""))))
11878 (add-after 'unpack 'prepare-rapmap
11879 (lambda* (#:key inputs #:allow-other-keys)
11880 (let ((src "external/install/src/rapmap/")
11881 (include "external/install/include/rapmap/")
11882 (rapmap (assoc-ref inputs "rapmap")))
11883 (mkdir-p "/tmp/rapmap")
11884 (system* "tar" "xf"
11885 (assoc-ref inputs "rapmap")
11886 "-C" "/tmp/rapmap"
11887 "--strip-components=1")
11888 (mkdir-p src)
11889 (mkdir-p include)
11890 (for-each (lambda (file)
11891 (install-file file src))
11892 (find-files "/tmp/rapmap/src" "\\.(c|cpp)"))
11893 (copy-recursively "/tmp/rapmap/include" include))))
11894 (add-after 'unpack 'use-system-libraries
11895 (lambda* (#:key inputs #:allow-other-keys)
11896 (substitute* '("src/SailfishIndexer.cpp"
11897 "src/SailfishUtils.cpp"
11898 "src/SailfishQuantify.cpp"
11899 "src/FASTAParser.cpp"
11900 "include/PCA.hpp"
11901 "include/SailfishUtils.hpp"
11902 "include/SailfishIndex.hpp"
11903 "include/CollapsedEMOptimizer.hpp"
11904 "src/CollapsedEMOptimizer.cpp")
11905 (("#include \"jellyfish/config.h\"") ""))
11906 (substitute* "src/CMakeLists.txt"
11907 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/include/jellyfish-2.2..")
11908 (string-append (assoc-ref inputs "jellyfish")
11909 "/include/jellyfish-" ,(package-version jellyfish)))
11910 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libjellyfish-2.0.a")
11911 (string-append (assoc-ref inputs "jellyfish")
11912 "/lib/libjellyfish-2.0.a"))
11913 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
11914 (string-append (assoc-ref inputs "libdivsufsort")
11915 "/lib/libdivsufsort.so"))
11916 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
11917 (string-append (assoc-ref inputs "libdivsufsort")
11918 "/lib/libdivsufsort64.so")))
11919 (substitute* "CMakeLists.txt"
11920 ;; Don't prefer static libs
11921 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
11922 (("find_package\\(Jellyfish.*") "")
11923 (("ExternalProject_Add\\(libjellyfish") "message(")
11924 (("ExternalProject_Add\\(libgff") "message(")
11925 (("ExternalProject_Add\\(libsparsehash") "message(")
11926 (("ExternalProject_Add\\(libdivsufsort") "message("))
11927
11928 ;; Ensure that Eigen headers can be found
11929 (setenv "CPLUS_INCLUDE_PATH"
11930 (string-append (getenv "CPLUS_INCLUDE_PATH")
11931 ":"
11932 (assoc-ref inputs "eigen")
11933 "/include/eigen3")))))))
11934 (inputs
11935 `(("boost" ,boost)
11936 ("eigen" ,eigen)
11937 ("jemalloc" ,jemalloc)
11938 ("jellyfish" ,jellyfish)
11939 ("sparsehash" ,sparsehash)
11940 ("rapmap" ,(origin
11941 (method git-fetch)
11942 (uri (git-reference
11943 (url "https://github.com/COMBINE-lab/RapMap.git")
11944 (commit (string-append "sf-v" version))))
11945 (file-name (string-append "rapmap-sf-v" version "-checkout"))
11946 (sha256
11947 (base32
11948 "1hv79l5i576ykv5a1srj2p0q36yvyl5966m0fcy2lbi169ipjakf"))
11949 (modules '((guix build utils)))
11950 ;; These files are expected to be excluded.
11951 (snippet
11952 '(begin (delete-file-recursively "include/spdlog")
11953 (for-each delete-file '("include/xxhash.h"
11954 "src/xxhash.c"))))))
11955 ("libdivsufsort" ,libdivsufsort)
11956 ("libgff" ,libgff)
11957 ("tbb" ,tbb)
11958 ("zlib" ,zlib)))
11959 (native-inputs
11960 `(("pkg-config" ,pkg-config)))
11961 (home-page "http://www.cs.cmu.edu/~ckingsf/software/sailfish")
11962 (synopsis "Mapping-based isoform quantification from RNA-Seq reads")
11963 (description "Sailfish is a tool for genomic transcript quantification
11964 from RNA-seq data. It requires a set of target transcripts (either from a
11965 reference or de-novo assembly) to quantify. All you need to run sailfish is a
11966 fasta file containing your reference transcripts and a (set of) fasta/fastq
11967 file(s) containing your reads.")
11968 (license license:gpl3+)))
11969
11970 (define libstadenio-for-salmon
11971 (package
11972 (name "libstadenio")
11973 (version "1.14.8")
11974 (source (origin
11975 (method git-fetch)
11976 (uri (git-reference
11977 (url "https://github.com/COMBINE-lab/staden-io_lib.git")
11978 (commit (string-append "v" version))))
11979 (file-name (string-append name "-" version "-checkout"))
11980 (sha256
11981 (base32
11982 "1x8kxxqxl892vwfbprlbyfwkkv7c34ggkc94892x9x0g37x5nbwx"))))
11983 (build-system gnu-build-system)
11984 (arguments '(#:parallel-tests? #f)) ; not supported
11985 (inputs
11986 `(("zlib" ,zlib)))
11987 (native-inputs
11988 `(("perl" ,perl))) ; for tests
11989 (home-page "https://github.com/COMBINE-lab/staden-io_lib")
11990 (synopsis "General purpose trace and experiment file library")
11991 (description "This package provides a library of file reading and writing
11992 code to provide a general purpose Trace file (and Experiment File) reading
11993 interface.
11994
11995 The following file formats are supported:
11996
11997 @enumerate
11998 @item SCF trace files
11999 @item ABI trace files
12000 @item ALF trace files
12001 @item ZTR trace files
12002 @item SFF trace archives
12003 @item SRF trace archives
12004 @item Experiment files
12005 @item Plain text files
12006 @item SAM/BAM sequence files
12007 @item CRAM sequence files
12008 @end enumerate\n")
12009 (license license:bsd-3)))
12010
12011 (define spdlog-for-salmon
12012 (package
12013 (name "spdlog")
12014 (version "0.14.0")
12015 (source (origin
12016 (method git-fetch)
12017 (uri (git-reference
12018 (url "https://github.com/COMBINE-lab/spdlog.git")
12019 (commit (string-append "v" version))))
12020 (file-name (string-append name "-" version "-checkout"))
12021 (sha256
12022 (base32
12023 "13730429gwlabi432ilpnja3sfvy0nn2719vnhhmii34xcdyc57q"))))
12024 (build-system cmake-build-system)
12025 (home-page "https://github.com/COMBINE-lab/spdlog")
12026 (synopsis "Very fast C++ logging library")
12027 (description "Spdlog is a very fast header-only C++ logging library with
12028 performance as its primary goal.")
12029 (license license:expat)))
12030
12031 ;; This is a modified variant of bwa for use with Salmon. It installs a
12032 ;; library to avoid having to build this as part of Salmon.
12033 (define bwa-for-salmon
12034 (package (inherit bwa)
12035 (name "bwa")
12036 (version "0.7.12.5")
12037 (source (origin
12038 (method git-fetch)
12039 (uri (git-reference
12040 (url "https://github.com/COMBINE-lab/bwa.git")
12041 (commit (string-append "v" version))))
12042 (file-name (string-append "bwa-for-salmon-" version "-checkout"))
12043 (sha256
12044 (base32
12045 "1z2qa64y0c5hky10510x137mnzlhz6k8qf27csw4w9j6qihq95gb"))))
12046 (build-system gnu-build-system)
12047 (arguments
12048 '(#:tests? #f ;no "check" target
12049 #:phases
12050 (modify-phases %standard-phases
12051 (replace 'install
12052 (lambda* (#:key outputs #:allow-other-keys)
12053 (let* ((out (assoc-ref outputs "out"))
12054 (bin (string-append out "/bin"))
12055 (lib (string-append out "/lib"))
12056 (doc (string-append out "/share/doc/bwa"))
12057 (man (string-append out "/share/man/man1"))
12058 (inc (string-append out "/include/bwa")))
12059 (install-file "bwa" bin)
12060 (install-file "README.md" doc)
12061 (install-file "bwa.1" man)
12062 (install-file "libbwa.a" lib)
12063 (mkdir-p lib)
12064 (mkdir-p inc)
12065 (for-each (lambda (file)
12066 (install-file file inc))
12067 (find-files "." "\\.h$")))
12068 #t))
12069 ;; no "configure" script
12070 (delete 'configure))))))
12071
12072 (define-public salmon
12073 (package
12074 (name "salmon")
12075 (version "0.9.1")
12076 (source (origin
12077 (method git-fetch)
12078 (uri (git-reference
12079 (url "https://github.com/COMBINE-lab/salmon.git")
12080 (commit (string-append "v" version))))
12081 (file-name (string-append name "-" version "-checkout"))
12082 (sha256
12083 (base32
12084 "1zi1ff4i7y2ykk0vdzysgwzzzv166vg2x77pj1mf4baclavxj87a"))
12085 (modules '((guix build utils)))
12086 (snippet
12087 '(begin
12088 ;; Delete bundled headers for eigen3.
12089 (delete-file-recursively "include/eigen3/")
12090 #t))))
12091 (build-system cmake-build-system)
12092 (arguments
12093 `(#:configure-flags
12094 (list (string-append "-DBOOST_INCLUDEDIR="
12095 (assoc-ref %build-inputs "boost")
12096 "/include/")
12097 (string-append "-DBOOST_LIBRARYDIR="
12098 (assoc-ref %build-inputs "boost")
12099 "/lib/")
12100 (string-append "-DBoost_LIBRARIES="
12101 "-lboost_iostreams "
12102 "-lboost_filesystem "
12103 "-lboost_system "
12104 "-lboost_thread "
12105 "-lboost_timer "
12106 "-lboost_chrono "
12107 "-lboost_program_options")
12108 "-DBoost_FOUND=TRUE"
12109 "-DTBB_LIBRARIES=tbb tbbmalloc"
12110 ;; Don't download RapMap---we already have it!
12111 "-DFETCHED_RAPMAP=1")
12112 #:phases
12113 (modify-phases %standard-phases
12114 ;; Boost cannot be found, even though it's right there.
12115 (add-after 'unpack 'do-not-look-for-boost
12116 (lambda* (#:key inputs #:allow-other-keys)
12117 (substitute* "CMakeLists.txt"
12118 (("find_package\\(Boost 1\\.53\\.0") "#"))))
12119 (add-after 'unpack 'do-not-phone-home
12120 (lambda _
12121 (substitute* "src/Salmon.cpp"
12122 (("getVersionMessage\\(\\)") "\"\""))))
12123 (add-after 'unpack 'prepare-rapmap
12124 (lambda* (#:key inputs #:allow-other-keys)
12125 (let ((src "external/install/src/rapmap/")
12126 (include "external/install/include/rapmap/")
12127 (rapmap (assoc-ref inputs "rapmap")))
12128 (mkdir-p src)
12129 (mkdir-p include)
12130 (for-each (lambda (file)
12131 (install-file file src))
12132 (find-files (string-append rapmap "/src") "\\.(c|cpp)"))
12133 (copy-recursively (string-append rapmap "/include") include)
12134 (for-each delete-file '("external/install/include/rapmap/xxhash.h"
12135 "external/install/include/rapmap/FastxParser.hpp"
12136 "external/install/include/rapmap/concurrentqueue.h"
12137 "external/install/include/rapmap/FastxParserThreadUtils.hpp"
12138 "external/install/src/rapmap/FastxParser.cpp"
12139 "external/install/src/rapmap/xxhash.c")))))
12140 (add-after 'unpack 'use-system-libraries
12141 (lambda* (#:key inputs #:allow-other-keys)
12142 (substitute* "src/CMakeLists.txt"
12143 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/include/jellyfish-2.2..")
12144 (string-append (assoc-ref inputs "jellyfish")
12145 "/include/jellyfish-" ,(package-version jellyfish)))
12146 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libjellyfish-2.0.a")
12147 (string-append (assoc-ref inputs "jellyfish")
12148 "/lib/libjellyfish-2.0.a"))
12149 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
12150 (string-append (assoc-ref inputs "libdivsufsort")
12151 "/lib/libdivsufsort.so"))
12152 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libstaden-read.a")
12153 (string-append (assoc-ref inputs "libstadenio-for-salmon")
12154 "/lib/libstaden-read.a"))
12155 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libbwa.a")
12156 (string-append (assoc-ref inputs "bwa") "/lib/libbwa.a"))
12157 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
12158 (string-append (assoc-ref inputs "libdivsufsort")
12159 "/lib/libdivsufsort64.so")))
12160 (substitute* "CMakeLists.txt"
12161 ;; Don't prefer static libs
12162 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
12163 (("set\\(TBB_LIBRARIES") "message(")
12164 (("find_package\\(Jellyfish.*") "")
12165 (("ExternalProject_Add\\(libcereal") "message(")
12166 (("ExternalProject_Add\\(libbwa") "message(")
12167 (("ExternalProject_Add\\(libjellyfish") "message(")
12168 (("ExternalProject_Add\\(libgff") "message(")
12169 (("ExternalProject_Add\\(libtbb") "message(")
12170 (("ExternalProject_Add\\(libspdlog") "message(")
12171 (("ExternalProject_Add\\(libdivsufsort") "message(")
12172 (("ExternalProject_Add\\(libstadenio") "message(")
12173 (("ExternalProject_Add_Step\\(") "message("))
12174
12175 ;; Ensure that all headers can be found
12176 (setenv "CPLUS_INCLUDE_PATH"
12177 (string-append (getenv "CPLUS_INCLUDE_PATH")
12178 ":"
12179 (assoc-ref inputs "bwa")
12180 "/include/bwa"
12181 ":"
12182 (assoc-ref inputs "eigen")
12183 "/include/eigen3"))
12184 (setenv "CPATH"
12185 (string-append (assoc-ref inputs "bwa")
12186 "/include/bwa"
12187 ":"
12188 (assoc-ref inputs "eigen")
12189 "/include/eigen3"))
12190 #t))
12191 ;; CMAKE_INSTALL_PREFIX does not exist when the tests are
12192 ;; run. It only exists after the install phase.
12193 (add-after 'unpack 'fix-tests
12194 (lambda _
12195 (substitute* "src/CMakeLists.txt"
12196 (("DTOPLEVEL_DIR=\\$\\{CMAKE_INSTALL_PREFIX")
12197 "DTOPLEVEL_DIR=${GAT_SOURCE_DIR"))
12198 #t)))))
12199 (inputs
12200 `(("boost" ,boost)
12201 ("bwa" ,bwa-for-salmon)
12202 ("bzip2" ,bzip2)
12203 ("cereal" ,cereal)
12204 ("eigen" ,eigen)
12205 ("rapmap" ,(origin
12206 (method git-fetch)
12207 (uri (git-reference
12208 (url "https://github.com/COMBINE-lab/RapMap.git")
12209 (commit (string-append "salmon-v" version))))
12210 (file-name (string-append "rapmap-salmon-v" version "-checkout"))
12211 (sha256
12212 (base32
12213 "1yc12yqsz6f0r8sg1qnk57xg34aqwc9jbqq6gd5ys28xw3plj98p"))))
12214 ("jemalloc" ,jemalloc)
12215 ("jellyfish" ,jellyfish)
12216 ("libgff" ,libgff)
12217 ("tbb" ,tbb)
12218 ("libdivsufsort" ,libdivsufsort)
12219 ("libstadenio-for-salmon" ,libstadenio-for-salmon)
12220 ("spdlog-for-salmon" ,spdlog-for-salmon)
12221 ("xz" ,xz)
12222 ("zlib" ,zlib)))
12223 (home-page "https://github.com/COMBINE-lab/salmon")
12224 (synopsis "Quantification from RNA-seq reads using lightweight alignments")
12225 (description "Salmon is a program to produce highly-accurate,
12226 transcript-level quantification estimates from RNA-seq data. Salmon achieves
12227 its accuracy and speed via a number of different innovations, including the
12228 use of lightweight alignments (accurate but fast-to-compute proxies for
12229 traditional read alignments) and massively-parallel stochastic collapsed
12230 variational inference.")
12231 (license license:gpl3+)))
12232
12233 (define-public python-loompy
12234 (package
12235 (name "python-loompy")
12236 (version "2.0.2")
12237 (source
12238 (origin
12239 (method url-fetch)
12240 (uri (pypi-uri "loompy" version))
12241 (sha256
12242 (base32
12243 "1drgv8j1hxqzzpnfg272x9djb6j8qr798w1pc2x8ikmfgyd9gh51"))))
12244 (build-system python-build-system)
12245 ;; There are no tests
12246 (arguments '(#:tests? #f))
12247 (propagated-inputs
12248 `(("python-h5py" ,python-h5py)
12249 ("python-numpy" ,python-numpy)
12250 ("python-scipy" ,python-scipy)
12251 ("python-typing" ,python-typing)))
12252 (home-page "https://github.com/linnarsson-lab/loompy")
12253 (synopsis "Work with .loom files for single-cell RNA-seq data")
12254 (description "The loom file format is an efficient format for very large
12255 omics datasets, consisting of a main matrix, optional additional layers, a
12256 variable number of row and column annotations. Loom also supports sparse
12257 graphs. This library makes it easy to work with @file{.loom} files for
12258 single-cell RNA-seq data.")
12259 (license license:bsd-3)))
12260
12261 ;; We cannot use the latest commit because it requires Java 9.
12262 (define-public java-forester
12263 (let ((commit "86b07efe302d5094b42deed9260f719a4c4ac2e6")
12264 (revision "1"))
12265 (package
12266 (name "java-forester")
12267 (version (string-append "0-" revision "." (string-take commit 7)))
12268 (source (origin
12269 (method git-fetch)
12270 (uri (git-reference
12271 (url "https://github.com/cmzmasek/forester.git")
12272 (commit commit)))
12273 (file-name (string-append name "-" version "-checkout"))
12274 (sha256
12275 (base32
12276 "0vxavc1yrf84yrnf20dq26hi0lglidk8d382xrxsy4qmlbjd276z"))
12277 (modules '((guix build utils)))
12278 (snippet
12279 '(begin
12280 ;; Delete bundled jars and pre-built classes
12281 (delete-file-recursively "forester/java/resources")
12282 (delete-file-recursively "forester/java/classes")
12283 (for-each delete-file (find-files "forester/java/" "\\.jar$"))
12284 ;; Delete bundled applications
12285 (delete-file-recursively "forester_applications")
12286 #t))))
12287 (build-system ant-build-system)
12288 (arguments
12289 `(#:tests? #f ; there are none
12290 #:jdk ,icedtea-8
12291 #:modules ((guix build ant-build-system)
12292 (guix build utils)
12293 (guix build java-utils)
12294 (sxml simple)
12295 (sxml transform))
12296 #:phases
12297 (modify-phases %standard-phases
12298 (add-after 'unpack 'chdir
12299 (lambda _ (chdir "forester/java") #t))
12300 (add-after 'chdir 'fix-dependencies
12301 (lambda _
12302 (chmod "build.xml" #o664)
12303 (call-with-output-file "build.xml.new"
12304 (lambda (port)
12305 (sxml->xml
12306 (pre-post-order
12307 (with-input-from-file "build.xml"
12308 (lambda _ (xml->sxml #:trim-whitespace? #t)))
12309 `(;; Remove all unjar tags to avoid repacking classes.
12310 (unjar . ,(lambda _ '()))
12311 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
12312 (*text* . ,(lambda (_ txt) txt))))
12313 port)))
12314 (rename-file "build.xml.new" "build.xml")
12315 #t))
12316 ;; FIXME: itext is difficult to package as it depends on a few
12317 ;; unpackaged libraries.
12318 (add-after 'chdir 'remove-dependency-on-unpackaged-itext
12319 (lambda _
12320 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
12321 (substitute* "src/org/forester/archaeopteryx/MainFrame.java"
12322 (("pdf_written_to = PdfExporter.*")
12323 "throw new IOException(\"PDF export is not available.\");"))
12324 #t))
12325 ;; There is no install target
12326 (replace 'install (install-jars ".")))))
12327 (propagated-inputs
12328 `(("java-commons-codec" ,java-commons-codec)
12329 ("java-openchart2" ,java-openchart2)))
12330 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
12331 (synopsis "Phylogenomics libraries for Java")
12332 (description "Forester is a collection of Java libraries for
12333 phylogenomics and evolutionary biology research. It includes support for
12334 reading, writing, and exporting phylogenetic trees.")
12335 (license license:lgpl2.1+))))
12336
12337 (define-public java-forester-1.005
12338 (package
12339 (name "java-forester")
12340 (version "1.005")
12341 (source (origin
12342 (method url-fetch)
12343 (uri (string-append "http://search.maven.org/remotecontent?"
12344 "filepath=org/biojava/thirdparty/forester/"
12345 version "/forester-" version "-sources.jar"))
12346 (file-name (string-append name "-" version ".jar"))
12347 (sha256
12348 (base32
12349 "04r8qv4rk3p71z4ajrvp11py1z46qrx0047j3zzs79s6lnsm3lcv"))))
12350 (build-system ant-build-system)
12351 (arguments
12352 `(#:tests? #f ; there are none
12353 #:jdk ,icedtea-8
12354 #:modules ((guix build ant-build-system)
12355 (guix build utils)
12356 (guix build java-utils)
12357 (sxml simple)
12358 (sxml transform))
12359 #:phases
12360 (modify-phases %standard-phases
12361 (add-after 'unpack 'fix-dependencies
12362 (lambda* (#:key inputs #:allow-other-keys)
12363 (call-with-output-file "build.xml"
12364 (lambda (port)
12365 (sxml->xml
12366 (pre-post-order
12367 (with-input-from-file "src/build.xml"
12368 (lambda _ (xml->sxml #:trim-whitespace? #t)))
12369 `(;; Remove all unjar tags to avoid repacking classes.
12370 (unjar . ,(lambda _ '()))
12371 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
12372 (*text* . ,(lambda (_ txt) txt))))
12373 port)))
12374 (copy-file (assoc-ref inputs "synth_look_and_feel_1.xml")
12375 "synth_look_and_feel_1.xml")
12376 (copy-file (assoc-ref inputs "phyloxml.xsd")
12377 "phyloxml.xsd")
12378 (substitute* "build.xml"
12379 (("../resources/synth_laf/synth_look_and_feel_1.xml")
12380 "synth_look_and_feel_1.xml")
12381 (("../resources/phyloxml_schema/1.10/phyloxml.xsd")
12382 "phyloxml.xsd"))
12383 #t))
12384 ;; FIXME: itext is difficult to package as it depends on a few
12385 ;; unpackaged libraries.
12386 (add-after 'unpack 'remove-dependency-on-unpackaged-itext
12387 (lambda _
12388 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
12389 (substitute* '("src/org/forester/archaeopteryx/MainFrame.java"
12390 "src/org/forester/archaeopteryx/MainFrameApplication.java")
12391 (("pdf_written_to = PdfExporter.*")
12392 "throw new IOException(\"PDF export is not available.\"); /*")
12393 ((".getPrintSizeX\\(\\), getOptions\\(\\).getPrintSizeY\\(\\) \\);") "*/")
12394 (("getCurrentTreePanel\\(\\).getHeight\\(\\) \\);") "*/"))
12395 #t))
12396 (add-after 'unpack 'delete-pre-built-classes
12397 (lambda _ (delete-file-recursively "src/classes") #t))
12398 ;; There is no install target
12399 (replace 'install (install-jars ".")))))
12400 (propagated-inputs
12401 `(("java-commons-codec" ,java-commons-codec)
12402 ("java-openchart2" ,java-openchart2)))
12403 ;; The source archive does not contain the resources.
12404 (native-inputs
12405 `(("phyloxml.xsd"
12406 ,(origin
12407 (method url-fetch)
12408 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
12409 "b61cc2dcede0bede317db362472333115756b8c6/"
12410 "forester/resources/phyloxml_schema/1.10/phyloxml.xsd"))
12411 (file-name (string-append name "-phyloxml-" version ".xsd"))
12412 (sha256
12413 (base32
12414 "1zxc4m8sn4n389nqdnpxa8d0k17qnr3pm2y5y6g6vh4k0zm52npv"))))
12415 ("synth_look_and_feel_1.xml"
12416 ,(origin
12417 (method url-fetch)
12418 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
12419 "29e04321615da6b35c1e15c60e52caf3f21d8e6a/"
12420 "forester/java/classes/resources/synth_look_and_feel_1.xml"))
12421 (file-name (string-append name "-synth-look-and-feel-" version ".xml"))
12422 (sha256
12423 (base32
12424 "1gv5602gv4k7y7713y75a4jvj7i9s7nildsbdl7n9q10sc2ikg8h"))))))
12425 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
12426 (synopsis "Phylogenomics libraries for Java")
12427 (description "Forester is a collection of Java libraries for
12428 phylogenomics and evolutionary biology research. It includes support for
12429 reading, writing, and exporting phylogenetic trees.")
12430 (license license:lgpl2.1+)))
12431
12432 (define-public java-biojava-core
12433 (package
12434 (name "java-biojava-core")
12435 (version "4.2.11")
12436 (source (origin
12437 (method git-fetch)
12438 (uri (git-reference
12439 (url "https://github.com/biojava/biojava")
12440 (commit (string-append "biojava-" version))))
12441 (file-name (string-append name "-" version "-checkout"))
12442 (sha256
12443 (base32
12444 "1bvryh2bpsvash8ln79cmc9sqm8qw72hz4xzwqxcrjm8ssxszhqk"))))
12445 (build-system ant-build-system)
12446 (arguments
12447 `(#:jdk ,icedtea-8
12448 #:jar-name "biojava-core.jar"
12449 #:source-dir "biojava-core/src/main/java/"
12450 #:test-dir "biojava-core/src/test"
12451 ;; These tests seem to require internet access.
12452 #:test-exclude (list "**/SearchIOTest.java"
12453 "**/BlastXMLParserTest.java"
12454 "**/GenbankCookbookTest.java"
12455 "**/GenbankProxySequenceReaderTest.java")
12456 #:phases
12457 (modify-phases %standard-phases
12458 (add-before 'build 'copy-resources
12459 (lambda _
12460 (copy-recursively "biojava-core/src/main/resources"
12461 "build/classes")
12462 #t))
12463 (add-before 'check 'copy-test-resources
12464 (lambda _
12465 (copy-recursively "biojava-core/src/test/resources"
12466 "build/test-classes")
12467 #t)))))
12468 (propagated-inputs
12469 `(("java-log4j-api" ,java-log4j-api)
12470 ("java-log4j-core" ,java-log4j-core)
12471 ("java-slf4j-api" ,java-slf4j-api)
12472 ("java-slf4j-simple" ,java-slf4j-simple)))
12473 (native-inputs
12474 `(("java-junit" ,java-junit)
12475 ("java-hamcrest-core" ,java-hamcrest-core)))
12476 (home-page "http://biojava.org")
12477 (synopsis "Core libraries of Java framework for processing biological data")
12478 (description "BioJava is a project dedicated to providing a Java framework
12479 for processing biological data. It provides analytical and statistical
12480 routines, parsers for common file formats, reference implementations of
12481 popular algorithms, and allows the manipulation of sequences and 3D
12482 structures. The goal of the biojava project is to facilitate rapid
12483 application development for bioinformatics.
12484
12485 This package provides the core libraries.")
12486 (license license:lgpl2.1+)))
12487
12488 (define-public java-biojava-phylo
12489 (package (inherit java-biojava-core)
12490 (name "java-biojava-phylo")
12491 (build-system ant-build-system)
12492 (arguments
12493 `(#:jdk ,icedtea-8
12494 #:jar-name "biojava-phylo.jar"
12495 #:source-dir "biojava-phylo/src/main/java/"
12496 #:test-dir "biojava-phylo/src/test"
12497 #:phases
12498 (modify-phases %standard-phases
12499 (add-before 'build 'copy-resources
12500 (lambda _
12501 (copy-recursively "biojava-phylo/src/main/resources"
12502 "build/classes")
12503 #t))
12504 (add-before 'check 'copy-test-resources
12505 (lambda _
12506 (copy-recursively "biojava-phylo/src/test/resources"
12507 "build/test-classes")
12508 #t)))))
12509 (propagated-inputs
12510 `(("java-log4j-api" ,java-log4j-api)
12511 ("java-log4j-core" ,java-log4j-core)
12512 ("java-slf4j-api" ,java-slf4j-api)
12513 ("java-slf4j-simple" ,java-slf4j-simple)
12514 ("java-biojava-core" ,java-biojava-core)
12515 ("java-forester" ,java-forester)))
12516 (native-inputs
12517 `(("java-junit" ,java-junit)
12518 ("java-hamcrest-core" ,java-hamcrest-core)))
12519 (home-page "http://biojava.org")
12520 (synopsis "Biojava interface to the forester phylogenomics library")
12521 (description "The phylo module provides a biojava interface layer to the
12522 forester phylogenomics library for constructing phylogenetic trees.")))
12523
12524 (define-public java-biojava-alignment
12525 (package (inherit java-biojava-core)
12526 (name "java-biojava-alignment")
12527 (build-system ant-build-system)
12528 (arguments
12529 `(#:jdk ,icedtea-8
12530 #:jar-name "biojava-alignment.jar"
12531 #:source-dir "biojava-alignment/src/main/java/"
12532 #:test-dir "biojava-alignment/src/test"
12533 #:phases
12534 (modify-phases %standard-phases
12535 (add-before 'build 'copy-resources
12536 (lambda _
12537 (copy-recursively "biojava-alignment/src/main/resources"
12538 "build/classes")
12539 #t))
12540 (add-before 'check 'copy-test-resources
12541 (lambda _
12542 (copy-recursively "biojava-alignment/src/test/resources"
12543 "build/test-classes")
12544 #t)))))
12545 (propagated-inputs
12546 `(("java-log4j-api" ,java-log4j-api)
12547 ("java-log4j-core" ,java-log4j-core)
12548 ("java-slf4j-api" ,java-slf4j-api)
12549 ("java-slf4j-simple" ,java-slf4j-simple)
12550 ("java-biojava-core" ,java-biojava-core)
12551 ("java-biojava-phylo" ,java-biojava-phylo)
12552 ("java-forester" ,java-forester)))
12553 (native-inputs
12554 `(("java-junit" ,java-junit)
12555 ("java-hamcrest-core" ,java-hamcrest-core)))
12556 (home-page "http://biojava.org")
12557 (synopsis "Biojava API for genetic sequence alignment")
12558 (description "The alignment module of BioJava provides an API that
12559 contains
12560
12561 @itemize
12562 @item implementations of dynamic programming algorithms for sequence
12563 alignment;
12564 @item reading and writing of popular alignment file formats;
12565 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12566 @end itemize\n")))
12567
12568 (define-public java-biojava-core-4.0
12569 (package (inherit java-biojava-core)
12570 (name "java-biojava-core")
12571 (version "4.0.0")
12572 (source (origin
12573 (method git-fetch)
12574 (uri (git-reference
12575 (url "https://github.com/biojava/biojava")
12576 (commit (string-append "biojava-" version))))
12577 (file-name (string-append name "-" version "-checkout"))
12578 (sha256
12579 (base32
12580 "13675f6y9aqi7bi2lk3s1z7a22ynccjiqwa8izh7p97xi9wsfmd8"))))))
12581
12582 (define-public java-biojava-phylo-4.0
12583 (package (inherit java-biojava-core-4.0)
12584 (name "java-biojava-phylo")
12585 (build-system ant-build-system)
12586 (arguments
12587 `(#:jdk ,icedtea-8
12588 #:jar-name "biojava-phylo.jar"
12589 #:source-dir "biojava-phylo/src/main/java/"
12590 #:test-dir "biojava-phylo/src/test"
12591 #:phases
12592 (modify-phases %standard-phases
12593 (add-before 'build 'copy-resources
12594 (lambda _
12595 (copy-recursively "biojava-phylo/src/main/resources"
12596 "build/classes")
12597 #t))
12598 (add-before 'check 'copy-test-resources
12599 (lambda _
12600 (copy-recursively "biojava-phylo/src/test/resources"
12601 "build/test-classes")
12602 #t)))))
12603 (propagated-inputs
12604 `(("java-log4j-api" ,java-log4j-api)
12605 ("java-log4j-core" ,java-log4j-core)
12606 ("java-slf4j-api" ,java-slf4j-api)
12607 ("java-slf4j-simple" ,java-slf4j-simple)
12608 ("java-biojava-core" ,java-biojava-core-4.0)
12609 ("java-forester" ,java-forester-1.005)))
12610 (native-inputs
12611 `(("java-junit" ,java-junit)
12612 ("java-hamcrest-core" ,java-hamcrest-core)))
12613 (home-page "http://biojava.org")
12614 (synopsis "Biojava interface to the forester phylogenomics library")
12615 (description "The phylo module provides a biojava interface layer to the
12616 forester phylogenomics library for constructing phylogenetic trees.")))
12617
12618 (define-public java-biojava-alignment-4.0
12619 (package (inherit java-biojava-core-4.0)
12620 (name "java-biojava-alignment")
12621 (build-system ant-build-system)
12622 (arguments
12623 `(#:jdk ,icedtea-8
12624 #:jar-name "biojava-alignment.jar"
12625 #:source-dir "biojava-alignment/src/main/java/"
12626 #:test-dir "biojava-alignment/src/test"
12627 #:phases
12628 (modify-phases %standard-phases
12629 (add-before 'build 'copy-resources
12630 (lambda _
12631 (copy-recursively "biojava-alignment/src/main/resources"
12632 "build/classes")
12633 #t))
12634 (add-before 'check 'copy-test-resources
12635 (lambda _
12636 (copy-recursively "biojava-alignment/src/test/resources"
12637 "build/test-classes")
12638 #t)))))
12639 (propagated-inputs
12640 `(("java-log4j-api" ,java-log4j-api)
12641 ("java-log4j-core" ,java-log4j-core)
12642 ("java-slf4j-api" ,java-slf4j-api)
12643 ("java-slf4j-simple" ,java-slf4j-simple)
12644 ("java-biojava-core" ,java-biojava-core-4.0)
12645 ("java-biojava-phylo" ,java-biojava-phylo-4.0)
12646 ("java-forester" ,java-forester-1.005)))
12647 (native-inputs
12648 `(("java-junit" ,java-junit)
12649 ("java-hamcrest-core" ,java-hamcrest-core)))
12650 (home-page "http://biojava.org")
12651 (synopsis "Biojava API for genetic sequence alignment")
12652 (description "The alignment module of BioJava provides an API that
12653 contains
12654
12655 @itemize
12656 @item implementations of dynamic programming algorithms for sequence
12657 alignment;
12658 @item reading and writing of popular alignment file formats;
12659 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12660 @end itemize\n")))
12661
12662 (define-public dropseq-tools
12663 (package
12664 (name "dropseq-tools")
12665 (version "1.13")
12666 (source
12667 (origin
12668 (method url-fetch)
12669 (uri "http://mccarrolllab.com/download/1276/")
12670 (file-name (string-append "dropseq-tools-" version ".zip"))
12671 (sha256
12672 (base32
12673 "0yrffckxqk5l8b5xb6z4laq157zd9mdypr2p4b4vq2bhjzi1sj0s"))
12674 ;; Delete bundled libraries
12675 (modules '((guix build utils)))
12676 (snippet
12677 '(begin
12678 (for-each delete-file (find-files "jar/lib" "\\.jar$"))
12679 (delete-file-recursively "3rdParty")))))
12680 (build-system ant-build-system)
12681 (arguments
12682 `(#:tests? #f ; test data are not included
12683 #:test-target "test"
12684 #:build-target "all"
12685 #:source-dir "public/src/"
12686 #:jdk ,icedtea-8
12687 #:make-flags
12688 (list (string-append "-Dpicard.executable.dir="
12689 (assoc-ref %build-inputs "java-picard")
12690 "/share/java/"))
12691 #:modules ((ice-9 match)
12692 (srfi srfi-1)
12693 (guix build utils)
12694 (guix build java-utils)
12695 (guix build ant-build-system))
12696 #:phases
12697 (modify-phases %standard-phases
12698 ;; All dependencies must be linked to "lib", because that's where
12699 ;; they will be searched for when the Class-Path property of the
12700 ;; manifest is computed.
12701 (add-after 'unpack 'record-references
12702 (lambda* (#:key inputs #:allow-other-keys)
12703 (mkdir-p "jar/lib")
12704 (let ((dirs (filter-map (match-lambda
12705 ((name . dir)
12706 (if (and (string-prefix? "java-" name)
12707 (not (string=? name "java-testng")))
12708 dir #f)))
12709 inputs)))
12710 (for-each (lambda (jar)
12711 (symlink jar (string-append "jar/lib/" (basename jar))))
12712 (append-map (lambda (dir) (find-files dir "\\.jar$"))
12713 dirs)))
12714 #t))
12715 ;; There is no installation target
12716 (replace 'install
12717 (lambda* (#:key inputs outputs #:allow-other-keys)
12718 (let* ((out (assoc-ref outputs "out"))
12719 (bin (string-append out "/bin"))
12720 (share (string-append out "/share/java/"))
12721 (lib (string-append share "/lib/"))
12722 (scripts (list "BAMTagHistogram"
12723 "BAMTagofTagCounts"
12724 "BaseDistributionAtReadPosition"
12725 "CollapseBarcodesInPlace"
12726 "CollapseTagWithContext"
12727 "ConvertToRefFlat"
12728 "CreateIntervalsFiles"
12729 "DetectBeadSynthesisErrors"
12730 "DigitalExpression"
12731 "Drop-seq_alignment.sh"
12732 "FilterBAM"
12733 "FilterBAMByTag"
12734 "GatherGeneGCLength"
12735 "GatherMolecularBarcodeDistributionByGene"
12736 "GatherReadQualityMetrics"
12737 "PolyATrimmer"
12738 "ReduceGTF"
12739 "SelectCellsByNumTranscripts"
12740 "SingleCellRnaSeqMetricsCollector"
12741 "TagBamWithReadSequenceExtended"
12742 "TagReadWithGeneExon"
12743 "TagReadWithInterval"
12744 "TrimStartingSequence"
12745 "ValidateReference")))
12746 (for-each mkdir-p (list bin share lib))
12747 (install-file "dist/dropseq.jar" share)
12748 (for-each (lambda (script)
12749 (chmod script #o555)
12750 (install-file script bin))
12751 scripts)
12752 (substitute* (map (lambda (script)
12753 (string-append bin "/" script))
12754 scripts)
12755 (("^java") (which "java"))
12756 (("jar_deploy_dir=.*")
12757 (string-append "jar_deploy_dir=" share "\n"))))
12758 #t))
12759 ;; FIXME: We do this after stripping jars because we don't want it to
12760 ;; copy all these jars and strip them. We only want to install
12761 ;; links. Arguably, this is a problem with the ant-build-system.
12762 (add-after 'strip-jar-timestamps 'install-links
12763 (lambda* (#:key outputs #:allow-other-keys)
12764 (let* ((out (assoc-ref outputs "out"))
12765 (share (string-append out "/share/java/"))
12766 (lib (string-append share "/lib/")))
12767 (for-each (lambda (jar)
12768 (symlink (readlink jar)
12769 (string-append lib (basename jar))))
12770 (find-files "jar/lib" "\\.jar$")))
12771 #t)))))
12772 (inputs
12773 `(("jdk" ,icedtea-8)
12774 ("java-picard" ,java-picard-2.10.3)
12775 ("java-log4j-1.2-api" ,java-log4j-1.2-api)
12776 ("java-commons-math3" ,java-commons-math3)
12777 ("java-commons-jexl2" ,java-commons-jexl-2)
12778 ("java-commons-collections4" ,java-commons-collections4)
12779 ("java-commons-lang2" ,java-commons-lang)
12780 ("java-commons-io" ,java-commons-io)
12781 ("java-snappy-1.0.3-rc3" ,java-snappy-1)
12782 ("java-guava" ,java-guava)
12783 ("java-la4j" ,java-la4j)
12784 ("java-biojava-core" ,java-biojava-core-4.0)
12785 ("java-biojava-alignment" ,java-biojava-alignment-4.0)
12786 ("java-jdistlib" ,java-jdistlib)
12787 ("java-simple-xml" ,java-simple-xml)
12788 ("java-snakeyaml" ,java-snakeyaml)))
12789 (native-inputs
12790 `(("unzip" ,unzip)
12791 ("java-testng" ,java-testng)))
12792 (home-page "http://mccarrolllab.com/dropseq/")
12793 (synopsis "Tools for Drop-seq analyses")
12794 (description "Drop-seq is a technology to enable biologists to
12795 analyze RNA expression genome-wide in thousands of individual cells at
12796 once. This package provides tools to perform Drop-seq analyses.")
12797 (license license:expat)))
12798
12799 (define-public pigx-rnaseq
12800 (package
12801 (name "pigx-rnaseq")
12802 (version "0.0.3")
12803 (source (origin
12804 (method url-fetch)
12805 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/"
12806 "releases/download/v" version
12807 "/pigx_rnaseq-" version ".tar.gz"))
12808 (sha256
12809 (base32
12810 "0pz080k4ajlc4rlznkn3najy2a6874gb56rf9g4ag9wqz31q174j"))))
12811 (build-system gnu-build-system)
12812 (arguments
12813 `(#:parallel-tests? #f ; not supported
12814 #:phases
12815 (modify-phases %standard-phases
12816 ;; "test.sh" runs STAR, which requires excessive amounts of memory.
12817 (add-after 'unpack 'disable-resource-intensive-test
12818 (lambda _
12819 (substitute* "Makefile.in"
12820 (("(^ tests/test_trim_galore/test.sh).*" _ m) m)
12821 (("^ test.sh") ""))
12822 #t))
12823 (add-after 'install 'wrap-executable
12824 ;; Make sure the executable finds all R modules.
12825 (lambda* (#:key inputs outputs #:allow-other-keys)
12826 (let ((out (assoc-ref outputs "out")))
12827 (wrap-program (string-append out "/bin/pigx-rnaseq")
12828 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))
12829 `("PYTHONPATH" ":" = (,(getenv "PYTHONPATH")))))
12830 #t)))))
12831 (inputs
12832 `(("gzip" ,gzip)
12833 ("snakemake" ,snakemake)
12834 ("fastqc" ,fastqc)
12835 ("multiqc" ,multiqc)
12836 ("star" ,star)
12837 ("trim-galore" ,trim-galore)
12838 ("htseq" ,htseq)
12839 ("samtools" ,samtools)
12840 ("bedtools" ,bedtools)
12841 ("r-minimal" ,r-minimal)
12842 ("r-rmarkdown" ,r-rmarkdown)
12843 ("r-ggplot2" ,r-ggplot2)
12844 ("r-ggrepel" ,r-ggrepel)
12845 ("r-gprofiler" ,r-gprofiler)
12846 ("r-deseq2" ,r-deseq2)
12847 ("r-dt" ,r-dt)
12848 ("r-knitr" ,r-knitr)
12849 ("r-pheatmap" ,r-pheatmap)
12850 ("r-corrplot" ,r-corrplot)
12851 ("r-reshape2" ,r-reshape2)
12852 ("r-plotly" ,r-plotly)
12853 ("r-scales" ,r-scales)
12854 ("r-summarizedexperiment" ,r-summarizedexperiment)
12855 ("r-crosstalk" ,r-crosstalk)
12856 ("r-tximport" ,r-tximport)
12857 ("r-rtracklayer" ,r-rtracklayer)
12858 ("r-rjson" ,r-rjson)
12859 ("salmon" ,salmon)
12860 ("ghc-pandoc" ,ghc-pandoc-1)
12861 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc-with-pandoc-1)
12862 ("python-wrapper" ,python-wrapper)
12863 ("python-pyyaml" ,python-pyyaml)))
12864 (home-page "http://bioinformatics.mdc-berlin.de/pigx/")
12865 (synopsis "Analysis pipeline for RNA sequencing experiments")
12866 (description "PiGX RNAseq is an analysis pipeline for preprocessing and
12867 reporting for RNA sequencing experiments. It is easy to use and produces high
12868 quality reports. The inputs are reads files from the sequencing experiment,
12869 and a configuration file which describes the experiment. In addition to
12870 quality control of the experiment, the pipeline produces a differential
12871 expression report comparing samples in an easily configurable manner.")
12872 (license license:gpl3+)))
12873
12874 (define-public pigx-chipseq
12875 (package
12876 (name "pigx-chipseq")
12877 (version "0.0.15")
12878 (source (origin
12879 (method url-fetch)
12880 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_chipseq/"
12881 "releases/download/v" version
12882 "/pigx_chipseq-" version ".tar.gz"))
12883 (sha256
12884 (base32
12885 "11v9v3vyda0sv4cl45nki7mm4v4bjfcdq7a70kcvi9h465nq66wg"))))
12886 (build-system gnu-build-system)
12887 (arguments
12888 `(#:tests? #f ; parts of the tests rely on access to the network
12889 #:phases
12890 (modify-phases %standard-phases
12891 (add-after 'install 'wrap-executable
12892 ;; Make sure the executable finds all R modules.
12893 (lambda* (#:key inputs outputs #:allow-other-keys)
12894 (let ((out (assoc-ref outputs "out")))
12895 (wrap-program (string-append out "/bin/pigx-chipseq")
12896 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))
12897 `("PYTHONPATH" ":" = (,(getenv "PYTHONPATH")))))
12898 #t)))))
12899 (inputs
12900 `(("grep" ,grep)
12901 ("coreutils" ,coreutils)
12902 ("r-minimal" ,r-minimal)
12903 ("r-argparser" ,r-argparser)
12904 ("r-biocparallel" ,r-biocparallel)
12905 ("r-biostrings" ,r-biostrings)
12906 ("r-chipseq" ,r-chipseq)
12907 ("r-data-table" ,r-data-table)
12908 ("r-dplyr" ,r-dplyr)
12909 ("r-genomation" ,r-genomation)
12910 ("r-genomicalignments" ,r-genomicalignments)
12911 ("r-genomicranges" ,r-genomicranges)
12912 ("r-rsamtools" ,r-rsamtools)
12913 ("r-rtracklayer" ,r-rtracklayer)
12914 ("r-s4vectors" ,r-s4vectors)
12915 ("r-stringr" ,r-stringr)
12916 ("r-tibble" ,r-tibble)
12917 ("r-tidyr" ,r-tidyr)
12918 ("r-jsonlite" ,r-jsonlite)
12919 ("r-heatmaply" ,r-heatmaply)
12920 ("r-htmlwidgets" ,r-htmlwidgets)
12921 ("r-ggplot2" ,r-ggplot2)
12922 ("r-plotly" ,r-plotly)
12923 ("r-rmarkdown" ,r-rmarkdown)
12924 ("python-wrapper" ,python-wrapper)
12925 ("python-pyyaml" ,python-pyyaml)
12926 ("python-magic" ,python-magic)
12927 ("python-xlrd" ,python-xlrd)
12928 ("trim-galore" ,trim-galore)
12929 ("macs" ,macs)
12930 ("multiqc" ,multiqc)
12931 ("perl" ,perl)
12932 ("ghc-pandoc" ,ghc-pandoc-1)
12933 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc-with-pandoc-1)
12934 ("fastqc" ,fastqc)
12935 ("bowtie" ,bowtie)
12936 ("idr" ,idr)
12937 ("snakemake" ,snakemake)
12938 ("samtools" ,samtools)
12939 ("bedtools" ,bedtools)
12940 ("kentutils" ,kentutils)))
12941 (native-inputs
12942 `(("python-pytest" ,python-pytest)))
12943 (home-page "http://bioinformatics.mdc-berlin.de/pigx/")
12944 (synopsis "Analysis pipeline for ChIP sequencing experiments")
12945 (description "PiGX ChIPseq is an analysis pipeline for preprocessing, peak
12946 calling and reporting for ChIP sequencing experiments. It is easy to use and
12947 produces high quality reports. The inputs are reads files from the sequencing
12948 experiment, and a configuration file which describes the experiment. In
12949 addition to quality control of the experiment, the pipeline enables to set up
12950 multiple peak calling analysis and allows the generation of a UCSC track hub
12951 in an easily configurable manner.")
12952 (license license:gpl3+)))
12953
12954 (define-public pigx-bsseq
12955 (package
12956 (name "pigx-bsseq")
12957 (version "0.0.8")
12958 (source (origin
12959 (method url-fetch)
12960 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_bsseq/"
12961 "releases/download/v" version
12962 "/pigx_bsseq-" version ".tar.gz"))
12963 (sha256
12964 (base32
12965 "0irlnlhhw9fd4ha7hksrxn3y7j76mz5qq1wjswbs9p364laqg69y"))))
12966 (build-system gnu-build-system)
12967 (arguments
12968 `(#:phases
12969 (modify-phases %standard-phases
12970 (add-before 'check 'set-timezone
12971 ;; The readr package is picky about timezones.
12972 (lambda* (#:key inputs #:allow-other-keys)
12973 (setenv "TZ" "UTC+1")
12974 (setenv "TZDIR"
12975 (string-append (assoc-ref inputs "tzdata")
12976 "/share/zoneinfo"))
12977 #t))
12978 (add-after 'install 'wrap-executable
12979 ;; Make sure the executable finds all R modules.
12980 (lambda* (#:key inputs outputs #:allow-other-keys)
12981 (let ((out (assoc-ref outputs "out")))
12982 (wrap-program (string-append out "/bin/pigx-bsseq")
12983 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))
12984 `("PYTHONPATH" ":" = (,(getenv "PYTHONPATH")))))
12985 #t)))))
12986 (native-inputs
12987 `(("tzdata" ,tzdata)))
12988 (inputs
12989 `(("coreutils" ,coreutils)
12990 ("sed" ,sed)
12991 ("grep" ,grep)
12992 ("r-minimal" ,r-minimal)
12993 ("r-annotationhub" ,r-annotationhub)
12994 ("r-dt" ,r-dt)
12995 ("r-genomation" ,r-genomation)
12996 ("r-methylkit" ,r-methylkit)
12997 ("r-rtracklayer" ,r-rtracklayer)
12998 ("r-rmarkdown" ,r-rmarkdown)
12999 ("r-bookdown" ,r-bookdown)
13000 ("r-ggplot2" ,r-ggplot2)
13001 ("r-ggbio" ,r-ggbio)
13002 ("ghc-pandoc" ,ghc-pandoc-1)
13003 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc-with-pandoc-1)
13004 ("python-wrapper" ,python-wrapper)
13005 ("python-pyyaml" ,python-pyyaml)
13006 ("snakemake" ,snakemake)
13007 ("bismark" ,bismark)
13008 ("fastqc" ,fastqc)
13009 ("bowtie" ,bowtie)
13010 ("trim-galore" ,trim-galore)
13011 ("cutadapt" ,cutadapt)
13012 ("samtools" ,samtools)))
13013 (home-page "http://bioinformatics.mdc-berlin.de/pigx/")
13014 (synopsis "Bisulfite sequencing pipeline from fastq to methylation reports")
13015 (description "PiGx BSseq is a data processing pipeline for raw fastq read
13016 data of bisulfite experiments; it produces reports on aggregate methylation
13017 and coverage and can be used to produce information on differential
13018 methylation and segmentation.")
13019 (license license:gpl3+)))
13020
13021 (define-public pigx-scrnaseq
13022 (package
13023 (name "pigx-scrnaseq")
13024 (version "0.0.4")
13025 (source (origin
13026 (method url-fetch)
13027 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_scrnaseq/"
13028 "releases/download/v" version
13029 "/pigx_scrnaseq-" version ".tar.gz"))
13030 (sha256
13031 (base32
13032 "1pvjm6f3mascprs65vflggwwg5v925knvgal7k7a6nnlmw5qndrf"))))
13033 (build-system gnu-build-system)
13034 (arguments
13035 `(#:configure-flags
13036 (list (string-append "PICARDJAR=" (assoc-ref %build-inputs "java-picard")
13037 "/share/java/picard.jar")
13038 (string-append "DROPSEQJAR=" (assoc-ref %build-inputs "dropseq-tools")
13039 "/share/java/dropseq.jar"))
13040 #:phases
13041 (modify-phases %standard-phases
13042 (add-after 'install 'wrap-executable
13043 ;; Make sure the executable finds all R modules.
13044 (lambda* (#:key inputs outputs #:allow-other-keys)
13045 (let ((out (assoc-ref outputs "out")))
13046 (wrap-program (string-append out "/bin/pigx-scrnaseq")
13047 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))
13048 `("PYTHONPATH" ":" = (,(getenv "PYTHONPATH")))))
13049 #t)))))
13050 (inputs
13051 `(("coreutils" ,coreutils)
13052 ("perl" ,perl)
13053 ("dropseq-tools" ,dropseq-tools)
13054 ("fastqc" ,fastqc)
13055 ("java-picard" ,java-picard)
13056 ("java" ,icedtea-8)
13057 ("python-wrapper" ,python-wrapper)
13058 ("python-pyyaml" ,python-pyyaml)
13059 ("python-pandas" ,python-pandas)
13060 ("python-numpy" ,python-numpy)
13061 ("python-loompy" ,python-loompy)
13062 ("ghc-pandoc" ,ghc-pandoc-1)
13063 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc-with-pandoc-1)
13064 ("snakemake" ,snakemake)
13065 ("star" ,star)
13066 ("r-minimal" ,r-minimal)
13067 ("r-argparser" ,r-argparser)
13068 ("r-cowplot" ,r-cowplot)
13069 ("r-data-table" ,r-data-table)
13070 ("r-delayedarray" ,r-delayedarray)
13071 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
13072 ("r-dplyr" ,r-dplyr)
13073 ("r-dropbead" ,r-dropbead)
13074 ("r-dt" ,r-dt)
13075 ("r-genomicalignments" ,r-genomicalignments)
13076 ("r-genomicfiles" ,r-genomicfiles)
13077 ("r-genomicranges" ,r-genomicranges)
13078 ("r-ggplot2" ,r-ggplot2)
13079 ("r-hdf5array" ,r-hdf5array)
13080 ("r-pheatmap" ,r-pheatmap)
13081 ("r-rmarkdown" ,r-rmarkdown)
13082 ("r-rsamtools" ,r-rsamtools)
13083 ("r-rtracklayer" ,r-rtracklayer)
13084 ("r-rtsne" ,r-rtsne)
13085 ("r-scater" ,r-scater)
13086 ("r-scran" ,r-scran)
13087 ("r-singlecellexperiment" ,r-singlecellexperiment)
13088 ("r-stringr" ,r-stringr)
13089 ("r-yaml" ,r-yaml)))
13090 (home-page "http://bioinformatics.mdc-berlin.de/pigx/")
13091 (synopsis "Analysis pipeline for single-cell RNA sequencing experiments")
13092 (description "PiGX scRNAseq is an analysis pipeline for preprocessing and
13093 quality control for single cell RNA sequencing experiments. The inputs are
13094 read files from the sequencing experiment, and a configuration file which
13095 describes the experiment. It produces processed files for downstream analysis
13096 and interactive quality reports. The pipeline is designed to work with UMI
13097 based methods.")
13098 (license license:gpl3+)))
13099
13100 (define-public pigx
13101 (package
13102 (name "pigx")
13103 (version "0.0.2")
13104 (source (origin
13105 (method url-fetch)
13106 (uri (string-append "https://github.com/BIMSBbioinfo/pigx/"
13107 "releases/download/v" version
13108 "/pigx-" version ".tar.gz"))
13109 (sha256
13110 (base32
13111 "0sb708sl42h3s5z872jb1w70bbqplwapnsc1wm27zcsvi7li4gw8"))))
13112 (build-system gnu-build-system)
13113 (inputs
13114 `(("python" ,python)
13115 ("pigx-bsseq" ,pigx-bsseq)
13116 ("pigx-chipseq" ,pigx-chipseq)
13117 ("pigx-rnaseq" ,pigx-rnaseq)
13118 ("pigx-scrnaseq" ,pigx-scrnaseq)))
13119 (home-page "http://bioinformatics.mdc-berlin.de/pigx/")
13120 (synopsis "Analysis pipelines for genomics")
13121 (description "PiGx is a collection of genomics pipelines. It includes the
13122 following pipelines:
13123
13124 @itemize
13125 @item PiGx BSseq for raw fastq read data of bisulfite experiments
13126 @item PiGx RNAseq for RNAseq samples
13127 @item PiGx scRNAseq for single cell dropseq analysis
13128 @item PiGx ChIPseq for reads from ChIPseq experiments
13129 @end itemize
13130
13131 All pipelines are easily configured with a simple sample sheet and a
13132 descriptive settings file. The result is a set of comprehensive, interactive
13133 HTML reports with interesting findings about your samples.")
13134 (license license:gpl3+)))
13135
13136 (define-public r-diversitree
13137 (package
13138 (name "r-diversitree")
13139 (version "0.9-10")
13140 (source
13141 (origin
13142 (method url-fetch)
13143 (uri (cran-uri "diversitree" version))
13144 (sha256
13145 (base32
13146 "0gh4rcrp0an3jh8915i1fsxlgyfk7njywgbd5ln5r2jhr085kpz7"))))
13147 (build-system r-build-system)
13148 (native-inputs
13149 `(("gfortran" ,gfortran)))
13150 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
13151 (propagated-inputs
13152 `(("r-ape" ,r-ape)
13153 ("r-desolve" ,r-desolve)
13154 ("r-rcpp" ,r-rcpp)
13155 ("r-suplex" ,r-subplex)))
13156 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
13157 (synopsis "Comparative 'phylogenetic' analyses of diversification")
13158 (description "This package contains a number of comparative \"phylogenetic\"
13159 methods, mostly focusing on analysing diversification and character evolution.
13160 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
13161 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
13162 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
13163 include Markov models of discrete and continuous trait evolution and constant
13164 rate speciation and extinction.")
13165 (license license:gpl2+)))