gnu: Add cxxopts.
[jackhill/guix/guix.git] / gnu / packages / bioinformatics.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 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, 2020 Roel Janssen <roel@gnu.org>
7 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
8 ;;; Copyright © 2016, 2020 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 ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
14 ;;; Copyright © 2018, 2019 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
15 ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
16 ;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
17 ;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
18 ;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
19 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
20 ;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
21 ;;;
22 ;;; This file is part of GNU Guix.
23 ;;;
24 ;;; GNU Guix is free software; you can redistribute it and/or modify it
25 ;;; under the terms of the GNU General Public License as published by
26 ;;; the Free Software Foundation; either version 3 of the License, or (at
27 ;;; your option) any later version.
28 ;;;
29 ;;; GNU Guix is distributed in the hope that it will be useful, but
30 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
31 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 ;;; GNU General Public License for more details.
33 ;;;
34 ;;; You should have received a copy of the GNU General Public License
35 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
36
37 (define-module (gnu packages bioinformatics)
38 #:use-module ((guix licenses) #:prefix license:)
39 #:use-module (guix packages)
40 #:use-module (guix utils)
41 #:use-module (guix download)
42 #:use-module (guix git-download)
43 #:use-module (guix hg-download)
44 #:use-module (guix build-system ant)
45 #:use-module (guix build-system gnu)
46 #:use-module (guix build-system cmake)
47 #:use-module (guix build-system go)
48 #:use-module (guix build-system haskell)
49 #:use-module (guix build-system meson)
50 #:use-module (guix build-system ocaml)
51 #:use-module (guix build-system perl)
52 #:use-module (guix build-system python)
53 #:use-module (guix build-system r)
54 #:use-module (guix build-system ruby)
55 #:use-module (guix build-system scons)
56 #:use-module (guix build-system trivial)
57 #:use-module (guix deprecation)
58 #:use-module (gnu packages)
59 #:use-module (gnu packages autotools)
60 #:use-module (gnu packages algebra)
61 #:use-module (gnu packages base)
62 #:use-module (gnu packages bash)
63 #:use-module (gnu packages bison)
64 #:use-module (gnu packages bioconductor)
65 #:use-module (gnu packages boost)
66 #:use-module (gnu packages check)
67 #:use-module (gnu packages code)
68 #:use-module (gnu packages compression)
69 #:use-module (gnu packages cpio)
70 #:use-module (gnu packages cran)
71 #:use-module (gnu packages curl)
72 #:use-module (gnu packages documentation)
73 #:use-module (gnu packages databases)
74 #:use-module (gnu packages datastructures)
75 #:use-module (gnu packages dlang)
76 #:use-module (gnu packages file)
77 #:use-module (gnu packages flex)
78 #:use-module (gnu packages gawk)
79 #:use-module (gnu packages gcc)
80 #:use-module (gnu packages gd)
81 #:use-module (gnu packages golang)
82 #:use-module (gnu packages glib)
83 #:use-module (gnu packages graph)
84 #:use-module (gnu packages graphviz)
85 #:use-module (gnu packages groff)
86 #:use-module (gnu packages gtk)
87 #:use-module (gnu packages guile)
88 #:use-module (gnu packages guile-xyz)
89 #:use-module (gnu packages haskell-check)
90 #:use-module (gnu packages haskell-web)
91 #:use-module (gnu packages haskell-xyz)
92 #:use-module (gnu packages image)
93 #:use-module (gnu packages imagemagick)
94 #:use-module (gnu packages java)
95 #:use-module (gnu packages java-compression)
96 #:use-module (gnu packages jemalloc)
97 #:use-module (gnu packages linux)
98 #:use-module (gnu packages lisp-xyz)
99 #:use-module (gnu packages logging)
100 #:use-module (gnu packages machine-learning)
101 #:use-module (gnu packages man)
102 #:use-module (gnu packages maths)
103 #:use-module (gnu packages mpi)
104 #:use-module (gnu packages ncurses)
105 #:use-module (gnu packages ocaml)
106 #:use-module (gnu packages pcre)
107 #:use-module (gnu packages parallel)
108 #:use-module (gnu packages pdf)
109 #:use-module (gnu packages perl)
110 #:use-module (gnu packages perl-check)
111 #:use-module (gnu packages pkg-config)
112 #:use-module (gnu packages popt)
113 #:use-module (gnu packages protobuf)
114 #:use-module (gnu packages python)
115 #:use-module (gnu packages python-compression)
116 #:use-module (gnu packages python-science)
117 #:use-module (gnu packages python-web)
118 #:use-module (gnu packages python-xyz)
119 #:use-module (gnu packages readline)
120 #:use-module (gnu packages ruby)
121 #:use-module (gnu packages serialization)
122 #:use-module (gnu packages shells)
123 #:use-module (gnu packages sphinx)
124 #:use-module (gnu packages statistics)
125 #:use-module (gnu packages swig)
126 #:use-module (gnu packages tbb)
127 #:use-module (gnu packages tex)
128 #:use-module (gnu packages texinfo)
129 #:use-module (gnu packages textutils)
130 #:use-module (gnu packages time)
131 #:use-module (gnu packages tls)
132 #:use-module (gnu packages vim)
133 #:use-module (gnu packages web)
134 #:use-module (gnu packages xml)
135 #:use-module (gnu packages xorg)
136 #:use-module (srfi srfi-1)
137 #:use-module (ice-9 match))
138
139 (define-public aragorn
140 (package
141 (name "aragorn")
142 (version "1.2.38")
143 (source (origin
144 (method url-fetch)
145 (uri (string-append
146 "http://mbio-serv2.mbioekol.lu.se/ARAGORN/Downloads/aragorn"
147 version ".tgz"))
148 (sha256
149 (base32
150 "09i1rg716smlbnixfm7q1ml2mfpaa2fpn3hwjg625ysmfwwy712b"))))
151 (build-system gnu-build-system)
152 (arguments
153 `(#:tests? #f ; there are no tests
154 #:phases
155 (modify-phases %standard-phases
156 (delete 'configure)
157 (replace 'build
158 (lambda _
159 (invoke "gcc"
160 "-O3"
161 "-ffast-math"
162 "-finline-functions"
163 "-o"
164 "aragorn"
165 (string-append "aragorn" ,version ".c"))
166 #t))
167 (replace 'install
168 (lambda* (#:key outputs #:allow-other-keys)
169 (let* ((out (assoc-ref outputs "out"))
170 (bin (string-append out "/bin"))
171 (man (string-append out "/share/man/man1")))
172 (install-file "aragorn" bin)
173 (install-file "aragorn.1" man))
174 #t)))))
175 (home-page "http://mbio-serv2.mbioekol.lu.se/ARAGORN")
176 (synopsis "Detect tRNA, mtRNA and tmRNA genes in nucleotide sequences")
177 (description
178 "Aragorn identifies transfer RNA, mitochondrial RNA and
179 transfer-messenger RNA from nucleotide sequences, based on homology to known
180 tRNA consensus sequences and RNA structure. It also outputs the secondary
181 structure of the predicted RNA.")
182 (license license:gpl2)))
183
184 (define-public bamm
185 (package
186 (name "bamm")
187 (version "1.7.3")
188 (source (origin
189 (method git-fetch)
190 ;; BamM is not available on pypi.
191 (uri (git-reference
192 (url "https://github.com/Ecogenomics/BamM")
193 (commit version)
194 (recursive? #t)))
195 (file-name (git-file-name name version))
196 (sha256
197 (base32
198 "1p83ahi984ipslxlg4yqy1gdnya9rkn1v71z8djgxkm9d2chw4c5"))
199 (modules '((guix build utils)))
200 (snippet
201 `(begin
202 ;; Delete bundled htslib.
203 (delete-file-recursively "c/htslib-1.3.1")
204 #t))))
205 (build-system python-build-system)
206 (arguments
207 `(#:python ,python-2 ; BamM is Python 2 only.
208 ;; Do not use bundled libhts. Do use the bundled libcfu because it has
209 ;; been modified from its original form.
210 #:configure-flags
211 (let ((htslib (assoc-ref %build-inputs "htslib")))
212 (list "--with-libhts-lib" (string-append htslib "/lib")
213 "--with-libhts-inc" (string-append htslib "/include/htslib")))
214 #:phases
215 (modify-phases %standard-phases
216 (add-after 'unpack 'autogen
217 (lambda _
218 (with-directory-excursion "c"
219 (let ((sh (which "sh")))
220 (for-each make-file-writable (find-files "." ".*"))
221 ;; Use autogen so that 'configure' works.
222 (substitute* "autogen.sh" (("/bin/sh") sh))
223 (setenv "CONFIG_SHELL" sh)
224 (invoke "./autogen.sh")))
225 #t))
226 (delete 'build)
227 ;; Run tests after installation so compilation only happens once.
228 (delete 'check)
229 (add-after 'install 'wrap-executable
230 (lambda* (#:key outputs #:allow-other-keys)
231 (let* ((out (assoc-ref outputs "out"))
232 (path (getenv "PATH")))
233 (wrap-program (string-append out "/bin/bamm")
234 `("PATH" ":" prefix (,path))))
235 #t))
236 (add-after 'wrap-executable 'post-install-check
237 (lambda* (#:key inputs outputs #:allow-other-keys)
238 (setenv "PATH"
239 (string-append (assoc-ref outputs "out")
240 "/bin:"
241 (getenv "PATH")))
242 (setenv "PYTHONPATH"
243 (string-append
244 (assoc-ref outputs "out")
245 "/lib/python"
246 (string-take (string-take-right
247 (assoc-ref inputs "python") 5) 3)
248 "/site-packages:"
249 (getenv "PYTHONPATH")))
250 ;; There are 2 errors printed, but they are safe to ignore:
251 ;; 1) [E::hts_open_format] fail to open file ...
252 ;; 2) samtools view: failed to open ...
253 (invoke "nosetests")
254 #t)))))
255 (native-inputs
256 `(("autoconf" ,autoconf)
257 ("automake" ,automake)
258 ("libtool" ,libtool)
259 ("zlib" ,zlib)
260 ("python-nose" ,python2-nose)
261 ("python-pysam" ,python2-pysam)))
262 (inputs
263 `(("htslib" ,htslib-1.3) ; At least one test fails on htslib-1.4+.
264 ("samtools" ,samtools)
265 ("bwa" ,bwa)
266 ("grep" ,grep)
267 ("sed" ,sed)
268 ("coreutils" ,coreutils)))
269 (propagated-inputs
270 `(("python-numpy" ,python2-numpy)))
271 (home-page "https://ecogenomics.github.io/BamM/")
272 (synopsis "Metagenomics-focused BAM file manipulator")
273 (description
274 "BamM is a C library, wrapped in python, to efficiently generate and
275 parse BAM files, specifically for the analysis of metagenomic data. For
276 instance, it implements several methods to assess contig-wise read coverage.")
277 (license license:lgpl3+)))
278
279 (define-public bamtools
280 (package
281 (name "bamtools")
282 (version "2.5.1")
283 (source (origin
284 (method git-fetch)
285 (uri (git-reference
286 (url "https://github.com/pezmaster31/bamtools")
287 (commit (string-append "v" version))))
288 (file-name (git-file-name name version))
289 (sha256
290 (base32
291 "0nfb2ypcx9959xnbz6wxh6py3xfizgmg8nrknxl95c507m9hmq8b"))))
292 (build-system cmake-build-system)
293 (arguments
294 `(#:tests? #f ;no "check" target
295 #:phases
296 (modify-phases %standard-phases
297 (add-before
298 'configure 'set-ldflags
299 (lambda* (#:key outputs #:allow-other-keys)
300 (setenv "LDFLAGS"
301 (string-append
302 "-Wl,-rpath="
303 (assoc-ref outputs "out") "/lib/bamtools"))
304 #t)))))
305 (inputs `(("zlib" ,zlib)))
306 (home-page "https://github.com/pezmaster31/bamtools")
307 (synopsis "C++ API and command-line toolkit for working with BAM data")
308 (description
309 "BamTools provides both a C++ API and a command-line toolkit for handling
310 BAM files.")
311 (license license:expat)))
312
313 (define-public bcftools
314 (package
315 (name "bcftools")
316 (version "1.9")
317 (source (origin
318 (method url-fetch)
319 (uri (string-append "https://github.com/samtools/bcftools/"
320 "releases/download/"
321 version "/bcftools-" version ".tar.bz2"))
322 (sha256
323 (base32
324 "1j3h638i8kgihzyrlnpj82xg1b23sijibys9hvwari3fy7kd0dkg"))
325 (modules '((guix build utils)))
326 (snippet '(begin
327 ;; Delete bundled htslib.
328 (delete-file-recursively "htslib-1.9")
329 #t))))
330 (build-system gnu-build-system)
331 (arguments
332 `(#:configure-flags
333 (list "--enable-libgsl")
334 #:test-target "test"
335 #:phases
336 (modify-phases %standard-phases
337 (add-before 'check 'patch-tests
338 (lambda _
339 (substitute* "test/test.pl"
340 (("/bin/bash") (which "bash")))
341 #t)))))
342 (native-inputs
343 `(("htslib" ,htslib)
344 ("perl" ,perl)))
345 (inputs
346 `(("gsl" ,gsl)
347 ("zlib" ,zlib)))
348 (home-page "https://samtools.github.io/bcftools/")
349 (synopsis "Utilities for variant calling and manipulating VCFs and BCFs")
350 (description
351 "BCFtools is a set of utilities that manipulate variant calls in the
352 Variant Call Format (VCF) and its binary counterpart BCF. All commands work
353 transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.")
354 ;; The sources are dual MIT/GPL, but becomes GPL-only when USE_GPL=1.
355 (license (list license:gpl3+ license:expat))))
356
357 (define-public bedops
358 (package
359 (name "bedops")
360 (version "2.4.35")
361 (source (origin
362 (method git-fetch)
363 (uri (git-reference
364 (url "https://github.com/bedops/bedops")
365 (commit (string-append "v" version))))
366 (file-name (git-file-name name version))
367 (sha256
368 (base32
369 "0mmgsgwz5r9w76hzgxkxc9s9lkdhhaf7vr6i02b09vbswvs1fyqx"))))
370 (build-system gnu-build-system)
371 (arguments
372 '(#:tests? #f
373 #:make-flags (list (string-append "BINDIR=" %output "/bin"))
374 #:phases
375 (modify-phases %standard-phases
376 (add-after 'unpack 'unpack-tarballs
377 (lambda _
378 ;; FIXME: Bedops includes tarballs of minimally patched upstream
379 ;; libraries jansson, zlib, and bzip2. We cannot just use stock
380 ;; libraries because at least one of the libraries (zlib) is
381 ;; patched to add a C++ function definition (deflateInit2cpp).
382 ;; Until the Bedops developers offer a way to link against system
383 ;; libraries we have to build the in-tree copies of these three
384 ;; libraries.
385
386 ;; See upstream discussion:
387 ;; https://github.com/bedops/bedops/issues/124
388
389 ;; Unpack the tarballs to benefit from shebang patching.
390 (with-directory-excursion "third-party"
391 (invoke "tar" "xvf" "jansson-2.6.tar.bz2")
392 (invoke "tar" "xvf" "zlib-1.2.7.tar.bz2")
393 (invoke "tar" "xvf" "bzip2-1.0.6.tar.bz2"))
394 ;; Disable unpacking of tarballs in Makefile.
395 (substitute* "system.mk/Makefile.linux"
396 (("^\tbzcat .*") "\t@echo \"not unpacking\"\n")
397 (("\\./configure") "CONFIG_SHELL=bash ./configure"))
398 (substitute* "third-party/zlib-1.2.7/Makefile.in"
399 (("^SHELL=.*$") "SHELL=bash\n"))
400 #t))
401 (delete 'configure))))
402 (home-page "https://github.com/bedops/bedops")
403 (synopsis "Tools for high-performance genomic feature operations")
404 (description
405 "BEDOPS is a suite of tools to address common questions raised in genomic
406 studies---mostly with regard to overlap and proximity relationships between
407 data sets. It aims to be scalable and flexible, facilitating the efficient
408 and accurate analysis and management of large-scale genomic data.
409
410 BEDOPS provides tools that perform highly efficient and scalable Boolean and
411 other set operations, statistical calculations, archiving, conversion and
412 other management of genomic data of arbitrary scale. Tasks can be easily
413 split by chromosome for distributing whole-genome analyses across a
414 computational cluster.")
415 (license license:gpl2+)))
416
417 (define-public bedtools
418 (package
419 (name "bedtools")
420 (version "2.29.2")
421 (source (origin
422 (method url-fetch)
423 (uri (string-append "https://github.com/arq5x/bedtools2/releases/"
424 "download/v" version "/"
425 "bedtools-" version ".tar.gz"))
426 (sha256
427 (base32
428 "0m3hk6548846w83a9s5drsczvy67n2azx41kj71n03klb2gbzwg3"))))
429 (build-system gnu-build-system)
430 (arguments
431 '(#:test-target "test"
432 #:make-flags
433 (list (string-append "prefix=" (assoc-ref %outputs "out")))
434 #:phases
435 (modify-phases %standard-phases
436 (delete 'configure))))
437 (native-inputs
438 `(("python" ,python-wrapper)))
439 (inputs
440 `(("samtools" ,samtools)
441 ("zlib" ,zlib)))
442 (home-page "https://github.com/arq5x/bedtools2")
443 (synopsis "Tools for genome analysis and arithmetic")
444 (description
445 "Collectively, the bedtools utilities are a swiss-army knife of tools for
446 a wide-range of genomics analysis tasks. The most widely-used tools enable
447 genome arithmetic: that is, set theory on the genome. For example, bedtools
448 allows one to intersect, merge, count, complement, and shuffle genomic
449 intervals from multiple files in widely-used genomic file formats such as BAM,
450 BED, GFF/GTF, VCF.")
451 (license license:expat)))
452
453 ;; Later releases of bedtools produce files with more columns than
454 ;; what Ribotaper expects.
455 (define-public bedtools-2.18
456 (package (inherit bedtools)
457 (name "bedtools")
458 (version "2.18.0")
459 (source (origin
460 (method url-fetch)
461 (uri (string-append "https://github.com/arq5x/bedtools2/"
462 "releases/download/v" version
463 "/bedtools-" version ".tar.gz"))
464 (sha256
465 (base32
466 "11rvca19ncg03kxd0wzlfx5ws7r3nisd0z8s9j9n182d8ksp2pxz"))))
467 (arguments
468 '(#:test-target "test"
469 #:phases
470 (modify-phases %standard-phases
471 (delete 'configure)
472 (replace 'install
473 (lambda* (#:key outputs #:allow-other-keys)
474 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
475 (for-each (lambda (file)
476 (install-file file bin))
477 (find-files "bin" ".*")))
478 #t)))))))
479
480 (define-public pbbam
481 (package
482 (name "pbbam")
483 (version "0.23.0")
484 (source (origin
485 (method git-fetch)
486 (uri (git-reference
487 (url "https://github.com/PacificBiosciences/pbbam")
488 (commit version)))
489 (file-name (git-file-name name version))
490 (sha256
491 (base32
492 "0h9gkrpf2lrxklxp72xfl5bi3h5zcm5hprrya9gf0hr3xwlbpp0x"))))
493 (build-system meson-build-system)
494 (arguments
495 `(#:phases
496 (modify-phases %standard-phases
497 (add-after 'unpack 'find-googletest
498 (lambda* (#:key inputs #:allow-other-keys)
499 ;; It doesn't find gtest_main because there's no pkg-config file
500 ;; for it. Find it another way.
501 (substitute* "tests/meson.build"
502 (("pbbam_gtest_dep = dependency\\('gtest_main'.*")
503 (format #f "cpp = meson.get_compiler('cpp')
504 pbbam_gtest_dep = cpp.find_library('gtest_main', dirs : '~a')\n"
505 (assoc-ref inputs "googletest"))))
506 #t)))
507 ;; TODO: tests/pbbam_test cannot be linked
508 ;; ld: tests/59830eb@@pbbam_test@exe/src_test_Accuracy.cpp.o:
509 ;; undefined reference to symbol '_ZTIN7testing4TestE'
510 ;; ld: /gnu/store/...-googletest-1.8.0/lib/libgtest.so:
511 ;; error adding symbols: DSO missing from command line
512 #:tests? #f
513 #:configure-flags '("-Dtests=false")))
514 ;; These libraries are listed as "Required" in the pkg-config file.
515 (propagated-inputs
516 `(("htslib" ,htslib)
517 ("zlib" ,zlib)))
518 (inputs
519 `(("boost" ,boost)
520 ("samtools" ,samtools)))
521 (native-inputs
522 `(("googletest" ,googletest)
523 ("pkg-config" ,pkg-config)
524 ("python" ,python-wrapper))) ; for tests
525 (home-page "https://github.com/PacificBiosciences/pbbam")
526 (synopsis "Work with PacBio BAM files")
527 (description
528 "The pbbam software package provides components to create, query, and
529 edit PacBio BAM files and associated indices. These components include a core
530 C++ library, bindings for additional languages, and command-line utilities.
531 This library is not intended to be used as a general-purpose BAM utility - all
532 input and output BAMs must adhere to the PacBio BAM format specification.
533 Non-PacBio BAMs will cause exceptions to be thrown.")
534 (license license:bsd-3)))
535
536 (define-public blasr-libcpp
537 (package
538 (name "blasr-libcpp")
539 (version "5.3.3")
540 (source (origin
541 (method git-fetch)
542 (uri (git-reference
543 (url "https://github.com/PacificBiosciences/blasr_libcpp")
544 (commit version)))
545 (file-name (git-file-name name version))
546 (sha256
547 (base32
548 "0cn5l42zyq67sj0g2imqkhayz2iqvv0a1pgpbmlq0qynjmsrbfd2"))))
549 (build-system meson-build-system)
550 (arguments
551 `(#:phases
552 (modify-phases %standard-phases
553 (add-after 'unpack 'link-with-hdf5
554 (lambda* (#:key inputs #:allow-other-keys)
555 (let ((hdf5 (assoc-ref inputs "hdf5")))
556 (substitute* "meson.build"
557 (("libblasr_deps = \\[" m)
558 (string-append
559 m
560 (format #f "cpp.find_library('hdf5', dirs : '~a'), \
561 cpp.find_library('hdf5_cpp', dirs : '~a'), "
562 hdf5 hdf5)))))
563 #t))
564 (add-after 'unpack 'find-googletest
565 (lambda* (#:key inputs #:allow-other-keys)
566 ;; It doesn't find gtest_main because there's no pkg-config file
567 ;; for it. Find it another way.
568 (substitute* "unittest/meson.build"
569 (("libblasr_gtest_dep = dependency\\('gtest_main'.*")
570 (format #f "cpp = meson.get_compiler('cpp')
571 libblasr_gtest_dep = cpp.find_library('gtest_main', dirs : '~a')\n"
572 (assoc-ref inputs "googletest"))))
573 #t)))
574 ;; TODO: unittest/libblasr_unittest cannot be linked
575 ;; ld: ;; unittest/df08227@@libblasr_unittest@exe/alignment_utils_FileUtils_gtest.cpp.o:
576 ;; undefined reference to symbol
577 ;; '_ZN7testing8internal9DeathTest6CreateEPKcPKNS0_2REES3_iPPS1_'
578 ;; ld: /gnu/store/...-googletest-1.8.0/lib/libgtest.so:
579 ;; error adding symbols: DSO missing from command line
580 #:tests? #f
581 #:configure-flags '("-Dtests=false")))
582 (inputs
583 `(("boost" ,boost)
584 ("hdf5" ,hdf5)
585 ("pbbam" ,pbbam)
586 ("zlib" ,zlib)))
587 (native-inputs
588 `(("googletest" ,googletest)
589 ("pkg-config" ,pkg-config)))
590 (home-page "https://github.com/PacificBiosciences/blasr_libcpp")
591 (synopsis "Library for analyzing PacBio genomic sequences")
592 (description
593 "This package provides three libraries used by applications for analyzing
594 PacBio genomic sequences. This library contains three sub-libraries: pbdata,
595 hdf and alignment.")
596 (license license:bsd-3)))
597
598 (define-public blasr
599 (package
600 (name "blasr")
601 (version "5.3.3")
602 (source (origin
603 (method git-fetch)
604 (uri (git-reference
605 (url "https://github.com/PacificBiosciences/blasr")
606 (commit version)))
607 (file-name (git-file-name name version))
608 (sha256
609 (base32
610 "1skgy2mvz8gsgfh1gc2nfgwvpyzb1hpmp2cf2773h5wsj8nw22kl"))))
611 (build-system meson-build-system)
612 (arguments
613 `(#:phases
614 (modify-phases %standard-phases
615 (add-after 'unpack 'link-with-hdf5
616 (lambda* (#:key inputs #:allow-other-keys)
617 (let ((hdf5 (assoc-ref inputs "hdf5")))
618 (substitute* "meson.build"
619 (("blasr_deps = \\[" m)
620 (string-append
621 m
622 (format #f "cpp.find_library('hdf5', dirs : '~a'), \
623 cpp.find_library('hdf5_cpp', dirs : '~a'), "
624 hdf5 hdf5)))))
625 #t)))
626 ;; Tests require "cram" executable, which is not packaged.
627 #:tests? #f
628 #:configure-flags '("-Dtests=false")))
629 (inputs
630 `(("boost" ,boost)
631 ("blasr-libcpp" ,blasr-libcpp)
632 ("hdf5" ,hdf5)
633 ("pbbam" ,pbbam)
634 ("zlib" ,zlib)))
635 (native-inputs
636 `(("pkg-config" ,pkg-config)))
637 (home-page "https://github.com/PacificBiosciences/blasr")
638 (synopsis "PacBio long read aligner")
639 (description
640 "Blasr is a genomic sequence aligner for processing PacBio long reads.")
641 (license license:bsd-3)))
642
643 (define-public ribotaper
644 (package
645 (name "ribotaper")
646 (version "1.3.1")
647 (source (origin
648 (method url-fetch)
649 (uri (string-append "https://ohlerlab.mdc-berlin.de/"
650 "files/RiboTaper/RiboTaper_Version_"
651 version ".tar.gz"))
652 (sha256
653 (base32
654 "0ykjbps1y3z3085q94npw8i9x5gldc6shy8vlc08v76zljsm07hv"))))
655 (build-system gnu-build-system)
656 (arguments
657 `(#:phases
658 (modify-phases %standard-phases
659 (add-after 'install 'wrap-executables
660 (lambda* (#:key inputs outputs #:allow-other-keys)
661 (let* ((out (assoc-ref outputs "out")))
662 (for-each
663 (lambda (script)
664 (wrap-program (string-append out "/bin/" script)
665 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))))
666 '("create_annotations_files.bash"
667 "create_metaplots.bash"
668 "Ribotaper_ORF_find.sh"
669 "Ribotaper.sh")))
670 #t)))))
671 (inputs
672 `(("bedtools" ,bedtools-2.18)
673 ("samtools" ,samtools-0.1)
674 ("r-minimal" ,r-minimal)
675 ("r-foreach" ,r-foreach)
676 ("r-xnomial" ,r-xnomial)
677 ("r-domc" ,r-domc)
678 ("r-multitaper" ,r-multitaper)
679 ("r-seqinr" ,r-seqinr)))
680 (home-page "https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/")
681 (synopsis "Define translated ORFs using ribosome profiling data")
682 (description
683 "Ribotaper is a method for defining translated @dfn{open reading
684 frames} (ORFs) using ribosome profiling (ribo-seq) data. This package
685 provides the Ribotaper pipeline.")
686 (license license:gpl3+)))
687
688 (define-public ribodiff
689 (package
690 (name "ribodiff")
691 (version "0.2.2")
692 (source
693 (origin
694 (method git-fetch)
695 (uri (git-reference
696 (url "https://github.com/ratschlab/RiboDiff")
697 (commit (string-append "v" version))))
698 (file-name (git-file-name name version))
699 (sha256
700 (base32
701 "0x75nlp7qnmm64jasbi6l21f2cy99r2cjyl6b4hr8zf2bq22drnz"))))
702 (build-system python-build-system)
703 (arguments
704 `(#:python ,python-2
705 #:phases
706 (modify-phases %standard-phases
707 ;; Generate an installable executable script wrapper.
708 (add-after 'unpack 'patch-setup.py
709 (lambda _
710 (substitute* "setup.py"
711 (("^(.*)packages=.*" line prefix)
712 (string-append line "\n"
713 prefix "scripts=['scripts/TE.py'],\n")))
714 #t)))))
715 (inputs
716 `(("python-numpy" ,python2-numpy)
717 ("python-matplotlib" ,python2-matplotlib)
718 ("python-scipy" ,python2-scipy)
719 ("python-statsmodels" ,python2-statsmodels)))
720 (native-inputs
721 `(("python-mock" ,python2-mock)
722 ("python-nose" ,python2-nose)))
723 (home-page "https://public.bmi.inf.ethz.ch/user/zhongy/RiboDiff/")
724 (synopsis "Detect translation efficiency changes from ribosome footprints")
725 (description "RiboDiff is a statistical tool that detects the protein
726 translational efficiency change from Ribo-Seq (ribosome footprinting) and
727 RNA-Seq data. It uses a generalized linear model to detect genes showing
728 difference in translational profile taking mRNA abundance into account. It
729 facilitates us to decipher the translational regulation that behave
730 independently with transcriptional regulation.")
731 (license license:gpl3+)))
732
733 (define-public bioawk
734 (package
735 (name "bioawk")
736 (version "1.0")
737 (source (origin
738 (method git-fetch)
739 (uri (git-reference
740 (url "https://github.com/lh3/bioawk")
741 (commit (string-append "v" version))))
742 (file-name (git-file-name name version))
743 (sha256
744 (base32
745 "1pxc3zdnirxbf9a0az698hd8xdik7qkhypm7v6hn922x8y9qmspm"))))
746 (build-system gnu-build-system)
747 (inputs
748 `(("zlib" ,zlib)))
749 (native-inputs
750 `(("bison" ,bison)))
751 (arguments
752 `(#:tests? #f ; There are no tests to run.
753 ;; Bison must generate files, before other targets can build.
754 #:parallel-build? #f
755 #:phases
756 (modify-phases %standard-phases
757 (delete 'configure) ; There is no configure phase.
758 (replace 'install
759 (lambda* (#:key outputs #:allow-other-keys)
760 (let* ((out (assoc-ref outputs "out"))
761 (bin (string-append out "/bin"))
762 (man (string-append out "/share/man/man1")))
763 (mkdir-p man)
764 (copy-file "awk.1" (string-append man "/bioawk.1"))
765 (install-file "bioawk" bin))
766 #t)))))
767 (home-page "https://github.com/lh3/bioawk")
768 (synopsis "AWK with bioinformatics extensions")
769 (description "Bioawk is an extension to Brian Kernighan's awk, adding the
770 support of several common biological data formats, including optionally gzip'ed
771 BED, GFF, SAM, VCF, FASTA/Q and TAB-delimited formats with column names. It
772 also adds a few built-in functions and a command line option to use TAB as the
773 input/output delimiter. When the new functionality is not used, bioawk is
774 intended to behave exactly the same as the original BWK awk.")
775 (license license:x11)))
776
777 (define-public python-pybedtools
778 (package
779 (name "python-pybedtools")
780 (version "0.8.1")
781 (source (origin
782 (method url-fetch)
783 (uri (pypi-uri "pybedtools" version))
784 (sha256
785 (base32
786 "14w5i40gi25clrr7h4wa2pcpnyipya8hrqi7nq77553zc5wf0df0"))))
787 (build-system python-build-system)
788 (arguments
789 `(#:modules ((ice-9 ftw)
790 (srfi srfi-1)
791 (srfi srfi-26)
792 (guix build utils)
793 (guix build python-build-system))
794 ;; See https://github.com/daler/pybedtools/issues/192
795 #:phases
796 (modify-phases %standard-phases
797 (add-after 'unpack 'disable-broken-tests
798 (lambda _
799 (substitute* "pybedtools/test/test_scripts.py"
800 ;; This test freezes.
801 (("def test_intron_exon_reads")
802 "def _do_not_test_intron_exon_reads")
803 ;; This test fails in the Python 2 build.
804 (("def test_venn_mpl")
805 "def _do_not_test_venn_mpl"))
806 (substitute* "pybedtools/test/test_helpers.py"
807 ;; Requires internet access.
808 (("def test_chromsizes")
809 "def _do_not_test_chromsizes")
810 ;; Broken as a result of the workaround used in the check phase
811 ;; (see: https://github.com/daler/pybedtools/issues/192).
812 (("def test_getting_example_beds")
813 "def _do_not_test_getting_example_beds"))
814 ;; This issue still occurs on python2
815 (substitute* "pybedtools/test/test_issues.py"
816 (("def test_issue_303")
817 "def _test_issue_303"))
818 #t))
819 ;; TODO: Remove phase after it's part of PYTHON-BUILD-SYSTEM.
820 ;; build system.
821 ;; Force the Cythonization of C++ files to guard against compilation
822 ;; problems.
823 (add-after 'unpack 'remove-cython-generated-files
824 (lambda _
825 (let ((cython-sources (map (cut string-drop-right <> 4)
826 (find-files "." "\\.pyx$")))
827 (c/c++-files (find-files "." "\\.(c|cpp|cxx)$")))
828 (define (strip-extension filename)
829 (string-take filename (string-index-right filename #\.)))
830 (define (cythonized? c/c++-file)
831 (member (strip-extension c/c++-file) cython-sources))
832 (for-each delete-file (filter cythonized? c/c++-files))
833 #t)))
834 (add-after 'remove-cython-generated-files 'generate-cython-extensions
835 (lambda _
836 (invoke "python" "setup.py" "cythonize")))
837 (replace 'check
838 (lambda _
839 (let* ((cwd (getcwd))
840 (build-root-directory (string-append cwd "/build/"))
841 (build (string-append
842 build-root-directory
843 (find (cut string-prefix? "lib" <>)
844 (scandir (string-append
845 build-root-directory)))))
846 (scripts (string-append
847 build-root-directory
848 (find (cut string-prefix? "scripts" <>)
849 (scandir build-root-directory)))))
850 (setenv "PYTHONPATH"
851 (string-append build ":" (getenv "PYTHONPATH")))
852 ;; Executable scripts such as 'intron_exon_reads.py' must be
853 ;; available in the PATH.
854 (setenv "PATH"
855 (string-append scripts ":" (getenv "PATH"))))
856 ;; The tests need to be run from elsewhere...
857 (mkdir-p "/tmp/test")
858 (copy-recursively "pybedtools/test" "/tmp/test")
859 (with-directory-excursion "/tmp/test"
860 (invoke "pytest" "-v" "--doctest-modules")))))))
861 (propagated-inputs
862 `(("bedtools" ,bedtools)
863 ("samtools" ,samtools)
864 ("python-matplotlib" ,python-matplotlib)
865 ("python-pysam" ,python-pysam)
866 ("python-pyyaml" ,python-pyyaml)))
867 (native-inputs
868 `(("python-numpy" ,python-numpy)
869 ("python-pandas" ,python-pandas)
870 ("python-cython" ,python-cython)
871 ("kentutils" ,kentutils) ; for bedGraphToBigWig
872 ("python-six" ,python-six)
873 ;; For the test suite.
874 ("python-pytest" ,python-pytest)
875 ("python-psutil" ,python-psutil)))
876 (home-page "https://pythonhosted.org/pybedtools/")
877 (synopsis "Python wrapper for BEDtools programs")
878 (description
879 "pybedtools is a Python wrapper for Aaron Quinlan's BEDtools programs,
880 which are widely used for genomic interval manipulation or \"genome algebra\".
881 pybedtools extends BEDTools by offering feature-level manipulations from with
882 Python.")
883 (license license:gpl2+)))
884
885 (define-public python2-pybedtools
886 (let ((pybedtools (package-with-python2 python-pybedtools)))
887 (package
888 (inherit pybedtools)
889 (native-inputs
890 `(("python2-pathlib" ,python2-pathlib)
891 ,@(package-native-inputs pybedtools))))))
892
893 (define-public python-biom-format
894 (package
895 (name "python-biom-format")
896 (version "2.1.7")
897 (source
898 (origin
899 (method git-fetch)
900 ;; Use GitHub as source because PyPI distribution does not contain
901 ;; test data: https://github.com/biocore/biom-format/issues/693
902 (uri (git-reference
903 (url "https://github.com/biocore/biom-format")
904 (commit version)))
905 (file-name (git-file-name name version))
906 (sha256
907 (base32
908 "1rna16lyk5aqhnv0dp77wwaplias93f1vw28ad3jmyw6hwkai05v"))
909 (modules '((guix build utils)))
910 (snippet '(begin
911 ;; Delete generated C files.
912 (for-each delete-file (find-files "." "\\.c"))
913 #t))))
914 (build-system python-build-system)
915 (arguments
916 `(#:phases
917 (modify-phases %standard-phases
918 (add-after 'unpack 'use-cython
919 (lambda _ (setenv "USE_CYTHON" "1") #t))
920 (add-after 'unpack 'disable-broken-tests
921 (lambda _
922 (substitute* "biom/tests/test_cli/test_validate_table.py"
923 (("^(.+)def test_invalid_hdf5" m indent)
924 (string-append indent
925 "@npt.dec.skipif(True, msg='Guix')\n"
926 m)))
927 (substitute* "biom/tests/test_table.py"
928 (("^(.+)def test_from_hdf5_issue_731" m indent)
929 (string-append indent
930 "@npt.dec.skipif(True, msg='Guix')\n"
931 m)))
932 #t))
933 (add-before 'reset-gzip-timestamps 'make-files-writable
934 (lambda* (#:key outputs #:allow-other-keys)
935 (let ((out (assoc-ref outputs "out")))
936 (for-each (lambda (file) (chmod file #o644))
937 (find-files out "\\.gz"))
938 #t))))))
939 (propagated-inputs
940 `(("python-numpy" ,python-numpy)
941 ("python-scipy" ,python-scipy)
942 ("python-flake8" ,python-flake8)
943 ("python-future" ,python-future)
944 ("python-click" ,python-click)
945 ("python-h5py" ,python-h5py)
946 ;; FIXME: Upgrade to pandas 1.0 when
947 ;; https://github.com/biocore/biom-format/issues/837 is resolved.
948 ("python-pandas" ,python-pandas-0.25)))
949 (native-inputs
950 `(("python-cython" ,python-cython)
951 ("python-pytest" ,python-pytest)
952 ("python-pytest-cov" ,python-pytest-cov)
953 ("python-nose" ,python-nose)))
954 (home-page "http://www.biom-format.org")
955 (synopsis "Biological Observation Matrix (BIOM) format utilities")
956 (description
957 "The BIOM file format is designed to be a general-use format for
958 representing counts of observations e.g. operational taxonomic units, KEGG
959 orthology groups or lipid types, in one or more biological samples
960 e.g. microbiome samples, genomes, metagenomes.")
961 (license license:bsd-3)
962 (properties `((python2-variant . ,(delay python2-biom-format))))))
963
964 (define-public python2-biom-format
965 (let ((base (package-with-python2 (strip-python2-variant python-biom-format))))
966 (package
967 (inherit base)
968 (arguments
969 (substitute-keyword-arguments (package-arguments base)
970 ((#:phases phases)
971 `(modify-phases ,phases
972 ;; Do not require the unmaintained pyqi library.
973 (add-after 'unpack 'remove-pyqi
974 (lambda _
975 (substitute* "setup.py"
976 (("install_requires.append\\(\"pyqi\"\\)") "pass"))
977 #t)))))))))
978
979 (define-public python-pairtools
980 (package
981 (name "python-pairtools")
982 (version "0.3.0")
983 (source (origin
984 (method git-fetch)
985 (uri (git-reference
986 (url "https://github.com/mirnylab/pairtools")
987 (commit (string-append "v" version))))
988 (file-name (git-file-name name version))
989 (sha256
990 (base32
991 "0gr8y13q7sd6yai6df4aavl2470n1f9s3cib6r473z4hr8hcbwmc"))))
992 (build-system python-build-system)
993 (arguments
994 `(#:phases
995 (modify-phases %standard-phases
996 (add-after 'unpack 'fix-references
997 (lambda _
998 (substitute* '("pairtools/pairtools_merge.py"
999 "pairtools/pairtools_sort.py")
1000 (("/bin/bash") (which "bash")))
1001 #t))
1002 (replace 'check
1003 (lambda* (#:key inputs outputs #:allow-other-keys)
1004 (add-installed-pythonpath inputs outputs)
1005 (with-directory-excursion "/tmp"
1006 (invoke "pytest" "-v")))))))
1007 (native-inputs
1008 `(("python-cython" ,python-cython)
1009 ("python-nose" ,python-nose)
1010 ("python-pytest" ,python-pytest)))
1011 (inputs
1012 `(("python" ,python-wrapper)))
1013 (propagated-inputs
1014 `(("htslib" ,htslib) ; for bgzip, looked up in PATH
1015 ("samtools" ,samtools) ; looked up in PATH
1016 ("lz4" ,lz4) ; for lz4c
1017 ("python-click" ,python-click)
1018 ("python-numpy" ,python-numpy)))
1019 (home-page "https://github.com/mirnylab/pairtools")
1020 (synopsis "Process mapped Hi-C data")
1021 (description "Pairtools is a simple and fast command-line framework to
1022 process sequencing data from a Hi-C experiment. Process pair-end sequence
1023 alignments and perform the following operations:
1024
1025 @itemize
1026 @item detect ligation junctions (a.k.a. Hi-C pairs) in aligned paired-end
1027 sequences of Hi-C DNA molecules
1028 @item sort @code{.pairs} files for downstream analyses
1029 @item detect, tag and remove PCR/optical duplicates
1030 @item generate extensive statistics of Hi-C datasets
1031 @item select Hi-C pairs given flexibly defined criteria
1032 @item restore @code{.sam} alignments from Hi-C pairs.
1033 @end itemize
1034 ")
1035 (license license:expat)))
1036
1037 (define-public bioperl-minimal
1038 (let* ((inputs `(("perl-module-build" ,perl-module-build)
1039 ("perl-data-stag" ,perl-data-stag)
1040 ("perl-libwww" ,perl-libwww)
1041 ("perl-uri" ,perl-uri)))
1042 (transitive-inputs
1043 (map (compose package-name cadr)
1044 (delete-duplicates
1045 (concatenate
1046 (map (compose package-transitive-target-inputs cadr) inputs))))))
1047 (package
1048 (name "bioperl-minimal")
1049 (version "1.7.0")
1050 (source
1051 (origin
1052 (method git-fetch)
1053 (uri (git-reference
1054 (url "https://github.com/bioperl/bioperl-live")
1055 (commit (string-append "release-"
1056 (string-map (lambda (c)
1057 (if (char=? c #\.)
1058 #\- c)) version)))))
1059 (file-name (git-file-name name version))
1060 (sha256
1061 (base32
1062 "0wl8yvzcls59pwwk6m8ahy87pwg6nnibzy5cldbvmcwg2x2w7783"))))
1063 (build-system perl-build-system)
1064 (arguments
1065 `(#:phases
1066 (modify-phases %standard-phases
1067 (add-after
1068 'install 'wrap-programs
1069 (lambda* (#:key outputs #:allow-other-keys)
1070 ;; Make sure all executables in "bin" find the required Perl
1071 ;; modules at runtime. As the PERL5LIB variable contains also
1072 ;; the paths of native inputs, we pick the transitive target
1073 ;; inputs from %build-inputs.
1074 (let* ((out (assoc-ref outputs "out"))
1075 (bin (string-append out "/bin/"))
1076 (path (string-join
1077 (cons (string-append out "/lib/perl5/site_perl")
1078 (map (lambda (name)
1079 (assoc-ref %build-inputs name))
1080 ',transitive-inputs))
1081 ":")))
1082 (for-each (lambda (file)
1083 (wrap-program file
1084 `("PERL5LIB" ":" prefix (,path))))
1085 (find-files bin "\\.pl$"))
1086 #t))))))
1087 (inputs inputs)
1088 (native-inputs
1089 `(("perl-test-most" ,perl-test-most)))
1090 (home-page "https://metacpan.org/release/BioPerl")
1091 (synopsis "Bioinformatics toolkit")
1092 (description
1093 "BioPerl is the product of a community effort to produce Perl code which
1094 is useful in biology. Examples include Sequence objects, Alignment objects
1095 and database searching objects. These objects not only do what they are
1096 advertised to do in the documentation, but they also interact - Alignment
1097 objects are made from the Sequence objects, Sequence objects have access to
1098 Annotation and SeqFeature objects and databases, Blast objects can be
1099 converted to Alignment objects, and so on. This means that the objects
1100 provide a coordinated and extensible framework to do computational biology.")
1101 (license license:perl-license))))
1102
1103 (define-public python-biopython
1104 (package
1105 (name "python-biopython")
1106 (version "1.70")
1107 (source (origin
1108 (method url-fetch)
1109 ;; use PyPi rather than biopython.org to ease updating
1110 (uri (pypi-uri "biopython" version))
1111 (sha256
1112 (base32
1113 "0nz4n9d2y2dg849gn1z0vjlkwcpzzkzy3fij7x94a6ixy2c54z2a"))))
1114 (build-system python-build-system)
1115 (arguments
1116 `(#:phases
1117 (modify-phases %standard-phases
1118 (add-before 'check 'set-home
1119 ;; Some tests require a home directory to be set.
1120 (lambda _ (setenv "HOME" "/tmp") #t)))))
1121 (propagated-inputs
1122 `(("python-numpy" ,python-numpy)))
1123 (home-page "https://biopython.org/")
1124 (synopsis "Tools for biological computation in Python")
1125 (description
1126 "Biopython is a set of tools for biological computation including parsers
1127 for bioinformatics files into Python data structures; interfaces to common
1128 bioinformatics programs; a standard sequence class and tools for performing
1129 common operations on them; code to perform data classification; code for
1130 dealing with alignments; code making it easy to split up parallelizable tasks
1131 into separate processes; and more.")
1132 (license (license:non-copyleft "http://www.biopython.org/DIST/LICENSE"))))
1133
1134 (define-public python2-biopython
1135 (package-with-python2 python-biopython))
1136
1137 (define-public python-fastalite
1138 (package
1139 (name "python-fastalite")
1140 (version "0.3")
1141 (source
1142 (origin
1143 (method url-fetch)
1144 (uri (pypi-uri "fastalite" version))
1145 (sha256
1146 (base32
1147 "1qli6pxp77i9xn2wfciq2zaxhl82bdxb33cpzqzj1z25yd036wqj"))))
1148 (build-system python-build-system)
1149 (arguments
1150 `(#:tests? #f)) ; Test data is not distributed.
1151 (home-page "https://github.com/nhoffman/fastalite")
1152 (synopsis "Simplest possible FASTA parser")
1153 (description "This library implements a FASTA and a FASTQ parser without
1154 relying on a complex dependency tree.")
1155 (license license:expat)))
1156
1157 (define-public python2-fastalite
1158 (package-with-python2 python-fastalite))
1159
1160 (define-public bpp-core
1161 ;; The last release was in 2014 and the recommended way to install from source
1162 ;; is to clone the git repository, so we do this.
1163 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
1164 (let ((commit "7d8bced0d1a87291ea8dd7046b7fb5ff9c35c582"))
1165 (package
1166 (name "bpp-core")
1167 (version (string-append "2.2.0-1." (string-take commit 7)))
1168 (source (origin
1169 (method git-fetch)
1170 (uri (git-reference
1171 (url "http://biopp.univ-montp2.fr/git/bpp-core")
1172 (commit commit)))
1173 (file-name (string-append name "-" version "-checkout"))
1174 (sha256
1175 (base32
1176 "10djsq5vlnkilv436gnmh4irpk49v29pa69r6xiryg32xmvn909j"))))
1177 (build-system cmake-build-system)
1178 (arguments
1179 `(#:parallel-build? #f))
1180 (home-page "http://biopp.univ-montp2.fr")
1181 (synopsis "C++ libraries for Bioinformatics")
1182 (description
1183 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
1184 analysis, phylogenetics, molecular evolution and population genetics. It is
1185 Object Oriented and is designed to be both easy to use and computer efficient.
1186 Bio++ intends to help programmers to write computer expensive programs, by
1187 providing them a set of re-usable tools.")
1188 (license license:cecill-c))))
1189
1190 (define-public bpp-phyl
1191 ;; The last release was in 2014 and the recommended way to install from source
1192 ;; is to clone the git repository, so we do this.
1193 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
1194 (let ((commit "0c07167b629f68b569bf274d1ad0c4af83276ae2"))
1195 (package
1196 (name "bpp-phyl")
1197 (version (string-append "2.2.0-1." (string-take commit 7)))
1198 (source (origin
1199 (method git-fetch)
1200 (uri (git-reference
1201 (url "http://biopp.univ-montp2.fr/git/bpp-phyl")
1202 (commit commit)))
1203 (file-name (string-append name "-" version "-checkout"))
1204 (sha256
1205 (base32
1206 "1ssjgchzwj3iai26kyly7gwkdv8sk59nqhkb1wpap3sf5m6kyllh"))))
1207 (build-system cmake-build-system)
1208 (arguments
1209 `(#:parallel-build? #f
1210 ;; If out-of-source, test data is not copied into the build directory
1211 ;; so the tests fail.
1212 #:out-of-source? #f))
1213 (inputs
1214 `(("bpp-core" ,bpp-core)
1215 ("bpp-seq" ,bpp-seq)))
1216 (home-page "http://biopp.univ-montp2.fr")
1217 (synopsis "Bio++ phylogenetic Library")
1218 (description
1219 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
1220 analysis, phylogenetics, molecular evolution and population genetics. This
1221 library provides phylogenetics-related modules.")
1222 (license license:cecill-c))))
1223
1224 (define-public bpp-popgen
1225 ;; The last release was in 2014 and the recommended way to install from source
1226 ;; is to clone the git repository, so we do this.
1227 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
1228 (let ((commit "e472bac9b1a148803895d747cd6d0c5904f85d9f"))
1229 (package
1230 (name "bpp-popgen")
1231 (version (string-append "2.2.0-1." (string-take commit 7)))
1232 (source (origin
1233 (method git-fetch)
1234 (uri (git-reference
1235 (url "http://biopp.univ-montp2.fr/git/bpp-popgen")
1236 (commit commit)))
1237 (file-name (string-append name "-" version "-checkout"))
1238 (sha256
1239 (base32
1240 "0yn82dzn1n5629nzja68xfrhi655709rjanyryb36vzkmymy6dw5"))))
1241 (build-system cmake-build-system)
1242 (arguments
1243 `(#:parallel-build? #f
1244 #:tests? #f)) ; There are no tests.
1245 (inputs
1246 `(("bpp-core" ,bpp-core)
1247 ("bpp-seq" ,bpp-seq)))
1248 (home-page "http://biopp.univ-montp2.fr")
1249 (synopsis "Bio++ population genetics library")
1250 (description
1251 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
1252 analysis, phylogenetics, molecular evolution and population genetics. This
1253 library provides population genetics-related modules.")
1254 (license license:cecill-c))))
1255
1256 (define-public bpp-seq
1257 ;; The last release was in 2014 and the recommended way to install from source
1258 ;; is to clone the git repository, so we do this.
1259 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
1260 (let ((commit "6cfa07965ce152e5598a89df2fa80a75973bfa33"))
1261 (package
1262 (name "bpp-seq")
1263 (version (string-append "2.2.0-1." (string-take commit 7)))
1264 (source (origin
1265 (method git-fetch)
1266 (uri (git-reference
1267 (url "http://biopp.univ-montp2.fr/git/bpp-seq")
1268 (commit commit)))
1269 (file-name (string-append name "-" version "-checkout"))
1270 (sha256
1271 (base32
1272 "1nys5jq7jqvdg40d91wsmj3q2yzy4276cp7sp44n67p468f27zf2"))))
1273 (build-system cmake-build-system)
1274 (arguments
1275 `(#:parallel-build? #f
1276 ;; If out-of-source, test data is not copied into the build directory
1277 ;; so the tests fail.
1278 #:out-of-source? #f))
1279 (inputs
1280 `(("bpp-core" ,bpp-core)))
1281 (home-page "http://biopp.univ-montp2.fr")
1282 (synopsis "Bio++ sequence library")
1283 (description
1284 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
1285 analysis, phylogenetics, molecular evolution and population genetics. This
1286 library provides sequence-related modules.")
1287 (license license:cecill-c))))
1288
1289 (define-public bppsuite
1290 ;; The last release was in 2014 and the recommended way to install from source
1291 ;; is to clone the git repository, so we do this.
1292 ;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
1293 (let ((commit "c516147f57aa50961121cd505bed52cd7603698b"))
1294 (package
1295 (name "bppsuite")
1296 (version (string-append "2.2.0-1." (string-take commit 7)))
1297 (source (origin
1298 (method git-fetch)
1299 (uri (git-reference
1300 (url "http://biopp.univ-montp2.fr/git/bppsuite")
1301 (commit commit)))
1302 (file-name (string-append name "-" version "-checkout"))
1303 (sha256
1304 (base32
1305 "1y87pxvw0jxjizhq2dr9g2r91md45k1p9ih2sl1yy1y3p934l2kb"))))
1306 (build-system cmake-build-system)
1307 (arguments
1308 `(#:parallel-build? #f
1309 #:tests? #f)) ; There are no tests.
1310 (native-inputs
1311 `(("groff" ,groff)
1312 ("man-db" ,man-db)
1313 ("texinfo" ,texinfo)))
1314 (inputs
1315 `(("bpp-core" ,bpp-core)
1316 ("bpp-seq" ,bpp-seq)
1317 ("bpp-phyl" ,bpp-phyl)
1318 ("bpp-phyl" ,bpp-popgen)))
1319 (home-page "http://biopp.univ-montp2.fr")
1320 (synopsis "Bioinformatics tools written with the Bio++ libraries")
1321 (description
1322 "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
1323 analysis, phylogenetics, molecular evolution and population genetics. This
1324 package provides command line tools using the Bio++ library.")
1325 (license license:cecill-c))))
1326
1327 (define-public blast+
1328 (package
1329 (name "blast+")
1330 (version "2.10.1")
1331 (source (origin
1332 (method url-fetch)
1333 (uri (string-append
1334 "https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/"
1335 version "/ncbi-blast-" version "+-src.tar.gz"))
1336 (sha256
1337 (base32
1338 "11kvrrl0mcwww6530r55hccpg3x3msmhr3051fwnjbq8rzg2j1qi"))
1339 (modules '((guix build utils)))
1340 (snippet
1341 '(begin
1342 ;; Remove bundled bzip2, zlib and pcre.
1343 (delete-file-recursively "c++/src/util/compress/bzip2")
1344 (delete-file-recursively "c++/src/util/compress/zlib")
1345 (delete-file-recursively "c++/src/util/regexp")
1346 (substitute* "c++/src/util/compress/Makefile.in"
1347 (("bzip2 zlib api") "api"))
1348 ;; Remove useless msbuild directory
1349 (delete-file-recursively
1350 "c++/src/build-system/project_tree_builder/msbuild")
1351 #t))))
1352 (build-system gnu-build-system)
1353 (arguments
1354 `(;; There are two(!) tests for this massive library, and both fail with
1355 ;; "unparsable timing stats".
1356 ;; ERR [127] -- [serial/datatool] datatool.sh (unparsable timing stats)
1357 ;; ERR [127] -- [serial/datatool] datatool_xml.sh (unparsable timing stats)
1358 #:tests? #f
1359 #:out-of-source? #t
1360 #:parallel-build? #f ; not supported
1361 #:phases
1362 (modify-phases %standard-phases
1363 (add-before 'configure 'set-HOME
1364 ;; $HOME needs to be set at some point during the configure phase
1365 (lambda _ (setenv "HOME" "/tmp") #t))
1366 (add-after 'unpack 'enter-dir
1367 (lambda _ (chdir "c++") #t))
1368 (add-after 'enter-dir 'fix-build-system
1369 (lambda _
1370 (define (which* cmd)
1371 (cond ((string=? cmd "date")
1372 ;; make call to "date" deterministic
1373 "date -d @0")
1374 ((which cmd)
1375 => identity)
1376 (else
1377 (format (current-error-port)
1378 "WARNING: Unable to find absolute path for ~s~%"
1379 cmd)
1380 #f)))
1381
1382 ;; Rewrite hardcoded paths to various tools
1383 (substitute* (append '("src/build-system/configure.ac"
1384 "src/build-system/configure"
1385 "src/build-system/helpers/run_with_lock.c"
1386 "scripts/common/impl/if_diff.sh"
1387 "scripts/common/impl/run_with_lock.sh"
1388 "src/build-system/Makefile.configurables.real"
1389 "src/build-system/Makefile.in.top"
1390 "src/build-system/Makefile.meta.gmake=no"
1391 "src/build-system/Makefile.meta.in"
1392 "src/build-system/Makefile.meta_l"
1393 "src/build-system/Makefile.meta_p"
1394 "src/build-system/Makefile.meta_r"
1395 "src/build-system/Makefile.mk.in"
1396 "src/build-system/Makefile.requirements"
1397 "src/build-system/Makefile.rules_with_autodep.in")
1398 (find-files "scripts/common/check" "\\.sh$"))
1399 (("(/usr/bin/|/bin/)([a-z][-_.a-z]*)" all dir cmd)
1400 (or (which* cmd) all)))
1401
1402 (substitute* (find-files "src/build-system" "^config.*")
1403 (("LN_S=/bin/\\$LN_S") (string-append "LN_S=" (which "ln")))
1404 (("^PATH=.*") ""))
1405
1406 ;; rewrite "/var/tmp" in check script
1407 (substitute* "scripts/common/check/check_make_unix.sh"
1408 (("/var/tmp") "/tmp"))
1409
1410 ;; do not reset PATH
1411 (substitute* (find-files "scripts/common/impl/" "\\.sh$")
1412 (("^ *PATH=.*") "")
1413 (("action=/bin/") "action=")
1414 (("export PATH") ":"))
1415 #t))
1416 (replace 'configure
1417 (lambda* (#:key inputs outputs #:allow-other-keys)
1418 (let ((out (assoc-ref outputs "out"))
1419 (lib (string-append (assoc-ref outputs "lib") "/lib"))
1420 (include (string-append (assoc-ref outputs "include")
1421 "/include/ncbi-tools++")))
1422 ;; The 'configure' script doesn't recognize things like
1423 ;; '--enable-fast-install'.
1424 (invoke "./configure.orig"
1425 (string-append "--with-build-root=" (getcwd) "/build")
1426 (string-append "--prefix=" out)
1427 (string-append "--libdir=" lib)
1428 (string-append "--includedir=" include)
1429 (string-append "--with-bz2="
1430 (assoc-ref inputs "bzip2"))
1431 (string-append "--with-z="
1432 (assoc-ref inputs "zlib"))
1433 (string-append "--with-pcre="
1434 (assoc-ref inputs "pcre"))
1435 ;; Each library is built twice by default, once
1436 ;; with "-static" in its name, and again
1437 ;; without.
1438 "--without-static"
1439 "--with-dll")
1440 #t))))))
1441 (outputs '("out" ; 21 MB
1442 "lib" ; 226 MB
1443 "include")) ; 33 MB
1444 (inputs
1445 `(("bzip2" ,bzip2)
1446 ("lmdb" ,lmdb)
1447 ("zlib" ,zlib)
1448 ("pcre" ,pcre)
1449 ("perl" ,perl)
1450 ("python" ,python-wrapper)))
1451 (native-inputs
1452 `(("cpio" ,cpio)))
1453 (home-page "https://blast.ncbi.nlm.nih.gov")
1454 (synopsis "Basic local alignment search tool")
1455 (description
1456 "BLAST is a popular method of performing a DNA or protein sequence
1457 similarity search, using heuristics to produce results quickly. It also
1458 calculates an “expect value” that estimates how many matches would have
1459 occurred at a given score by chance, which can aid a user in judging how much
1460 confidence to have in an alignment.")
1461 ;; Most of the sources are in the public domain, with the following
1462 ;; exceptions:
1463 ;; * Expat:
1464 ;; * ./c++/include/util/bitset/
1465 ;; * ./c++/src/html/ncbi_menu*.js
1466 ;; * Boost license:
1467 ;; * ./c++/include/util/impl/floating_point_comparison.hpp
1468 ;; * LGPL 2+:
1469 ;; * ./c++/include/dbapi/driver/odbc/unix_odbc/
1470 ;; * ASL 2.0:
1471 ;; * ./c++/src/corelib/teamcity_*
1472 (license (list license:public-domain
1473 license:expat
1474 license:boost1.0
1475 license:lgpl2.0+
1476 license:asl2.0))))
1477
1478 (define-public bless
1479 (package
1480 (name "bless")
1481 (version "1p02")
1482 (source (origin
1483 (method url-fetch)
1484 (uri (string-append "mirror://sourceforge/bless-ec/bless.v"
1485 version ".tgz"))
1486 (sha256
1487 (base32
1488 "0rm0gw2s18dqwzzpl3c2x1z05ni2v0xz5dmfk3d33j6g4cgrlrdd"))
1489 (modules '((guix build utils)))
1490 (snippet
1491 `(begin
1492 ;; Remove bundled boost, pigz, zlib, and .git directory
1493 ;; FIXME: also remove bundled sources for murmurhash3 and
1494 ;; kmc once packaged.
1495 (delete-file-recursively "boost")
1496 (delete-file-recursively "pigz")
1497 (delete-file-recursively "google-sparsehash")
1498 (delete-file-recursively "zlib")
1499 (delete-file-recursively ".git")
1500 #t))))
1501 (build-system gnu-build-system)
1502 (arguments
1503 '(#:tests? #f ;no "check" target
1504 #:make-flags
1505 (list (string-append "ZLIB="
1506 (assoc-ref %build-inputs "zlib:static")
1507 "/lib/libz.a")
1508 (string-append "LDFLAGS="
1509 (string-join '("-lboost_filesystem"
1510 "-lboost_system"
1511 "-lboost_iostreams"
1512 "-lz"
1513 "-fopenmp"))))
1514 #:phases
1515 (modify-phases %standard-phases
1516 (add-after 'unpack 'do-not-build-bundled-pigz
1517 (lambda* (#:key inputs outputs #:allow-other-keys)
1518 (substitute* "Makefile"
1519 (("cd pigz/pigz-2.3.3; make") ""))
1520 #t))
1521 (add-after 'unpack 'patch-paths-to-executables
1522 (lambda* (#:key inputs outputs #:allow-other-keys)
1523 (substitute* "parse_args.cpp"
1524 (("kmc_binary = .*")
1525 (string-append "kmc_binary = \""
1526 (assoc-ref outputs "out")
1527 "/bin/kmc\";"))
1528 (("pigz_binary = .*")
1529 (string-append "pigz_binary = \""
1530 (assoc-ref inputs "pigz")
1531 "/bin/pigz\";")))
1532 #t))
1533 (replace 'install
1534 (lambda* (#:key outputs #:allow-other-keys)
1535 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
1536 (for-each (lambda (file)
1537 (install-file file bin))
1538 '("bless" "kmc/bin/kmc"))
1539 #t)))
1540 (delete 'configure))))
1541 (native-inputs
1542 `(("perl" ,perl)))
1543 (inputs
1544 `(("openmpi" ,openmpi)
1545 ("boost" ,boost)
1546 ("sparsehash" ,sparsehash)
1547 ("pigz" ,pigz)
1548 ("zlib:static" ,zlib "static")
1549 ("zlib" ,zlib)))
1550 (supported-systems '("x86_64-linux"))
1551 (home-page "https://sourceforge.net/p/bless-ec/wiki/Home/")
1552 (synopsis "Bloom-filter-based error correction tool for NGS reads")
1553 (description
1554 "@dfn{Bloom-filter-based error correction solution for high-throughput
1555 sequencing reads} (BLESS) uses a single minimum-sized bloom filter is a
1556 correction tool for genomic reads produced by @dfn{Next-generation
1557 sequencing} (NGS). BLESS produces accurate correction results with much less
1558 memory compared with previous solutions and is also able to tolerate a higher
1559 false-positive rate. BLESS can extend reads like DNA assemblers to correct
1560 errors at the end of reads.")
1561 (license license:gpl3+)))
1562
1563 (define-public bowtie
1564 (package
1565 (name "bowtie")
1566 (version "2.3.4.3")
1567 (source (origin
1568 (method git-fetch)
1569 (uri (git-reference
1570 (url "https://github.com/BenLangmead/bowtie2")
1571 (commit (string-append "v" version))))
1572 (file-name (git-file-name name version))
1573 (sha256
1574 (base32
1575 "1zl3cf327y2p7p03cavymbh7b00djc7lncfaqih33n96iy9q8ibp"))
1576 (modules '((guix build utils)))
1577 (snippet
1578 '(begin
1579 (substitute* "Makefile"
1580 ;; replace BUILD_HOST and BUILD_TIME for deterministic build
1581 (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"")
1582 (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))
1583 #t))))
1584 (build-system gnu-build-system)
1585 (arguments
1586 '(#:make-flags
1587 (list "allall"
1588 "WITH_TBB=1"
1589 (string-append "prefix=" (assoc-ref %outputs "out")))
1590 #:phases
1591 (modify-phases %standard-phases
1592 (delete 'configure)
1593 (replace 'check
1594 (lambda _
1595 (invoke "perl"
1596 "scripts/test/simple_tests.pl"
1597 "--bowtie2=./bowtie2"
1598 "--bowtie2-build=./bowtie2-build")
1599 #t)))))
1600 (inputs
1601 `(("tbb" ,tbb)
1602 ("zlib" ,zlib)
1603 ("python" ,python-wrapper)))
1604 (native-inputs
1605 `(("perl" ,perl)
1606 ("perl-clone" ,perl-clone)
1607 ("perl-test-deep" ,perl-test-deep)
1608 ("perl-test-simple" ,perl-test-simple)))
1609 (home-page "http://bowtie-bio.sourceforge.net/bowtie2/index.shtml")
1610 (synopsis "Fast and sensitive nucleotide sequence read aligner")
1611 (description
1612 "Bowtie 2 is a fast and memory-efficient tool for aligning sequencing
1613 reads to long reference sequences. It is particularly good at aligning reads
1614 of about 50 up to 100s or 1,000s of characters, and particularly good at
1615 aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the
1616 genome with an FM Index to keep its memory footprint small: for the human
1617 genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports
1618 gapped, local, and paired-end alignment modes.")
1619 (supported-systems '("x86_64-linux"))
1620 (license license:gpl3+)))
1621
1622 (define-public bowtie1
1623 (package
1624 (name "bowtie1")
1625 (version "1.2.3")
1626 (source (origin
1627 (method url-fetch)
1628 (uri (string-append "mirror://sourceforge/bowtie-bio/bowtie/"
1629 version "/bowtie-src-x86_64.zip"))
1630 (sha256
1631 (base32
1632 "0vmiqdhc9dzyfy9sh6vgi7k9xy2hiw8g87vbamnc6cgpm179zsa4"))
1633 (modules '((guix build utils)))
1634 (snippet
1635 '(substitute* "Makefile"
1636 ;; replace BUILD_HOST and BUILD_TIME for deterministic build
1637 (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"")
1638 (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\"")))))
1639 (build-system gnu-build-system)
1640 (arguments
1641 '(#:tests? #f ; no "check" target
1642 #:make-flags
1643 (list "all"
1644 (string-append "prefix=" (assoc-ref %outputs "out")))
1645 #:phases
1646 (modify-phases %standard-phases
1647 (delete 'configure))))
1648 (inputs
1649 `(("python-wrapper" ,python-wrapper)
1650 ("tbb" ,tbb)
1651 ("zlib" ,zlib)))
1652 (supported-systems '("x86_64-linux"))
1653 (home-page "http://bowtie-bio.sourceforge.net/index.shtml")
1654 (synopsis "Fast aligner for short nucleotide sequence reads")
1655 (description
1656 "Bowtie is a fast, memory-efficient short read aligner. It aligns short
1657 DNA sequences (reads) to the human genome at a rate of over 25 million 35-bp
1658 reads per hour. Bowtie indexes the genome with a Burrows-Wheeler index to
1659 keep its memory footprint small: typically about 2.2 GB for the human
1660 genome (2.9 GB for paired-end).")
1661 (license license:artistic2.0)))
1662
1663 (define-public tophat
1664 (package
1665 (name "tophat")
1666 (version "2.1.1")
1667 (source (origin
1668 (method url-fetch)
1669 (uri (string-append
1670 "http://ccb.jhu.edu/software/tophat/downloads/tophat-"
1671 version ".tar.gz"))
1672 (sha256
1673 (base32
1674 "19add02kv2xhd6ihd779dr7x35ggym3jqr0m5c4315i1yfb0p11p"))
1675 (modules '((guix build utils)))
1676 (snippet
1677 '(begin
1678 ;; Remove bundled SeqAn and samtools
1679 (delete-file-recursively "src/SeqAn-1.4.2")
1680 (delete-file-recursively "src/samtools-0.1.18")
1681 #t))))
1682 (build-system gnu-build-system)
1683 (arguments
1684 '(#:parallel-build? #f ; not supported
1685 #:phases
1686 (modify-phases %standard-phases
1687 (add-after 'set-paths 'hide-default-gcc
1688 (lambda* (#:key inputs #:allow-other-keys)
1689 (let ((gcc (assoc-ref inputs "gcc")))
1690 ;; Remove the default GCC from CPLUS_INCLUDE_PATH to prevent
1691 ;; conflicts with the GCC 5 input.
1692 (setenv "CPLUS_INCLUDE_PATH"
1693 (string-join
1694 (delete (string-append gcc "/include/c++")
1695 (string-split (getenv "CPLUS_INCLUDE_PATH") #\:))
1696 ":"))
1697 #t)))
1698 (add-after 'unpack 'use-system-samtools
1699 (lambda* (#:key inputs #:allow-other-keys)
1700 (substitute* "src/Makefile.in"
1701 (("(noinst_LIBRARIES = )\\$\\(SAMLIB\\)" _ prefix) prefix)
1702 (("\\$\\(SAMPROG\\): \\$\\(SAMLIB\\)") "")
1703 (("SAMPROG = samtools_0\\.1\\.18") "")
1704 (("\\$\\(samtools_0_1_18_SOURCES\\)") "")
1705 (("am__EXEEXT_1 = samtools_0\\.1\\.18\\$\\(EXEEXT\\)") ""))
1706 (substitute* '("src/common.cpp"
1707 "src/tophat.py")
1708 (("samtools_0.1.18") (which "samtools")))
1709 (substitute* '("src/common.h"
1710 "src/bam2fastx.cpp")
1711 (("#include \"bam.h\"") "#include <samtools/bam.h>")
1712 (("#include \"sam.h\"") "#include <samtools/sam.h>"))
1713 (substitute* '("src/bwt_map.h"
1714 "src/map2gtf.h"
1715 "src/align_status.h")
1716 (("#include <bam.h>") "#include <samtools/bam.h>")
1717 (("#include <sam.h>") "#include <samtools/sam.h>"))
1718 #t)))))
1719 (native-inputs
1720 `(("gcc@5" ,gcc-5))) ;; doesn't build with later versions
1721 (inputs
1722 `(("boost" ,boost)
1723 ("bowtie" ,bowtie)
1724 ("ncurses" ,ncurses)
1725 ("perl" ,perl)
1726 ("python" ,python-2)
1727 ("samtools" ,samtools-0.1)
1728 ("seqan" ,seqan-1)
1729 ("zlib" ,zlib)))
1730 (home-page "https://ccb.jhu.edu/software/tophat/index.shtml")
1731 (synopsis "Spliced read mapper for RNA-Seq data")
1732 (description
1733 "TopHat is a fast splice junction mapper for nucleotide sequence
1734 reads produced by the RNA-Seq method. It aligns RNA-Seq reads to
1735 mammalian-sized genomes using the ultra high-throughput short read
1736 aligner Bowtie, and then analyzes the mapping results to identify
1737 splice junctions between exons.")
1738 ;; TopHat is released under the Boost Software License, Version 1.0
1739 ;; See https://github.com/infphilo/tophat/issues/11#issuecomment-121589893
1740 (license license:boost1.0)))
1741
1742 (define-public bwa
1743 (package
1744 (name "bwa")
1745 (version "0.7.17")
1746 (source (origin
1747 (method url-fetch)
1748 (uri (string-append
1749 "https://github.com/lh3/bwa/releases/download/v"
1750 version "/bwa-" version ".tar.bz2"))
1751 (sha256
1752 (base32
1753 "1zfhv2zg9v1icdlq4p9ssc8k01mca5d1bd87w71py2swfi74s6yy"))))
1754 (build-system gnu-build-system)
1755 (arguments
1756 '(#:tests? #f ;no "check" target
1757 #:phases
1758 (modify-phases %standard-phases
1759 (replace 'install
1760 (lambda* (#:key outputs #:allow-other-keys)
1761 (let* ((out (assoc-ref outputs "out"))
1762 (bin (string-append out "/bin"))
1763 (lib (string-append out "/lib"))
1764 (doc (string-append out "/share/doc/bwa"))
1765 (man (string-append out "/share/man/man1")))
1766 (install-file "bwa" bin)
1767 (install-file "libbwa.a" lib)
1768 (install-file "README.md" doc)
1769 (install-file "bwa.1" man))
1770 #t))
1771 ;; no "configure" script
1772 (delete 'configure))))
1773 (inputs `(("zlib" ,zlib)))
1774 ;; Non-portable SSE instructions are used so building fails on platforms
1775 ;; other than x86_64.
1776 (supported-systems '("x86_64-linux"))
1777 (home-page "http://bio-bwa.sourceforge.net/")
1778 (synopsis "Burrows-Wheeler sequence aligner")
1779 (description
1780 "BWA is a software package for mapping low-divergent sequences against a
1781 large reference genome, such as the human genome. It consists of three
1782 algorithms: BWA-backtrack, BWA-SW and BWA-MEM. The first algorithm is
1783 designed for Illumina sequence reads up to 100bp, while the rest two for
1784 longer sequences ranged from 70bp to 1Mbp. BWA-MEM and BWA-SW share similar
1785 features such as long-read support and split alignment, but BWA-MEM, which is
1786 the latest, is generally recommended for high-quality queries as it is faster
1787 and more accurate. BWA-MEM also has better performance than BWA-backtrack for
1788 70-100bp Illumina reads.")
1789 (license license:gpl3+)))
1790
1791 (define-public bwa-pssm
1792 (package (inherit bwa)
1793 (name "bwa-pssm")
1794 (version "0.5.11")
1795 (source (origin
1796 (method git-fetch)
1797 (uri (git-reference
1798 (url "https://github.com/pkerpedjiev/bwa-pssm")
1799 (commit version)))
1800 (file-name (git-file-name name version))
1801 (sha256
1802 (base32
1803 "076c4q0cdqz8jgylb067y9zmvxglppnzi3qiscn0xiypgc6lgb5r"))))
1804 (build-system gnu-build-system)
1805 (inputs
1806 `(("gdsl" ,gdsl)
1807 ("zlib" ,zlib)
1808 ("perl" ,perl)))
1809 (home-page "http://bwa-pssm.binf.ku.dk/")
1810 (synopsis "Burrows-Wheeler transform-based probabilistic short read mapper")
1811 (description
1812 "BWA-PSSM is a probabilistic short genomic sequence read aligner based on
1813 the use of @dfn{position specific scoring matrices} (PSSM). Like many of the
1814 existing aligners it is fast and sensitive. Unlike most other aligners,
1815 however, it is also adaptible in the sense that one can direct the alignment
1816 based on known biases within the data set. It is coded as a modification of
1817 the original BWA alignment program and shares the genome index structure as
1818 well as many of the command line options.")
1819 (license license:gpl3+)))
1820
1821 (define-public bwa-meth
1822 (package
1823 (name "bwa-meth")
1824 (version "0.2.2")
1825 (source (origin
1826 (method git-fetch)
1827 (uri (git-reference
1828 (url "https://github.com/brentp/bwa-meth")
1829 (commit (string-append "v" version))))
1830 (file-name (git-file-name name version))
1831 (sha256
1832 (base32
1833 "17j31i7zws5j7mhsq9x3qgkxly6mlmrgwhfq0qbflgxrmx04yaiz"))))
1834 (build-system python-build-system)
1835 (arguments
1836 `(#:phases
1837 (modify-phases %standard-phases
1838 (add-after 'unpack 'keep-references-to-bwa
1839 (lambda* (#:key inputs #:allow-other-keys)
1840 (substitute* "bwameth.py"
1841 (("bwa (mem|index)" _ command)
1842 (string-append (which "bwa") " " command))
1843 ;; There's an ill-advised check for "samtools" on PATH.
1844 (("^checkX.*") ""))
1845 #t)))))
1846 (inputs
1847 `(("bwa" ,bwa)))
1848 (native-inputs
1849 `(("python-toolshed" ,python-toolshed)))
1850 (home-page "https://github.com/brentp/bwa-meth")
1851 (synopsis "Fast and accurante alignment of BS-Seq reads")
1852 (description
1853 "BWA-Meth works for single-end reads and for paired-end reads from the
1854 directional protocol (most common). It uses the method employed by
1855 methylcoder and Bismark of in silico conversion of all C's to T's in both
1856 reference and reads. It recovers the original read (needed to tabulate
1857 methylation) by attaching it as a comment which BWA appends as a tag to the
1858 read. It performs favorably to existing aligners gauged by number of on and
1859 off-target reads for a capture method that targets CpG-rich region.")
1860 (license license:expat)))
1861
1862 (define-public python-bx-python
1863 (package
1864 (name "python-bx-python")
1865 (version "0.8.2")
1866 (source (origin
1867 (method url-fetch)
1868 (uri (pypi-uri "bx-python" version))
1869 (sha256
1870 (base32
1871 "11kksg2rbzihpmcid823xvg42xi88m7sz58rzk29abybkxy0rszs"))))
1872 (build-system python-build-system)
1873 ;; Tests fail because test data are not included
1874 (arguments '(#:tests? #f))
1875 (propagated-inputs
1876 `(("python-numpy" ,python-numpy)
1877 ("python-six" ,python-six)))
1878 (inputs
1879 `(("zlib" ,zlib)))
1880 (native-inputs
1881 `(("python-lzo" ,python-lzo)
1882 ("python-nose" ,python-nose)
1883 ("python-cython" ,python-cython)))
1884 (home-page "https://github.com/bxlab/bx-python")
1885 (synopsis "Tools for manipulating biological data")
1886 (description
1887 "bx-python provides tools for manipulating biological data, particularly
1888 multiple sequence alignments.")
1889 (license license:expat)))
1890
1891 (define-public python2-bx-python
1892 (package-with-python2 python-bx-python))
1893
1894 (define-public python-pysam
1895 (package
1896 (name "python-pysam")
1897 (version "0.15.1")
1898 (source (origin
1899 (method git-fetch)
1900 ;; Test data is missing on PyPi.
1901 (uri (git-reference
1902 (url "https://github.com/pysam-developers/pysam")
1903 (commit (string-append "v" version))))
1904 (file-name (git-file-name name version))
1905 (sha256
1906 (base32
1907 "1vj367w6xbn9bpmksm162l1aipf7cj97h1q83y7jcpm33ihwpf7x"))
1908 (modules '((guix build utils)))
1909 (snippet '(begin
1910 ;; Drop bundled htslib. TODO: Also remove samtools
1911 ;; and bcftools.
1912 (delete-file-recursively "htslib")
1913 #t))))
1914 (build-system python-build-system)
1915 (arguments
1916 `(#:modules ((ice-9 ftw)
1917 (srfi srfi-26)
1918 (guix build python-build-system)
1919 (guix build utils))
1920 #:phases
1921 (modify-phases %standard-phases
1922 (add-before 'build 'set-flags
1923 (lambda* (#:key inputs #:allow-other-keys)
1924 (setenv "HTSLIB_MODE" "external")
1925 (setenv "HTSLIB_LIBRARY_DIR"
1926 (string-append (assoc-ref inputs "htslib") "/lib"))
1927 (setenv "HTSLIB_INCLUDE_DIR"
1928 (string-append (assoc-ref inputs "htslib") "/include"))
1929 (setenv "LDFLAGS" "-lncurses")
1930 (setenv "CFLAGS" "-D_CURSES_LIB=1")
1931 #t))
1932 (replace 'check
1933 (lambda* (#:key inputs outputs #:allow-other-keys)
1934 ;; This file contains tests that require a connection to the
1935 ;; internet.
1936 (delete-file "tests/tabix_test.py")
1937 ;; FIXME: This test fails
1938 (delete-file "tests/AlignmentFile_test.py")
1939 ;; Add first subdirectory of "build" directory to PYTHONPATH.
1940 (setenv "PYTHONPATH"
1941 (string-append
1942 (getenv "PYTHONPATH")
1943 ":" (getcwd) "/build/"
1944 (car (scandir "build"
1945 (negate (cut string-prefix? "." <>))))))
1946 ;; Step out of source dir so python does not import from CWD.
1947 (with-directory-excursion "tests"
1948 (setenv "HOME" "/tmp")
1949 (invoke "make" "-C" "pysam_data")
1950 (invoke "make" "-C" "cbcf_data")
1951 ;; Running nosetests without explicitly asking for a single
1952 ;; process leads to a crash. Running with multiple processes
1953 ;; fails because the tests are not designed to run in parallel.
1954
1955 ;; FIXME: tests keep timing out on some systems.
1956 (invoke "nosetests" "-v" "--processes" "1")))))))
1957 (propagated-inputs
1958 `(("htslib" ,htslib))) ; Included from installed header files.
1959 (inputs
1960 `(("ncurses" ,ncurses)
1961 ("curl" ,curl)
1962 ("zlib" ,zlib)))
1963 (native-inputs
1964 `(("python-cython" ,python-cython)
1965 ;; Dependencies below are are for tests only.
1966 ("samtools" ,samtools)
1967 ("bcftools" ,bcftools)
1968 ("python-nose" ,python-nose)))
1969 (home-page "https://github.com/pysam-developers/pysam")
1970 (synopsis "Python bindings to the SAMtools C API")
1971 (description
1972 "Pysam is a Python module for reading and manipulating files in the
1973 SAM/BAM format. Pysam is a lightweight wrapper of the SAMtools C API. It
1974 also includes an interface for tabix.")
1975 (license license:expat)))
1976
1977 (define-public python2-pysam
1978 (package-with-python2 python-pysam))
1979
1980 (define-public python-twobitreader
1981 (package
1982 (name "python-twobitreader")
1983 (version "3.1.6")
1984 (source (origin
1985 (method git-fetch)
1986 (uri (git-reference
1987 (url "https://github.com/benjschiller/twobitreader")
1988 (commit version)))
1989 (file-name (git-file-name name version))
1990 (sha256
1991 (base32
1992 "1qbxvv1h58cismbk1anpjrkpghsaiy64a11ir3lhy6qch6xf8n62"))))
1993 (build-system python-build-system)
1994 ;; Tests are not included
1995 (arguments '(#:tests? #f))
1996 (native-inputs
1997 `(("python-sphinx" ,python-sphinx)))
1998 (home-page "https://github.com/benjschiller/twobitreader")
1999 (synopsis "Python library for reading .2bit files")
2000 (description
2001 "twobitreader is a Python library for reading .2bit files as used by the
2002 UCSC genome browser.")
2003 (license license:artistic2.0)))
2004
2005 (define-public python2-twobitreader
2006 (package-with-python2 python-twobitreader))
2007
2008 (define-public python-plastid
2009 (package
2010 (name "python-plastid")
2011 (version "0.4.8")
2012 (source (origin
2013 (method url-fetch)
2014 (uri (pypi-uri "plastid" version))
2015 (sha256
2016 (base32
2017 "0l24dd3q66if8yj042m4s0g95n6acn7im1imqd3p6h8ns43kxhj8"))))
2018 (build-system python-build-system)
2019 (arguments
2020 ;; Some test files are not included.
2021 `(#:tests? #f))
2022 (propagated-inputs
2023 `(("python-numpy" ,python-numpy)
2024 ("python-scipy" ,python-scipy)
2025 ("python-pandas" ,python-pandas)
2026 ("python-pysam" ,python-pysam)
2027 ("python-matplotlib" ,python-matplotlib)
2028 ("python-biopython" ,python-biopython)
2029 ("python-twobitreader" ,python-twobitreader)
2030 ("python-termcolor" ,python-termcolor)))
2031 (native-inputs
2032 `(("python-cython" ,python-cython)
2033 ("python-nose" ,python-nose)))
2034 (home-page "https://github.com/joshuagryphon/plastid")
2035 (synopsis "Python library for genomic analysis")
2036 (description
2037 "plastid is a Python library for genomic analysis – in particular,
2038 high-throughput sequencing data – with an emphasis on simplicity.")
2039 (license license:bsd-3)))
2040
2041 (define-public python2-plastid
2042 (package-with-python2 python-plastid))
2043
2044 (define-public tetoolkit
2045 (package
2046 (name "tetoolkit")
2047 (version "2.0.3")
2048 (source (origin
2049 (method git-fetch)
2050 (uri (git-reference
2051 (url "https://github.com/mhammell-laboratory/tetoolkit")
2052 (commit version)))
2053 (file-name (git-file-name name version))
2054 (sha256
2055 (base32
2056 "1yzi0kfpzip8zpjb82x1ik6h22yzfyjiz2dv85v6as2awwqvk807"))))
2057 (build-system python-build-system)
2058 (arguments
2059 `(#:python ,python-2 ; not guaranteed to work with Python 3
2060 #:phases
2061 (modify-phases %standard-phases
2062 (add-after 'unpack 'make-writable
2063 (lambda _
2064 (for-each make-file-writable (find-files "."))
2065 #t))
2066 (add-after 'unpack 'patch-invocations
2067 (lambda* (#:key inputs #:allow-other-keys)
2068 (substitute* '("bin/TEtranscripts"
2069 "bin/TEcount")
2070 (("'sort ")
2071 (string-append "'" (which "sort") " "))
2072 (("'rm -f ")
2073 (string-append "'" (which "rm") " -f "))
2074 (("'Rscript'") (string-append "'" (which "Rscript") "'")))
2075 (substitute* "TEToolkit/IO/ReadInputs.py"
2076 (("BamToBED") (which "bamToBed")))
2077 (substitute* "TEToolkit/Normalization.py"
2078 (("\"Rscript\"")
2079 (string-append "\"" (which "Rscript") "\"")))
2080 #t))
2081 (add-after 'install 'wrap-program
2082 (lambda* (#:key outputs #:allow-other-keys)
2083 ;; Make sure the executables find R packages.
2084 (let ((out (assoc-ref outputs "out")))
2085 (for-each
2086 (lambda (script)
2087 (wrap-program (string-append out "/bin/" script)
2088 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))))
2089 '("TEtranscripts"
2090 "TEcount")))
2091 #t)))))
2092 (inputs
2093 `(("coreutils" ,coreutils)
2094 ("bedtools" ,bedtools)
2095 ("python-argparse" ,python2-argparse)
2096 ("python-pysam" ,python2-pysam)
2097 ("r-minimal" ,r-minimal)
2098 ("r-deseq2" ,r-deseq2)))
2099 (home-page "https://github.com/mhammell-laboratory/tetoolkit")
2100 (synopsis "Transposable elements in differential enrichment analysis")
2101 (description
2102 "This is package for including transposable elements in differential
2103 enrichment analysis of sequencing datasets. TEtranscripts and TEcount take
2104 RNA-seq (and similar data) and annotates reads to both genes and transposable
2105 elements. TEtranscripts then performs differential analysis using DESeq2.
2106 Note that TEtranscripts and TEcount rely on specially curated GTF files, which
2107 are not included due to their size.")
2108 (license license:gpl3+)))
2109
2110 (define-public cd-hit
2111 (package
2112 (name "cd-hit")
2113 (version "4.6.8")
2114 (source (origin
2115 (method url-fetch)
2116 (uri (string-append "https://github.com/weizhongli/cdhit"
2117 "/releases/download/V" version
2118 "/cd-hit-v" version
2119 "-2017-0621-source.tar.gz"))
2120 (sha256
2121 (base32
2122 "1b4mwm2520ixjbw57sil20f9iixzw4bkdqqwgg1fc3pzm6rz4zmn"))))
2123 (build-system gnu-build-system)
2124 (arguments
2125 `(#:tests? #f ; there are no tests
2126 #:make-flags
2127 ;; Executables are copied directly to the PREFIX.
2128 (list (string-append "PREFIX=" (assoc-ref %outputs "out") "/bin")
2129 ;; Support longer sequences (e.g. Pacbio sequences)
2130 "MAX_SEQ=60000000")
2131 #:phases
2132 (modify-phases %standard-phases
2133 ;; No "configure" script
2134 (delete 'configure)
2135 ;; Remove sources of non-determinism
2136 (add-after 'unpack 'be-timeless
2137 (lambda _
2138 (substitute* "cdhit-utility.c++"
2139 ((" \\(built on \" __DATE__ \"\\)") ""))
2140 (substitute* "cdhit-common.c++"
2141 (("__DATE__") "\"0\"")
2142 (("\", %s, \" __TIME__ \"\\\\n\", date") ""))
2143 #t))
2144 ;; The "install" target does not create the target directory.
2145 (add-before 'install 'create-target-dir
2146 (lambda* (#:key outputs #:allow-other-keys)
2147 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
2148 #t)))))
2149 (inputs
2150 `(("perl" ,perl)))
2151 (home-page "http://weizhongli-lab.org/cd-hit/")
2152 (synopsis "Cluster and compare protein or nucleotide sequences")
2153 (description
2154 "CD-HIT is a program for clustering and comparing protein or nucleotide
2155 sequences. CD-HIT is designed to be fast and handle extremely large
2156 databases.")
2157 ;; The manual says: "It can be copied under the GNU General Public License
2158 ;; version 2 (GPLv2)."
2159 (license license:gpl2)))
2160
2161 (define-public clipper
2162 (package
2163 (name "clipper")
2164 (version "2.0")
2165 (source (origin
2166 (method git-fetch)
2167 (uri (git-reference
2168 (url "https://github.com/YeoLab/clipper")
2169 (commit version)))
2170 (file-name (git-file-name name version))
2171 (sha256
2172 (base32
2173 "1bcag4lb5bkzsj2vg7lrq24aw6yfgq275ifrbhd82l7kqgbbjbkv"))))
2174 (build-system python-build-system)
2175 (arguments
2176 `(#:phases
2177 (modify-phases %standard-phases
2178 (add-before 'reset-gzip-timestamps 'make-files-writable
2179 (lambda* (#:key outputs #:allow-other-keys)
2180 ;; Make sure .gz files are writable so that the
2181 ;; 'reset-gzip-timestamps' phase can do its work.
2182 (let ((out (assoc-ref outputs "out")))
2183 (for-each make-file-writable
2184 (find-files out "\\.gz$"))
2185 #t))))))
2186 (inputs
2187 `(("htseq" ,htseq)
2188 ("python-pybedtools" ,python-pybedtools)
2189 ("python-cython" ,python-cython)
2190 ("python-scikit-learn" ,python-scikit-learn)
2191 ("python-matplotlib" ,python-matplotlib)
2192 ("python-pandas" ,python-pandas)
2193 ("python-pysam" ,python-pysam)
2194 ("python-numpy" ,python-numpy)
2195 ("python-scipy" ,python-scipy)))
2196 (native-inputs
2197 `(("python-setuptools-git" ,python-setuptools-git)
2198 ("python-mock" ,python-mock) ; for tests
2199 ("python-nose" ,python-nose) ; for tests
2200 ("python-pytz" ,python-pytz))) ; for tests
2201 (home-page "https://github.com/YeoLab/clipper")
2202 (synopsis "CLIP peak enrichment recognition")
2203 (description
2204 "CLIPper is a tool to define peaks in CLIP-seq datasets.")
2205 (license license:gpl2)))
2206
2207 (define-public codingquarry
2208 (package
2209 (name "codingquarry")
2210 (version "2.0")
2211 (source (origin
2212 (method url-fetch)
2213 (uri (string-append
2214 "mirror://sourceforge/codingquarry/CodingQuarry_v"
2215 version ".tar.gz"))
2216 (sha256
2217 (base32
2218 "0115hkjflsnfzn36xppwf9h9avfxlavr43djqmshkkzbgjzsz60i"))))
2219 (build-system gnu-build-system)
2220 (arguments
2221 '(#:tests? #f ; no "check" target
2222 #:phases
2223 (modify-phases %standard-phases
2224 (delete 'configure)
2225 (replace 'install
2226 (lambda* (#:key outputs #:allow-other-keys)
2227 (let* ((out (assoc-ref outputs "out"))
2228 (bin (string-append out "/bin"))
2229 (doc (string-append out "/share/doc/codingquarry")))
2230 (install-file "INSTRUCTIONS.pdf" doc)
2231 (copy-recursively "QuarryFiles"
2232 (string-append out "/QuarryFiles"))
2233 (install-file "CodingQuarry" bin)
2234 (install-file "CufflinksGTF_to_CodingQuarryGFF3.py" bin))
2235 #t)))))
2236 (inputs `(("openmpi" ,openmpi)))
2237 (native-search-paths
2238 (list (search-path-specification
2239 (variable "QUARRY_PATH")
2240 (files '("QuarryFiles")))))
2241 (native-inputs `(("python" ,python-2))) ; Only Python 2 is supported
2242 (synopsis "Fungal gene predictor")
2243 (description "CodingQuarry is a highly accurate, self-training GHMM fungal
2244 gene predictor designed to work with assembled, aligned RNA-seq transcripts.")
2245 (home-page "https://sourceforge.net/projects/codingquarry/")
2246 (license license:gpl3+)))
2247
2248 (define-public couger
2249 (package
2250 (name "couger")
2251 (version "1.8.2")
2252 (source (origin
2253 (method url-fetch)
2254 (uri (string-append
2255 "http://couger.oit.duke.edu/static/assets/COUGER"
2256 version ".zip"))
2257 (sha256
2258 (base32
2259 "04p2b14nmhzxw5h72mpzdhalv21bx4w9b87z0wpw0xzxpysyncmq"))))
2260 (build-system gnu-build-system)
2261 (arguments
2262 `(#:tests? #f
2263 #:phases
2264 (modify-phases %standard-phases
2265 (delete 'configure)
2266 (delete 'build)
2267 (replace
2268 'install
2269 (lambda* (#:key outputs #:allow-other-keys)
2270 (let* ((out (assoc-ref outputs "out"))
2271 (bin (string-append out "/bin")))
2272 (copy-recursively "src" (string-append out "/src"))
2273 (mkdir bin)
2274 ;; Add "src" directory to module lookup path.
2275 (substitute* "couger"
2276 (("from argparse")
2277 (string-append "import sys\nsys.path.append(\""
2278 out "\")\nfrom argparse")))
2279 (install-file "couger" bin))
2280 #t))
2281 (add-after
2282 'install 'wrap-program
2283 (lambda* (#:key inputs outputs #:allow-other-keys)
2284 ;; Make sure 'couger' runs with the correct PYTHONPATH.
2285 (let* ((out (assoc-ref outputs "out"))
2286 (path (getenv "PYTHONPATH")))
2287 (wrap-program (string-append out "/bin/couger")
2288 `("PYTHONPATH" ":" prefix (,path))))
2289 #t)))))
2290 (inputs
2291 `(("python" ,python-2)
2292 ("python2-pillow" ,python2-pillow)
2293 ("python2-numpy" ,python2-numpy)
2294 ("python2-scipy" ,python2-scipy)
2295 ("python2-matplotlib" ,python2-matplotlib)))
2296 (propagated-inputs
2297 `(("r-minimal" ,r-minimal)
2298 ("libsvm" ,libsvm)
2299 ("randomjungle" ,randomjungle)))
2300 (native-inputs
2301 `(("unzip" ,unzip)))
2302 (home-page "http://couger.oit.duke.edu")
2303 (synopsis "Identify co-factors in sets of genomic regions")
2304 (description
2305 "COUGER can be applied to any two sets of genomic regions bound by
2306 paralogous TFs (e.g., regions derived from ChIP-seq experiments) to identify
2307 putative co-factors that provide specificity to each TF. The framework
2308 determines the genomic targets uniquely-bound by each TF, and identifies a
2309 small set of co-factors that best explain the in vivo binding differences
2310 between the two TFs.
2311
2312 COUGER uses classification algorithms (support vector machines and random
2313 forests) with features that reflect the DNA binding specificities of putative
2314 co-factors. The features are generated either from high-throughput TF-DNA
2315 binding data (from protein binding microarray experiments), or from large
2316 collections of DNA motifs.")
2317 (license license:gpl3+)))
2318
2319 (define-public clustal-omega
2320 (package
2321 (name "clustal-omega")
2322 (version "1.2.4")
2323 (source (origin
2324 (method url-fetch)
2325 (uri (string-append "http://www.clustal.org/omega/clustal-omega-"
2326 version ".tar.gz"))
2327 (sha256
2328 (base32
2329 "1vm30mzncwdv881vrcwg11vzvrsmwy4wg80j5i0lcfk6dlld50w6"))))
2330 (build-system gnu-build-system)
2331 (inputs
2332 `(("argtable" ,argtable)))
2333 (home-page "http://www.clustal.org/omega/")
2334 (synopsis "Multiple sequence aligner for protein and DNA/RNA")
2335 (description
2336 "Clustal-Omega is a general purpose multiple sequence alignment (MSA)
2337 program for protein and DNA/RNA. It produces high quality MSAs and is capable
2338 of handling data-sets of hundreds of thousands of sequences in reasonable
2339 time.")
2340 (license license:gpl2+)))
2341
2342 (define-public crossmap
2343 (package
2344 (name "crossmap")
2345 (version "0.3.8")
2346 (source (origin
2347 (method url-fetch)
2348 (uri (pypi-uri "CrossMap" version))
2349 (sha256
2350 (base32
2351 "1sb2f2qbxya4fzw3yjl09vbrs8vfmw22zrygrvz004sf9gb1vkan"))))
2352 (build-system python-build-system)
2353 (inputs
2354 `(("python-bx-python" ,python-bx-python)
2355 ("python-numpy" ,python-numpy)
2356 ("python-pybigwig" ,python-pybigwig)
2357 ("python-pysam" ,python-pysam)
2358 ("zlib" ,zlib)))
2359 (native-inputs
2360 `(("python-cython" ,python-cython)
2361 ("python-nose" ,python-nose)))
2362 (home-page "http://crossmap.sourceforge.net/")
2363 (synopsis "Convert genome coordinates between assemblies")
2364 (description
2365 "CrossMap is a program for conversion of genome coordinates or annotation
2366 files between different genome assemblies. It supports most commonly used
2367 file formats including SAM/BAM, Wiggle/BigWig, BED, GFF/GTF, VCF.")
2368 (license license:gpl2+)))
2369
2370 (define-public python-dnaio
2371 (package
2372 (name "python-dnaio")
2373 (version "0.3")
2374 (source
2375 (origin
2376 (method url-fetch)
2377 (uri (pypi-uri "dnaio" version))
2378 (sha256
2379 (base32
2380 "0f16m7hdlm0fz1n7y5asy0v9ghyrq17ni1p9iybq22ddzyd49r27"))))
2381 (build-system python-build-system)
2382 (native-inputs
2383 `(("python-cython" ,python-cython)
2384 ("python-pytest" ,python-pytest)
2385 ("python-xopen" ,python-xopen)))
2386 (home-page "https://github.com/marcelm/dnaio/")
2387 (synopsis "Read FASTA and FASTQ files efficiently")
2388 (description
2389 "dnaio is a Python library for fast parsing of FASTQ and also FASTA
2390 files. The code was previously part of the cutadapt tool.")
2391 (license license:expat)))
2392
2393 (define-public python-deeptoolsintervals
2394 (package
2395 (name "python-deeptoolsintervals")
2396 (version "0.1.9")
2397 (source (origin
2398 (method url-fetch)
2399 (uri (pypi-uri "deeptoolsintervals" version))
2400 (sha256
2401 (base32
2402 "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x"))))
2403 (build-system python-build-system)
2404 (inputs
2405 `(("zlib" ,zlib)))
2406 (home-page "https://github.com/deeptools/deeptools_intervals")
2407 (synopsis "Create GTF-based interval trees with associated meta-data")
2408 (description
2409 "This package provides a Python module creating/accessing GTF-based
2410 interval trees with associated meta-data. It is primarily used by the
2411 @code{deeptools} package.")
2412 (license license:expat)))
2413
2414 (define-public python-deeptools
2415 (package
2416 (name "python-deeptools")
2417 (version "3.4.3")
2418 (source (origin
2419 (method git-fetch)
2420 (uri (git-reference
2421 (url "https://github.com/deeptools/deepTools")
2422 (commit version)))
2423 (file-name (git-file-name name version))
2424 (sha256
2425 (base32
2426 "0l09vyynz6s6w7fnyd94rpys4a6aja6kp4gli64pngdxdz3md1nl"))))
2427 (build-system python-build-system)
2428 (native-inputs
2429 `(("python-mock" ,python-mock)
2430 ("python-nose" ,python-nose)))
2431 (propagated-inputs
2432 `(("python-matplotlib" ,python-matplotlib)
2433 ("python-numpy" ,python-numpy)
2434 ("python-numpydoc" ,python-numpydoc)
2435 ("python-py2bit" ,python-py2bit)
2436 ("python-pybigwig" ,python-pybigwig)
2437 ("python-pysam" ,python-pysam)
2438 ("python-scipy" ,python-scipy)
2439 ("python-deeptoolsintervals" ,python-deeptoolsintervals)
2440 ("python-plotly" ,python-plotly-2.4.1)))
2441 (home-page "https://pypi.org/project/deepTools/")
2442 (synopsis "Useful tools for exploring deep sequencing data")
2443 (description "This package addresses the challenge of handling large amounts
2444 of data that are now routinely generated from DNA sequencing centers.
2445 @code{deepTools} contains useful modules to process the mapped reads data for
2446 multiple quality checks, creating normalized coverage files in standard bedGraph
2447 and bigWig file formats, that allow comparison between different files. Finally,
2448 using such normalized and standardized files, deepTools can create many
2449 publication-ready visualizations to identify enrichments and for functional
2450 annotations of the genome.")
2451 ;; The file deeptools/cm.py is licensed under the BSD license. The
2452 ;; remainder of the code is licensed under the MIT license.
2453 (license (list license:bsd-3 license:expat))))
2454
2455 (define-deprecated deeptools python-deeptools)
2456
2457 (define-public cutadapt
2458 (package
2459 (name "cutadapt")
2460 (version "2.1")
2461 (source (origin
2462 (method url-fetch)
2463 (uri (pypi-uri "cutadapt" version))
2464 (sha256
2465 (base32
2466 "1vqmsfkm6llxzmsz9wcfcvzx9a9f8iabvwik2rbyn7nc4wm25z89"))))
2467 (build-system python-build-system)
2468 (inputs
2469 `(("python-dnaio" ,python-dnaio)
2470 ("python-xopen" ,python-xopen)))
2471 (native-inputs
2472 `(("python-cython" ,python-cython)
2473 ("python-pytest" ,python-pytest)
2474 ("python-setuptools-scm" ,python-setuptools-scm)))
2475 (home-page "https://cutadapt.readthedocs.io/en/stable/")
2476 (synopsis "Remove adapter sequences from nucleotide sequencing reads")
2477 (description
2478 "Cutadapt finds and removes adapter sequences, primers, poly-A tails and
2479 other types of unwanted sequence from high-throughput sequencing reads.")
2480 (license license:expat)))
2481
2482 (define-public libbigwig
2483 (package
2484 (name "libbigwig")
2485 (version "0.4.4")
2486 (source (origin
2487 (method git-fetch)
2488 (uri (git-reference
2489 (url "https://github.com/dpryan79/libBigWig")
2490 (commit version)))
2491 (file-name (git-file-name name version))
2492 (sha256
2493 (base32
2494 "09693dmf1scdac5pyq6qyn8b4mcipvnmc370k9a5z41z81m3dcsj"))))
2495 (build-system gnu-build-system)
2496 (arguments
2497 `(#:test-target "test"
2498 #:tests? #f ; tests require access to the web
2499 #:make-flags
2500 (list "CC=gcc"
2501 (string-append "prefix=" (assoc-ref %outputs "out")))
2502 #:phases
2503 (modify-phases %standard-phases
2504 (delete 'configure))))
2505 (inputs
2506 `(("zlib" ,zlib)
2507 ("curl" ,curl)))
2508 (native-inputs
2509 `(("doxygen" ,doxygen)
2510 ;; Need for tests
2511 ("python" ,python-2)))
2512 (home-page "https://github.com/dpryan79/libBigWig")
2513 (synopsis "C library for handling bigWig files")
2514 (description
2515 "This package provides a C library for parsing local and remote BigWig
2516 files.")
2517 (license license:expat)))
2518
2519 (define-public python-pybigwig
2520 (package
2521 (name "python-pybigwig")
2522 (version "0.3.17")
2523 (source (origin
2524 (method url-fetch)
2525 (uri (pypi-uri "pyBigWig" version))
2526 (sha256
2527 (base32
2528 "157x6v48y299zm382krf1dw08fdxg95im8lnabhp5vc94s04zxj1"))
2529 (modules '((guix build utils)))
2530 (snippet
2531 '(begin
2532 ;; Delete bundled libBigWig sources
2533 (delete-file-recursively "libBigWig")
2534 #t))))
2535 (build-system python-build-system)
2536 (arguments
2537 `(#:phases
2538 (modify-phases %standard-phases
2539 (add-after 'unpack 'link-with-libBigWig
2540 (lambda* (#:key inputs #:allow-other-keys)
2541 (substitute* "setup.py"
2542 (("libs=\\[") "libs=[\"BigWig\", "))
2543 #t)))))
2544 (propagated-inputs
2545 `(("python-numpy" ,python-numpy)))
2546 (inputs
2547 `(("libbigwig" ,libbigwig)
2548 ("zlib" ,zlib)
2549 ("curl" ,curl)))
2550 (home-page "https://github.com/dpryan79/pyBigWig")
2551 (synopsis "Access bigWig files in Python using libBigWig")
2552 (description
2553 "This package provides Python bindings to the libBigWig library for
2554 accessing bigWig files.")
2555 (license license:expat)))
2556
2557 (define-public python2-pybigwig
2558 (package-with-python2 python-pybigwig))
2559
2560 (define-public python-dendropy
2561 (package
2562 (name "python-dendropy")
2563 (version "4.4.0")
2564 (source
2565 (origin
2566 (method git-fetch)
2567 ;; Source from GitHub so that tests are included.
2568 (uri (git-reference
2569 (url "https://github.com/jeetsukumaran/DendroPy")
2570 (commit (string-append "v" version))))
2571 (file-name (git-file-name name version))
2572 (sha256
2573 (base32
2574 "097hfyv2kaf4x92i4rjx0paw2cncxap48qivv8zxng4z7nhid0x9"))))
2575 (build-system python-build-system)
2576 (home-page "https://dendropy.org/")
2577 (synopsis "Library for phylogenetics and phylogenetic computing")
2578 (description
2579 "DendroPy is a library for phylogenetics and phylogenetic computing: reading,
2580 writing, simulation, processing and manipulation of phylogenetic
2581 trees (phylogenies) and characters.")
2582 (license license:bsd-3)))
2583
2584 (define-public python2-dendropy
2585 (let ((base (package-with-python2 python-dendropy)))
2586 (package
2587 (inherit base)
2588 (arguments
2589 `(#:phases
2590 (modify-phases %standard-phases
2591 (add-after 'unpack 'remove-failing-test
2592 (lambda _
2593 ;; This test fails when the full test suite is run, as documented
2594 ;; at https://github.com/jeetsukumaran/DendroPy/issues/74
2595 (substitute* "tests/test_dataio_nexml_reader_tree_list.py"
2596 (("test_collection_comments_and_annotations")
2597 "do_not_test_collection_comments_and_annotations"))
2598 #t)))
2599 ,@(package-arguments base))))))
2600
2601 (define-public python-py2bit
2602 (package
2603 (name "python-py2bit")
2604 (version "0.3.0")
2605 (source
2606 (origin
2607 (method url-fetch)
2608 (uri (pypi-uri "py2bit" version))
2609 (sha256
2610 (base32
2611 "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5"))))
2612 (build-system python-build-system)
2613 (home-page "https://github.com/dpryan79/py2bit")
2614 (synopsis "Access 2bit files using lib2bit")
2615 (description
2616 "This package provides Python bindings for lib2bit to access 2bit files
2617 with Python.")
2618 (license license:expat)))
2619
2620 (define-public delly
2621 (package
2622 (name "delly")
2623 (version "0.8.3")
2624 (source (origin
2625 (method git-fetch)
2626 (uri (git-reference
2627 (url "https://github.com/dellytools/delly")
2628 (commit (string-append "v" version))))
2629 (file-name (git-file-name name version))
2630 (sha256
2631 (base32 "1ibnplgfzj96w8glkx17v7sld3pm402fr5ybmf3h0rlcryabxrqy"))
2632 (modules '((guix build utils)))
2633 (snippet
2634 '(begin
2635 (delete-file-recursively "src/htslib")
2636 #t))))
2637 (build-system gnu-build-system)
2638 (arguments
2639 `(#:tests? #f ; There are no tests to run.
2640 #:make-flags
2641 (list "PARALLEL=1" ; Allow parallel execution at run-time.
2642 (string-append "prefix=" (assoc-ref %outputs "out")))
2643 #:phases
2644 (modify-phases %standard-phases
2645 (delete 'configure) ; There is no configure phase.
2646 (add-after 'install 'install-templates
2647 (lambda* (#:key outputs #:allow-other-keys)
2648 (let ((templates (string-append (assoc-ref outputs "out")
2649 "/share/delly/templates")))
2650 (mkdir-p templates)
2651 (copy-recursively "excludeTemplates" templates)
2652 #t))))))
2653 (inputs
2654 `(("boost" ,boost)
2655 ("bzip2" ,bzip2)
2656 ("htslib" ,htslib)
2657 ("zlib" ,zlib)))
2658 (home-page "https://github.com/dellytools/delly")
2659 (synopsis "Integrated structural variant prediction method")
2660 (description "Delly is an integrated structural variant prediction method
2661 that can discover and genotype deletions, tandem duplications, inversions and
2662 translocations at single-nucleotide resolution in short-read massively parallel
2663 sequencing data. It uses paired-ends and split-reads to sensitively and
2664 accurately delineate genomic rearrangements throughout the genome.")
2665 (license license:gpl3+)))
2666
2667 (define-public diamond
2668 (package
2669 (name "diamond")
2670 (version "0.9.30")
2671 (source (origin
2672 (method git-fetch)
2673 (uri (git-reference
2674 (url "https://github.com/bbuchfink/diamond")
2675 (commit (string-append "v" version))))
2676 (file-name (git-file-name name version))
2677 (sha256
2678 (base32
2679 "0k6f3kb6cniw11xw6763kkbs1sl0yack7xsy7q5fl5v170ssphq4"))))
2680 (build-system cmake-build-system)
2681 (arguments
2682 '(#:tests? #f ; no "check" target
2683 #:phases
2684 (modify-phases %standard-phases
2685 (add-after 'unpack 'remove-native-compilation
2686 (lambda _
2687 (substitute* "CMakeLists.txt" (("-march=native") ""))
2688 #t)))))
2689 (inputs
2690 `(("zlib" ,zlib)))
2691 (home-page "https://github.com/bbuchfink/diamond")
2692 (synopsis "Accelerated BLAST compatible local sequence aligner")
2693 (description
2694 "DIAMOND is a BLAST-compatible local aligner for mapping protein and
2695 translated DNA query sequences against a protein reference database (BLASTP
2696 and BLASTX alignment mode). The speedup over BLAST is up to 20,000 on short
2697 reads at a typical sensitivity of 90-99% relative to BLAST depending on the
2698 data and settings.")
2699 (license license:agpl3+)))
2700
2701 (define-public discrover
2702 (package
2703 (name "discrover")
2704 (version "1.6.0")
2705 (source
2706 (origin
2707 (method git-fetch)
2708 (uri (git-reference
2709 (url "https://github.com/maaskola/discrover")
2710 (commit version)))
2711 (file-name (git-file-name name version))
2712 (sha256
2713 (base32
2714 "173fwi2vb6a5kp406hm3jj6j7v4whww796f2qcygp4rpvamh307y"))))
2715 (build-system cmake-build-system)
2716 (arguments
2717 `(#:tests? #f ; there are no tests
2718 #:phases
2719 (modify-phases %standard-phases
2720 (add-after 'unpack 'fix-latex-errors
2721 (lambda _
2722 (with-fluids ((%default-port-encoding #f))
2723 (substitute* "doc/references.bib"
2724 (("\\{S\\}illanp[^,]+,")
2725 "{S}illanp{\\\"a}{\\\"a},")))
2726 ;; XXX: I just can't get pdflatex to not complain about these
2727 ;; characters. They end up in the manual via the generated
2728 ;; discrover-cli-help.txt.
2729 (substitute* "src/hmm/cli.cpp"
2730 (("µ") "mu")
2731 (("η") "eta")
2732 (("≤") "<="))
2733 ;; This seems to be a syntax error.
2734 (substitute* "doc/discrover-manual.tex"
2735 (("theverbbox\\[t\\]") "theverbbox"))
2736 #t))
2737 (add-after 'unpack 'add-missing-includes
2738 (lambda _
2739 (substitute* "src/executioninformation.hpp"
2740 (("#define EXECUTIONINFORMATION_HPP" line)
2741 (string-append line "\n#include <random>")))
2742 (substitute* "src/plasma/fasta.hpp"
2743 (("#define FASTA_HPP" line)
2744 (string-append line "\n#include <random>")))
2745 #t))
2746 ;; FIXME: this is needed because we're using texlive-union, which
2747 ;; doesn't handle fonts correctly. It expects to be able to generate
2748 ;; fonts in the home directory.
2749 (add-before 'build 'setenv-HOME
2750 (lambda _ (setenv "HOME" "/tmp") #t)))))
2751 (inputs
2752 `(("boost" ,boost)
2753 ("cairo" ,cairo)
2754 ("rmath-standalone" ,rmath-standalone)))
2755 (native-inputs
2756 `(("texlive" ,(texlive-union (list texlive-fonts-cm
2757 texlive-fonts-amsfonts
2758
2759 texlive-latex-doi
2760 texlive-latex-examplep
2761 texlive-latex-hyperref
2762 texlive-latex-ms
2763 texlive-latex-natbib
2764 texlive-bibtex ; style files used by natbib
2765 texlive-latex-pgf ; tikz
2766 texlive-latex-verbatimbox)))
2767 ("imagemagick" ,imagemagick)))
2768 (home-page "https://dorina.mdc-berlin.de/public/rajewsky/discrover/")
2769 (synopsis "Discover discriminative nucleotide sequence motifs")
2770 (description "Discrover is a motif discovery method to find binding sites
2771 of nucleic acid binding proteins.")
2772 (license license:gpl3+)))
2773
2774 (define-public eigensoft
2775 (package
2776 (name "eigensoft")
2777 (version "7.2.1")
2778 (source
2779 (origin
2780 (method git-fetch)
2781 (uri (git-reference
2782 (url "https://github.com/DReichLab/EIG")
2783 (commit (string-append "v" version))))
2784 (file-name (git-file-name name version))
2785 (sha256
2786 (base32
2787 "1c141fqvhnzibmnf22sv23vbmzm20kjjyrib44cfh75wyndp2d9k"))
2788 (modules '((guix build utils)))
2789 ;; Remove pre-built binaries.
2790 (snippet '(begin
2791 (delete-file-recursively "bin")
2792 (mkdir "bin")
2793 #t))))
2794 (build-system gnu-build-system)
2795 (arguments
2796 `(#:tests? #f ; There are no tests.
2797 #:make-flags '("CC=gcc")
2798 #:phases
2799 (modify-phases %standard-phases
2800 ;; There is no configure phase, but the Makefile is in a
2801 ;; sub-directory.
2802 (replace 'configure
2803 (lambda _ (chdir "src") #t))
2804 ;; The provided install target only copies executables to
2805 ;; the "bin" directory in the build root.
2806 (add-after 'install 'actually-install
2807 (lambda* (#:key outputs #:allow-other-keys)
2808 (let* ((out (assoc-ref outputs "out"))
2809 (bin (string-append out "/bin")))
2810 (for-each (lambda (file)
2811 (install-file file bin))
2812 (find-files "../bin" ".*"))
2813 #t))))))
2814 (inputs
2815 `(("gsl" ,gsl)
2816 ("lapack" ,lapack)
2817 ("openblas" ,openblas)
2818 ("perl" ,perl)
2819 ("gfortran" ,gfortran "lib")))
2820 (home-page "https://github.com/DReichLab/EIG")
2821 (synopsis "Tools for population genetics")
2822 (description "The EIGENSOFT package provides tools for population
2823 genetics and stratification correction. EIGENSOFT implements methods commonly
2824 used in population genetics analyses such as PCA, computation of Tracy-Widom
2825 statistics, and finding related individuals in structured populations. It
2826 comes with a built-in plotting script and supports multiple file formats and
2827 quantitative phenotypes.")
2828 ;; The license of the eigensoft tools is Expat, but since it's
2829 ;; linking with the GNU Scientific Library (GSL) the effective
2830 ;; license is the GPL.
2831 (license license:gpl3+)))
2832
2833 (define-public edirect
2834 (package
2835 (name "edirect")
2836 (version "13.3.20200128")
2837 (source (origin
2838 (method url-fetch)
2839 (uri (string-append "ftp://ftp.ncbi.nlm.nih.gov/entrez/entrezdirect"
2840 "/versions/" version
2841 "/edirect-" version ".tar.gz"))
2842 (sha256
2843 (base32
2844 "093zp7klv81ph0y8mm8d78a9hnpfxbv2kdym70gzdf3vz176rw33"))
2845 (modules '((guix build utils)))
2846 (snippet
2847 '(begin (delete-file "Mozilla-CA.tar.gz")
2848 (substitute* "rchive.go"
2849 ;; This go library does not have any license.
2850 (("github.com/fiam/gounidecode/unidecode")
2851 "golang.org/rainycape/unidecode"))
2852 #t))))
2853 (build-system perl-build-system)
2854 (arguments
2855 `(#:phases
2856 (modify-phases %standard-phases
2857 (delete 'configure)
2858 (delete 'build)
2859 (delete 'check) ; simple check after install
2860 (add-after 'unpack 'patch-programs
2861 (lambda* (#:key inputs #:allow-other-keys)
2862 ;; Ignore errors about missing xtract.Linux and rchive.Linux.
2863 (substitute* "pm-refresh"
2864 (("cat \\\"\\$target")
2865 "grep ^[[:digit:]] \"$target"))
2866 #t))
2867 (replace 'install
2868 (lambda* (#:key inputs outputs #:allow-other-keys)
2869 (let ((bin (string-append (assoc-ref outputs "out") "/bin"))
2870 (edirect-go (assoc-ref inputs "edirect-go-programs")))
2871 (for-each
2872 (lambda (file)
2873 (install-file file bin))
2874 '("archive-pubmed" "asp-cp" "asp-ls" "download-ncbi-data"
2875 "download-pubmed" "edirect.pl" "efetch" "epost" "esearch"
2876 "fetch-pubmed" "ftp-cp" "ftp-ls" "has-asp" "index-pubmed"
2877 "pm-prepare" "pm-refresh" "pm-stash" "pm-collect"
2878 "pm-index" "pm-invert" "pm-merge" "pm-promote"))
2879 (symlink (string-append edirect-go "/bin/xtract.Linux")
2880 (string-append bin "/xtract"))
2881 (symlink (string-append edirect-go "/bin/rchive.Linux")
2882 (string-append bin "/rchive")))
2883 #t))
2884 (add-after 'install 'wrap-program
2885 (lambda* (#:key outputs #:allow-other-keys)
2886 ;; Make sure everything can run in a pure environment.
2887 (let ((out (assoc-ref outputs "out"))
2888 (path (getenv "PERL5LIB")))
2889 (for-each
2890 (lambda (file)
2891 (wrap-program file
2892 `("PERL5LIB" ":" prefix (,path)))
2893 (wrap-program file
2894 `("PATH" ":" prefix (,(string-append out "/bin")
2895 ,(dirname (which "sed"))
2896 ,(dirname (which "gzip"))
2897 ,(dirname (which "grep"))
2898 ,(dirname (which "perl"))
2899 ,(dirname (which "uname"))))))
2900 (find-files out ".")))
2901 #t))
2902 (add-after 'wrap-program 'check
2903 (lambda* (#:key outputs #:allow-other-keys)
2904 (invoke (string-append (assoc-ref outputs "out")
2905 "/bin/edirect.pl")
2906 "-filter" "-help")
2907 #t)))))
2908 (inputs
2909 `(("edirect-go-programs" ,edirect-go-programs)
2910 ("perl-html-parser" ,perl-html-parser)
2911 ("perl-encode-locale" ,perl-encode-locale)
2912 ("perl-file-listing" ,perl-file-listing)
2913 ("perl-html-tagset" ,perl-html-tagset)
2914 ("perl-html-tree" ,perl-html-tree)
2915 ("perl-http-cookies" ,perl-http-cookies)
2916 ("perl-http-date" ,perl-http-date)
2917 ("perl-http-message" ,perl-http-message)
2918 ("perl-http-negotiate" ,perl-http-negotiate)
2919 ("perl-lwp-mediatypes" ,perl-lwp-mediatypes)
2920 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
2921 ("perl-net-http" ,perl-net-http)
2922 ("perl-uri" ,perl-uri)
2923 ("perl-www-robotrules" ,perl-www-robotrules)
2924 ("perl-xml-simple" ,perl-xml-simple)
2925 ("perl" ,perl)))
2926 (home-page "https://www.ncbi.nlm.nih.gov/books/NBK179288/")
2927 (synopsis "Tools for accessing the NCBI's set of databases")
2928 (description
2929 "Entrez Direct (EDirect) is a method for accessing the National Center
2930 for Biotechnology Information's (NCBI) set of interconnected
2931 databases (publication, sequence, structure, gene, variation, expression,
2932 etc.) from a terminal. Functions take search terms from command-line
2933 arguments. Individual operations are combined to build multi-step queries.
2934 Record retrieval and formatting normally complete the process.
2935
2936 EDirect also provides an argument-driven function that simplifies the
2937 extraction of data from document summaries or other results that are returned
2938 in structured XML format. This can eliminate the need for writing custom
2939 software to answer ad hoc questions.")
2940 (native-search-paths
2941 ;; Ideally this should be set for LWP somewhere.
2942 (list (search-path-specification
2943 (variable "PERL_LWP_SSL_CA_FILE")
2944 (file-type 'regular)
2945 (separator #f)
2946 (files '("/etc/ssl/certs/ca-certificates.crt")))))
2947 (license license:public-domain)))
2948
2949 (define-public edirect-go-programs
2950 (package
2951 (inherit edirect)
2952 (name "edirect-go-programs")
2953 (build-system go-build-system)
2954 (arguments
2955 `(#:install-source? #f
2956 #:tests? #f ; No tests.
2957 #:import-path "ncbi.nlm.nih.gov/entrez/edirect"
2958 #:phases
2959 (modify-phases %standard-phases
2960 (replace 'build
2961 (lambda* (#:key import-path #:allow-other-keys)
2962 (with-directory-excursion (string-append "src/" import-path)
2963 (invoke "go" "build" "-v" "-x" "j2x.go")
2964 (invoke "go" "build" "-v" "-x" "t2x.go")
2965 (invoke "go" "build" "-v" "-x" "-o"
2966 "xtract.Linux" "xtract.go" "common.go")
2967 (invoke "go" "build" "-v" "-x" "-o"
2968 "rchive.Linux" "rchive.go" "common.go")
2969 (invoke "go" "build" "-v" "-x" "-o" "symbols.Linux" "s2p.go"))))
2970 (replace 'install
2971 (lambda* (#:key outputs import-path #:allow-other-keys)
2972 (let ((dest (string-append (assoc-ref outputs "out") "/bin"))
2973 (source (string-append "src/" import-path "/")))
2974 (for-each (lambda (file)
2975 (format #t "installing ~a~%" file)
2976 (install-file (string-append source file) dest))
2977 '("j2x" "t2x" "symbols.Linux" "xtract.Linux" "rchive.Linux"))
2978 #t))))))
2979 (native-inputs '())
2980 (propagated-inputs '())
2981 (inputs
2982 `(("go-github-com-fatih-color" ,go-github-com-fatih-color)
2983 ("go-github-com-fogleman-gg" ,go-github-com-fogleman-gg)
2984 ("go-github-com-gedex-inflector" ,go-github-com-gedex-inflector)
2985 ("go-github-com-golang-freetype" ,go-github-com-golang-freetype)
2986 ("go-github-com-klauspost-cpuid" ,go-github-com-klauspost-cpuid)
2987 ("go-github-com-pbnjay-memory" ,go-github-com-pbnjay-memory)
2988 ("go-github-com-surgebase-porter2" ,go-github-com-surgebase-porter2)
2989 ("go-golang-org-rainycape-unidecode" ,go-golang-org-rainycape-unidecode)
2990 ("go-golang-org-x-image" ,go-golang-org-x-image)
2991 ("go-golang-org-x-text" ,go-golang-org-x-text)))))
2992
2993 (define-public exonerate
2994 (package
2995 (name "exonerate")
2996 (version "2.4.0")
2997 (source
2998 (origin
2999 (method url-fetch)
3000 (uri
3001 (string-append
3002 "http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/"
3003 "exonerate-" version ".tar.gz"))
3004 (sha256
3005 (base32
3006 "0hj0m9xygiqsdxvbg79wq579kbrx1mdrabi2bzqz2zn9qwfjcjgq"))))
3007 (build-system gnu-build-system)
3008 (arguments
3009 `(#:parallel-build? #f)) ; Building in parallel fails on some machines.
3010 (native-inputs
3011 `(("pkg-config" ,pkg-config)))
3012 (inputs
3013 `(("glib" ,glib)))
3014 (home-page
3015 "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate")
3016 (synopsis "Generic tool for biological sequence alignment")
3017 (description
3018 "Exonerate is a generic tool for pairwise sequence comparison. It allows
3019 the alignment of sequences using a many alignment models, either exhaustive
3020 dynamic programming or a variety of heuristics.")
3021 (license license:gpl3)))
3022
3023 (define-public express
3024 (package
3025 (name "express")
3026 (version "1.5.3")
3027 (source (origin
3028 (method git-fetch)
3029 (uri (git-reference
3030 (url "https://github.com/adarob/eXpress")
3031 (commit version)))
3032 (file-name (git-file-name name version))
3033 (sha256
3034 (base32
3035 "18nb22n7x820fzjngf4qgyb3mspqkw7xyk7v7s5ps6wfrd8qwscb"))))
3036 (build-system cmake-build-system)
3037 (arguments
3038 `(#:tests? #f ;no "check" target
3039 #:phases
3040 (modify-phases %standard-phases
3041 (add-after 'unpack 'use-shared-boost-libs-and-set-bamtools-paths
3042 (lambda* (#:key inputs #:allow-other-keys)
3043 (substitute* "CMakeLists.txt"
3044 (("set\\(Boost_USE_STATIC_LIBS ON\\)")
3045 "set(Boost_USE_STATIC_LIBS OFF)")
3046 (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/bamtools/include")
3047 (string-append (assoc-ref inputs "bamtools") "/include/bamtools")))
3048 (substitute* "src/CMakeLists.txt"
3049 (("\\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/\\.\\./bamtools/lib")
3050 (string-append (assoc-ref inputs "bamtools") "/lib"))
3051 (("libprotobuf.a") "libprotobuf.so"))
3052 #t))
3053 (add-after 'unpack 'remove-update-check
3054 (lambda _
3055 (substitute* "src/main.cpp"
3056 (("#include \"update_check.h\"") "")
3057 (("check_version\\(PACKAGE_VERSION\\);") ""))
3058 #t)))))
3059 (inputs
3060 `(("boost" ,boost)
3061 ("bamtools" ,bamtools)
3062 ("protobuf" ,protobuf)
3063 ("zlib" ,zlib)))
3064 (home-page "http://bio.math.berkeley.edu/eXpress")
3065 (synopsis "Streaming quantification for high-throughput genomic sequencing")
3066 (description
3067 "eXpress is a streaming tool for quantifying the abundances of a set of
3068 target sequences from sampled subsequences. Example applications include
3069 transcript-level RNA-Seq quantification, allele-specific/haplotype expression
3070 analysis (from RNA-Seq), transcription factor binding quantification in
3071 ChIP-Seq, and analysis of metagenomic data.")
3072 (license license:artistic2.0)))
3073
3074 (define-public express-beta-diversity
3075 (package
3076 (name "express-beta-diversity")
3077 (version "1.0.8")
3078 (source (origin
3079 (method git-fetch)
3080 (uri (git-reference
3081 (url "https://github.com/dparks1134/ExpressBetaDiversity")
3082 (commit (string-append "v" version))))
3083 (file-name (git-file-name name version))
3084 (sha256
3085 (base32
3086 "0s0yzg5c21349rh7x4w9266jsvnp7j1hp9cf8sk32hz8nvrj745x"))))
3087 (build-system gnu-build-system)
3088 (arguments
3089 `(#:phases
3090 (modify-phases %standard-phases
3091 (delete 'configure)
3092 (add-before 'build 'enter-source (lambda _ (chdir "source") #t))
3093 (replace 'check
3094 (lambda _ (invoke "../bin/ExpressBetaDiversity" "-u") #t))
3095 (replace 'install
3096 (lambda* (#:key outputs #:allow-other-keys)
3097 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
3098 (install-file "../scripts/convertToEBD.py" bin)
3099 (install-file "../bin/ExpressBetaDiversity" bin)
3100 #t))))))
3101 (inputs
3102 `(("python" ,python-2)))
3103 (home-page "https://github.com/dparks1134/ExpressBetaDiversity")
3104 (synopsis "Taxon- and phylogenetic-based beta diversity measures")
3105 (description
3106 "Express Beta Diversity (EBD) calculates ecological beta diversity
3107 (dissimilarity) measures between biological communities. EBD implements a
3108 variety of diversity measures including those that make use of phylogenetic
3109 similarity of community members.")
3110 (license license:gpl3+)))
3111
3112 (define-public fasttree
3113 (package
3114 (name "fasttree")
3115 (version "2.1.10")
3116 (source (origin
3117 (method url-fetch)
3118 (uri (string-append
3119 "http://www.microbesonline.org/fasttree/FastTree-"
3120 version ".c"))
3121 (sha256
3122 (base32
3123 "0vcjdvy1j4m702vmak4svbfkrpcw63k7wymfksjp9a982zy8kjsl"))))
3124 (build-system gnu-build-system)
3125 (arguments
3126 `(#:tests? #f ; no "check" target
3127 #:phases
3128 (modify-phases %standard-phases
3129 (delete 'unpack)
3130 (delete 'configure)
3131 (replace 'build
3132 (lambda* (#:key source #:allow-other-keys)
3133 (invoke "gcc"
3134 "-O3"
3135 "-finline-functions"
3136 "-funroll-loops"
3137 "-Wall"
3138 "-o"
3139 "FastTree"
3140 source
3141 "-lm")
3142 (invoke "gcc"
3143 "-DOPENMP"
3144 "-fopenmp"
3145 "-O3"
3146 "-finline-functions"
3147 "-funroll-loops"
3148 "-Wall"
3149 "-o"
3150 "FastTreeMP"
3151 source
3152 "-lm")
3153 #t))
3154 (replace 'install
3155 (lambda* (#:key outputs #:allow-other-keys)
3156 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
3157 (install-file "FastTree" bin)
3158 (install-file "FastTreeMP" bin)
3159 #t))))))
3160 (home-page "http://www.microbesonline.org/fasttree")
3161 (synopsis "Infers approximately-maximum-likelihood phylogenetic trees")
3162 (description
3163 "FastTree can handle alignments with up to a million of sequences in a
3164 reasonable amount of time and memory. For large alignments, FastTree is
3165 100-1,000 times faster than PhyML 3.0 or RAxML 7.")
3166 (license license:gpl2+)))
3167
3168 (define-public fastx-toolkit
3169 (package
3170 (name "fastx-toolkit")
3171 (version "0.0.14")
3172 (source (origin
3173 (method url-fetch)
3174 (uri
3175 (string-append
3176 "https://github.com/agordon/fastx_toolkit/releases/download/"
3177 version "/fastx_toolkit-" version ".tar.bz2"))
3178 (sha256
3179 (base32
3180 "01jqzw386873sr0pjp1wr4rn8fsga2vxs1qfmicvx1pjr72007wy"))))
3181 (build-system gnu-build-system)
3182 (inputs
3183 `(("libgtextutils" ,libgtextutils)))
3184 (native-inputs
3185 `(("gcc" ,gcc-6) ;; doesn't build with later versions
3186 ("pkg-config" ,pkg-config)))
3187 (home-page "http://hannonlab.cshl.edu/fastx_toolkit/")
3188 (synopsis "Tools for FASTA/FASTQ file preprocessing")
3189 (description
3190 "The FASTX-Toolkit is a collection of command line tools for Short-Reads
3191 FASTA/FASTQ files preprocessing.
3192
3193 Next-Generation sequencing machines usually produce FASTA or FASTQ files,
3194 containing multiple short-reads sequences. The main processing of such
3195 FASTA/FASTQ files is mapping the sequences to reference genomes. However, it
3196 is sometimes more productive to preprocess the files before mapping the
3197 sequences to the genome---manipulating the sequences to produce better mapping
3198 results. The FASTX-Toolkit tools perform some of these preprocessing tasks.")
3199 (license license:agpl3+)))
3200
3201 (define-public flexbar
3202 (package
3203 (name "flexbar")
3204 (version "3.4.0")
3205 (source (origin
3206 (method git-fetch)
3207 (uri (git-reference
3208 (url "https://github.com/seqan/flexbar")
3209 (commit (string-append "v" version))))
3210 (file-name (git-file-name name version))
3211 (sha256
3212 (base32
3213 "1pq9sxvdnldl14libk234m72dqhwgzs3acgl943wchwdqlcsi5r2"))))
3214 (build-system cmake-build-system)
3215 (arguments
3216 `(#:phases
3217 (modify-phases %standard-phases
3218 (add-after 'unpack 'do-not-tune-to-CPU
3219 (lambda _
3220 (substitute* "src/CMakeLists.txt"
3221 ((" -march=native") ""))
3222 #t))
3223 (replace 'check
3224 (lambda* (#:key outputs #:allow-other-keys)
3225 (setenv "PATH" (string-append (getcwd) ":" (getenv "PATH")))
3226 (with-directory-excursion "../source/test"
3227 (invoke "bash" "flexbar_test.sh"))
3228 #t))
3229 (replace 'install
3230 (lambda* (#:key outputs #:allow-other-keys)
3231 (let* ((out (string-append (assoc-ref outputs "out")))
3232 (bin (string-append out "/bin/")))
3233 (install-file "flexbar" bin))
3234 #t)))))
3235 (inputs
3236 `(("tbb" ,tbb)
3237 ("zlib" ,zlib)))
3238 (native-inputs
3239 `(("pkg-config" ,pkg-config)
3240 ("seqan" ,seqan)))
3241 (home-page "https://github.com/seqan/flexbar")
3242 (synopsis "Barcode and adapter removal tool for sequencing platforms")
3243 (description
3244 "Flexbar preprocesses high-throughput nucleotide sequencing data
3245 efficiently. It demultiplexes barcoded runs and removes adapter sequences.
3246 Moreover, trimming and filtering features are provided. Flexbar increases
3247 read mapping rates and improves genome and transcriptome assemblies. It
3248 supports next-generation sequencing data in fasta/q and csfasta/q format from
3249 Illumina, Roche 454, and the SOLiD platform.")
3250 (license license:bsd-3)))
3251
3252 (define-public fraggenescan
3253 (package
3254 (name "fraggenescan")
3255 (version "1.30")
3256 (source
3257 (origin
3258 (method url-fetch)
3259 (uri
3260 (string-append "mirror://sourceforge/fraggenescan/"
3261 "FragGeneScan" version ".tar.gz"))
3262 (sha256
3263 (base32 "158dcnwczgcyhwm4qlx19sanrwgdpzf6bn2y57mbpx55lkgz1mzj"))))
3264 (build-system gnu-build-system)
3265 (arguments
3266 `(#:phases
3267 (modify-phases %standard-phases
3268 (delete 'configure)
3269 (add-before 'build 'patch-paths
3270 (lambda* (#:key outputs #:allow-other-keys)
3271 (let* ((out (string-append (assoc-ref outputs "out")))
3272 (share (string-append out "/share/fraggenescan/")))
3273 (substitute* "run_FragGeneScan.pl"
3274 (("system\\(\"rm")
3275 (string-append "system(\"" (which "rm")))
3276 (("system\\(\"mv")
3277 (string-append "system(\"" (which "mv")))
3278 (("\\\"awk") (string-append "\"" (which "awk")))
3279 ;; This script and other programs expect the training files
3280 ;; to be in the non-standard location bin/train/XXX. Change
3281 ;; this to be share/fraggenescan/train/XXX instead.
3282 (("^\\$train.file = \\$dir.*")
3283 (string-append "$train_file = \""
3284 share
3285 "train/\".$FGS_train_file;")))
3286 (substitute* "run_hmm.c"
3287 (("^ strcat\\(train_dir, \\\"train/\\\"\\);")
3288 (string-append " strcpy(train_dir, \"" share "/train/\");"))))
3289 #t))
3290 (replace 'build
3291 (lambda _
3292 (invoke "make" "clean")
3293 (invoke "make" "fgs")
3294 #t))
3295 (replace 'install
3296 (lambda* (#:key outputs #:allow-other-keys)
3297 (let* ((out (string-append (assoc-ref outputs "out")))
3298 (bin (string-append out "/bin/"))
3299 (share (string-append out "/share/fraggenescan/train")))
3300 (install-file "run_FragGeneScan.pl" bin)
3301 (install-file "FragGeneScan" bin)
3302 (copy-recursively "train" share))
3303 #t))
3304 (delete 'check)
3305 (add-after 'install 'post-install-check
3306 ;; In lieu of 'make check', run one of the examples and check the
3307 ;; output files gets created.
3308 (lambda* (#:key outputs #:allow-other-keys)
3309 (let* ((out (string-append (assoc-ref outputs "out")))
3310 (bin (string-append out "/bin/"))
3311 (frag (string-append bin "run_FragGeneScan.pl")))
3312 ;; Test complete genome.
3313 (invoke frag
3314 "-genome=./example/NC_000913.fna"
3315 "-out=./test2"
3316 "-complete=1"
3317 "-train=complete")
3318 (unless (and (file-exists? "test2.faa")
3319 (file-exists? "test2.ffn")
3320 (file-exists? "test2.gff")
3321 (file-exists? "test2.out"))
3322 (error "Expected files do not exist."))
3323 ;; Test incomplete sequences.
3324 (invoke frag
3325 "-genome=./example/NC_000913-fgs.ffn"
3326 "-out=out"
3327 "-complete=0"
3328 "-train=454_30")
3329 #t))))))
3330 (inputs
3331 `(("perl" ,perl)
3332 ("python" ,python-2))) ;not compatible with python 3.
3333 (home-page "https://sourceforge.net/projects/fraggenescan/")
3334 (synopsis "Finds potentially fragmented genes in short reads")
3335 (description
3336 "FragGeneScan is a program for predicting bacterial and archaeal genes in
3337 short and error-prone DNA sequencing reads. It can also be applied to predict
3338 genes in incomplete assemblies or complete genomes.")
3339 ;; GPL3+ according to private correspondense with the authors.
3340 (license license:gpl3+)))
3341
3342 (define-public fxtract
3343 (let ((util-commit "776ca85a18a47492af3794745efcb4a905113115"))
3344 (package
3345 (name "fxtract")
3346 (version "2.3")
3347 (source
3348 (origin
3349 (method git-fetch)
3350 (uri (git-reference
3351 (url "https://github.com/ctSkennerton/fxtract")
3352 (commit version)))
3353 (file-name (git-file-name name version))
3354 (sha256
3355 (base32
3356 "0hab3gpwf4w9s87qlbswq6ws1qqybh4dcqk79q1ahyldzai5fgp5"))))
3357 (build-system gnu-build-system)
3358 (arguments
3359 `(#:make-flags (list
3360 (string-append "PREFIX=" (assoc-ref %outputs "out"))
3361 "CC=gcc")
3362 #:test-target "fxtract_test"
3363 #:phases
3364 (modify-phases %standard-phases
3365 (delete 'configure)
3366 (add-before 'build 'copy-util
3367 (lambda* (#:key inputs #:allow-other-keys)
3368 (rmdir "util")
3369 (copy-recursively (assoc-ref inputs "ctskennerton-util") "util")
3370 #t))
3371 ;; Do not use make install as this requires additional dependencies.
3372 (replace 'install
3373 (lambda* (#:key outputs #:allow-other-keys)
3374 (let* ((out (assoc-ref outputs "out"))
3375 (bin (string-append out"/bin")))
3376 (install-file "fxtract" bin)
3377 #t))))))
3378 (inputs
3379 `(("pcre" ,pcre)
3380 ("zlib" ,zlib)))
3381 (native-inputs
3382 ;; ctskennerton-util is licensed under GPL2.
3383 `(("ctskennerton-util"
3384 ,(origin
3385 (method git-fetch)
3386 (uri (git-reference
3387 (url "https://github.com/ctSkennerton/util")
3388 (commit util-commit)))
3389 (file-name (string-append
3390 "ctstennerton-util-" util-commit "-checkout"))
3391 (sha256
3392 (base32
3393 "0cls1hd4vgj3f36fpzzg4xc77d6f3hpc60cbpfmn2gdr7ykzzad7"))))))
3394 (home-page "https://github.com/ctSkennerton/fxtract")
3395 (synopsis "Extract sequences from FASTA and FASTQ files")
3396 (description
3397 "Fxtract extracts sequences from a protein or nucleotide fastx (FASTA
3398 or FASTQ) file given a subsequence. It uses a simple substring search for
3399 basic tasks but can change to using POSIX regular expressions, PCRE, hash
3400 lookups or multi-pattern searching as required. By default fxtract looks in
3401 the sequence of each record but can also be told to look in the header,
3402 comment or quality sections.")
3403 ;; 'util' requires SSE instructions.
3404 (supported-systems '("x86_64-linux"))
3405 (license license:expat))))
3406
3407 (define-public gemma
3408 (package
3409 (name "gemma")
3410 (version "0.98")
3411 (source (origin
3412 (method git-fetch)
3413 (uri (git-reference
3414 (url "https://github.com/xiangzhou/GEMMA")
3415 (commit (string-append "v" version))))
3416 (file-name (git-file-name name version))
3417 (sha256
3418 (base32
3419 "1s3ncnbn45r2hh1cvrqky1kbqq6546biypr4f5mkw1kqlrgyh0yg"))))
3420 (inputs
3421 `(("eigen" ,eigen)
3422 ("gfortran" ,gfortran "lib")
3423 ("gsl" ,gsl)
3424 ("lapack" ,lapack)
3425 ("openblas" ,openblas)
3426 ("zlib" ,zlib)))
3427 (build-system gnu-build-system)
3428 (arguments
3429 `(#:make-flags
3430 '(,@(match (%current-system)
3431 ("x86_64-linux"
3432 '("FORCE_DYNAMIC=1"))
3433 ("i686-linux"
3434 '("FORCE_DYNAMIC=1" "FORCE_32BIT=1"))
3435 (_
3436 '("FORCE_DYNAMIC=1" "NO_INTEL_COMPAT=1"))))
3437 #:phases
3438 (modify-phases %standard-phases
3439 (delete 'configure)
3440 (add-after 'unpack 'find-eigen
3441 (lambda* (#:key inputs #:allow-other-keys)
3442 ;; Ensure that Eigen headers can be found
3443 (setenv "CPLUS_INCLUDE_PATH"
3444 (string-append (assoc-ref inputs "eigen")
3445 "/include/eigen3"))
3446 #t))
3447 (add-before 'build 'bin-mkdir
3448 (lambda _
3449 (mkdir-p "bin")
3450 #t))
3451 (replace 'install
3452 (lambda* (#:key outputs #:allow-other-keys)
3453 (let ((out (assoc-ref outputs "out")))
3454 (install-file "bin/gemma"
3455 (string-append
3456 out "/bin")))
3457 #t)))
3458 #:tests? #f)) ; no tests included yet
3459 (home-page "https://github.com/xiangzhou/GEMMA")
3460 (synopsis "Tool for genome-wide efficient mixed model association")
3461 (description
3462 "Genome-wide Efficient Mixed Model Association (GEMMA) provides a
3463 standard linear mixed model resolver with application in genome-wide
3464 association studies (GWAS).")
3465 (license license:gpl3)))
3466
3467 (define-public grit
3468 (package
3469 (name "grit")
3470 (version "2.0.5")
3471 (source (origin
3472 (method git-fetch)
3473 (uri (git-reference
3474 (url "https://github.com/nboley/grit")
3475 (commit version)))
3476 (file-name (git-file-name name version))
3477 (sha256
3478 (base32
3479 "1l5v8vfvfbrpmgnrvbrbv40d0arhxcnmxgv2f1mlcqfa3q6bkqm9"))))
3480 (build-system python-build-system)
3481 (arguments
3482 `(#:python ,python-2
3483 #:phases
3484 (modify-phases %standard-phases
3485 (add-after 'unpack 'generate-from-cython-sources
3486 (lambda* (#:key inputs outputs #:allow-other-keys)
3487 ;; Delete these C files to force fresh generation from pyx sources.
3488 (delete-file "grit/sparsify_support_fns.c")
3489 (delete-file "grit/call_peaks_support_fns.c")
3490 (substitute* "setup.py"
3491 (("Cython.Setup") "Cython.Build"))
3492 #t)))))
3493 (inputs
3494 `(("python-scipy" ,python2-scipy)
3495 ("python-numpy" ,python2-numpy)
3496 ("python-pysam" ,python2-pysam)
3497 ("python-networkx" ,python2-networkx)))
3498 (native-inputs
3499 `(("python-cython" ,python2-cython)))
3500 ;; The canonical <http://grit-bio.org> home page times out as of 2020-01-21.
3501 (home-page "https://github.com/nboley/grit")
3502 (synopsis "Tool for integrative analysis of RNA-seq type assays")
3503 (description
3504 "GRIT is designed to use RNA-seq, TES, and TSS data to build and quantify
3505 full length transcript models. When none of these data sources are available,
3506 GRIT can be run by providing a candidate set of TES or TSS sites. In
3507 addition, GRIT can merge in reference junctions and gene boundaries. GRIT can
3508 also be run in quantification mode, where it uses a provided GTF file and just
3509 estimates transcript expression.")
3510 (license license:gpl3+)))
3511
3512 (define-public hisat
3513 (package
3514 (name "hisat")
3515 (version "0.1.4")
3516 (source (origin
3517 (method url-fetch)
3518 (uri (string-append
3519 "http://ccb.jhu.edu/software/hisat/downloads/hisat-"
3520 version "-beta-source.zip"))
3521 (sha256
3522 (base32
3523 "1k381ydranqxp09yf2y7w1d0chz5d59vb6jchi89hbb0prq19lk5"))))
3524 (build-system gnu-build-system)
3525 (arguments
3526 `(#:tests? #f ;no check target
3527 #:make-flags '("allall"
3528 ;; Disable unsupported `popcnt' instructions on
3529 ;; architectures other than x86_64
3530 ,@(if (string-prefix? "x86_64"
3531 (or (%current-target-system)
3532 (%current-system)))
3533 '()
3534 '("POPCNT_CAPABILITY=0")))
3535 #:phases
3536 (modify-phases %standard-phases
3537 (add-after 'unpack 'patch-sources
3538 (lambda _
3539 ;; XXX Cannot use snippet because zip files are not supported
3540 (substitute* "Makefile"
3541 (("^CC = .*$") "CC = gcc")
3542 (("^CPP = .*$") "CPP = g++")
3543 ;; replace BUILD_HOST and BUILD_TIME for deterministic build
3544 (("-DBUILD_HOST=.*") "-DBUILD_HOST=\"\\\"guix\\\"\"")
3545 (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))
3546 (substitute* '("hisat-build" "hisat-inspect")
3547 (("/usr/bin/env") (which "env")))
3548 #t))
3549 (replace 'install
3550 (lambda* (#:key outputs #:allow-other-keys)
3551 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
3552 (for-each (lambda (file)
3553 (install-file file bin))
3554 (find-files
3555 "."
3556 "hisat(-(build|align|inspect)(-(s|l)(-debug)*)*)*$")))
3557 #t))
3558 (delete 'configure))))
3559 (native-inputs
3560 `(("unzip" ,unzip)))
3561 (inputs
3562 `(("perl" ,perl)
3563 ("python" ,python)
3564 ("zlib" ,zlib)))
3565 ;; Non-portable SSE instructions are used so building fails on platforms
3566 ;; other than x86_64.
3567 (supported-systems '("x86_64-linux"))
3568 (home-page "https://ccb.jhu.edu/software/hisat/index.shtml")
3569 (synopsis "Hierarchical indexing for spliced alignment of transcripts")
3570 (description
3571 "HISAT is a fast and sensitive spliced alignment program for mapping
3572 RNA-seq reads. In addition to one global FM index that represents a whole
3573 genome, HISAT uses a large set of small FM indexes that collectively cover the
3574 whole genome. These small indexes (called local indexes) combined with
3575 several alignment strategies enable effective alignment of RNA-seq reads, in
3576 particular, reads spanning multiple exons.")
3577 (license license:gpl3+)))
3578
3579 (define-public hisat2
3580 (package
3581 (name "hisat2")
3582 (version "2.0.5")
3583 (source
3584 (origin
3585 (method url-fetch)
3586 (uri (string-append "ftp://ftp.ccb.jhu.edu/pub/infphilo/hisat2"
3587 "/downloads/hisat2-" version "-source.zip"))
3588 (sha256
3589 (base32
3590 "0lywnr8kijwsc2aw10dwxic0n0yvip6fl3rjlvc8zzwahamy4x7g"))))
3591 (build-system gnu-build-system)
3592 (arguments
3593 `(#:tests? #f ; no check target
3594 #:make-flags (list "CC=gcc" "CXX=g++" "allall")
3595 #:modules ((guix build gnu-build-system)
3596 (guix build utils)
3597 (srfi srfi-26))
3598 #:phases
3599 (modify-phases %standard-phases
3600 (add-after 'unpack 'make-deterministic
3601 (lambda _
3602 (substitute* "Makefile"
3603 (("`date`") "0"))
3604 #t))
3605 (delete 'configure)
3606 (replace 'install
3607 (lambda* (#:key outputs #:allow-other-keys)
3608 (let* ((out (assoc-ref outputs "out"))
3609 (bin (string-append out "/bin/"))
3610 (doc (string-append out "/share/doc/hisat2/")))
3611 (for-each
3612 (cut install-file <> bin)
3613 (find-files "."
3614 "hisat2(-(build|align|inspect)(-(s|l)(-debug)*)*)*$"))
3615 (mkdir-p doc)
3616 (install-file "doc/manual.inc.html" doc))
3617 #t)))))
3618 (native-inputs
3619 `(("unzip" ,unzip) ; needed for archive from ftp
3620 ("perl" ,perl)
3621 ("pandoc" ,pandoc))) ; for documentation
3622 (home-page "https://ccb.jhu.edu/software/hisat2/index.shtml")
3623 (synopsis "Graph-based alignment of genomic sequencing reads")
3624 (description "HISAT2 is a fast and sensitive alignment program for mapping
3625 next-generation sequencing reads (both DNA and RNA) to a population of human
3626 genomes (as well as to a single reference genome). In addition to using one
3627 global @dfn{graph FM} (GFM) index that represents a population of human
3628 genomes, HISAT2 uses a large set of small GFM indexes that collectively cover
3629 the whole genome. These small indexes, combined with several alignment
3630 strategies, enable rapid and accurate alignment of sequencing reads. This new
3631 indexing scheme is called a @dfn{Hierarchical Graph FM index} (HGFM).")
3632 ;; HISAT2 contains files from Bowtie2, which is released under
3633 ;; GPLv2 or later. The HISAT2 source files are released under
3634 ;; GPLv3 or later.
3635 (license license:gpl3+)))
3636
3637 (define-public hmmer
3638 (package
3639 (name "hmmer")
3640 (version "3.2.1")
3641 (source
3642 (origin
3643 (method url-fetch)
3644 (uri (string-append
3645 "http://eddylab.org/software/hmmer/hmmer-" version ".tar.gz"))
3646 (sha256
3647 (base32
3648 "171bivy6xhgjsz5nv53n81pc3frnwz29ylblawk2bv46szwjjqd5"))))
3649 (build-system gnu-build-system)
3650 (native-inputs `(("perl" ,perl)))
3651 (home-page "http://hmmer.org/")
3652 (synopsis "Biosequence analysis using profile hidden Markov models")
3653 (description
3654 "HMMER is used for searching sequence databases for homologs of protein
3655 sequences, and for making protein sequence alignments. It implements methods
3656 using probabilistic models called profile hidden Markov models (profile
3657 HMMs).")
3658 ;; hmmer uses non-portable SSE intrinsics so building fails on other
3659 ;; platforms.
3660 (supported-systems '("x86_64-linux" "i686-linux"))
3661 (license license:bsd-3)))
3662
3663 (define-public htseq
3664 (package
3665 (name "htseq")
3666 (version "0.9.1")
3667 (source (origin
3668 (method url-fetch)
3669 (uri (pypi-uri "HTSeq" version))
3670 (sha256
3671 (base32
3672 "11flgb1381xdhk43bzbfm3vhnszkpqg6jk76rpa5xd1zbrvvlnxg"))))
3673 (build-system python-build-system)
3674 (native-inputs
3675 `(("python-cython" ,python-cython)))
3676 ;; Numpy needs to be propagated when htseq is used as a Python library.
3677 (propagated-inputs
3678 `(("python-numpy" ,python-numpy)))
3679 (inputs
3680 `(("python-pysam" ,python-pysam)
3681 ("python-matplotlib" ,python-matplotlib)))
3682 (home-page "https://htseq.readthedocs.io/")
3683 (synopsis "Analysing high-throughput sequencing data with Python")
3684 (description
3685 "HTSeq is a Python package that provides infrastructure to process data
3686 from high-throughput sequencing assays.")
3687 (license license:gpl3+)))
3688
3689 (define-public python2-htseq
3690 (package-with-python2 htseq))
3691
3692 (define-public java-htsjdk
3693 (package
3694 (name "java-htsjdk")
3695 (version "2.3.0") ; last version without build dependency on gradle
3696 (source (origin
3697 (method git-fetch)
3698 (uri (git-reference
3699 (url "https://github.com/samtools/htsjdk")
3700 (commit version)))
3701 (file-name (git-file-name name version))
3702 (sha256
3703 (base32
3704 "1b178ixcabanm834ydjl3jiakpyxdmki32hqfv2abrzn3rcwa28i"))
3705 (modules '((guix build utils)))
3706 (snippet
3707 ;; Delete pre-built binaries
3708 '(begin
3709 (delete-file-recursively "lib")
3710 (mkdir-p "lib")
3711 #t))))
3712 (build-system ant-build-system)
3713 (arguments
3714 `(#:tests? #f ; test require Internet access
3715 #:jdk ,icedtea-8
3716 #:make-flags
3717 (list (string-append "-Ddist=" (assoc-ref %outputs "out")
3718 "/share/java/htsjdk/"))
3719 #:build-target "all"
3720 #:phases
3721 (modify-phases %standard-phases
3722 ;; The build phase also installs the jars
3723 (delete 'install))))
3724 (inputs
3725 `(("java-ngs" ,java-ngs)
3726 ("java-snappy-1" ,java-snappy-1)
3727 ("java-commons-compress" ,java-commons-compress)
3728 ("java-commons-logging-minimal" ,java-commons-logging-minimal)
3729 ("java-commons-jexl-2" ,java-commons-jexl-2)
3730 ("java-xz" ,java-xz)))
3731 (native-inputs
3732 `(("java-testng" ,java-testng)))
3733 (home-page "http://samtools.github.io/htsjdk/")
3734 (synopsis "Java API for high-throughput sequencing data (HTS) formats")
3735 (description
3736 "HTSJDK is an implementation of a unified Java library for accessing
3737 common file formats, such as SAM and VCF, used for high-throughput
3738 sequencing (HTS) data. There are also an number of useful utilities for
3739 manipulating HTS data.")
3740 (license license:expat)))
3741
3742 (define-public java-htsjdk-latest
3743 (package
3744 (name "java-htsjdk")
3745 (version "2.14.3")
3746 (source (origin
3747 (method git-fetch)
3748 (uri (git-reference
3749 (url "https://github.com/samtools/htsjdk")
3750 (commit version)))
3751 (file-name (string-append name "-" version "-checkout"))
3752 (sha256
3753 (base32
3754 "1lmya1fdjy03mz6zmdmd86j9v9vfhqb3952mqq075navx1i6g4bc"))))
3755 (build-system ant-build-system)
3756 (arguments
3757 `(#:tests? #f ; test require Scala
3758 #:jdk ,icedtea-8
3759 #:jar-name "htsjdk.jar"
3760 #:phases
3761 (modify-phases %standard-phases
3762 (add-after 'unpack 'remove-useless-build.xml
3763 (lambda _ (delete-file "build.xml") #t))
3764 ;; The tests require the scalatest package.
3765 (add-after 'unpack 'remove-tests
3766 (lambda _ (delete-file-recursively "src/test") #t)))))
3767 (inputs
3768 `(("java-ngs" ,java-ngs)
3769 ("java-snappy-1" ,java-snappy-1)
3770 ("java-commons-compress" ,java-commons-compress)
3771 ("java-commons-logging-minimal" ,java-commons-logging-minimal)
3772 ("java-commons-jexl-2" ,java-commons-jexl-2)
3773 ("java-xz" ,java-xz)))
3774 (native-inputs
3775 `(("java-junit" ,java-junit)))
3776 (home-page "http://samtools.github.io/htsjdk/")
3777 (synopsis "Java API for high-throughput sequencing data (HTS) formats")
3778 (description
3779 "HTSJDK is an implementation of a unified Java library for accessing
3780 common file formats, such as SAM and VCF, used for high-throughput
3781 sequencing (HTS) data. There are also an number of useful utilities for
3782 manipulating HTS data.")
3783 (license license:expat)))
3784
3785 ;; This is needed for picard 2.10.3
3786 (define-public java-htsjdk-2.10.1
3787 (package (inherit java-htsjdk-latest)
3788 (name "java-htsjdk")
3789 (version "2.10.1")
3790 (source (origin
3791 (method git-fetch)
3792 (uri (git-reference
3793 (url "https://github.com/samtools/htsjdk")
3794 (commit version)))
3795 (file-name (string-append name "-" version "-checkout"))
3796 (sha256
3797 (base32
3798 "1kxh7slm2pm3x9p6jxa1wqsq9a31dhiiflhxnxqcisan4k3rwia2"))))
3799 (build-system ant-build-system)
3800 (arguments
3801 `(#:tests? #f ; tests require Scala
3802 #:jdk ,icedtea-8
3803 #:jar-name "htsjdk.jar"
3804 #:phases
3805 (modify-phases %standard-phases
3806 (add-after 'unpack 'remove-useless-build.xml
3807 (lambda _ (delete-file "build.xml") #t))
3808 ;; The tests require the scalatest package.
3809 (add-after 'unpack 'remove-tests
3810 (lambda _ (delete-file-recursively "src/test") #t)))))))
3811
3812 ;; This version matches java-htsjdk 2.3.0. Later versions also require a more
3813 ;; recent version of java-htsjdk, which depends on gradle.
3814 (define-public java-picard
3815 (package
3816 (name "java-picard")
3817 (version "2.3.0")
3818 (source (origin
3819 (method git-fetch)
3820 (uri (git-reference
3821 (url "https://github.com/broadinstitute/picard")
3822 (commit version)))
3823 (file-name (string-append "java-picard-" version "-checkout"))
3824 (sha256
3825 (base32
3826 "1ll7mf4r3by92w2nhlmpa591xd1f46xlkwh59mq6fvbb5pdwzvx6"))
3827 (modules '((guix build utils)))
3828 (snippet
3829 '(begin
3830 ;; Delete pre-built binaries.
3831 (delete-file-recursively "lib")
3832 (mkdir-p "lib")
3833 (substitute* "build.xml"
3834 ;; Remove build-time dependency on git.
3835 (("failifexecutionfails=\"true\"")
3836 "failifexecutionfails=\"false\"")
3837 ;; Use our htsjdk.
3838 (("depends=\"compile-htsjdk, ")
3839 "depends=\"")
3840 (("depends=\"compile-htsjdk-tests, ")
3841 "depends=\"")
3842 ;; Build picard-lib.jar before building picard.jar
3843 (("name=\"picard-jar\" depends=\"" line)
3844 (string-append line "picard-lib-jar, ")))
3845 #t))))
3846 (build-system ant-build-system)
3847 (arguments
3848 `(#:build-target "picard-jar"
3849 #:test-target "test"
3850 ;; Tests require jacoco:coverage.
3851 #:tests? #f
3852 #:make-flags
3853 (list (string-append "-Dhtsjdk_lib_dir="
3854 (assoc-ref %build-inputs "java-htsjdk")
3855 "/share/java/htsjdk/")
3856 "-Dhtsjdk-classes=dist/tmp"
3857 (string-append "-Dhtsjdk-version="
3858 ,(package-version java-htsjdk)))
3859 #:jdk ,icedtea-8
3860 #:phases
3861 (modify-phases %standard-phases
3862 ;; FIXME: this phase fails with "duplicate entry: htsjdk/samtools/AbstractBAMFileIndex$1.class"
3863 (delete 'generate-jar-indices)
3864 (add-after 'unpack 'use-our-htsjdk
3865 (lambda* (#:key inputs #:allow-other-keys)
3866 (substitute* "build.xml"
3867 (("\\$\\{htsjdk\\}/lib")
3868 (string-append (assoc-ref inputs "java-htsjdk")
3869 "/share/java/htsjdk/")))
3870 #t))
3871 (add-after 'unpack 'make-test-target-independent
3872 (lambda* (#:key inputs #:allow-other-keys)
3873 (substitute* "build.xml"
3874 (("name=\"test\" depends=\"compile, ")
3875 "name=\"test\" depends=\""))
3876 #t))
3877 (replace 'install (install-jars "dist")))))
3878 (inputs
3879 `(("java-htsjdk" ,java-htsjdk)
3880 ("java-guava" ,java-guava)))
3881 (native-inputs
3882 `(("java-testng" ,java-testng)))
3883 (home-page "http://broadinstitute.github.io/picard/")
3884 (synopsis "Tools for manipulating high-throughput sequencing data and formats")
3885 (description "Picard is a set of Java command line tools for manipulating
3886 high-throughput sequencing (HTS) data and formats. Picard is implemented
3887 using the HTSJDK Java library to support accessing file formats that are
3888 commonly used for high-throughput sequencing data such as SAM, BAM, CRAM and
3889 VCF.")
3890 (license license:expat)))
3891
3892 ;; This is needed for dropseq-tools
3893 (define-public java-picard-2.10.3
3894 (package
3895 (name "java-picard")
3896 (version "2.10.3")
3897 (source (origin
3898 (method git-fetch)
3899 (uri (git-reference
3900 (url "https://github.com/broadinstitute/picard")
3901 (commit version)))
3902 (file-name (string-append "java-picard-" version "-checkout"))
3903 (sha256
3904 (base32
3905 "1ajlx31l6i1k3y2rhnmgq07sz99g2czqfqgkr9mihmdjp3gwjhvi"))))
3906 (build-system ant-build-system)
3907 (arguments
3908 `(#:jar-name "picard.jar"
3909 ;; Tests require jacoco:coverage.
3910 #:tests? #f
3911 #:jdk ,icedtea-8
3912 #:main-class "picard.cmdline.PicardCommandLine"
3913 #:modules ((guix build ant-build-system)
3914 (guix build utils)
3915 (guix build java-utils)
3916 (sxml simple)
3917 (sxml transform)
3918 (sxml xpath))
3919 #:phases
3920 (modify-phases %standard-phases
3921 ;; FIXME: this phase fails with "duplicate entry: htsjdk/samtools/AbstractBAMFileIndex$1.class"
3922 (delete 'generate-jar-indices)
3923 (add-after 'unpack 'remove-useless-build.xml
3924 (lambda _ (delete-file "build.xml") #t))
3925 ;; This is necessary to ensure that htsjdk is found when using
3926 ;; picard.jar as an executable.
3927 (add-before 'build 'edit-classpath-in-manifest
3928 (lambda* (#:key inputs #:allow-other-keys)
3929 (chmod "build.xml" #o664)
3930 (call-with-output-file "build.xml.new"
3931 (lambda (port)
3932 (sxml->xml
3933 (pre-post-order
3934 (with-input-from-file "build.xml"
3935 (lambda _ (xml->sxml #:trim-whitespace? #t)))
3936 `((target . ,(lambda (tag . kids)
3937 (let ((name ((sxpath '(name *text*))
3938 (car kids)))
3939 ;; FIXME: We're breaking the line
3940 ;; early with a dummy path to
3941 ;; ensure that the store reference
3942 ;; isn't broken apart and can still
3943 ;; be found by the reference
3944 ;; scanner.
3945 (msg (format #f
3946 "\
3947 Class-Path: /~a \
3948 ~a/share/java/htsjdk.jar${line.separator}${line.separator}"
3949 ;; maximum line length is 70
3950 (string-tabulate (const #\b) 57)
3951 (assoc-ref inputs "java-htsjdk"))))
3952 (if (member "manifest" name)
3953 `(,tag ,@kids
3954 (replaceregexp
3955 (@ (file "${manifest.file}")
3956 (match "\\r\\n\\r\\n")
3957 (replace "${line.separator}")))
3958 (echo
3959 (@ (message ,msg)
3960 (file "${manifest.file}")
3961 (append "true"))))
3962 `(,tag ,@kids)))))
3963 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
3964 (*text* . ,(lambda (_ txt) txt))))
3965 port)))
3966 (rename-file "build.xml.new" "build.xml")
3967 #t)))))
3968 (propagated-inputs
3969 `(("java-htsjdk" ,java-htsjdk-2.10.1)))
3970 (native-inputs
3971 `(("java-testng" ,java-testng)
3972 ("java-guava" ,java-guava)))
3973 (home-page "http://broadinstitute.github.io/picard/")
3974 (synopsis "Tools for manipulating high-throughput sequencing data and formats")
3975 (description "Picard is a set of Java command line tools for manipulating
3976 high-throughput sequencing (HTS) data and formats. Picard is implemented
3977 using the HTSJDK Java library to support accessing file formats that are
3978 commonly used for high-throughput sequencing data such as SAM, BAM, CRAM and
3979 VCF.")
3980 (license license:expat)))
3981
3982 ;; This is the last version of Picard to provide net.sf.samtools
3983 (define-public java-picard-1.113
3984 (package (inherit java-picard)
3985 (name "java-picard")
3986 (version "1.113")
3987 (source (origin
3988 (method git-fetch)
3989 (uri (git-reference
3990 (url "https://github.com/broadinstitute/picard")
3991 (commit version)))
3992 (file-name (string-append "java-picard-" version "-checkout"))
3993 (sha256
3994 (base32
3995 "0lkpvin2fz3hhly4l02kk56fqy8lmlgyzr9kmvljk6ry6l1hw973"))
3996 (modules '((guix build utils)))
3997 (snippet
3998 '(begin
3999 ;; Delete pre-built binaries.
4000 (delete-file-recursively "lib")
4001 (mkdir-p "lib")
4002 #t))))
4003 (build-system ant-build-system)
4004 (arguments
4005 `(#:build-target "picard-jar"
4006 #:test-target "test"
4007 ;; FIXME: the class path at test time is wrong.
4008 ;; [testng] Error: A JNI error has occurred, please check your installation and try again
4009 ;; [testng] Exception in thread "main" java.lang.NoClassDefFoundError: com/beust/jcommander/ParameterException
4010 #:tests? #f
4011 #:jdk ,icedtea-8
4012 ;; This is only used for tests.
4013 #:make-flags
4014 (list "-Dsamjdk.intel_deflater_so_path=lib/jni/libIntelDeflater.so")
4015 #:phases
4016 (modify-phases %standard-phases
4017 ;; FIXME: This phase fails.
4018 (delete 'generate-jar-indices)
4019 ;; Do not use bundled ant bzip2.
4020 (add-after 'unpack 'use-ant-bzip
4021 (lambda* (#:key inputs #:allow-other-keys)
4022 (substitute* "build.xml"
4023 (("\\$\\{lib\\}/apache-ant-1.8.2-bzip2.jar")
4024 (string-append (assoc-ref inputs "ant")
4025 "/lib/ant.jar")))
4026 #t))
4027 (add-after 'unpack 'make-test-target-independent
4028 (lambda* (#:key inputs #:allow-other-keys)
4029 (substitute* "build.xml"
4030 (("name=\"test\" depends=\"compile, ")
4031 "name=\"test\" depends=\"compile-tests, ")
4032 (("name=\"compile\" depends=\"compile-src, compile-tests\"")
4033 "name=\"compile\" depends=\"compile-src\""))
4034 #t))
4035 (add-after 'unpack 'fix-deflater-path
4036 (lambda* (#:key outputs #:allow-other-keys)
4037 (substitute* "src/java/net/sf/samtools/Defaults.java"
4038 (("getStringProperty\\(\"intel_deflater_so_path\", null\\)")
4039 (string-append "getStringProperty(\"intel_deflater_so_path\", \""
4040 (assoc-ref outputs "out")
4041 "/lib/jni/libIntelDeflater.so"
4042 "\")")))
4043 #t))
4044 ;; Build the deflater library, because we've previously deleted the
4045 ;; pre-built one. This can only be built with access to the JDK
4046 ;; sources.
4047 (add-after 'build 'build-jni
4048 (lambda* (#:key inputs #:allow-other-keys)
4049 (mkdir-p "lib/jni")
4050 (mkdir-p "jdk-src")
4051 (invoke "tar" "--strip-components=1" "-C" "jdk-src"
4052 "-xf" (assoc-ref inputs "jdk-src"))
4053 (invoke "javah" "-jni"
4054 "-classpath" "classes"
4055 "-d" "lib/"
4056 "net.sf.samtools.util.zip.IntelDeflater")
4057 (with-directory-excursion "src/c/inteldeflater"
4058 (invoke "gcc" "-I../../../lib" "-I."
4059 (string-append "-I" (assoc-ref inputs "jdk")
4060 "/include/linux")
4061 "-I../../../jdk-src/src/share/native/common/"
4062 "-I../../../jdk-src/src/solaris/native/common/"
4063 "-c" "-O3" "-fPIC" "IntelDeflater.c")
4064 (invoke "gcc" "-shared"
4065 "-o" "../../../lib/jni/libIntelDeflater.so"
4066 "IntelDeflater.o" "-lz" "-lstdc++"))
4067 #t))
4068 ;; We can only build everything else after building the JNI library.
4069 (add-after 'build-jni 'build-rest
4070 (lambda* (#:key make-flags #:allow-other-keys)
4071 (apply invoke `("ant" "all" ,@make-flags))
4072 #t))
4073 (add-before 'build 'set-JAVA6_HOME
4074 (lambda _
4075 (setenv "JAVA6_HOME" (getenv "JAVA_HOME"))
4076 #t))
4077 (replace 'install (install-jars "dist"))
4078 (add-after 'install 'install-jni-lib
4079 (lambda* (#:key outputs #:allow-other-keys)
4080 (let ((jni (string-append (assoc-ref outputs "out")
4081 "/lib/jni")))
4082 (mkdir-p jni)
4083 (install-file "lib/jni/libIntelDeflater.so" jni)
4084 #t))))))
4085 (inputs
4086 `(("java-snappy-1" ,java-snappy-1)
4087 ("java-commons-jexl-2" ,java-commons-jexl-2)
4088 ("java-cofoja" ,java-cofoja)
4089 ("ant" ,ant) ; for bzip2 support at runtime
4090 ("zlib" ,zlib)))
4091 (native-inputs
4092 `(("ant-apache-bcel" ,ant-apache-bcel)
4093 ("ant-junit" ,ant-junit)
4094 ("java-testng" ,java-testng)
4095 ("java-commons-bcel" ,java-commons-bcel)
4096 ("java-jcommander" ,java-jcommander)
4097 ("jdk" ,icedtea-8 "jdk")
4098 ("jdk-src" ,(car (assoc-ref (package-native-inputs icedtea-8) "jdk-drop")))))))
4099
4100 (define-public fastqc
4101 (package
4102 (name "fastqc")
4103 (version "0.11.5")
4104 (source
4105 (origin
4106 (method url-fetch)
4107 (uri (string-append "http://www.bioinformatics.babraham.ac.uk/"
4108 "projects/fastqc/fastqc_v"
4109 version "_source.zip"))
4110 (sha256
4111 (base32
4112 "18rrlkhcrxvvvlapch4dpj6xc6mpayzys8qfppybi8jrpgx5cc5f"))))
4113 (build-system ant-build-system)
4114 (arguments
4115 `(#:tests? #f ; there are no tests
4116 #:build-target "build"
4117 #:phases
4118 (modify-phases %standard-phases
4119 (add-after 'unpack 'fix-dependencies
4120 (lambda* (#:key inputs #:allow-other-keys)
4121 (substitute* "build.xml"
4122 (("jbzip2-0.9.jar")
4123 (string-append (assoc-ref inputs "java-jbzip2")
4124 "/share/java/jbzip2.jar"))
4125 (("sam-1.103.jar")
4126 (string-append (assoc-ref inputs "java-picard-1.113")
4127 "/share/java/sam-1.112.jar"))
4128 (("cisd-jhdf5.jar")
4129 (string-append (assoc-ref inputs "java-cisd-jhdf5")
4130 "/share/java/sis-jhdf5.jar")))
4131 #t))
4132 ;; There is no installation target
4133 (replace 'install
4134 (lambda* (#:key inputs outputs #:allow-other-keys)
4135 (let* ((out (assoc-ref outputs "out"))
4136 (bin (string-append out "/bin"))
4137 (share (string-append out "/share/fastqc/"))
4138 (exe (string-append share "/fastqc")))
4139 (for-each mkdir-p (list bin share))
4140 (copy-recursively "bin" share)
4141 (substitute* exe
4142 (("my \\$java_bin = 'java';")
4143 (string-append "my $java_bin = '"
4144 (assoc-ref inputs "java")
4145 "/bin/java';")))
4146 (chmod exe #o555)
4147 (symlink exe (string-append bin "/fastqc"))
4148 #t))))))
4149 (inputs
4150 `(("java" ,icedtea)
4151 ("perl" ,perl) ; needed for the wrapper script
4152 ("java-cisd-jhdf5" ,java-cisd-jhdf5)
4153 ("java-picard-1.113" ,java-picard-1.113)
4154 ("java-jbzip2" ,java-jbzip2)))
4155 (native-inputs
4156 `(("unzip" ,unzip)))
4157 (home-page "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/")
4158 (synopsis "Quality control tool for high throughput sequence data")
4159 (description
4160 "FastQC aims to provide a simple way to do some quality control
4161 checks on raw sequence data coming from high throughput sequencing
4162 pipelines. It provides a modular set of analyses which you can use to
4163 give a quick impression of whether your data has any problems of which
4164 you should be aware before doing any further analysis.
4165
4166 The main functions of FastQC are:
4167
4168 @itemize
4169 @item Import of data from BAM, SAM or FastQ files (any variant);
4170 @item Providing a quick overview to tell you in which areas there may
4171 be problems;
4172 @item Summary graphs and tables to quickly assess your data;
4173 @item Export of results to an HTML based permanent report;
4174 @item Offline operation to allow automated generation of reports
4175 without running the interactive application.
4176 @end itemize\n")
4177 (license license:gpl3+)))
4178
4179 (define-public fastp
4180 (package
4181 (name "fastp")
4182 (version "0.14.1")
4183 (source
4184 (origin
4185 (method git-fetch)
4186 (uri (git-reference
4187 (url "https://github.com/OpenGene/fastp")
4188 (commit (string-append "v" version))))
4189 (file-name (git-file-name name version))
4190 (sha256
4191 (base32
4192 "1r6ms5zbf5rps4rgp4z73nczadl00b5rqylw8f684isfz27dp0xh"))))
4193 (build-system gnu-build-system)
4194 (arguments
4195 `(#:tests? #f ; there are none
4196 #:make-flags
4197 (list (string-append "BINDIR=" (assoc-ref %outputs "out") "/bin"))
4198 #:phases
4199 (modify-phases %standard-phases
4200 (delete 'configure)
4201 (add-before 'install 'create-target-dir
4202 (lambda* (#:key outputs #:allow-other-keys)
4203 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
4204 #t)))))
4205 (inputs
4206 `(("zlib" ,zlib)))
4207 (home-page "https://github.com/OpenGene/fastp/")
4208 (synopsis "All-in-one FastQ preprocessor")
4209 (description
4210 "Fastp is a tool designed to provide fast all-in-one preprocessing for
4211 FastQ files. This tool has multi-threading support to afford high
4212 performance.")
4213 (license license:expat)))
4214
4215 (define-public htslib
4216 (package
4217 (name "htslib")
4218 (version "1.9")
4219 (source (origin
4220 (method url-fetch)
4221 (uri (string-append
4222 "https://github.com/samtools/htslib/releases/download/"
4223 version "/htslib-" version ".tar.bz2"))
4224 (sha256
4225 (base32
4226 "16ljv43sc3fxmv63w7b2ff8m1s7h89xhazwmbm1bicz8axq8fjz0"))))
4227 (build-system gnu-build-system)
4228 (inputs
4229 `(("curl" ,curl)
4230 ("openssl" ,openssl)))
4231 ;; This is referred to in the pkg-config file as a required library.
4232 (propagated-inputs
4233 `(("zlib" ,zlib)))
4234 (native-inputs
4235 `(("perl" ,perl)))
4236 (home-page "https://www.htslib.org")
4237 (synopsis "C library for reading/writing high-throughput sequencing data")
4238 (description
4239 "HTSlib is a C library for reading/writing high-throughput sequencing
4240 data. It also provides the @command{bgzip}, @command{htsfile}, and
4241 @command{tabix} utilities.")
4242 ;; Files under cram/ are released under the modified BSD license;
4243 ;; the rest is released under the Expat license
4244 (license (list license:expat license:bsd-3))))
4245
4246 ;; This package should be removed once no packages rely upon it.
4247 (define htslib-1.3
4248 (package
4249 (inherit htslib)
4250 (version "1.3.1")
4251 (source (origin
4252 (method url-fetch)
4253 (uri (string-append
4254 "https://github.com/samtools/htslib/releases/download/"
4255 version "/htslib-" version ".tar.bz2"))
4256 (sha256
4257 (base32
4258 "1rja282fwdc25ql6izkhdyh8ppw8x2fs0w0js78zgkmqjlikmma9"))))))
4259
4260 (define-public idr
4261 (package
4262 (name "idr")
4263 (version "2.0.3")
4264 (source (origin
4265 (method git-fetch)
4266 (uri (git-reference
4267 (url "https://github.com/nboley/idr")
4268 (commit version)))
4269 (file-name (git-file-name name version))
4270 (sha256
4271 (base32
4272 "04j876h6z444v2q79drxx283d3k5snd72kj895wbalnl42206x9g"))
4273 ;; Delete generated C code.
4274 (snippet
4275 '(begin (delete-file "idr/inv_cdf.c") #t))))
4276 (build-system python-build-system)
4277 ;; There is only one test ("test_inv_cdf.py") and it tests features that
4278 ;; are no longer part of this package. It also asserts False, which
4279 ;; causes the tests to always fail.
4280 (arguments `(#:tests? #f))
4281 (propagated-inputs
4282 `(("python-scipy" ,python-scipy)
4283 ("python-sympy" ,python-sympy)
4284 ("python-numpy" ,python-numpy)
4285 ("python-matplotlib" ,python-matplotlib)))
4286 (native-inputs
4287 `(("python-cython" ,python-cython)))
4288 (home-page "https://github.com/nboley/idr")
4289 (synopsis "Tool to measure the irreproducible discovery rate (IDR)")
4290 (description
4291 "The IDR (Irreproducible Discovery Rate) framework is a unified approach
4292 to measure the reproducibility of findings identified from replicate
4293 experiments and provide highly stable thresholds based on reproducibility.")
4294 (license license:gpl2+)))
4295
4296 (define-public jellyfish
4297 (package
4298 (name "jellyfish")
4299 (version "2.2.10")
4300 (source (origin
4301 (method url-fetch)
4302 (uri (string-append "https://github.com/gmarcais/Jellyfish/"
4303 "releases/download/v" version
4304 "/jellyfish-" version ".tar.gz"))
4305 (sha256
4306 (base32
4307 "1k4pc3fvv6w1km2yph4m5sd78fbxp21d6xyzgmy0gjihzc6mb249"))))
4308 (build-system gnu-build-system)
4309 (outputs '("out" ;for library
4310 "ruby" ;for Ruby bindings
4311 "python")) ;for Python bindings
4312 (arguments
4313 `(#:configure-flags
4314 (list (string-append "--enable-ruby-binding="
4315 (assoc-ref %outputs "ruby"))
4316 (string-append "--enable-python-binding="
4317 (assoc-ref %outputs "python")))
4318 #:phases
4319 (modify-phases %standard-phases
4320 (add-before 'check 'set-SHELL-variable
4321 (lambda _
4322 ;; generator_manager.hpp either uses /bin/sh or $SHELL
4323 ;; to run tests.
4324 (setenv "SHELL" (which "bash"))
4325 #t)))))
4326 (native-inputs
4327 `(("bc" ,bc)
4328 ("time" ,time)
4329 ("ruby" ,ruby)
4330 ("python" ,python-2)
4331 ("pkg-config" ,pkg-config)))
4332 (inputs
4333 `(("htslib" ,htslib)))
4334 (synopsis "Tool for fast counting of k-mers in DNA")
4335 (description
4336 "Jellyfish is a tool for fast, memory-efficient counting of k-mers in
4337 DNA. A k-mer is a substring of length k, and counting the occurrences of all
4338 such substrings is a central step in many analyses of DNA sequence. Jellyfish
4339 is a command-line program that reads FASTA and multi-FASTA files containing
4340 DNA sequences. It outputs its k-mer counts in a binary format, which can be
4341 translated into a human-readable text format using the @code{jellyfish dump}
4342 command, or queried for specific k-mers with @code{jellyfish query}.")
4343 (home-page "http://www.genome.umd.edu/jellyfish.html")
4344 ;; JELLYFISH seems to be 64-bit only.
4345 (supported-systems '("x86_64-linux" "aarch64-linux" "mips64el-linux"))
4346 ;; The combined work is published under the GPLv3 or later. Individual
4347 ;; files such as lib/jsoncpp.cpp are released under the Expat license.
4348 (license (list license:gpl3+ license:expat))))
4349
4350 (define-public khmer
4351 (package
4352 (name "khmer")
4353 (version "3.0.0a3")
4354 (source
4355 (origin
4356 (method git-fetch)
4357 (uri (git-reference
4358 (url "https://github.com/dib-lab/khmer")
4359 (commit (string-append "v" version))))
4360 (file-name (git-file-name name version))
4361 (sha256
4362 (base32
4363 "01l4jczglkl7yfhgvzx8j0df7k54bk1r8sli9ll16i1mis0d8f37"))
4364 (modules '((guix build utils)))
4365 (snippet
4366 '(begin
4367 ;; Delete bundled libraries. We do not replace the bundled seqan
4368 ;; as it is a modified subset of the old version 1.4.1.
4369 ;;
4370 ;; We do not replace the bundled MurmurHash as the canonical
4371 ;; repository for this code 'SMHasher' is unsuitable for providing
4372 ;; a library. See
4373 ;; https://lists.gnu.org/archive/html/guix-devel/2016-06/msg00977.html
4374 (delete-file-recursively "third-party/zlib")
4375 (delete-file-recursively "third-party/bzip2")
4376 (delete-file-recursively "third-party/seqan")
4377 (substitute* "setup.cfg"
4378 (("# libraries = z,bz2")
4379 "libraries = z,bz2")
4380 (("include:third-party/zlib:third-party/bzip2")
4381 "include:"))
4382 #t))))
4383 (build-system python-build-system)
4384 (arguments
4385 `(#:phases
4386 (modify-phases %standard-phases
4387 (add-after 'unpack 'set-cc
4388 (lambda _ (setenv "CC" "gcc") #t))
4389
4390 (add-before 'reset-gzip-timestamps 'make-files-writable
4391 (lambda* (#:key outputs #:allow-other-keys)
4392 ;; Make sure .gz files are writable so that the
4393 ;; 'reset-gzip-timestamps' phase can do its work.
4394 (let ((out (assoc-ref outputs "out")))
4395 (for-each make-file-writable
4396 (find-files out "\\.gz$"))
4397 #t))))))
4398 (native-inputs
4399 `(("python-cython" ,python-cython)
4400 ("python-pytest" ,python-pytest)
4401 ("python-pytest-runner" ,python-pytest-runner)))
4402 (inputs
4403 `(("zlib" ,zlib)
4404 ("bzip2" ,bzip2)
4405 ("seqan" ,seqan-1)
4406 ("python-screed" ,python-screed)
4407 ("python-bz2file" ,python-bz2file)))
4408 (home-page "https://khmer.readthedocs.org/")
4409 (synopsis "K-mer counting, filtering and graph traversal library")
4410 (description "The khmer software is a set of command-line tools for
4411 working with DNA shotgun sequencing data from genomes, transcriptomes,
4412 metagenomes and single cells. Khmer can make de novo assemblies faster, and
4413 sometimes better. Khmer can also identify and fix problems with shotgun
4414 data.")
4415 ;; When building on i686, armhf and mips64el, we get the following error:
4416 ;; error: ['khmer', 'khmer.tests', 'oxli'] require 64-bit operating system
4417 (supported-systems '("x86_64-linux" "aarch64-linux"))
4418 (license license:bsd-3)))
4419
4420 (define-public kaiju
4421 (package
4422 (name "kaiju")
4423 (version "1.6.3")
4424 (source (origin
4425 (method git-fetch)
4426 (uri (git-reference
4427 (url "https://github.com/bioinformatics-centre/kaiju")
4428 (commit (string-append "v" version))))
4429 (file-name (git-file-name name version))
4430 (sha256
4431 (base32
4432 "119pzi0ddzv9mjg4wwa6han0cwr3k3ssn7kirvsjfcq05mi5ka0x"))))
4433 (build-system gnu-build-system)
4434 (arguments
4435 `(#:tests? #f ; There are no tests.
4436 #:phases
4437 (modify-phases %standard-phases
4438 (delete 'configure)
4439 (add-before 'build 'move-to-src-dir
4440 (lambda _ (chdir "src") #t))
4441 (replace 'install
4442 (lambda* (#:key inputs outputs #:allow-other-keys)
4443 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
4444 (mkdir-p bin)
4445 (chdir "..")
4446 (copy-recursively "bin" bin))
4447 #t)))))
4448 (inputs
4449 `(("perl" ,perl)
4450 ("zlib" ,zlib)))
4451 (home-page "http://kaiju.binf.ku.dk/")
4452 (synopsis "Fast and sensitive taxonomic classification for metagenomics")
4453 (description "Kaiju is a program for sensitive taxonomic classification
4454 of high-throughput sequencing reads from metagenomic whole genome sequencing
4455 experiments.")
4456 (license license:gpl3+)))
4457
4458 (define-public macs
4459 (package
4460 (name "macs")
4461 (version "2.2.6")
4462 (source (origin
4463 ;; The PyPi tarball does not contain tests.
4464 (method git-fetch)
4465 (uri (git-reference
4466 (url "https://github.com/taoliu/MACS")
4467 (commit (string-append "v" version))))
4468 (file-name (git-file-name name version))
4469 (sha256
4470 (base32
4471 "1c5gxr0mk6hkd4vclf0k00wvyvzw2vrmk52c85338p7aqjwg6n15"))))
4472 (build-system python-build-system)
4473 (arguments
4474 `(#:phases
4475 (modify-phases %standard-phases
4476 (delete 'check)
4477 (add-after 'install 'check
4478 (lambda* (#:key inputs outputs #:allow-other-keys)
4479 (add-installed-pythonpath inputs outputs)
4480 (invoke "pytest" "-v"))))))
4481 (inputs
4482 `(("python-numpy" ,python-numpy)))
4483 (native-inputs
4484 `(("python-pytest" ,python-pytest)))
4485 (home-page "https://github.com/taoliu/MACS/")
4486 (synopsis "Model based analysis for ChIP-Seq data")
4487 (description
4488 "MACS is an implementation of a ChIP-Seq analysis algorithm for
4489 identifying transcript factor binding sites named Model-based Analysis of
4490 ChIP-Seq (MACS). MACS captures the influence of genome complexity to evaluate
4491 the significance of enriched ChIP regions and it improves the spatial
4492 resolution of binding sites through combining the information of both
4493 sequencing tag position and orientation.")
4494 (license license:bsd-3)))
4495
4496 (define-public mafft
4497 (package
4498 (name "mafft")
4499 (version "7.394")
4500 (source (origin
4501 (method url-fetch)
4502 (uri (string-append
4503 "https://mafft.cbrc.jp/alignment/software/mafft-" version
4504 "-without-extensions-src.tgz"))
4505 (file-name (string-append name "-" version ".tgz"))
4506 (sha256
4507 (base32
4508 "0bacjkxfg944p5khhyh5rd4y7wkjc9qk4v2jjj442sqlq0f8ar7b"))))
4509 (build-system gnu-build-system)
4510 (arguments
4511 `(#:tests? #f ; no automated tests, though there are tests in the read me
4512 #:make-flags (let ((out (assoc-ref %outputs "out")))
4513 (list (string-append "PREFIX=" out)
4514 (string-append "BINDIR="
4515 (string-append out "/bin"))))
4516 #:phases
4517 (modify-phases %standard-phases
4518 (add-after 'unpack 'enter-dir
4519 (lambda _ (chdir "core") #t))
4520 (add-after 'enter-dir 'patch-makefile
4521 (lambda _
4522 ;; on advice from the MAFFT authors, there is no need to
4523 ;; distribute mafft-profile, mafft-distance, or
4524 ;; mafft-homologs.rb as they are too "specialised".
4525 (substitute* "Makefile"
4526 ;; remove mafft-homologs.rb from SCRIPTS
4527 (("^SCRIPTS = mafft mafft-homologs.rb")
4528 "SCRIPTS = mafft")
4529 ;; remove mafft-homologs from MANPAGES
4530 (("^MANPAGES = mafft.1 mafft-homologs.1")
4531 "MANPAGES = mafft.1")
4532 ;; remove mafft-distance from PROGS
4533 (("^PROGS = dvtditr dndfast7 dndblast sextet5 mafft-distance")
4534 "PROGS = dvtditr dndfast7 dndblast sextet5")
4535 ;; remove mafft-profile from PROGS
4536 (("splittbfast disttbfast tbfast mafft-profile 2cl mccaskillwrap")
4537 "splittbfast disttbfast tbfast f2cl mccaskillwrap")
4538 (("^rm -f mafft-profile mafft-profile.exe") "#")
4539 (("^rm -f mafft-distance mafft-distance.exe") ")#")
4540 ;; do not install MAN pages in libexec folder
4541 (("^\t\\$\\(INSTALL\\) -m 644 \\$\\(MANPAGES\\) \
4542 \\$\\(DESTDIR\\)\\$\\(LIBDIR\\)") "#"))
4543 #t))
4544 (add-after 'enter-dir 'patch-paths
4545 (lambda* (#:key inputs #:allow-other-keys)
4546 (substitute* '("pairash.c"
4547 "mafft.tmpl")
4548 (("perl") (which "perl"))
4549 (("([\"`| ])awk" _ prefix)
4550 (string-append prefix (which "awk")))
4551 (("grep") (which "grep")))
4552 #t))
4553 (delete 'configure)
4554 (add-after 'install 'wrap-programs
4555 (lambda* (#:key outputs #:allow-other-keys)
4556 (let* ((out (assoc-ref outputs "out"))
4557 (bin (string-append out "/bin"))
4558 (path (string-append
4559 (assoc-ref %build-inputs "coreutils") "/bin:")))
4560 (for-each (lambda (file)
4561 (wrap-program file
4562 `("PATH" ":" prefix (,path))))
4563 (find-files bin)))
4564 #t)))))
4565 (inputs
4566 `(("perl" ,perl)
4567 ("ruby" ,ruby)
4568 ("gawk" ,gawk)
4569 ("grep" ,grep)
4570 ("coreutils" ,coreutils)))
4571 (home-page "http://mafft.cbrc.jp/alignment/software/")
4572 (synopsis "Multiple sequence alignment program")
4573 (description
4574 "MAFFT offers a range of multiple alignment methods for nucleotide and
4575 protein sequences. For instance, it offers L-INS-i (accurate; for alignment
4576 of <~200 sequences) and FFT-NS-2 (fast; for alignment of <~30,000
4577 sequences).")
4578 (license (license:non-copyleft
4579 "http://mafft.cbrc.jp/alignment/software/license.txt"
4580 "BSD-3 with different formatting"))))
4581
4582 (define-public mash
4583 (package
4584 (name "mash")
4585 (version "2.1")
4586 (source (origin
4587 (method git-fetch)
4588 (uri (git-reference
4589 (url "https://github.com/marbl/mash")
4590 (commit (string-append "v" version))))
4591 (file-name (git-file-name name version))
4592 (sha256
4593 (base32
4594 "049hwcc059p2fd9vwndn63laifvvsi0wmv84i6y1fr79k15dxwy6"))
4595 (modules '((guix build utils)))
4596 (snippet
4597 '(begin
4598 ;; Delete bundled kseq.
4599 ;; TODO: Also delete bundled murmurhash and open bloom filter.
4600 (delete-file "src/mash/kseq.h")
4601 #t))))
4602 (build-system gnu-build-system)
4603 (arguments
4604 `(#:tests? #f ; No tests.
4605 #:configure-flags
4606 (list
4607 (string-append "--with-capnp=" (assoc-ref %build-inputs "capnproto"))
4608 (string-append "--with-gsl=" (assoc-ref %build-inputs "gsl")))
4609 #:make-flags (list "CC=gcc")
4610 #:phases
4611 (modify-phases %standard-phases
4612 (add-after 'unpack 'fix-includes
4613 (lambda _
4614 (substitute* '("src/mash/Sketch.cpp"
4615 "src/mash/CommandFind.cpp"
4616 "src/mash/CommandScreen.cpp")
4617 (("^#include \"kseq\\.h\"")
4618 "#include \"htslib/kseq.h\""))
4619 #t))
4620 (add-after 'fix-includes 'use-c++14
4621 (lambda _
4622 ;; capnproto 0.7 requires c++14 to build
4623 (substitute* "configure.ac"
4624 (("c\\+\\+11") "c++14"))
4625 (substitute* "Makefile.in"
4626 (("c\\+\\+11") "c++14"))
4627 #t)))))
4628 (native-inputs
4629 `(("autoconf" ,autoconf)
4630 ;; Capnproto and htslib are statically embedded in the final
4631 ;; application. Therefore we also list their licenses, below.
4632 ("capnproto" ,capnproto)
4633 ("htslib" ,htslib)))
4634 (inputs
4635 `(("gsl" ,gsl)
4636 ("zlib" ,zlib)))
4637 (supported-systems '("x86_64-linux"))
4638 (home-page "https://mash.readthedocs.io")
4639 (synopsis "Fast genome and metagenome distance estimation using MinHash")
4640 (description "Mash is a fast sequence distance estimator that uses the
4641 MinHash algorithm and is designed to work with genomes and metagenomes in the
4642 form of assemblies or reads.")
4643 (license (list license:bsd-3 ; Mash
4644 license:expat ; HTSlib and capnproto
4645 license:public-domain ; MurmurHash 3
4646 license:cpl1.0)))) ; Open Bloom Filter
4647
4648 (define-public metabat
4649 (package
4650 (name "metabat")
4651 (version "2.12.1")
4652 (source
4653 (origin
4654 (method git-fetch)
4655 (uri (git-reference
4656 (url "https://bitbucket.org/berkeleylab/metabat.git")
4657 (commit (string-append "v" version))))
4658 (file-name (git-file-name name version))
4659 (sha256
4660 (base32
4661 "0hyg2smw1nz69mfvjpk45xyyychmda92c80a0cv7baji84ri4iyn"))
4662 (patches (search-patches "metabat-fix-compilation.patch"))))
4663 (build-system scons-build-system)
4664 (arguments
4665 `(#:scons ,scons-python2
4666 #:scons-flags
4667 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
4668 (string-append "BOOST_ROOT=" (assoc-ref %build-inputs "boost")))
4669 #:tests? #f ;; Tests are run during the build phase.
4670 #:phases
4671 (modify-phases %standard-phases
4672 (add-after 'unpack 'fix-includes
4673 (lambda _
4674 (substitute* "src/BamUtils.h"
4675 (("^#include \"bam/bam\\.h\"")
4676 "#include \"samtools/bam.h\"")
4677 (("^#include \"bam/sam\\.h\"")
4678 "#include \"samtools/sam.h\""))
4679 (substitute* "src/KseqReader.h"
4680 (("^#include \"bam/kseq\\.h\"")
4681 "#include \"htslib/kseq.h\""))
4682 #t))
4683 (add-after 'unpack 'fix-scons
4684 (lambda* (#:key inputs #:allow-other-keys)
4685 (substitute* "SConstruct"
4686 (("^htslib_dir += 'samtools'")
4687 (string-append "htslib_dir = '"
4688 (assoc-ref inputs "htslib")
4689 "'"))
4690 (("^samtools_dir = 'samtools'")
4691 (string-append "samtools_dir = '"
4692 (assoc-ref inputs "samtools")
4693 "'"))
4694 (("^findStaticOrShared\\('bam', hts_lib")
4695 (string-append "findStaticOrShared('bam', '"
4696 (assoc-ref inputs "samtools")
4697 "/lib'"))
4698 ;; Do not distribute README.
4699 (("^env\\.Install\\(idir_prefix, 'README\\.md'\\)") ""))
4700 #t)))))
4701 (inputs
4702 `(("zlib" ,zlib)
4703 ("perl" ,perl)
4704 ("samtools" ,samtools)
4705 ("htslib" ,htslib)
4706 ("boost" ,boost)))
4707 (home-page "https://bitbucket.org/berkeleylab/metabat")
4708 (synopsis
4709 "Reconstruction of single genomes from complex microbial communities")
4710 (description
4711 "Grouping large genomic fragments assembled from shotgun metagenomic
4712 sequences to deconvolute complex microbial communities, or metagenome binning,
4713 enables the study of individual organisms and their interactions. MetaBAT is
4714 an automated metagenome binning software, which integrates empirical
4715 probabilistic distances of genome abundance and tetranucleotide frequency.")
4716 ;; The source code contains inline assembly.
4717 (supported-systems '("x86_64-linux" "i686-linux"))
4718 (license (license:non-copyleft "file://license.txt"
4719 "See license.txt in the distribution."))))
4720
4721 (define-public minced
4722 (package
4723 (name "minced")
4724 (version "0.3.2")
4725 (source (origin
4726 (method git-fetch)
4727 (uri (git-reference
4728 (url "https://github.com/ctSkennerton/minced")
4729 (commit version)))
4730 (file-name (git-file-name name version))
4731 (sha256
4732 (base32
4733 "1f5h9him0gd355cnx7p6pnxpknhckd4g0v62mg8zyhfbx9as25fv"))))
4734 (build-system gnu-build-system)
4735 (arguments
4736 `(#:test-target "test"
4737 #:phases
4738 (modify-phases %standard-phases
4739 (delete 'configure)
4740 (add-before 'check 'fix-test
4741 (lambda _
4742 ;; Fix test for latest version.
4743 (substitute* "t/Aquifex_aeolicus_VF5.expected"
4744 (("minced:0.1.6") "minced:0.2.0"))
4745 #t))
4746 (replace 'install ; No install target.
4747 (lambda* (#:key inputs outputs #:allow-other-keys)
4748 (let* ((out (assoc-ref outputs "out"))
4749 (bin (string-append out "/bin"))
4750 (wrapper (string-append bin "/minced")))
4751 ;; Minced comes with a wrapper script that tries to figure out where
4752 ;; it is located before running the JAR. Since these paths are known
4753 ;; to us, we build our own wrapper to avoid coreutils dependency.
4754 (install-file "minced.jar" bin)
4755 (with-output-to-file wrapper
4756 (lambda _
4757 (display
4758 (string-append
4759 "#!" (assoc-ref inputs "bash") "/bin/sh\n\n"
4760 (assoc-ref inputs "jre") "/bin/java -jar "
4761 bin "/minced.jar \"$@\"\n"))))
4762 (chmod wrapper #o555))
4763 #t)))))
4764 (native-inputs
4765 `(("jdk" ,icedtea "jdk")))
4766 (inputs
4767 `(("bash" ,bash)
4768 ("jre" ,icedtea "out")))
4769 (home-page "https://github.com/ctSkennerton/minced")
4770 (synopsis "Mining CRISPRs in Environmental Datasets")
4771 (description
4772 "MinCED is a program to find Clustered Regularly Interspaced Short
4773 Palindromic Repeats (CRISPRs) in DNA sequences. It can be used for
4774 unassembled metagenomic reads, but is mainly designed for full genomes and
4775 assembled metagenomic sequence.")
4776 (license license:gpl3+)))
4777
4778 (define-public miso
4779 (package
4780 (name "miso")
4781 (version "0.5.4")
4782 (source (origin
4783 (method url-fetch)
4784 (uri (pypi-uri "misopy" version))
4785 (sha256
4786 (base32
4787 "1z3x0vd8ma7pdrnywj7i3kgwl89sdkwrrn62zl7r5calqaq2hyip"))
4788 (modules '((guix build utils)))
4789 (snippet '(begin
4790 (substitute* "setup.py"
4791 ;; Use setuptools, or else the executables are not
4792 ;; installed.
4793 (("distutils.core") "setuptools")
4794 ;; Use "gcc" instead of "cc" for compilation.
4795 (("^defines")
4796 "cc.set_executables(
4797 compiler='gcc',
4798 compiler_so='gcc',
4799 linker_exe='gcc',
4800 linker_so='gcc -shared'); defines"))
4801 #t))))
4802 (build-system python-build-system)
4803 (arguments
4804 `(#:python ,python-2 ; only Python 2 is supported
4805 #:tests? #f)) ; no "test" target
4806 (inputs
4807 `(("samtools" ,samtools)
4808 ("python-numpy" ,python2-numpy)
4809 ("python-pysam" ,python2-pysam)
4810 ("python-scipy" ,python2-scipy)
4811 ("python-matplotlib" ,python2-matplotlib)))
4812 (native-inputs
4813 `(("python-mock" ,python2-mock) ; for tests
4814 ("python-pytz" ,python2-pytz))) ; for tests
4815 (home-page "https://www.genes.mit.edu/burgelab/miso/index.html")
4816 (synopsis "Mixture of Isoforms model for RNA-Seq isoform quantitation")
4817 (description
4818 "MISO (Mixture-of-Isoforms) is a probabilistic framework that quantitates
4819 the expression level of alternatively spliced genes from RNA-Seq data, and
4820 identifies differentially regulated isoforms or exons across samples. By
4821 modeling the generative process by which reads are produced from isoforms in
4822 RNA-Seq, the MISO model uses Bayesian inference to compute the probability
4823 that a read originated from a particular isoform.")
4824 (license license:gpl2)))
4825
4826 (define-public muscle
4827 (package
4828 (name "muscle")
4829 (version "3.8.1551")
4830 (source (origin
4831 (method url-fetch/tarbomb)
4832 (uri (string-append
4833 "http://www.drive5.com/muscle/muscle_src_"
4834 version ".tar.gz"))
4835 (sha256
4836 (base32
4837 "0bj8kj7sdizy3987zx6w7axihk40fk8rn76mpbqqjcnd64i5a367"))))
4838 (build-system gnu-build-system)
4839 (arguments
4840 `(#:make-flags (list "LDLIBS = -lm")
4841 #:phases
4842 (modify-phases %standard-phases
4843 (delete 'configure)
4844 (replace 'check
4845 ;; There are no tests, so just test if it runs.
4846 (lambda _ (invoke "./muscle" "-version") #t))
4847 (replace 'install
4848 (lambda* (#:key outputs #:allow-other-keys)
4849 (let* ((out (assoc-ref outputs "out"))
4850 (bin (string-append out "/bin")))
4851 (install-file "muscle" bin)
4852 #t))))))
4853 (home-page "http://www.drive5.com/muscle")
4854 (synopsis "Multiple sequence alignment program")
4855 (description
4856 "MUSCLE aims to be a fast and accurate multiple sequence alignment
4857 program for nucleotide and protein sequences.")
4858 ;; License information found in 'muscle -h' and usage.cpp.
4859 (license license:public-domain)))
4860
4861 (define-public newick-utils
4862 ;; There are no recent releases so we package from git.
4863 (let ((commit "da121155a977197cab9fbb15953ca1b40b11eb87"))
4864 (package
4865 (name "newick-utils")
4866 (version (string-append "1.6-1." (string-take commit 8)))
4867 (source (origin
4868 (method git-fetch)
4869 (uri (git-reference
4870 (url "https://github.com/tjunier/newick_utils")
4871 (commit commit)))
4872 (file-name (string-append name "-" version "-checkout"))
4873 (sha256
4874 (base32
4875 "1hkw21rq1mwf7xp0rmbb2gqc0i6p11108m69i7mr7xcjl268pxnb"))))
4876 (build-system gnu-build-system)
4877 (inputs
4878 ;; XXX: TODO: Enable Lua and Guile bindings.
4879 ;; https://github.com/tjunier/newick_utils/issues/13
4880 `(("libxml2" ,libxml2)
4881 ("flex" ,flex)
4882 ("bison" ,bison)))
4883 (native-inputs
4884 `(("autoconf" ,autoconf)
4885 ("automake" ,automake)
4886 ("libtool" ,libtool)))
4887 (synopsis "Programs for working with newick format phylogenetic trees")
4888 (description
4889 "Newick-utils is a suite of utilities for processing phylogenetic trees
4890 in Newick format. Functions include re-rooting, extracting subtrees,
4891 trimming, pruning, condensing, drawing (ASCII graphics or SVG).")
4892 (home-page "https://github.com/tjunier/newick_utils")
4893 (license license:bsd-3))))
4894
4895 (define-public orfm
4896 (package
4897 (name "orfm")
4898 (version "0.7.1")
4899 (source (origin
4900 (method url-fetch)
4901 (uri (string-append
4902 "https://github.com/wwood/OrfM/releases/download/v"
4903 version "/orfm-" version ".tar.gz"))
4904 (sha256
4905 (base32
4906 "16iigyr2gd8x0imzkk1dr3k5xsds9bpmwg31ayvjg0f4pir9rwqr"))))
4907 (build-system gnu-build-system)
4908 (inputs `(("zlib" ,zlib)))
4909 (native-inputs
4910 `(("ruby-bio-commandeer" ,ruby-bio-commandeer)
4911 ("ruby-rspec" ,ruby-rspec)
4912 ("ruby" ,ruby)))
4913 (synopsis "Simple and not slow open reading frame (ORF) caller")
4914 (description
4915 "An ORF caller finds stretches of DNA that, when translated, are not
4916 interrupted by stop codons. OrfM finds and prints these ORFs.")
4917 (home-page "https://github.com/wwood/OrfM")
4918 (license license:lgpl3+)))
4919
4920 (define-public python2-pbcore
4921 (package
4922 (name "python2-pbcore")
4923 (version "1.2.10")
4924 (source (origin
4925 (method url-fetch)
4926 (uri (pypi-uri "pbcore" version))
4927 (sha256
4928 (base32
4929 "1kjmv891d6qbpp4shhhvkl02ff4q5xlpnls2513sm2cjcrs52f1i"))))
4930 (build-system python-build-system)
4931 (arguments
4932 `(#:python ,python-2 ;pbcore < 2.0 requires Python 2.7
4933 #:phases (modify-phases %standard-phases
4934 (add-after 'unpack 'remove-sphinx-dependency
4935 (lambda _
4936 ;; Sphinx is only required for documentation tests, which
4937 ;; we do not run; furthermore it depends on python2-sphinx
4938 ;; which is no longer maintained.
4939 (substitute* "requirements-dev.txt"
4940 (("^sphinx") ""))
4941 #t)))))
4942 (propagated-inputs
4943 `(("python-cython" ,python2-cython)
4944 ("python-numpy" ,python2-numpy)
4945 ("python-pysam" ,python2-pysam)
4946 ("python-h5py" ,python2-h5py)))
4947 (native-inputs
4948 `(("python-nose" ,python2-nose)
4949 ("python-pyxb" ,python2-pyxb)))
4950 (home-page "https://pacificbiosciences.github.io/pbcore/")
4951 (synopsis "Library for reading and writing PacBio data files")
4952 (description
4953 "The pbcore package provides Python APIs for interacting with PacBio data
4954 files and writing bioinformatics applications.")
4955 (license license:bsd-3)))
4956
4957 (define-public python2-warpedlmm
4958 (package
4959 (name "python2-warpedlmm")
4960 (version "0.21")
4961 (source
4962 (origin
4963 (method url-fetch)
4964 (uri (pypi-uri "WarpedLMM" version ".zip"))
4965 (sha256
4966 (base32
4967 "1agfz6zqa8nc6cw47yh0s3y14gkpa9wqazwcj7mwwj3ffnw39p3j"))))
4968 (build-system python-build-system)
4969 (arguments
4970 `(#:python ,python-2 ; requires Python 2.7
4971 #:tests? #f ; test data are not included
4972 #:phases
4973 (modify-phases %standard-phases
4974 (add-after 'unpack 'use-weave
4975 (lambda _
4976 (substitute* "warpedlmm/util/linalg.py"
4977 (("from scipy import linalg, weave")
4978 "from scipy import linalg\nimport weave"))
4979 #t)))))
4980 (propagated-inputs
4981 `(("python-scipy" ,python2-scipy)
4982 ("python-numpy" ,python2-numpy)
4983 ("python-matplotlib" ,python2-matplotlib)
4984 ("python-fastlmm" ,python2-fastlmm)
4985 ("python-pandas" ,python2-pandas)
4986 ("python-pysnptools" ,python2-pysnptools)
4987 ("python-weave" ,python2-weave)))
4988 (native-inputs
4989 `(("python-mock" ,python2-mock)
4990 ("python-nose" ,python2-nose)
4991 ("unzip" ,unzip)))
4992 (home-page "https://github.com/PMBio/warpedLMM")
4993 (synopsis "Implementation of warped linear mixed models")
4994 (description
4995 "WarpedLMM is a Python implementation of the warped linear mixed model,
4996 which automatically learns an optimal warping function (or transformation) for
4997 the phenotype as it models the data.")
4998 (license license:asl2.0)))
4999
5000 (define-public pbtranscript-tofu
5001 (let ((commit "8f5467fe6a4472bcfb4226c8720993c8507adfe4"))
5002 (package
5003 (name "pbtranscript-tofu")
5004 (version (string-append "2.2.3." (string-take commit 7)))
5005 (source (origin
5006 (method git-fetch)
5007 (uri (git-reference
5008 (url "https://github.com/PacificBiosciences/cDNA_primer")
5009 (commit commit)))
5010 (file-name (string-append name "-" version "-checkout"))
5011 (sha256
5012 (base32
5013 "1lgnpi35ihay42qx0b6yl3kkgra723i413j33kvs0kvs61h82w0f"))
5014 (modules '((guix build utils)))
5015 (snippet
5016 '(begin
5017 ;; remove bundled Cython sources
5018 (delete-file "pbtranscript-tofu/pbtranscript/Cython-0.20.1.tar.gz")
5019 #t))))
5020 (build-system python-build-system)
5021 (arguments
5022 `(#:python ,python-2
5023 ;; FIXME: Tests fail with "No such file or directory:
5024 ;; pbtools/pbtranscript/modified_bx_intervals/intersection_unique.so"
5025 #:tests? #f
5026 #:phases
5027 (modify-phases %standard-phases
5028 (add-after 'unpack 'enter-directory
5029 (lambda _
5030 (chdir "pbtranscript-tofu/pbtranscript/")
5031 #t))
5032 ;; With setuptools version 18.0 and later this setup.py hack causes
5033 ;; a build error, so we disable it.
5034 (add-after 'enter-directory 'patch-setuppy
5035 (lambda _
5036 (substitute* "setup.py"
5037 (("if 'setuptools.extension' in sys.modules:")
5038 "if False:"))
5039 #t)))))
5040 (inputs
5041 `(("python-numpy" ,python2-numpy)
5042 ("python-bx-python" ,python2-bx-python)
5043 ("python-networkx" ,python2-networkx)
5044 ("python-scipy" ,python2-scipy)
5045 ("python-pbcore" ,python2-pbcore)
5046 ("python-h5py" ,python2-h5py)))
5047 (native-inputs
5048 `(("python-cython" ,python2-cython)
5049 ("python-nose" ,python2-nose)))
5050 (home-page "https://github.com/PacificBiosciences/cDNA_primer")
5051 (synopsis "Analyze transcriptome data generated with the Iso-Seq protocol")
5052 (description
5053 "pbtranscript-tofu contains scripts to analyze transcriptome data
5054 generated using the PacBio Iso-Seq protocol.")
5055 (license license:bsd-3))))
5056
5057 (define-public prank
5058 (package
5059 (name "prank")
5060 (version "170427")
5061 (source (origin
5062 (method url-fetch)
5063 (uri (string-append
5064 "http://wasabiapp.org/download/prank/prank.source."
5065 version ".tgz"))
5066 (sha256
5067 (base32
5068 "0nc8g9c5rkdxcir46s0in9ci1sxwzbjibxrvkksf22ybnplvagk2"))))
5069 (build-system gnu-build-system)
5070 (arguments
5071 `(#:phases
5072 (modify-phases %standard-phases
5073 (add-after 'unpack 'enter-src-dir
5074 (lambda _
5075 (chdir "src")
5076 #t))
5077 (add-after 'unpack 'remove-m64-flag
5078 ;; Prank will build with the correct 'bit-ness' without this flag
5079 ;; and this allows building on 32-bit machines.
5080 (lambda _ (substitute* "src/Makefile"
5081 (("-m64") ""))
5082 #t))
5083 (delete 'configure)
5084 (replace 'install
5085 (lambda* (#:key outputs #:allow-other-keys)
5086 (let* ((out (assoc-ref outputs "out"))
5087 (bin (string-append out "/bin"))
5088 (man (string-append out "/share/man/man1"))
5089 (path (string-append
5090 (assoc-ref %build-inputs "mafft") "/bin:"
5091 (assoc-ref %build-inputs "exonerate") "/bin:"
5092 (assoc-ref %build-inputs "bppsuite") "/bin")))
5093 (install-file "prank" bin)
5094 (wrap-program (string-append bin "/prank")
5095 `("PATH" ":" prefix (,path)))
5096 (install-file "prank.1" man))
5097 #t)))))
5098 (inputs
5099 `(("mafft" ,mafft)
5100 ("exonerate" ,exonerate)
5101 ("bppsuite" ,bppsuite)))
5102 (home-page "http://wasabiapp.org/software/prank/")
5103 (synopsis "Probabilistic multiple sequence alignment program")
5104 (description
5105 "PRANK is a probabilistic multiple sequence alignment program for DNA,
5106 codon and amino-acid sequences. It is based on a novel algorithm that treats
5107 insertions correctly and avoids over-estimation of the number of deletion
5108 events. In addition, PRANK borrows ideas from maximum likelihood methods used
5109 in phylogenetics and correctly takes into account the evolutionary distances
5110 between sequences. Lastly, PRANK allows for defining a potential structure
5111 for sequences to be aligned and then, simultaneously with the alignment,
5112 predicts the locations of structural units in the sequences.")
5113 (license license:gpl2+)))
5114
5115 (define-public proteinortho
5116 (package
5117 (name "proteinortho")
5118 (version "6.0.14")
5119 (source (origin
5120 (method git-fetch)
5121 (uri (git-reference
5122 (url "https://gitlab.com/paulklemm_PHD/proteinortho.git")
5123 (commit (string-append "v" version))))
5124 (file-name (git-file-name name version))
5125 (sha256
5126 (base32
5127 "0pmy617zy2z2w6hjqxjhf3rzikf5n3mpia80ysq8233vfr7wrzff"))
5128 (modules '((guix build utils)))
5129 (snippet
5130 '(begin
5131 ;; remove pre-built scripts
5132 (delete-file-recursively "src/BUILD/")
5133 #t))))
5134 (build-system gnu-build-system)
5135 (arguments
5136 `(#:test-target "test"
5137 #:make-flags '("CC=gcc")
5138 #:phases
5139 (modify-phases %standard-phases
5140 (replace 'configure
5141 ;; There is no configure script, so we modify the Makefile directly.
5142 (lambda* (#:key outputs #:allow-other-keys)
5143 (substitute* "Makefile"
5144 (("INSTALLDIR=.*")
5145 (string-append
5146 "INSTALLDIR=" (assoc-ref outputs "out") "/bin\n")))
5147 #t))
5148 (add-before 'install 'make-install-directory
5149 ;; The install directory is not created during 'make install'.
5150 (lambda* (#:key outputs #:allow-other-keys)
5151 (mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
5152 #t))
5153 (add-after 'install 'wrap-programs
5154 (lambda* (#:key inputs outputs #:allow-other-keys)
5155 (let ((path (getenv "PATH"))
5156 (out (assoc-ref outputs "out")))
5157 (for-each (lambda (script)
5158 (wrap-script script `("PATH" ":" prefix (,path))))
5159 (cons (string-append out "/bin/proteinortho")
5160 (find-files out "\\.(pl|py)$"))))
5161 #t)))))
5162 (inputs
5163 `(("guile" ,guile-3.0) ; for wrap-script
5164 ("diamond" ,diamond)
5165 ("perl" ,perl)
5166 ("python" ,python-wrapper)
5167 ("blast+" ,blast+)
5168 ("lapack" ,lapack)
5169 ("openblas" ,openblas)))
5170 (native-inputs
5171 `(("which" ,which)))
5172 (home-page "http://www.bioinf.uni-leipzig.de/Software/proteinortho")
5173 (synopsis "Detect orthologous genes across species")
5174 (description
5175 "Proteinortho is a tool to detect orthologous genes across different
5176 species. For doing so, it compares similarities of given gene sequences and
5177 clusters them to find significant groups. The algorithm was designed to handle
5178 large-scale data and can be applied to hundreds of species at once.")
5179 (license license:gpl3+)))
5180
5181 (define-public pyicoteo
5182 (package
5183 (name "pyicoteo")
5184 (version "2.0.7")
5185 (source
5186 (origin
5187 (method git-fetch)
5188 (uri (git-reference
5189 (url "https://bitbucket.org/regulatorygenomicsupf/pyicoteo.git")
5190 (commit (string-append "v" version))))
5191 (file-name (git-file-name name version))
5192 (sha256
5193 (base32
5194 "0hz5g8d25lbjy1wpscr490l0lmyvaix893hhax4fxnh1h9w34w8p"))))
5195 (build-system python-build-system)
5196 (arguments
5197 `(#:python ,python-2 ; does not work with Python 3
5198 #:tests? #f)) ; there are no tests
5199 (inputs
5200 `(("python2-matplotlib" ,python2-matplotlib)))
5201 (home-page "https://bitbucket.org/regulatorygenomicsupf/pyicoteo")
5202 (synopsis "Analyze high-throughput genetic sequencing data")
5203 (description
5204 "Pyicoteo is a suite of tools for the analysis of high-throughput genetic
5205 sequencing data. It works with genomic coordinates. There are currently six
5206 different command-line tools:
5207
5208 @enumerate
5209 @item pyicoregion: for generating exploratory regions automatically;
5210 @item pyicoenrich: for differential enrichment between two conditions;
5211 @item pyicoclip: for calling CLIP-Seq peaks without a control;
5212 @item pyicos: for genomic coordinates manipulation;
5213 @item pyicoller: for peak calling on punctuated ChIP-Seq;
5214 @item pyicount: to count how many reads from N experiment files overlap in a
5215 region file;
5216 @item pyicotrocol: to combine operations from pyicoteo.
5217 @end enumerate\n")
5218 (license license:gpl3+)))
5219
5220 (define-public prodigal
5221 (package
5222 (name "prodigal")
5223 ;; Check for a new home page when updating this package:
5224 ;; https://github.com/hyattpd/Prodigal/issues/36#issuecomment-536617588
5225 (version "2.6.3")
5226 (source (origin
5227 (method git-fetch)
5228 (uri (git-reference
5229 (url "https://github.com/hyattpd/Prodigal")
5230 (commit (string-append "v" version))))
5231 (file-name (git-file-name name version))
5232 (sha256
5233 (base32
5234 "1fs1hqk83qjbjhrvhw6ni75zakx5ki1ayy3v6wwkn3xvahc9hi5s"))))
5235 (build-system gnu-build-system)
5236 (arguments
5237 `(#:tests? #f ; no check target
5238 #:make-flags (list (string-append "INSTALLDIR="
5239 (assoc-ref %outputs "out")
5240 "/bin"))
5241 #:phases
5242 (modify-phases %standard-phases
5243 (delete 'configure))))
5244 (home-page "https://github.com/hyattpd/Prodigal")
5245 (synopsis "Protein-coding gene prediction for Archaea and Bacteria")
5246 (description
5247 "Prodigal runs smoothly on finished genomes, draft genomes, and
5248 metagenomes, providing gene predictions in GFF3, Genbank, or Sequin table
5249 format. It runs quickly, in an unsupervised fashion, handles gaps, handles
5250 partial genes, and identifies translation initiation sites.")
5251 (license license:gpl3+)))
5252
5253 (define-public roary
5254 (package
5255 (name "roary")
5256 (version "3.12.0")
5257 (source
5258 (origin
5259 (method url-fetch)
5260 (uri (string-append
5261 "mirror://cpan/authors/id/A/AJ/AJPAGE/Bio-Roary-"
5262 version ".tar.gz"))
5263 (sha256
5264 (base32
5265 "0qxrds9wx7cfhlkihrp6697kx0flhhxymap9fwan0b3rbdhcnmff"))))
5266 (build-system perl-build-system)
5267 (arguments
5268 `(#:phases
5269 (modify-phases %standard-phases
5270 (delete 'configure)
5271 (delete 'build)
5272 (replace 'check
5273 (lambda _
5274 ;; The tests are not run by default, so we run each test file
5275 ;; directly.
5276 (setenv "PATH" (string-append (getcwd) "/bin" ":"
5277 (getenv "PATH")))
5278 (setenv "PERL5LIB" (string-append (getcwd) "/lib" ":"
5279 (getenv "PERL5LIB")))
5280 (for-each (lambda (file)
5281 (display file)(display "\n")
5282 (invoke "perl" file))
5283 (find-files "t" ".*\\.t$"))
5284 #t))
5285 (replace 'install
5286 ;; There is no 'install' target in the Makefile.
5287 (lambda* (#:key outputs #:allow-other-keys)
5288 (let* ((out (assoc-ref outputs "out"))
5289 (bin (string-append out "/bin"))
5290 (perl (string-append out "/lib/perl5/site_perl"))
5291 (roary-plots "contrib/roary_plots"))
5292 (mkdir-p bin)
5293 (mkdir-p perl)
5294 (copy-recursively "bin" bin)
5295 (copy-recursively "lib" perl)
5296 #t)))
5297 (add-after 'install 'wrap-programs
5298 (lambda* (#:key inputs outputs #:allow-other-keys)
5299 (let* ((out (assoc-ref outputs "out"))
5300 (perl5lib (getenv "PERL5LIB"))
5301 (path (getenv "PATH")))
5302 (for-each (lambda (prog)
5303 (let ((binary (string-append out "/" prog)))
5304 (wrap-program binary
5305 `("PERL5LIB" ":" prefix
5306 (,(string-append perl5lib ":" out
5307 "/lib/perl5/site_perl"))))
5308 (wrap-program binary
5309 `("PATH" ":" prefix
5310 (,(string-append path ":" out "/bin"))))))
5311 (find-files "bin" ".*[^R]$"))
5312 (let ((file
5313 (string-append out "/bin/roary-create_pan_genome_plots.R"))
5314 (r-site-lib (getenv "R_LIBS_SITE"))
5315 (coreutils-path
5316 (string-append (assoc-ref inputs "coreutils") "/bin")))
5317 (wrap-program file
5318 `("R_LIBS_SITE" ":" prefix
5319 (,(string-append r-site-lib ":" out "/site-library/"))))
5320 (wrap-program file
5321 `("PATH" ":" prefix
5322 (,(string-append coreutils-path ":" out "/bin"))))))
5323 #t)))))
5324 (native-inputs
5325 `(("perl-env-path" ,perl-env-path)
5326 ("perl-test-files" ,perl-test-files)
5327 ("perl-test-most" ,perl-test-most)
5328 ("perl-test-output" ,perl-test-output)))
5329 (inputs
5330 `(("perl-array-utils" ,perl-array-utils)
5331 ("bioperl" ,bioperl-minimal)
5332 ("perl-digest-md5-file" ,perl-digest-md5-file)
5333 ("perl-exception-class" ,perl-exception-class)
5334 ("perl-file-find-rule" ,perl-file-find-rule)
5335 ("perl-file-grep" ,perl-file-grep)
5336 ("perl-file-slurper" ,perl-file-slurper)
5337 ("perl-file-which" ,perl-file-which)
5338 ("perl-graph" ,perl-graph)
5339 ("perl-graph-readwrite" ,perl-graph-readwrite)
5340 ("perl-log-log4perl" ,perl-log-log4perl)
5341 ("perl-moose" ,perl-moose)
5342 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5343 ("perl-text-csv" ,perl-text-csv)
5344 ("bedtools" ,bedtools)
5345 ("cd-hit" ,cd-hit)
5346 ("blast+" ,blast+)
5347 ("mcl" ,mcl)
5348 ("parallel" ,parallel)
5349 ("prank" ,prank)
5350 ("mafft" ,mafft)
5351 ("fasttree" ,fasttree)
5352 ("grep" ,grep)
5353 ("sed" ,sed)
5354 ("gawk" ,gawk)
5355 ("r-minimal" ,r-minimal)
5356 ("r-ggplot2" ,r-ggplot2)
5357 ("coreutils" ,coreutils)))
5358 (home-page "https://sanger-pathogens.github.io/Roary/")
5359 (synopsis "High speed stand-alone pan genome pipeline")
5360 (description
5361 "Roary is a high speed stand alone pan genome pipeline, which takes
5362 annotated assemblies in GFF3 format (produced by the Prokka program) and
5363 calculates the pan genome. Using a standard desktop PC, it can analyse
5364 datasets with thousands of samples, without compromising the quality of the
5365 results. 128 samples can be analysed in under 1 hour using 1 GB of RAM and a
5366 single processor. Roary is not intended for metagenomics or for comparing
5367 extremely diverse sets of genomes.")
5368 (license license:gpl3)))
5369
5370 (define-public raxml
5371 (package
5372 (name "raxml")
5373 (version "8.2.12")
5374 (source
5375 (origin
5376 (method git-fetch)
5377 (uri (git-reference
5378 (url "https://github.com/stamatak/standard-RAxML")
5379 (commit (string-append "v" version))))
5380 (file-name (git-file-name name version))
5381 (sha256
5382 (base32
5383 "1jqjzhch0rips0vp04prvb8vmc20c5pdmsqn8knadcf91yy859fh"))))
5384 (build-system gnu-build-system)
5385 (arguments
5386 `(#:tests? #f ; There are no tests.
5387 ;; Use 'standard' Makefile rather than SSE or AVX ones.
5388 #:make-flags (list "-f" "Makefile.HYBRID.gcc")
5389 #:phases
5390 (modify-phases %standard-phases
5391 (delete 'configure)
5392 (replace 'install
5393 (lambda* (#:key outputs #:allow-other-keys)
5394 (let* ((out (assoc-ref outputs "out"))
5395 (bin (string-append out "/bin"))
5396 (executable "raxmlHPC-HYBRID"))
5397 (install-file executable bin)
5398 (symlink (string-append bin "/" executable) "raxml"))
5399 #t)))))
5400 (inputs
5401 `(("openmpi" ,openmpi)))
5402 (home-page "https://cme.h-its.org/exelixis/web/software/raxml/index.html")
5403 (synopsis "Randomized Axelerated Maximum Likelihood phylogenetic trees")
5404 (description
5405 "RAxML is a tool for phylogenetic analysis and post-analysis of large
5406 phylogenies.")
5407 ;; The source includes x86 specific code
5408 (supported-systems '("x86_64-linux" "i686-linux"))
5409 (license license:gpl2+)))
5410
5411 (define-public rsem
5412 (package
5413 (name "rsem")
5414 (version "1.3.1")
5415 (source
5416 (origin
5417 (method git-fetch)
5418 (uri (git-reference
5419 (url "https://github.com/deweylab/RSEM")
5420 (commit (string-append "v" version))))
5421 (sha256
5422 (base32 "1jlq11d1p8qp64w75yj8cnbbd1a93viq10pzsbwal7vdn8fg13j1"))
5423 (file-name (git-file-name name version))
5424 (modules '((guix build utils)))
5425 (snippet
5426 '(begin
5427 ;; remove bundled copy of boost and samtools
5428 (delete-file-recursively "boost")
5429 (delete-file-recursively "samtools-1.3")
5430 #t))))
5431 (build-system gnu-build-system)
5432 (arguments
5433 `(#:tests? #f ;no "check" target
5434 #:make-flags
5435 (list (string-append "BOOST="
5436 (assoc-ref %build-inputs "boost")
5437 "/include/")
5438 (string-append "SAMHEADERS="
5439 (assoc-ref %build-inputs "htslib")
5440 "/include/htslib/sam.h")
5441 (string-append "SAMLIBS="
5442 (assoc-ref %build-inputs "htslib")
5443 "/lib/libhts.a"))
5444 #:phases
5445 (modify-phases %standard-phases
5446 ;; No "configure" script.
5447 ;; Do not build bundled samtools library.
5448 (replace 'configure
5449 (lambda _
5450 (substitute* "Makefile"
5451 (("^all : \\$\\(PROGRAMS\\).*") "all: $(PROGRAMS)\n")
5452 (("^\\$\\(SAMLIBS\\).*") ""))
5453 #t))
5454 (replace 'install
5455 (lambda* (#:key outputs #:allow-other-keys)
5456 (let* ((out (string-append (assoc-ref outputs "out")))
5457 (bin (string-append out "/bin/"))
5458 (perl (string-append out "/lib/perl5/site_perl")))
5459 (mkdir-p bin)
5460 (mkdir-p perl)
5461 (for-each (lambda (file)
5462 (install-file file bin))
5463 (find-files "." "rsem-.*"))
5464 (install-file "rsem_perl_utils.pm" perl))
5465 #t))
5466 (add-after 'install 'wrap-program
5467 (lambda* (#:key outputs #:allow-other-keys)
5468 (let ((out (assoc-ref outputs "out")))
5469 (for-each (lambda (prog)
5470 (wrap-program (string-append out "/bin/" prog)
5471 `("PERL5LIB" ":" prefix
5472 (,(string-append out "/lib/perl5/site_perl")))))
5473 '("rsem-calculate-expression"
5474 "rsem-control-fdr"
5475 "rsem-generate-data-matrix"
5476 "rsem-generate-ngvector"
5477 "rsem-plot-transcript-wiggles"
5478 "rsem-prepare-reference"
5479 "rsem-run-ebseq"
5480 "rsem-run-prsem-testing-procedure")))
5481 #t)))))
5482 (inputs
5483 `(("boost" ,boost)
5484 ("r-minimal" ,r-minimal)
5485 ("perl" ,perl)
5486 ("htslib" ,htslib-1.3)
5487 ("zlib" ,zlib)))
5488 (home-page "http://deweylab.biostat.wisc.edu/rsem/")
5489 (synopsis "Estimate gene expression levels from RNA-Seq data")
5490 (description
5491 "RSEM is a software package for estimating gene and isoform expression
5492 levels from RNA-Seq data. The RSEM package provides a user-friendly
5493 interface, supports threads for parallel computation of the EM algorithm,
5494 single-end and paired-end read data, quality scores, variable-length reads and
5495 RSPD estimation. In addition, it provides posterior mean and 95% credibility
5496 interval estimates for expression levels. For visualization, it can generate
5497 BAM and Wiggle files in both transcript-coordinate and genomic-coordinate.")
5498 (license license:gpl3+)))
5499
5500 (define-public rseqc
5501 (package
5502 (name "rseqc")
5503 (version "3.0.1")
5504 (source
5505 (origin
5506 (method url-fetch)
5507 (uri
5508 (string-append "mirror://sourceforge/rseqc/"
5509 "RSeQC-" version ".tar.gz"))
5510 (sha256
5511 (base32
5512 "0gbb9iyb7swiv5455fm5rg98r7l6qn27v564yllqjd574hncpx6m"))))
5513 (build-system python-build-system)
5514 (inputs
5515 `(("python-cython" ,python-cython)
5516 ("python-bx-python" ,python-bx-python)
5517 ("python-pybigwig" ,python-pybigwig)
5518 ("python-pysam" ,python-pysam)
5519 ("python-numpy" ,python-numpy)
5520 ("zlib" ,zlib)))
5521 (native-inputs
5522 `(("python-nose" ,python-nose)))
5523 (home-page "http://rseqc.sourceforge.net/")
5524 (synopsis "RNA-seq quality control package")
5525 (description
5526 "RSeQC provides a number of modules that can comprehensively evaluate
5527 high throughput sequence data, especially RNA-seq data. Some basic modules
5528 inspect sequence quality, nucleotide composition bias, PCR bias and GC bias,
5529 while RNA-seq specific modules evaluate sequencing saturation, mapped reads
5530 distribution, coverage uniformity, strand specificity, etc.")
5531 (license license:gpl3+)))
5532
5533 (define-public seek
5534 ;; There are no release tarballs. According to the installation
5535 ;; instructions at http://seek.princeton.edu/installation.jsp, the latest
5536 ;; stable release is identified by this changeset ID.
5537 (let ((changeset "2329130")
5538 (revision "1"))
5539 (package
5540 (name "seek")
5541 (version (string-append "0-" revision "." changeset))
5542 (source (origin
5543 (method hg-fetch)
5544 (uri (hg-reference
5545 (url "https://bitbucket.org/libsleipnir/sleipnir")
5546 (changeset changeset)))
5547 (file-name (string-append name "-" version "-checkout"))
5548 (sha256
5549 (base32
5550 "0qrvilwh18dpbhkf92qvxbmay0j75ra3jg2wrhz67gf538zzphsx"))))
5551 (build-system gnu-build-system)
5552 (arguments
5553 `(#:modules ((srfi srfi-1)
5554 (guix build gnu-build-system)
5555 (guix build utils))
5556 #:phases
5557 (let ((dirs '("SeekMiner"
5558 "SeekEvaluator"
5559 "SeekPrep"
5560 "Distancer"
5561 "Data2DB"
5562 "PCL2Bin")))
5563 (modify-phases %standard-phases
5564 (replace 'bootstrap
5565 (lambda _
5566 (substitute* "gen_tools_am"
5567 (("/usr/bin/env.*") (which "perl")))
5568 (invoke "bash" "gen_auto")
5569 #t))
5570 (add-after 'build 'build-additional-tools
5571 (lambda* (#:key make-flags #:allow-other-keys)
5572 (for-each (lambda (dir)
5573 (with-directory-excursion (string-append "tools/" dir)
5574 (apply invoke "make" make-flags)))
5575 dirs)
5576 #t))
5577 (add-after 'install 'install-additional-tools
5578 (lambda* (#:key make-flags #:allow-other-keys)
5579 (for-each (lambda (dir)
5580 (with-directory-excursion (string-append "tools/" dir)
5581 (apply invoke `("make" ,@make-flags "install"))))
5582 dirs)
5583 #t))))))
5584 (inputs
5585 `(("gsl" ,gsl)
5586 ("boost" ,boost)
5587 ("libsvm" ,libsvm)
5588 ("readline" ,readline)
5589 ("gengetopt" ,gengetopt)
5590 ("log4cpp" ,log4cpp)))
5591 (native-inputs
5592 `(("autoconf" ,autoconf)
5593 ("automake" ,automake)
5594 ("perl" ,perl)))
5595 (home-page "http://seek.princeton.edu")
5596 (synopsis "Gene co-expression search engine")
5597 (description
5598 "SEEK is a computational gene co-expression search engine. SEEK provides
5599 biologists with a way to navigate the massive human expression compendium that
5600 now contains thousands of expression datasets. SEEK returns a robust ranking
5601 of co-expressed genes in the biological area of interest defined by the user's
5602 query genes. It also prioritizes thousands of expression datasets according
5603 to the user's query of interest.")
5604 (license license:cc-by3.0))))
5605
5606 (define-public samtools
5607 (package
5608 (name "samtools")
5609 (version "1.9")
5610 (source
5611 (origin
5612 (method url-fetch)
5613 (uri
5614 (string-append "mirror://sourceforge/samtools/samtools/"
5615 version "/samtools-" version ".tar.bz2"))
5616 (sha256
5617 (base32
5618 "10ilqbmm7ri8z431sn90lvbjwizd0hhkf9rcqw8j823hf26nhgq8"))
5619 (modules '((guix build utils)))
5620 (snippet '(begin
5621 ;; Delete bundled htslib.
5622 (delete-file-recursively "htslib-1.9")
5623 #t))))
5624 (build-system gnu-build-system)
5625 (arguments
5626 `(#:modules ((ice-9 ftw)
5627 (ice-9 regex)
5628 (guix build gnu-build-system)
5629 (guix build utils))
5630 #:configure-flags (list "--with-ncurses")
5631 #:phases
5632 (modify-phases %standard-phases
5633 (add-after 'unpack 'patch-tests
5634 (lambda _
5635 (substitute* "test/test.pl"
5636 ;; The test script calls out to /bin/bash
5637 (("/bin/bash") (which "bash")))
5638 #t))
5639 (add-after 'install 'install-library
5640 (lambda* (#:key outputs #:allow-other-keys)
5641 (let ((lib (string-append (assoc-ref outputs "out") "/lib")))
5642 (install-file "libbam.a" lib)
5643 #t)))
5644 (add-after 'install 'install-headers
5645 (lambda* (#:key outputs #:allow-other-keys)
5646 (let ((include (string-append (assoc-ref outputs "out")
5647 "/include/samtools/")))
5648 (for-each (lambda (file)
5649 (install-file file include))
5650 (scandir "." (lambda (name) (string-match "\\.h$" name))))
5651 #t))))))
5652 (native-inputs `(("pkg-config" ,pkg-config)))
5653 (inputs
5654 `(("htslib" ,htslib)
5655 ("ncurses" ,ncurses)
5656 ("perl" ,perl)
5657 ("python" ,python)
5658 ("zlib" ,zlib)))
5659 (home-page "http://samtools.sourceforge.net")
5660 (synopsis "Utilities to efficiently manipulate nucleotide sequence alignments")
5661 (description
5662 "Samtools implements various utilities for post-processing nucleotide
5663 sequence alignments in the SAM, BAM, and CRAM formats, including indexing,
5664 variant calling (in conjunction with bcftools), and a simple alignment
5665 viewer.")
5666 (license license:expat)))
5667
5668 (define-public samtools-0.1
5669 ;; This is the most recent version of the 0.1 line of samtools. The input
5670 ;; and output formats differ greatly from that used and produced by samtools
5671 ;; 1.x and is still used in many bioinformatics pipelines.
5672 (package (inherit samtools)
5673 (version "0.1.19")
5674 (source
5675 (origin
5676 (method url-fetch)
5677 (uri
5678 (string-append "mirror://sourceforge/samtools/samtools/"
5679 version "/samtools-" version ".tar.bz2"))
5680 (sha256
5681 (base32 "1m33xsfwz0s8qi45lylagfllqg7fphf4dr0780rsvw75av9wk06h"))))
5682 (arguments
5683 `(#:tests? #f ;no "check" target
5684 #:make-flags
5685 (list "LIBCURSES=-lncurses")
5686 ,@(substitute-keyword-arguments (package-arguments samtools)
5687 ((#:phases phases)
5688 `(modify-phases ,phases
5689 (replace 'install
5690 (lambda* (#:key outputs #:allow-other-keys)
5691 (let ((bin (string-append
5692 (assoc-ref outputs "out") "/bin")))
5693 (mkdir-p bin)
5694 (install-file "samtools" bin)
5695 #t)))
5696 (delete 'patch-tests)
5697 (delete 'configure))))))))
5698
5699 (define-public mosaik
5700 (let ((commit "5c25216d3522d6a33e53875cd76a6d65001e4e67"))
5701 (package
5702 (name "mosaik")
5703 (version "2.2.30")
5704 (source (origin
5705 ;; There are no release tarballs nor tags.
5706 (method git-fetch)
5707 (uri (git-reference
5708 (url "https://github.com/wanpinglee/MOSAIK")
5709 (commit commit)))
5710 (file-name (string-append name "-" version))
5711 (sha256
5712 (base32
5713 "17gj3s07cm77r41z92awh0bim7w7q7fbn0sf5nkqmcm1vw052qgw"))))
5714 (build-system gnu-build-system)
5715 (arguments
5716 `(#:tests? #f ; no tests
5717 #:make-flags (list "CC=gcc")
5718 #:phases
5719 (modify-phases %standard-phases
5720 (replace 'configure
5721 (lambda _ (chdir "src") #t))
5722 (replace 'install
5723 (lambda* (#:key outputs #:allow-other-keys)
5724 (let ((bin (string-append (assoc-ref outputs "out")
5725 "/bin")))
5726 (mkdir-p bin)
5727 (copy-recursively "../bin" bin)
5728 #t))))))
5729 (inputs
5730 `(("perl" ,perl)
5731 ("zlib:static" ,zlib "static")
5732 ("zlib" ,zlib)))
5733 (supported-systems '("x86_64-linux"))
5734 (home-page "https://github.com/wanpinglee/MOSAIK")
5735 (synopsis "Map nucleotide sequence reads to reference genomes")
5736 (description
5737 "MOSAIK is a program for mapping second and third-generation sequencing
5738 reads to a reference genome. MOSAIK can align reads generated by all the
5739 major sequencing technologies, including Illumina, Applied Biosystems SOLiD,
5740 Roche 454, Ion Torrent and Pacific BioSciences SMRT.")
5741 ;; MOSAIK is released under the GPLv2+ with the exception of third-party
5742 ;; code released into the public domain:
5743 ;; 1. fastlz by Ariya Hidayat - http://www.fastlz.org/
5744 ;; 2. MD5 implementation - RSA Data Security, RFC 1321
5745 (license (list license:gpl2+ license:public-domain)))))
5746
5747 (define-public ngs-sdk
5748 (package
5749 (name "ngs-sdk")
5750 (version "2.10.5")
5751 (source (origin
5752 (method git-fetch)
5753 (uri (git-reference
5754 (url "https://github.com/ncbi/ngs")
5755 (commit version)))
5756 (file-name (git-file-name name version))
5757 (sha256
5758 (base32
5759 "1ix51c25hjn57w93qmwzw80xh2i34wx8j2hn7szh8p6w8i3az5qa"))))
5760 (build-system gnu-build-system)
5761 (arguments
5762 `(#:parallel-build? #f ; not supported
5763 #:tests? #f ; no "check" target
5764 #:phases
5765 (modify-phases %standard-phases
5766 (replace 'configure
5767 (lambda* (#:key outputs #:allow-other-keys)
5768 (let ((out (assoc-ref outputs "out")))
5769 ;; Allow 'konfigure.perl' to find 'package.prl'.
5770 (setenv "PERL5LIB"
5771 (string-append ".:" (getenv "PERL5LIB")))
5772
5773 ;; The 'configure' script doesn't recognize things like
5774 ;; '--enable-fast-install'.
5775 (invoke "./configure"
5776 (string-append "--build-prefix=" (getcwd) "/build")
5777 (string-append "--prefix=" out))
5778 #t)))
5779 (add-after 'unpack 'enter-dir
5780 (lambda _ (chdir "ngs-sdk") #t)))))
5781 (native-inputs `(("perl" ,perl)))
5782 ;; According to the test
5783 ;; unless ($MARCH =~ /x86_64/i || $MARCH =~ /i?86/i)
5784 ;; in ngs-sdk/setup/konfigure.perl
5785 (supported-systems '("i686-linux" "x86_64-linux"))
5786 (home-page "https://github.com/ncbi/ngs")
5787 (synopsis "API for accessing Next Generation Sequencing data")
5788 (description
5789 "NGS is a domain-specific API for accessing reads, alignments and pileups
5790 produced from Next Generation Sequencing. The API itself is independent from
5791 any particular back-end implementation, and supports use of multiple back-ends
5792 simultaneously.")
5793 (license license:public-domain)))
5794
5795 (define-public java-ngs
5796 (package (inherit ngs-sdk)
5797 (name "java-ngs")
5798 (arguments
5799 `(,@(substitute-keyword-arguments
5800 `(#:modules ((guix build gnu-build-system)
5801 (guix build utils)
5802 (srfi srfi-1)
5803 (srfi srfi-26))
5804 ,@(package-arguments ngs-sdk))
5805 ((#:phases phases)
5806 `(modify-phases ,phases
5807 (replace 'enter-dir (lambda _ (chdir "ngs-java") #t)))))))
5808 (inputs
5809 `(("jdk" ,icedtea "jdk")
5810 ("ngs-sdk" ,ngs-sdk)))
5811 (synopsis "Java bindings for NGS SDK")))
5812
5813 (define-public ncbi-vdb
5814 (package
5815 (name "ncbi-vdb")
5816 (version "2.10.6")
5817 (source (origin
5818 (method git-fetch)
5819 (uri (git-reference
5820 (url "https://github.com/ncbi/ncbi-vdb")
5821 (commit version)))
5822 (file-name (git-file-name name version))
5823 (sha256
5824 (base32
5825 "0m8hlxscidsfqm9x9fyi62q6lpf1dv5115kgjjgnrkl49q9c27m6"))))
5826 (build-system gnu-build-system)
5827 (arguments
5828 `(#:parallel-build? #f ; not supported
5829 #:tests? #f ; no "check" target
5830 #:make-flags '("HAVE_HDF5=1")
5831 #:phases
5832 (modify-phases %standard-phases
5833 (add-after 'unpack 'make-files-writable
5834 (lambda _ (for-each make-file-writable (find-files "." ".*")) #t))
5835 (add-before 'configure 'set-perl-search-path
5836 (lambda _
5837 ;; Work around "dotless @INC" build failure.
5838 (setenv "PERL5LIB"
5839 (string-append (getcwd) "/setup:"
5840 (getenv "PERL5LIB")))
5841 #t))
5842 ;; See https://github.com/ncbi/ncbi-vdb/issues/14
5843 (add-after 'unpack 'patch-krypto-flags
5844 (lambda _
5845 (substitute* "libs/krypto/Makefile"
5846 (("-Wa,-march=generic64\\+aes") "")
5847 (("-Wa,-march=generic64\\+sse4") ""))
5848 #t))
5849 (replace 'configure
5850 (lambda* (#:key inputs outputs #:allow-other-keys)
5851 (let ((out (assoc-ref outputs "out")))
5852 ;; Override include path for libmagic
5853 (substitute* "setup/package.prl"
5854 (("name => 'magic', Include => '/usr/include'")
5855 (string-append "name=> 'magic', Include => '"
5856 (assoc-ref inputs "libmagic")
5857 "/include" "'")))
5858
5859 ;; Install kdf5 library (needed by sra-tools)
5860 (substitute* "build/Makefile.install"
5861 (("LIBRARIES_TO_INSTALL =")
5862 "LIBRARIES_TO_INSTALL = kdf5.$(VERSION_LIBX) kdf5.$(VERSION_SHLX)"))
5863
5864 (substitute* "build/Makefile.env"
5865 (("CFLAGS =" prefix)
5866 (string-append prefix "-msse2 ")))
5867
5868 ;; Override search path for ngs-java
5869 (substitute* "setup/package.prl"
5870 (("/usr/local/ngs/ngs-java")
5871 (assoc-ref inputs "java-ngs")))
5872
5873 ;; The 'configure' script doesn't recognize things like
5874 ;; '--enable-fast-install'.
5875 (invoke "./configure"
5876 (string-append "--build-prefix=" (getcwd) "/build")
5877 (string-append "--prefix=" (assoc-ref outputs "out"))
5878 (string-append "--debug")
5879 (string-append "--with-xml2-prefix="
5880 (assoc-ref inputs "libxml2"))
5881 (string-append "--with-ngs-sdk-prefix="
5882 (assoc-ref inputs "ngs-sdk"))
5883 (string-append "--with-hdf5-prefix="
5884 (assoc-ref inputs "hdf5")))
5885 #t)))
5886 (add-after 'install 'install-interfaces
5887 (lambda* (#:key outputs #:allow-other-keys)
5888 ;; Install interface libraries. On i686 the interface libraries
5889 ;; are installed to "linux/gcc/i386", so we need to use the Linux
5890 ;; architecture name ("i386") instead of the target system prefix
5891 ;; ("i686").
5892 (mkdir (string-append (assoc-ref outputs "out") "/ilib"))
5893 (copy-recursively (string-append "build/ncbi-vdb/linux/gcc/"
5894 ,(system->linux-architecture
5895 (or (%current-target-system)
5896 (%current-system)))
5897 "/rel/ilib")
5898 (string-append (assoc-ref outputs "out")
5899 "/ilib"))
5900 ;; Install interface headers
5901 (copy-recursively "interfaces"
5902 (string-append (assoc-ref outputs "out")
5903 "/include"))
5904 #t))
5905 ;; These files are needed by sra-tools.
5906 (add-after 'install 'install-configuration-files
5907 (lambda* (#:key outputs #:allow-other-keys)
5908 (let ((target (string-append (assoc-ref outputs "out") "/kfg")))
5909 (mkdir target)
5910 (install-file "libs/kfg/default.kfg" target)
5911 (install-file "libs/kfg/certs.kfg" target))
5912 #t)))))
5913 (inputs
5914 `(("libxml2" ,libxml2)
5915 ("ngs-sdk" ,ngs-sdk)
5916 ("java-ngs" ,java-ngs)
5917 ("libmagic" ,file)
5918 ("hdf5" ,hdf5)))
5919 (native-inputs `(("perl" ,perl)))
5920 ;; NCBI-VDB requires SSE capability.
5921 (supported-systems '("i686-linux" "x86_64-linux"))
5922 (home-page "https://github.com/ncbi/ncbi-vdb")
5923 (synopsis "Database engine for genetic information")
5924 (description
5925 "The NCBI-VDB library implements a highly compressed columnar data
5926 warehousing engine that is most often used to store genetic information.
5927 Databases are stored in a portable image within the file system, and can be
5928 accessed/downloaded on demand across HTTP.")
5929 (license license:public-domain)))
5930
5931 (define-public plink
5932 (package
5933 (name "plink")
5934 (version "1.07")
5935 (source
5936 (origin
5937 (method url-fetch)
5938 (uri (string-append
5939 "http://pngu.mgh.harvard.edu/~purcell/plink/dist/plink-"
5940 version "-src.zip"))
5941 (sha256
5942 (base32 "0as8gxm4pjyc8dxmm1sl873rrd7wn5qs0l29nqfnl31x8i467xaa"))
5943 (patches (search-patches "plink-1.07-unclobber-i.patch"
5944 "plink-endian-detection.patch"))))
5945 (build-system gnu-build-system)
5946 (arguments
5947 '(#:tests? #f ;no "check" target
5948 #:make-flags (list (string-append "LIB_LAPACK="
5949 (assoc-ref %build-inputs "lapack")
5950 "/lib/liblapack.so")
5951 "WITH_LAPACK=1"
5952 "FORCE_DYNAMIC=1"
5953 ;; disable phoning home
5954 "WITH_WEBCHECK=")
5955 #:phases
5956 (modify-phases %standard-phases
5957 ;; no "configure" script
5958 (delete 'configure)
5959 (replace 'install
5960 (lambda* (#:key outputs #:allow-other-keys)
5961 (let ((bin (string-append (assoc-ref outputs "out")
5962 "/bin/")))
5963 (install-file "plink" bin)
5964 #t))))))
5965 (inputs
5966 `(("zlib" ,zlib)
5967 ("lapack" ,lapack)))
5968 (native-inputs
5969 `(("unzip" ,unzip)))
5970 (home-page "http://pngu.mgh.harvard.edu/~purcell/plink/")
5971 (synopsis "Whole genome association analysis toolset")
5972 (description
5973 "PLINK is a whole genome association analysis toolset, designed to
5974 perform a range of basic, large-scale analyses in a computationally efficient
5975 manner. The focus of PLINK is purely on analysis of genotype/phenotype data,
5976 so there is no support for steps prior to this (e.g. study design and
5977 planning, generating genotype or CNV calls from raw data). Through
5978 integration with gPLINK and Haploview, there is some support for the
5979 subsequent visualization, annotation and storage of results.")
5980 ;; Code is released under GPLv2, except for fisher.h, which is under
5981 ;; LGPLv2.1+
5982 (license (list license:gpl2 license:lgpl2.1+))))
5983
5984 (define-public plink-ng
5985 (package (inherit plink)
5986 (name "plink-ng")
5987 (version "1.90b4")
5988 (source
5989 (origin
5990 (method git-fetch)
5991 (uri (git-reference
5992 (url "https://github.com/chrchang/plink-ng")
5993 (commit (string-append "v" version))))
5994 (file-name (git-file-name name version))
5995 (sha256
5996 (base32 "02npdwgkpfkdnhw819rhj5kw02a5k5m90b14zq9zzya4hyg929c0"))))
5997 (build-system gnu-build-system)
5998 (arguments
5999 '(#:tests? #f ;no "check" target
6000 #:make-flags (list "BLASFLAGS=-llapack -lopenblas"
6001 "CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
6002 "ZLIB=-lz"
6003 "-f" "Makefile.std")
6004 #:phases
6005 (modify-phases %standard-phases
6006 (add-after 'unpack 'chdir
6007 (lambda _ (chdir "1.9") #t))
6008 (delete 'configure) ; no "configure" script
6009 (replace 'install
6010 (lambda* (#:key outputs #:allow-other-keys)
6011 (let ((bin (string-append (assoc-ref outputs "out")
6012 "/bin/")))
6013 (install-file "plink" bin)
6014 #t))))))
6015 (inputs
6016 `(("zlib" ,zlib)
6017 ("lapack" ,lapack)
6018 ("openblas" ,openblas)))
6019 (home-page "https://www.cog-genomics.org/plink/")
6020 (license license:gpl3+)))
6021
6022 (define-public smithlab-cpp
6023 (let ((revision "1")
6024 (commit "728a097bec88c6f4b8528b685932049e660eff2e"))
6025 (package
6026 (name "smithlab-cpp")
6027 (version (string-append "0." revision "." (string-take commit 7)))
6028 (source (origin
6029 (method git-fetch)
6030 (uri (git-reference
6031 (url "https://github.com/smithlabcode/smithlab_cpp")
6032 (commit commit)))
6033 (file-name (string-append name "-" version "-checkout"))
6034 (sha256
6035 (base32
6036 "0d476lmj312xk77kr9fzrv7z1bv96yfyx0w7y62ycmnfbx32ll74"))))
6037 (build-system gnu-build-system)
6038 (arguments
6039 `(#:modules ((guix build gnu-build-system)
6040 (guix build utils)
6041 (srfi srfi-26))
6042 #:tests? #f ;no "check" target
6043 #:phases
6044 (modify-phases %standard-phases
6045 (add-after 'unpack 'use-samtools-headers
6046 (lambda _
6047 (substitute* '("SAM.cpp"
6048 "SAM.hpp")
6049 (("sam.h") "samtools/sam.h"))
6050 #t))
6051 (replace 'install
6052 (lambda* (#:key outputs #:allow-other-keys)
6053 (let* ((out (assoc-ref outputs "out"))
6054 (lib (string-append out "/lib"))
6055 (include (string-append out "/include/smithlab-cpp")))
6056 (mkdir-p lib)
6057 (mkdir-p include)
6058 (for-each (cut install-file <> lib)
6059 (find-files "." "\\.o$"))
6060 (for-each (cut install-file <> include)
6061 (find-files "." "\\.hpp$")))
6062 #t))
6063 (delete 'configure))))
6064 (inputs
6065 `(("samtools" ,samtools-0.1)
6066 ("zlib" ,zlib)))
6067 (home-page "https://github.com/smithlabcode/smithlab_cpp")
6068 (synopsis "C++ helper library for functions used in Smith lab projects")
6069 (description
6070 "Smithlab CPP is a C++ library that includes functions used in many of
6071 the Smith lab bioinformatics projects, such as a wrapper around Samtools data
6072 structures, classes for genomic regions, mapped sequencing reads, etc.")
6073 (license license:gpl3+))))
6074
6075 (define-public preseq
6076 (package
6077 (name "preseq")
6078 (version "2.0.3")
6079 (source (origin
6080 (method url-fetch)
6081 (uri (string-append "https://github.com/smithlabcode/preseq/"
6082 "releases/download/v" version
6083 "/preseq_v" version ".tar.bz2"))
6084 (sha256
6085 (base32 "149x9xmk1wy1gff85325yfzqc0qk4sgp1w6gbyj9cnji4x1dszbl"))
6086 (modules '((guix build utils)))
6087 (snippet '(begin
6088 ;; Remove bundled samtools.
6089 (delete-file-recursively "samtools")
6090 #t))))
6091 (build-system gnu-build-system)
6092 (arguments
6093 `(#:tests? #f ;no "check" target
6094 #:phases
6095 (modify-phases %standard-phases
6096 (delete 'configure))
6097 #:make-flags
6098 (list (string-append "PREFIX="
6099 (assoc-ref %outputs "out"))
6100 (string-append "LIBBAM="
6101 (assoc-ref %build-inputs "samtools")
6102 "/lib/libbam.a")
6103 (string-append "SMITHLAB_CPP="
6104 (assoc-ref %build-inputs "smithlab-cpp")
6105 "/lib")
6106 "PROGS=preseq"
6107 "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp $(SAMTOOLS_DIR)")))
6108 (inputs
6109 `(("gsl" ,gsl)
6110 ("samtools" ,samtools-0.1)
6111 ("smithlab-cpp" ,smithlab-cpp)
6112 ("zlib" ,zlib)))
6113 (home-page "http://smithlabresearch.org/software/preseq/")
6114 (synopsis "Program for analyzing library complexity")
6115 (description
6116 "The preseq package is aimed at predicting and estimating the complexity
6117 of a genomic sequencing library, equivalent to predicting and estimating the
6118 number of redundant reads from a given sequencing depth and how many will be
6119 expected from additional sequencing using an initial sequencing experiment.
6120 The estimates can then be used to examine the utility of further sequencing,
6121 optimize the sequencing depth, or to screen multiple libraries to avoid low
6122 complexity samples.")
6123 (license license:gpl3+)))
6124
6125 (define-public python-screed
6126 (package
6127 (name "python-screed")
6128 (version "1.0")
6129 (source
6130 (origin
6131 (method url-fetch)
6132 (uri (pypi-uri "screed" version))
6133 (sha256
6134 (base32
6135 "148vcb7w2wr6a4w6vs2bsxanbqibxfk490zbcbg4m61s8669zdjx"))))
6136 (build-system python-build-system)
6137 (arguments
6138 '(#:phases
6139 (modify-phases %standard-phases
6140 ;; Tests must be run after installation, as the "screed" command does
6141 ;; not exist right after building.
6142 (delete 'check)
6143 (add-after 'install 'check
6144 (lambda* (#:key inputs outputs #:allow-other-keys)
6145 (let ((out (assoc-ref outputs "out")))
6146 (setenv "PYTHONPATH"
6147 (string-append out "/lib/python"
6148 (string-take (string-take-right
6149 (assoc-ref inputs "python")
6150 5) 3)
6151 "/site-packages:"
6152 (getenv "PYTHONPATH")))
6153 (setenv "PATH" (string-append out "/bin:" (getenv "PATH"))))
6154 (invoke "python" "setup.py" "test")
6155 #t)))))
6156 (native-inputs
6157 `(("python-pytest" ,python-pytest)
6158 ("python-pytest-cov" ,python-pytest-cov)
6159 ("python-pytest-runner" ,python-pytest-runner)))
6160 (inputs
6161 `(("python-bz2file" ,python-bz2file)))
6162 (home-page "https://github.com/dib-lab/screed/")
6163 (synopsis "Short read sequence database utilities")
6164 (description "Screed parses FASTA and FASTQ files and generates databases.
6165 Values such as sequence name, sequence description, sequence quality and the
6166 sequence itself can be retrieved from these databases.")
6167 (license license:bsd-3)))
6168
6169 (define-public python2-screed
6170 (package-with-python2 python-screed))
6171
6172 (define-public sra-tools
6173 (package
6174 (name "sra-tools")
6175 (version "2.10.6")
6176 (source
6177 (origin
6178 (method git-fetch)
6179 (uri (git-reference
6180 (url "https://github.com/ncbi/sra-tools")
6181 (commit version)))
6182 (file-name (git-file-name name version))
6183 (sha256
6184 (base32
6185 "1cr2mijkfs5sm35ffjs6861qsd1qkgnhnbavdv65zg5d655abbjf"))))
6186 (build-system gnu-build-system)
6187 (arguments
6188 `(#:parallel-build? #f ; not supported
6189 #:tests? #f ; no "check" target
6190 #:make-flags
6191 (list (string-append "DEFAULT_CRT="
6192 (assoc-ref %build-inputs "ncbi-vdb")
6193 "/kfg/certs.kfg")
6194 (string-append "DEFAULT_KFG="
6195 (assoc-ref %build-inputs "ncbi-vdb")
6196 "/kfg/default.kfg")
6197 (string-append "VDB_LIBDIR="
6198 (assoc-ref %build-inputs "ncbi-vdb")
6199 ,(if (string-prefix? "x86_64"
6200 (or (%current-target-system)
6201 (%current-system)))
6202 "/lib64"
6203 "/lib32")))
6204 #:phases
6205 (modify-phases %standard-phases
6206 (add-before 'configure 'set-perl-search-path
6207 (lambda _
6208 ;; Work around "dotless @INC" build failure.
6209 (setenv "PERL5LIB"
6210 (string-append (getcwd) "/setup:"
6211 (getenv "PERL5LIB")))
6212 #t))
6213 (replace 'configure
6214 (lambda* (#:key inputs outputs #:allow-other-keys)
6215 ;; The build system expects a directory containing the sources and
6216 ;; raw build output of ncbi-vdb, including files that are not
6217 ;; installed. Since we are building against an installed version of
6218 ;; ncbi-vdb, the following modifications are needed.
6219 (substitute* "setup/konfigure.perl"
6220 ;; Make the configure script look for the "ilib" directory of
6221 ;; "ncbi-vdb" without first checking for the existence of a
6222 ;; matching library in its "lib" directory.
6223 (("^ my \\$f = File::Spec->catdir\\(\\$libdir, \\$lib\\);")
6224 "my $f = File::Spec->catdir($ilibdir, $ilib);")
6225 ;; Look for interface libraries in ncbi-vdb's "ilib" directory.
6226 (("my \\$ilibdir = File::Spec->catdir\\(\\$builddir, 'ilib'\\);")
6227 "my $ilibdir = File::Spec->catdir($dir, 'ilib');"))
6228
6229 ;; Dynamic linking
6230 (substitute* "tools/copycat/Makefile"
6231 (("smagic-static") "lmagic"))
6232 (substitute* "tools/driver-tool/utf8proc/Makefile"
6233 (("CC\\?=gcc") "myCC=gcc")
6234 (("\\(CC\\)") "(myCC)"))
6235
6236 ;; The 'configure' script doesn't recognize things like
6237 ;; '--enable-fast-install'.
6238 (invoke "./configure"
6239 (string-append "--build-prefix=" (getcwd) "/build")
6240 (string-append "--prefix=" (assoc-ref outputs "out"))
6241 (string-append "--debug")
6242 (string-append "--with-fuse-prefix="
6243 (assoc-ref inputs "fuse"))
6244 (string-append "--with-magic-prefix="
6245 (assoc-ref inputs "libmagic"))
6246 ;; TODO: building with libxml2 fails with linker errors
6247 #;
6248 (string-append "--with-xml2-prefix="
6249 (assoc-ref inputs "libxml2"))
6250 (string-append "--with-ncbi-vdb-sources="
6251 (assoc-ref inputs "ncbi-vdb"))
6252 (string-append "--with-ncbi-vdb-build="
6253 (assoc-ref inputs "ncbi-vdb"))
6254 (string-append "--with-ngs-sdk-prefix="
6255 (assoc-ref inputs "ngs-sdk"))
6256 (string-append "--with-hdf5-prefix="
6257 (assoc-ref inputs "hdf5")))
6258 #t)))))
6259 (native-inputs `(("perl" ,perl)))
6260 (inputs
6261 `(("ngs-sdk" ,ngs-sdk)
6262 ("ncbi-vdb" ,ncbi-vdb)
6263 ("libmagic" ,file)
6264 ("fuse" ,fuse)
6265 ("hdf5" ,hdf5-1.10)
6266 ("zlib" ,zlib)
6267 ("python" ,python-wrapper)))
6268 (home-page
6269 "https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software")
6270 (synopsis "Tools and libraries for reading and writing sequencing data")
6271 (description
6272 "The SRA Toolkit from NCBI is a collection of tools and libraries for
6273 reading of sequencing files from the Sequence Read Archive (SRA) database and
6274 writing files into the .sra format.")
6275 (license license:public-domain)))
6276
6277 (define-public seqan
6278 (package
6279 (name "seqan")
6280 (version "2.4.0")
6281 (source (origin
6282 (method url-fetch)
6283 (uri (string-append "https://github.com/seqan/seqan/releases/"
6284 "download/seqan-v" version
6285 "/seqan-library-" version ".tar.xz"))
6286 (sha256
6287 (base32
6288 "19a1rlxx03qy1i1iriicly68w64yjxbv24g9gdywnfmq998v35yx"))))
6289 ;; The documentation is 7.8MB and the includes are 3.6MB heavy, so it
6290 ;; makes sense to split the outputs.
6291 (outputs '("out" "doc"))
6292 (build-system trivial-build-system)
6293 (arguments
6294 `(#:modules ((guix build utils))
6295 #:builder
6296 (begin
6297 (use-modules (guix build utils))
6298 (let ((tar (assoc-ref %build-inputs "tar"))
6299 (xz (assoc-ref %build-inputs "xz"))
6300 (out (assoc-ref %outputs "out"))
6301 (doc (assoc-ref %outputs "doc")))
6302 (setenv "PATH" (string-append tar "/bin:" xz "/bin"))
6303 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
6304 (chdir (string-append "seqan-library-" ,version))
6305 (copy-recursively "include" (string-append out "/include"))
6306 (copy-recursively "share" (string-append doc "/share"))
6307 #t))))
6308 (native-inputs
6309 `(("source" ,source)
6310 ("tar" ,tar)
6311 ("xz" ,xz)))
6312 (home-page "http://www.seqan.de")
6313 (synopsis "Library for nucleotide sequence analysis")
6314 (description
6315 "SeqAn is a C++ library of efficient algorithms and data structures for
6316 the analysis of sequences with the focus on biological data. It contains
6317 algorithms and data structures for string representation and their
6318 manipulation, online and indexed string search, efficient I/O of
6319 bioinformatics file formats, sequence alignment, and more.")
6320 (license license:bsd-3)))
6321
6322 (define-public seqan-1
6323 (package (inherit seqan)
6324 (name "seqan")
6325 (version "1.4.2")
6326 (source (origin
6327 (method url-fetch)
6328 (uri (string-append "http://packages.seqan.de/seqan-library/"
6329 "seqan-library-" version ".tar.bz2"))
6330 (sha256
6331 (base32
6332 "05s3wrrwn50f81aklfm65i4a749zag1vr8z03k21xm0pdxy47yvp"))))
6333 ;; The documentation is 7.8MB and the includes are 3.6MB heavy, so it
6334 ;; makes sense to split the outputs.
6335 (outputs '("out" "doc"))
6336 (build-system trivial-build-system)
6337 (arguments
6338 `(#:modules ((guix build utils))
6339 #:builder
6340 (begin
6341 (use-modules (guix build utils))
6342 (let ((tar (assoc-ref %build-inputs "tar"))
6343 (bzip (assoc-ref %build-inputs "bzip2"))
6344 (out (assoc-ref %outputs "out"))
6345 (doc (assoc-ref %outputs "doc")))
6346 (setenv "PATH" (string-append tar "/bin:" bzip "/bin"))
6347 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
6348 (chdir (string-append "seqan-library-" ,version))
6349 (copy-recursively "include" (string-append out "/include"))
6350 (copy-recursively "share" (string-append doc "/share"))
6351 #t))))
6352 (native-inputs
6353 `(("source" ,source)
6354 ("tar" ,tar)
6355 ("bzip2" ,bzip2)))))
6356
6357 (define-public seqmagick
6358 (package
6359 (name "seqmagick")
6360 (version "0.8.0")
6361 (source
6362 (origin
6363 (method url-fetch)
6364 (uri (pypi-uri "seqmagick" version))
6365 (sha256
6366 (base32
6367 "0pf98da7i59q47gwrbx0wjk6xlvbybiwphw80w7h4ydjj0579a2b"))))
6368 (build-system python-build-system)
6369 (inputs
6370 `(("python-biopython" ,python-biopython)))
6371 (native-inputs
6372 `(("python-nose" ,python-nose)))
6373 (home-page "https://github.com/fhcrc/seqmagick")
6374 (synopsis "Tools for converting and modifying sequence files")
6375 (description
6376 "Bioinformaticians often have to convert sequence files between formats
6377 and do little manipulations on them, and it's not worth writing scripts for
6378 that. Seqmagick is a utility to expose the file format conversion in
6379 BioPython in a convenient way. Instead of having a big mess of scripts, there
6380 is one that takes arguments.")
6381 (license license:gpl3)))
6382
6383 (define-public seqtk
6384 (package
6385 (name "seqtk")
6386 (version "1.3")
6387 (source (origin
6388 (method git-fetch)
6389 (uri (git-reference
6390 (url "https://github.com/lh3/seqtk")
6391 (commit (string-append "v" version))))
6392 (file-name (git-file-name name version))
6393 (sha256
6394 (base32
6395 "1bfzlqa84b5s1qi22blmmw2s8xdyp9h9ydcq22pfjhh5gab3yz6l"))))
6396 (build-system gnu-build-system)
6397 (arguments
6398 `(#:phases
6399 (modify-phases %standard-phases
6400 (delete 'configure)
6401 (replace 'check
6402 ;; There are no tests, so we just run a sanity check.
6403 (lambda _ (invoke "./seqtk" "seq") #t))
6404 (replace 'install
6405 (lambda* (#:key outputs #:allow-other-keys)
6406 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
6407 (install-file "seqtk" bin)
6408 #t))))))
6409 (inputs
6410 `(("zlib" ,zlib)))
6411 (home-page "https://github.com/lh3/seqtk")
6412 (synopsis "Toolkit for processing biological sequences in FASTA/Q format")
6413 (description
6414 "Seqtk is a fast and lightweight tool for processing sequences in the
6415 FASTA or FASTQ format. It parses both FASTA and FASTQ files which can be
6416 optionally compressed by gzip.")
6417 (license license:expat)))
6418
6419 (define-public snap-aligner
6420 (package
6421 (name "snap-aligner")
6422 (version "1.0beta.18")
6423 (source (origin
6424 (method git-fetch)
6425 (uri (git-reference
6426 (url "https://github.com/amplab/snap")
6427 (commit (string-append "v" version))))
6428 (file-name (git-file-name name version))
6429 (sha256
6430 (base32
6431 "01w3qq4wm07z73vky0cfwlmrbf50n3w722cxrlzxfi99mnb808d8"))))
6432 (build-system gnu-build-system)
6433 (arguments
6434 '(#:phases
6435 (modify-phases %standard-phases
6436 (delete 'configure)
6437 (replace 'check (lambda _ (invoke "./unit_tests") #t))
6438 (replace 'install
6439 (lambda* (#:key outputs #:allow-other-keys)
6440 (let* ((out (assoc-ref outputs "out"))
6441 (bin (string-append out "/bin")))
6442 (install-file "snap-aligner" bin)
6443 (install-file "SNAPCommand" bin)
6444 #t))))))
6445 (native-inputs
6446 `(("zlib" ,zlib)))
6447 (home-page "http://snap.cs.berkeley.edu/")
6448 (synopsis "Short read DNA sequence aligner")
6449 (description
6450 "SNAP is a fast and accurate aligner for short DNA reads. It is
6451 optimized for modern read lengths of 100 bases or higher, and takes advantage
6452 of these reads to align data quickly through a hash-based indexing scheme.")
6453 ;; 32-bit systems are not supported by the unpatched code.
6454 ;; Following the bug reports https://github.com/amplab/snap/issues/68 and
6455 ;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812378 we see that
6456 ;; systems without a lot of memory cannot make good use of this program.
6457 (supported-systems '("x86_64-linux"))
6458 (license license:asl2.0)))
6459
6460 (define-public sortmerna
6461 (package
6462 (name "sortmerna")
6463 (version "2.1b")
6464 (source
6465 (origin
6466 (method git-fetch)
6467 (uri (git-reference
6468 (url "https://github.com/biocore/sortmerna")
6469 (commit version)))
6470 (file-name (git-file-name name version))
6471 (sha256
6472 (base32
6473 "0j3mbz4n25738yijmjbr5r4fyvkgm8v5vn3sshyfvmyqf5q9byqf"))))
6474 (build-system gnu-build-system)
6475 (outputs '("out" ;for binaries
6476 "db")) ;for sequence databases
6477 (arguments
6478 `(#:phases
6479 (modify-phases %standard-phases
6480 (replace 'install
6481 (lambda* (#:key outputs #:allow-other-keys)
6482 (let* ((out (assoc-ref outputs "out"))
6483 (bin (string-append out "/bin"))
6484 (db (assoc-ref outputs "db"))
6485 (share
6486 (string-append db "/share/sortmerna/rRNA_databases")))
6487 (install-file "sortmerna" bin)
6488 (install-file "indexdb_rna" bin)
6489 (for-each (lambda (file)
6490 (install-file file share))
6491 (find-files "rRNA_databases" ".*fasta"))
6492 #t))))))
6493 (inputs
6494 `(("zlib" ,zlib)))
6495 (home-page "https://bioinfo.lifl.fr/RNA/sortmerna/")
6496 (synopsis "Biological sequence analysis tool for NGS reads")
6497 (description
6498 "SortMeRNA is a biological sequence analysis tool for filtering, mapping
6499 and operational taxonomic unit (OTU) picking of next generation
6500 sequencing (NGS) reads. The core algorithm is based on approximate seeds and
6501 allows for fast and sensitive analyses of nucleotide sequences. The main
6502 application of SortMeRNA is filtering rRNA from metatranscriptomic data.")
6503 ;; The source includes x86 specific code
6504 (supported-systems '("x86_64-linux" "i686-linux"))
6505 (license license:lgpl3)))
6506
6507 (define-public star
6508 (package
6509 (name "star")
6510 (version "2.7.3a")
6511 (source (origin
6512 (method git-fetch)
6513 (uri (git-reference
6514 (url "https://github.com/alexdobin/STAR")
6515 (commit version)))
6516 (file-name (git-file-name name version))
6517 (sha256
6518 (base32
6519 "1hgiqw5qhs0pc1xazzihcfd92na02xyq2kb469z04y1v51kpvvjq"))
6520 (modules '((guix build utils)))
6521 (snippet
6522 '(begin
6523 (substitute* "source/Makefile"
6524 (("/bin/rm") "rm"))
6525 ;; Remove pre-built binaries and bundled htslib sources.
6526 (delete-file-recursively "bin/MacOSX_x86_64")
6527 (delete-file-recursively "bin/Linux_x86_64")
6528 (delete-file-recursively "bin/Linux_x86_64_static")
6529 (delete-file-recursively "source/htslib")
6530 #t))))
6531 (build-system gnu-build-system)
6532 (arguments
6533 '(#:tests? #f ;no check target
6534 #:make-flags '("STAR")
6535 #:phases
6536 (modify-phases %standard-phases
6537 (add-after 'unpack 'enter-source-dir
6538 (lambda _ (chdir "source") #t))
6539 (add-after 'enter-source-dir 'make-reproducible
6540 (lambda _
6541 (substitute* "Makefile"
6542 (("(COMPILATION_TIME_PLACE=\")(.*)(\")" _ pre mid post)
6543 (string-append pre "Built with Guix" post)))
6544 #t))
6545 ;; See https://github.com/alexdobin/STAR/pull/562
6546 (add-after 'enter-source-dir 'add-missing-header
6547 (lambda _
6548 (substitute* "SoloReadFeature_inputRecords.cpp"
6549 (("#include \"binarySearch2.h\"" h)
6550 (string-append h "\n#include <math.h>")))
6551 #t))
6552 (add-after 'enter-source-dir 'do-not-use-bundled-htslib
6553 (lambda _
6554 (substitute* "Makefile"
6555 (("(Depend.list: \\$\\(SOURCES\\) parametersDefault\\.xxd) htslib"
6556 _ prefix) prefix))
6557 (substitute* '("BAMfunctions.cpp"
6558 "signalFromBAM.h"
6559 "bam_cat.h"
6560 "bam_cat.c"
6561 "STAR.cpp"
6562 "bamRemoveDuplicates.cpp")
6563 (("#include \"htslib/([^\"]+\\.h)\"" _ header)
6564 (string-append "#include <" header ">")))
6565 (substitute* "IncludeDefine.h"
6566 (("\"htslib/(htslib/[^\"]+.h)\"" _ header)
6567 (string-append "<" header ">")))
6568 #t))
6569 (replace 'install
6570 (lambda* (#:key outputs #:allow-other-keys)
6571 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
6572 (install-file "STAR" bin))
6573 #t))
6574 (delete 'configure))))
6575 (native-inputs
6576 `(("xxd" ,xxd)))
6577 (inputs
6578 `(("htslib" ,htslib)
6579 ("zlib" ,zlib)))
6580 (home-page "https://github.com/alexdobin/STAR")
6581 (synopsis "Universal RNA-seq aligner")
6582 (description
6583 "The Spliced Transcripts Alignment to a Reference (STAR) software is
6584 based on a previously undescribed RNA-seq alignment algorithm that uses
6585 sequential maximum mappable seed search in uncompressed suffix arrays followed
6586 by seed clustering and stitching procedure. In addition to unbiased de novo
6587 detection of canonical junctions, STAR can discover non-canonical splices and
6588 chimeric (fusion) transcripts, and is also capable of mapping full-length RNA
6589 sequences.")
6590 ;; Only 64-bit systems are supported according to the README.
6591 (supported-systems '("x86_64-linux" "mips64el-linux"))
6592 ;; STAR is licensed under GPLv3 or later; htslib is MIT-licensed.
6593 (license license:gpl3+)))
6594
6595 (define-public starlong
6596 (package (inherit star)
6597 (name "starlong")
6598 (arguments
6599 (substitute-keyword-arguments (package-arguments star)
6600 ((#:make-flags flags)
6601 `(list "STARlong"))
6602 ((#:phases phases)
6603 `(modify-phases ,phases
6604 ;; Allow extra long sequence reads.
6605 (add-after 'unpack 'make-extra-long
6606 (lambda _
6607 (substitute* "source/IncludeDefine.h"
6608 (("(#define DEF_readNameLengthMax ).*" _ match)
6609 (string-append match "900000\n")))
6610 #t))
6611 (replace 'install
6612 (lambda* (#:key outputs #:allow-other-keys)
6613 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
6614 (install-file "STARlong" bin))
6615 #t))))))))
6616
6617 (define-public subread
6618 (package
6619 (name "subread")
6620 (version "1.6.0")
6621 (source (origin
6622 (method url-fetch)
6623 (uri (string-append "mirror://sourceforge/subread/subread-"
6624 version "/subread-" version "-source.tar.gz"))
6625 (sha256
6626 (base32
6627 "0ah0n4jx6ksk2m2j7xk385x2qzmk1y4rfc6a4mfrdqrlq721w99i"))))
6628 (build-system gnu-build-system)
6629 (arguments
6630 `(#:tests? #f ;no "check" target
6631 ;; The CC and CCFLAGS variables are set to contain a lot of x86_64
6632 ;; optimizations by default, so we override these flags such that x86_64
6633 ;; flags are only added when the build target is an x86_64 system.
6634 #:make-flags
6635 (list (let ((system ,(or (%current-target-system)
6636 (%current-system)))
6637 (flags '("-ggdb" "-fomit-frame-pointer"
6638 "-ffast-math" "-funroll-loops"
6639 "-fmessage-length=0"
6640 "-O9" "-Wall" "-DMAKE_FOR_EXON"
6641 "-DMAKE_STANDALONE"
6642 "-DSUBREAD_VERSION=\\\"${SUBREAD_VERSION}\\\""))
6643 (flags64 '("-mmmx" "-msse" "-msse2" "-msse3")))
6644 (if (string-prefix? "x86_64" system)
6645 (string-append "CCFLAGS=" (string-join (append flags flags64)))
6646 (string-append "CCFLAGS=" (string-join flags))))
6647 "-f" "Makefile.Linux"
6648 "CC=gcc ${CCFLAGS}")
6649 #:phases
6650 (modify-phases %standard-phases
6651 (add-after 'unpack 'enter-dir
6652 (lambda _ (chdir "src") #t))
6653 (replace 'install
6654 (lambda* (#:key outputs #:allow-other-keys)
6655 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
6656 (mkdir-p bin)
6657 (copy-recursively "../bin" bin))
6658 #t))
6659 ;; no "configure" script
6660 (delete 'configure))))
6661 (inputs `(("zlib" ,zlib)))
6662 (home-page "http://bioinf.wehi.edu.au/subread-package/")
6663 (synopsis "Tool kit for processing next-gen sequencing data")
6664 (description
6665 "The subread package contains the following tools: subread aligner, a
6666 general-purpose read aligner; subjunc aligner: detecting exon-exon junctions
6667 and mapping RNA-seq reads; featureCounts: counting mapped reads for genomic
6668 features; exactSNP: a SNP caller that discovers SNPs by testing signals
6669 against local background noises.")
6670 (license license:gpl3+)))
6671
6672 (define-public stringtie
6673 (package
6674 (name "stringtie")
6675 (version "1.2.1")
6676 (source (origin
6677 (method url-fetch)
6678 (uri (string-append "http://ccb.jhu.edu/software/stringtie/dl/"
6679 "stringtie-" version ".tar.gz"))
6680 (sha256
6681 (base32
6682 "1cqllsc1maq4kh92isi8yadgzbmnf042hlnalpk3y59aph1z3bfz"))
6683 (modules '((guix build utils)))
6684 (snippet
6685 '(begin
6686 (delete-file-recursively "samtools-0.1.18")
6687 #t))))
6688 (build-system gnu-build-system)
6689 (arguments
6690 `(#:tests? #f ;no test suite
6691 #:phases
6692 (modify-phases %standard-phases
6693 ;; no configure script
6694 (delete 'configure)
6695 (add-before 'build 'use-system-samtools
6696 (lambda _
6697 (substitute* "Makefile"
6698 (("stringtie: \\$\\{BAM\\}/libbam\\.a")
6699 "stringtie: "))
6700 (substitute* '("gclib/GBam.h"
6701 "gclib/GBam.cpp")
6702 (("#include \"(bam|sam|kstring).h\"" _ header)
6703 (string-append "#include <samtools/" header ".h>")))
6704 #t))
6705 (add-after 'unpack 'remove-duplicate-typedef
6706 (lambda _
6707 ;; This typedef conflicts with the typedef in
6708 ;; glibc-2.25/include/bits/types.h
6709 (substitute* "gclib/GThreads.h"
6710 (("typedef long long __intmax_t;") ""))
6711 #t))
6712 (replace 'install
6713 (lambda* (#:key outputs #:allow-other-keys)
6714 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
6715 (install-file "stringtie" bin)
6716 #t))))))
6717 (inputs
6718 `(("samtools" ,samtools-0.1)
6719 ("zlib" ,zlib)))
6720 (home-page "http://ccb.jhu.edu/software/stringtie/")
6721 (synopsis "Transcript assembly and quantification for RNA-Seq data")
6722 (description
6723 "StringTie is a fast and efficient assembler of RNA-Seq sequence
6724 alignments into potential transcripts. It uses a novel network flow algorithm
6725 as well as an optional de novo assembly step to assemble and quantitate
6726 full-length transcripts representing multiple splice variants for each gene
6727 locus. Its input can include not only the alignments of raw reads used by
6728 other transcript assemblers, but also alignments of longer sequences that have
6729 been assembled from those reads. To identify differentially expressed genes
6730 between experiments, StringTie's output can be processed either by the
6731 Cuffdiff or Ballgown programs.")
6732 (license license:artistic2.0)))
6733
6734 (define-public taxtastic
6735 (package
6736 (name "taxtastic")
6737 (version "0.8.11")
6738 (source (origin
6739 ;; The Pypi version does not include tests.
6740 (method git-fetch)
6741 (uri (git-reference
6742 (url "https://github.com/fhcrc/taxtastic")
6743 (commit (string-append "v" version))))
6744 (file-name (git-file-name name version))
6745 (sha256
6746 (base32
6747 "1sv8mkg64jn7zdwf1jj71c16686yrwxk0apb1l8sjszy9p166g0p"))))
6748 (build-system python-build-system)
6749 (arguments
6750 `(#:phases
6751 (modify-phases %standard-phases
6752 (add-after 'unpack 'prepare-directory
6753 (lambda _
6754 ;; The git checkout must be writable for tests.
6755 (for-each make-file-writable (find-files "."))
6756 ;; This test fails, but the error is not caught by the test
6757 ;; framework, so the tests fail...
6758 (substitute* "tests/test_taxit.py"
6759 (("self.cmd_fails\\(''\\)")
6760 "self.cmd_fails('nothing')"))
6761 ;; This version file is expected to be created with git describe.
6762 (mkdir-p "taxtastic/data")
6763 (with-output-to-file "taxtastic/data/ver"
6764 (lambda () (display ,version)))
6765 #t))
6766 (add-after 'unpack 'python37-compatibility
6767 (lambda _
6768 (substitute* "taxtastic/utils.py"
6769 (("import csv") "import csv, errno")
6770 (("os.errno") "errno"))
6771 #t))
6772 (replace 'check
6773 ;; Note, this fails to run with "-v" as it tries to write to a
6774 ;; closed output stream.
6775 (lambda _ (invoke "python" "-m" "unittest") #t)))))
6776 (propagated-inputs
6777 `(("python-sqlalchemy" ,python-sqlalchemy)
6778 ("python-decorator" ,python-decorator)
6779 ("python-biopython" ,python-biopython)
6780 ("python-pandas" ,python-pandas)
6781 ("python-psycopg2" ,python-psycopg2)
6782 ("python-fastalite" ,python-fastalite)
6783 ("python-pyyaml" ,python-pyyaml)
6784 ("python-six" ,python-six)
6785 ("python-jinja2" ,python-jinja2)
6786 ("python-dendropy" ,python-dendropy)))
6787 (home-page "https://github.com/fhcrc/taxtastic")
6788 (synopsis "Tools for taxonomic naming and annotation")
6789 (description
6790 "Taxtastic is software written in python used to build and maintain
6791 reference packages i.e. collections of reference trees, reference alignments,
6792 profiles, and associated taxonomic information.")
6793 (license license:gpl3+)))
6794
6795 (define-public vcftools
6796 (package
6797 (name "vcftools")
6798 (version "0.1.16")
6799 (source (origin
6800 (method url-fetch)
6801 (uri (string-append
6802 "https://github.com/vcftools/vcftools/releases/download/v"
6803 version "/vcftools-" version ".tar.gz"))
6804 (sha256
6805 (base32
6806 "1qqlx7flfv7axrjwkaz6njkscsl1d0jw98ns8d8bh1n1hd1pgz6v"))))
6807 (build-system gnu-build-system)
6808 (arguments
6809 `(#:tests? #f ; no "check" target
6810 #:make-flags (list
6811 "CFLAGS=-O2" ; override "-m64" flag
6812 (string-append "PREFIX=" (assoc-ref %outputs "out"))
6813 (string-append "MANDIR=" (assoc-ref %outputs "out")
6814 "/share/man/man1"))))
6815 (native-inputs
6816 `(("pkg-config" ,pkg-config)))
6817 (inputs
6818 `(("perl" ,perl)
6819 ("zlib" ,zlib)))
6820 (home-page "https://vcftools.github.io/")
6821 (synopsis "Tools for working with VCF files")
6822 (description
6823 "VCFtools is a program package designed for working with VCF files, such
6824 as those generated by the 1000 Genomes Project. The aim of VCFtools is to
6825 provide easily accessible methods for working with complex genetic variation
6826 data in the form of VCF files.")
6827 ;; The license is declared as LGPLv3 in the README and
6828 ;; at https://vcftools.github.io/license.html
6829 (license license:lgpl3)))
6830
6831 (define-public infernal
6832 (package
6833 (name "infernal")
6834 (version "1.1.3")
6835 (source (origin
6836 (method url-fetch)
6837 (uri (string-append "http://eddylab.org/software/infernal/"
6838 "infernal-" version ".tar.gz"))
6839 (sha256
6840 (base32
6841 "0pm8bm3s6nfa0av4x6m6h27lsg12b3lz3jm0fyh1mc77l2isd61v"))))
6842 (build-system gnu-build-system)
6843 (native-inputs
6844 `(("perl" ,perl)
6845 ("python" ,python))) ; for tests
6846 (home-page "http://eddylab.org/infernal/")
6847 (synopsis "Inference of RNA alignments")
6848 (description "Infernal (\"INFERence of RNA ALignment\") is a tool for
6849 searching DNA sequence databases for RNA structure and sequence similarities.
6850 It is an implementation of a special case of profile stochastic context-free
6851 grammars called @dfn{covariance models} (CMs). A CM is like a sequence
6852 profile, but it scores a combination of sequence consensus and RNA secondary
6853 structure consensus, so in many cases, it is more capable of identifying RNA
6854 homologs that conserve their secondary structure more than their primary
6855 sequence.")
6856 ;; Infernal 1.1.3 requires VMX or SSE capability for parallel instructions.
6857 (supported-systems '("i686-linux" "x86_64-linux"))
6858 (license license:bsd-3)))
6859
6860 (define-public r-scde
6861 (package
6862 (name "r-scde")
6863 (version "1.99.2")
6864 (source (origin
6865 (method git-fetch)
6866 (uri (git-reference
6867 (url "https://github.com/hms-dbmi/scde")
6868 (commit version)))
6869 (file-name (git-file-name name version))
6870 (sha256
6871 (base32
6872 "10na2gyka24mszdxf92wz9h2c13hdf1ww30c68gfsw53lvvhhhxb"))))
6873 (build-system r-build-system)
6874 (propagated-inputs
6875 `(("r-rcpp" ,r-rcpp)
6876 ("r-rcpparmadillo" ,r-rcpparmadillo)
6877 ("r-mgcv" ,r-mgcv)
6878 ("r-rook" ,r-rook)
6879 ("r-rjson" ,r-rjson)
6880 ("r-cairo" ,r-cairo)
6881 ("r-rcolorbrewer" ,r-rcolorbrewer)
6882 ("r-edger" ,r-edger)
6883 ("r-quantreg" ,r-quantreg)
6884 ("r-nnet" ,r-nnet)
6885 ("r-rmtstat" ,r-rmtstat)
6886 ("r-extremes" ,r-extremes)
6887 ("r-pcamethods" ,r-pcamethods)
6888 ("r-biocparallel" ,r-biocparallel)
6889 ("r-flexmix" ,r-flexmix)))
6890 (home-page "https://hms-dbmi.github.io/scde/")
6891 (synopsis "R package for analyzing single-cell RNA-seq data")
6892 (description "The SCDE package implements a set of statistical methods for
6893 analyzing single-cell RNA-seq data. SCDE fits individual error models for
6894 single-cell RNA-seq measurements. These models can then be used for
6895 assessment of differential expression between groups of cells, as well as
6896 other types of analysis. The SCDE package also contains the pagoda framework
6897 which applies pathway and gene set overdispersion analysis to identify aspects
6898 of transcriptional heterogeneity among single cells.")
6899 ;; See https://github.com/hms-dbmi/scde/issues/38
6900 (license license:gpl2)))
6901
6902 (define-public r-centipede
6903 (package
6904 (name "r-centipede")
6905 (version "1.2")
6906 (source (origin
6907 (method url-fetch)
6908 (uri (string-append "http://download.r-forge.r-project.org/"
6909 "src/contrib/CENTIPEDE_" version ".tar.gz"))
6910 (sha256
6911 (base32
6912 "1hsx6qgwr0i67fhy9257zj7s0ppncph2hjgbia5nn6nfmj0ax6l9"))))
6913 (build-system r-build-system)
6914 (home-page "http://centipede.uchicago.edu/")
6915 (synopsis "Predict transcription factor binding sites")
6916 (description
6917 "CENTIPEDE applies a hierarchical Bayesian mixture model to infer regions
6918 of the genome that are bound by particular transcription factors. It starts
6919 by identifying a set of candidate binding sites, and then aims to classify the
6920 sites according to whether each site is bound or not bound by a transcription
6921 factor. CENTIPEDE is an unsupervised learning algorithm that discriminates
6922 between two different types of motif instances using as much relevant
6923 information as possible.")
6924 (license (list license:gpl2+ license:gpl3+))))
6925
6926 (define-public r-genefilter
6927 (package
6928 (name "r-genefilter")
6929 (version "1.70.0")
6930 (source
6931 (origin
6932 (method url-fetch)
6933 (uri (bioconductor-uri "genefilter" version))
6934 (sha256
6935 (base32
6936 "1sbbrnq6p90fri0ik6aq2zw26kasw63nyiy7xkzrj6vgyq7x258g"))))
6937 (build-system r-build-system)
6938 (native-inputs
6939 `(("gfortran" ,gfortran)
6940 ("r-knitr" ,r-knitr)))
6941 (propagated-inputs
6942 `(("r-annotate" ,r-annotate)
6943 ("r-annotationdbi" ,r-annotationdbi)
6944 ("r-biobase" ,r-biobase)
6945 ("r-biocgenerics" ,r-biocgenerics)
6946 ("r-survival" ,r-survival)))
6947 (home-page "https://bioconductor.org/packages/genefilter")
6948 (synopsis "Filter genes from high-throughput experiments")
6949 (description
6950 "This package provides basic functions for filtering genes from
6951 high-throughput sequencing experiments.")
6952 (license license:artistic2.0)))
6953
6954 (define-public r-deseq2
6955 (package
6956 (name "r-deseq2")
6957 (version "1.28.1")
6958 (source
6959 (origin
6960 (method url-fetch)
6961 (uri (bioconductor-uri "DESeq2" version))
6962 (sha256
6963 (base32
6964 "0xh12c2skr0bbv893p05gvbismkcnqw8zwh7yz4wmycgajfzg2pp"))))
6965 (properties `((upstream-name . "DESeq2")))
6966 (build-system r-build-system)
6967 (propagated-inputs
6968 `(("r-biobase" ,r-biobase)
6969 ("r-biocgenerics" ,r-biocgenerics)
6970 ("r-biocparallel" ,r-biocparallel)
6971 ("r-genefilter" ,r-genefilter)
6972 ("r-geneplotter" ,r-geneplotter)
6973 ("r-genomicranges" ,r-genomicranges)
6974 ("r-ggplot2" ,r-ggplot2)
6975 ("r-iranges" ,r-iranges)
6976 ("r-locfit" ,r-locfit)
6977 ("r-rcpp" ,r-rcpp)
6978 ("r-rcpparmadillo" ,r-rcpparmadillo)
6979 ("r-s4vectors" ,r-s4vectors)
6980 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6981 (native-inputs
6982 `(("r-knitr" ,r-knitr)))
6983 (home-page "https://bioconductor.org/packages/DESeq2")
6984 (synopsis "Differential gene expression analysis")
6985 (description
6986 "This package provides functions to estimate variance-mean dependence in
6987 count data from high-throughput nucleotide sequencing assays and test for
6988 differential expression based on a model using the negative binomial
6989 distribution.")
6990 (license license:lgpl3+)))
6991
6992 (define-public r-dexseq
6993 (package
6994 (name "r-dexseq")
6995 (version "1.34.1")
6996 (source
6997 (origin
6998 (method url-fetch)
6999 (uri (bioconductor-uri "DEXSeq" version))
7000 (sha256
7001 (base32
7002 "1m03awaw06mfv5gszq23k5apsqqzjqa5rcwp20y4xbpl7bywpsyl"))))
7003 (properties `((upstream-name . "DEXSeq")))
7004 (build-system r-build-system)
7005 (propagated-inputs
7006 `(("r-annotationdbi" ,r-annotationdbi)
7007 ("r-biobase" ,r-biobase)
7008 ("r-biocgenerics" ,r-biocgenerics)
7009 ("r-biocparallel" ,r-biocparallel)
7010 ("r-biomart" ,r-biomart)
7011 ("r-deseq2" ,r-deseq2)
7012 ("r-genefilter" ,r-genefilter)
7013 ("r-geneplotter" ,r-geneplotter)
7014 ("r-genomicranges" ,r-genomicranges)
7015 ("r-hwriter" ,r-hwriter)
7016 ("r-iranges" ,r-iranges)
7017 ("r-rcolorbrewer" ,r-rcolorbrewer)
7018 ("r-rsamtools" ,r-rsamtools)
7019 ("r-s4vectors" ,r-s4vectors)
7020 ("r-statmod" ,r-statmod)
7021 ("r-stringr" ,r-stringr)
7022 ("r-summarizedexperiment" ,r-summarizedexperiment)))
7023 (native-inputs
7024 `(("r-knitr" ,r-knitr)))
7025 (home-page "https://bioconductor.org/packages/DEXSeq")
7026 (synopsis "Inference of differential exon usage in RNA-Seq")
7027 (description
7028 "This package is focused on finding differential exon usage using RNA-seq
7029 exon counts between samples with different experimental designs. It provides
7030 functions that allows the user to make the necessary statistical tests based
7031 on a model that uses the negative binomial distribution to estimate the
7032 variance between biological replicates and generalized linear models for
7033 testing. The package also provides functions for the visualization and
7034 exploration of the results.")
7035 (license license:gpl3+)))
7036
7037 (define-public r-annotationforge
7038 (package
7039 (name "r-annotationforge")
7040 (version "1.30.1")
7041 (source
7042 (origin
7043 (method url-fetch)
7044 (uri (bioconductor-uri "AnnotationForge" version))
7045 (sha256
7046 (base32
7047 "1a2155jxbwc6qr3dcyvp850grhdr7czc7bs3s87ff4sgdl0jp3jw"))))
7048 (properties
7049 `((upstream-name . "AnnotationForge")))
7050 (build-system r-build-system)
7051 (propagated-inputs
7052 `(("r-annotationdbi" ,r-annotationdbi)
7053 ("r-biobase" ,r-biobase)
7054 ("r-biocgenerics" ,r-biocgenerics)
7055 ("r-dbi" ,r-dbi)
7056 ("r-rcurl" ,r-rcurl)
7057 ("r-rsqlite" ,r-rsqlite)
7058 ("r-s4vectors" ,r-s4vectors)
7059 ("r-xml" ,r-xml)))
7060 (native-inputs
7061 `(("r-knitr" ,r-knitr)))
7062 (home-page "https://bioconductor.org/packages/AnnotationForge")
7063 (synopsis "Code for building annotation database packages")
7064 (description
7065 "This package provides code for generating Annotation packages and their
7066 databases. Packages produced are intended to be used with AnnotationDbi.")
7067 (license license:artistic2.0)))
7068
7069 (define-public r-rbgl
7070 (package
7071 (name "r-rbgl")
7072 (version "1.64.0")
7073 (source
7074 (origin
7075 (method url-fetch)
7076 (uri (bioconductor-uri "RBGL" version))
7077 (sha256
7078 (base32
7079 "079599a6xn2i7snfn2vgshkw0c00rrfhj44pvi03ap8id29bkayy"))))
7080 (properties `((upstream-name . "RBGL")))
7081 (build-system r-build-system)
7082 (propagated-inputs
7083 `(("r-bh" ,r-bh)
7084 ("r-graph" ,r-graph)))
7085 (home-page "https://www.bioconductor.org/packages/RBGL")
7086 (synopsis "Interface to the Boost graph library")
7087 (description
7088 "This package provides a fairly extensive and comprehensive interface to
7089 the graph algorithms contained in the Boost library.")
7090 (license license:artistic2.0)))
7091
7092 (define-public r-gseabase
7093 (package
7094 (name "r-gseabase")
7095 (version "1.50.1")
7096 (source
7097 (origin
7098 (method url-fetch)
7099 (uri (bioconductor-uri "GSEABase" version))
7100 (sha256
7101 (base32
7102 "1k4faj53cwvqijad8cf7fcghzxcv9shlbpl8n73bsncc8k192y2j"))))
7103 (properties `((upstream-name . "GSEABase")))
7104 (build-system r-build-system)
7105 (propagated-inputs
7106 `(("r-annotate" ,r-annotate)
7107 ("r-annotationdbi" ,r-annotationdbi)
7108 ("r-biobase" ,r-biobase)
7109 ("r-biocgenerics" ,r-biocgenerics)
7110 ("r-graph" ,r-graph)
7111 ("r-xml" ,r-xml)))
7112 (native-inputs
7113 `(("r-knitr" ,r-knitr)))
7114 (home-page "https://bioconductor.org/packages/GSEABase")
7115 (synopsis "Gene set enrichment data structures and methods")
7116 (description
7117 "This package provides classes and methods to support @dfn{Gene Set
7118 Enrichment Analysis} (GSEA).")
7119 (license license:artistic2.0)))
7120
7121 (define-public r-category
7122 (package
7123 (name "r-category")
7124 (version "2.54.0")
7125 (source
7126 (origin
7127 (method url-fetch)
7128 (uri (bioconductor-uri "Category" version))
7129 (sha256
7130 (base32
7131 "1grspdzk5a4vidnxwcd1jmy1vcn494aydsp3vydx235yv7iqac1b"))))
7132 (properties `((upstream-name . "Category")))
7133 (build-system r-build-system)
7134 (propagated-inputs
7135 `(("r-annotate" ,r-annotate)
7136 ("r-annotationdbi" ,r-annotationdbi)
7137 ("r-biobase" ,r-biobase)
7138 ("r-biocgenerics" ,r-biocgenerics)
7139 ("r-genefilter" ,r-genefilter)
7140 ("r-graph" ,r-graph)
7141 ("r-gseabase" ,r-gseabase)
7142 ("r-matrix" ,r-matrix)
7143 ("r-rbgl" ,r-rbgl)
7144 ("r-dbi" ,r-dbi)))
7145 (home-page "https://bioconductor.org/packages/Category")
7146 (synopsis "Category analysis")
7147 (description
7148 "This package provides a collection of tools for performing category
7149 analysis.")
7150 (license license:artistic2.0)))
7151
7152 (define-public r-gostats
7153 (package
7154 (name "r-gostats")
7155 (version "2.54.0")
7156 (source
7157 (origin
7158 (method url-fetch)
7159 (uri (bioconductor-uri "GOstats" version))
7160 (sha256
7161 (base32
7162 "00q39cyv4l28r6s9gjnd0qhl7h80vmwp4lpmchisqzj44xzyics9"))))
7163 (properties `((upstream-name . "GOstats")))
7164 (build-system r-build-system)
7165 (propagated-inputs
7166 `(("r-annotate" ,r-annotate)
7167 ("r-annotationdbi" ,r-annotationdbi)
7168 ("r-annotationforge" ,r-annotationforge)
7169 ("r-biobase" ,r-biobase)
7170 ("r-category" ,r-category)
7171 ("r-go-db" ,r-go-db)
7172 ("r-graph" ,r-graph)
7173 ("r-rgraphviz" ,r-rgraphviz)
7174 ("r-rbgl" ,r-rbgl)))
7175 (home-page "https://bioconductor.org/packages/GOstats")
7176 (synopsis "Tools for manipulating GO and microarrays")
7177 (description
7178 "This package provides a set of tools for interacting with GO and
7179 microarray data. A variety of basic manipulation tools for graphs, hypothesis
7180 testing and other simple calculations.")
7181 (license license:artistic2.0)))
7182
7183 (define-public r-shortread
7184 (package
7185 (name "r-shortread")
7186 (version "1.46.0")
7187 (source
7188 (origin
7189 (method url-fetch)
7190 (uri (bioconductor-uri "ShortRead" version))
7191 (sha256
7192 (base32
7193 "0l4kdln69y6yhln0xiv2jmpxg05fjcglln406p43a2bqvk2lr03d"))))
7194 (properties `((upstream-name . "ShortRead")))
7195 (build-system r-build-system)
7196 (inputs
7197 `(("zlib" ,zlib)))
7198 (propagated-inputs
7199 `(("r-biobase" ,r-biobase)
7200 ("r-biocgenerics" ,r-biocgenerics)
7201 ("r-biocparallel" ,r-biocparallel)
7202 ("r-biostrings" ,r-biostrings)
7203 ("r-genomeinfodb" ,r-genomeinfodb)
7204 ("r-genomicalignments" ,r-genomicalignments)
7205 ("r-genomicranges" ,r-genomicranges)
7206 ("r-hwriter" ,r-hwriter)
7207 ("r-iranges" ,r-iranges)
7208 ("r-lattice" ,r-lattice)
7209 ("r-latticeextra" ,r-latticeextra)
7210 ("r-rsamtools" ,r-rsamtools)
7211 ("r-s4vectors" ,r-s4vectors)
7212 ("r-xvector" ,r-xvector)
7213 ("r-zlibbioc" ,r-zlibbioc)))
7214 (home-page "https://bioconductor.org/packages/ShortRead")
7215 (synopsis "FASTQ input and manipulation tools")
7216 (description
7217 "This package implements sampling, iteration, and input of FASTQ files.
7218 It includes functions for filtering and trimming reads, and for generating a
7219 quality assessment report. Data are represented as
7220 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
7221 purposes. The package also contains legacy support for early single-end,
7222 ungapped alignment formats.")
7223 (license license:artistic2.0)))
7224
7225 (define-public r-systempiper
7226 (package
7227 (name "r-systempiper")
7228 (version "1.22.0")
7229 (source
7230 (origin
7231 (method url-fetch)
7232 (uri (bioconductor-uri "systemPipeR" version))
7233 (sha256
7234 (base32
7235 "01ilhlrvy28jfdyxjria4024yryj5zgympgqznw17g3y3az78kk2"))))
7236 (properties `((upstream-name . "systemPipeR")))
7237 (build-system r-build-system)
7238 (propagated-inputs
7239 `(("r-annotate" ,r-annotate)
7240 ("r-assertthat" ,r-assertthat)
7241 ("r-batchtools" ,r-batchtools)
7242 ("r-biostrings" ,r-biostrings)
7243 ("r-deseq2" ,r-deseq2)
7244 ("r-dot" ,r-dot)
7245 ("r-edger" ,r-edger)
7246 ("r-genomicfeatures" ,r-genomicfeatures)
7247 ("r-genomicranges" ,r-genomicranges)
7248 ("r-ggplot2" ,r-ggplot2)
7249 ("r-go-db" ,r-go-db)
7250 ("r-gostats" ,r-gostats)
7251 ("r-limma" ,r-limma)
7252 ("r-magrittr" ,r-magrittr)
7253 ("r-pheatmap" ,r-pheatmap)
7254 ("r-rjson" ,r-rjson)
7255 ("r-rsamtools" ,r-rsamtools)
7256 ("r-rsvg" ,r-rsvg)
7257 ("r-shortread" ,r-shortread)
7258 ("r-stringr" ,r-stringr)
7259 ("r-summarizedexperiment" ,r-summarizedexperiment)
7260 ("r-yaml" ,r-yaml)
7261 ("r-variantannotation" ,r-variantannotation)))
7262 (native-inputs
7263 `(("r-knitr" ,r-knitr)))
7264 (home-page "https://github.com/tgirke/systemPipeR")
7265 (synopsis "Next generation sequencing workflow and reporting environment")
7266 (description
7267 "This R package provides tools for building and running automated
7268 end-to-end analysis workflows for a wide range of @dfn{next generation
7269 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
7270 Important features include a uniform workflow interface across different NGS
7271 applications, automated report generation, and support for running both R and
7272 command-line software, such as NGS aligners or peak/variant callers, on local
7273 computers or compute clusters. Efficient handling of complex sample sets and
7274 experimental designs is facilitated by a consistently implemented sample
7275 annotation infrastructure.")
7276 (license license:artistic2.0)))
7277
7278 (define-public r-grohmm
7279 (package
7280 (name "r-grohmm")
7281 (version "1.22.0")
7282 (source
7283 (origin
7284 (method url-fetch)
7285 (uri (bioconductor-uri "groHMM" version))
7286 (sha256
7287 (base32
7288 "04z9qq1xwdsaxbqhyld37w0ybvzly9pc1hcyrnwdbyjwd7n1fncb"))))
7289 (properties `((upstream-name . "groHMM")))
7290 (build-system r-build-system)
7291 (propagated-inputs
7292 `(("r-genomeinfodb" ,r-genomeinfodb)
7293 ("r-genomicalignments" ,r-genomicalignments)
7294 ("r-genomicranges" ,r-genomicranges)
7295 ("r-iranges" ,r-iranges)
7296 ("r-mass" ,r-mass)
7297 ("r-rtracklayer" ,r-rtracklayer)
7298 ("r-s4vectors" ,r-s4vectors)))
7299 (home-page "https://github.com/Kraus-Lab/groHMM")
7300 (synopsis "GRO-seq analysis pipeline")
7301 (description
7302 "This package provides a pipeline for the analysis of GRO-seq data.")
7303 (license license:gpl3+)))
7304
7305 (define-public vsearch
7306 (package
7307 (name "vsearch")
7308 (version "2.9.1")
7309 (source
7310 (origin
7311 (method git-fetch)
7312 (uri (git-reference
7313 (url "https://github.com/torognes/vsearch")
7314 (commit (string-append "v" version))))
7315 (file-name (git-file-name name version))
7316 (sha256
7317 (base32
7318 "0vhrpjfdf75ba04b24xknp41790cvcgwl0vgpy7qbzj5xh2521ss"))
7319 (patches (search-patches "vsearch-unbundle-cityhash.patch"))
7320 (snippet
7321 '(begin
7322 ;; Remove bundled cityhash sources. The vsearch source is adjusted
7323 ;; for this in the patch.
7324 (delete-file "src/city.h")
7325 (delete-file "src/citycrc.h")
7326 (delete-file "src/city.cc")
7327 #t))))
7328 (build-system gnu-build-system)
7329 (inputs
7330 `(("zlib" ,zlib)
7331 ("bzip2" ,bzip2)
7332 ("cityhash" ,cityhash)))
7333 (native-inputs
7334 `(("autoconf" ,autoconf)
7335 ("automake" ,automake)))
7336 (synopsis "Sequence search tools for metagenomics")
7337 (description
7338 "VSEARCH supports DNA sequence searching, clustering, chimera detection,
7339 dereplication, pairwise alignment, shuffling, subsampling, sorting and
7340 masking. The tool takes advantage of parallelism in the form of SIMD
7341 vectorization as well as multiple threads to perform accurate alignments at
7342 high speed. VSEARCH uses an optimal global aligner (full dynamic programming
7343 Needleman-Wunsch).")
7344 (home-page "https://github.com/torognes/vsearch")
7345 ;; vsearch uses non-portable SSE intrinsics so building fails on other
7346 ;; platforms.
7347 (supported-systems '("x86_64-linux"))
7348 ;; Dual licensed; also includes public domain source.
7349 (license (list license:gpl3 license:bsd-2))))
7350
7351 (define-public pardre
7352 (package
7353 (name "pardre")
7354 ;; The source of 1.1.5 changed in place, so we append "-1" to the version.
7355 (version "1.1.5-1")
7356 (source
7357 (origin
7358 (method url-fetch)
7359 (uri (string-append "mirror://sourceforge/pardre/ParDRe-rel"
7360 "1.1.5" ".tar.gz"))
7361 (sha256
7362 (base32
7363 "17j73nc0viq4f6qj50nrndsrif5d6b71q8fl87m54psiv0ilns2b"))))
7364 (build-system gnu-build-system)
7365 (arguments
7366 `(#:tests? #f ; no tests included
7367 #:phases
7368 (modify-phases %standard-phases
7369 (delete 'configure)
7370 (replace 'install
7371 (lambda* (#:key outputs #:allow-other-keys)
7372 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
7373 (install-file "ParDRe" bin)
7374 #t))))))
7375 (inputs
7376 `(("openmpi" ,openmpi)
7377 ("zlib" ,zlib)))
7378 (synopsis "Parallel tool to remove duplicate DNA reads")
7379 (description
7380 "ParDRe is a parallel tool to remove duplicate genetic sequence reads.
7381 Duplicate reads can be seen as identical or nearly identical sequences with
7382 some mismatches. This tool lets users avoid the analysis of unnecessary
7383 reads, reducing the time of subsequent procedures with the
7384 dataset (e.g. assemblies, mappings, etc.). The tool is implemented with MPI
7385 in order to exploit the parallel capabilities of multicore clusters. It is
7386 faster than multithreaded counterparts (end of 2015) for the same number of
7387 cores and, thanks to the message-passing technology, it can be executed on
7388 clusters.")
7389 (home-page "https://sourceforge.net/projects/pardre/")
7390 (license license:gpl3+)))
7391
7392 (define-public ruby-bio-kseq
7393 (package
7394 (name "ruby-bio-kseq")
7395 (version "0.0.2")
7396 (source
7397 (origin
7398 (method url-fetch)
7399 (uri (rubygems-uri "bio-kseq" version))
7400 (sha256
7401 (base32
7402 "1xyaha46khb5jc6wzkbf7040jagac49jbimn0vcrzid0j8jdikrz"))))
7403 (build-system ruby-build-system)
7404 (arguments
7405 `(#:test-target "spec"))
7406 (native-inputs
7407 `(("bundler" ,bundler)
7408 ("ruby-rspec" ,ruby-rspec)
7409 ("ruby-rake-compiler" ,ruby-rake-compiler)))
7410 (inputs
7411 `(("zlib" ,zlib)))
7412 (synopsis "Ruby bindings for the kseq.h FASTA/Q parser")
7413 (description
7414 "@code{Bio::Kseq} provides ruby bindings to the @code{kseq.h} FASTA and
7415 FASTQ parsing code. It provides a fast iterator over sequences and their
7416 quality scores.")
7417 (home-page "https://github.com/gusevfe/bio-kseq")
7418 (license license:expat)))
7419
7420 (define-public bio-locus
7421 (package
7422 (name "bio-locus")
7423 (version "0.0.7")
7424 (source
7425 (origin
7426 (method url-fetch)
7427 (uri (rubygems-uri "bio-locus" version))
7428 (sha256
7429 (base32
7430 "02vmrxyimkj9sahsp4zhfhnmbvz6dbbqz1y01vglf8cbwvkajfl0"))))
7431 (build-system ruby-build-system)
7432 (native-inputs
7433 `(("ruby-rspec" ,ruby-rspec)))
7434 (synopsis "Tool for fast querying of genome locations")
7435 (description
7436 "Bio-locus is a tabix-like tool for fast querying of genome
7437 locations. Many file formats in bioinformatics contain records that
7438 start with a chromosome name and a position for a SNP, or a start-end
7439 position for indels. Bio-locus allows users to store this chr+pos or
7440 chr+pos+alt information in a database.")
7441 (home-page "https://github.com/pjotrp/bio-locus")
7442 (license license:expat)))
7443
7444 (define-public bio-blastxmlparser
7445 (package
7446 (name "bio-blastxmlparser")
7447 (version "2.0.4")
7448 (source (origin
7449 (method url-fetch)
7450 (uri (rubygems-uri "bio-blastxmlparser" version))
7451 (sha256
7452 (base32
7453 "1wf4qygcmdjgcqm6flmvsagfr1gs9lf63mj32qv3z1f481zc5692"))))
7454 (build-system ruby-build-system)
7455 (propagated-inputs
7456 `(("ruby-bio-logger" ,ruby-bio-logger)
7457 ("ruby-nokogiri" ,ruby-nokogiri)))
7458 (inputs
7459 `(("ruby-rspec" ,ruby-rspec)))
7460 (synopsis "Fast big data BLAST XML parser and library")
7461 (description
7462 "Very fast parallel big-data BLAST XML file parser which can be used as
7463 command line utility. Use blastxmlparser to: Parse BLAST XML; filter output;
7464 generate FASTA, JSON, YAML, RDF, JSON-LD, HTML, CSV, tabular output etc.")
7465 (home-page "https://github.com/pjotrp/blastxmlparser")
7466 (license license:expat)))
7467
7468 (define-public bioruby
7469 (package
7470 (name "bioruby")
7471 (version "1.5.2")
7472 (source
7473 (origin
7474 (method url-fetch)
7475 (uri (rubygems-uri "bio" version))
7476 (sha256
7477 (base32
7478 "1d56amdsjv1mag7m6gv2w0xij8hqx1v5xbdjsix8sp3yp36m7938"))))
7479 (build-system ruby-build-system)
7480 (propagated-inputs
7481 `(("ruby-libxml" ,ruby-libxml)))
7482 (native-inputs
7483 `(("which" ,which))) ; required for test phase
7484 (arguments
7485 `(#:phases
7486 (modify-phases %standard-phases
7487 (add-before 'build 'patch-test-command
7488 (lambda _
7489 (substitute* '("test/functional/bio/test_command.rb")
7490 (("/bin/sh") (which "sh")))
7491 (substitute* '("test/functional/bio/test_command.rb")
7492 (("/bin/ls") (which "ls")))
7493 (substitute* '("test/functional/bio/test_command.rb")
7494 (("which") (which "which")))
7495 (substitute* '("test/functional/bio/test_command.rb",
7496 "test/data/command/echoarg2.sh")
7497 (("/bin/echo") (which "echo")))
7498 #t)))))
7499 (synopsis "Ruby library, shell and utilities for bioinformatics")
7500 (description "BioRuby comes with a comprehensive set of Ruby development
7501 tools and libraries for bioinformatics and molecular biology. BioRuby has
7502 components for sequence analysis, pathway analysis, protein modelling and
7503 phylogenetic analysis; it supports many widely used data formats and provides
7504 easy access to databases, external programs and public web services, including
7505 BLAST, KEGG, GenBank, MEDLINE and GO.")
7506 (home-page "http://bioruby.org/")
7507 ;; Code is released under Ruby license, except for setup
7508 ;; (LGPLv2.1+) and scripts in samples (which have GPL2 and GPL2+)
7509 (license (list license:ruby license:lgpl2.1+ license:gpl2+ ))))
7510
7511 (define-public r-biocviews
7512 (package
7513 (name "r-biocviews")
7514 (version "1.56.2")
7515 (source (origin
7516 (method url-fetch)
7517 (uri (bioconductor-uri "biocViews" version))
7518 (sha256
7519 (base32
7520 "0kw0qfm1fw5yv2rbz6x23431rh0fnzj66f2bls7j285biyjmmx7w"))))
7521 (properties
7522 `((upstream-name . "biocViews")))
7523 (build-system r-build-system)
7524 (propagated-inputs
7525 `(("r-biobase" ,r-biobase)
7526 ("r-biocmanager" ,r-biocmanager)
7527 ("r-graph" ,r-graph)
7528 ("r-rbgl" ,r-rbgl)
7529 ("r-rcurl" ,r-rcurl)
7530 ("r-xml" ,r-xml)
7531 ("r-runit" ,r-runit)))
7532 (home-page "https://bioconductor.org/packages/biocViews")
7533 (synopsis "Bioconductor package categorization helper")
7534 (description "The purpose of biocViews is to create HTML pages that
7535 categorize packages in a Bioconductor package repository according to keywords,
7536 also known as views, in a controlled vocabulary.")
7537 (license license:artistic2.0)))
7538
7539 (define-public r-biocstyle
7540 (package
7541 (name "r-biocstyle")
7542 (version "2.16.0")
7543 (source (origin
7544 (method url-fetch)
7545 (uri (bioconductor-uri "BiocStyle" version))
7546 (sha256
7547 (base32
7548 "07rjl2n4sazdg581zh7w3yykzphgr2gpz41ba4ryqs7347vh9nbf"))))
7549 (properties
7550 `((upstream-name . "BiocStyle")))
7551 (build-system r-build-system)
7552 (propagated-inputs
7553 `(("r-biocmanager" ,r-biocmanager)
7554 ("r-bookdown" ,r-bookdown)
7555 ("r-knitr" ,r-knitr)
7556 ("r-rmarkdown" ,r-rmarkdown)
7557 ("r-yaml" ,r-yaml)))
7558 (native-inputs
7559 `(("r-knitr" ,r-knitr)))
7560 (home-page "https://bioconductor.org/packages/BiocStyle")
7561 (synopsis "Bioconductor formatting styles")
7562 (description "This package provides standard formatting styles for
7563 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
7564 functionality.")
7565 (license license:artistic2.0)))
7566
7567 (define-public r-bioccheck
7568 (package
7569 (name "r-bioccheck")
7570 (version "1.24.0")
7571 (source (origin
7572 (method url-fetch)
7573 (uri (bioconductor-uri "BiocCheck" version))
7574 (sha256
7575 (base32
7576 "1p9ys18sn1crxw1iac2jdgqvwpb5hjd9nfxx0qn0ncrv0b550mny"))))
7577 (properties
7578 `((upstream-name . "BiocCheck")))
7579 (build-system r-build-system)
7580 (arguments
7581 '(#:phases
7582 (modify-phases %standard-phases
7583 ;; This package can be used by calling BiocCheck(<package>) from
7584 ;; within R, or by running R CMD BiocCheck <package>. This phase
7585 ;; makes sure the latter works. For this to work, the BiocCheck
7586 ;; script must be somewhere on the PATH (not the R bin directory).
7587 (add-after 'install 'install-bioccheck-subcommand
7588 (lambda* (#:key outputs #:allow-other-keys)
7589 (let* ((out (assoc-ref outputs "out"))
7590 (dest-dir (string-append out "/bin"))
7591 (script-dir
7592 (string-append out "/site-library/BiocCheck/script/")))
7593 (mkdir-p dest-dir)
7594 (symlink (string-append script-dir "/checkBadDeps.R")
7595 (string-append dest-dir "/checkBadDeps.R"))
7596 (symlink (string-append script-dir "/BiocCheck")
7597 (string-append dest-dir "/BiocCheck")))
7598 #t)))))
7599 (propagated-inputs
7600 `(("r-codetools" ,r-codetools)
7601 ("r-graph" ,r-graph)
7602 ("r-httr" ,r-httr)
7603 ("r-knitr" ,r-knitr)
7604 ("r-optparse" ,r-optparse)
7605 ("r-biocmanager" ,r-biocmanager)
7606 ("r-biocviews" ,r-biocviews)
7607 ("r-stringdist" ,r-stringdist)))
7608 (native-inputs
7609 `(("r-knitr" ,r-knitr)))
7610 (home-page "https://bioconductor.org/packages/BiocCheck")
7611 (synopsis "Executes Bioconductor-specific package checks")
7612 (description "This package contains tools to perform additional quality
7613 checks on R packages that are to be submitted to the Bioconductor repository.")
7614 (license license:artistic2.0)))
7615
7616 (define-public r-s4vectors
7617 (package
7618 (name "r-s4vectors")
7619 (version "0.26.1")
7620 (source (origin
7621 (method url-fetch)
7622 (uri (bioconductor-uri "S4Vectors" version))
7623 (sha256
7624 (base32
7625 "1ddr3ngyczx332zw9ai1a6h7442lgrbfcj8vrhvbkdkzqwj14xmb"))))
7626 (properties
7627 `((upstream-name . "S4Vectors")))
7628 (build-system r-build-system)
7629 (propagated-inputs
7630 `(("r-biocgenerics" ,r-biocgenerics)))
7631 (home-page "https://bioconductor.org/packages/S4Vectors")
7632 (synopsis "S4 implementation of vectors and lists")
7633 (description
7634 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
7635 classes and a set of generic functions that extend the semantic of ordinary
7636 vectors and lists in R. Package developers can easily implement vector-like
7637 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
7638 In addition, a few low-level concrete subclasses of general interest (e.g.
7639 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
7640 S4Vectors package itself.")
7641 (license license:artistic2.0)))
7642
7643 (define-public r-iranges
7644 (package
7645 (name "r-iranges")
7646 (version "2.22.2")
7647 (source (origin
7648 (method url-fetch)
7649 (uri (bioconductor-uri "IRanges" version))
7650 (sha256
7651 (base32
7652 "1y24jw62806wp2afiyj1x6n00gj7d3323klqdypra9q43pg1w49d"))))
7653 (properties
7654 `((upstream-name . "IRanges")))
7655 (build-system r-build-system)
7656 (propagated-inputs
7657 `(("r-biocgenerics" ,r-biocgenerics)
7658 ("r-s4vectors" ,r-s4vectors)))
7659 (home-page "https://bioconductor.org/packages/IRanges")
7660 (synopsis "Infrastructure for manipulating intervals on sequences")
7661 (description
7662 "This package provides efficient low-level and highly reusable S4 classes
7663 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
7664 generally, data that can be organized sequentially (formally defined as
7665 @code{Vector} objects), as well as views on these @code{Vector} objects.
7666 Efficient list-like classes are also provided for storing big collections of
7667 instances of the basic classes. All classes in the package use consistent
7668 naming and share the same rich and consistent \"Vector API\" as much as
7669 possible.")
7670 (license license:artistic2.0)))
7671
7672 (define-public r-genomeinfodbdata
7673 (package
7674 (name "r-genomeinfodbdata")
7675 (version "1.2.0")
7676 (source (origin
7677 (method url-fetch)
7678 ;; We cannot use bioconductor-uri here because this tarball is
7679 ;; located under "data/annotation/" instead of "bioc/".
7680 (uri (string-append "https://bioconductor.org/packages/release/"
7681 "data/annotation/src/contrib/GenomeInfoDbData_"
7682 version ".tar.gz"))
7683 (sha256
7684 (base32
7685 "0di6nlqpsyqf693k2na65ayqldih563x3zfrczpqc5q2hl5kg35c"))))
7686 (properties
7687 `((upstream-name . "GenomeInfoDbData")))
7688 (build-system r-build-system)
7689 (home-page "https://bioconductor.org/packages/GenomeInfoDbData")
7690 (synopsis "Species and taxonomy ID look up tables for GenomeInfoDb")
7691 (description "This package contains data for mapping between NCBI taxonomy
7692 ID and species. It is used by functions in the GenomeInfoDb package.")
7693 (license license:artistic2.0)))
7694
7695 (define-public r-genomeinfodb
7696 (package
7697 (name "r-genomeinfodb")
7698 (version "1.24.2")
7699 (source (origin
7700 (method url-fetch)
7701 (uri (bioconductor-uri "GenomeInfoDb" version))
7702 (sha256
7703 (base32
7704 "1cqs53p4m5q1dr59war72bccphy01ilw4xra24fmngrv4x32rznd"))))
7705 (properties
7706 `((upstream-name . "GenomeInfoDb")))
7707 (build-system r-build-system)
7708 (propagated-inputs
7709 `(("r-biocgenerics" ,r-biocgenerics)
7710 ("r-genomeinfodbdata" ,r-genomeinfodbdata)
7711 ("r-iranges" ,r-iranges)
7712 ("r-rcurl" ,r-rcurl)
7713 ("r-s4vectors" ,r-s4vectors)))
7714 (native-inputs
7715 `(("r-knitr" ,r-knitr)))
7716 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
7717 (synopsis "Utilities for manipulating chromosome identifiers")
7718 (description
7719 "This package contains data and functions that define and allow
7720 translation between different chromosome sequence naming conventions (e.g.,
7721 \"chr1\" versus \"1\"), including a function that attempts to place sequence
7722 names in their natural, rather than lexicographic, order.")
7723 (license license:artistic2.0)))
7724
7725 (define-public r-edger
7726 (package
7727 (name "r-edger")
7728 (version "3.30.3")
7729 (source (origin
7730 (method url-fetch)
7731 (uri (bioconductor-uri "edgeR" version))
7732 (sha256
7733 (base32
7734 "1z9bkg08rgqn3jm2s4ndbj641w33wl8jd3j6m5if6h2nnw6011ic"))))
7735 (properties `((upstream-name . "edgeR")))
7736 (build-system r-build-system)
7737 (propagated-inputs
7738 `(("r-limma" ,r-limma)
7739 ("r-locfit" ,r-locfit)
7740 ("r-rcpp" ,r-rcpp)
7741 ("r-statmod" ,r-statmod))) ;for estimateDisp
7742 (home-page "http://bioinf.wehi.edu.au/edgeR")
7743 (synopsis "EdgeR does empirical analysis of digital gene expression data")
7744 (description "This package can do differential expression analysis of
7745 RNA-seq expression profiles with biological replication. It implements a range
7746 of statistical methodology based on the negative binomial distributions,
7747 including empirical Bayes estimation, exact tests, generalized linear models
7748 and quasi-likelihood tests. It be applied to differential signal analysis of
7749 other types of genomic data that produce counts, including ChIP-seq, SAGE and
7750 CAGE.")
7751 (license license:gpl2+)))
7752
7753 (define-public r-variantannotation
7754 (package
7755 (name "r-variantannotation")
7756 (version "1.34.0")
7757 (source (origin
7758 (method url-fetch)
7759 (uri (bioconductor-uri "VariantAnnotation" version))
7760 (sha256
7761 (base32
7762 "09y6ymwky839nb0y7y93w810hk9mvwqn7595q1276c28dkddiqvw"))))
7763 (properties
7764 `((upstream-name . "VariantAnnotation")))
7765 (inputs
7766 `(("zlib" ,zlib)))
7767 (propagated-inputs
7768 `(("r-annotationdbi" ,r-annotationdbi)
7769 ("r-biobase" ,r-biobase)
7770 ("r-biocgenerics" ,r-biocgenerics)
7771 ("r-biostrings" ,r-biostrings)
7772 ("r-bsgenome" ,r-bsgenome)
7773 ("r-dbi" ,r-dbi)
7774 ("r-genomeinfodb" ,r-genomeinfodb)
7775 ("r-genomicfeatures" ,r-genomicfeatures)
7776 ("r-genomicranges" ,r-genomicranges)
7777 ("r-iranges" ,r-iranges)
7778 ("r-summarizedexperiment" ,r-summarizedexperiment)
7779 ("r-rhtslib" ,r-rhtslib)
7780 ("r-rsamtools" ,r-rsamtools)
7781 ("r-rtracklayer" ,r-rtracklayer)
7782 ("r-s4vectors" ,r-s4vectors)
7783 ("r-xvector" ,r-xvector)
7784 ("r-zlibbioc" ,r-zlibbioc)))
7785 (build-system r-build-system)
7786 (home-page "https://bioconductor.org/packages/VariantAnnotation")
7787 (synopsis "Package for annotation of genetic variants")
7788 (description "This R package can annotate variants, compute amino acid
7789 coding changes and predict coding outcomes.")
7790 (license license:artistic2.0)))
7791
7792 (define-public r-limma
7793 (package
7794 (name "r-limma")
7795 (version "3.44.3")
7796 (source (origin
7797 (method url-fetch)
7798 (uri (bioconductor-uri "limma" version))
7799 (sha256
7800 (base32
7801 "09fnqxx4rzq5n447aqg2l6y0idfwgz2jxz99sifxsr2q8afzbcj6"))))
7802 (build-system r-build-system)
7803 (home-page "http://bioinf.wehi.edu.au/limma")
7804 (synopsis "Package for linear models for microarray and RNA-seq data")
7805 (description "This package can be used for the analysis of gene expression
7806 studies, especially the use of linear models for analysing designed experiments
7807 and the assessment of differential expression. The analysis methods apply to
7808 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
7809 (license license:gpl2+)))
7810
7811 (define-public r-xvector
7812 (package
7813 (name "r-xvector")
7814 (version "0.28.0")
7815 (source (origin
7816 (method url-fetch)
7817 (uri (bioconductor-uri "XVector" version))
7818 (sha256
7819 (base32
7820 "11h1hszv4798q1gbx8r6zf8vlaqx4v9ql0lbh2xaxybp66a03pvc"))))
7821 (properties
7822 `((upstream-name . "XVector")))
7823 (build-system r-build-system)
7824 (arguments
7825 `(#:phases
7826 (modify-phases %standard-phases
7827 (add-after 'unpack 'use-system-zlib
7828 (lambda _
7829 (substitute* "DESCRIPTION"
7830 (("zlibbioc, ") ""))
7831 (substitute* "NAMESPACE"
7832 (("import\\(zlibbioc\\)") ""))
7833 #t)))))
7834 (inputs
7835 `(("zlib" ,zlib)))
7836 (propagated-inputs
7837 `(("r-biocgenerics" ,r-biocgenerics)
7838 ("r-iranges" ,r-iranges)
7839 ("r-s4vectors" ,r-s4vectors)))
7840 (home-page "https://bioconductor.org/packages/XVector")
7841 (synopsis "Representation and manpulation of external sequences")
7842 (description
7843 "This package provides memory efficient S4 classes for storing sequences
7844 \"externally\" (behind an R external pointer, or on disk).")
7845 (license license:artistic2.0)))
7846
7847 (define-public r-genomicranges
7848 (package
7849 (name "r-genomicranges")
7850 (version "1.40.0")
7851 (source (origin
7852 (method url-fetch)
7853 (uri (bioconductor-uri "GenomicRanges" version))
7854 (sha256
7855 (base32
7856 "0wn1zr2qq0rpv9z2wialgizn6xzdlcjg1w2kif67n53svz6vk2x1"))))
7857 (properties
7858 `((upstream-name . "GenomicRanges")))
7859 (build-system r-build-system)
7860 (propagated-inputs
7861 `(("r-biocgenerics" ,r-biocgenerics)
7862 ("r-genomeinfodb" ,r-genomeinfodb)
7863 ("r-iranges" ,r-iranges)
7864 ("r-s4vectors" ,r-s4vectors)
7865 ("r-xvector" ,r-xvector)))
7866 (native-inputs
7867 `(("r-knitr" ,r-knitr)))
7868 (home-page "https://bioconductor.org/packages/GenomicRanges")
7869 (synopsis "Representation and manipulation of genomic intervals")
7870 (description
7871 "This package provides tools to efficiently represent and manipulate
7872 genomic annotations and alignments is playing a central role when it comes to
7873 analyzing high-throughput sequencing data (a.k.a. NGS data). The
7874 GenomicRanges package defines general purpose containers for storing and
7875 manipulating genomic intervals and variables defined along a genome.")
7876 (license license:artistic2.0)))
7877
7878 (define-public r-biobase
7879 (package
7880 (name "r-biobase")
7881 (version "2.48.0")
7882 (source (origin
7883 (method url-fetch)
7884 (uri (bioconductor-uri "Biobase" version))
7885 (sha256
7886 (base32
7887 "13p3kgnxm7hbn8cy289kbhaiyfa6rxx7l1pbvajwqzbay3cxznqp"))))
7888 (properties
7889 `((upstream-name . "Biobase")))
7890 (build-system r-build-system)
7891 (propagated-inputs
7892 `(("r-biocgenerics" ,r-biocgenerics)))
7893 (home-page "https://bioconductor.org/packages/Biobase")
7894 (synopsis "Base functions for Bioconductor")
7895 (description
7896 "This package provides functions that are needed by many other packages
7897 on Bioconductor or which replace R functions.")
7898 (license license:artistic2.0)))
7899
7900 (define-public r-annotationdbi
7901 (package
7902 (name "r-annotationdbi")
7903 (version "1.50.3")
7904 (source (origin
7905 (method url-fetch)
7906 (uri (bioconductor-uri "AnnotationDbi" version))
7907 (sha256
7908 (base32
7909 "0qcxfn4pvaksna0nvxr74ysn2wzaxn732pkhd6ffrj8pwhkhy5p3"))))
7910 (properties
7911 `((upstream-name . "AnnotationDbi")))
7912 (build-system r-build-system)
7913 (propagated-inputs
7914 `(("r-biobase" ,r-biobase)
7915 ("r-biocgenerics" ,r-biocgenerics)
7916 ("r-dbi" ,r-dbi)
7917 ("r-iranges" ,r-iranges)
7918 ("r-rsqlite" ,r-rsqlite)
7919 ("r-s4vectors" ,r-s4vectors)))
7920 (native-inputs
7921 `(("r-knitr" ,r-knitr)))
7922 (home-page "https://bioconductor.org/packages/AnnotationDbi")
7923 (synopsis "Annotation database interface")
7924 (description
7925 "This package provides user interface and database connection code for
7926 annotation data packages using SQLite data storage.")
7927 (license license:artistic2.0)))
7928
7929 (define-public r-biomart
7930 (package
7931 (name "r-biomart")
7932 (version "2.44.1")
7933 (source (origin
7934 (method url-fetch)
7935 (uri (bioconductor-uri "biomaRt" version))
7936 (sha256
7937 (base32
7938 "0np4nh3gj60mgb6312z7x0z9fg5bhrhw872sp3dzgmqc8q8b84iz"))))
7939 (properties
7940 `((upstream-name . "biomaRt")))
7941 (build-system r-build-system)
7942 (propagated-inputs
7943 `(("r-annotationdbi" ,r-annotationdbi)
7944 ("r-biocfilecache" ,r-biocfilecache)
7945 ("r-httr" ,r-httr)
7946 ("r-openssl" ,r-openssl)
7947 ("r-progress" ,r-progress)
7948 ("r-rappdirs" ,r-rappdirs)
7949 ("r-stringr" ,r-stringr)
7950 ("r-xml" ,r-xml)))
7951 (native-inputs
7952 `(("r-knitr" ,r-knitr)))
7953 (home-page "https://bioconductor.org/packages/biomaRt")
7954 (synopsis "Interface to BioMart databases")
7955 (description
7956 "biomaRt provides an interface to a growing collection of databases
7957 implementing the @url{BioMart software suite, http://www.biomart.org}. The
7958 package enables retrieval of large amounts of data in a uniform way without
7959 the need to know the underlying database schemas or write complex SQL queries.
7960 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
7961 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
7962 users direct access to a diverse set of data and enable a wide range of
7963 powerful online queries from gene annotation to database mining.")
7964 (license license:artistic2.0)))
7965
7966 (define-public r-biocparallel
7967 (package
7968 (name "r-biocparallel")
7969 (version "1.22.0")
7970 (source (origin
7971 (method url-fetch)
7972 (uri (bioconductor-uri "BiocParallel" version))
7973 (sha256
7974 (base32
7975 "1lsg5xm5j3ly5k60fidzhkgqc9jgscyfkqngjvd9qp6yfzvsb82g"))))
7976 (properties
7977 `((upstream-name . "BiocParallel")))
7978 (build-system r-build-system)
7979 (propagated-inputs
7980 `(("r-futile-logger" ,r-futile-logger)
7981 ("r-snow" ,r-snow)
7982 ("r-bh" ,r-bh)))
7983 (native-inputs
7984 `(("r-knitr" ,r-knitr)))
7985 (home-page "https://bioconductor.org/packages/BiocParallel")
7986 (synopsis "Bioconductor facilities for parallel evaluation")
7987 (description
7988 "This package provides modified versions and novel implementation of
7989 functions for parallel evaluation, tailored to use with Bioconductor
7990 objects.")
7991 (license (list license:gpl2+ license:gpl3+))))
7992
7993 (define-public r-biostrings
7994 (package
7995 (name "r-biostrings")
7996 (version "2.56.0")
7997 (source (origin
7998 (method url-fetch)
7999 (uri (bioconductor-uri "Biostrings" version))
8000 (sha256
8001 (base32
8002 "0imhfz7dg8b3l5qzipjranqqshdsg2x6zc49drlhn8sc7j40cvi8"))))
8003 (properties
8004 `((upstream-name . "Biostrings")))
8005 (build-system r-build-system)
8006 (propagated-inputs
8007 `(("r-biocgenerics" ,r-biocgenerics)
8008 ("r-crayon" ,r-crayon)
8009 ("r-iranges" ,r-iranges)
8010 ("r-s4vectors" ,r-s4vectors)
8011 ("r-xvector" ,r-xvector)))
8012 (home-page "https://bioconductor.org/packages/Biostrings")
8013 (synopsis "String objects and algorithms for biological sequences")
8014 (description
8015 "This package provides memory efficient string containers, string
8016 matching algorithms, and other utilities, for fast manipulation of large
8017 biological sequences or sets of sequences.")
8018 (license license:artistic2.0)))
8019
8020 (define-public r-rsamtools
8021 (package
8022 (name "r-rsamtools")
8023 (version "2.4.0")
8024 (source (origin
8025 (method url-fetch)
8026 (uri (bioconductor-uri "Rsamtools" version))
8027 (sha256
8028 (base32
8029 "0z01z0s71f941k7sns46nyabps28c69d6jxx6sppjpc6h4vrw0vq"))))
8030 (properties
8031 `((upstream-name . "Rsamtools")))
8032 (build-system r-build-system)
8033 (arguments
8034 `(#:phases
8035 (modify-phases %standard-phases
8036 (add-after 'unpack 'use-system-zlib
8037 (lambda _
8038 (substitute* "DESCRIPTION"
8039 (("zlibbioc, ") ""))
8040 (substitute* "NAMESPACE"
8041 (("import\\(zlibbioc\\)") ""))
8042 #t)))))
8043 (inputs
8044 `(("zlib" ,zlib)))
8045 (propagated-inputs
8046 `(("r-biocgenerics" ,r-biocgenerics)
8047 ("r-biocparallel" ,r-biocparallel)
8048 ("r-biostrings" ,r-biostrings)
8049 ("r-bitops" ,r-bitops)
8050 ("r-genomeinfodb" ,r-genomeinfodb)
8051 ("r-genomicranges" ,r-genomicranges)
8052 ("r-iranges" ,r-iranges)
8053 ("r-rhtslib" ,r-rhtslib)
8054 ("r-s4vectors" ,r-s4vectors)
8055 ("r-xvector" ,r-xvector)))
8056 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
8057 (synopsis "Interface to samtools, bcftools, and tabix")
8058 (description
8059 "This package provides an interface to the @code{samtools},
8060 @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence
8061 Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
8062 tab-delimited (tabix) files.")
8063 (license license:expat)))
8064
8065 (define-public r-delayedarray
8066 (package
8067 (name "r-delayedarray")
8068 (version "0.14.1")
8069 (source (origin
8070 (method url-fetch)
8071 (uri (bioconductor-uri "DelayedArray" version))
8072 (sha256
8073 (base32
8074 "0xi0i621hrl7k9rsc8x8nc3ib74sk8hxhbyr2lxqclw45pk95s7v"))))
8075 (properties
8076 `((upstream-name . "DelayedArray")))
8077 (build-system r-build-system)
8078 (propagated-inputs
8079 `(("r-biocgenerics" ,r-biocgenerics)
8080 ("r-s4vectors" ,r-s4vectors)
8081 ("r-iranges" ,r-iranges)
8082 ("r-matrix" ,r-matrix)
8083 ("r-matrixstats" ,r-matrixstats)))
8084 (native-inputs
8085 `(("r-knitr" ,r-knitr)))
8086 (home-page "https://bioconductor.org/packages/DelayedArray")
8087 (synopsis "Delayed operations on array-like objects")
8088 (description
8089 "Wrapping an array-like object (typically an on-disk object) in a
8090 @code{DelayedArray} object allows one to perform common array operations on it
8091 without loading the object in memory. In order to reduce memory usage and
8092 optimize performance, operations on the object are either delayed or executed
8093 using a block processing mechanism. Note that this also works on in-memory
8094 array-like objects like @code{DataFrame} objects (typically with Rle columns),
8095 @code{Matrix} objects, and ordinary arrays and data frames.")
8096 (license license:artistic2.0)))
8097
8098 (define-public r-summarizedexperiment
8099 (package
8100 (name "r-summarizedexperiment")
8101 (version "1.18.2")
8102 (source (origin
8103 (method url-fetch)
8104 (uri (bioconductor-uri "SummarizedExperiment" version))
8105 (sha256
8106 (base32
8107 "1raw5ycigr6gjgzn3kx3jls5hzww10fhnwd8c17c20hmhirf13rw"))))
8108 (properties
8109 `((upstream-name . "SummarizedExperiment")))
8110 (build-system r-build-system)
8111 (propagated-inputs
8112 `(("r-biobase" ,r-biobase)
8113 ("r-biocgenerics" ,r-biocgenerics)
8114 ("r-delayedarray" ,r-delayedarray)
8115 ("r-genomeinfodb" ,r-genomeinfodb)
8116 ("r-genomicranges" ,r-genomicranges)
8117 ("r-iranges" ,r-iranges)
8118 ("r-matrix" ,r-matrix)
8119 ("r-s4vectors" ,r-s4vectors)))
8120 (native-inputs
8121 `(("r-knitr" ,r-knitr)))
8122 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
8123 (synopsis "Container for representing genomic ranges by sample")
8124 (description
8125 "The SummarizedExperiment container contains one or more assays, each
8126 represented by a matrix-like object of numeric or other mode. The rows
8127 typically represent genomic ranges of interest and the columns represent
8128 samples.")
8129 (license license:artistic2.0)))
8130
8131 (define-public r-genomicalignments
8132 (package
8133 (name "r-genomicalignments")
8134 (version "1.24.0")
8135 (source (origin
8136 (method url-fetch)
8137 (uri (bioconductor-uri "GenomicAlignments" version))
8138 (sha256
8139 (base32
8140 "0v8k6d7frm5p48cmk4zik78cw9abz4inx0zhl4zrmmx31ifyvk8d"))))
8141 (properties
8142 `((upstream-name . "GenomicAlignments")))
8143 (build-system r-build-system)
8144 (propagated-inputs
8145 `(("r-biocgenerics" ,r-biocgenerics)
8146 ("r-biocparallel" ,r-biocparallel)
8147 ("r-biostrings" ,r-biostrings)
8148 ("r-genomeinfodb" ,r-genomeinfodb)
8149 ("r-genomicranges" ,r-genomicranges)
8150 ("r-iranges" ,r-iranges)
8151 ("r-rsamtools" ,r-rsamtools)
8152 ("r-s4vectors" ,r-s4vectors)
8153 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8154 (home-page "https://bioconductor.org/packages/GenomicAlignments")
8155 (synopsis "Representation and manipulation of short genomic alignments")
8156 (description
8157 "This package provides efficient containers for storing and manipulating
8158 short genomic alignments (typically obtained by aligning short reads to a
8159 reference genome). This includes read counting, computing the coverage,
8160 junction detection, and working with the nucleotide content of the
8161 alignments.")
8162 (license license:artistic2.0)))
8163
8164 (define-public r-rtracklayer
8165 (package
8166 (name "r-rtracklayer")
8167 (version "1.48.0")
8168 (source (origin
8169 (method url-fetch)
8170 (uri (bioconductor-uri "rtracklayer" version))
8171 (sha256
8172 (base32
8173 "1zcgk92sidhy4y7ws9ms4nkkh2hnccfhfh53qgna0kma9jy4v5xf"))))
8174 (build-system r-build-system)
8175 (arguments
8176 `(#:phases
8177 (modify-phases %standard-phases
8178 (add-after 'unpack 'use-system-zlib
8179 (lambda _
8180 (substitute* "DESCRIPTION"
8181 ((" zlibbioc,") ""))
8182 (substitute* "NAMESPACE"
8183 (("import\\(zlibbioc\\)") ""))
8184 #t)))))
8185 (native-inputs
8186 `(("pkg-config" ,pkg-config)))
8187 (inputs
8188 `(("zlib" ,zlib)))
8189 (propagated-inputs
8190 `(("r-biocgenerics" ,r-biocgenerics)
8191 ("r-biostrings" ,r-biostrings)
8192 ("r-genomeinfodb" ,r-genomeinfodb)
8193 ("r-genomicalignments" ,r-genomicalignments)
8194 ("r-genomicranges" ,r-genomicranges)
8195 ("r-iranges" ,r-iranges)
8196 ("r-rcurl" ,r-rcurl)
8197 ("r-rsamtools" ,r-rsamtools)
8198 ("r-s4vectors" ,r-s4vectors)
8199 ("r-xml" ,r-xml)
8200 ("r-xvector" ,r-xvector)))
8201 (home-page "https://bioconductor.org/packages/rtracklayer")
8202 (synopsis "R interface to genome browsers and their annotation tracks")
8203 (description
8204 "rtracklayer is an extensible framework for interacting with multiple
8205 genome browsers (currently UCSC built-in) and manipulating annotation tracks
8206 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
8207 built-in). The user may export/import tracks to/from the supported browsers,
8208 as well as query and modify the browser state, such as the current viewport.")
8209 (license license:artistic2.0)))
8210
8211 (define-public r-genomicfeatures
8212 (package
8213 (name "r-genomicfeatures")
8214 (version "1.40.1")
8215 (source (origin
8216 (method url-fetch)
8217 (uri (bioconductor-uri "GenomicFeatures" version))
8218 (sha256
8219 (base32
8220 "0zm7q957g952qyfqmvf27sldsnq6sqd0wlgnqzvmxayg9pxh0l0z"))))
8221 (properties
8222 `((upstream-name . "GenomicFeatures")))
8223 (build-system r-build-system)
8224 (propagated-inputs
8225 `(("r-annotationdbi" ,r-annotationdbi)
8226 ("r-biobase" ,r-biobase)
8227 ("r-biocgenerics" ,r-biocgenerics)
8228 ("r-biomart" ,r-biomart)
8229 ("r-biostrings" ,r-biostrings)
8230 ("r-dbi" ,r-dbi)
8231 ("r-genomeinfodb" ,r-genomeinfodb)
8232 ("r-genomicranges" ,r-genomicranges)
8233 ("r-iranges" ,r-iranges)
8234 ("r-rcurl" ,r-rcurl)
8235 ("r-rsqlite" ,r-rsqlite)
8236 ("r-rtracklayer" ,r-rtracklayer)
8237 ("r-s4vectors" ,r-s4vectors)
8238 ("r-xvector" ,r-xvector)))
8239 (native-inputs
8240 `(("r-knitr" ,r-knitr)))
8241 (home-page "https://bioconductor.org/packages/GenomicFeatures")
8242 (synopsis "Tools for working with transcript centric annotations")
8243 (description
8244 "This package provides a set of tools and methods for making and
8245 manipulating transcript centric annotations. With these tools the user can
8246 easily download the genomic locations of the transcripts, exons and cds of a
8247 given organism, from either the UCSC Genome Browser or a BioMart
8248 database (more sources will be supported in the future). This information is
8249 then stored in a local database that keeps track of the relationship between
8250 transcripts, exons, cds and genes. Flexible methods are provided for
8251 extracting the desired features in a convenient format.")
8252 (license license:artistic2.0)))
8253
8254 (define-public r-go-db
8255 (package
8256 (name "r-go-db")
8257 (version "3.7.0")
8258 (source (origin
8259 (method url-fetch)
8260 (uri (string-append "https://www.bioconductor.org/packages/"
8261 "release/data/annotation/src/contrib/GO.db_"
8262 version ".tar.gz"))
8263 (sha256
8264 (base32
8265 "0i3wcf5h3n0dawzc1hy0kv74f06j80c47n4p3g3fmrcxlhi3jpa5"))))
8266 (properties
8267 `((upstream-name . "GO.db")))
8268 (build-system r-build-system)
8269 (propagated-inputs
8270 `(("r-annotationdbi" ,r-annotationdbi)))
8271 (home-page "https://bioconductor.org/packages/GO.db")
8272 (synopsis "Annotation maps describing the entire Gene Ontology")
8273 (description
8274 "The purpose of this GO.db annotation package is to provide detailed
8275 information about the latest version of the Gene Ontologies.")
8276 (license license:artistic2.0)))
8277
8278 (define-public r-topgo
8279 (package
8280 (name "r-topgo")
8281 (version "2.40.0")
8282 (source (origin
8283 (method url-fetch)
8284 (uri (bioconductor-uri "topGO" version))
8285 (sha256
8286 (base32
8287 "13rhbvn27sj75fklf1cnjaazacx8yyjlhqlnbp5zk157q6y5cwdr"))))
8288 (properties
8289 `((upstream-name . "topGO")))
8290 (build-system r-build-system)
8291 (propagated-inputs
8292 `(("r-annotationdbi" ,r-annotationdbi)
8293 ("r-dbi" ,r-dbi)
8294 ("r-biobase" ,r-biobase)
8295 ("r-biocgenerics" ,r-biocgenerics)
8296 ("r-go-db" ,r-go-db)
8297 ("r-graph" ,r-graph)
8298 ("r-lattice" ,r-lattice)
8299 ("r-matrixstats" ,r-matrixstats)
8300 ("r-sparsem" ,r-sparsem)))
8301 (home-page "https://bioconductor.org/packages/topGO")
8302 (synopsis "Enrichment analysis for gene ontology")
8303 (description
8304 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
8305 terms while accounting for the topology of the GO graph. Different test
8306 statistics and different methods for eliminating local similarities and
8307 dependencies between GO terms can be implemented and applied.")
8308 ;; Any version of the LGPL applies.
8309 (license license:lgpl2.1+)))
8310
8311 (define-public r-bsgenome
8312 (package
8313 (name "r-bsgenome")
8314 (version "1.56.0")
8315 (source (origin
8316 (method url-fetch)
8317 (uri (bioconductor-uri "BSgenome" version))
8318 (sha256
8319 (base32
8320 "1jw8r1qm9fpg2s1cw2y4np243jjxm65j2xdy2785h8fc1b02msf6"))))
8321 (properties
8322 `((upstream-name . "BSgenome")))
8323 (build-system r-build-system)
8324 (propagated-inputs
8325 `(("r-biocgenerics" ,r-biocgenerics)
8326 ("r-biostrings" ,r-biostrings)
8327 ("r-genomeinfodb" ,r-genomeinfodb)
8328 ("r-genomicranges" ,r-genomicranges)
8329 ("r-iranges" ,r-iranges)
8330 ("r-matrixstats" ,r-matrixstats)
8331 ("r-rsamtools" ,r-rsamtools)
8332 ("r-rtracklayer" ,r-rtracklayer)
8333 ("r-s4vectors" ,r-s4vectors)
8334 ("r-xvector" ,r-xvector)))
8335 (home-page "https://bioconductor.org/packages/BSgenome")
8336 (synopsis "Infrastructure for Biostrings-based genome data packages")
8337 (description
8338 "This package provides infrastructure shared by all Biostrings-based
8339 genome data packages and support for efficient SNP representation.")
8340 (license license:artistic2.0)))
8341
8342 (define-public r-impute
8343 (package
8344 (name "r-impute")
8345 (version "1.62.0")
8346 (source (origin
8347 (method url-fetch)
8348 (uri (bioconductor-uri "impute" version))
8349 (sha256
8350 (base32
8351 "161p6l1cp3wwdynkxwvg0yhrh6yv20brdlplw5w5mavn4hf1nm0h"))))
8352 (native-inputs
8353 `(("gfortran" ,gfortran)))
8354 (build-system r-build-system)
8355 (home-page "https://bioconductor.org/packages/impute")
8356 (synopsis "Imputation for microarray data")
8357 (description
8358 "This package provides a function to impute missing gene expression
8359 microarray data, using nearest neighbor averaging.")
8360 (license license:gpl2+)))
8361
8362 (define-public r-seqpattern
8363 (package
8364 (name "r-seqpattern")
8365 (version "1.20.0")
8366 (source (origin
8367 (method url-fetch)
8368 (uri (bioconductor-uri "seqPattern" version))
8369 (sha256
8370 (base32
8371 "0f1yvx2ri1557rzjx08q5bgml1cvkm8hjl8xn1qi4rjs64sy6mci"))))
8372 (properties
8373 `((upstream-name . "seqPattern")))
8374 (build-system r-build-system)
8375 (propagated-inputs
8376 `(("r-biostrings" ,r-biostrings)
8377 ("r-genomicranges" ,r-genomicranges)
8378 ("r-iranges" ,r-iranges)
8379 ("r-kernsmooth" ,r-kernsmooth)
8380 ("r-plotrix" ,r-plotrix)))
8381 (home-page "https://bioconductor.org/packages/seqPattern")
8382 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
8383 (description
8384 "This package provides tools to visualize oligonucleotide patterns and
8385 sequence motif occurrences across a large set of sequences centred at a common
8386 reference point and sorted by a user defined feature.")
8387 (license license:gpl3+)))
8388
8389 (define-public r-genomation
8390 (package
8391 (name "r-genomation")
8392 (version "1.20.0")
8393 (source (origin
8394 (method url-fetch)
8395 (uri (bioconductor-uri "genomation" version))
8396 (sha256
8397 (base32
8398 "1cy8kqwddiha5jy6nda1al956i4wncbgjkrxwijdb08cmka2sfwh"))))
8399 (build-system r-build-system)
8400 (propagated-inputs
8401 `(("r-biostrings" ,r-biostrings)
8402 ("r-bsgenome" ,r-bsgenome)
8403 ("r-data-table" ,r-data-table)
8404 ("r-genomeinfodb" ,r-genomeinfodb)
8405 ("r-genomicalignments" ,r-genomicalignments)
8406 ("r-genomicranges" ,r-genomicranges)
8407 ("r-ggplot2" ,r-ggplot2)
8408 ("r-gridbase" ,r-gridbase)
8409 ("r-impute" ,r-impute)
8410 ("r-iranges" ,r-iranges)
8411 ("r-matrixstats" ,r-matrixstats)
8412 ("r-plotrix" ,r-plotrix)
8413 ("r-plyr" ,r-plyr)
8414 ("r-rcpp" ,r-rcpp)
8415 ("r-readr" ,r-readr)
8416 ("r-reshape2" ,r-reshape2)
8417 ("r-rsamtools" ,r-rsamtools)
8418 ("r-rtracklayer" ,r-rtracklayer)
8419 ("r-runit" ,r-runit)
8420 ("r-s4vectors" ,r-s4vectors)
8421 ("r-seqpattern" ,r-seqpattern)))
8422 (native-inputs
8423 `(("r-knitr" ,r-knitr)))
8424 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
8425 (synopsis "Summary, annotation and visualization of genomic data")
8426 (description
8427 "This package provides a package for summary and annotation of genomic
8428 intervals. Users can visualize and quantify genomic intervals over
8429 pre-defined functional regions, such as promoters, exons, introns, etc. The
8430 genomic intervals represent regions with a defined chromosome position, which
8431 may be associated with a score, such as aligned reads from HT-seq experiments,
8432 TF binding sites, methylation scores, etc. The package can use any tabular
8433 genomic feature data as long as it has minimal information on the locations of
8434 genomic intervals. In addition, it can use BAM or BigWig files as input.")
8435 (license license:artistic2.0)))
8436
8437 (define-public r-genomationdata
8438 (package
8439 (name "r-genomationdata")
8440 (version "1.14.0")
8441 (source (origin
8442 (method url-fetch)
8443 ;; We cannot use bioconductor-uri here because this tarball is
8444 ;; located under "data/annotation/" instead of "bioc/".
8445 (uri (string-append "https://bioconductor.org/packages/"
8446 "release/data/experiment/src/contrib/"
8447 "genomationData_" version ".tar.gz"))
8448 (sha256
8449 (base32
8450 "10xyb8akjrhmak2i0mnv1agny2ipy364q9nlibyplpzc7vdb6bw7"))))
8451 (build-system r-build-system)
8452 ;; As this package provides little more than large data files, it doesn't
8453 ;; make sense to build substitutes.
8454 (arguments `(#:substitutable? #f))
8455 (native-inputs
8456 `(("r-knitr" ,r-knitr)))
8457 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
8458 (synopsis "Experimental data for use with the genomation package")
8459 (description
8460 "This package contains experimental genetic data for use with the
8461 genomation package. Included are Chip Seq, Methylation and Cage data,
8462 downloaded from Encode.")
8463 (license license:gpl3+)))
8464
8465 (define-public r-seqlogo
8466 (package
8467 (name "r-seqlogo")
8468 (version "1.54.3")
8469 (source
8470 (origin
8471 (method url-fetch)
8472 (uri (bioconductor-uri "seqLogo" version))
8473 (sha256
8474 (base32
8475 "09kkxir305fv8z2yyihvspkrzclxbw1cx5mvhfkrhl10rap6662j"))))
8476 (properties `((upstream-name . "seqLogo")))
8477 (build-system r-build-system)
8478 (home-page "https://bioconductor.org/packages/seqLogo")
8479 (synopsis "Sequence logos for DNA sequence alignments")
8480 (description
8481 "seqLogo takes the position weight matrix of a DNA sequence motif and
8482 plots the corresponding sequence logo as introduced by Schneider and
8483 Stephens (1990).")
8484 (license license:lgpl2.0+)))
8485
8486 (define-public r-motifrg
8487 (package
8488 (name "r-motifrg")
8489 (version "1.31.0")
8490 (source
8491 (origin
8492 (method url-fetch)
8493 (uri (bioconductor-uri "motifRG" version))
8494 (sha256
8495 (base32
8496 "1ml6zyzlk8yjbnfhga2qnw8nl43rankvka0kc1yljxr2b66aqbhn"))))
8497 (properties `((upstream-name . "motifRG")))
8498 (build-system r-build-system)
8499 (propagated-inputs
8500 `(("r-biostrings" ,r-biostrings)
8501 ("r-bsgenome" ,r-bsgenome)
8502 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8503 ("r-iranges" ,r-iranges)
8504 ("r-seqlogo" ,r-seqlogo)
8505 ("r-xvector" ,r-xvector)))
8506 (home-page "https://bioconductor.org/packages/motifRG")
8507 (synopsis "Discover motifs in high throughput sequencing data")
8508 (description
8509 "This package provides tools for discriminative motif discovery in high
8510 throughput genetic sequencing data sets using regression methods.")
8511 (license license:artistic2.0)))
8512
8513 (define-public r-zlibbioc
8514 (package
8515 (name "r-zlibbioc")
8516 (version "1.34.0")
8517 (source (origin
8518 (method url-fetch)
8519 (uri (bioconductor-uri "zlibbioc" version))
8520 (sha256
8521 (base32
8522 "0j1l052jb2cwc1nifxzwknc9csagf4f2d092zs0i95dz0rma89l0"))))
8523 (properties
8524 `((upstream-name . "zlibbioc")))
8525 (build-system r-build-system)
8526 (home-page "https://bioconductor.org/packages/zlibbioc")
8527 (synopsis "Provider for zlib-1.2.5 to R packages")
8528 (description "This package uses the source code of zlib-1.2.5 to create
8529 libraries for systems that do not have these available via other means.")
8530 (license license:artistic2.0)))
8531
8532 (define-public r-r4rna
8533 (package
8534 (name "r-r4rna")
8535 (version "0.1.4")
8536 (source
8537 (origin
8538 (method url-fetch)
8539 (uri (string-append "http://www.e-rna.org/r-chie/files/R4RNA_"
8540 version ".tar.gz"))
8541 (sha256
8542 (base32
8543 "1p0i78wh76jfgmn9jphbwwaz6yy6pipzfg08xs54cxavxg2j81p5"))))
8544 (build-system r-build-system)
8545 (propagated-inputs
8546 `(("r-optparse" ,r-optparse)
8547 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8548 (home-page "https://www.e-rna.org/r-chie/index.cgi")
8549 (synopsis "Analysis framework for RNA secondary structure")
8550 (description
8551 "The R4RNA package aims to be a general framework for the analysis of RNA
8552 secondary structure and comparative analysis in R.")
8553 (license license:gpl3+)))
8554
8555 (define-public r-rhtslib
8556 (package
8557 (name "r-rhtslib")
8558 (version "1.20.0")
8559 (source
8560 (origin
8561 (method url-fetch)
8562 (uri (bioconductor-uri "Rhtslib" version))
8563 (sha256
8564 (base32
8565 "186r7icrkzrni1c4n33ip7dlsfgys7hnqf0simvxrpl3yhh3ygdi"))))
8566 (properties `((upstream-name . "Rhtslib")))
8567 (build-system r-build-system)
8568 ;; Without this a temporary directory ends up in the Rhtslib.so binary,
8569 ;; which makes R abort the build.
8570 (arguments '(#:configure-flags '("--no-staged-install")))
8571 (propagated-inputs
8572 `(("curl" ,curl)
8573 ("r-zlibbioc" ,r-zlibbioc)))
8574 (inputs
8575 `(("zlib" ,zlib)))
8576 (native-inputs
8577 `(("pkg-config" ,pkg-config)
8578 ("r-knitr" ,r-knitr)))
8579 (home-page "https://github.com/nhayden/Rhtslib")
8580 (synopsis "High-throughput sequencing library as an R package")
8581 (description
8582 "This package provides the HTSlib C library for high-throughput
8583 nucleotide sequence analysis. The package is primarily useful to developers
8584 of other R packages who wish to make use of HTSlib.")
8585 (license license:lgpl2.0+)))
8586
8587 (define-public r-bamsignals
8588 (package
8589 (name "r-bamsignals")
8590 (version "1.20.0")
8591 (source
8592 (origin
8593 (method url-fetch)
8594 (uri (bioconductor-uri "bamsignals" version))
8595 (sha256
8596 (base32
8597 "0p858xxfv79yc8b3lq58zl9f00irvbn3czsd8wdi5040xg42m402"))))
8598 (build-system r-build-system)
8599 (propagated-inputs
8600 `(("r-biocgenerics" ,r-biocgenerics)
8601 ("r-genomicranges" ,r-genomicranges)
8602 ("r-iranges" ,r-iranges)
8603 ("r-rcpp" ,r-rcpp)
8604 ("r-rhtslib" ,r-rhtslib)
8605 ("r-zlibbioc" ,r-zlibbioc)))
8606 (inputs
8607 `(("zlib" ,zlib)))
8608 (native-inputs
8609 `(("r-knitr" ,r-knitr)))
8610 (home-page "https://bioconductor.org/packages/bamsignals")
8611 (synopsis "Extract read count signals from bam files")
8612 (description
8613 "This package efficiently obtains count vectors from indexed bam
8614 files. It counts the number of nucleotide sequence reads in given genomic
8615 ranges and it computes reads profiles and coverage profiles. It also handles
8616 paired-end data.")
8617 (license license:gpl2+)))
8618
8619 (define-public r-rcas
8620 (package
8621 (name "r-rcas")
8622 (version "1.14.0")
8623 (source (origin
8624 (method url-fetch)
8625 (uri (bioconductor-uri "RCAS" version))
8626 (sha256
8627 (base32
8628 "0f812pgv3ys1zv4n9sqkgm01hj4cdd0i0h85dqbhkwd94zl6cavl"))))
8629 (properties `((upstream-name . "RCAS")))
8630 (build-system r-build-system)
8631 (propagated-inputs
8632 `(("r-biocgenerics" ,r-biocgenerics)
8633 ("r-biostrings" ,r-biostrings)
8634 ("r-bsgenome" ,r-bsgenome)
8635 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8636 ("r-cowplot" ,r-cowplot)
8637 ("r-data-table" ,r-data-table)
8638 ("r-dt" ,r-dt)
8639 ("r-genomation" ,r-genomation)
8640 ("r-genomeinfodb" ,r-genomeinfodb)
8641 ("r-genomicfeatures" ,r-genomicfeatures)
8642 ("r-genomicranges" ,r-genomicranges)
8643 ("r-ggplot2" ,r-ggplot2)
8644 ("r-ggseqlogo" ,r-ggseqlogo)
8645 ("r-gprofiler2" ,r-gprofiler2)
8646 ("r-iranges" ,r-iranges)
8647 ("r-pbapply" ,r-pbapply)
8648 ("r-pheatmap" ,r-pheatmap)
8649 ("r-plotly" ,r-plotly)
8650 ("r-plotrix" ,r-plotrix)
8651 ("r-proxy" ,r-proxy)
8652 ("r-ranger" ,r-ranger)
8653 ("r-rsqlite" ,r-rsqlite)
8654 ("r-rtracklayer" ,r-rtracklayer)
8655 ("r-rmarkdown" ,r-rmarkdown)
8656 ("r-s4vectors" ,r-s4vectors)
8657 ("pandoc" ,pandoc)))
8658 (native-inputs
8659 `(("r-knitr" ,r-knitr)))
8660 (synopsis "RNA-centric annotation system")
8661 (description
8662 "RCAS aims to be a standalone RNA-centric annotation system that provides
8663 intuitive reports and publication-ready graphics. This package provides the R
8664 library implementing most of the pipeline's features.")
8665 (home-page "https://github.com/BIMSBbioinfo/RCAS")
8666 (license license:artistic2.0)))
8667
8668 (define-public rcas-web
8669 (package
8670 (name "rcas-web")
8671 (version "0.1.0")
8672 (source
8673 (origin
8674 (method url-fetch)
8675 (uri (string-append "https://github.com/BIMSBbioinfo/rcas-web/"
8676 "releases/download/v" version
8677 "/rcas-web-" version ".tar.gz"))
8678 (sha256
8679 (base32
8680 "0wq951aj45gqki1bickg876i993lmawkp8x24agg264br5x716db"))))
8681 (build-system gnu-build-system)
8682 (arguments
8683 `(#:phases
8684 (modify-phases %standard-phases
8685 (add-before 'configure 'find-RCAS
8686 ;; The configure script can't find non-1.3.x versions of RCAS because
8687 ;; its R expression ‘1.10.1 >= 1.3.4’ evaluates to false.
8688 (lambda _
8689 (substitute* "configure"
8690 (("1\\.3\\.4") "0.0.0"))
8691 #t))
8692 (add-after 'install 'wrap-executable
8693 (lambda* (#:key inputs outputs #:allow-other-keys)
8694 (let* ((out (assoc-ref outputs "out"))
8695 (json (assoc-ref inputs "guile-json"))
8696 (redis (assoc-ref inputs "guile-redis"))
8697 (path (string-append
8698 json "/share/guile/site/2.2:"
8699 redis "/share/guile/site/2.2")))
8700 (wrap-program (string-append out "/bin/rcas-web")
8701 `("GUILE_LOAD_PATH" ":" = (,path))
8702 `("GUILE_LOAD_COMPILED_PATH" ":" = (,path))
8703 `("R_LIBS_SITE" ":" = (,(getenv "R_LIBS_SITE")))))
8704 #t)))))
8705 (inputs
8706 `(("r-minimal" ,r-minimal)
8707 ("r-rcas" ,r-rcas)
8708 ("guile" ,guile-2.2)
8709 ("guile-json" ,guile-json-1)
8710 ("guile-redis" ,guile2.2-redis)))
8711 (native-inputs
8712 `(("pkg-config" ,pkg-config)))
8713 (home-page "https://github.com/BIMSBbioinfo/rcas-web")
8714 (synopsis "Web interface for RNA-centric annotation system (RCAS)")
8715 (description "This package provides a simple web interface for the
8716 @dfn{RNA-centric annotation system} (RCAS).")
8717 (license license:agpl3+)))
8718
8719 (define-public r-mutationalpatterns
8720 (package
8721 (name "r-mutationalpatterns")
8722 (version "2.0.0")
8723 (source
8724 (origin
8725 (method url-fetch)
8726 (uri (bioconductor-uri "MutationalPatterns" version))
8727 (sha256
8728 (base32
8729 "02lyjiabyhmifycksvpcx29a0pb7z9xjw0hgg8n0sd0dy3afqhcm"))))
8730 (build-system r-build-system)
8731 (propagated-inputs
8732 `(("r-biocgenerics" ,r-biocgenerics)
8733 ("r-biostrings" ,r-biostrings)
8734 ;; These two packages are suggested packages
8735 ("r-bsgenome-hsapiens-1000g" ,r-bsgenome-hsapiens-1000genomes-hs37d5)
8736 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8737 ("r-genomicranges" ,r-genomicranges)
8738 ("r-genomeinfodb" ,r-genomeinfodb)
8739 ("r-ggplot2" ,r-ggplot2)
8740 ("r-iranges" ,r-iranges)
8741 ("r-nmf" ,r-nmf)
8742 ("r-plyr" ,r-plyr)
8743 ("r-pracma" ,r-pracma)
8744 ("r-reshape2" ,r-reshape2)
8745 ("r-cowplot" ,r-cowplot)
8746 ("r-ggdendro" ,r-ggdendro)
8747 ("r-s4vectors" ,r-s4vectors)
8748 ("r-summarizedexperiment" ,r-summarizedexperiment)
8749 ("r-variantannotation" ,r-variantannotation)))
8750 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
8751 (synopsis "Extract and visualize mutational patterns in genomic data")
8752 (description "This package provides an extensive toolset for the
8753 characterization and visualization of a wide range of mutational patterns
8754 in SNV base substitution data.")
8755 (license license:expat)))
8756
8757 (define-public r-chipkernels
8758 (let ((commit "c9cfcacb626b1221094fb3490ea7bac0fd625372")
8759 (revision "1"))
8760 (package
8761 (name "r-chipkernels")
8762 (version (string-append "1.1-" revision "." (string-take commit 9)))
8763 (source
8764 (origin
8765 (method git-fetch)
8766 (uri (git-reference
8767 (url "https://github.com/ManuSetty/ChIPKernels")
8768 (commit commit)))
8769 (file-name (string-append name "-" version))
8770 (sha256
8771 (base32
8772 "14bj5qhjm1hsm9ay561nfbqi9wxsa7y487df2idsaaf6z10nw4v0"))))
8773 (build-system r-build-system)
8774 (propagated-inputs
8775 `(("r-iranges" ,r-iranges)
8776 ("r-xvector" ,r-xvector)
8777 ("r-biostrings" ,r-biostrings)
8778 ("r-bsgenome" ,r-bsgenome)
8779 ("r-gtools" ,r-gtools)
8780 ("r-genomicranges" ,r-genomicranges)
8781 ("r-sfsmisc" ,r-sfsmisc)
8782 ("r-kernlab" ,r-kernlab)
8783 ("r-s4vectors" ,r-s4vectors)
8784 ("r-biocgenerics" ,r-biocgenerics)))
8785 (home-page "https://github.com/ManuSetty/ChIPKernels")
8786 (synopsis "Build string kernels for DNA Sequence analysis")
8787 (description "ChIPKernels is an R package for building different string
8788 kernels used for DNA Sequence analysis. A dictionary of the desired kernel
8789 must be built and this dictionary can be used for determining kernels for DNA
8790 Sequences.")
8791 (license license:gpl2+))))
8792
8793 (define-public r-seqgl
8794 (package
8795 (name "r-seqgl")
8796 (version "1.1.4")
8797 (source
8798 (origin
8799 (method git-fetch)
8800 (uri (git-reference
8801 (url "https://github.com/ManuSetty/SeqGL")
8802 (commit version)))
8803 (file-name (git-file-name name version))
8804 (sha256
8805 (base32
8806 "1r6ywvhxl3ffv48lgj7sbd582mcc6dha3ksgc2qjlvjrnkbj3799"))))
8807 (build-system r-build-system)
8808 (propagated-inputs
8809 `(("r-biostrings" ,r-biostrings)
8810 ("r-chipkernels" ,r-chipkernels)
8811 ("r-genomicranges" ,r-genomicranges)
8812 ("r-spams" ,r-spams)
8813 ("r-wgcna" ,r-wgcna)
8814 ("r-fastcluster" ,r-fastcluster)))
8815 (home-page "https://github.com/ManuSetty/SeqGL")
8816 (synopsis "Group lasso for Dnase/ChIP-seq data")
8817 (description "SeqGL is a group lasso based algorithm to extract
8818 transcription factor sequence signals from ChIP, DNase and ATAC-seq profiles.
8819 This package presents a method which uses group lasso to discriminate between
8820 bound and non bound genomic regions to accurately identify transcription
8821 factors bound at the specific regions.")
8822 (license license:gpl2+)))
8823
8824 (define-public r-tximport
8825 (package
8826 (name "r-tximport")
8827 (version "1.16.1")
8828 (source (origin
8829 (method url-fetch)
8830 (uri (bioconductor-uri "tximport" version))
8831 (sha256
8832 (base32
8833 "1x9959lkjl2h869rgd1b30q1idxzjkr1fyqbpndqk3kbi4q2gr40"))))
8834 (build-system r-build-system)
8835 (native-inputs
8836 `(("r-knitr" ,r-knitr)))
8837 (home-page "https://bioconductor.org/packages/tximport")
8838 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
8839 (description
8840 "This package provides tools to import transcript-level abundance,
8841 estimated counts and transcript lengths, and to summarize them into matrices
8842 for use with downstream gene-level analysis packages. Average transcript
8843 length, weighted by sample-specific transcript abundance estimates, is
8844 provided as a matrix which can be used as an offset for different expression
8845 of gene-level counts.")
8846 (license license:gpl2+)))
8847
8848 (define-public r-rhdf5
8849 (package
8850 (name "r-rhdf5")
8851 (version "2.32.2")
8852 (source (origin
8853 (method url-fetch)
8854 (uri (bioconductor-uri "rhdf5" version))
8855 (sha256
8856 (base32
8857 "1v6ygi0avh3gmaj2ld2nr7vww4ipw39b5kqci9w27i3ja985lb8j"))))
8858 (build-system r-build-system)
8859 (propagated-inputs
8860 `(("r-rhdf5lib" ,r-rhdf5lib)))
8861 (inputs
8862 `(("zlib" ,zlib)))
8863 (native-inputs
8864 `(("r-knitr" ,r-knitr)))
8865 (home-page "https://bioconductor.org/packages/rhdf5")
8866 (synopsis "HDF5 interface to R")
8867 (description
8868 "This R/Bioconductor package provides an interface between HDF5 and R.
8869 HDF5's main features are the ability to store and access very large and/or
8870 complex datasets and a wide variety of metadata on mass storage (disk) through
8871 a completely portable file format. The rhdf5 package is thus suited for the
8872 exchange of large and/or complex datasets between R and other software
8873 package, and for letting R applications work on datasets that are larger than
8874 the available RAM.")
8875 (license license:artistic2.0)))
8876
8877 (define-public r-annotationfilter
8878 (package
8879 (name "r-annotationfilter")
8880 (version "1.12.0")
8881 (source (origin
8882 (method url-fetch)
8883 (uri (bioconductor-uri "AnnotationFilter" version))
8884 (sha256
8885 (base32
8886 "18kh1xrhpwb48s1qj4f1v8af3jmw49pnbp5afi2myn9894hxg0cs"))))
8887 (properties
8888 `((upstream-name . "AnnotationFilter")))
8889 (build-system r-build-system)
8890 (propagated-inputs
8891 `(("r-genomicranges" ,r-genomicranges)
8892 ("r-lazyeval" ,r-lazyeval)))
8893 (native-inputs
8894 `(("r-knitr" ,r-knitr)))
8895 (home-page "https://github.com/Bioconductor/AnnotationFilter")
8896 (synopsis "Facilities for filtering Bioconductor annotation resources")
8897 (description
8898 "This package provides classes and other infrastructure to implement
8899 filters for manipulating Bioconductor annotation resources. The filters are
8900 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
8901 (license license:artistic2.0)))
8902
8903 (define-public emboss
8904 (package
8905 (name "emboss")
8906 (version "6.5.7")
8907 (source (origin
8908 (method url-fetch)
8909 (uri (string-append "ftp://emboss.open-bio.org/pub/EMBOSS/old/"
8910 (version-major+minor version) ".0/"
8911 "EMBOSS-" version ".tar.gz"))
8912 (sha256
8913 (base32
8914 "0vsmz96gc411yj2iyzdrsmg4l2n1nhgmp7vrgzlxx3xixv9xbf0q"))))
8915 (build-system gnu-build-system)
8916 (arguments
8917 `(#:configure-flags
8918 (list (string-append "--with-hpdf="
8919 (assoc-ref %build-inputs "libharu")))
8920 #:phases
8921 (modify-phases %standard-phases
8922 (add-after 'unpack 'fix-checks
8923 (lambda _
8924 ;; The PNGDRIVER tests check for the presence of libgd, libpng
8925 ;; and zlib, but assume that they are all found at the same
8926 ;; prefix.
8927 (substitute* "configure.in"
8928 (("CHECK_PNGDRIVER")
8929 "LIBS=\"$LIBS -lgd -lpng -lz -lm\"
8930 AC_DEFINE([PLD_png], [1], [Define to 1 if PNG support is available])
8931 AM_CONDITIONAL(AMPNG, true)"))
8932 #t))
8933 (add-after 'fix-checks 'disable-update-check
8934 (lambda _
8935 ;; At build time there is no connection to the Internet, so
8936 ;; looking for updates will not work.
8937 (substitute* "Makefile.am"
8938 (("\\$\\(bindir\\)/embossupdate") ""))
8939 #t))
8940 (add-after 'disable-update-check 'autogen
8941 (lambda _ (invoke "autoreconf" "-vif") #t)))))
8942 (inputs
8943 `(("perl" ,perl)
8944 ("libpng" ,libpng)
8945 ("gd" ,gd)
8946 ("libx11" ,libx11)
8947 ("libharu" ,libharu)
8948 ("zlib" ,zlib)))
8949 (native-inputs
8950 `(("autoconf" ,autoconf)
8951 ("automake" ,automake)
8952 ("libtool" ,libtool)
8953 ("pkg-config" ,pkg-config)))
8954 (home-page "http://emboss.sourceforge.net")
8955 (synopsis "Molecular biology analysis suite")
8956 (description "EMBOSS is the \"European Molecular Biology Open Software
8957 Suite\". EMBOSS is an analysis package specially developed for the needs of
8958 the molecular biology (e.g. EMBnet) user community. The software
8959 automatically copes with data in a variety of formats and even allows
8960 transparent retrieval of sequence data from the web. It also provides a
8961 number of libraries for the development of software in the field of molecular
8962 biology. EMBOSS also integrates a range of currently available packages and
8963 tools for sequence analysis into a seamless whole.")
8964 (license license:gpl2+)))
8965
8966 (define-public bits
8967 (let ((revision "1")
8968 (commit "3cc4567896d9d6442923da944beb704750a08d2d"))
8969 (package
8970 (name "bits")
8971 ;; The version is 2.13.0 even though no release archives have been
8972 ;; published as yet.
8973 (version (string-append "2.13.0-" revision "." (string-take commit 9)))
8974 (source (origin
8975 (method git-fetch)
8976 (uri (git-reference
8977 (url "https://github.com/arq5x/bits")
8978 (commit commit)))
8979 (file-name (string-append name "-" version "-checkout"))
8980 (sha256
8981 (base32
8982 "17n2kffk4kmhivd8c98g2vr6y1s23vbg4sxlxs689wni66797hbs"))))
8983 (build-system gnu-build-system)
8984 (arguments
8985 `(#:tests? #f ;no tests included
8986 #:phases
8987 (modify-phases %standard-phases
8988 (delete 'configure)
8989 (add-after 'unpack 'remove-cuda
8990 (lambda _
8991 (substitute* "Makefile"
8992 ((".*_cuda") "")
8993 (("(bits_test_intersections) \\\\" _ match) match))
8994 #t))
8995 (replace 'install
8996 (lambda* (#:key outputs #:allow-other-keys)
8997 (copy-recursively
8998 "bin" (string-append (assoc-ref outputs "out") "/bin"))
8999 #t)))))
9000 (inputs
9001 `(("gsl" ,gsl)
9002 ("zlib" ,zlib)))
9003 (home-page "https://github.com/arq5x/bits")
9004 (synopsis "Implementation of binary interval search algorithm")
9005 (description "This package provides an implementation of the
9006 BITS (Binary Interval Search) algorithm, an approach to interval set
9007 intersection. It is especially suited for the comparison of diverse genomic
9008 datasets and the exploration of large datasets of genome
9009 intervals (e.g. genes, sequence alignments).")
9010 (license license:gpl2))))
9011
9012 (define-public piranha
9013 ;; There is no release tarball for the latest version. The latest commit is
9014 ;; older than one year at the time of this writing.
9015 (let ((revision "1")
9016 (commit "0466d364b71117d01e4471b74c514436cc281233"))
9017 (package
9018 (name "piranha")
9019 (version (string-append "1.2.1-" revision "." (string-take commit 9)))
9020 (source (origin
9021 (method git-fetch)
9022 (uri (git-reference
9023 (url "https://github.com/smithlabcode/piranha")
9024 (commit commit)))
9025 (file-name (git-file-name name version))
9026 (sha256
9027 (base32
9028 "117dc0zf20c61jam69sk4abl57ah6yi6i7qra7d7y5zrbgk12q5n"))))
9029 (build-system gnu-build-system)
9030 (arguments
9031 `(#:test-target "test"
9032 #:phases
9033 (modify-phases %standard-phases
9034 (add-after 'unpack 'copy-smithlab-cpp
9035 (lambda* (#:key inputs #:allow-other-keys)
9036 (for-each (lambda (file)
9037 (install-file file "./src/smithlab_cpp/"))
9038 (find-files (assoc-ref inputs "smithlab-cpp")))
9039 #t))
9040 (add-after 'install 'install-to-store
9041 (lambda* (#:key outputs #:allow-other-keys)
9042 (let* ((out (assoc-ref outputs "out"))
9043 (bin (string-append out "/bin")))
9044 (for-each (lambda (file)
9045 (install-file file bin))
9046 (find-files "bin" ".*")))
9047 #t)))
9048 #:configure-flags
9049 (list (string-append "--with-bam_tools_headers="
9050 (assoc-ref %build-inputs "bamtools") "/include/bamtools")
9051 (string-append "--with-bam_tools_library="
9052 (assoc-ref %build-inputs "bamtools") "/lib/bamtools"))))
9053 (inputs
9054 `(("bamtools" ,bamtools)
9055 ("samtools" ,samtools-0.1)
9056 ("gsl" ,gsl)
9057 ("smithlab-cpp"
9058 ,(let ((commit "3723e2db438c51501d0423429ff396c3035ba46a"))
9059 (origin
9060 (method git-fetch)
9061 (uri (git-reference
9062 (url "https://github.com/smithlabcode/smithlab_cpp")
9063 (commit commit)))
9064 (file-name (string-append "smithlab_cpp-" commit "-checkout"))
9065 (sha256
9066 (base32
9067 "0l4gvbwslw5ngziskja41c00x1r06l3yidv7y0xw9djibhykzy0g")))))))
9068 (native-inputs
9069 `(("python" ,python-2)))
9070 (home-page "https://github.com/smithlabcode/piranha")
9071 (synopsis "Peak-caller for CLIP-seq and RIP-seq data")
9072 (description
9073 "Piranha is a peak-caller for genomic data produced by CLIP-seq and
9074 RIP-seq experiments. It takes input in BED or BAM format and identifies
9075 regions of statistically significant read enrichment. Additional covariates
9076 may optionally be provided to further inform the peak-calling process.")
9077 (license license:gpl3+))))
9078
9079 (define-public pepr
9080 (package
9081 (name "pepr")
9082 (version "1.0.9")
9083 (source (origin
9084 (method url-fetch)
9085 (uri (pypi-uri "PePr" version))
9086 (sha256
9087 (base32
9088 "0qxjfdpl1b1y53nccws2d85f6k74zwmx8y8sd9rszcqhfayx6gdx"))))
9089 (build-system python-build-system)
9090 (arguments
9091 `(#:python ,python-2 ; python2 only
9092 #:tests? #f)) ; no tests included
9093 (propagated-inputs
9094 `(("python2-numpy" ,python2-numpy)
9095 ("python2-scipy" ,python2-scipy)
9096 ("python2-pysam" ,python2-pysam)))
9097 (home-page "https://github.com/shawnzhangyx/PePr")
9098 (synopsis "Peak-calling and prioritization pipeline for ChIP-Seq data")
9099 (description
9100 "PePr is a ChIP-Seq peak calling or differential binding analysis tool
9101 that is primarily designed for data with biological replicates. It uses a
9102 negative binomial distribution to model the read counts among the samples in
9103 the same group, and look for consistent differences between ChIP and control
9104 group or two ChIP groups run under different conditions.")
9105 (license license:gpl3+)))
9106
9107 (define-public filevercmp
9108 (let ((commit "1a9b779b93d0b244040274794d402106907b71b7"))
9109 (package
9110 (name "filevercmp")
9111 (version (string-append "0-1." (string-take commit 7)))
9112 (source (origin
9113 (method git-fetch)
9114 (uri (git-reference
9115 (url "https://github.com/ekg/filevercmp")
9116 (commit commit)))
9117 (file-name (git-file-name name commit))
9118 (sha256
9119 (base32
9120 "1j9vxsy0y050v59h0q1d6501fcw1kjvj0d18l1xk2zyg0jzj247c"))))
9121 (build-system gnu-build-system)
9122 (arguments
9123 `(#:tests? #f ; There are no tests to run.
9124 #:phases
9125 (modify-phases %standard-phases
9126 (delete 'configure) ; There is no configure phase.
9127 (replace 'install
9128 (lambda* (#:key outputs #:allow-other-keys)
9129 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
9130 (install-file "filevercmp" bin)
9131 #t))))))
9132 (home-page "https://github.com/ekg/filevercmp")
9133 (synopsis "This program compares version strings")
9134 (description "This program compares version strings. It intends to be a
9135 replacement for strverscmp.")
9136 (license license:gpl3+))))
9137
9138 (define-public multiqc
9139 (package
9140 (name "multiqc")
9141 (version "1.5")
9142 (source
9143 (origin
9144 (method url-fetch)
9145 (uri (pypi-uri "multiqc" version))
9146 (sha256
9147 (base32
9148 "02iihfl0w0hpnr4pa0sbd1y9qxrg3ycyhjp5lidkcrqh1lmzs3zy"))))
9149 (build-system python-build-system)
9150 (propagated-inputs
9151 `(("python-jinja2" ,python-jinja2)
9152 ("python-simplejson" ,python-simplejson)
9153 ("python-pyyaml" ,python-pyyaml)
9154 ("python-click" ,python-click)
9155 ("python-spectra" ,python-spectra)
9156 ("python-requests" ,python-requests)
9157 ("python-markdown" ,python-markdown)
9158 ("python-lzstring" ,python-lzstring)
9159 ("python-matplotlib" ,python-matplotlib)
9160 ("python-numpy" ,python-numpy)
9161 ;; MultQC checks for the presence of nose at runtime.
9162 ("python-nose" ,python-nose)))
9163 (arguments
9164 `(#:phases
9165 (modify-phases %standard-phases
9166 (add-after 'unpack 'relax-requirements
9167 (lambda _
9168 (substitute* "setup.py"
9169 ;; MultiQC 1.5 ‘requires’ a version of python-matplotlib older
9170 ;; than the one in Guix, but should work fine with 2.2.2.
9171 ;; See <https://github.com/ewels/MultiQC/issues/725> and
9172 ;; <https://github.com/ewels/MultiQC/issues/732> for details.
9173 (("['\"]matplotlib.*?['\"]")
9174 "'matplotlib'"))
9175 #t)))))
9176 (home-page "https://multiqc.info")
9177 (synopsis "Aggregate bioinformatics analysis reports")
9178 (description
9179 "MultiQC is a tool to aggregate bioinformatics results across many
9180 samples into a single report. It contains modules for a large number of
9181 common bioinformatics tools.")
9182 (license license:gpl3+)))
9183
9184 (define-public variant-tools
9185 (package
9186 (name "variant-tools")
9187 (version "3.1.2")
9188 (source
9189 (origin
9190 (method git-fetch)
9191 (uri (git-reference
9192 (url "https://github.com/vatlab/varianttools")
9193 ;; There is no tag corresponding to version 3.1.2
9194 (commit "813ae4a90d25b69abc8a40f4f70441fe09015249")))
9195 (file-name (git-file-name name version))
9196 (sha256
9197 (base32
9198 "12ibdmksj7icyqhks4xyvd61bygk4pjmxn618kp6vgk1af01y34g"))))
9199 (build-system python-build-system)
9200 (inputs
9201 `(("boost" ,boost)
9202 ("c-blosc" ,c-blosc)
9203 ("gsl" ,gsl)
9204 ("hdf5" ,hdf5)
9205 ("hdf5-blosc" ,hdf5-blosc)
9206 ("python-cython" ,python-cython)
9207 ("zlib" ,zlib)))
9208 (propagated-inputs
9209 `(("python-numpy" ,python-numpy)
9210 ("python-pycurl" ,python-pycurl)
9211 ("python-pyzmq" ,python-pyzmq)
9212 ("python-scipy" ,python-scipy)
9213 ("python-tables" ,python-tables)))
9214 (home-page "https://vatlab.github.io/vat-docs/")
9215 (synopsis "Analyze genetic variants from Next-Gen sequencing studies")
9216 (description
9217 "Variant tools is a tool for the manipulation, annotation,
9218 selection, simulation, and analysis of variants in the context of next-gen
9219 sequencing analysis. Unlike some other tools used for next-gen sequencing
9220 analysis, variant tools is project based and provides a whole set of tools to
9221 manipulate and analyze genetic variants.")
9222 (license license:gpl3+)))
9223
9224 (define-public r-chipseq
9225 (package
9226 (name "r-chipseq")
9227 (version "1.38.0")
9228 (source
9229 (origin
9230 (method url-fetch)
9231 (uri (bioconductor-uri "chipseq" version))
9232 (sha256
9233 (base32
9234 "0lh859s0aq73vac1phcgagf6n000qgq2xsk0bmfr61n5swifml2a"))))
9235 (build-system r-build-system)
9236 (propagated-inputs
9237 `(("r-biocgenerics" ,r-biocgenerics)
9238 ("r-genomicranges" ,r-genomicranges)
9239 ("r-iranges" ,r-iranges)
9240 ("r-lattice" ,r-lattice)
9241 ("r-s4vectors" ,r-s4vectors)
9242 ("r-shortread" ,r-shortread)))
9243 (home-page "https://bioconductor.org/packages/chipseq")
9244 (synopsis "Package for analyzing ChIPseq data")
9245 (description
9246 "This package provides tools for processing short read data from ChIPseq
9247 experiments.")
9248 (license license:artistic2.0)))
9249
9250 (define-public r-copyhelper
9251 (package
9252 (name "r-copyhelper")
9253 (version "1.6.0")
9254 (source
9255 (origin
9256 (method url-fetch)
9257 (uri (string-append "https://bioconductor.org/packages/release/"
9258 "data/experiment/src/contrib/CopyhelpeR_"
9259 version ".tar.gz"))
9260 (sha256
9261 (base32
9262 "0x7cyynjmxls9as2gg0iyp9x5fpalxmdjq914ss7i84i9zyk5bhq"))))
9263 (properties `((upstream-name . "CopyhelpeR")))
9264 (build-system r-build-system)
9265 (home-page "https://bioconductor.org/packages/CopyhelpeR/")
9266 (synopsis "Helper files for CopywriteR")
9267 (description
9268 "This package contains the helper files that are required to run the
9269 Bioconductor package CopywriteR. It contains pre-assembled 1kb bin GC-content
9270 and mappability files for the reference genomes hg18, hg19, hg38, mm9 and
9271 mm10. In addition, it contains a blacklist filter to remove regions that
9272 display copy number variation. Files are stored as GRanges objects from the
9273 GenomicRanges Bioconductor package.")
9274 (license license:gpl2)))
9275
9276 (define-public r-copywriter
9277 (package
9278 (name "r-copywriter")
9279 (version "2.20.0")
9280 (source
9281 (origin
9282 (method url-fetch)
9283 (uri (bioconductor-uri "CopywriteR" version))
9284 (sha256
9285 (base32
9286 "0c36wpv0rygkbqpf3dwh5xmc3lr7p8lrdzsq2fbbpw04skl6i7m2"))))
9287 (properties `((upstream-name . "CopywriteR")))
9288 (build-system r-build-system)
9289 (propagated-inputs
9290 `(("r-biocparallel" ,r-biocparallel)
9291 ("r-chipseq" ,r-chipseq)
9292 ("r-copyhelper" ,r-copyhelper)
9293 ("r-data-table" ,r-data-table)
9294 ("r-dnacopy" ,r-dnacopy)
9295 ("r-futile-logger" ,r-futile-logger)
9296 ("r-genomeinfodb" ,r-genomeinfodb)
9297 ("r-genomicalignments" ,r-genomicalignments)
9298 ("r-genomicranges" ,r-genomicranges)
9299 ("r-gtools" ,r-gtools)
9300 ("r-iranges" ,r-iranges)
9301 ("r-matrixstats" ,r-matrixstats)
9302 ("r-rsamtools" ,r-rsamtools)
9303 ("r-s4vectors" ,r-s4vectors)))
9304 (home-page "https://github.com/PeeperLab/CopywriteR")
9305 (synopsis "Copy number information from targeted sequencing")
9306 (description
9307 "CopywriteR extracts DNA copy number information from targeted sequencing
9308 by utilizing off-target reads. It allows for extracting uniformly distributed
9309 copy number information, can be used without reference, and can be applied to
9310 sequencing data obtained from various techniques including chromatin
9311 immunoprecipitation and target enrichment on small gene panels. Thereby,
9312 CopywriteR constitutes a widely applicable alternative to available copy
9313 number detection tools.")
9314 (license license:gpl2)))
9315
9316 (define-public r-methylkit
9317 (package
9318 (name "r-methylkit")
9319 (version "1.14.2")
9320 (source (origin
9321 (method url-fetch)
9322 (uri (bioconductor-uri "methylKit" version))
9323 (sha256
9324 (base32
9325 "1qr13d2712ypbn96ijic2z5adr5dsd61kzscx7shw6vyj360rlm5"))))
9326 (properties `((upstream-name . "methylKit")))
9327 (build-system r-build-system)
9328 (propagated-inputs
9329 `(("r-data-table" ,r-data-table)
9330 ("r-emdbook" ,r-emdbook)
9331 ("r-fastseg" ,r-fastseg)
9332 ("r-genomeinfodb" ,r-genomeinfodb)
9333 ("r-genomicranges" ,r-genomicranges)
9334 ("r-gtools" ,r-gtools)
9335 ("r-iranges" ,r-iranges)
9336 ("r-kernsmooth" ,r-kernsmooth)
9337 ("r-limma" ,r-limma)
9338 ("r-mclust" ,r-mclust)
9339 ("r-mgcv" ,r-mgcv)
9340 ("r-qvalue" ,r-qvalue)
9341 ("r-r-utils" ,r-r-utils)
9342 ("r-rcpp" ,r-rcpp)
9343 ("r-rhtslib" ,r-rhtslib)
9344 ("r-rsamtools" ,r-rsamtools)
9345 ("r-rtracklayer" ,r-rtracklayer)
9346 ("r-s4vectors" ,r-s4vectors)
9347 ("r-zlibbioc" ,r-zlibbioc)))
9348 (native-inputs
9349 `(("r-knitr" ,r-knitr))) ; for vignettes
9350 (inputs
9351 `(("zlib" ,zlib)))
9352 (home-page "https://github.com/al2na/methylKit")
9353 (synopsis
9354 "DNA methylation analysis from high-throughput bisulfite sequencing results")
9355 (description
9356 "MethylKit is an R package for DNA methylation analysis and annotation
9357 from high-throughput bisulfite sequencing. The package is designed to deal
9358 with sequencing data from @dfn{Reduced representation bisulfite
9359 sequencing} (RRBS) and its variants, but also target-capture methods and whole
9360 genome bisulfite sequencing. It also has functions to analyze base-pair
9361 resolution 5hmC data from experimental protocols such as oxBS-Seq and
9362 TAB-Seq.")
9363 (license license:artistic2.0)))
9364
9365 (define-public r-sva
9366 (package
9367 (name "r-sva")
9368 (version "3.36.0")
9369 (source
9370 (origin
9371 (method url-fetch)
9372 (uri (bioconductor-uri "sva" version))
9373 (sha256
9374 (base32
9375 "0xa1lm0k1a6nig90mab6xh4gln88rbs5l1cdr6ik6agg7jhs7ji4"))))
9376 (build-system r-build-system)
9377 (propagated-inputs
9378 `(("r-edger" ,r-edger)
9379 ("r-genefilter" ,r-genefilter)
9380 ("r-mgcv" ,r-mgcv)
9381 ("r-biocparallel" ,r-biocparallel)
9382 ("r-matrixstats" ,r-matrixstats)
9383 ("r-limma" ,r-limma)))
9384 (home-page "https://bioconductor.org/packages/sva")
9385 (synopsis "Surrogate variable analysis")
9386 (description
9387 "This package contains functions for removing batch effects and other
9388 unwanted variation in high-throughput experiment. It also contains functions
9389 for identifying and building surrogate variables for high-dimensional data
9390 sets. Surrogate variables are covariates constructed directly from
9391 high-dimensional data like gene expression/RNA sequencing/methylation/brain
9392 imaging data that can be used in subsequent analyses to adjust for unknown,
9393 unmodeled, or latent sources of noise.")
9394 (license license:artistic2.0)))
9395
9396 (define-public r-raremetals2
9397 (package
9398 (name "r-raremetals2")
9399 (version "0.1")
9400 (source
9401 (origin
9402 (method url-fetch)
9403 (uri (string-append "http://genome.sph.umich.edu/w/images/"
9404 "b/b7/RareMETALS2_" version ".tar.gz"))
9405 (sha256
9406 (base32
9407 "0z5ljcgvnm06ja9lm85a3cniq7slxcy37aqqkxrdidr79an5fs4s"))))
9408 (properties `((upstream-name . "RareMETALS2")))
9409 (build-system r-build-system)
9410 (propagated-inputs
9411 `(("r-seqminer" ,r-seqminer)
9412 ("r-mvtnorm" ,r-mvtnorm)
9413 ("r-mass" ,r-mass)
9414 ("r-compquadform" ,r-compquadform)
9415 ("r-getopt" ,r-getopt)))
9416 (home-page "http://genome.sph.umich.edu/wiki/RareMETALS2")
9417 (synopsis "Analyze gene-level association tests for binary trait")
9418 (description
9419 "The R package rareMETALS2 is an extension of the R package rareMETALS.
9420 It was designed to meta-analyze gene-level association tests for binary trait.
9421 While rareMETALS offers a near-complete solution for meta-analysis of
9422 gene-level tests for quantitative trait, it does not offer the optimal
9423 solution for binary trait. The package rareMETALS2 offers improved features
9424 for analyzing gene-level association tests in meta-analyses for binary
9425 trait.")
9426 (license license:gpl3)))
9427
9428 (define-public r-protgenerics
9429 (package
9430 (name "r-protgenerics")
9431 (version "1.20.0")
9432 (source
9433 (origin
9434 (method url-fetch)
9435 (uri (bioconductor-uri "ProtGenerics" version))
9436 (sha256
9437 (base32
9438 "14xzdh7vxss8vmrw91hcwrszdn3ikm71mah8875b2lkrkrfzbl73"))))
9439 (properties `((upstream-name . "ProtGenerics")))
9440 (build-system r-build-system)
9441 (home-page "https://github.com/lgatto/ProtGenerics")
9442 (synopsis "S4 generic functions for proteomics infrastructure")
9443 (description
9444 "This package provides S4 generic functions needed by Bioconductor
9445 proteomics packages.")
9446 (license license:artistic2.0)))
9447
9448 (define-public r-mzr
9449 (package
9450 (name "r-mzr")
9451 (version "2.22.0")
9452 (source
9453 (origin
9454 (method url-fetch)
9455 (uri (bioconductor-uri "mzR" version))
9456 (sha256
9457 (base32
9458 "1r8j8yiz5lcan7j4h37sza2kwczl48dxvld3da3ghjjq67cdc2cm"))
9459 (modules '((guix build utils)))
9460 (snippet
9461 '(begin
9462 (delete-file-recursively "src/boost")
9463 #t))))
9464 (properties `((upstream-name . "mzR")))
9465 (build-system r-build-system)
9466 (arguments
9467 `(#:phases
9468 (modify-phases %standard-phases
9469 (add-after 'unpack 'use-system-boost
9470 (lambda _
9471 (substitute* "src/Makevars"
9472 (("\\./boost/libs.*") "")
9473 (("ARCH_OBJS=" line)
9474 (string-append line
9475 "\nARCH_LIBS=-lboost_system -lboost_regex \
9476 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n")))
9477 #t)))))
9478 (inputs
9479 `(;; Our default boost package won't work here, unfortunately, even with
9480 ;; mzR version 2.22.0.
9481 ("boost" ,boost-for-mysql) ; use this instead of the bundled boost sources
9482 ("zlib" ,zlib)))
9483 (propagated-inputs
9484 `(("r-biobase" ,r-biobase)
9485 ("r-biocgenerics" ,r-biocgenerics)
9486 ("r-ncdf4" ,r-ncdf4)
9487 ("r-protgenerics" ,r-protgenerics)
9488 ("r-rcpp" ,r-rcpp)
9489 ("r-rhdf5lib" ,r-rhdf5lib)
9490 ("r-zlibbioc" ,r-zlibbioc)))
9491 (native-inputs
9492 `(("r-knitr" ,r-knitr)))
9493 (home-page "https://github.com/sneumann/mzR/")
9494 (synopsis "Parser for mass spectrometry data files")
9495 (description
9496 "The mzR package provides a unified API to the common file formats and
9497 parsers available for mass spectrometry data. It comes with a wrapper for the
9498 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
9499 The package contains the original code written by the ISB, and a subset of the
9500 proteowizard library for mzML and mzIdentML. The netCDF reading code has
9501 previously been used in XCMS.")
9502 (license license:artistic2.0)))
9503
9504 (define-public r-affyio
9505 (package
9506 (name "r-affyio")
9507 (version "1.58.0")
9508 (source
9509 (origin
9510 (method url-fetch)
9511 (uri (bioconductor-uri "affyio" version))
9512 (sha256
9513 (base32
9514 "0j1f61409yq6hmkqrpzamfm7dx35rlq33ccs7wb1qcqx3d3nb75q"))))
9515 (build-system r-build-system)
9516 (propagated-inputs
9517 `(("r-zlibbioc" ,r-zlibbioc)))
9518 (inputs
9519 `(("zlib" ,zlib)))
9520 (home-page "https://github.com/bmbolstad/affyio")
9521 (synopsis "Tools for parsing Affymetrix data files")
9522 (description
9523 "This package provides routines for parsing Affymetrix data files based
9524 upon file format information. The primary focus is on accessing the CEL and
9525 CDF file formats.")
9526 (license license:lgpl2.0+)))
9527
9528 (define-public r-affy
9529 (package
9530 (name "r-affy")
9531 (version "1.66.0")
9532 (source
9533 (origin
9534 (method url-fetch)
9535 (uri (bioconductor-uri "affy" version))
9536 (sha256
9537 (base32
9538 "0m6hkyjxmsf80n3anhwh9k26csxczv6v92fkb7klnchdski61pyc"))))
9539 (build-system r-build-system)
9540 (propagated-inputs
9541 `(("r-affyio" ,r-affyio)
9542 ("r-biobase" ,r-biobase)
9543 ("r-biocgenerics" ,r-biocgenerics)
9544 ("r-biocmanager" ,r-biocmanager)
9545 ("r-preprocesscore" ,r-preprocesscore)
9546 ("r-zlibbioc" ,r-zlibbioc)))
9547 (inputs
9548 `(("zlib" ,zlib)))
9549 (home-page "https://bioconductor.org/packages/affy")
9550 (synopsis "Methods for affymetrix oligonucleotide arrays")
9551 (description
9552 "This package contains functions for exploratory oligonucleotide array
9553 analysis.")
9554 (license license:lgpl2.0+)))
9555
9556 (define-public r-vsn
9557 (package
9558 (name "r-vsn")
9559 (version "3.56.0")
9560 (source
9561 (origin
9562 (method url-fetch)
9563 (uri (bioconductor-uri "vsn" version))
9564 (sha256
9565 (base32
9566 "1k82dikrv1gcync5y1131wg7z1kxv2z2jl4nndg20bixc3398h58"))))
9567 (build-system r-build-system)
9568 (propagated-inputs
9569 `(("r-affy" ,r-affy)
9570 ("r-biobase" ,r-biobase)
9571 ("r-ggplot2" ,r-ggplot2)
9572 ("r-lattice" ,r-lattice)
9573 ("r-limma" ,r-limma)))
9574 (native-inputs
9575 `(("r-knitr" ,r-knitr))) ; for vignettes
9576 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
9577 (synopsis "Variance stabilization and calibration for microarray data")
9578 (description
9579 "The package implements a method for normalising microarray intensities,
9580 and works for single- and multiple-color arrays. It can also be used for data
9581 from other technologies, as long as they have similar format. The method uses
9582 a robust variant of the maximum-likelihood estimator for an
9583 additive-multiplicative error model and affine calibration. The model
9584 incorporates data calibration step (a.k.a. normalization), a model for the
9585 dependence of the variance on the mean intensity and a variance stabilizing
9586 data transformation. Differences between transformed intensities are
9587 analogous to \"normalized log-ratios\". However, in contrast to the latter,
9588 their variance is independent of the mean, and they are usually more sensitive
9589 and specific in detecting differential transcription.")
9590 (license license:artistic2.0)))
9591
9592 (define-public r-mzid
9593 (package
9594 (name "r-mzid")
9595 (version "1.26.0")
9596 (source
9597 (origin
9598 (method url-fetch)
9599 (uri (bioconductor-uri "mzID" version))
9600 (sha256
9601 (base32
9602 "0y50lzkdamkpz67f6r5whp246qsxpbammjil7g8vjprx0c4jk5n5"))))
9603 (properties `((upstream-name . "mzID")))
9604 (build-system r-build-system)
9605 (propagated-inputs
9606 `(("r-doparallel" ,r-doparallel)
9607 ("r-foreach" ,r-foreach)
9608 ("r-iterators" ,r-iterators)
9609 ("r-plyr" ,r-plyr)
9610 ("r-protgenerics" ,r-protgenerics)
9611 ("r-rcpp" ,r-rcpp)
9612 ("r-xml" ,r-xml)))
9613 (native-inputs
9614 `(("r-knitr" ,r-knitr)))
9615 (home-page "https://bioconductor.org/packages/mzID")
9616 (synopsis "Parser for mzIdentML files")
9617 (description
9618 "This package provides a parser for mzIdentML files implemented using the
9619 XML package. The parser tries to be general and able to handle all types of
9620 mzIdentML files with the drawback of having less pretty output than a vendor
9621 specific parser.")
9622 (license license:gpl2+)))
9623
9624 (define-public r-pcamethods
9625 (package
9626 (name "r-pcamethods")
9627 (version "1.80.0")
9628 (source
9629 (origin
9630 (method url-fetch)
9631 (uri (bioconductor-uri "pcaMethods" version))
9632 (sha256
9633 (base32
9634 "10cww4jxyynkwxbbsx804nwac31j0hh8dgisygld0q663gaxkgni"))))
9635 (properties `((upstream-name . "pcaMethods")))
9636 (build-system r-build-system)
9637 (propagated-inputs
9638 `(("r-biobase" ,r-biobase)
9639 ("r-biocgenerics" ,r-biocgenerics)
9640 ("r-mass" ,r-mass)
9641 ("r-rcpp" ,r-rcpp)))
9642 (home-page "https://github.com/hredestig/pcamethods")
9643 (synopsis "Collection of PCA methods")
9644 (description
9645 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
9646 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
9647 for missing value estimation is included for comparison. BPCA, PPCA and
9648 NipalsPCA may be used to perform PCA on incomplete data as well as for
9649 accurate missing value estimation. A set of methods for printing and plotting
9650 the results is also provided. All PCA methods make use of the same data
9651 structure (pcaRes) to provide a common interface to the PCA results.")
9652 (license license:gpl3+)))
9653
9654 (define-public r-msnbase
9655 (package
9656 (name "r-msnbase")
9657 (version "2.14.2")
9658 (source
9659 (origin
9660 (method url-fetch)
9661 (uri (bioconductor-uri "MSnbase" version))
9662 (sha256
9663 (base32
9664 "17vlv9gh41s1hp043b7j1jfqiw52alh1misjzy1kxl0g90rld00l"))))
9665 (properties `((upstream-name . "MSnbase")))
9666 (build-system r-build-system)
9667 (propagated-inputs
9668 `(("r-affy" ,r-affy)
9669 ("r-biobase" ,r-biobase)
9670 ("r-biocgenerics" ,r-biocgenerics)
9671 ("r-biocparallel" ,r-biocparallel)
9672 ("r-digest" ,r-digest)
9673 ("r-ggplot2" ,r-ggplot2)
9674 ("r-impute" ,r-impute)
9675 ("r-iranges" ,r-iranges)
9676 ("r-lattice" ,r-lattice)
9677 ("r-maldiquant" ,r-maldiquant)
9678 ("r-mass" ,r-mass)
9679 ("r-mzid" ,r-mzid)
9680 ("r-mzr" ,r-mzr)
9681 ("r-pcamethods" ,r-pcamethods)
9682 ("r-plyr" ,r-plyr)
9683 ("r-preprocesscore" ,r-preprocesscore)
9684 ("r-protgenerics" ,r-protgenerics)
9685 ("r-rcpp" ,r-rcpp)
9686 ("r-s4vectors" ,r-s4vectors)
9687 ("r-scales" ,r-scales)
9688 ("r-vsn" ,r-vsn)
9689 ("r-xml" ,r-xml)))
9690 (native-inputs
9691 `(("r-knitr" ,r-knitr)))
9692 (home-page "https://github.com/lgatto/MSnbase")
9693 (synopsis "Base functions and classes for MS-based proteomics")
9694 (description
9695 "This package provides basic plotting, data manipulation and processing
9696 of mass spectrometry based proteomics data.")
9697 (license license:artistic2.0)))
9698
9699 (define-public r-msnid
9700 (package
9701 (name "r-msnid")
9702 (version "1.22.0")
9703 (source
9704 (origin
9705 (method url-fetch)
9706 (uri (bioconductor-uri "MSnID" version))
9707 (sha256
9708 (base32
9709 "0dwa6j2nqb3223a8g4f453aznjh69wngrpvdi12iy69j1psbbjcc"))))
9710 (properties `((upstream-name . "MSnID")))
9711 (build-system r-build-system)
9712 (propagated-inputs
9713 `(("r-biobase" ,r-biobase)
9714 ("r-data-table" ,r-data-table)
9715 ("r-doparallel" ,r-doparallel)
9716 ("r-dplyr" ,r-dplyr)
9717 ("r-foreach" ,r-foreach)
9718 ("r-iterators" ,r-iterators)
9719 ("r-msnbase" ,r-msnbase)
9720 ("r-mzid" ,r-mzid)
9721 ("r-mzr" ,r-mzr)
9722 ("r-protgenerics" ,r-protgenerics)
9723 ("r-r-cache" ,r-r-cache)
9724 ("r-rcpp" ,r-rcpp)
9725 ("r-reshape2" ,r-reshape2)))
9726 (home-page "https://bioconductor.org/packages/MSnID")
9727 (synopsis "Utilities for LC-MSn proteomics identifications")
9728 (description
9729 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
9730 from mzIdentML (leveraging the mzID package) or text files. After collating
9731 the search results from multiple datasets it assesses their identification
9732 quality and optimize filtering criteria to achieve the maximum number of
9733 identifications while not exceeding a specified false discovery rate. It also
9734 contains a number of utilities to explore the MS/MS results and assess missed
9735 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
9736 (license license:artistic2.0)))
9737
9738 (define-public r-aroma-light
9739 (package
9740 (name "r-aroma-light")
9741 (version "3.18.0")
9742 (source
9743 (origin
9744 (method url-fetch)
9745 (uri (bioconductor-uri "aroma.light" version))
9746 (sha256
9747 (base32
9748 "19y5f2minx2pp73zdh43v1qkwpkaxygkl8cwlnwja15i46s0bcyc"))))
9749 (properties `((upstream-name . "aroma.light")))
9750 (build-system r-build-system)
9751 (propagated-inputs
9752 `(("r-matrixstats" ,r-matrixstats)
9753 ("r-r-methodss3" ,r-r-methodss3)
9754 ("r-r-oo" ,r-r-oo)
9755 ("r-r-utils" ,r-r-utils)))
9756 (home-page "https://github.com/HenrikBengtsson/aroma.light")
9757 (synopsis "Methods for normalization and visualization of microarray data")
9758 (description
9759 "This package provides methods for microarray analysis that take basic
9760 data types such as matrices and lists of vectors. These methods can be used
9761 standalone, be utilized in other packages, or be wrapped up in higher-level
9762 classes.")
9763 (license license:gpl2+)))
9764
9765 (define-public r-deseq
9766 (package
9767 (name "r-deseq")
9768 (version "1.39.0")
9769 (source
9770 (origin
9771 (method url-fetch)
9772 (uri (bioconductor-uri "DESeq" version))
9773 (sha256
9774 (base32
9775 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
9776 (properties `((upstream-name . "DESeq")))
9777 (build-system r-build-system)
9778 (propagated-inputs
9779 `(("r-biobase" ,r-biobase)
9780 ("r-biocgenerics" ,r-biocgenerics)
9781 ("r-genefilter" ,r-genefilter)
9782 ("r-geneplotter" ,r-geneplotter)
9783 ("r-lattice" ,r-lattice)
9784 ("r-locfit" ,r-locfit)
9785 ("r-mass" ,r-mass)
9786 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9787 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
9788 (synopsis "Differential gene expression analysis")
9789 (description
9790 "This package provides tools for estimating variance-mean dependence in
9791 count data from high-throughput genetic sequencing assays and for testing for
9792 differential expression based on a model using the negative binomial
9793 distribution.")
9794 (license license:gpl3+)))
9795
9796 (define-public r-edaseq
9797 (package
9798 (name "r-edaseq")
9799 (version "2.22.0")
9800 (source
9801 (origin
9802 (method url-fetch)
9803 (uri (bioconductor-uri "EDASeq" version))
9804 (sha256
9805 (base32
9806 "12gzxjh73qshlwvsf92lbrf4bi199kxg2snrkprh1z4yqf7bjfm4"))))
9807 (properties `((upstream-name . "EDASeq")))
9808 (build-system r-build-system)
9809 (propagated-inputs
9810 `(("r-annotationdbi" ,r-annotationdbi)
9811 ("r-aroma-light" ,r-aroma-light)
9812 ("r-biobase" ,r-biobase)
9813 ("r-biocgenerics" ,r-biocgenerics)
9814 ("r-biocmanager" ,r-biocmanager)
9815 ("r-biomart" ,r-biomart)
9816 ("r-biostrings" ,r-biostrings)
9817 ("r-deseq" ,r-deseq)
9818 ("r-genomicfeatures" ,r-genomicfeatures)
9819 ("r-genomicranges" ,r-genomicranges)
9820 ("r-iranges" ,r-iranges)
9821 ("r-rsamtools" ,r-rsamtools)
9822 ("r-shortread" ,r-shortread)))
9823 (native-inputs
9824 `(("r-knitr" ,r-knitr)))
9825 (home-page "https://github.com/drisso/EDASeq")
9826 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
9827 (description
9828 "This package provides support for numerical and graphical summaries of
9829 RNA-Seq genomic read data. Provided within-lane normalization procedures to
9830 adjust for GC-content effect (or other gene-level effects) on read counts:
9831 loess robust local regression, global-scaling, and full-quantile
9832 normalization. Between-lane normalization procedures to adjust for
9833 distributional differences between lanes (e.g., sequencing depth):
9834 global-scaling and full-quantile normalization.")
9835 (license license:artistic2.0)))
9836
9837 (define-public r-interactivedisplaybase
9838 (package
9839 (name "r-interactivedisplaybase")
9840 (version "1.26.3")
9841 (source
9842 (origin
9843 (method url-fetch)
9844 (uri (bioconductor-uri "interactiveDisplayBase" version))
9845 (sha256
9846 (base32
9847 "1x5vipqa4pgwpd62c1c58shnlpv3zyzzpf4wdwr00q1swkdb7wv3"))))
9848 (properties
9849 `((upstream-name . "interactiveDisplayBase")))
9850 (build-system r-build-system)
9851 (propagated-inputs
9852 `(("r-biocgenerics" ,r-biocgenerics)
9853 ("r-dt" ,r-dt)
9854 ("r-shiny" ,r-shiny)))
9855 (native-inputs
9856 `(("r-knitr" ,r-knitr)))
9857 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
9858 (synopsis "Base package for web displays of Bioconductor objects")
9859 (description
9860 "This package contains the basic methods needed to generate interactive
9861 Shiny-based display methods for Bioconductor objects.")
9862 (license license:artistic2.0)))
9863
9864 (define-public r-annotationhub
9865 (package
9866 (name "r-annotationhub")
9867 (version "2.20.2")
9868 (source
9869 (origin
9870 (method url-fetch)
9871 (uri (bioconductor-uri "AnnotationHub" version))
9872 (sha256
9873 (base32
9874 "04bz91m2wx1zm61rvpr0syyklz232fw74wrl73d965wi3x8fyda5"))))
9875 (properties `((upstream-name . "AnnotationHub")))
9876 (build-system r-build-system)
9877 (propagated-inputs
9878 `(("r-annotationdbi" ,r-annotationdbi)
9879 ("r-biocfilecache" ,r-biocfilecache)
9880 ("r-biocgenerics" ,r-biocgenerics)
9881 ("r-biocmanager" ,r-biocmanager)
9882 ("r-biocversion" ,r-biocversion)
9883 ("r-curl" ,r-curl)
9884 ("r-dplyr" ,r-dplyr)
9885 ("r-httr" ,r-httr)
9886 ("r-interactivedisplaybase" ,r-interactivedisplaybase)
9887 ("r-rappdirs" ,r-rappdirs)
9888 ("r-rsqlite" ,r-rsqlite)
9889 ("r-s4vectors" ,r-s4vectors)
9890 ("r-yaml" ,r-yaml)))
9891 (native-inputs
9892 `(("r-knitr" ,r-knitr)))
9893 (home-page "https://bioconductor.org/packages/AnnotationHub")
9894 (synopsis "Client to access AnnotationHub resources")
9895 (description
9896 "This package provides a client for the Bioconductor AnnotationHub web
9897 resource. The AnnotationHub web resource provides a central location where
9898 genomic files (e.g. VCF, bed, wig) and other resources from standard
9899 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
9900 metadata about each resource, e.g., a textual description, tags, and date of
9901 modification. The client creates and manages a local cache of files retrieved
9902 by the user, helping with quick and reproducible access.")
9903 (license license:artistic2.0)))
9904
9905 (define-public r-fastseg
9906 (package
9907 (name "r-fastseg")
9908 (version "1.34.0")
9909 (source
9910 (origin
9911 (method url-fetch)
9912 (uri (bioconductor-uri "fastseg" version))
9913 (sha256
9914 (base32
9915 "1d48n245pzmvcpsz93lxb4frqh222gfhpmlvm0sb74skn16way63"))))
9916 (build-system r-build-system)
9917 (propagated-inputs
9918 `(("r-biobase" ,r-biobase)
9919 ("r-biocgenerics" ,r-biocgenerics)
9920 ("r-genomicranges" ,r-genomicranges)
9921 ("r-iranges" ,r-iranges)
9922 ("r-s4vectors" ,r-s4vectors)))
9923 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
9924 (synopsis "Fast segmentation algorithm for genetic sequencing data")
9925 (description
9926 "Fastseg implements a very fast and efficient segmentation algorithm.
9927 It can segment data from DNA microarrays and data from next generation
9928 sequencing for example to detect copy number segments. Further it can segment
9929 data from RNA microarrays like tiling arrays to identify transcripts. Most
9930 generally, it can segment data given as a matrix or as a vector. Various data
9931 formats can be used as input to fastseg like expression set objects for
9932 microarrays or GRanges for sequencing data.")
9933 (license license:lgpl2.0+)))
9934
9935 (define-public r-keggrest
9936 (package
9937 (name "r-keggrest")
9938 (version "1.28.0")
9939 (source
9940 (origin
9941 (method url-fetch)
9942 (uri (bioconductor-uri "KEGGREST" version))
9943 (sha256
9944 (base32
9945 "0q76w17fya2x0z7mvyhkk5kqh07flldgih13ma44vhcy1bdlm6j1"))))
9946 (properties `((upstream-name . "KEGGREST")))
9947 (build-system r-build-system)
9948 (propagated-inputs
9949 `(("r-biostrings" ,r-biostrings)
9950 ("r-httr" ,r-httr)
9951 ("r-png" ,r-png)))
9952 (native-inputs
9953 `(("r-knitr" ,r-knitr)))
9954 (home-page "https://bioconductor.org/packages/KEGGREST")
9955 (synopsis "Client-side REST access to KEGG")
9956 (description
9957 "This package provides a package that provides a client interface to the
9958 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
9959 (license license:artistic2.0)))
9960
9961 (define-public r-gage
9962 (package
9963 (name "r-gage")
9964 (version "2.38.3")
9965 (source
9966 (origin
9967 (method url-fetch)
9968 (uri (bioconductor-uri "gage" version))
9969 (sha256
9970 (base32
9971 "1bqmvjiya1df0b3h491lp1jxahiyidvaf9n094z0sk84x5y3xh2p"))))
9972 (build-system r-build-system)
9973 (propagated-inputs
9974 `(("r-annotationdbi" ,r-annotationdbi)
9975 ("r-go-db" ,r-go-db)
9976 ("r-graph" ,r-graph)
9977 ("r-keggrest" ,r-keggrest)))
9978 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
9979 "articles/10.1186/1471-2105-10-161"))
9980 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
9981 (description
9982 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
9983 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
9984 data attributes including sample sizes, experimental designs, assay platforms,
9985 and other types of heterogeneity. The gage package provides functions for
9986 basic GAGE analysis, result processing and presentation. In addition, it
9987 provides demo microarray data and commonly used gene set data based on KEGG
9988 pathways and GO terms. These functions and data are also useful for gene set
9989 analysis using other methods.")
9990 (license license:gpl2+)))
9991
9992 (define-public r-genomicfiles
9993 (package
9994 (name "r-genomicfiles")
9995 (version "1.24.0")
9996 (source
9997 (origin
9998 (method url-fetch)
9999 (uri (bioconductor-uri "GenomicFiles" version))
10000 (sha256
10001 (base32
10002 "1k3824pzf9fdqvcv6cz2742q3mabpmncrc72hwa21ac8wy1b04n4"))))
10003 (properties `((upstream-name . "GenomicFiles")))
10004 (build-system r-build-system)
10005 (propagated-inputs
10006 `(("r-biocgenerics" ,r-biocgenerics)
10007 ("r-biocparallel" ,r-biocparallel)
10008 ("r-genomeinfodb" ,r-genomeinfodb)
10009 ("r-genomicalignments" ,r-genomicalignments)
10010 ("r-genomicranges" ,r-genomicranges)
10011 ("r-iranges" ,r-iranges)
10012 ("r-rsamtools" ,r-rsamtools)
10013 ("r-rtracklayer" ,r-rtracklayer)
10014 ("r-s4vectors" ,r-s4vectors)
10015 ("r-summarizedexperiment" ,r-summarizedexperiment)
10016 ("r-variantannotation" ,r-variantannotation)))
10017 (home-page "https://bioconductor.org/packages/GenomicFiles")
10018 (synopsis "Distributed computing by file or by range")
10019 (description
10020 "This package provides infrastructure for parallel computations
10021 distributed by file or by range. User defined mapper and reducer functions
10022 provide added flexibility for data combination and manipulation.")
10023 (license license:artistic2.0)))
10024
10025 (define-public r-complexheatmap
10026 (package
10027 (name "r-complexheatmap")
10028 (version "2.4.3")
10029 (source
10030 (origin
10031 (method url-fetch)
10032 (uri (bioconductor-uri "ComplexHeatmap" version))
10033 (sha256
10034 (base32
10035 "1gx0hzrkla92pgmfkrm2zp0ccnhizq6rs26zgzpi5x8a5lvghh5q"))))
10036 (properties
10037 `((upstream-name . "ComplexHeatmap")))
10038 (build-system r-build-system)
10039 (propagated-inputs
10040 `(("r-circlize" ,r-circlize)
10041 ("r-clue" ,r-clue)
10042 ("r-colorspace" ,r-colorspace)
10043 ("r-getoptlong" ,r-getoptlong)
10044 ("r-globaloptions" ,r-globaloptions)
10045 ("r-png" ,r-png)
10046 ("r-rcolorbrewer" ,r-rcolorbrewer)))
10047 (native-inputs
10048 `(("r-knitr" ,r-knitr)))
10049 (home-page
10050 "https://github.com/jokergoo/ComplexHeatmap")
10051 (synopsis "Making Complex Heatmaps")
10052 (description
10053 "Complex heatmaps are efficient to visualize associations between
10054 different sources of data sets and reveal potential structures. This package
10055 provides a highly flexible way to arrange multiple heatmaps and supports
10056 self-defined annotation graphics.")
10057 (license license:gpl2+)))
10058
10059 (define-public r-dirichletmultinomial
10060 (package
10061 (name "r-dirichletmultinomial")
10062 (version "1.30.0")
10063 (source
10064 (origin
10065 (method url-fetch)
10066 (uri (bioconductor-uri "DirichletMultinomial" version))
10067 (sha256
10068 (base32
10069 "1m9dsrddrllb2i88qzik1867iv9mggrgdkn0dlp8sq7gl69vmalb"))))
10070 (properties
10071 `((upstream-name . "DirichletMultinomial")))
10072 (build-system r-build-system)
10073 (inputs
10074 `(("gsl" ,gsl)))
10075 (propagated-inputs
10076 `(("r-biocgenerics" ,r-biocgenerics)
10077 ("r-iranges" ,r-iranges)
10078 ("r-s4vectors" ,r-s4vectors)))
10079 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
10080 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
10081 (description
10082 "Dirichlet-multinomial mixture models can be used to describe variability
10083 in microbial metagenomic data. This package is an interface to code
10084 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
10085 1-15.")
10086 (license license:lgpl3)))
10087
10088 (define-public r-ensembldb
10089 (package
10090 (name "r-ensembldb")
10091 (version "2.12.1")
10092 (source
10093 (origin
10094 (method url-fetch)
10095 (uri (bioconductor-uri "ensembldb" version))
10096 (sha256
10097 (base32
10098 "1vvchc04nshxc768fp31rxb603aj3hmq8xlh5qabcwf2c3z9719g"))))
10099 (build-system r-build-system)
10100 (propagated-inputs
10101 `(("r-annotationdbi" ,r-annotationdbi)
10102 ("r-annotationfilter" ,r-annotationfilter)
10103 ("r-biobase" ,r-biobase)
10104 ("r-biocgenerics" ,r-biocgenerics)
10105 ("r-biostrings" ,r-biostrings)
10106 ("r-curl" ,r-curl)
10107 ("r-dbi" ,r-dbi)
10108 ("r-genomeinfodb" ,r-genomeinfodb)
10109 ("r-genomicfeatures" ,r-genomicfeatures)
10110 ("r-genomicranges" ,r-genomicranges)
10111 ("r-iranges" ,r-iranges)
10112 ("r-protgenerics" ,r-protgenerics)
10113 ("r-rsamtools" ,r-rsamtools)
10114 ("r-rsqlite" ,r-rsqlite)
10115 ("r-rtracklayer" ,r-rtracklayer)
10116 ("r-s4vectors" ,r-s4vectors)))
10117 (native-inputs
10118 `(("r-knitr" ,r-knitr)))
10119 (home-page "https://github.com/jotsetung/ensembldb")
10120 (synopsis "Utilities to create and use Ensembl-based annotation databases")
10121 (description
10122 "The package provides functions to create and use transcript-centric
10123 annotation databases/packages. The annotation for the databases are directly
10124 fetched from Ensembl using their Perl API. The functionality and data is
10125 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
10126 but, in addition to retrieve all gene/transcript models and annotations from
10127 the database, the @code{ensembldb} package also provides a filter framework
10128 allowing to retrieve annotations for specific entries like genes encoded on a
10129 chromosome region or transcript models of lincRNA genes.")
10130 ;; No version specified
10131 (license license:lgpl3+)))
10132
10133 (define-public r-organismdbi
10134 (package
10135 (name "r-organismdbi")
10136 (version "1.30.0")
10137 (source
10138 (origin
10139 (method url-fetch)
10140 (uri (bioconductor-uri "OrganismDbi" version))
10141 (sha256
10142 (base32
10143 "194h5576inq44qr666snzq0ygnc77rk5ljkn9bn8zs6x6gb3cwaw"))))
10144 (properties `((upstream-name . "OrganismDbi")))
10145 (build-system r-build-system)
10146 (propagated-inputs
10147 `(("r-annotationdbi" ,r-annotationdbi)
10148 ("r-biobase" ,r-biobase)
10149 ("r-biocgenerics" ,r-biocgenerics)
10150 ("r-biocmanager" ,r-biocmanager)
10151 ("r-dbi" ,r-dbi)
10152 ("r-genomicfeatures" ,r-genomicfeatures)
10153 ("r-genomicranges" ,r-genomicranges)
10154 ("r-graph" ,r-graph)
10155 ("r-iranges" ,r-iranges)
10156 ("r-rbgl" ,r-rbgl)
10157 ("r-s4vectors" ,r-s4vectors)))
10158 (home-page "https://bioconductor.org/packages/OrganismDbi")
10159 (synopsis "Software to enable the smooth interfacing of database packages")
10160 (description "The package enables a simple unified interface to several
10161 annotation packages each of which has its own schema by taking advantage of
10162 the fact that each of these packages implements a select methods.")
10163 (license license:artistic2.0)))
10164
10165 (define-public r-biovizbase
10166 (package
10167 (name "r-biovizbase")
10168 (version "1.36.0")
10169 (source
10170 (origin
10171 (method url-fetch)
10172 (uri (bioconductor-uri "biovizBase" version))
10173 (sha256
10174 (base32
10175 "1vq2mxa2jkljgw75zqjdkyml0ppi5dspvwj4cznfhi31cq8ds0qh"))))
10176 (properties `((upstream-name . "biovizBase")))
10177 (build-system r-build-system)
10178 (propagated-inputs
10179 `(("r-annotationdbi" ,r-annotationdbi)
10180 ("r-annotationfilter" ,r-annotationfilter)
10181 ("r-biocgenerics" ,r-biocgenerics)
10182 ("r-biostrings" ,r-biostrings)
10183 ("r-dichromat" ,r-dichromat)
10184 ("r-ensembldb" ,r-ensembldb)
10185 ("r-genomeinfodb" ,r-genomeinfodb)
10186 ("r-genomicalignments" ,r-genomicalignments)
10187 ("r-genomicfeatures" ,r-genomicfeatures)
10188 ("r-genomicranges" ,r-genomicranges)
10189 ("r-hmisc" ,r-hmisc)
10190 ("r-iranges" ,r-iranges)
10191 ("r-rcolorbrewer" ,r-rcolorbrewer)
10192 ("r-rlang" ,r-rlang)
10193 ("r-rsamtools" ,r-rsamtools)
10194 ("r-s4vectors" ,r-s4vectors)
10195 ("r-scales" ,r-scales)
10196 ("r-summarizedexperiment" ,r-summarizedexperiment)
10197 ("r-variantannotation" ,r-variantannotation)))
10198 (home-page "https://bioconductor.org/packages/biovizBase")
10199 (synopsis "Basic graphic utilities for visualization of genomic data")
10200 (description
10201 "The biovizBase package is designed to provide a set of utilities, color
10202 schemes and conventions for genomic data. It serves as the base for various
10203 high-level packages for biological data visualization. This saves development
10204 effort and encourages consistency.")
10205 (license license:artistic2.0)))
10206
10207 (define-public r-ggbio
10208 (package
10209 (name "r-ggbio")
10210 (version "1.36.0")
10211 (source
10212 (origin
10213 (method url-fetch)
10214 (uri (bioconductor-uri "ggbio" version))
10215 (sha256
10216 (base32
10217 "11ggnqjq42fi2hm9xlvrrlr2xhy4kglvl1a0mycp1s4v67lxw5h5"))))
10218 (build-system r-build-system)
10219 (arguments
10220 `(#:phases
10221 (modify-phases %standard-phases
10222 ;; See https://github.com/tengfei/ggbio/issues/117
10223 ;; This fix will be included in the next release.
10224 (add-after 'unpack 'fix-typo
10225 (lambda _
10226 (substitute* "R/GGbio-class.R"
10227 (("fechable") "fetchable"))
10228 #t)))))
10229 (propagated-inputs
10230 `(("r-annotationdbi" ,r-annotationdbi)
10231 ("r-annotationfilter" ,r-annotationfilter)
10232 ("r-biobase" ,r-biobase)
10233 ("r-biocgenerics" ,r-biocgenerics)
10234 ("r-biostrings" ,r-biostrings)
10235 ("r-biovizbase" ,r-biovizbase)
10236 ("r-bsgenome" ,r-bsgenome)
10237 ("r-ensembldb" ,r-ensembldb)
10238 ("r-genomeinfodb" ,r-genomeinfodb)
10239 ("r-genomicalignments" ,r-genomicalignments)
10240 ("r-genomicfeatures" ,r-genomicfeatures)
10241 ("r-genomicranges" ,r-genomicranges)
10242 ("r-ggally" ,r-ggally)
10243 ("r-ggplot2" ,r-ggplot2)
10244 ("r-gridextra" ,r-gridextra)
10245 ("r-gtable" ,r-gtable)
10246 ("r-hmisc" ,r-hmisc)
10247 ("r-iranges" ,r-iranges)
10248 ("r-organismdbi" ,r-organismdbi)
10249 ("r-reshape2" ,r-reshape2)
10250 ("r-rlang" ,r-rlang)
10251 ("r-rsamtools" ,r-rsamtools)
10252 ("r-rtracklayer" ,r-rtracklayer)
10253 ("r-s4vectors" ,r-s4vectors)
10254 ("r-scales" ,r-scales)
10255 ("r-summarizedexperiment" ,r-summarizedexperiment)
10256 ("r-variantannotation" ,r-variantannotation)))
10257 (native-inputs
10258 `(("r-knitr" ,r-knitr)))
10259 (home-page "http://www.tengfei.name/ggbio/")
10260 (synopsis "Visualization tools for genomic data")
10261 (description
10262 "The ggbio package extends and specializes the grammar of graphics for
10263 biological data. The graphics are designed to answer common scientific
10264 questions, in particular those often asked of high throughput genomics data.
10265 All core Bioconductor data structures are supported, where appropriate. The
10266 package supports detailed views of particular genomic regions, as well as
10267 genome-wide overviews. Supported overviews include ideograms and grand linear
10268 views. High-level plots include sequence fragment length, edge-linked
10269 interval to data view, mismatch pileup, and several splicing summaries.")
10270 (license license:artistic2.0)))
10271
10272 (define-public r-gqtlbase
10273 (package
10274 (name "r-gqtlbase")
10275 (version "1.20.0")
10276 (source
10277 (origin
10278 (method url-fetch)
10279 (uri (bioconductor-uri "gQTLBase" version))
10280 (sha256
10281 (base32
10282 "06xvzp4fn3qfa46ggg8kxi267gbyd821vvx4040173xkqxpr0g5j"))))
10283 (properties `((upstream-name . "gQTLBase")))
10284 (build-system r-build-system)
10285 (propagated-inputs
10286 `(("r-batchjobs" ,r-batchjobs)
10287 ("r-bbmisc" ,r-bbmisc)
10288 ("r-biocgenerics" ,r-biocgenerics)
10289 ("r-bit" ,r-bit)
10290 ("r-doparallel" ,r-doparallel)
10291 ("r-ff" ,r-ff)
10292 ("r-ffbase" ,r-ffbase)
10293 ("r-foreach" ,r-foreach)
10294 ("r-genomicfiles" ,r-genomicfiles)
10295 ("r-genomicranges" ,r-genomicranges)
10296 ("r-rtracklayer" ,r-rtracklayer)
10297 ("r-s4vectors" ,r-s4vectors)
10298 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10299 (native-inputs
10300 `(("r-knitr" ,r-knitr)))
10301 (home-page "https://bioconductor.org/packages/gQTLBase")
10302 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
10303 (description
10304 "The purpose of this package is to simplify the storage and interrogation
10305 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
10306 and more.")
10307 (license license:artistic2.0)))
10308
10309 (define-public r-snpstats
10310 (package
10311 (name "r-snpstats")
10312 (version "1.38.0")
10313 (source
10314 (origin
10315 (method url-fetch)
10316 (uri (bioconductor-uri "snpStats" version))
10317 (sha256
10318 (base32
10319 "1qv3nqqr30d3n66mawqd9dbl95dl89r4bcjvkc5iassy1yrwr8wq"))))
10320 (properties `((upstream-name . "snpStats")))
10321 (build-system r-build-system)
10322 (inputs `(("zlib" ,zlib)))
10323 (propagated-inputs
10324 `(("r-biocgenerics" ,r-biocgenerics)
10325 ("r-matrix" ,r-matrix)
10326 ("r-survival" ,r-survival)
10327 ("r-zlibbioc" ,r-zlibbioc)))
10328 (home-page "https://bioconductor.org/packages/snpStats")
10329 (synopsis "Methods for SNP association studies")
10330 (description
10331 "This package provides classes and statistical methods for large
10332 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
10333 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
10334 (license license:gpl3)))
10335
10336 (define-public r-homo-sapiens
10337 (package
10338 (name "r-homo-sapiens")
10339 (version "1.3.1")
10340 (source (origin
10341 (method url-fetch)
10342 ;; We cannot use bioconductor-uri here because this tarball is
10343 ;; located under "data/annotation/" instead of "bioc/".
10344 (uri (string-append "https://www.bioconductor.org/packages/"
10345 "release/data/annotation/src/contrib/"
10346 "Homo.sapiens_"
10347 version ".tar.gz"))
10348 (sha256
10349 (base32
10350 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
10351 (properties
10352 `((upstream-name . "Homo.sapiens")))
10353 (build-system r-build-system)
10354 (propagated-inputs
10355 `(("r-genomicfeatures" ,r-genomicfeatures)
10356 ("r-go-db" ,r-go-db)
10357 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
10358 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
10359 ("r-organismdbi" ,r-organismdbi)
10360 ("r-annotationdbi" ,r-annotationdbi)))
10361 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
10362 (synopsis "Annotation package for the Homo.sapiens object")
10363 (description
10364 "This package contains the Homo.sapiens object to access data from
10365 several related annotation packages.")
10366 (license license:artistic2.0)))
10367
10368 (define-public r-erma
10369 (package
10370 (name "r-erma")
10371 (version "1.4.0")
10372 (source
10373 (origin
10374 (method url-fetch)
10375 (uri (bioconductor-uri "erma" version))
10376 (sha256
10377 (base32
10378 "1ccfbq0r48sr3h8050w8zv8402h7nx09adr0xdyqlg7kwp9vd2l3"))))
10379 (build-system r-build-system)
10380 (propagated-inputs
10381 `(("r-annotationdbi" ,r-annotationdbi)
10382 ("r-biobase" ,r-biobase)
10383 ("r-biocgenerics" ,r-biocgenerics)
10384 ("r-biocparallel" ,r-biocparallel)
10385 ("r-genomeinfodb" ,r-genomeinfodb)
10386 ("r-genomicfiles" ,r-genomicfiles)
10387 ("r-genomicranges" ,r-genomicranges)
10388 ("r-ggplot2" ,r-ggplot2)
10389 ("r-homo-sapiens" ,r-homo-sapiens)
10390 ("r-iranges" ,r-iranges)
10391 ("r-rtracklayer" ,r-rtracklayer)
10392 ("r-s4vectors" ,r-s4vectors)
10393 ("r-shiny" ,r-shiny)
10394 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10395 (native-inputs
10396 `(("r-knitr" ,r-knitr)))
10397 (home-page "https://bioconductor.org/packages/erma")
10398 (synopsis "Epigenomic road map adventures")
10399 (description
10400 "The epigenomics road map describes locations of epigenetic marks in DNA
10401 from a variety of cell types. Of interest are locations of histone
10402 modifications, sites of DNA methylation, and regions of accessible chromatin.
10403 This package presents a selection of elements of the road map including
10404 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
10405 by Ernst and Kellis.")
10406 (license license:artistic2.0)))
10407
10408 (define-public r-ldblock
10409 (package
10410 (name "r-ldblock")
10411 (version "1.18.0")
10412 (source
10413 (origin
10414 (method url-fetch)
10415 (uri (bioconductor-uri "ldblock" version))
10416 (sha256
10417 (base32
10418 "0plw00n2zfgh029ab41dnydzgv2yxrapjp770147rx9pff4dngrv"))))
10419 (build-system r-build-system)
10420 (propagated-inputs
10421 `(("r-biocgenerics" ,r-biocgenerics)
10422 ("r-ensdb-hsapiens-v75" ,r-ensdb-hsapiens-v75)
10423 ("r-ensembldb" ,r-ensembldb)
10424 ("r-genomeinfodb" ,r-genomeinfodb)
10425 ("r-genomicfiles" ,r-genomicfiles)
10426 ("r-httr" ,r-httr)
10427 ("r-matrix" ,r-matrix)
10428 ("r-rsamtools" ,r-rsamtools)
10429 ("r-snpstats" ,r-snpstats)
10430 ("r-variantannotation" ,r-variantannotation)))
10431 (native-inputs
10432 `(("r-knitr" ,r-knitr)))
10433 (home-page "https://bioconductor.org/packages/ldblock")
10434 (synopsis "Data structures for linkage disequilibrium measures in populations")
10435 (description
10436 "This package defines data structures for @dfn{linkage
10437 disequilibrium} (LD) measures in populations. Its purpose is to simplify
10438 handling of existing population-level data for the purpose of flexibly
10439 defining LD blocks.")
10440 (license license:artistic2.0)))
10441
10442 (define-public r-gqtlstats
10443 (package
10444 (name "r-gqtlstats")
10445 (version "1.20.0")
10446 (source
10447 (origin
10448 (method url-fetch)
10449 (uri (bioconductor-uri "gQTLstats" version))
10450 (sha256
10451 (base32
10452 "1jjqfpjp93nmxjn757j5mzcax96bzcqdd1gr3rsdxg7ap008l2w7"))))
10453 (properties `((upstream-name . "gQTLstats")))
10454 (build-system r-build-system)
10455 (propagated-inputs
10456 `(("r-annotationdbi" ,r-annotationdbi)
10457 ("r-batchjobs" ,r-batchjobs)
10458 ("r-bbmisc" ,r-bbmisc)
10459 ("r-beeswarm" ,r-beeswarm)
10460 ("r-biobase" ,r-biobase)
10461 ("r-biocgenerics" ,r-biocgenerics)
10462 ("r-doparallel" ,r-doparallel)
10463 ("r-dplyr" ,r-dplyr)
10464 ("r-erma" ,r-erma)
10465 ("r-ffbase" ,r-ffbase)
10466 ("r-foreach" ,r-foreach)
10467 ("r-genomeinfodb" ,r-genomeinfodb)
10468 ("r-genomicfeatures" ,r-genomicfeatures)
10469 ("r-genomicfiles" ,r-genomicfiles)
10470 ("r-genomicranges" ,r-genomicranges)
10471 ("r-ggbeeswarm" ,r-ggbeeswarm)
10472 ("r-ggplot2" ,r-ggplot2)
10473 ("r-gqtlbase" ,r-gqtlbase)
10474 ("r-hardyweinberg" ,r-hardyweinberg)
10475 ("r-homo-sapiens" ,r-homo-sapiens)
10476 ("r-iranges" ,r-iranges)
10477 ("r-limma" ,r-limma)
10478 ("r-mgcv" ,r-mgcv)
10479 ("r-plotly" ,r-plotly)
10480 ("r-reshape2" ,r-reshape2)
10481 ("r-s4vectors" ,r-s4vectors)
10482 ("r-shiny" ,r-shiny)
10483 ("r-snpstats" ,r-snpstats)
10484 ("r-summarizedexperiment" ,r-summarizedexperiment)
10485 ("r-variantannotation" ,r-variantannotation)))
10486 (native-inputs
10487 `(("r-knitr" ,r-knitr)))
10488 (home-page "https://bioconductor.org/packages/gQTLstats")
10489 (synopsis "Computationally efficient analysis for eQTL and allied studies")
10490 (description
10491 "This package provides tools for the computationally efficient analysis
10492 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
10493 The software in this package aims to support refinements and functional
10494 interpretation of members of a collection of association statistics on a
10495 family of feature/genome hypotheses.")
10496 (license license:artistic2.0)))
10497
10498 (define-public r-gviz
10499 (package
10500 (name "r-gviz")
10501 (version "1.32.0")
10502 (source
10503 (origin
10504 (method url-fetch)
10505 (uri (bioconductor-uri "Gviz" version))
10506 (sha256
10507 (base32
10508 "0cgkp0ciyy2qykqgh3vzp5mx9b4vsvacjh2jnsj3wldiapzlz08a"))))
10509 (properties `((upstream-name . "Gviz")))
10510 (build-system r-build-system)
10511 (propagated-inputs
10512 `(("r-annotationdbi" ,r-annotationdbi)
10513 ("r-biobase" ,r-biobase)
10514 ("r-biocgenerics" ,r-biocgenerics)
10515 ("r-biomart" ,r-biomart)
10516 ("r-biostrings" ,r-biostrings)
10517 ("r-biovizbase" ,r-biovizbase)
10518 ("r-bsgenome" ,r-bsgenome)
10519 ("r-digest" ,r-digest)
10520 ("r-ensembldb" ,r-ensembldb)
10521 ("r-genomeinfodb" ,r-genomeinfodb)
10522 ("r-genomicalignments" ,r-genomicalignments)
10523 ("r-genomicfeatures" ,r-genomicfeatures)
10524 ("r-genomicranges" ,r-genomicranges)
10525 ("r-iranges" ,r-iranges)
10526 ("r-lattice" ,r-lattice)
10527 ("r-latticeextra" ,r-latticeextra)
10528 ("r-matrixstats" ,r-matrixstats)
10529 ("r-rcolorbrewer" ,r-rcolorbrewer)
10530 ("r-rsamtools" ,r-rsamtools)
10531 ("r-rtracklayer" ,r-rtracklayer)
10532 ("r-s4vectors" ,r-s4vectors)
10533 ("r-xvector" ,r-xvector)))
10534 (native-inputs
10535 `(("r-knitr" ,r-knitr)))
10536 (home-page "https://bioconductor.org/packages/Gviz")
10537 (synopsis "Plotting data and annotation information along genomic coordinates")
10538 (description
10539 "Genomic data analyses requires integrated visualization of known genomic
10540 information and new experimental data. Gviz uses the biomaRt and the
10541 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
10542 and translates this to e.g. gene/transcript structures in viewports of the
10543 grid graphics package. This results in genomic information plotted together
10544 with your data.")
10545 (license license:artistic2.0)))
10546
10547 (define-public r-gwascat
10548 (package
10549 (name "r-gwascat")
10550 (version "2.20.1")
10551 (source
10552 (origin
10553 (method url-fetch)
10554 (uri (bioconductor-uri "gwascat" version))
10555 (sha256
10556 (base32
10557 "1cq5cmdrf0a0arr841yvkh6d8drc15p7mif1afr215l1s3y2dwd4"))))
10558 (build-system r-build-system)
10559 (propagated-inputs
10560 `(("r-annotationdbi" ,r-annotationdbi)
10561 ("r-biocgenerics" ,r-biocgenerics)
10562 ("r-biostrings" ,r-biostrings)
10563 ("r-genomeinfodb" ,r-genomeinfodb)
10564 ("r-genomicfeatures" ,r-genomicfeatures)
10565 ("r-genomicranges" ,r-genomicranges)
10566 ("r-ggplot2" ,r-ggplot2)
10567 ("r-iranges" ,r-iranges)
10568 ("r-rsamtools" ,r-rsamtools)
10569 ("r-rtracklayer" ,r-rtracklayer)
10570 ("r-s4vectors" ,r-s4vectors)))
10571 (native-inputs
10572 `(("r-knitr" ,r-knitr)))
10573 (home-page "https://bioconductor.org/packages/gwascat")
10574 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
10575 (description
10576 "This package provides tools for representing and modeling data in the
10577 EMBL-EBI GWAS catalog.")
10578 (license license:artistic2.0)))
10579
10580 (define-public r-sushi
10581 (package
10582 (name "r-sushi")
10583 (version "1.26.0")
10584 (source (origin
10585 (method url-fetch)
10586 (uri (bioconductor-uri "Sushi" version))
10587 (sha256
10588 (base32
10589 "17j3d5qjq5nbv99by5mq8rwr0jgh2jyyfn2nwxmwgzlmk3lgi1rb"))))
10590 (properties `((upstream-name . "Sushi")))
10591 (build-system r-build-system)
10592 (propagated-inputs
10593 `(("r-biomart" ,r-biomart)
10594 ("r-zoo" ,r-zoo)))
10595 (home-page "https://bioconductor.org/packages/Sushi")
10596 (synopsis "Tools for visualizing genomics data")
10597 (description
10598 "This package provides flexible, quantitative, and integrative genomic
10599 visualizations for publication-quality multi-panel figures.")
10600 (license license:gpl2+)))
10601
10602 (define-public r-dropbead
10603 (let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
10604 (revision "2"))
10605 (package
10606 (name "r-dropbead")
10607 (version (string-append "0-" revision "." (string-take commit 7)))
10608 (source
10609 (origin
10610 (method git-fetch)
10611 (uri (git-reference
10612 (url "https://github.com/rajewsky-lab/dropbead")
10613 (commit commit)))
10614 (file-name (git-file-name name version))
10615 (sha256
10616 (base32
10617 "0sbzma49aiiyw8b0jpr7fnhzys9nsqmp4hy4hdz1gzyg1lhnca26"))))
10618 (build-system r-build-system)
10619 (propagated-inputs
10620 `(("r-ggplot2" ,r-ggplot2)
10621 ("r-rcolorbrewer" ,r-rcolorbrewer)
10622 ("r-gridextra" ,r-gridextra)
10623 ("r-gplots" ,r-gplots)
10624 ("r-plyr" ,r-plyr)))
10625 (home-page "https://github.com/rajewsky-lab/dropbead")
10626 (synopsis "Basic exploration and analysis of Drop-seq data")
10627 (description "This package offers a quick and straight-forward way to
10628 explore and perform basic analysis of single cell sequencing data coming from
10629 droplet sequencing. It has been particularly tailored for Drop-seq.")
10630 (license license:gpl3))))
10631
10632 (define htslib-for-sambamba
10633 (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
10634 (package
10635 (inherit htslib)
10636 (name "htslib-for-sambamba")
10637 (version (string-append "1.3.1-1." (string-take commit 9)))
10638 (source
10639 (origin
10640 (method git-fetch)
10641 (uri (git-reference
10642 (url "https://github.com/lomereiter/htslib")
10643 (commit commit)))
10644 (file-name (string-append "htslib-" version "-checkout"))
10645 (sha256
10646 (base32
10647 "0g38g8s3npr0gjm9fahlbhiskyfws9l5i0x1ml3rakzj7az5l9c9"))))
10648 (native-inputs
10649 `(("autoconf" ,autoconf)
10650 ("automake" ,automake)
10651 ,@(package-native-inputs htslib))))))
10652
10653 (define-public sambamba
10654 (package
10655 (name "sambamba")
10656 (version "0.7.1")
10657 (source
10658 (origin
10659 (method git-fetch)
10660 (uri (git-reference
10661 (url "https://github.com/lomereiter/sambamba")
10662 (commit (string-append "v" version))))
10663 (file-name (string-append name "-" version "-checkout"))
10664 (sha256
10665 (base32
10666 "111h05b60pj8dxbidiamy4imc92x2962b3lmb7wgysl6lx064qis"))))
10667 (build-system gnu-build-system)
10668 (arguments
10669 `(#:tests? #f ; there is no test target
10670 #:parallel-build? #f ; not supported
10671 #:phases
10672 (modify-phases %standard-phases
10673 (delete 'configure)
10674 (add-after 'unpack 'fix-ldc-version
10675 (lambda _
10676 (substitute* "gen_ldc_version_info.py"
10677 (("/usr/bin/env.*") (which "python3")))
10678 (substitute* "Makefile"
10679 ;; We use ldc2 instead of ldmd2 to compile sambamba.
10680 (("\\$\\(shell which ldmd2\\)") (which "ldc2")))
10681 #t))
10682 (add-after 'unpack 'place-biod-and-undead
10683 (lambda* (#:key inputs #:allow-other-keys)
10684 (copy-recursively (assoc-ref inputs "biod") "BioD")
10685 #t))
10686 (add-after 'unpack 'unbundle-prerequisites
10687 (lambda _
10688 (substitute* "Makefile"
10689 (("htslib/libhts.a lz4/lib/liblz4.a")
10690 "-L-lhts -L-llz4")
10691 ((" lz4-static htslib-static") ""))
10692 #t))
10693 (replace 'install
10694 (lambda* (#:key outputs #:allow-other-keys)
10695 (let* ((out (assoc-ref outputs "out"))
10696 (bin (string-append out "/bin")))
10697 (mkdir-p bin)
10698 (copy-file (string-append "bin/sambamba-" ,version)
10699 (string-append bin "/sambamba"))
10700 #t))))))
10701 (native-inputs
10702 `(("ldc" ,ldc)
10703 ("rdmd" ,rdmd)
10704 ("python" ,python)
10705 ("biod"
10706 ,(let ((commit "7969eb0a847b05874e83ffddead26e193ece8101"))
10707 (origin
10708 (method git-fetch)
10709 (uri (git-reference
10710 (url "https://github.com/biod/BioD")
10711 (commit commit)))
10712 (file-name (string-append "biod-"
10713 (string-take commit 9)
10714 "-checkout"))
10715 (sha256
10716 (base32
10717 "0mjxsmbmv0jxl3pq21p8j5r829d648if8q58ka50b2956lc6qkpm")))))))
10718 (inputs
10719 `(("lz4" ,lz4)
10720 ("htslib" ,htslib-for-sambamba)))
10721 (home-page "https://lomereiter.github.io/sambamba/")
10722 (synopsis "Tools for working with SAM/BAM data")
10723 (description "Sambamba is a high performance modern robust and
10724 fast tool (and library), written in the D programming language, for
10725 working with SAM and BAM files. Current parallelised functionality is
10726 an important subset of samtools functionality, including view, index,
10727 sort, markdup, and depth.")
10728 (license license:gpl2+)))
10729
10730 (define-public ritornello
10731 (package
10732 (name "ritornello")
10733 (version "2.0.1")
10734 (source (origin
10735 (method git-fetch)
10736 (uri (git-reference
10737 (url "https://github.com/KlugerLab/Ritornello")
10738 (commit (string-append "v" version))))
10739 (file-name (git-file-name name version))
10740 (sha256
10741 (base32
10742 "1xahvq215qld7x1w8vpa5zbrsj6p9crb9shqa2x89sb0aaxa02jk"))))
10743 (build-system gnu-build-system)
10744 (arguments
10745 `(#:tests? #f ; there are no tests
10746 #:phases
10747 (modify-phases %standard-phases
10748 (add-after 'unpack 'patch-samtools-references
10749 (lambda* (#:key inputs #:allow-other-keys)
10750 (substitute* '("src/SamStream.h"
10751 "src/FLD.cpp")
10752 (("<sam.h>") "<samtools/sam.h>"))
10753 #t))
10754 (delete 'configure)
10755 (replace 'install
10756 (lambda* (#:key inputs outputs #:allow-other-keys)
10757 (let* ((out (assoc-ref outputs "out"))
10758 (bin (string-append out "/bin/")))
10759 (mkdir-p bin)
10760 (install-file "bin/Ritornello" bin)
10761 #t))))))
10762 (inputs
10763 `(("samtools" ,samtools-0.1)
10764 ("fftw" ,fftw)
10765 ("boost" ,boost)
10766 ("zlib" ,zlib)))
10767 (home-page "https://github.com/KlugerLab/Ritornello")
10768 (synopsis "Control-free peak caller for ChIP-seq data")
10769 (description "Ritornello is a ChIP-seq peak calling algorithm based on
10770 signal processing that can accurately call binding events without the need to
10771 do a pair total DNA input or IgG control sample. It has been tested for use
10772 with narrow binding events such as transcription factor ChIP-seq.")
10773 (license license:gpl3+)))
10774
10775 (define-public trim-galore
10776 (package
10777 (name "trim-galore")
10778 (version "0.6.1")
10779 (source
10780 (origin
10781 (method git-fetch)
10782 (uri (git-reference
10783 (url "https://github.com/FelixKrueger/TrimGalore")
10784 (commit version)))
10785 (file-name (git-file-name name version))
10786 (sha256
10787 (base32
10788 "1y31wbxwkm9xqzr5zv1pk5q418whnmlmgmfyxxpnl12h83m2i9iv"))))
10789 (build-system gnu-build-system)
10790 (arguments
10791 `(#:tests? #f ; no tests
10792 #:phases
10793 (modify-phases %standard-phases
10794 (replace 'configure
10795 (lambda _
10796 ;; Trim Galore tries to figure out what version of Python
10797 ;; cutadapt is using by looking at the shebang. Of course that
10798 ;; doesn't work, because cutadapt is wrapped in a shell script.
10799 (substitute* "trim_galore"
10800 (("my \\$python_return.*")
10801 "my $python_return = \"Python 3.999\";\n"))
10802 #t))
10803 (delete 'build)
10804 (add-after 'unpack 'hardcode-tool-references
10805 (lambda* (#:key inputs #:allow-other-keys)
10806 (substitute* "trim_galore"
10807 (("\\$path_to_cutadapt = 'cutadapt'")
10808 (string-append "$path_to_cutadapt = '"
10809 (assoc-ref inputs "cutadapt")
10810 "/bin/cutadapt'"))
10811 (("\\$compression_path = \"gzip\"")
10812 (string-append "$compression_path = \""
10813 (assoc-ref inputs "gzip")
10814 "/bin/gzip\""))
10815 (("\"gunzip")
10816 (string-append "\""
10817 (assoc-ref inputs "gzip")
10818 "/bin/gunzip"))
10819 (("\"pigz")
10820 (string-append "\""
10821 (assoc-ref inputs "pigz")
10822 "/bin/pigz")))
10823 #t))
10824 (replace 'install
10825 (lambda* (#:key outputs #:allow-other-keys)
10826 (let ((bin (string-append (assoc-ref outputs "out")
10827 "/bin")))
10828 (mkdir-p bin)
10829 (install-file "trim_galore" bin)
10830 #t))))))
10831 (inputs
10832 `(("gzip" ,gzip)
10833 ("perl" ,perl)
10834 ("pigz" ,pigz)
10835 ("cutadapt" ,cutadapt)))
10836 (native-inputs
10837 `(("unzip" ,unzip)))
10838 (home-page "https://www.bioinformatics.babraham.ac.uk/projects/trim_galore/")
10839 (synopsis "Wrapper around Cutadapt and FastQC")
10840 (description "Trim Galore! is a wrapper script to automate quality and
10841 adapter trimming as well as quality control, with some added functionality to
10842 remove biased methylation positions for RRBS sequence files.")
10843 (license license:gpl3+)))
10844
10845 (define-public gess
10846 (package
10847 (name "gess")
10848 (version "1.0")
10849 (source (origin
10850 (method url-fetch)
10851 (uri (string-append "http://compbio.uthscsa.edu/"
10852 "GESS_Web/files/"
10853 "gess-" version ".src.tar.gz"))
10854 (sha256
10855 (base32
10856 "0hyk403kxscclzfs24pvdgiv0wm03kjcziqdrp5w46cb049gz0d7"))))
10857 (build-system gnu-build-system)
10858 (arguments
10859 `(#:tests? #f ; no tests
10860 #:phases
10861 (modify-phases %standard-phases
10862 (delete 'configure)
10863 (delete 'build)
10864 (replace 'install
10865 (lambda* (#:key inputs outputs #:allow-other-keys)
10866 (let* ((python (assoc-ref inputs "python"))
10867 (out (assoc-ref outputs "out"))
10868 (bin (string-append out "/bin/"))
10869 (target (string-append
10870 out "/lib/python"
10871 ,(version-major+minor
10872 (package-version python))
10873 "/site-packages/gess/")))
10874 (mkdir-p target)
10875 (copy-recursively "." target)
10876 ;; Make GESS.py executable
10877 (chmod (string-append target "GESS.py") #o555)
10878 ;; Add Python shebang to the top and make Matplotlib
10879 ;; usable.
10880 (substitute* (string-append target "GESS.py")
10881 (("\"\"\"Description:" line)
10882 (string-append "#!" (which "python") "
10883 import matplotlib
10884 matplotlib.use('Agg')
10885 " line)))
10886 ;; Make sure GESS has all modules in its path
10887 (wrap-script (string-append target "GESS.py")
10888 `("PYTHONPATH" ":" = (,target ,(getenv "PYTHONPATH"))))
10889 (mkdir-p bin)
10890 (symlink (string-append target "GESS.py")
10891 (string-append bin "GESS.py"))
10892 #t))))))
10893 (inputs
10894 `(("python" ,python-2)
10895 ("python2-pysam" ,python2-pysam)
10896 ("python2-scipy" ,python2-scipy)
10897 ("python2-numpy" ,python2-numpy)
10898 ("python2-networkx" ,python2-networkx)
10899 ("python2-biopython" ,python2-biopython)
10900 ("guile" ,guile-3.0))) ; for the script wrapper
10901 (home-page "https://compbio.uthscsa.edu/GESS_Web/")
10902 (synopsis "Detect exon-skipping events from raw RNA-seq data")
10903 (description
10904 "GESS is an implementation of a novel computational method to detect de
10905 novo exon-skipping events directly from raw RNA-seq data without the prior
10906 knowledge of gene annotation information. GESS stands for the graph-based
10907 exon-skipping scanner detection scheme.")
10908 (license license:bsd-3)))
10909
10910 (define-public phylip
10911 (package
10912 (name "phylip")
10913 (version "3.696")
10914 (source
10915 (origin
10916 (method url-fetch)
10917 (uri (string-append "http://evolution.gs.washington.edu/phylip/"
10918 "download/phylip-" version ".tar.gz"))
10919 (sha256
10920 (base32
10921 "01jar1rayhr2gba2pgbw49m56rc5z4p5wn3ds0m188hrlln4a2nd"))))
10922 (build-system gnu-build-system)
10923 (arguments
10924 `(#:tests? #f ; no check target
10925 #:make-flags (list "-f" "Makefile.unx" "install")
10926 #:parallel-build? #f ; not supported
10927 #:phases
10928 (modify-phases %standard-phases
10929 (add-after 'unpack 'enter-dir
10930 (lambda _ (chdir "src") #t))
10931 (delete 'configure)
10932 (replace 'install
10933 (lambda* (#:key inputs outputs #:allow-other-keys)
10934 (let ((target (string-append (assoc-ref outputs "out")
10935 "/bin")))
10936 (mkdir-p target)
10937 (for-each (lambda (file)
10938 (install-file file target))
10939 (find-files "../exe" ".*")))
10940 #t)))))
10941 (home-page "http://evolution.genetics.washington.edu/phylip/")
10942 (synopsis "Tools for inferring phylogenies")
10943 (description "PHYLIP (the PHYLogeny Inference Package) is a package of
10944 programs for inferring phylogenies (evolutionary trees).")
10945 (license license:bsd-2)))
10946
10947 (define-public imp
10948 (package
10949 (name "imp")
10950 (version "2.6.2")
10951 (source
10952 (origin
10953 (method url-fetch)
10954 (uri (string-append "https://integrativemodeling.org/"
10955 version "/download/imp-" version ".tar.gz"))
10956 (sha256
10957 (base32
10958 "0lxqx7vh79d771svr611dkilp6sn30qrbw8zvscbrm37v38d2j6h"))))
10959 (build-system cmake-build-system)
10960 (arguments
10961 `(;; FIXME: Some tests fail because they produce warnings, others fail
10962 ;; because the PYTHONPATH does not include the modeller's directory.
10963 #:tests? #f))
10964 (inputs
10965 `(("boost" ,boost)
10966 ("gsl" ,gsl)
10967 ("swig" ,swig)
10968 ("hdf5" ,hdf5)
10969 ("fftw" ,fftw)
10970 ("python" ,python-2)))
10971 (propagated-inputs
10972 `(("python2-numpy" ,python2-numpy)
10973 ("python2-scipy" ,python2-scipy)
10974 ("python2-pandas" ,python2-pandas)
10975 ("python2-scikit-learn" ,python2-scikit-learn)
10976 ("python2-networkx" ,python2-networkx)))
10977 (home-page "https://integrativemodeling.org")
10978 (synopsis "Integrative modeling platform")
10979 (description "IMP's broad goal is to contribute to a comprehensive
10980 structural characterization of biomolecules ranging in size and complexity
10981 from small peptides to large macromolecular assemblies, by integrating data
10982 from diverse biochemical and biophysical experiments. IMP provides a C++ and
10983 Python toolbox for solving complex modeling problems, and a number of
10984 applications for tackling some common problems in a user-friendly way.")
10985 ;; IMP is largely available under the GNU Lesser GPL; see the file
10986 ;; COPYING.LGPL for the full text of this license. Some IMP modules are
10987 ;; available under the GNU GPL (see the file COPYING.GPL).
10988 (license (list license:lgpl2.1+
10989 license:gpl3+))))
10990
10991 (define-public tadbit
10992 (package
10993 (name "tadbit")
10994 (version "0.2.0")
10995 (source (origin
10996 (method git-fetch)
10997 (uri (git-reference
10998 (url "https://github.com/3DGenomes/TADbit")
10999 (commit (string-append "v" version))))
11000 (file-name (git-file-name name version))
11001 (sha256
11002 (base32
11003 "07g3aj648prmsvxp9caz5yl41k0y0647vxh0f5p3w8376mfiljd0"))))
11004 (build-system python-build-system)
11005 (arguments
11006 `(;; Tests are included and must be run after installation, but
11007 ;; they are incomplete and thus cannot be run.
11008 #:tests? #f
11009 #:python ,python-2
11010 #:phases
11011 (modify-phases %standard-phases
11012 (add-after 'unpack 'fix-problems-with-setup.py
11013 (lambda* (#:key outputs #:allow-other-keys)
11014 ;; setup.py opens these files for writing
11015 (chmod "_pytadbit/_version.py" #o664)
11016 (chmod "README.rst" #o664)
11017
11018 ;; Don't attempt to install the bash completions to
11019 ;; the home directory.
11020 (rename-file "extras/.bash_completion"
11021 "extras/tadbit")
11022 (substitute* "setup.py"
11023 (("\\(path.expanduser\\('~'\\)")
11024 (string-append "(\""
11025 (assoc-ref outputs "out")
11026 "/etc/bash_completion.d\""))
11027 (("extras/\\.bash_completion")
11028 "extras/tadbit"))
11029 #t)))))
11030 (inputs
11031 ;; TODO: add Chimera for visualization
11032 `(("imp" ,imp)
11033 ("mcl" ,mcl)
11034 ("python2-scipy" ,python2-scipy)
11035 ("python2-numpy" ,python2-numpy)
11036 ("python2-matplotlib" ,python2-matplotlib)
11037 ("python2-pysam" ,python2-pysam)))
11038 (home-page "https://3dgenomes.github.io/TADbit/")
11039 (synopsis "Analyze, model, and explore 3C-based data")
11040 (description
11041 "TADbit is a complete Python library to deal with all steps to analyze,
11042 model, and explore 3C-based data. With TADbit the user can map FASTQ files to
11043 obtain raw interaction binned matrices (Hi-C like matrices), normalize and
11044 correct interaction matrices, identify and compare the so-called
11045 @dfn{Topologically Associating Domains} (TADs), build 3D models from the
11046 interaction matrices, and finally, extract structural properties from the
11047 models. TADbit is complemented by TADkit for visualizing 3D models.")
11048 (license license:gpl3+)))
11049
11050 (define-public kentutils
11051 (package
11052 (name "kentutils")
11053 ;; 302.1.0 is out, but the only difference is the inclusion of
11054 ;; pre-built binaries.
11055 (version "302.0.0")
11056 (source
11057 (origin
11058 (method git-fetch)
11059 (uri (git-reference
11060 (url "https://github.com/ENCODE-DCC/kentUtils")
11061 (commit (string-append "v" version))))
11062 (file-name (git-file-name name version))
11063 (sha256
11064 (base32
11065 "0n1wbyjpzii2b9qhyp9r1q76j623cggpg3y8fmw78ld3z4y7ivha"))
11066 (modules '((guix build utils)
11067 (srfi srfi-26)
11068 (ice-9 ftw)))
11069 (snippet
11070 '(begin
11071 ;; Only the contents of the specified directories are free
11072 ;; for all uses, so we remove the rest. "hg/autoSql" and
11073 ;; "hg/autoXml" are nominally free, but they depend on a
11074 ;; library that is built from the sources in "hg/lib",
11075 ;; which is nonfree.
11076 (let ((free (list "." ".."
11077 "utils" "lib" "inc" "tagStorm"
11078 "parasol" "htslib"))
11079 (directory? (lambda (file)
11080 (eq? 'directory (stat:type (stat file))))))
11081 (for-each (lambda (file)
11082 (and (directory? file)
11083 (delete-file-recursively file)))
11084 (map (cut string-append "src/" <>)
11085 (scandir "src"
11086 (lambda (file)
11087 (not (member file free)))))))
11088 ;; Only make the utils target, not the userApps target,
11089 ;; because that requires libraries we won't build.
11090 (substitute* "Makefile"
11091 ((" userApps") " utils"))
11092 ;; Only build libraries that are free.
11093 (substitute* "src/makefile"
11094 (("DIRS =.*") "DIRS =\n")
11095 (("cd jkOwnLib.*") "")
11096 ((" hgLib") "")
11097 (("cd hg.*") ""))
11098 (substitute* "src/utils/makefile"
11099 ;; These tools depend on "jkhgap.a", which is part of the
11100 ;; nonfree "src/hg/lib" directory.
11101 (("raSqlQuery") "")
11102 (("pslLiftSubrangeBlat") "")
11103
11104 ;; Do not build UCSC tools, which may require nonfree
11105 ;; components.
11106 (("ALL_APPS =.*") "ALL_APPS = $(UTILS_APPLIST)\n"))
11107 #t))))
11108 (build-system gnu-build-system)
11109 (arguments
11110 `( ;; There is no global test target and the test target for
11111 ;; individual tools depends on input files that are not
11112 ;; included.
11113 #:tests? #f
11114 #:phases
11115 (modify-phases %standard-phases
11116 (add-after 'unpack 'fix-permissions
11117 (lambda _ (make-file-writable "src/inc/localEnvironment.mk") #t))
11118 (add-after 'unpack 'fix-paths
11119 (lambda _
11120 (substitute* "Makefile"
11121 (("/bin/echo") (which "echo")))
11122 #t))
11123 (add-after 'unpack 'prepare-samtabix
11124 (lambda* (#:key inputs #:allow-other-keys)
11125 (copy-recursively (assoc-ref inputs "samtabix")
11126 "samtabix")
11127 #t))
11128 (delete 'configure)
11129 (replace 'install
11130 (lambda* (#:key outputs #:allow-other-keys)
11131 (let ((bin (string-append (assoc-ref outputs "out")
11132 "/bin")))
11133 (copy-recursively "bin" bin))
11134 #t)))))
11135 (native-inputs
11136 `(("samtabix"
11137 ,(origin
11138 (method git-fetch)
11139 (uri (git-reference
11140 (url "http://genome-source.cse.ucsc.edu/samtabix.git")
11141 (commit "10fd107909c1ac4d679299908be4262a012965ba")))
11142 (sha256
11143 (base32
11144 "0c1nj64l42v395sa84n7az43xiap4i6f9n9dfz4058aqiwkhkmma"))))))
11145 (inputs
11146 `(("zlib" ,zlib)
11147 ("tcsh" ,tcsh)
11148 ("perl" ,perl)
11149 ("libpng" ,libpng)
11150 ("mariadb" ,mariadb "lib")
11151 ("mariadb-dev" ,mariadb "dev")
11152 ("openssl" ,openssl-1.0)))
11153 (home-page "https://genome.cse.ucsc.edu/index.html")
11154 (synopsis "Assorted bioinformatics utilities")
11155 (description "This package provides the kentUtils, a selection of
11156 bioinformatics utilities used in combination with the UCSC genome
11157 browser.")
11158 ;; Only a subset of the sources are released under a non-copyleft
11159 ;; free software license. All other sources are removed in a
11160 ;; snippet. See this bug report for an explanation of how the
11161 ;; license statements apply:
11162 ;; https://github.com/ENCODE-DCC/kentUtils/issues/12
11163 (license (license:non-copyleft
11164 "http://genome.ucsc.edu/license/"
11165 "The contents of this package are free for all uses."))))
11166
11167 (define-public f-seq
11168 (let ((commit "6ccded34cff38cf432deed8503648b4a66953f9b")
11169 (revision "1"))
11170 (package
11171 (name "f-seq")
11172 (version (string-append "1.1-" revision "." (string-take commit 7)))
11173 (source (origin
11174 (method git-fetch)
11175 (uri (git-reference
11176 (url "https://github.com/aboyle/F-seq")
11177 (commit commit)))
11178 (file-name (string-append name "-" version))
11179 (sha256
11180 (base32
11181 "1nk33k0yajg2id4g59bc4szr58r2q6pdq42vgcw054m8ip9wv26h"))
11182 (modules '((guix build utils)))
11183 ;; Remove bundled Java library archives.
11184 (snippet
11185 '(begin
11186 (for-each delete-file (find-files "lib" ".*"))
11187 #t))))
11188 (build-system ant-build-system)
11189 (arguments
11190 `(#:tests? #f ; no tests included
11191 #:phases
11192 (modify-phases %standard-phases
11193 (replace 'install
11194 (lambda* (#:key inputs outputs #:allow-other-keys)
11195 (let* ((target (assoc-ref outputs "out"))
11196 (bin (string-append target "/bin"))
11197 (doc (string-append target "/share/doc/f-seq"))
11198 (lib (string-append target "/lib")))
11199 (mkdir-p target)
11200 (mkdir-p doc)
11201 (substitute* "bin/linux/fseq"
11202 (("java") (which "java"))
11203 (("\\$REALDIR/../lib/commons-cli-1.1.jar")
11204 (string-append (assoc-ref inputs "java-commons-cli")
11205 "/share/java/commons-cli.jar"))
11206 (("REALDIR=.*")
11207 (string-append "REALDIR=" bin "\n")))
11208 (install-file "README.txt" doc)
11209 (install-file "bin/linux/fseq" bin)
11210 (install-file "build~/fseq.jar" lib)
11211 (copy-recursively "lib" lib)
11212 #t))))))
11213 (inputs
11214 `(("perl" ,perl)
11215 ("java-commons-cli" ,java-commons-cli)))
11216 (home-page "http://fureylab.web.unc.edu/software/fseq/")
11217 (synopsis "Feature density estimator for high-throughput sequence tags")
11218 (description
11219 "F-Seq is a software package that generates a continuous tag sequence
11220 density estimation allowing identification of biologically meaningful sites
11221 such as transcription factor binding sites (ChIP-seq) or regions of open
11222 chromatin (DNase-seq). Output can be displayed directly in the UCSC Genome
11223 Browser.")
11224 (license license:gpl3+))))
11225
11226 (define-public bismark
11227 (package
11228 (name "bismark")
11229 (version "0.20.1")
11230 (source
11231 (origin
11232 (method git-fetch)
11233 (uri (git-reference
11234 (url "https://github.com/FelixKrueger/Bismark")
11235 (commit version)))
11236 (file-name (string-append name "-" version "-checkout"))
11237 (sha256
11238 (base32
11239 "0xchm3rgilj6vfjnyzfzzymfd7djr64sbrmrvs3njbwi66jqbzw9"))))
11240 (build-system perl-build-system)
11241 (arguments
11242 `(#:tests? #f ; there are no tests
11243 #:modules ((guix build utils)
11244 (ice-9 popen)
11245 (srfi srfi-26)
11246 (guix build perl-build-system))
11247 #:phases
11248 (modify-phases %standard-phases
11249 ;; The bundled plotly.js is minified.
11250 (add-after 'unpack 'replace-plotly.js
11251 (lambda* (#:key inputs #:allow-other-keys)
11252 (let* ((file (assoc-ref inputs "plotly.js"))
11253 (installed "plotly/plotly.js"))
11254 (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
11255 (call-with-output-file installed
11256 (cut dump-port minified <>))))
11257 #t))
11258 (delete 'configure)
11259 (delete 'build)
11260 (replace 'install
11261 (lambda* (#:key inputs outputs #:allow-other-keys)
11262 (let* ((out (assoc-ref outputs "out"))
11263 (bin (string-append out "/bin"))
11264 (share (string-append out "/share/bismark"))
11265 (docdir (string-append out "/share/doc/bismark"))
11266 (docs '("Docs/Bismark_User_Guide.html"))
11267 (scripts '("bismark"
11268 "bismark_genome_preparation"
11269 "bismark_methylation_extractor"
11270 "bismark2bedGraph"
11271 "bismark2report"
11272 "coverage2cytosine"
11273 "deduplicate_bismark"
11274 "filter_non_conversion"
11275 "bam2nuc"
11276 "bismark2summary"
11277 "NOMe_filtering")))
11278 (substitute* "bismark2report"
11279 (("\\$RealBin/plotly")
11280 (string-append share "/plotly")))
11281 (mkdir-p share)
11282 (mkdir-p docdir)
11283 (mkdir-p bin)
11284 (for-each (lambda (file) (install-file file bin))
11285 scripts)
11286 (for-each (lambda (file) (install-file file docdir))
11287 docs)
11288 (copy-recursively "Docs/Images" (string-append docdir "/Images"))
11289 (copy-recursively "plotly"
11290 (string-append share "/plotly"))
11291
11292 ;; Fix references to gunzip
11293 (substitute* (map (lambda (file)
11294 (string-append bin "/" file))
11295 scripts)
11296 (("\"gunzip -c")
11297 (string-append "\"" (assoc-ref inputs "gzip")
11298 "/bin/gunzip -c")))
11299 #t))))))
11300 (inputs
11301 `(("gzip" ,gzip)
11302 ("perl-carp" ,perl-carp)
11303 ("perl-getopt-long" ,perl-getopt-long)))
11304 (native-inputs
11305 `(("plotly.js"
11306 ,(origin
11307 (method url-fetch)
11308 (uri (string-append "https://raw.githubusercontent.com/plotly/plotly.js/"
11309 "v1.39.4/dist/plotly.js"))
11310 (sha256
11311 (base32 "138mwsr4nf5qif4mrxx286mpnagxd1xwl6k8aidrjgknaqg88zyr"))))
11312 ("uglify-js" ,uglify-js)))
11313 (home-page "https://www.bioinformatics.babraham.ac.uk/projects/bismark/")
11314 (synopsis "Map bisulfite treated sequence reads and analyze methylation")
11315 (description "Bismark is a program to map bisulfite treated sequencing
11316 reads to a genome of interest and perform methylation calls in a single step.
11317 The output can be easily imported into a genome viewer, such as SeqMonk, and
11318 enables a researcher to analyse the methylation levels of their samples
11319 straight away. Its main features are:
11320
11321 @itemize
11322 @item Bisulfite mapping and methylation calling in one single step
11323 @item Supports single-end and paired-end read alignments
11324 @item Supports ungapped and gapped alignments
11325 @item Alignment seed length, number of mismatches etc are adjustable
11326 @item Output discriminates between cytosine methylation in CpG, CHG
11327 and CHH context
11328 @end itemize\n")
11329 (license license:gpl3+)))
11330
11331 (define-public paml
11332 (package
11333 (name "paml")
11334 (version "4.9e")
11335 (source (origin
11336 (method url-fetch)
11337 (uri (string-append "http://abacus.gene.ucl.ac.uk/software/"
11338 "paml" version ".tgz"))
11339 (sha256
11340 (base32
11341 "13zf6h9fiqghwhch2h06x1zdr6s42plsnqahflp5g7myr3han3s6"))
11342 (modules '((guix build utils)))
11343 ;; Remove Windows binaries
11344 (snippet
11345 '(begin
11346 (for-each delete-file (find-files "." "\\.exe$"))
11347 ;; Some files in the original tarball have restrictive
11348 ;; permissions, which makes repackaging fail
11349 (for-each (lambda (file) (chmod file #o644)) (find-files "."))
11350 #t))))
11351 (build-system gnu-build-system)
11352 (arguments
11353 `(#:tests? #f ; there are no tests
11354 #:make-flags '("CC=gcc")
11355 #:phases
11356 (modify-phases %standard-phases
11357 (replace 'configure
11358 (lambda _
11359 (substitute* "src/BFdriver.c"
11360 (("/bin/bash") (which "bash")))
11361 (chdir "src")
11362 #t))
11363 (replace 'install
11364 (lambda* (#:key outputs #:allow-other-keys)
11365 (let ((tools '("baseml" "basemlg" "codeml"
11366 "pamp" "evolver" "yn00" "chi2"))
11367 (bin (string-append (assoc-ref outputs "out") "/bin"))
11368 (docdir (string-append (assoc-ref outputs "out")
11369 "/share/doc/paml")))
11370 (mkdir-p bin)
11371 (for-each (lambda (file) (install-file file bin)) tools)
11372 (copy-recursively "../doc" docdir)
11373 #t))))))
11374 (home-page "http://abacus.gene.ucl.ac.uk/software/paml.html")
11375 (synopsis "Phylogentic analysis by maximum likelihood")
11376 (description "PAML (for Phylogentic Analysis by Maximum Likelihood)
11377 contains a few programs for model fitting and phylogenetic tree reconstruction
11378 using nucleotide or amino-acid sequence data.")
11379 ;; GPLv3 only
11380 (license license:gpl3)))
11381
11382 (define-public kallisto
11383 (package
11384 (name "kallisto")
11385 (version "0.44.0")
11386 (source (origin
11387 (method git-fetch)
11388 (uri (git-reference
11389 (url "https://github.com/pachterlab/kallisto")
11390 (commit (string-append "v" version))))
11391 (file-name (git-file-name name version))
11392 (sha256
11393 (base32
11394 "0nj382jiywqnpgvyhichajpkkh5r0bapn43f4dx40zdaq5v4m40m"))))
11395 (build-system cmake-build-system)
11396 (arguments
11397 `(#:tests? #f ; no "check" target
11398 #:phases
11399 (modify-phases %standard-phases
11400 (add-after 'unpack 'do-not-use-bundled-htslib
11401 (lambda _
11402 (substitute* "CMakeLists.txt"
11403 (("^ExternalProject_Add" m)
11404 (string-append "if (NEVER)\n" m))
11405 (("^\\)")
11406 (string-append ")\nendif(NEVER)"))
11407 (("include_directories\\(\\$\\{htslib_PREFIX.*" m)
11408 (string-append "# " m)))
11409 (substitute* "src/CMakeLists.txt"
11410 (("target_link_libraries\\(kallisto kallisto_core pthread \
11411 \\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/../ext/htslib/libhts.a\\)")
11412 "target_link_libraries(kallisto kallisto_core pthread hts)")
11413 (("include_directories\\(\\.\\./ext/htslib\\)") ""))
11414 #t)))))
11415 (inputs
11416 `(("hdf5" ,hdf5)
11417 ("htslib" ,htslib)
11418 ("zlib" ,zlib)))
11419 (home-page "https://pachterlab.github.io/kallisto/")
11420 (synopsis "Near-optimal RNA-Seq quantification")
11421 (description
11422 "Kallisto is a program for quantifying abundances of transcripts from
11423 RNA-Seq data, or more generally of target sequences using high-throughput
11424 sequencing reads. It is based on the novel idea of pseudoalignment for
11425 rapidly determining the compatibility of reads with targets, without the need
11426 for alignment. Pseudoalignment of reads preserves the key information needed
11427 for quantification, and kallisto is therefore not only fast, but also as
11428 accurate as existing quantification tools.")
11429 (license license:bsd-2)))
11430
11431 (define-public libgff
11432 (package
11433 (name "libgff")
11434 (version "1.0")
11435 (source (origin
11436 (method git-fetch)
11437 (uri (git-reference
11438 (url "https://github.com/Kingsford-Group/libgff")
11439 (commit (string-append "v" version))))
11440 (file-name (git-file-name name version))
11441 (sha256
11442 (base32
11443 "0n6vfjnq7a2mianipscbshrvbncss8z4zkgkbjw754p9043nfkps"))))
11444 (build-system cmake-build-system)
11445 (arguments `(#:tests? #f)) ; no tests included
11446 (home-page "https://github.com/Kingsford-Group/libgff")
11447 (synopsis "Parser library for reading/writing GFF files")
11448 (description "This is a simple \"libraryfication\" of the GFF/GTF parsing
11449 code that is used in the Cufflinks codebase. The goal of this library is to
11450 provide this functionality without the necessity of drawing in a heavy-weight
11451 dependency like SeqAn.")
11452 (license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"))))
11453
11454 (define-public sailfish
11455 (package
11456 (name "sailfish")
11457 (version "0.10.1")
11458 (source (origin
11459 (method git-fetch)
11460 (uri (git-reference
11461 (url "https://github.com/kingsfordgroup/sailfish")
11462 (commit (string-append "v" version))))
11463 (file-name (git-file-name name version))
11464 (sha256
11465 (base32
11466 "1amcc5hqvsl42hg4x19bi9vy47cl874s0lw1fmi0hwsdk9i8c03v"))
11467 (modules '((guix build utils)))
11468 (snippet
11469 '(begin
11470 ;; Delete bundled headers for eigen3.
11471 (delete-file-recursively "include/eigen3/")
11472 #t))))
11473 (build-system cmake-build-system)
11474 (arguments
11475 `(#:configure-flags
11476 (list (string-append "-DBOOST_INCLUDEDIR="
11477 (assoc-ref %build-inputs "boost")
11478 "/include/")
11479 (string-append "-DBOOST_LIBRARYDIR="
11480 (assoc-ref %build-inputs "boost")
11481 "/lib/")
11482 (string-append "-DBoost_LIBRARIES="
11483 "-lboost_iostreams "
11484 "-lboost_filesystem "
11485 "-lboost_system "
11486 "-lboost_thread "
11487 "-lboost_timer "
11488 "-lboost_chrono "
11489 "-lboost_program_options")
11490 "-DBoost_FOUND=TRUE"
11491 ;; Don't download RapMap---we already have it!
11492 "-DFETCHED_RAPMAP=1")
11493 ;; Tests must be run after installation and the location of the test
11494 ;; data file must be overridden. But the tests fail. It looks like
11495 ;; they are not really meant to be run.
11496 #:tests? #f
11497 #:phases
11498 (modify-phases %standard-phases
11499 ;; Boost cannot be found, even though it's right there.
11500 (add-after 'unpack 'do-not-look-for-boost
11501 (lambda* (#:key inputs #:allow-other-keys)
11502 (substitute* "CMakeLists.txt"
11503 (("find_package\\(Boost 1\\.53\\.0") "#"))
11504 #t))
11505 (add-after 'unpack 'do-not-assign-to-macro
11506 (lambda _
11507 (substitute* "include/spdlog/details/format.cc"
11508 (("const unsigned CHAR_WIDTH = 1;") ""))
11509 #t))
11510 (add-after 'unpack 'prepare-rapmap
11511 (lambda* (#:key inputs #:allow-other-keys)
11512 (let ((src "external/install/src/rapmap/")
11513 (include "external/install/include/rapmap/")
11514 (rapmap (assoc-ref inputs "rapmap")))
11515 (mkdir-p "/tmp/rapmap")
11516 (invoke "tar" "xf"
11517 (assoc-ref inputs "rapmap")
11518 "-C" "/tmp/rapmap"
11519 "--strip-components=1")
11520 (mkdir-p src)
11521 (mkdir-p include)
11522 (for-each (lambda (file)
11523 (install-file file src))
11524 (find-files "/tmp/rapmap/src" "\\.(c|cpp)"))
11525 (copy-recursively "/tmp/rapmap/include" include))
11526 #t))
11527 (add-after 'unpack 'use-system-libraries
11528 (lambda* (#:key inputs #:allow-other-keys)
11529 (substitute* '("src/SailfishIndexer.cpp"
11530 "src/SailfishUtils.cpp"
11531 "src/SailfishQuantify.cpp"
11532 "src/FASTAParser.cpp"
11533 "include/PCA.hpp"
11534 "include/SailfishUtils.hpp"
11535 "include/SailfishIndex.hpp"
11536 "include/CollapsedEMOptimizer.hpp"
11537 "src/CollapsedEMOptimizer.cpp")
11538 (("#include \"jellyfish/config.h\"") ""))
11539 (substitute* "src/CMakeLists.txt"
11540 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/include/jellyfish-2.2..")
11541 (string-append (assoc-ref inputs "jellyfish")
11542 "/include/jellyfish-" ,(package-version jellyfish)))
11543 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libjellyfish-2.0.a")
11544 (string-append (assoc-ref inputs "jellyfish")
11545 "/lib/libjellyfish-2.0.a"))
11546 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
11547 (string-append (assoc-ref inputs "libdivsufsort")
11548 "/lib/libdivsufsort.so"))
11549 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
11550 (string-append (assoc-ref inputs "libdivsufsort")
11551 "/lib/libdivsufsort64.so")))
11552 (substitute* "CMakeLists.txt"
11553 ;; Don't prefer static libs
11554 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
11555 (("find_package\\(Jellyfish.*") "")
11556 (("ExternalProject_Add\\(libjellyfish") "message(")
11557 (("ExternalProject_Add\\(libgff") "message(")
11558 (("ExternalProject_Add\\(libsparsehash") "message(")
11559 (("ExternalProject_Add\\(libdivsufsort") "message("))
11560
11561 ;; Ensure that Eigen headers can be found
11562 (setenv "CPLUS_INCLUDE_PATH"
11563 (string-append (assoc-ref inputs "eigen")
11564 "/include/eigen3:"
11565 (or (getenv "CPLUS_INCLUDE_PATH") "")))
11566 #t)))))
11567 (inputs
11568 `(("boost" ,boost)
11569 ("eigen" ,eigen)
11570 ("jemalloc" ,jemalloc)
11571 ("jellyfish" ,jellyfish)
11572 ("sparsehash" ,sparsehash)
11573 ("rapmap" ,(origin
11574 (method git-fetch)
11575 (uri (git-reference
11576 (url "https://github.com/COMBINE-lab/RapMap")
11577 (commit (string-append "sf-v" version))))
11578 (file-name (string-append "rapmap-sf-v" version "-checkout"))
11579 (sha256
11580 (base32
11581 "1hv79l5i576ykv5a1srj2p0q36yvyl5966m0fcy2lbi169ipjakf"))
11582 (modules '((guix build utils)))
11583 ;; These files are expected to be excluded.
11584 (snippet
11585 '(begin (delete-file-recursively "include/spdlog")
11586 (for-each delete-file '("include/xxhash.h"
11587 "src/xxhash.c"))
11588 #t))))
11589 ("libdivsufsort" ,libdivsufsort)
11590 ("libgff" ,libgff)
11591 ("tbb" ,tbb)
11592 ("zlib" ,zlib)))
11593 (native-inputs
11594 `(("pkg-config" ,pkg-config)))
11595 (home-page "https://www.cs.cmu.edu/~ckingsf/software/sailfish/")
11596 (synopsis "Mapping-based isoform quantification from RNA-Seq reads")
11597 (description "Sailfish is a tool for genomic transcript quantification
11598 from RNA-seq data. It requires a set of target transcripts (either from a
11599 reference or de-novo assembly) to quantify. All you need to run sailfish is a
11600 fasta file containing your reference transcripts and a (set of) fasta/fastq
11601 file(s) containing your reads.")
11602 (license license:gpl3+)))
11603
11604 (define libstadenio-for-salmon
11605 (package
11606 (name "libstadenio")
11607 (version "1.14.8")
11608 (source (origin
11609 (method git-fetch)
11610 (uri (git-reference
11611 (url "https://github.com/COMBINE-lab/staden-io_lib")
11612 (commit (string-append "v" version))))
11613 (file-name (string-append name "-" version "-checkout"))
11614 (sha256
11615 (base32
11616 "1x8kxxqxl892vwfbprlbyfwkkv7c34ggkc94892x9x0g37x5nbwx"))))
11617 (build-system gnu-build-system)
11618 (arguments '(#:parallel-tests? #f)) ; not supported
11619 (inputs
11620 `(("zlib" ,zlib)))
11621 (native-inputs
11622 `(("perl" ,perl))) ; for tests
11623 (home-page "https://github.com/COMBINE-lab/staden-io_lib")
11624 (synopsis "General purpose trace and experiment file library")
11625 (description "This package provides a library of file reading and writing
11626 code to provide a general purpose Trace file (and Experiment File) reading
11627 interface.
11628
11629 The following file formats are supported:
11630
11631 @enumerate
11632 @item SCF trace files
11633 @item ABI trace files
11634 @item ALF trace files
11635 @item ZTR trace files
11636 @item SFF trace archives
11637 @item SRF trace archives
11638 @item Experiment files
11639 @item Plain text files
11640 @item SAM/BAM sequence files
11641 @item CRAM sequence files
11642 @end enumerate\n")
11643 (license license:bsd-3)))
11644
11645 (define-public salmon
11646 (package
11647 (name "salmon")
11648 (version "0.13.1")
11649 (source (origin
11650 (method git-fetch)
11651 (uri (git-reference
11652 (url "https://github.com/COMBINE-lab/salmon")
11653 (commit (string-append "v" version))))
11654 (file-name (git-file-name name version))
11655 (sha256
11656 (base32
11657 "1i2z4aivicmiixdz9bxalp7vmfzi3k92fxa63iqa8kgvfw5a4aq5"))
11658 (modules '((guix build utils)))
11659 (snippet
11660 '(begin
11661 ;; Delete bundled headers for eigen3.
11662 (delete-file-recursively "include/eigen3/")
11663 #t))))
11664 (build-system cmake-build-system)
11665 (arguments
11666 `(#:configure-flags
11667 (list (string-append "-DBOOST_INCLUDEDIR="
11668 (assoc-ref %build-inputs "boost")
11669 "/include/")
11670 (string-append "-DBOOST_LIBRARYDIR="
11671 (assoc-ref %build-inputs "boost")
11672 "/lib/")
11673 (string-append "-DBoost_LIBRARIES="
11674 "-lboost_iostreams "
11675 "-lboost_filesystem "
11676 "-lboost_system "
11677 "-lboost_thread "
11678 "-lboost_timer "
11679 "-lboost_chrono "
11680 "-lboost_program_options")
11681 "-DBoost_FOUND=TRUE"
11682 "-DTBB_LIBRARIES=tbb tbbmalloc"
11683 ;; Don't download RapMap---we already have it!
11684 "-DFETCHED_RAPMAP=1")
11685 #:phases
11686 (modify-phases %standard-phases
11687 ;; Boost cannot be found, even though it's right there.
11688 (add-after 'unpack 'do-not-look-for-boost
11689 (lambda* (#:key inputs #:allow-other-keys)
11690 (substitute* "CMakeLists.txt"
11691 (("find_package\\(Boost 1\\.59\\.0") "#"))
11692 #t))
11693 (add-after 'unpack 'do-not-phone-home
11694 (lambda _
11695 (substitute* "src/Salmon.cpp"
11696 (("getVersionMessage\\(\\)") "\"\""))
11697 #t))
11698 (add-after 'unpack 'prepare-rapmap
11699 (lambda* (#:key inputs #:allow-other-keys)
11700 (let ((src "external/install/src/rapmap/")
11701 (include "external/install/include/rapmap/")
11702 (rapmap (assoc-ref inputs "rapmap")))
11703 (mkdir-p src)
11704 (mkdir-p include)
11705 (copy-recursively (string-append rapmap "/src") src)
11706 (copy-recursively (string-append rapmap "/include") include)
11707 (for-each delete-file '("external/install/include/rapmap/xxhash.h"
11708 "external/install/include/rapmap/FastxParser.hpp"
11709 "external/install/include/rapmap/concurrentqueue.h"
11710 "external/install/include/rapmap/FastxParserThreadUtils.hpp"
11711 "external/install/src/rapmap/FastxParser.cpp"
11712 "external/install/src/rapmap/xxhash.c"))
11713 (delete-file-recursively "external/install/include/rapmap/spdlog"))
11714 #t))
11715 (add-after 'unpack 'use-system-libraries
11716 (lambda* (#:key inputs #:allow-other-keys)
11717 (substitute* "CMakeLists.txt"
11718 ;; Don't prefer static libs
11719 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
11720 (("set\\(TBB_LIBRARIES") "message(")
11721 ;; Don't download anything
11722 (("DOWNLOAD_COMMAND") "DOWNLOAD_COMMAND echo")
11723 (("externalproject_add\\(libcereal") "message(")
11724 (("externalproject_add\\(libgff") "message(")
11725 (("externalproject_add\\(libtbb") "message(")
11726 (("externalproject_add\\(libdivsufsort") "message(")
11727 (("externalproject_add\\(libstadenio") "message(")
11728 (("externalproject_add_step\\(") "message("))
11729 (substitute* "src/CMakeLists.txt"
11730 (("add_dependencies") "#")
11731 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libstaden-read.a")
11732 (string-append (assoc-ref inputs "libstadenio-for-salmon")
11733 "/lib/libstaden-read.so"))
11734 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
11735 (string-append (assoc-ref inputs "libdivsufsort")
11736 "/lib/libdivsufsort.so"))
11737 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
11738 (string-append (assoc-ref inputs "libdivsufsort")
11739 "/lib/libdivsufsort64.so"))
11740 (("lib/libdivsufsort.a") "/lib/libdivsufsort.so"))
11741
11742 ;; Ensure that all headers can be found
11743 (setenv "CPLUS_INCLUDE_PATH"
11744 (string-append (or (getenv "CPLUS_INCLUDE_PATH") "")
11745 ":"
11746 (assoc-ref inputs "eigen")
11747 "/include/eigen3"))
11748 #t))
11749 ;; CMAKE_INSTALL_PREFIX does not exist when the tests are
11750 ;; run. It only exists after the install phase.
11751 (add-after 'unpack 'fix-tests
11752 (lambda _
11753 (substitute* "src/CMakeLists.txt"
11754 (("DTOPLEVEL_DIR=\\$\\{CMAKE_INSTALL_PREFIX")
11755 "DTOPLEVEL_DIR=${GAT_SOURCE_DIR"))
11756 #t)))))
11757 (inputs
11758 `(("boost" ,boost)
11759 ("bzip2" ,bzip2)
11760 ("cereal" ,cereal)
11761 ("eigen" ,eigen)
11762 ("rapmap" ,(origin
11763 (method git-fetch)
11764 (uri (git-reference
11765 (url "https://github.com/COMBINE-lab/RapMap")
11766 (commit (string-append "salmon-v" version))))
11767 (file-name (string-append "rapmap-salmon-v" version "-checkout"))
11768 (sha256
11769 (base32
11770 "1biplxf0csc7a8h1wf219b0vmjkvw6wk2zylhdklb577kgmihdms"))))
11771 ("jemalloc" ,jemalloc)
11772 ("libgff" ,libgff)
11773 ("tbb" ,tbb)
11774 ("libdivsufsort" ,libdivsufsort)
11775 ("libstadenio-for-salmon" ,libstadenio-for-salmon)
11776 ("xz" ,xz)
11777 ("zlib" ,zlib)))
11778 (native-inputs
11779 `(("pkg-config" ,pkg-config)))
11780 (home-page "https://github.com/COMBINE-lab/salmon")
11781 (synopsis "Quantification from RNA-seq reads using lightweight alignments")
11782 (description "Salmon is a program to produce highly-accurate,
11783 transcript-level quantification estimates from RNA-seq data. Salmon achieves
11784 its accuracy and speed via a number of different innovations, including the
11785 use of lightweight alignments (accurate but fast-to-compute proxies for
11786 traditional read alignments) and massively-parallel stochastic collapsed
11787 variational inference.")
11788 (license license:gpl3+)))
11789
11790 (define-public python-loompy
11791 (package
11792 (name "python-loompy")
11793 (version "2.0.17")
11794 ;; The tarball on Pypi does not include the tests.
11795 (source (origin
11796 (method git-fetch)
11797 (uri (git-reference
11798 (url "https://github.com/linnarsson-lab/loompy")
11799 (commit version)))
11800 (file-name (git-file-name name version))
11801 (sha256
11802 (base32
11803 "12a5kjgiikapv93wahfw0frszx1lblnppyz3vs5gy8fgmgngra07"))))
11804 (build-system python-build-system)
11805 (arguments
11806 `(#:phases
11807 (modify-phases %standard-phases
11808 (replace 'check
11809 (lambda _
11810 (setenv "PYTHONPATH"
11811 (string-append (getcwd) ":"
11812 (getenv "PYTHONPATH")))
11813 (invoke "pytest" "tests")
11814 #t)))))
11815 (propagated-inputs
11816 `(("python-h5py" ,python-h5py)
11817 ("python-numpy" ,python-numpy)
11818 ("python-pandas" ,python-pandas)
11819 ("python-scipy" ,python-scipy)))
11820 (native-inputs
11821 `(("python-pytest" ,python-pytest)))
11822 (home-page "https://github.com/linnarsson-lab/loompy")
11823 (synopsis "Work with .loom files for single-cell RNA-seq data")
11824 (description "The loom file format is an efficient format for very large
11825 omics datasets, consisting of a main matrix, optional additional layers, a
11826 variable number of row and column annotations. Loom also supports sparse
11827 graphs. This library makes it easy to work with @file{.loom} files for
11828 single-cell RNA-seq data.")
11829 (license license:bsd-3)))
11830
11831 ;; We cannot use the latest commit because it requires Java 9.
11832 (define-public java-forester
11833 (let ((commit "86b07efe302d5094b42deed9260f719a4c4ac2e6")
11834 (revision "1"))
11835 (package
11836 (name "java-forester")
11837 (version (string-append "0-" revision "." (string-take commit 7)))
11838 (source (origin
11839 (method git-fetch)
11840 (uri (git-reference
11841 (url "https://github.com/cmzmasek/forester")
11842 (commit commit)))
11843 (file-name (string-append name "-" version "-checkout"))
11844 (sha256
11845 (base32
11846 "0vxavc1yrf84yrnf20dq26hi0lglidk8d382xrxsy4qmlbjd276z"))
11847 (modules '((guix build utils)))
11848 (snippet
11849 '(begin
11850 ;; Delete bundled jars and pre-built classes
11851 (delete-file-recursively "forester/java/resources")
11852 (delete-file-recursively "forester/java/classes")
11853 (for-each delete-file (find-files "forester/java/" "\\.jar$"))
11854 ;; Delete bundled applications
11855 (delete-file-recursively "forester_applications")
11856 #t))))
11857 (build-system ant-build-system)
11858 (arguments
11859 `(#:tests? #f ; there are none
11860 #:jdk ,icedtea-8
11861 #:modules ((guix build ant-build-system)
11862 (guix build utils)
11863 (guix build java-utils)
11864 (sxml simple)
11865 (sxml transform))
11866 #:phases
11867 (modify-phases %standard-phases
11868 (add-after 'unpack 'chdir
11869 (lambda _ (chdir "forester/java") #t))
11870 (add-after 'chdir 'fix-dependencies
11871 (lambda _
11872 (chmod "build.xml" #o664)
11873 (call-with-output-file "build.xml.new"
11874 (lambda (port)
11875 (sxml->xml
11876 (pre-post-order
11877 (with-input-from-file "build.xml"
11878 (lambda _ (xml->sxml #:trim-whitespace? #t)))
11879 `(;; Remove all unjar tags to avoid repacking classes.
11880 (unjar . ,(lambda _ '()))
11881 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
11882 (*text* . ,(lambda (_ txt) txt))))
11883 port)))
11884 (rename-file "build.xml.new" "build.xml")
11885 #t))
11886 ;; FIXME: itext is difficult to package as it depends on a few
11887 ;; unpackaged libraries.
11888 (add-after 'chdir 'remove-dependency-on-unpackaged-itext
11889 (lambda _
11890 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
11891 (substitute* "src/org/forester/archaeopteryx/MainFrame.java"
11892 (("pdf_written_to = PdfExporter.*")
11893 "throw new IOException(\"PDF export is not available.\");"))
11894 #t))
11895 ;; There is no install target
11896 (replace 'install (install-jars ".")))))
11897 (propagated-inputs
11898 `(("java-commons-codec" ,java-commons-codec)
11899 ("java-openchart2" ,java-openchart2)))
11900 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
11901 (synopsis "Phylogenomics libraries for Java")
11902 (description "Forester is a collection of Java libraries for
11903 phylogenomics and evolutionary biology research. It includes support for
11904 reading, writing, and exporting phylogenetic trees.")
11905 (license license:lgpl2.1+))))
11906
11907 (define-public java-forester-1.005
11908 (package
11909 (name "java-forester")
11910 (version "1.005")
11911 (source (origin
11912 (method url-fetch)
11913 (uri (string-append "https://repo1.maven.org/maven2/"
11914 "org/biojava/thirdparty/forester/"
11915 version "/forester-" version "-sources.jar"))
11916 (file-name (string-append name "-" version ".jar"))
11917 (sha256
11918 (base32
11919 "04r8qv4rk3p71z4ajrvp11py1z46qrx0047j3zzs79s6lnsm3lcv"))))
11920 (build-system ant-build-system)
11921 (arguments
11922 `(#:tests? #f ; there are none
11923 #:jdk ,icedtea-8
11924 #:modules ((guix build ant-build-system)
11925 (guix build utils)
11926 (guix build java-utils)
11927 (sxml simple)
11928 (sxml transform))
11929 #:phases
11930 (modify-phases %standard-phases
11931 (add-after 'unpack 'fix-dependencies
11932 (lambda* (#:key inputs #:allow-other-keys)
11933 (call-with-output-file "build.xml"
11934 (lambda (port)
11935 (sxml->xml
11936 (pre-post-order
11937 (with-input-from-file "src/build.xml"
11938 (lambda _ (xml->sxml #:trim-whitespace? #t)))
11939 `(;; Remove all unjar tags to avoid repacking classes.
11940 (unjar . ,(lambda _ '()))
11941 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
11942 (*text* . ,(lambda (_ txt) txt))))
11943 port)))
11944 (copy-file (assoc-ref inputs "synth_look_and_feel_1.xml")
11945 "synth_look_and_feel_1.xml")
11946 (copy-file (assoc-ref inputs "phyloxml.xsd")
11947 "phyloxml.xsd")
11948 (substitute* "build.xml"
11949 (("../resources/synth_laf/synth_look_and_feel_1.xml")
11950 "synth_look_and_feel_1.xml")
11951 (("../resources/phyloxml_schema/1.10/phyloxml.xsd")
11952 "phyloxml.xsd"))
11953 #t))
11954 ;; FIXME: itext is difficult to package as it depends on a few
11955 ;; unpackaged libraries.
11956 (add-after 'unpack 'remove-dependency-on-unpackaged-itext
11957 (lambda _
11958 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
11959 (substitute* '("src/org/forester/archaeopteryx/MainFrame.java"
11960 "src/org/forester/archaeopteryx/MainFrameApplication.java")
11961 (("pdf_written_to = PdfExporter.*")
11962 "throw new IOException(\"PDF export is not available.\"); /*")
11963 ((".getPrintSizeX\\(\\), getOptions\\(\\).getPrintSizeY\\(\\) \\);") "*/")
11964 (("getCurrentTreePanel\\(\\).getHeight\\(\\) \\);") "*/"))
11965 #t))
11966 (add-after 'unpack 'delete-pre-built-classes
11967 (lambda _ (delete-file-recursively "src/classes") #t))
11968 ;; There is no install target
11969 (replace 'install (install-jars ".")))))
11970 (propagated-inputs
11971 `(("java-commons-codec" ,java-commons-codec)
11972 ("java-openchart2" ,java-openchart2)))
11973 ;; The source archive does not contain the resources.
11974 (native-inputs
11975 `(("phyloxml.xsd"
11976 ,(origin
11977 (method url-fetch)
11978 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
11979 "b61cc2dcede0bede317db362472333115756b8c6/"
11980 "forester/resources/phyloxml_schema/1.10/phyloxml.xsd"))
11981 (file-name (string-append name "-phyloxml-" version ".xsd"))
11982 (sha256
11983 (base32
11984 "1zxc4m8sn4n389nqdnpxa8d0k17qnr3pm2y5y6g6vh4k0zm52npv"))))
11985 ("synth_look_and_feel_1.xml"
11986 ,(origin
11987 (method url-fetch)
11988 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
11989 "29e04321615da6b35c1e15c60e52caf3f21d8e6a/"
11990 "forester/java/classes/resources/"
11991 "synth_look_and_feel_1.xml"))
11992 (file-name (string-append name "-synth-look-and-feel-" version ".xml"))
11993 (sha256
11994 (base32
11995 "1gv5602gv4k7y7713y75a4jvj7i9s7nildsbdl7n9q10sc2ikg8h"))))))
11996 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
11997 (synopsis "Phylogenomics libraries for Java")
11998 (description "Forester is a collection of Java libraries for
11999 phylogenomics and evolutionary biology research. It includes support for
12000 reading, writing, and exporting phylogenetic trees.")
12001 (license license:lgpl2.1+)))
12002
12003 (define-public java-biojava-core
12004 (package
12005 (name "java-biojava-core")
12006 (version "4.2.11")
12007 (source (origin
12008 (method git-fetch)
12009 (uri (git-reference
12010 (url "https://github.com/biojava/biojava")
12011 (commit (string-append "biojava-" version))))
12012 (file-name (string-append name "-" version "-checkout"))
12013 (sha256
12014 (base32
12015 "1bvryh2bpsvash8ln79cmc9sqm8qw72hz4xzwqxcrjm8ssxszhqk"))))
12016 (build-system ant-build-system)
12017 (arguments
12018 `(#:jdk ,icedtea-8
12019 #:jar-name "biojava-core.jar"
12020 #:source-dir "biojava-core/src/main/java/"
12021 #:test-dir "biojava-core/src/test"
12022 ;; These tests seem to require internet access.
12023 #:test-exclude (list "**/SearchIOTest.java"
12024 "**/BlastXMLParserTest.java"
12025 "**/GenbankCookbookTest.java"
12026 "**/GenbankProxySequenceReaderTest.java")
12027 #:phases
12028 (modify-phases %standard-phases
12029 (add-before 'build 'copy-resources
12030 (lambda _
12031 (copy-recursively "biojava-core/src/main/resources"
12032 "build/classes")
12033 #t))
12034 (add-before 'check 'copy-test-resources
12035 (lambda _
12036 (copy-recursively "biojava-core/src/test/resources"
12037 "build/test-classes")
12038 #t)))))
12039 (propagated-inputs
12040 `(("java-log4j-api" ,java-log4j-api)
12041 ("java-log4j-core" ,java-log4j-core)
12042 ("java-slf4j-api" ,java-slf4j-api)
12043 ("java-slf4j-simple" ,java-slf4j-simple)))
12044 (native-inputs
12045 `(("java-junit" ,java-junit)
12046 ("java-hamcrest-core" ,java-hamcrest-core)))
12047 (home-page "https://biojava.org")
12048 (synopsis "Core libraries of Java framework for processing biological data")
12049 (description "BioJava is a project dedicated to providing a Java framework
12050 for processing biological data. It provides analytical and statistical
12051 routines, parsers for common file formats, reference implementations of
12052 popular algorithms, and allows the manipulation of sequences and 3D
12053 structures. The goal of the biojava project is to facilitate rapid
12054 application development for bioinformatics.
12055
12056 This package provides the core libraries.")
12057 (license license:lgpl2.1+)))
12058
12059 (define-public java-biojava-phylo
12060 (package (inherit java-biojava-core)
12061 (name "java-biojava-phylo")
12062 (build-system ant-build-system)
12063 (arguments
12064 `(#:jdk ,icedtea-8
12065 #:jar-name "biojava-phylo.jar"
12066 #:source-dir "biojava-phylo/src/main/java/"
12067 #:test-dir "biojava-phylo/src/test"
12068 #:phases
12069 (modify-phases %standard-phases
12070 (add-before 'build 'copy-resources
12071 (lambda _
12072 (copy-recursively "biojava-phylo/src/main/resources"
12073 "build/classes")
12074 #t))
12075 (add-before 'check 'copy-test-resources
12076 (lambda _
12077 (copy-recursively "biojava-phylo/src/test/resources"
12078 "build/test-classes")
12079 #t)))))
12080 (propagated-inputs
12081 `(("java-log4j-api" ,java-log4j-api)
12082 ("java-log4j-core" ,java-log4j-core)
12083 ("java-slf4j-api" ,java-slf4j-api)
12084 ("java-slf4j-simple" ,java-slf4j-simple)
12085 ("java-biojava-core" ,java-biojava-core)
12086 ("java-forester" ,java-forester)))
12087 (native-inputs
12088 `(("java-junit" ,java-junit)
12089 ("java-hamcrest-core" ,java-hamcrest-core)))
12090 (home-page "https://biojava.org")
12091 (synopsis "Biojava interface to the forester phylogenomics library")
12092 (description "The phylo module provides a biojava interface layer to the
12093 forester phylogenomics library for constructing phylogenetic trees.")))
12094
12095 (define-public java-biojava-alignment
12096 (package (inherit java-biojava-core)
12097 (name "java-biojava-alignment")
12098 (build-system ant-build-system)
12099 (arguments
12100 `(#:jdk ,icedtea-8
12101 #:jar-name "biojava-alignment.jar"
12102 #:source-dir "biojava-alignment/src/main/java/"
12103 #:test-dir "biojava-alignment/src/test"
12104 #:phases
12105 (modify-phases %standard-phases
12106 (add-before 'build 'copy-resources
12107 (lambda _
12108 (copy-recursively "biojava-alignment/src/main/resources"
12109 "build/classes")
12110 #t))
12111 (add-before 'check 'copy-test-resources
12112 (lambda _
12113 (copy-recursively "biojava-alignment/src/test/resources"
12114 "build/test-classes")
12115 #t)))))
12116 (propagated-inputs
12117 `(("java-log4j-api" ,java-log4j-api)
12118 ("java-log4j-core" ,java-log4j-core)
12119 ("java-slf4j-api" ,java-slf4j-api)
12120 ("java-slf4j-simple" ,java-slf4j-simple)
12121 ("java-biojava-core" ,java-biojava-core)
12122 ("java-biojava-phylo" ,java-biojava-phylo)
12123 ("java-forester" ,java-forester)))
12124 (native-inputs
12125 `(("java-junit" ,java-junit)
12126 ("java-hamcrest-core" ,java-hamcrest-core)))
12127 (home-page "https://biojava.org")
12128 (synopsis "Biojava API for genetic sequence alignment")
12129 (description "The alignment module of BioJava provides an API that
12130 contains
12131
12132 @itemize
12133 @item implementations of dynamic programming algorithms for sequence
12134 alignment;
12135 @item reading and writing of popular alignment file formats;
12136 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12137 @end itemize\n")))
12138
12139 (define-public java-biojava-core-4.0
12140 (package (inherit java-biojava-core)
12141 (name "java-biojava-core")
12142 (version "4.0.0")
12143 (source (origin
12144 (method git-fetch)
12145 (uri (git-reference
12146 (url "https://github.com/biojava/biojava")
12147 (commit (string-append "biojava-" version))))
12148 (file-name (string-append name "-" version "-checkout"))
12149 (sha256
12150 (base32
12151 "13675f6y9aqi7bi2lk3s1z7a22ynccjiqwa8izh7p97xi9wsfmd8"))))))
12152
12153 (define-public java-biojava-phylo-4.0
12154 (package (inherit java-biojava-core-4.0)
12155 (name "java-biojava-phylo")
12156 (build-system ant-build-system)
12157 (arguments
12158 `(#:jdk ,icedtea-8
12159 #:jar-name "biojava-phylo.jar"
12160 #:source-dir "biojava-phylo/src/main/java/"
12161 #:test-dir "biojava-phylo/src/test"
12162 #:phases
12163 (modify-phases %standard-phases
12164 (add-before 'build 'copy-resources
12165 (lambda _
12166 (copy-recursively "biojava-phylo/src/main/resources"
12167 "build/classes")
12168 #t))
12169 (add-before 'check 'copy-test-resources
12170 (lambda _
12171 (copy-recursively "biojava-phylo/src/test/resources"
12172 "build/test-classes")
12173 #t)))))
12174 (propagated-inputs
12175 `(("java-log4j-api" ,java-log4j-api)
12176 ("java-log4j-core" ,java-log4j-core)
12177 ("java-slf4j-api" ,java-slf4j-api)
12178 ("java-slf4j-simple" ,java-slf4j-simple)
12179 ("java-biojava-core" ,java-biojava-core-4.0)
12180 ("java-forester" ,java-forester-1.005)))
12181 (native-inputs
12182 `(("java-junit" ,java-junit)
12183 ("java-hamcrest-core" ,java-hamcrest-core)))
12184 (home-page "https://biojava.org")
12185 (synopsis "Biojava interface to the forester phylogenomics library")
12186 (description "The phylo module provides a biojava interface layer to the
12187 forester phylogenomics library for constructing phylogenetic trees.")))
12188
12189 (define-public java-biojava-alignment-4.0
12190 (package (inherit java-biojava-core-4.0)
12191 (name "java-biojava-alignment")
12192 (build-system ant-build-system)
12193 (arguments
12194 `(#:jdk ,icedtea-8
12195 #:jar-name "biojava-alignment.jar"
12196 #:source-dir "biojava-alignment/src/main/java/"
12197 #:test-dir "biojava-alignment/src/test"
12198 #:phases
12199 (modify-phases %standard-phases
12200 (add-before 'build 'copy-resources
12201 (lambda _
12202 (copy-recursively "biojava-alignment/src/main/resources"
12203 "build/classes")
12204 #t))
12205 (add-before 'check 'copy-test-resources
12206 (lambda _
12207 (copy-recursively "biojava-alignment/src/test/resources"
12208 "build/test-classes")
12209 #t)))))
12210 (propagated-inputs
12211 `(("java-log4j-api" ,java-log4j-api)
12212 ("java-log4j-core" ,java-log4j-core)
12213 ("java-slf4j-api" ,java-slf4j-api)
12214 ("java-slf4j-simple" ,java-slf4j-simple)
12215 ("java-biojava-core" ,java-biojava-core-4.0)
12216 ("java-biojava-phylo" ,java-biojava-phylo-4.0)
12217 ("java-forester" ,java-forester-1.005)))
12218 (native-inputs
12219 `(("java-junit" ,java-junit)
12220 ("java-hamcrest-core" ,java-hamcrest-core)))
12221 (home-page "https://biojava.org")
12222 (synopsis "Biojava API for genetic sequence alignment")
12223 (description "The alignment module of BioJava provides an API that
12224 contains
12225
12226 @itemize
12227 @item implementations of dynamic programming algorithms for sequence
12228 alignment;
12229 @item reading and writing of popular alignment file formats;
12230 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12231 @end itemize\n")))
12232
12233 (define-public dropseq-tools
12234 (package
12235 (name "dropseq-tools")
12236 (version "1.13")
12237 (source
12238 (origin
12239 (method url-fetch)
12240 (uri "http://mccarrolllab.com/download/1276/")
12241 (file-name (string-append "dropseq-tools-" version ".zip"))
12242 (sha256
12243 (base32
12244 "0yrffckxqk5l8b5xb6z4laq157zd9mdypr2p4b4vq2bhjzi1sj0s"))
12245 ;; Delete bundled libraries
12246 (modules '((guix build utils)))
12247 (snippet
12248 '(begin
12249 (for-each delete-file (find-files "jar/lib" "\\.jar$"))
12250 (delete-file-recursively "3rdParty")
12251 #t))))
12252 (build-system ant-build-system)
12253 (arguments
12254 `(#:tests? #f ; test data are not included
12255 #:test-target "test"
12256 #:build-target "all"
12257 #:source-dir "public/src/"
12258 #:jdk ,icedtea-8
12259 #:make-flags
12260 (list (string-append "-Dpicard.executable.dir="
12261 (assoc-ref %build-inputs "java-picard")
12262 "/share/java/"))
12263 #:modules ((ice-9 match)
12264 (srfi srfi-1)
12265 (guix build utils)
12266 (guix build java-utils)
12267 (guix build ant-build-system))
12268 #:phases
12269 (modify-phases %standard-phases
12270 ;; FIXME: fails with "java.io.FileNotFoundException:
12271 ;; /gnu/store/…-dropseq-tools-1.13/share/java/lib/biojava-alignment.jar"
12272 (delete 'generate-jar-indices)
12273 ;; All dependencies must be linked to "lib", because that's where
12274 ;; they will be searched for when the Class-Path property of the
12275 ;; manifest is computed.
12276 (add-after 'unpack 'record-references
12277 (lambda* (#:key inputs #:allow-other-keys)
12278 (mkdir-p "jar/lib")
12279 (let ((dirs (filter-map (match-lambda
12280 ((name . dir)
12281 (if (and (string-prefix? "java-" name)
12282 (not (string=? name "java-testng")))
12283 dir #f)))
12284 inputs)))
12285 (for-each (lambda (jar)
12286 (symlink jar (string-append "jar/lib/" (basename jar))))
12287 (append-map (lambda (dir) (find-files dir "\\.jar$"))
12288 dirs)))
12289 #t))
12290 ;; There is no installation target
12291 (replace 'install
12292 (lambda* (#:key inputs outputs #:allow-other-keys)
12293 (let* ((out (assoc-ref outputs "out"))
12294 (bin (string-append out "/bin"))
12295 (share (string-append out "/share/java/"))
12296 (lib (string-append share "/lib/"))
12297 (scripts (list "BAMTagHistogram"
12298 "BAMTagofTagCounts"
12299 "BaseDistributionAtReadPosition"
12300 "CollapseBarcodesInPlace"
12301 "CollapseTagWithContext"
12302 "ConvertToRefFlat"
12303 "CreateIntervalsFiles"
12304 "DetectBeadSynthesisErrors"
12305 "DigitalExpression"
12306 "Drop-seq_alignment.sh"
12307 "FilterBAM"
12308 "FilterBAMByTag"
12309 "GatherGeneGCLength"
12310 "GatherMolecularBarcodeDistributionByGene"
12311 "GatherReadQualityMetrics"
12312 "PolyATrimmer"
12313 "ReduceGTF"
12314 "SelectCellsByNumTranscripts"
12315 "SingleCellRnaSeqMetricsCollector"
12316 "TagBamWithReadSequenceExtended"
12317 "TagReadWithGeneExon"
12318 "TagReadWithInterval"
12319 "TrimStartingSequence"
12320 "ValidateReference")))
12321 (for-each mkdir-p (list bin share lib))
12322 (install-file "dist/dropseq.jar" share)
12323 (for-each (lambda (script)
12324 (chmod script #o555)
12325 (install-file script bin))
12326 scripts)
12327 (substitute* (map (lambda (script)
12328 (string-append bin "/" script))
12329 scripts)
12330 (("^java") (which "java"))
12331 (("jar_deploy_dir=.*")
12332 (string-append "jar_deploy_dir=" share "\n"))))
12333 #t))
12334 ;; FIXME: We do this after stripping jars because we don't want it to
12335 ;; copy all these jars and strip them. We only want to install
12336 ;; links. Arguably, this is a problem with the ant-build-system.
12337 (add-after 'strip-jar-timestamps 'install-links
12338 (lambda* (#:key outputs #:allow-other-keys)
12339 (let* ((out (assoc-ref outputs "out"))
12340 (share (string-append out "/share/java/"))
12341 (lib (string-append share "/lib/")))
12342 (for-each (lambda (jar)
12343 (symlink (readlink jar)
12344 (string-append lib (basename jar))))
12345 (find-files "jar/lib" "\\.jar$")))
12346 #t)))))
12347 (inputs
12348 `(("jdk" ,icedtea-8)
12349 ("java-picard" ,java-picard-2.10.3)
12350 ("java-log4j-1.2-api" ,java-log4j-1.2-api)
12351 ("java-commons-math3" ,java-commons-math3)
12352 ("java-commons-jexl2" ,java-commons-jexl-2)
12353 ("java-commons-collections4" ,java-commons-collections4)
12354 ("java-commons-lang2" ,java-commons-lang)
12355 ("java-commons-io" ,java-commons-io)
12356 ("java-snappy-1.0.3-rc3" ,java-snappy-1)
12357 ("java-guava" ,java-guava)
12358 ("java-la4j" ,java-la4j)
12359 ("java-biojava-core" ,java-biojava-core-4.0)
12360 ("java-biojava-alignment" ,java-biojava-alignment-4.0)
12361 ("java-jdistlib" ,java-jdistlib)
12362 ("java-simple-xml" ,java-simple-xml)
12363 ("java-snakeyaml" ,java-snakeyaml)))
12364 (native-inputs
12365 `(("unzip" ,unzip)
12366 ("java-testng" ,java-testng)))
12367 (home-page "http://mccarrolllab.com/dropseq/")
12368 (synopsis "Tools for Drop-seq analyses")
12369 (description "Drop-seq is a technology to enable biologists to
12370 analyze RNA expression genome-wide in thousands of individual cells at
12371 once. This package provides tools to perform Drop-seq analyses.")
12372 (license license:expat)))
12373
12374 (define-public pigx-rnaseq
12375 (package
12376 (name "pigx-rnaseq")
12377 (version "0.0.10")
12378 (source (origin
12379 (method url-fetch)
12380 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/"
12381 "releases/download/v" version
12382 "/pigx_rnaseq-" version ".tar.gz"))
12383 (sha256
12384 (base32
12385 "0z3hr120wk2vrlmlpz1vp3n9wy3rq4y2mnzh2vf08qgqn2xfdwcw"))))
12386 (build-system gnu-build-system)
12387 (arguments
12388 `(#:parallel-tests? #f ; not supported
12389 #:phases
12390 (modify-phases %standard-phases
12391 ;; "test.sh" runs STAR, which requires excessive amounts of memory.
12392 (add-after 'unpack 'disable-resource-intensive-test
12393 (lambda _
12394 (substitute* "Makefile.in"
12395 (("(^ tests/test_trim_galore/test.sh).*" _ m) m)
12396 (("^ tests/test_multiqc/test.sh") "")
12397 (("^ test.sh") ""))
12398 #t)))))
12399 (inputs
12400 `(("coreutils" ,coreutils)
12401 ("sed" ,sed)
12402 ("gzip" ,gzip)
12403 ("snakemake" ,snakemake)
12404 ("fastqc" ,fastqc)
12405 ("multiqc" ,multiqc)
12406 ("star" ,star)
12407 ("trim-galore" ,trim-galore)
12408 ("htseq" ,htseq)
12409 ("samtools" ,samtools)
12410 ("r-minimal" ,r-minimal)
12411 ("r-rmarkdown" ,r-rmarkdown)
12412 ("r-ggplot2" ,r-ggplot2)
12413 ("r-ggrepel" ,r-ggrepel)
12414 ("r-gprofiler" ,r-gprofiler)
12415 ("r-deseq2" ,r-deseq2)
12416 ("r-dt" ,r-dt)
12417 ("r-knitr" ,r-knitr)
12418 ("r-pheatmap" ,r-pheatmap)
12419 ("r-corrplot" ,r-corrplot)
12420 ("r-reshape2" ,r-reshape2)
12421 ("r-plotly" ,r-plotly)
12422 ("r-scales" ,r-scales)
12423 ("r-summarizedexperiment" ,r-summarizedexperiment)
12424 ("r-crosstalk" ,r-crosstalk)
12425 ("r-tximport" ,r-tximport)
12426 ("r-rtracklayer" ,r-rtracklayer)
12427 ("r-rjson" ,r-rjson)
12428 ("salmon" ,salmon)
12429 ("pandoc" ,pandoc)
12430 ("pandoc-citeproc" ,pandoc-citeproc)
12431 ("python-wrapper" ,python-wrapper)
12432 ("python-pyyaml" ,python-pyyaml)))
12433 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12434 (synopsis "Analysis pipeline for RNA sequencing experiments")
12435 (description "PiGX RNAseq is an analysis pipeline for preprocessing and
12436 reporting for RNA sequencing experiments. It is easy to use and produces high
12437 quality reports. The inputs are reads files from the sequencing experiment,
12438 and a configuration file which describes the experiment. In addition to
12439 quality control of the experiment, the pipeline produces a differential
12440 expression report comparing samples in an easily configurable manner.")
12441 (license license:gpl3+)))
12442
12443 (define-public pigx-chipseq
12444 (package
12445 (name "pigx-chipseq")
12446 (version "0.0.43")
12447 (source (origin
12448 (method url-fetch)
12449 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_chipseq/"
12450 "releases/download/v" version
12451 "/pigx_chipseq-" version ".tar.gz"))
12452 (sha256
12453 (base32
12454 "0426i31b7mqqkbss5dgrvf5prkj4z1qrd7yrpd27vybs01xhdlks"))))
12455 (build-system gnu-build-system)
12456 ;; parts of the tests rely on access to the network
12457 (arguments '(#:tests? #f))
12458 (inputs
12459 `(("grep" ,grep)
12460 ("coreutils" ,coreutils)
12461 ("r-minimal" ,r-minimal)
12462 ("r-argparser" ,r-argparser)
12463 ("r-biocparallel" ,r-biocparallel)
12464 ("r-biostrings" ,r-biostrings)
12465 ("r-chipseq" ,r-chipseq)
12466 ("r-data-table" ,r-data-table)
12467 ("r-dplyr" ,r-dplyr)
12468 ("r-genomation" ,r-genomation)
12469 ("r-genomicalignments" ,r-genomicalignments)
12470 ("r-genomicranges" ,r-genomicranges)
12471 ("r-rsamtools" ,r-rsamtools)
12472 ("r-rtracklayer" ,r-rtracklayer)
12473 ("r-s4vectors" ,r-s4vectors)
12474 ("r-stringr" ,r-stringr)
12475 ("r-tibble" ,r-tibble)
12476 ("r-tidyr" ,r-tidyr)
12477 ("r-jsonlite" ,r-jsonlite)
12478 ("r-heatmaply" ,r-heatmaply)
12479 ("r-htmlwidgets" ,r-htmlwidgets)
12480 ("r-ggplot2" ,r-ggplot2)
12481 ("r-plotly" ,r-plotly)
12482 ("r-rmarkdown" ,r-rmarkdown)
12483 ("python-wrapper" ,python-wrapper)
12484 ("python-pyyaml" ,python-pyyaml)
12485 ("python-magic" ,python-magic)
12486 ("python-xlrd" ,python-xlrd)
12487 ("trim-galore" ,trim-galore)
12488 ("macs" ,macs)
12489 ("multiqc" ,multiqc)
12490 ("perl" ,perl)
12491 ("pandoc" ,pandoc)
12492 ("pandoc-citeproc" ,pandoc-citeproc)
12493 ("fastqc" ,fastqc)
12494 ("bowtie" ,bowtie)
12495 ("idr" ,idr)
12496 ("snakemake" ,snakemake)
12497 ("samtools" ,samtools)
12498 ("bedtools" ,bedtools)
12499 ("kentutils" ,kentutils)))
12500 (native-inputs
12501 `(("python-pytest" ,python-pytest)))
12502 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12503 (synopsis "Analysis pipeline for ChIP sequencing experiments")
12504 (description "PiGX ChIPseq is an analysis pipeline for preprocessing, peak
12505 calling and reporting for ChIP sequencing experiments. It is easy to use and
12506 produces high quality reports. The inputs are reads files from the sequencing
12507 experiment, and a configuration file which describes the experiment. In
12508 addition to quality control of the experiment, the pipeline enables to set up
12509 multiple peak calling analysis and allows the generation of a UCSC track hub
12510 in an easily configurable manner.")
12511 (license license:gpl3+)))
12512
12513 (define-public pigx-bsseq
12514 (package
12515 (name "pigx-bsseq")
12516 (version "0.1.2")
12517 (source (origin
12518 (method url-fetch)
12519 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_bsseq/"
12520 "releases/download/v" version
12521 "/pigx_bsseq-" version ".tar.gz"))
12522 (sha256
12523 (base32
12524 "0mpzlay2d5cjpmrcp7knff6rg1c2mqszd638n7lw0mc0cycbp9f8"))))
12525 (build-system gnu-build-system)
12526 (arguments
12527 `(;; TODO: tests currently require 12+GB of RAM. See
12528 ;; https://github.com/BIMSBbioinfo/pigx_bsseq/issues/164
12529 #:tests? #f
12530 #:phases
12531 (modify-phases %standard-phases
12532 (add-before 'check 'set-timezone
12533 ;; The readr package is picky about timezones.
12534 (lambda* (#:key inputs #:allow-other-keys)
12535 (setenv "TZ" "UTC+1")
12536 (setenv "TZDIR"
12537 (string-append (assoc-ref inputs "tzdata")
12538 "/share/zoneinfo"))
12539 #t)))))
12540 (native-inputs
12541 `(("tzdata" ,tzdata)))
12542 (inputs
12543 `(("coreutils" ,coreutils)
12544 ("sed" ,sed)
12545 ("grep" ,grep)
12546 ("r-minimal" ,r-minimal)
12547 ("r-annotationhub" ,r-annotationhub)
12548 ("r-dt" ,r-dt)
12549 ("r-genomation" ,r-genomation)
12550 ("r-ggrepel" ,r-ggrepel)
12551 ("r-methylkit" ,r-methylkit)
12552 ("r-rtracklayer" ,r-rtracklayer)
12553 ("r-rmarkdown" ,r-rmarkdown)
12554 ("r-bookdown" ,r-bookdown)
12555 ("r-ggplot2" ,r-ggplot2)
12556 ("r-ggbio" ,r-ggbio)
12557 ("pandoc" ,pandoc)
12558 ("pandoc-citeproc" ,pandoc-citeproc)
12559 ("python-wrapper" ,python-wrapper)
12560 ("python-pyyaml" ,python-pyyaml)
12561 ("snakemake" ,snakemake)
12562 ("bismark" ,bismark)
12563 ("bowtie" ,bowtie)
12564 ("bwa-meth" ,bwa-meth)
12565 ("fastqc" ,fastqc)
12566 ("methyldackel" ,methyldackel)
12567 ("multiqc" ,multiqc)
12568 ("trim-galore" ,trim-galore)
12569 ("cutadapt" ,cutadapt)
12570 ("samblaster" ,samblaster)
12571 ("samtools" ,samtools)))
12572 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12573 (synopsis "Bisulfite sequencing pipeline from fastq to methylation reports")
12574 (description "PiGx BSseq is a data processing pipeline for raw fastq read
12575 data of bisulfite experiments; it produces reports on aggregate methylation
12576 and coverage and can be used to produce information on differential
12577 methylation and segmentation.")
12578 (license license:gpl3+)))
12579
12580 (define-public pigx-scrnaseq
12581 (package
12582 (name "pigx-scrnaseq")
12583 (version "1.1.4")
12584 (source (origin
12585 (method url-fetch)
12586 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_scrnaseq/"
12587 "releases/download/v" version
12588 "/pigx_scrnaseq-" version ".tar.gz"))
12589 (sha256
12590 (base32
12591 "1d5l3gywypi67yz9advxq5xkgfhr4733gj0bwnngm723i3hdf5w9"))))
12592 (build-system gnu-build-system)
12593 (inputs
12594 `(("coreutils" ,coreutils)
12595 ("perl" ,perl)
12596 ("fastqc" ,fastqc)
12597 ("flexbar" ,flexbar)
12598 ("java" ,icedtea-8)
12599 ("jellyfish" ,jellyfish)
12600 ("python-wrapper" ,python-wrapper)
12601 ("python-pyyaml" ,python-pyyaml)
12602 ("python-pandas" ,python-pandas)
12603 ("python-magic" ,python-magic)
12604 ("python-numpy" ,python-numpy)
12605 ("python-loompy" ,python-loompy)
12606 ("pandoc" ,pandoc)
12607 ("pandoc-citeproc" ,pandoc-citeproc)
12608 ("samtools" ,samtools)
12609 ("snakemake" ,snakemake)
12610 ("star" ,star)
12611 ("r-minimal" ,r-minimal)
12612 ("r-argparser" ,r-argparser)
12613 ("r-cowplot" ,r-cowplot)
12614 ("r-data-table" ,r-data-table)
12615 ("r-delayedarray" ,r-delayedarray)
12616 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
12617 ("r-dplyr" ,r-dplyr)
12618 ("r-dropbead" ,r-dropbead)
12619 ("r-dt" ,r-dt)
12620 ("r-genomicalignments" ,r-genomicalignments)
12621 ("r-genomicfiles" ,r-genomicfiles)
12622 ("r-genomicranges" ,r-genomicranges)
12623 ("r-ggplot2" ,r-ggplot2)
12624 ("r-hdf5array" ,r-hdf5array)
12625 ("r-pheatmap" ,r-pheatmap)
12626 ("r-rmarkdown" ,r-rmarkdown)
12627 ("r-rsamtools" ,r-rsamtools)
12628 ("r-rtracklayer" ,r-rtracklayer)
12629 ("r-rtsne" ,r-rtsne)
12630 ("r-scater" ,r-scater)
12631 ("r-scran" ,r-scran)
12632 ("r-seurat" ,r-seurat)
12633 ("r-singlecellexperiment" ,r-singlecellexperiment)
12634 ("r-stringr" ,r-stringr)
12635 ("r-yaml" ,r-yaml)))
12636 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12637 (synopsis "Analysis pipeline for single-cell RNA sequencing experiments")
12638 (description "PiGX scRNAseq is an analysis pipeline for preprocessing and
12639 quality control for single cell RNA sequencing experiments. The inputs are
12640 read files from the sequencing experiment, and a configuration file which
12641 describes the experiment. It produces processed files for downstream analysis
12642 and interactive quality reports. The pipeline is designed to work with UMI
12643 based methods.")
12644 (license license:gpl3+)))
12645
12646 (define-public pigx
12647 (package
12648 (name "pigx")
12649 (version "0.0.3")
12650 (source (origin
12651 (method url-fetch)
12652 (uri (string-append "https://github.com/BIMSBbioinfo/pigx/"
12653 "releases/download/v" version
12654 "/pigx-" version ".tar.gz"))
12655 (sha256
12656 (base32
12657 "1i5njdy1clj5ncw45d16p7mwmqvb1ilikl9n797pxklc3f4s7mq7"))))
12658 (build-system gnu-build-system)
12659 (inputs
12660 `(("python" ,python)
12661 ("pigx-bsseq" ,pigx-bsseq)
12662 ("pigx-chipseq" ,pigx-chipseq)
12663 ("pigx-rnaseq" ,pigx-rnaseq)
12664 ("pigx-scrnaseq" ,pigx-scrnaseq)))
12665 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12666 (synopsis "Analysis pipelines for genomics")
12667 (description "PiGx is a collection of genomics pipelines. It includes the
12668 following pipelines:
12669
12670 @itemize
12671 @item PiGx BSseq for raw fastq read data of bisulfite experiments
12672 @item PiGx RNAseq for RNAseq samples
12673 @item PiGx scRNAseq for single cell dropseq analysis
12674 @item PiGx ChIPseq for reads from ChIPseq experiments
12675 @end itemize
12676
12677 All pipelines are easily configured with a simple sample sheet and a
12678 descriptive settings file. The result is a set of comprehensive, interactive
12679 HTML reports with interesting findings about your samples.")
12680 (license license:gpl3+)))
12681
12682 (define-public genrich
12683 (package
12684 (name "genrich")
12685 (version "0.5")
12686 (source (origin
12687 (method git-fetch)
12688 (uri (git-reference
12689 (url "https://github.com/jsh58/Genrich")
12690 (commit (string-append "v" version))))
12691 (file-name (git-file-name name version))
12692 (sha256
12693 (base32
12694 "0x0q6z0208n3cxzqjla4rgjqpyqgwpmz27852lcvzkzaigymq4zp"))))
12695 (build-system gnu-build-system)
12696 (arguments
12697 `(#:tests? #f ; there are none
12698 #:phases
12699 (modify-phases %standard-phases
12700 (delete 'configure)
12701 (replace 'install
12702 (lambda* (#:key outputs #:allow-other-keys)
12703 (install-file "Genrich" (string-append (assoc-ref outputs "out") "/bin"))
12704 #t)))))
12705 (inputs
12706 `(("zlib" ,zlib)))
12707 (home-page "https://github.com/jsh58/Genrich")
12708 (synopsis "Detecting sites of genomic enrichment")
12709 (description "Genrich is a peak-caller for genomic enrichment
12710 assays (e.g. ChIP-seq, ATAC-seq). It analyzes alignment files generated
12711 following the assay and produces a file detailing peaks of significant
12712 enrichment.")
12713 (license license:expat)))
12714
12715 (define-public mantis
12716 (let ((commit "4ffd171632c2cb0056a86d709dfd2bf21bc69b84")
12717 (revision "1"))
12718 (package
12719 (name "mantis")
12720 (version (git-version "0" revision commit))
12721 (source (origin
12722 (method git-fetch)
12723 (uri (git-reference
12724 (url "https://github.com/splatlab/mantis")
12725 (commit commit)))
12726 (file-name (git-file-name name version))
12727 (sha256
12728 (base32
12729 "0iqbr0dhmlc8mzpirmm2s4pkzkwdgrcx50yx6cv3wlr2qi064p55"))))
12730 (build-system cmake-build-system)
12731 (arguments '(#:tests? #f)) ; there are none
12732 (inputs
12733 `(("sdsl-lite" ,sdsl-lite)
12734 ("openssl" ,openssl)
12735 ("zlib" ,zlib)))
12736 (home-page "https://github.com/splatlab/mantis")
12737 (synopsis "Large-scale sequence-search index data structure")
12738 (description "Mantis is a space-efficient data structure that can be
12739 used to index thousands of raw-read genomics experiments and facilitate
12740 large-scale sequence searches on those experiments. Mantis uses counting
12741 quotient filters instead of Bloom filters, enabling rapid index builds and
12742 queries, small indexes, and exact results, i.e., no false positives or
12743 negatives. Furthermore, Mantis is also a colored de Bruijn graph
12744 representation, so it supports fast graph traversal and other topological
12745 analyses in addition to large-scale sequence-level searches.")
12746 ;; uses __uint128_t and inline assembly
12747 (supported-systems '("x86_64-linux"))
12748 (license license:bsd-3))))
12749
12750 (define-public sjcount
12751 ;; There is no tag for version 3.2, nor is there a release archive.
12752 (let ((commit "292d3917cadb3f6834c81e509c30e61cd7ead6e5")
12753 (revision "1"))
12754 (package
12755 (name "sjcount")
12756 (version (git-version "3.2" revision commit))
12757 (source (origin
12758 (method git-fetch)
12759 (uri (git-reference
12760 (url "https://github.com/pervouchine/sjcount-full")
12761 (commit commit)))
12762 (file-name (string-append name "-" version "-checkout"))
12763 (sha256
12764 (base32
12765 "0gdgj35j249f04rqgq8ymcc1xg1vi9kzbajnjqpaq2wpbh8bl234"))))
12766 (build-system gnu-build-system)
12767 (arguments
12768 `(#:tests? #f ; requires a 1.4G test file
12769 #:make-flags
12770 (list (string-append "SAMTOOLS_DIR="
12771 (assoc-ref %build-inputs "samtools")
12772 "/lib/"))
12773 #:phases
12774 (modify-phases %standard-phases
12775 (replace 'configure
12776 (lambda* (#:key inputs #:allow-other-keys)
12777 (substitute* "makefile"
12778 (("-I \\$\\{SAMTOOLS_DIR\\}")
12779 (string-append "-I" (assoc-ref inputs "samtools")
12780 "/include/samtools"))
12781 (("-lz ") "-lz -lpthread "))
12782 #t))
12783 (replace 'install
12784 (lambda* (#:key outputs #:allow-other-keys)
12785 (for-each (lambda (tool)
12786 (install-file tool
12787 (string-append (assoc-ref outputs "out")
12788 "/bin")))
12789 '("j_count" "b_count" "sjcount"))
12790 #t)))))
12791 (inputs
12792 `(("samtools" ,samtools-0.1)
12793 ("zlib" ,zlib)))
12794 (home-page "https://github.com/pervouchine/sjcount-full/")
12795 (synopsis "Annotation-agnostic splice junction counting pipeline")
12796 (description "Sjcount is a utility for fast quantification of splice
12797 junctions in RNA-seq data. It is annotation-agnostic and offset-aware. This
12798 version does count multisplits.")
12799 (license license:gpl3+))))
12800
12801 (define-public minimap2
12802 (package
12803 (name "minimap2")
12804 (version "2.17")
12805 (source
12806 (origin
12807 (method url-fetch)
12808 (uri (string-append "https://github.com/lh3/minimap2/"
12809 "releases/download/v" version "/"
12810 "minimap2-" version ".tar.bz2"))
12811 (sha256
12812 (base32
12813 "0hi7i9pzxhvjj44khzzzj1lrn5gb5837arr4wgln7k1k5n4ci2mn"))))
12814 (build-system gnu-build-system)
12815 (arguments
12816 `(#:tests? #f ; there are none
12817 #:make-flags
12818 (list "CC=gcc"
12819 (let ((system ,(or (%current-target-system)
12820 (%current-system))))
12821 (cond
12822 ((string-prefix? "x86_64" system)
12823 "all")
12824 ((or (string-prefix? "armhf" system)
12825 (string-prefix? "aarch64" system))
12826 "arm_neon=1")
12827 (else "sse2only=1"))))
12828 #:phases
12829 (modify-phases %standard-phases
12830 (delete 'configure)
12831 (replace 'install
12832 (lambda* (#:key outputs #:allow-other-keys)
12833 (let* ((out (assoc-ref outputs "out"))
12834 (bin (string-append out "/bin"))
12835 (man (string-append out "/share/man/man1")))
12836 (install-file "minimap2" bin)
12837 (mkdir-p man)
12838 (install-file "minimap2.1" man))
12839 #t)))))
12840 (inputs
12841 `(("zlib" ,zlib)))
12842 (home-page "https://lh3.github.io/minimap2/")
12843 (synopsis "Pairwise aligner for genomic and spliced nucleotide sequences")
12844 (description "Minimap2 is a versatile sequence alignment program that
12845 aligns DNA or mRNA sequences against a large reference database. Typical use
12846 cases include:
12847
12848 @enumerate
12849 @item mapping PacBio or Oxford Nanopore genomic reads to the human genome;
12850 @item finding overlaps between long reads with error rate up to ~15%;
12851 @item splice-aware alignment of PacBio Iso-Seq or Nanopore cDNA or Direct RNA
12852 reads against a reference genome;
12853 @item aligning Illumina single- or paired-end reads;
12854 @item assembly-to-assembly alignment;
12855 @item full-genome alignment between two closely related species with
12856 divergence below ~15%.
12857 @end enumerate\n")
12858 (license license:expat)))
12859
12860 (define-public miniasm
12861 (package
12862 (name "miniasm")
12863 (version "0.3")
12864 (source (origin
12865 (method git-fetch)
12866 (uri (git-reference
12867 (url "https://github.com/lh3/miniasm")
12868 (commit (string-append "v" version))))
12869 (file-name (git-file-name name version))
12870 (sha256
12871 (base32
12872 "04dv5wv8bhsw1imxwyd438bnn9kby7svp44nbcz8lsadzjjci5gs"))))
12873 (build-system gnu-build-system)
12874 (inputs
12875 `(("zlib" ,zlib)))
12876 (arguments
12877 `(#:tests? #f ; There are no tests.
12878 #:phases
12879 (modify-phases %standard-phases
12880 (delete 'configure)
12881 (replace 'install
12882 (lambda* (#:key inputs outputs #:allow-other-keys)
12883 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
12884 (install-file "miniasm" bin)
12885 (install-file "minidot" bin)
12886 #t))))))
12887 (home-page "https://github.com/lh3/miniasm")
12888 (synopsis "Ultrafast de novo assembly for long noisy reads")
12889 (description "Miniasm is a very fast OLC-based de novo assembler for noisy
12890 long reads. It takes all-vs-all read self-mappings (typically by minimap) as
12891 input and outputs an assembly graph in the GFA format. Different from
12892 mainstream assemblers, miniasm does not have a consensus step. It simply
12893 concatenates pieces of read sequences to generate the final unitig sequences.
12894 Thus the per-base error rate is similar to the raw input reads.")
12895 (license license:expat)))
12896
12897 (define-public r-circus
12898 (package
12899 (name "r-circus")
12900 (version "0.1.5")
12901 (source
12902 (origin
12903 (method git-fetch)
12904 (uri (git-reference
12905 (url "https://github.com/BIMSBbioinfo/ciRcus")
12906 (commit (string-append "v" version))))
12907 (file-name (git-file-name name version))
12908 (sha256
12909 (base32
12910 "0jhjn3ilb057hbf6yzrihj13ifxxs32y7nkby8l3lkm28dg4p97h"))))
12911 (build-system r-build-system)
12912 (propagated-inputs
12913 `(("r-annotationdbi" ,r-annotationdbi)
12914 ("r-annotationhub" ,r-annotationhub)
12915 ("r-biomart" ,r-biomart)
12916 ("r-data-table" ,r-data-table)
12917 ("r-dbi" ,r-dbi)
12918 ("r-genomicfeatures" ,r-genomicfeatures)
12919 ("r-genomicranges" ,r-genomicranges)
12920 ("r-ggplot2" ,r-ggplot2)
12921 ("r-hash" ,r-hash)
12922 ("r-iranges" ,r-iranges)
12923 ("r-rcolorbrewer" ,r-rcolorbrewer)
12924 ("r-rmysql" ,r-rmysql)
12925 ("r-s4vectors" ,r-s4vectors)
12926 ("r-stringr" ,r-stringr)
12927 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12928 (native-inputs
12929 `(("r-knitr" ,r-knitr)))
12930 (home-page "https://github.com/BIMSBbioinfo/ciRcus")
12931 (synopsis "Annotation, analysis and visualization of circRNA data")
12932 (description "Circus is an R package for annotation, analysis and
12933 visualization of circRNA data. Users can annotate their circRNA candidates
12934 with host genes, gene featrues they are spliced from, and discriminate between
12935 known and yet unknown splice junctions. Circular-to-linear ratios of circRNAs
12936 can be calculated, and a number of descriptive plots easily generated.")
12937 (license license:artistic2.0)))
12938
12939 (define-public gffread
12940 ;; We cannot use the tagged release because it is not in sync with gclib.
12941 ;; See https://github.com/gpertea/gffread/issues/26
12942 (let ((commit "ba7535fcb3cea55a6e5a491d916e93b454e87fd0")
12943 (revision "1"))
12944 (package
12945 (name "gffread")
12946 (version (git-version "0.9.12" revision commit))
12947 (source
12948 (origin
12949 (method git-fetch)
12950 (uri (git-reference
12951 (url "https://github.com/gpertea/gffread")
12952 (commit commit)))
12953 (file-name (git-file-name name version))
12954 (sha256
12955 (base32
12956 "1dl2nbcg96lxpd0drg48ssa8343nf7pw9s9mkrc4mjjmfwsin3ki"))))
12957 (build-system gnu-build-system)
12958 (arguments
12959 `(#:tests? #f ; no check target
12960 #:make-flags
12961 (list "GCLDIR=gclib")
12962 #:phases
12963 (modify-phases %standard-phases
12964 (delete 'configure)
12965 (add-after 'unpack 'copy-gclib-source
12966 (lambda* (#:key inputs #:allow-other-keys)
12967 (mkdir-p "gclib")
12968 (copy-recursively (assoc-ref inputs "gclib-source") "gclib")
12969 #t))
12970 ;; There is no install target
12971 (replace 'install
12972 (lambda* (#:key outputs #:allow-other-keys)
12973 (let* ((out (assoc-ref outputs "out"))
12974 (bin (string-append out "/bin")))
12975 (install-file "gffread" bin))
12976 #t)))))
12977 (native-inputs
12978 `(("gclib-source"
12979 ,(let ((version "0.10.3")
12980 (commit "54917d0849c1e83cfb057b5f712e5cb6a35d948f")
12981 (revision "1"))
12982 (origin
12983 (method git-fetch)
12984 (uri (git-reference
12985 (url "https://github.com/gpertea/gclib")
12986 (commit commit)))
12987 (file-name (git-file-name "gclib" version))
12988 (sha256
12989 (base32
12990 "0b51lc0b8syrv7186fd7n8f15rwnf264qgfmm2palrwks1px24mr")))))))
12991 (home-page "https://github.com/gpertea/gffread/")
12992 (synopsis "Parse and convert GFF/GTF files")
12993 (description
12994 "This package provides a GFF/GTF file parsing utility providing format
12995 conversions, region filtering, FASTA sequence extraction and more.")
12996 ;; gffread is under Expat, but gclib is under Artistic 2.0
12997 (license (list license:expat
12998 license:artistic2.0)))))
12999
13000 (define-public find-circ
13001 ;; The last release was in 2015. The license was clarified in 2017, so we
13002 ;; take the latest commit.
13003 (let ((commit "8655dca54970fcf7e92e22fbf57e1188724dda7d")
13004 (revision "1"))
13005 (package
13006 (name "find-circ")
13007 (version (git-version "1.2" revision commit))
13008 (source
13009 (origin
13010 (method git-fetch)
13011 (uri (git-reference
13012 (url "https://github.com/marvin-jens/find_circ")
13013 (commit commit)))
13014 (file-name (git-file-name name version))
13015 (sha256
13016 (base32
13017 "0p77pbqbclqr4srms34y1b9b4njybfpjiknc11ki84f3p8skb3cg"))))
13018 (build-system gnu-build-system)
13019 (arguments
13020 `(#:tests? #f ; there are none
13021 #:phases
13022 ;; There is no actual build system.
13023 (modify-phases %standard-phases
13024 (delete 'configure)
13025 (delete 'build)
13026 (replace 'install
13027 (lambda* (#:key outputs #:allow-other-keys)
13028 (let* ((out (assoc-ref outputs "out"))
13029 (bin (string-append out "/bin"))
13030 (path (getenv "PYTHONPATH")))
13031 (for-each (lambda (script)
13032 (install-file script bin)
13033 (wrap-program (string-append bin "/" script)
13034 `("PYTHONPATH" ":" prefix (,path))))
13035 '("cmp_bed.py"
13036 "find_circ.py"
13037 "maxlength.py"
13038 "merge_bed.py"
13039 "unmapped2anchors.py")))
13040 #t)))))
13041 (inputs
13042 `(("python2" ,python-2)
13043 ("python2-pysam" ,python2-pysam)
13044 ("python2-numpy" ,python2-numpy)))
13045 (home-page "https://github.com/marvin-jens/find_circ")
13046 (synopsis "circRNA detection from RNA-seq reads")
13047 (description "This package provides tools to detect head-to-tail
13048 spliced (back-spliced) sequencing reads, indicative of circular RNA (circRNA)
13049 in RNA-seq data.")
13050 (license license:gpl3))))
13051
13052 (define-public python-scanpy
13053 (package
13054 (name "python-scanpy")
13055 (version "1.4.6")
13056 (source
13057 (origin
13058 (method url-fetch)
13059 (uri (pypi-uri "scanpy" version))
13060 (sha256
13061 (base32
13062 "0s2b6cvaigx4wzw3850qb93sjwwxbzh22kpbp498zklc5rjpbz4l"))))
13063 (build-system python-build-system)
13064 (arguments
13065 `(#:phases
13066 (modify-phases %standard-phases
13067 (replace 'check
13068 (lambda* (#:key inputs #:allow-other-keys)
13069 ;; These tests require Internet access.
13070 (delete-file-recursively "scanpy/tests/notebooks")
13071 (delete-file "scanpy/tests/test_clustering.py")
13072 (delete-file "scanpy/tests/test_datasets.py")
13073
13074 ;; TODO: I can't get the plotting tests to work, even with Xvfb.
13075 (delete-file "scanpy/tests/test_plotting.py")
13076 (delete-file "scanpy/tests/test_preprocessing.py")
13077 (delete-file "scanpy/tests/test_read_10x.py")
13078
13079 (setenv "PYTHONPATH"
13080 (string-append (getcwd) ":"
13081 (getenv "PYTHONPATH")))
13082 (invoke "pytest")
13083 #t)))))
13084 (propagated-inputs
13085 `(("python-anndata" ,python-anndata)
13086 ("python-h5py" ,python-h5py)
13087 ("python-igraph" ,python-igraph)
13088 ("python-joblib" ,python-joblib)
13089 ("python-legacy-api-wrap" ,python-legacy-api-wrap)
13090 ("python-louvain" ,python-louvain)
13091 ("python-matplotlib" ,python-matplotlib)
13092 ("python-natsort" ,python-natsort)
13093 ("python-networkx" ,python-networkx)
13094 ("python-numba" ,python-numba)
13095 ("python-packaging" ,python-packaging)
13096 ("python-pandas" ,python-pandas)
13097 ("python-patsy" ,python-patsy)
13098 ("python-scikit-learn" ,python-scikit-learn)
13099 ("python-scipy" ,python-scipy)
13100 ("python-seaborn" ,python-seaborn)
13101 ("python-statsmodels" ,python-statsmodels)
13102 ("python-tables" ,python-tables)
13103 ("python-tqdm" ,python-tqdm)
13104 ("python-umap-learn" ,python-umap-learn)))
13105 (native-inputs
13106 `(("python-pytest" ,python-pytest)
13107 ("python-setuptools-scm" ,python-setuptools-scm)))
13108 (home-page "https://github.com/theislab/scanpy")
13109 (synopsis "Single-Cell Analysis in Python.")
13110 (description "Scanpy is a scalable toolkit for analyzing single-cell gene
13111 expression data. It includes preprocessing, visualization, clustering,
13112 pseudotime and trajectory inference and differential expression testing. The
13113 Python-based implementation efficiently deals with datasets of more than one
13114 million cells.")
13115 (license license:bsd-3)))
13116
13117 (define-public python-bbknn
13118 (package
13119 (name "python-bbknn")
13120 (version "1.3.6")
13121 (source
13122 (origin
13123 (method url-fetch)
13124 (uri (pypi-uri "bbknn" version))
13125 (sha256
13126 (base32
13127 "1jbsh01f57zj4bhvjr3jh4532zznqd6nccmgrl3qi9gnhkf7c4y0"))))
13128 (build-system python-build-system)
13129 (arguments
13130 `(#:tests? #f)) ; TODO: Enable after migration to scikit-learn.
13131 (propagated-inputs
13132 `(("python-annoy" ,python-annoy)
13133 ("python-cython" ,python-cython)
13134 ("python-numpy" ,python-numpy)
13135 ("python-scipy" ,python-scipy)
13136 ("python-umap-learn" ,python-umap-learn)))
13137 (home-page "https://github.com/Teichlab/bbknn")
13138 (synopsis "Batch balanced KNN")
13139 (description "BBKNN is a batch effect removal tool that can be directly
13140 used in the Scanpy workflow. It serves as an alternative to
13141 @code{scanpy.api.pp.neighbors()}, with both functions creating a neighbour
13142 graph for subsequent use in clustering, pseudotime and UMAP visualisation. If
13143 technical artifacts are present in the data, they will make it challenging to
13144 link corresponding cell types across different batches. BBKNN actively
13145 combats this effect by splitting your data into batches and finding a smaller
13146 number of neighbours for each cell within each of the groups. This helps
13147 create connections between analogous cells in different batches without
13148 altering the counts or PCA space.")
13149 (license license:expat)))
13150
13151 (define-public gffcompare
13152 (let ((commit "be56ef4349ea3966c12c6397f85e49e047361c41")
13153 (revision "1"))
13154 (package
13155 (name "gffcompare")
13156 (version (git-version "0.10.15" revision commit))
13157 (source
13158 (origin
13159 (method git-fetch)
13160 (uri (git-reference
13161 (url "https://github.com/gpertea/gffcompare/")
13162 (commit commit)))
13163 (file-name (git-file-name name version))
13164 (sha256
13165 (base32 "0cp5qpxdhw4mxpya5dld8wi3jk00zyklm6rcri426wydinrnfmkg"))))
13166 (build-system gnu-build-system)
13167 (arguments
13168 `(#:tests? #f ; no check target
13169 #:phases
13170 (modify-phases %standard-phases
13171 (delete 'configure)
13172 (add-before 'build 'copy-gclib-source
13173 (lambda* (#:key inputs #:allow-other-keys)
13174 (mkdir "../gclib")
13175 (copy-recursively
13176 (assoc-ref inputs "gclib-source") "../gclib")
13177 #t))
13178 (replace 'install
13179 (lambda* (#:key outputs #:allow-other-keys)
13180 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
13181 (install-file "gffcompare" bin)
13182 #t))))))
13183 (native-inputs
13184 `(("gclib-source" ; see 'README.md' of gffcompare
13185 ,(let ((commit "54917d0849c1e83cfb057b5f712e5cb6a35d948f")
13186 (revision "1")
13187 (name "gclib")
13188 (version (git-version "0.10.3" revision commit)))
13189 (origin
13190 (method git-fetch)
13191 (uri (git-reference
13192 (url "https://github.com/gpertea/gclib/")
13193 (commit commit)))
13194 (file-name (git-file-name name version))
13195 (sha256
13196 (base32 "0b51lc0b8syrv7186fd7n8f15rwnf264qgfmm2palrwks1px24mr")))))))
13197 (home-page "https://github.com/gpertea/gffcompare/")
13198 (synopsis "Tool for comparing or classifing transcripts of RNA-Seq")
13199 (description
13200 "@code{gffcompare} is a tool that can:
13201 @enumerate
13202 @item compare and evaluate the accuracy of RNA-Seq transcript assemblers
13203 (Cufflinks, Stringtie);
13204 @item collapse (merge) duplicate transcripts from multiple GTF/GFF3 files (e.g.
13205 resulted from assembly of different samples);
13206 @item classify transcripts from one or multiple GTF/GFF3 files as they relate to
13207 reference transcripts provided in a annotation file (also in GTF/GFF3 format).
13208 @end enumerate")
13209 (license
13210 (list
13211 license:expat ;license for gffcompare
13212 license:artistic2.0))))) ;license for gclib
13213
13214 (define-public intervaltree
13215 (let ((commit "b90527f9e6d51cd36ecbb50429e4524d3a418ea5"))
13216 (package
13217 (name "intervaltree")
13218 (version (git-version "0.0.0" "1" commit))
13219 (source
13220 (origin
13221 (method git-fetch)
13222 (uri (git-reference
13223 (url "https://github.com/ekg/intervaltree/")
13224 (commit commit)))
13225 (file-name (git-file-name name version))
13226 (sha256
13227 (base32 "0rgv6q5fl4x5d74n6p5wvdna6zmbdbqpb4jqqh6vq3670gn08xad"))))
13228 (build-system gnu-build-system)
13229 (arguments
13230 '(#:tests? #f ; No tests.
13231 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
13232 "DESTDIR=\"\"")
13233 #:phases
13234 (modify-phases %standard-phases
13235 (delete 'configure)))) ; There is no configure phase.
13236 (home-page "https://github.com/ekg/intervaltree")
13237 (synopsis "Minimal C++ interval tree implementation")
13238 (description "An interval tree can be used to efficiently find a set of
13239 numeric intervals overlapping or containing another interval. This library
13240 provides a basic implementation of an interval tree using C++ templates,
13241 allowing the insertion of arbitrary types into the tree.")
13242 (license license:expat))))
13243
13244 (define-public python-intervaltree
13245 (package
13246 (name "python-intervaltree")
13247 (version "3.0.2")
13248 (source
13249 (origin
13250 (method url-fetch)
13251 (uri (pypi-uri "intervaltree" version))
13252 (sha256
13253 (base32
13254 "0wz234g6irlm4hivs2qzmnywk0ss06ckagwh15nflkyb3p462kyb"))))
13255 (build-system python-build-system)
13256 (arguments
13257 `(#:phases
13258 (modify-phases %standard-phases
13259 ;; pytest seems to have a check to make sure the user is testing
13260 ;; their checked-out code and not an installed, potentially
13261 ;; out-of-date copy. This is harmless here, since we just installed
13262 ;; the package, so we disable the check to avoid skipping tests
13263 ;; entirely.
13264 (add-before 'check 'import-mismatch-error-workaround
13265 (lambda _
13266 (setenv "PY_IGNORE_IMPORTMISMATCH" "1")
13267 #t)))))
13268 (propagated-inputs
13269 `(("python-sortedcontainers" ,python-sortedcontainers)))
13270 (native-inputs
13271 `(("python-pytest" ,python-pytest)))
13272 (home-page "https://github.com/chaimleib/intervaltree")
13273 (synopsis "Editable interval tree data structure")
13274 (description
13275 "This package provides a mutable, self-balancing interval tree
13276 implementation for Python. Queries may be by point, by range overlap, or by
13277 range envelopment. This library was designed to allow tagging text and time
13278 intervals, where the intervals include the lower bound but not the upper
13279 bound.")
13280 (license license:asl2.0)))
13281
13282 (define-public python-pypairix
13283 (package
13284 (name "python-pypairix")
13285 (version "0.3.7")
13286 ;; The tarball on pypi does not include the makefile to build the
13287 ;; programs.
13288 (source
13289 (origin
13290 (method git-fetch)
13291 (uri (git-reference
13292 (url "https://github.com/4dn-dcic/pairix")
13293 (commit version)))
13294 (file-name (git-file-name name version))
13295 (sha256
13296 (base32
13297 "1snr3lrmsld8sy77ng6ba6wcmd33xjccf1l2f3m6pi29xis9nd6p"))))
13298 (build-system python-build-system)
13299 (arguments
13300 `(#:phases
13301 (modify-phases %standard-phases
13302 (add-before 'build 'build-programs
13303 (lambda _ (invoke "make")))
13304 (add-after 'install 'install-programs
13305 (lambda* (#:key outputs #:allow-other-keys)
13306 (copy-recursively "bin" (string-append
13307 (assoc-ref outputs "out")
13308 "/bin"))
13309 #t)))))
13310 (inputs
13311 `(("zlib" ,zlib)))
13312 (home-page "https://github.com/4dn-dcic/pairix")
13313 (synopsis "Support for querying pairix-indexed bgzipped text files")
13314 (description
13315 "Pypairix is a Python module for fast querying on a pairix-indexed
13316 bgzipped text file that contains a pair of genomic coordinates per line.")
13317 (license license:expat)))
13318
13319 (define-public python-pyfaidx
13320 (package
13321 (name "python-pyfaidx")
13322 (version "0.5.8")
13323 (source
13324 (origin
13325 (method url-fetch)
13326 (uri (pypi-uri "pyfaidx" version))
13327 (sha256
13328 (base32
13329 "038xi3a6zvrxbyyfpp64ka8pcjgsdq4fgw9cl5lpxbvmm1bzzw2q"))))
13330 (build-system python-build-system)
13331 (propagated-inputs
13332 `(("python-six" ,python-six)))
13333 (home-page "http://mattshirley.com")
13334 (synopsis "Random access to fasta subsequences")
13335 (description
13336 "This package provides procedures for efficient pythonic random access to
13337 fasta subsequences.")
13338 (license license:bsd-3)))
13339
13340 (define-public python2-pyfaidx
13341 (package-with-python2 python-pyfaidx))
13342
13343 (define-public python-cooler
13344 (package
13345 (name "python-cooler")
13346 (version "0.8.7")
13347 (source
13348 (origin
13349 (method url-fetch)
13350 (uri (pypi-uri "cooler" version))
13351 (sha256
13352 (base32
13353 "01g6gqix9ba27sappz6nfyiwabzrlf8i5fn8kwcz8ra356cq9crp"))))
13354 (build-system python-build-system)
13355 (propagated-inputs
13356 `(("python-asciitree" ,python-asciitree)
13357 ("python-biopython" ,python-biopython)
13358 ("python-click" ,python-click)
13359 ("python-cytoolz" ,python-cytoolz)
13360 ("python-dask" ,python-dask)
13361 ("python-h5py" ,python-h5py)
13362 ("python-multiprocess" ,python-multiprocess)
13363 ("python-numpy" ,python-numpy)
13364 ("python-pandas" ,python-pandas)
13365 ("python-pyfaidx" ,python-pyfaidx)
13366 ("python-pypairix" ,python-pypairix)
13367 ("python-pysam" ,python-pysam)
13368 ("python-pyyaml" ,python-pyyaml)
13369 ("python-scipy" ,python-scipy)
13370 ("python-simplejson" ,python-simplejson)))
13371 (native-inputs
13372 `(("python-mock" ,python-mock)
13373 ("python-pytest" ,python-pytest)))
13374 (home-page "https://github.com/mirnylab/cooler")
13375 (synopsis "Sparse binary format for genomic interaction matrices")
13376 (description
13377 "Cooler is a support library for a sparse, compressed, binary persistent
13378 storage format, called @code{cool}, used to store genomic interaction data,
13379 such as Hi-C contact matrices.")
13380 (license license:bsd-3)))
13381
13382 (define-public python-hicmatrix
13383 (package
13384 (name "python-hicmatrix")
13385 (version "12")
13386 (source
13387 (origin
13388 ;; Version 12 is not available on pypi.
13389 (method git-fetch)
13390 (uri (git-reference
13391 (url "https://github.com/deeptools/HiCMatrix")
13392 (commit version)))
13393 (file-name (git-file-name name version))
13394 (sha256
13395 (base32
13396 "1xhdyx16f3brgxgxybixdi64ki8nbbkq5vk4h9ahi11pzpjfn1pj"))))
13397 (build-system python-build-system)
13398 (arguments
13399 `(#:phases
13400 (modify-phases %standard-phases
13401 (add-after 'unpack 'relax-requirements
13402 (lambda _
13403 (substitute* '("requirements.txt"
13404 "setup.py")
13405 (("cooler *=+ *0.8.5")
13406 "cooler==0.8.*"))
13407 #t)))))
13408 (propagated-inputs
13409 `(("python-cooler" ,python-cooler)
13410 ("python-intervaltree" ,python-intervaltree)
13411 ("python-numpy" ,python-numpy)
13412 ("python-pandas" ,python-pandas)
13413 ("python-scipy" ,python-scipy)
13414 ("python-tables" ,python-tables)))
13415 (home-page "https://github.com/deeptools/HiCMatrix/")
13416 (synopsis "HiCMatrix class for HiCExplorer and pyGenomeTracks")
13417 (description
13418 "This helper package implements the @code{HiCMatrix} class for
13419 the HiCExplorer and pyGenomeTracks packages.")
13420 (license license:gpl3+)))
13421
13422 (define-public python-hicexplorer
13423 (package
13424 (name "python-hicexplorer")
13425 (version "2.1.4")
13426 (source
13427 (origin
13428 ;; The latest version is not available on Pypi.
13429 (method git-fetch)
13430 (uri (git-reference
13431 (url "https://github.com/deeptools/HiCExplorer")
13432 (commit version)))
13433 (file-name (git-file-name name version))
13434 (sha256
13435 (base32
13436 "0q5gpbzmrkvygqgw524q36b4nrivcmyi5v194vsx0qw7b3gcmq08"))))
13437 (build-system python-build-system)
13438 (arguments
13439 `(#:phases
13440 (modify-phases %standard-phases
13441 (add-after 'unpack 'loosen-up-requirements
13442 (lambda _
13443 (substitute* "setup.py"
13444 (("==") ">="))
13445 #t)))))
13446 (propagated-inputs
13447 `(("python-biopython" ,python-biopython)
13448 ("python-configparser" ,python-configparser)
13449 ("python-cooler" ,python-cooler)
13450 ("python-future" ,python-future)
13451 ("python-intervaltree" ,python-intervaltree)
13452 ("python-jinja2" ,python-jinja2)
13453 ("python-matplotlib" ,python-matplotlib)
13454 ("python-numpy" ,python-numpy)
13455 ("python-pandas" ,python-pandas)
13456 ("python-pybigwig" ,python-pybigwig)
13457 ("python-pysam" ,python-pysam)
13458 ("python-scipy" ,python-scipy)
13459 ("python-six" ,python-six)
13460 ("python-tables" ,python-tables)
13461 ("python-unidecode" ,python-unidecode)))
13462 (home-page "https://hicexplorer.readthedocs.io")
13463 (synopsis "Process, analyze and visualize Hi-C data")
13464 (description
13465 "HiCExplorer is a powerful and easy to use set of tools to process,
13466 normalize and visualize Hi-C data. HiCExplorer facilitates the creation of
13467 contact matrices, correction of contacts, TAD detection, A/B compartments,
13468 merging, reordering or chromosomes, conversion from different formats
13469 including cooler and detection of long-range contacts. Moreover, it allows
13470 the visualization of multiple contact matrices along with other types of data
13471 like genes, compartments, ChIP-seq coverage tracks (and in general any type of
13472 genomic scores), long range contacts and the visualization of viewpoints.")
13473 (license license:gpl3)))
13474
13475 (define-public python-pygenometracks
13476 (package
13477 (name "python-pygenometracks")
13478 (version "3.3")
13479 (source
13480 (origin
13481 (method url-fetch)
13482 (uri (pypi-uri "pyGenomeTracks" version))
13483 (sha256
13484 (base32
13485 "16laa0wnf4qn9fb9ych4w1vqhqwjss70v0y0f6wp4gwqfrlgac0f"))))
13486 (build-system python-build-system)
13487 (arguments
13488 `(#:tests? #f ; there are none
13489 #:phases
13490 (modify-phases %standard-phases
13491 (add-after 'unpack 'relax-requirements
13492 (lambda _
13493 (substitute* "setup.py"
13494 (("matplotlib ==3.1.1")
13495 "matplotlib >=3.1.1"))
13496 #t)))))
13497 (propagated-inputs
13498 `(("python-future" ,python-future)
13499 ("python-gffutils" ,python-gffutils)
13500 ("python-hicmatrix" ,python-hicmatrix)
13501 ("python-intervaltree" ,python-intervaltree)
13502 ("python-matplotlib" ,python-matplotlib)
13503 ("python-numpy" ,python-numpy)
13504 ("python-pybigwig" ,python-pybigwig)
13505 ("python-pysam" ,python-pysam)
13506 ("python-tqdm" ,python-tqdm)))
13507 (native-inputs
13508 `(("python-pytest" ,python-pytest)))
13509 (home-page "https://pygenometracks.readthedocs.io")
13510 (synopsis "Program and library to plot beautiful genome browser tracks")
13511 (description
13512 "This package aims to produce high-quality genome browser tracks that
13513 are highly customizable. Currently, it is possible to plot: bigwig, bed (many
13514 options), bedgraph, links (represented as arcs), and Hi-C matrices.
13515 pyGenomeTracks can make plots with or without Hi-C data.")
13516 (license license:gpl3+)))
13517
13518 (define-public python-hic2cool
13519 (package
13520 (name "python-hic2cool")
13521 (version "0.4.2")
13522 (source
13523 (origin
13524 (method url-fetch)
13525 (uri (pypi-uri "hic2cool" version))
13526 (sha256
13527 (base32
13528 "0xy6mhfns2lzib1kcr6419jjp6pmh0qx8z8na55lmiwn0ds8q9cl"))))
13529 (build-system python-build-system)
13530 (arguments '(#:tests? #f)) ; no tests included
13531 (propagated-inputs
13532 `(("python-cooler" ,python-cooler)))
13533 (home-page "https://github.com/4dn-dcic/hic2cool")
13534 (synopsis "Converter for .hic and .cool files")
13535 (description
13536 "This package provides a converter between @code{.hic} files (from
13537 juicer) and single-resolution or multi-resolution @code{.cool} files (for
13538 cooler). Both @code{hic} and @code{cool} files describe Hi-C contact
13539 matrices.")
13540 (license license:expat)))
13541
13542 (define-public r-pore
13543 (package
13544 (name "r-pore")
13545 (version "0.24")
13546 (source
13547 (origin
13548 (method url-fetch)
13549 (uri
13550 (string-append "mirror://sourceforge/rpore/" version
13551 "/poRe_" version ".tar.gz"))
13552 (sha256
13553 (base32 "0pih9nljbv8g4x8rkk29i7aqq681b782r5s5ynp4nw9yzqnmmksv"))))
13554 (properties `((upstream-name . "poRe")))
13555 (build-system r-build-system)
13556 (propagated-inputs
13557 `(("r-bit64" ,r-bit64)
13558 ("r-data-table" ,r-data-table)
13559 ("r-rhdf5" ,r-rhdf5)
13560 ("r-shiny" ,r-shiny)
13561 ("r-svdialogs" ,r-svdialogs)))
13562 (home-page "https://sourceforge.net/projects/rpore/")
13563 (synopsis "Visualize Nanopore sequencing data")
13564 (description
13565 "This package provides graphical user interfaces to organize and visualize Nanopore
13566 sequencing data.")
13567 ;; This is free software but the license variant is unclear:
13568 ;; <https://github.com/mw55309/poRe_docs/issues/10>.
13569 (license license:bsd-3)))
13570
13571 (define-public r-xbioc
13572 (let ((revision "1")
13573 (commit "6ff0670a37ab3036aaf1d94aa4b208310946b0b5"))
13574 (package
13575 (name "r-xbioc")
13576 (version (git-version "0.1.16" revision commit))
13577 (source (origin
13578 (method git-fetch)
13579 (uri (git-reference
13580 (url "https://github.com/renozao/xbioc")
13581 (commit commit)))
13582 (file-name (git-file-name name version))
13583 (sha256
13584 (base32
13585 "0w8bsq5myiwkfhh83nm6is5ichiyvwa1axx2szvxnzq39x6knf66"))))
13586 (build-system r-build-system)
13587 (propagated-inputs
13588 `(("r-annotationdbi" ,r-annotationdbi)
13589 ("r-assertthat" ,r-assertthat)
13590 ("r-biobase" ,r-biobase)
13591 ("r-biocmanager" ,r-biocmanager)
13592 ("r-digest" ,r-digest)
13593 ("r-pkgmaker" ,r-pkgmaker)
13594 ("r-plyr" ,r-plyr)
13595 ("r-reshape2" ,r-reshape2)
13596 ("r-stringr" ,r-stringr)))
13597 (home-page "https://github.com/renozao/xbioc/")
13598 (synopsis "Extra base functions for Bioconductor")
13599 (description "This package provides extra utility functions to perform
13600 common tasks in the analysis of omics data, leveraging and enhancing features
13601 provided by Bioconductor packages.")
13602 (license license:gpl3+))))
13603
13604 (define-public r-cssam
13605 (let ((revision "1")
13606 (commit "9ec58c982fa551af0d80b1a266890d92954833f2"))
13607 (package
13608 (name "r-cssam")
13609 (version (git-version "1.4" revision commit))
13610 (source (origin
13611 (method git-fetch)
13612 (uri (git-reference
13613 (url "https://github.com/shenorrLab/csSAM")
13614 (commit commit)))
13615 (file-name (git-file-name name version))
13616 (sha256
13617 (base32
13618 "128syf9v39gk0z3ip000qpsjbg6l1siyq6c8b0hz41dzg5achyb3"))))
13619 (build-system r-build-system)
13620 (propagated-inputs
13621 `(("r-formula" ,r-formula)
13622 ("r-ggplot2" ,r-ggplot2)
13623 ("r-pkgmaker" ,r-pkgmaker)
13624 ("r-plyr" ,r-plyr)
13625 ("r-rngtools" ,r-rngtools)
13626 ("r-scales" ,r-scales)))
13627 (home-page "https://github.com/shenorrLab/csSAM/")
13628 (synopsis "Cell type-specific statistical analysis of microarray")
13629 (description "This package implements the method csSAM that computes
13630 cell-specific differential expression from measured cell proportions using
13631 SAM.")
13632 ;; Any version
13633 (license license:lgpl2.1+))))
13634
13635 (define-public r-bseqsc
13636 (let ((revision "1")
13637 (commit "fef3f3e38dcf3df37103348b5780937982b43b98"))
13638 (package
13639 (name "r-bseqsc")
13640 (version (git-version "1.0" revision commit))
13641 (source (origin
13642 (method git-fetch)
13643 (uri (git-reference
13644 (url "https://github.com/shenorrLab/bseqsc")
13645 (commit commit)))
13646 (file-name (git-file-name name version))
13647 (sha256
13648 (base32
13649 "1prw13wa20f7wlc3gkkls66n1kxz8d28qrb8icfqdwdnnv8w5qg8"))))
13650 (build-system r-build-system)
13651 (propagated-inputs
13652 `(("r-abind" ,r-abind)
13653 ("r-annotationdbi" ,r-annotationdbi)
13654 ("r-biobase" ,r-biobase)
13655 ("r-cssam" ,r-cssam)
13656 ("r-dplyr" ,r-dplyr)
13657 ("r-e1071" ,r-e1071)
13658 ("r-edger" ,r-edger)
13659 ("r-ggplot2" ,r-ggplot2)
13660 ("r-nmf" ,r-nmf)
13661 ("r-openxlsx" ,r-openxlsx)
13662 ("r-pkgmaker" ,r-pkgmaker)
13663 ("r-plyr" ,r-plyr)
13664 ("r-preprocesscore" ,r-preprocesscore)
13665 ("r-rngtools" ,r-rngtools)
13666 ("r-scales" ,r-scales)
13667 ("r-stringr" ,r-stringr)
13668 ("r-xbioc" ,r-xbioc)))
13669 (home-page "https://github.com/shenorrLab/bseqsc")
13670 (synopsis "Deconvolution of bulk sequencing experiments using single cell data")
13671 (description "BSeq-sc is a bioinformatics analysis pipeline that
13672 leverages single-cell sequencing data to estimate cell type proportion and
13673 cell type-specific gene expression differences from RNA-seq data from bulk
13674 tissue samples. This is a companion package to the publication \"A
13675 single-cell transcriptomic map of the human and mouse pancreas reveals inter-
13676 and intra-cell population structure.\" Baron et al. Cell Systems (2016)
13677 @url{https://www.ncbi.nlm.nih.gov/pubmed/27667365}.")
13678 (license license:gpl2+))))
13679
13680 (define-public porechop
13681 ;; The recommended way to install is to clone the git repository
13682 ;; https://github.com/rrwick/Porechop#installation
13683 (let ((commit "289d5dca4a5fc327f97b3f8cecb68ecaf1014861")
13684 (revision "1"))
13685 (package
13686 (name "porechop")
13687 (version (git-version "0.2.3" revision commit))
13688 (source
13689 (origin
13690 (method git-fetch)
13691 (uri (git-reference
13692 (url "https://github.com/rrwick/Porechop")
13693 (commit commit)))
13694 (file-name (git-file-name name version))
13695 (sha256
13696 (base32 "05ps43gig0d3ia9x5lj84lb00hbsl6ba9n7y7jz927npxbr2ym23"))))
13697 (build-system python-build-system)
13698 (home-page "https://github.com/rrwick/porechop")
13699 (synopsis "Finding, trimming or splitting adapters, in Oxford Nanopore reads")
13700 (description
13701 "The porechop package is a tool for finding and removing adapters from Oxford
13702 Nanopore reads. Adapters on the ends of reads are trimmed off, and when a read
13703 has an adapter in its middle, it is treated as chimeric and chopped into
13704 separate reads. Porechop performs thorough alignments to effectively find
13705 adapters, even at low sequence identity. Porechop also supports demultiplexing
13706 of Nanopore reads that were barcoded with the Native Barcoding Kit, PCR
13707 Barcoding Kit or Rapid Barcoding Kit.")
13708 (license license:gpl3+))))
13709
13710 (define-public poretools
13711 ;; The latest release was in 2016 and the latest commit is from 2017
13712 ;; the recommended way to install is to clone the git repository
13713 ;; https://poretools.readthedocs.io/en/latest/content/installation.html
13714 (let ((commit "e426b1f09e86ac259a00c261c79df91510777407")
13715 (revision "1"))
13716 (package
13717 (name "poretools")
13718 (version (git-version "0.6.0" revision commit))
13719 (source
13720 (origin
13721 (method git-fetch)
13722 (uri (git-reference
13723 (url "https://github.com/arq5x/poretools")
13724 (commit commit)))
13725 (file-name (git-file-name name version))
13726 (sha256
13727 (base32 "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am"))))
13728 (build-system python-build-system)
13729 ;; requires python >=2.7, <3.0, and the same for python dependencies
13730 (arguments `(#:python ,python-2))
13731 (inputs
13732 `(("hdf5" ,hdf5)))
13733 (propagated-inputs
13734 `(("python-dateutil" ,python2-dateutil)
13735 ("python-h5py" ,python2-h5py)
13736 ("python-matplotlib" ,python2-matplotlib)
13737 ("python-pandas" ,python2-pandas)
13738 ("python-seaborn" ,python2-seaborn)))
13739 (home-page "https://poretools.readthedocs.io")
13740 (synopsis "Toolkit for working with nanopore sequencing data")
13741 (description
13742 "The MinION from Oxford Nanopore Technologies is a nanopore sequencer.
13743 This @code{poretools} package is a flexible toolkit for exploring datasets
13744 generated by nanopore sequencing devices for the purposes of quality control and
13745 downstream analysis. Poretools operates directly on the native FAST5, a variant
13746 of the Hierarchical Data Format (HDF5) standard.")
13747 (license license:expat))))
13748
13749 (define-public jamm
13750 (package
13751 (name "jamm")
13752 (version "1.0.7.6")
13753 (source
13754 (origin
13755 (method git-fetch)
13756 (uri (git-reference
13757 (url "https://github.com/mahmoudibrahim/JAMM")
13758 (commit (string-append "JAMMv" version))))
13759 (file-name (git-file-name name version))
13760 (sha256
13761 (base32
13762 "0bsa5mf9n9q5jz7mmacrra41l7r8rac5vgsn6wv1fb52ya58b970"))))
13763 (build-system gnu-build-system)
13764 (arguments
13765 `(#:tests? #f ; there are none
13766 #:phases
13767 (modify-phases %standard-phases
13768 (delete 'configure)
13769 (delete 'build)
13770 (replace 'install
13771 (lambda* (#:key inputs outputs #:allow-other-keys)
13772 (let* ((out (assoc-ref outputs "out"))
13773 (libexec (string-append out "/libexec/jamm"))
13774 (bin (string-append out "/bin")))
13775 (substitute* '("JAMM.sh"
13776 "SignalGenerator.sh")
13777 (("^sPath=.*")
13778 (string-append "sPath=\"" libexec "\"\n")))
13779 (for-each (lambda (file)
13780 (install-file file libexec))
13781 (list "bincalculator.r"
13782 "peakfinder.r"
13783 "peakhelper.r"
13784 "signalmaker.r"
13785 "xcorr.r"
13786 "xcorrhelper.r"
13787 ;; Perl scripts
13788 "peakfilter.pl"
13789 "readshifter.pl"))
13790
13791 (for-each
13792 (lambda (script)
13793 (chmod script #o555)
13794 (install-file script bin)
13795 (wrap-program (string-append bin "/" script)
13796 `("PATH" ":" prefix
13797 (,(string-append (assoc-ref inputs "coreutils") "/bin")
13798 ,(string-append (assoc-ref inputs "gawk") "/bin")
13799 ,(string-append (assoc-ref inputs "perl") "/bin")
13800 ,(string-append (assoc-ref inputs "r-minimal") "/bin")))
13801 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))
13802 `("R_LIBS_SITE" ":" prefix (,(getenv "R_LIBS_SITE")))))
13803 (list "JAMM.sh" "SignalGenerator.sh")))
13804 #t)))))
13805 (inputs
13806 `(("bash" ,bash)
13807 ("coreutils" ,coreutils)
13808 ("gawk" ,gawk)
13809 ("perl" ,perl)
13810 ("r-minimal" ,r-minimal)
13811 ;;("r-parallel" ,r-parallel)
13812 ("r-signal" ,r-signal)
13813 ("r-mclust" ,r-mclust)))
13814 (home-page "https://github.com/mahmoudibrahim/JAMM")
13815 (synopsis "Peak finder for NGS datasets")
13816 (description
13817 "JAMM is a peak finder for next generation sequencing datasets (ChIP-Seq,
13818 ATAC-Seq, DNase-Seq, etc.) that can integrate replicates and assign peak
13819 boundaries accurately. JAMM is applicable to both broad and narrow
13820 datasets.")
13821 (license license:gpl3+)))
13822
13823 (define-public ngless
13824 (package
13825 (name "ngless")
13826 (version "1.1.0")
13827 (source
13828 (origin
13829 (method git-fetch)
13830 (uri (git-reference
13831 (url "https://gitlab.com/ngless/ngless.git")
13832 (commit (string-append "v" version))))
13833 (file-name (git-file-name name version))
13834 (sha256
13835 (base32
13836 "1wim8wpqyff080dfcazynrmjwqas38m24m0v350w245mmhrapdma"))))
13837 (build-system haskell-build-system)
13838 (arguments
13839 `(#:haddock? #f ; The haddock phase fails with: NGLess/CmdArgs.hs:20:1:
13840 ; error: parse error on input import
13841 ; import Options.Applicative
13842 #:phases
13843 (modify-phases %standard-phases
13844 (add-after 'unpack 'create-Versions.hs
13845 (lambda _
13846 (substitute* "Makefile"
13847 (("BWA_VERSION = .*")
13848 (string-append "BWA_VERSION = "
13849 ,(package-version bwa) "\n"))
13850 (("SAM_VERSION = .*")
13851 (string-append "SAM_VERSION = "
13852 ,(package-version samtools) "\n"))
13853 (("PRODIGAL_VERSION = .*")
13854 (string-append "PRODIGAL_VERSION = "
13855 ,(package-version prodigal) "\n"))
13856 (("MINIMAP2_VERSION = .*")
13857 (string-append "MINIMAP2_VERSION = "
13858 ,(package-version minimap2) "\n")))
13859 (invoke "make" "NGLess/Dependencies/Versions.hs")
13860 #t))
13861 (add-after 'create-Versions.hs 'create-cabal-file
13862 (lambda _ (invoke "hpack") #t))
13863 ;; These tools are expected to be installed alongside ngless.
13864 (add-after 'install 'link-tools
13865 (lambda* (#:key inputs outputs #:allow-other-keys)
13866 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
13867 (symlink (string-append (assoc-ref inputs "prodigal")
13868 "/bin/prodigal")
13869 (string-append bin "ngless-" ,version "-prodigal"))
13870 (symlink (string-append (assoc-ref inputs "minimap2")
13871 "/bin/minimap2")
13872 (string-append bin "ngless-" ,version "-minimap2"))
13873 (symlink (string-append (assoc-ref inputs "samtools")
13874 "/bin/samtools")
13875 (string-append bin "ngless-" ,version "-samtools"))
13876 (symlink (string-append (assoc-ref inputs "bwa")
13877 "/bin/bwa")
13878 (string-append bin "ngless-" ,version "-bwa"))
13879 #t))))))
13880 (inputs
13881 `(("prodigal" ,prodigal)
13882 ("bwa" ,bwa)
13883 ("samtools" ,samtools)
13884 ("minimap2" ,minimap2)
13885 ("ghc-aeson" ,ghc-aeson)
13886 ("ghc-ansi-terminal" ,ghc-ansi-terminal)
13887 ("ghc-async" ,ghc-async)
13888 ("ghc-atomic-write" ,ghc-atomic-write)
13889 ("ghc-bytestring-lexing" ,ghc-bytestring-lexing)
13890 ("ghc-conduit" ,ghc-conduit)
13891 ("ghc-conduit-algorithms" ,ghc-conduit-algorithms)
13892 ("ghc-conduit-extra" ,ghc-conduit-extra)
13893 ("ghc-configurator" ,ghc-configurator)
13894 ("ghc-convertible" ,ghc-convertible)
13895 ("ghc-data-default" ,ghc-data-default)
13896 ("ghc-diagrams-core" ,ghc-diagrams-core)
13897 ("ghc-diagrams-lib" ,ghc-diagrams-lib)
13898 ("ghc-diagrams-svg" ,ghc-diagrams-svg)
13899 ("ghc-double-conversion" ,ghc-double-conversion)
13900 ("ghc-edit-distance" ,ghc-edit-distance)
13901 ("ghc-either" ,ghc-either)
13902 ("ghc-errors" ,ghc-errors)
13903 ("ghc-extra" ,ghc-extra)
13904 ("ghc-filemanip" ,ghc-filemanip)
13905 ("ghc-file-embed" ,ghc-file-embed)
13906 ("ghc-gitrev" ,ghc-gitrev)
13907 ("ghc-hashtables" ,ghc-hashtables)
13908 ("ghc-http-conduit" ,ghc-http-conduit)
13909 ("ghc-inline-c" ,ghc-inline-c)
13910 ("ghc-inline-c-cpp" ,ghc-inline-c-cpp)
13911 ("ghc-intervalmap" ,ghc-intervalmap)
13912 ("ghc-missingh" ,ghc-missingh)
13913 ("ghc-optparse-applicative" ,ghc-optparse-applicative)
13914 ("ghc-regex" ,ghc-regex)
13915 ("ghc-safe" ,ghc-safe)
13916 ("ghc-safeio" ,ghc-safeio)
13917 ("ghc-strict" ,ghc-strict)
13918 ("ghc-tar" ,ghc-tar)
13919 ("ghc-tar-conduit" ,ghc-tar-conduit)
13920 ("ghc-unliftio" ,ghc-unliftio)
13921 ("ghc-unliftio-core" ,ghc-unliftio-core)
13922 ("ghc-vector" ,ghc-vector)
13923 ("ghc-yaml" ,ghc-yaml)
13924 ("ghc-zlib" ,ghc-zlib)))
13925 (propagated-inputs
13926 `(("r-r6" ,r-r6)
13927 ("r-hdf5r" ,r-hdf5r)
13928 ("r-iterators" ,r-iterators)
13929 ("r-itertools" ,r-itertools)
13930 ("r-matrix" ,r-matrix)))
13931 (native-inputs
13932 `(("ghc-hpack" ,ghc-hpack)
13933 ("ghc-quickcheck" ,ghc-quickcheck)
13934 ("ghc-test-framework" ,ghc-test-framework)
13935 ("ghc-test-framework-hunit",ghc-test-framework-hunit)
13936 ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)
13937 ("ghc-test-framework-th" ,ghc-test-framework-th)))
13938 (home-page "https://gitlab.com/ngless/ngless")
13939 (synopsis "DSL for processing next-generation sequencing data")
13940 (description "Ngless is a domain-specific language for
13941 @dfn{next-generation sequencing} (NGS) data processing.")
13942 (license license:expat)))
13943
13944 (define-public filtlong
13945 ;; The recommended way to install is to clone the git repository
13946 ;; https://github.com/rrwick/Filtlong#installation
13947 ;; and the lastest release is more than nine months old
13948 (let ((commit "d1bb46dfe8bc7efe6257b5ce222c04bfe8aedaab")
13949 (revision "1"))
13950 (package
13951 (name "filtlong")
13952 (version (git-version "0.2.0" revision commit))
13953 (source
13954 (origin
13955 (method git-fetch)
13956 (uri (git-reference
13957 (url "https://github.com/rrwick/Filtlong")
13958 (commit commit)))
13959 (file-name (git-file-name name version))
13960 (sha256
13961 (base32 "1xr92r820x8qlkcr3b57iw223yq8vjgyi42jr79w2xgw47qzr575"))))
13962 (build-system gnu-build-system)
13963 (arguments
13964 `(#:tests? #f ; no check target
13965 #:phases
13966 (modify-phases %standard-phases
13967 (delete 'configure)
13968 (replace 'install
13969 (lambda* (#:key outputs #:allow-other-keys)
13970 (let* ((out (assoc-ref outputs "out"))
13971 (bin (string-append out "/bin"))
13972 (scripts (string-append out "/share/filtlong/scripts")))
13973 (install-file "bin/filtlong" bin)
13974 (install-file "scripts/histogram.py" scripts)
13975 (install-file "scripts/read_info_histograms.sh" scripts))
13976 #t))
13977 (add-after 'install 'wrap-program
13978 (lambda* (#:key inputs outputs #:allow-other-keys)
13979 (let* ((out (assoc-ref outputs "out"))
13980 (path (getenv "PYTHONPATH")))
13981 (wrap-program (string-append out
13982 "/share/filtlong/scripts/histogram.py")
13983 `("PYTHONPATH" ":" prefix (,path))))
13984 #t))
13985 (add-before 'check 'patch-tests
13986 (lambda _
13987 (substitute* "scripts/read_info_histograms.sh"
13988 (("awk") (which "gawk")))
13989 #t)))))
13990 (inputs
13991 `(("gawk" ,gawk) ;for read_info_histograms.sh
13992 ("python" ,python-2) ;required for histogram.py
13993 ("zlib" ,zlib)))
13994 (home-page "https://github.com/rrwick/Filtlong/")
13995 (synopsis "Tool for quality filtering of Nanopore and PacBio data")
13996 (description
13997 "The Filtlong package is a tool for filtering long reads by quality.
13998 It can take a set of long reads and produce a smaller, better subset. It uses
13999 both read length (longer is better) and read identity (higher is better) when
14000 choosing which reads pass the filter.")
14001 (license (list license:gpl3 ;filtlong
14002 license:asl2.0))))) ;histogram.py
14003
14004 (define-public nanopolish
14005 ;; The recommended way to install is to clone the git repository
14006 ;; <https://github.com/jts/nanopolish#installing-a-particular-release>.
14007 ;; Also, the differences between release and current version seem to be
14008 ;; significant.
14009 (let ((commit "6331dc4f15b9dfabb954ba3fae9d76b6c3ca6377")
14010 (revision "1"))
14011 (package
14012 (name "nanopolish")
14013 (version (git-version "0.11.1" revision commit))
14014 (source
14015 (origin
14016 (method git-fetch)
14017 (uri (git-reference
14018 (url "https://github.com/jts/nanopolish")
14019 (commit commit)
14020 (recursive? #t)))
14021 (file-name (git-file-name name version))
14022 (sha256
14023 (base32 "15ikl3d37y49pwd7vx36xksgsqajhf24q7qqsnpl15dqqyy5qgbc"))
14024 (modules '((guix build utils)))
14025 (snippet
14026 '(begin
14027 (delete-file-recursively "htslib")
14028 #t))))
14029 (build-system gnu-build-system)
14030 (arguments
14031 `(#:make-flags
14032 `("HDF5=noinstall" "EIGEN=noinstall" "HTS=noinstall" "CC=gcc")
14033 #:tests? #f ; no check target
14034 #:phases
14035 (modify-phases %standard-phases
14036 (add-after 'unpack 'find-eigen
14037 (lambda* (#:key inputs #:allow-other-keys)
14038 (setenv "CPATH"
14039 (string-append (assoc-ref inputs "eigen")
14040 "/include/eigen3:"
14041 (or (getenv "CPATH") "")))
14042 #t))
14043 (delete 'configure)
14044 (replace 'install
14045 (lambda* (#:key outputs #:allow-other-keys)
14046 (let* ((out (assoc-ref outputs "out"))
14047 (bin (string-append out "/bin"))
14048 (scripts (string-append out "/share/nanopolish/scripts")))
14049
14050 (install-file "nanopolish" bin)
14051 (for-each (lambda (file) (install-file file scripts))
14052 (find-files "scripts" ".*"))
14053 #t)))
14054 (add-after 'install 'wrap-programs
14055 (lambda* (#:key outputs #:allow-other-keys)
14056 (for-each (lambda (file)
14057 (wrap-program file `("PYTHONPATH" ":" prefix (,path))))
14058 (find-files "/share/nanopolish/scripts" "\\.py"))
14059 (for-each (lambda (file)
14060 (wrap-program file `("PERL5LIB" ":" prefix (,path))))
14061 (find-files "/share/nanopolish/scripts" "\\.pl"))
14062 #t)))))
14063 (inputs
14064 `(("eigen" ,eigen)
14065 ("hdf5" ,hdf5)
14066 ("htslib" ,htslib)
14067 ("perl" ,perl)
14068 ("python" ,python-wrapper)
14069 ("python-biopython" ,python-biopython)
14070 ("python-numpy" ,python-numpy)
14071 ("python-pysam" ,python-pysam)
14072 ("python-scikit-learn" , python-scikit-learn)
14073 ("python-scipy" ,python-scipy)
14074 ("zlib" ,zlib)))
14075 (home-page "https://github.com/jts/nanopolish")
14076 (synopsis "Signal-level analysis of Oxford Nanopore sequencing data")
14077 (description
14078 "This package analyses the Oxford Nanopore sequencing data at signal-level.
14079 Nanopolish can calculate an improved consensus sequence for a draft genome
14080 assembly, detect base modifications, call SNPs (Single nucleotide
14081 polymorphisms) and indels with respect to a reference genome and more.")
14082 (license license:expat))))
14083
14084 (define-public cnvkit
14085 (package
14086 (name "cnvkit")
14087 (version "0.9.5")
14088 (source
14089 (origin
14090 (method git-fetch)
14091 (uri (git-reference
14092 (url "https://github.com/etal/cnvkit")
14093 (commit (string-append "v" version))))
14094 (file-name (git-file-name name version))
14095 (sha256
14096 (base32 "0g2f78k68yglmj4fsfmgs8idqv3di9aj53fg0ld0hqljg8chhh82"))))
14097 (build-system python-build-system)
14098 (propagated-inputs
14099 `(("python-biopython" ,python-biopython)
14100 ("python-future" ,python-future)
14101 ("python-matplotlib" ,python-matplotlib)
14102 ("python-numpy" ,python-numpy)
14103 ("python-reportlab" ,python-reportlab)
14104 ("python-pandas" ,python-pandas)
14105 ("python-pysam" ,python-pysam)
14106 ("python-pyfaidx" ,python-pyfaidx)
14107 ("python-scipy" ,python-scipy)
14108 ;; R packages
14109 ("r-dnacopy" ,r-dnacopy)))
14110 (home-page "https://cnvkit.readthedocs.org/")
14111 (synopsis "Copy number variant detection from targeted DNA sequencing")
14112 (description
14113 "CNVkit is a Python library and command-line software toolkit to infer
14114 and visualize copy number from high-throughput DNA sequencing data. It is
14115 designed for use with hybrid capture, including both whole-exome and custom
14116 target panels, and short-read sequencing platforms such as Illumina and Ion
14117 Torrent.")
14118 (license license:asl2.0)))
14119
14120 (define-public python-pyfit-sne
14121 (package
14122 (name "python-pyfit-sne")
14123 (version "1.0.1")
14124 (source
14125 (origin
14126 (method git-fetch)
14127 (uri (git-reference
14128 (url "https://github.com/KlugerLab/pyFIt-SNE")
14129 (commit version)))
14130 (file-name (git-file-name name version))
14131 (sha256
14132 (base32 "13wh3qkzs56azmmgnxib6xfr29g7xh09sxylzjpni5j0pp0rc5qw"))))
14133 (build-system python-build-system)
14134 (propagated-inputs
14135 `(("python-numpy" ,python-numpy)))
14136 (inputs
14137 `(("fftw" ,fftw)))
14138 (native-inputs
14139 `(("python-cython" ,python-cython)))
14140 (home-page "https://github.com/KlugerLab/pyFIt-SNE")
14141 (synopsis "FFT-accelerated Interpolation-based t-SNE")
14142 (description
14143 "t-Stochastic Neighborhood Embedding (t-SNE) is a highly successful
14144 method for dimensionality reduction and visualization of high dimensional
14145 datasets. A popular implementation of t-SNE uses the Barnes-Hut algorithm to
14146 approximate the gradient at each iteration of gradient descent. This package
14147 is a Cython wrapper for FIt-SNE.")
14148 (license license:bsd-4)))
14149
14150 (define-public bbmap
14151 (package
14152 (name "bbmap")
14153 (version "35.82")
14154 (source (origin
14155 (method url-fetch)
14156 (uri (string-append
14157 "mirror://sourceforge/bbmap/BBMap_" version ".tar.gz"))
14158 (sha256
14159 (base32
14160 "1q4rfhxcb6z3gm8zg2davjz98w22lkf4hm9ikxz9kdl93pil3wkd"))))
14161 (build-system ant-build-system)
14162 (arguments
14163 `(#:build-target "dist"
14164 #:tests? #f ; there are none
14165 #:make-flags
14166 (list (string-append "-Dmpijar="
14167 (assoc-ref %build-inputs "java-openmpi")
14168 "/lib/mpi.jar"))
14169 #:modules ((guix build ant-build-system)
14170 (guix build utils)
14171 (guix build java-utils))
14172 #:phases
14173 (modify-phases %standard-phases
14174 (add-after 'build 'build-jni-library
14175 (lambda _
14176 (with-directory-excursion "jni"
14177 (invoke "make" "-f" "makefile.linux"))))
14178 ;; There is no install target
14179 (replace 'install (install-jars "dist"))
14180 (add-after 'install 'install-scripts-and-documentation
14181 (lambda* (#:key outputs #:allow-other-keys)
14182 (substitute* "calcmem.sh"
14183 (("\\| awk ") (string-append "| " (which "awk") " ")))
14184 (let* ((scripts (find-files "." "\\.sh$"))
14185 (out (assoc-ref outputs "out"))
14186 (bin (string-append out "/bin"))
14187 (doc (string-append out "/share/doc/bbmap"))
14188 (jni (string-append out "/lib/jni")))
14189 (substitute* scripts
14190 (("\\$DIR\"\"docs") doc)
14191 (("^CP=.*")
14192 (string-append "CP=" out "/share/java/BBTools.jar\n"))
14193 (("^NATIVELIBDIR.*")
14194 (string-append "NATIVELIBDIR=" jni "\n"))
14195 (("CMD=\"java")
14196 (string-append "CMD=\"" (which "java"))))
14197 (for-each (lambda (script) (install-file script bin)) scripts)
14198
14199 ;; Install JNI library
14200 (install-file "jni/libbbtoolsjni.so" jni)
14201
14202 ;; Install documentation
14203 (install-file "docs/readme.txt" doc)
14204 (copy-recursively "docs/guides" doc))
14205 #t)))
14206 #:jdk ,openjdk11))
14207 (inputs
14208 `(("gawk" ,gawk)
14209 ("java-eclipse-jdt-core" ,java-eclipse-jdt-core)
14210 ("java-eclipse-jdt-compiler-apt" ,java-eclipse-jdt-compiler-apt)
14211 ("java-openmpi" ,java-openmpi)))
14212 (home-page "https://sourceforge.net/projects/bbmap/")
14213 (synopsis "Aligner and other tools for short sequencing reads")
14214 (description
14215 "This package provides bioinformatic tools to align, deduplicate,
14216 reformat, filter and normalize DNA and RNA-seq data. It includes the
14217 following tools: BBMap, a short read aligner for DNA and RNA-seq data; BBNorm,
14218 a kmer-based error-correction and normalization tool; Dedupe, a tool to
14219 simplify assemblies by removing duplicate or contained subsequences that share
14220 a target percent identity; Reformat, to convert reads between
14221 fasta/fastq/scarf/fasta+qual/sam, interleaved/paired, and ASCII-33/64, at over
14222 500 MB/s; and BBDuk, a tool to filter, trim, or mask reads with kmer matches
14223 to an artifact/contaminant file.")
14224 (license license:bsd-3)))
14225
14226 (define-public velvet
14227 (package
14228 (name "velvet")
14229 (version "1.2.10")
14230 (source (origin
14231 (method url-fetch)
14232 (uri (string-append "https://www.ebi.ac.uk/~zerbino/velvet/"
14233 "velvet_" version ".tgz"))
14234 (sha256
14235 (base32
14236 "0h3njwy66p6bx14r3ar1byb0ccaxmxka4c65rn4iybyiqa4d8kc8"))
14237 ;; Delete bundled libraries
14238 (modules '((guix build utils)))
14239 (snippet
14240 '(begin
14241 (delete-file "Manual.pdf")
14242 (delete-file-recursively "third-party")
14243 #t))))
14244 (build-system gnu-build-system)
14245 (arguments
14246 `(#:make-flags '("OPENMP=t")
14247 #:test-target "test"
14248 #:phases
14249 (modify-phases %standard-phases
14250 (delete 'configure)
14251 (add-after 'unpack 'fix-zlib-include
14252 (lambda _
14253 (substitute* "src/binarySequences.c"
14254 (("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))
14255 #t))
14256 (replace 'install
14257 (lambda* (#:key outputs #:allow-other-keys)
14258 (let* ((out (assoc-ref outputs "out"))
14259 (bin (string-append out "/bin"))
14260 (doc (string-append out "/share/doc/velvet")))
14261 (mkdir-p bin)
14262 (mkdir-p doc)
14263 (install-file "velveth" bin)
14264 (install-file "velvetg" bin)
14265 (install-file "Manual.pdf" doc)
14266 (install-file "Columbus_manual.pdf" doc)
14267 #t))))))
14268 (inputs
14269 `(("openmpi" ,openmpi)
14270 ("zlib" ,zlib)))
14271 (native-inputs
14272 `(("texlive" ,(texlive-union (list texlive-latex-graphics
14273 texlive-latex-hyperref)))))
14274 (home-page "https://www.ebi.ac.uk/~zerbino/velvet/")
14275 (synopsis "Nucleic acid sequence assembler for very short reads")
14276 (description
14277 "Velvet is a de novo genomic assembler specially designed for short read
14278 sequencing technologies, such as Solexa or 454. Velvet currently takes in
14279 short read sequences, removes errors then produces high quality unique
14280 contigs. It then uses paired read information, if available, to retrieve the
14281 repeated areas between contigs.")
14282 (license license:gpl2+)))
14283
14284 (define-public python-velocyto
14285 (package
14286 (name "python-velocyto")
14287 (version "0.17.17")
14288 (source
14289 (origin
14290 (method url-fetch)
14291 (uri (pypi-uri "velocyto" version))
14292 (sha256
14293 (base32
14294 "0fgygyzqgrq32dv6a00biq1p1cwi6kbl5iqblxq1kklj6b2mzmhs"))))
14295 (build-system python-build-system)
14296 (native-inputs
14297 `(("python-joblib" ,python-joblib)))
14298 (propagated-inputs
14299 `(("python-click" ,python-click)
14300 ("python-cython" ,python-cython)
14301 ("python-h5py" ,python-h5py)
14302 ("python-loompy" ,python-loompy)
14303 ("python-matplotlib" ,python-matplotlib)
14304 ("python-numba" ,python-numba)
14305 ("python-numpy" ,python-numpy)
14306 ("python-pandas" ,python-pandas)
14307 ("python-pysam" ,python-pysam)
14308 ("python-scikit-learn" ,python-scikit-learn)
14309 ("python-scipy" ,python-scipy)))
14310 (home-page "https://github.com/velocyto-team/velocyto.py")
14311 (synopsis "RNA velocity analysis for single cell RNA-seq data")
14312 (description
14313 "Velocyto is a library for the analysis of RNA velocity. Velocyto
14314 includes a command line tool and an analysis pipeline.")
14315 (license license:bsd-2)))
14316
14317 (define-public arriba
14318 (package
14319 (name "arriba")
14320 (version "1.0.1")
14321 (source
14322 (origin
14323 (method url-fetch)
14324 (uri (string-append "https://github.com/suhrig/arriba/releases/"
14325 "download/v" version "/arriba_v" version ".tar.gz"))
14326 (sha256
14327 (base32
14328 "0jx9656ry766vb8z08m1c3im87b0c82qpnjby9wz4kcz8vn87dx2"))))
14329 (build-system gnu-build-system)
14330 (arguments
14331 `(#:tests? #f ; there are none
14332 #:phases
14333 (modify-phases %standard-phases
14334 (replace 'configure
14335 (lambda* (#:key inputs #:allow-other-keys)
14336 (let ((htslib (assoc-ref inputs "htslib")))
14337 (substitute* "Makefile"
14338 (("-I\\$\\(HTSLIB\\)/htslib")
14339 (string-append "-I" htslib "/include/htslib"))
14340 ((" \\$\\(HTSLIB\\)/libhts.a")
14341 (string-append " " htslib "/lib/libhts.so"))))
14342 (substitute* "run_arriba.sh"
14343 (("^STAR ") (string-append (which "STAR") " "))
14344 (("samtools --version-only")
14345 (string-append (which "samtools") " --version-only"))
14346 (("samtools index")
14347 (string-append (which "samtools") " index"))
14348 (("samtools sort")
14349 (string-append (which "samtools") " sort")))
14350 #t))
14351 (replace 'install
14352 (lambda* (#:key outputs #:allow-other-keys)
14353 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
14354 (install-file "arriba" bin)
14355 (install-file "run_arriba.sh" bin)
14356 (install-file "draw_fusions.R" bin)
14357 (wrap-program (string-append bin "/draw_fusions.R")
14358 `("R_LIBS_SITE" ":" prefix (,(getenv "R_LIBS_SITE")))))
14359 #t)))))
14360 (inputs
14361 `(("htslib" ,htslib)
14362 ("r-minimal" ,r-minimal)
14363 ("r-circlize" ,r-circlize)
14364 ("r-genomicalignments" ,r-genomicalignments)
14365 ("r-genomicranges" ,r-genomicranges)
14366 ("samtools" ,samtools)
14367 ("star" ,star)
14368 ("zlib" ,zlib)))
14369 (home-page "https://github.com/suhrig/arriba")
14370 (synopsis "Gene fusion detection from RNA-Seq data ")
14371 (description
14372 "Arriba is a command-line tool for the detection of gene fusions from
14373 RNA-Seq data. It was developed for the use in a clinical research setting.
14374 Therefore, short runtimes and high sensitivity were important design criteria.
14375 It is based on the fast STAR aligner and the post-alignment runtime is
14376 typically just around two minutes. In contrast to many other fusion detection
14377 tools which build on STAR, Arriba does not require to reduce the
14378 @code{alignIntronMax} parameter of STAR to detect small deletions.")
14379 ;; All code is under the Expat license with the exception of
14380 ;; "draw_fusions.R", which is under GPLv3.
14381 (license (list license:expat license:gpl3))))
14382
14383 (define-public adapterremoval
14384 (package
14385 (name "adapterremoval")
14386 (version "2.3.0")
14387 (source
14388 (origin
14389 (method git-fetch)
14390 (uri (git-reference
14391 (url "https://github.com/MikkelSchubert/adapterremoval")
14392 (commit (string-append "v" version))))
14393 (file-name (git-file-name name version))
14394 (sha256
14395 (base32
14396 "1nf3ki5pfzalhrx2fr1y6pfqfi133yj2m7q4fj9irf5fb94bapwr"))))
14397 (build-system gnu-build-system)
14398 (arguments
14399 `(#:make-flags (list "COLOR_BUILD=no"
14400 (string-append "PREFIX="
14401 (assoc-ref %outputs "out")))
14402 #:test-target "test"
14403 #:phases
14404 (modify-phases %standard-phases
14405 (delete 'configure))))
14406 (inputs
14407 `(("zlib" ,zlib)))
14408 (home-page "https://adapterremoval.readthedocs.io/")
14409 (synopsis "Rapid sequence adapter trimming, identification, and read merging")
14410 (description
14411 "This program searches for and removes remnant adapter sequences from
14412 @dfn{High-Throughput Sequencing} (HTS) data and (optionally) trims low quality
14413 bases from the 3' end of reads following adapter removal. AdapterRemoval can
14414 analyze both single end and paired end data, and can be used to merge
14415 overlapping paired-ended reads into (longer) consensus sequences.
14416 Additionally, the AdapterRemoval may be used to recover a consensus adapter
14417 sequence for paired-ended data, for which this information is not available.")
14418 (license license:gpl3+)))
14419
14420 (define-public pplacer
14421 (let ((commit "807f6f3"))
14422 (package
14423 (name "pplacer")
14424 ;; The commit should be updated with each version change.
14425 (version "1.1.alpha19")
14426 (source
14427 (origin
14428 (method git-fetch)
14429 (uri (git-reference
14430 (url "https://github.com/matsen/pplacer")
14431 (commit (string-append "v" version))))
14432 (file-name (git-file-name name version))
14433 (sha256
14434 (base32 "11ppbbbx20p2g9wj3ff64dhnarb12q79v7qh4rk0gj6lkbz4n7cn"))))
14435 (build-system ocaml-build-system)
14436 (arguments
14437 `(#:modules ((guix build ocaml-build-system)
14438 (guix build utils)
14439 (ice-9 ftw))
14440 #:phases
14441 (modify-phases %standard-phases
14442 (delete 'configure)
14443 (add-after 'unpack 'fix-build-with-latest-ocaml
14444 (lambda _
14445 (substitute* "myocamlbuild.ml"
14446 (("dep \\[\"c_pam\"\\]" m)
14447 (string-append "flag [\"ocaml\"; \"compile\"] (A \"-unsafe-string\");\n"
14448 m))
14449 (("let run_and_read" m)
14450 (string-append "
14451 let split s ch =
14452 let x = ref [] in
14453 let rec go s =
14454 let pos = String.index s ch in
14455 x := (String.before s pos)::!x;
14456 go (String.after s (pos + 1))
14457 in
14458 try go s
14459 with Not_found -> !x
14460 let split_nl s = split s '\\n'
14461 let before_space s =
14462 try String.before s (String.index s ' ')
14463 with Not_found -> s
14464
14465 " m))
14466 (("run_and_read \"ocamlfind list \\| cut -d' ' -f1\"" m)
14467 (string-append "List.map before_space (split_nl & " m ")"))
14468 ((" blank_sep_strings &") "")
14469 ((" Lexing.from_string &") ""))
14470 #t))
14471 (add-after 'unpack 'replace-bundled-cddlib
14472 (lambda* (#:key inputs #:allow-other-keys)
14473 (let* ((cddlib-src (assoc-ref inputs "cddlib-src"))
14474 (local-dir "cddlib_guix"))
14475 (mkdir local-dir)
14476 (with-directory-excursion local-dir
14477 (invoke "tar" "xvf" cddlib-src))
14478 (let ((cddlib-src-folder
14479 (string-append local-dir "/"
14480 (list-ref (scandir local-dir) 2)
14481 "/lib-src")))
14482 (for-each make-file-writable (find-files "cdd_src" ".*"))
14483 (for-each
14484 (lambda (file)
14485 (copy-file file
14486 (string-append "cdd_src/" (basename file))))
14487 (find-files cddlib-src-folder ".*[ch]$")))
14488 #t)))
14489 (add-after 'unpack 'fix-makefile
14490 (lambda _
14491 ;; Remove system calls to 'git'.
14492 (substitute* "Makefile"
14493 (("^DESCRIPT:=pplacer-.*")
14494 (string-append
14495 "DESCRIPT:=pplacer-$(shell uname)-v" ,version "\n")))
14496 (substitute* "myocamlbuild.ml"
14497 (("git describe --tags --long .*\\\" with")
14498 (string-append
14499 "echo -n v" ,version "-" ,commit "\" with")))
14500 #t))
14501 (replace 'install
14502 (lambda* (#:key outputs #:allow-other-keys)
14503 (let* ((out (assoc-ref outputs "out"))
14504 (bin (string-append out "/bin")))
14505 (copy-recursively "bin" bin))
14506 #t)))
14507 #:ocaml ,ocaml-4.07
14508 #:findlib ,ocaml4.07-findlib))
14509 (inputs
14510 `(("zlib" ,zlib "static")
14511 ("gsl" ,gsl)
14512 ("ocaml-ounit" ,(package-with-ocaml4.07 ocaml-ounit))
14513 ("ocaml-batteries" ,(package-with-ocaml4.07 ocaml-batteries))
14514 ("ocaml-camlzip" ,(package-with-ocaml4.07 camlzip))
14515 ("ocaml-csv" ,(package-with-ocaml4.07 ocaml-csv))
14516 ("ocaml-sqlite3" ,ocaml4.07-sqlite3)
14517 ("ocaml-xmlm" ,(package-with-ocaml4.07 ocaml-xmlm))
14518 ("ocaml-mcl" ,(package-with-ocaml4.07 ocaml-mcl))
14519 ("ocaml-gsl" ,ocaml4.07-gsl-1)))
14520 (native-inputs
14521 `(("cddlib-src" ,(package-source cddlib))
14522 ("ocamlbuild" ,(package-with-ocaml4.07 ocamlbuild))
14523 ("pkg-config" ,pkg-config)))
14524 (propagated-inputs
14525 `(("pplacer-scripts" ,pplacer-scripts)))
14526 (synopsis "Phylogenetic placement of biological sequences")
14527 (description
14528 "Pplacer places query sequences on a fixed reference phylogenetic tree
14529 to maximize phylogenetic likelihood or posterior probability according to a
14530 reference alignment. Pplacer is designed to be fast, to give useful
14531 information about uncertainty, and to offer advanced visualization and
14532 downstream analysis.")
14533 (home-page "https://matsen.fhcrc.org/pplacer/")
14534 (license license:gpl3))))
14535
14536 ;; This package is installed alongside 'pplacer'. It is a separate package so
14537 ;; that it can use the python-build-system for the scripts that are
14538 ;; distributed alongside the main OCaml binaries.
14539 (define pplacer-scripts
14540 (package
14541 (inherit pplacer)
14542 (name "pplacer-scripts")
14543 (build-system python-build-system)
14544 (arguments
14545 `(#:python ,python-2
14546 #:phases
14547 (modify-phases %standard-phases
14548 (add-after 'unpack 'enter-scripts-dir
14549 (lambda _ (chdir "scripts") #t))
14550 (replace 'check
14551 (lambda _ (invoke "python" "-m" "unittest" "discover" "-v") #t))
14552 (add-after 'install 'wrap-executables
14553 (lambda* (#:key inputs outputs #:allow-other-keys)
14554 (let* ((out (assoc-ref outputs "out"))
14555 (bin (string-append out "/bin")))
14556 (let ((path (string-append
14557 (assoc-ref inputs "hmmer") "/bin:"
14558 (assoc-ref inputs "infernal") "/bin")))
14559 (display path)
14560 (wrap-program (string-append bin "/refpkg_align.py")
14561 `("PATH" ":" prefix (,path))))
14562 (let ((path (string-append
14563 (assoc-ref inputs "hmmer") "/bin")))
14564 (wrap-program (string-append bin "/hrefpkg_query.py")
14565 `("PATH" ":" prefix (,path)))))
14566 #t)))))
14567 (inputs
14568 `(("infernal" ,infernal)
14569 ("hmmer" ,hmmer)))
14570 (propagated-inputs
14571 `(("python-biopython" ,python2-biopython)
14572 ("taxtastic" ,taxtastic)))
14573 (synopsis "Pplacer Python scripts")))
14574
14575 (define-public python2-checkm-genome
14576 (package
14577 (name "python2-checkm-genome")
14578 (version "1.0.13")
14579 (source
14580 (origin
14581 (method url-fetch)
14582 (uri (pypi-uri "checkm-genome" version))
14583 (sha256
14584 (base32
14585 "0bm8gpxjmzxsxxl8lzwqhgx8g1dlnmp6znz7wv3hgb0gdjbf9dzz"))))
14586 (build-system python-build-system)
14587 (arguments
14588 `(#:python ,python-2
14589 #:tests? #f)) ; some tests are interactive
14590 (propagated-inputs
14591 `(("python-dendropy" ,python2-dendropy)
14592 ("python-matplotlib" ,python2-matplotlib)
14593 ("python-numpy" ,python2-numpy)
14594 ("python-pysam" ,python2-pysam)
14595 ("python-scipy" ,python2-scipy)))
14596 (home-page "https://pypi.org/project/Checkm/")
14597 (synopsis "Assess the quality of putative genome bins")
14598 (description
14599 "CheckM provides a set of tools for assessing the quality of genomes
14600 recovered from isolates, single cells, or metagenomes. It provides robust
14601 estimates of genome completeness and contamination by using collocated sets of
14602 genes that are ubiquitous and single-copy within a phylogenetic lineage.
14603 Assessment of genome quality can also be examined using plots depicting key
14604 genomic characteristics (e.g., GC, coding density) which highlight sequences
14605 outside the expected distributions of a typical genome. CheckM also provides
14606 tools for identifying genome bins that are likely candidates for merging based
14607 on marker set compatibility, similarity in genomic characteristics, and
14608 proximity within a reference genome.")
14609 (license license:gpl3+)))
14610
14611 (define-public umi-tools
14612 (package
14613 (name "umi-tools")
14614 (version "1.0.0")
14615 (source
14616 (origin
14617 (method url-fetch)
14618 (uri (pypi-uri "umi_tools" version))
14619 (sha256
14620 (base32
14621 "08y3vz1vcx09whmbsn722lcs6jl9wyrh9i4p3k8j4cb1i32bij4a"))))
14622 (build-system python-build-system)
14623 (inputs
14624 `(("python-pandas" ,python-pandas)
14625 ("python-future" ,python-future)
14626 ("python-scipy" ,python-scipy)
14627 ("python-matplotlib" ,python-matplotlib)
14628 ("python-regex" ,python-regex)
14629 ("python-pysam" ,python-pysam)))
14630 (native-inputs
14631 `(("python-cython" ,python-cython)))
14632 (home-page "https://github.com/CGATOxford/UMI-tools")
14633 (synopsis "Tools for analyzing unique modular identifiers")
14634 (description "This package provides tools for dealing with @dfn{Unique
14635 Molecular Identifiers} (UMIs) and @dfn{Random Molecular Tags} (RMTs) in
14636 genetic sequences. There are six tools: the @code{extract} and
14637 @code{whitelist} commands are used to prepare a fastq containing UMIs @code{+/-}
14638 cell barcodes for alignment. The remaining commands, @code{group},
14639 @code{dedup}, and @{count}/@code{count_tab}, are used to identify PCR
14640 duplicates using the UMIs and perform different levels of analysis depending
14641 on the needs of the user.")
14642 (license license:expat)))
14643
14644 (define-public ataqv
14645 (package
14646 (name "ataqv")
14647 (version "1.0.0")
14648 (source
14649 (origin
14650 (method git-fetch)
14651 (uri (git-reference
14652 (url "https://github.com/ParkerLab/ataqv")
14653 (commit version)))
14654 (file-name (git-file-name name version))
14655 (sha256
14656 (base32
14657 "031xr6jx1aprh26y5b1lv3gzrlmzg4alfl73vvshymx8cq8asrqi"))))
14658 (build-system gnu-build-system)
14659 (arguments
14660 `(#:make-flags
14661 (list (string-append "prefix=" (assoc-ref %outputs "out"))
14662 (string-append "BOOST_ROOT="
14663 (assoc-ref %build-inputs "boost"))
14664 (string-append "HTSLIB_ROOT="
14665 (assoc-ref %build-inputs "htslib")))
14666 #:test-target "test"
14667 #:phases
14668 (modify-phases %standard-phases
14669 (delete 'configure))))
14670 (inputs
14671 `(("boost" ,boost)
14672 ("htslib" ,htslib)
14673 ("ncurses" ,ncurses)
14674 ("zlib" ,zlib)))
14675 (native-inputs
14676 `(("lcov" ,lcov)))
14677 (home-page "https://github.com/ParkerLab/ataqv")
14678 (synopsis "Toolkit for quality control and visualization of ATAC-seq data")
14679 (description "This package provides a toolkit for measuring and comparing
14680 ATAC-seq results. It was written to make it easier to spot differences that
14681 might be caused by ATAC-seq library prep or sequencing. The main program,
14682 @code{ataqv}, examines aligned reads and reports some basic metrics.")
14683 (license license:gpl3+)))
14684
14685 (define-public r-psiplot
14686 (package
14687 (name "r-psiplot")
14688 (version "2.3.0")
14689 (source
14690 (origin
14691 (method git-fetch)
14692 (uri (git-reference
14693 (url "https://github.com/kcha/psiplot")
14694 (commit (string-append "v" version))))
14695 (file-name (git-file-name name version))
14696 (sha256
14697 (base32 "08438h16cfry5kqh3y9hs8q1b1a8bxhblsm75knviz5r6q0n1jxh"))))
14698 (build-system r-build-system)
14699 (propagated-inputs
14700 `(("r-mass" ,r-mass)
14701 ("r-dplyr" ,r-dplyr)
14702 ("r-tidyr" ,r-tidyr)
14703 ("r-purrr" ,r-purrr)
14704 ("r-readr" ,r-readr)
14705 ("r-magrittr" ,r-magrittr)
14706 ("r-ggplot2" ,r-ggplot2)))
14707 (home-page "https://github.com/kcha/psiplot")
14708 (synopsis "Plot percent spliced-in values of alternatively-spliced exons")
14709 (description
14710 "PSIplot is an R package for generating plots of @dfn{percent
14711 spliced-in} (PSI) values of alternatively-spliced exons that were computed by
14712 vast-tools, an RNA-Seq pipeline for alternative splicing analysis. The plots
14713 are generated using @code{ggplot2}.")
14714 (license license:expat)))
14715
14716 (define-public python-ont-fast5-api
14717 (package
14718 (name "python-ont-fast5-api")
14719 (version "1.4.4")
14720 (source
14721 (origin
14722 (method git-fetch)
14723 (uri (git-reference
14724 (url "https://github.com/nanoporetech/ont_fast5_api")
14725 (commit (string-append "release_" version))))
14726 (file-name (git-file-name name version))
14727 (sha256
14728 (base32
14729 "03cbq4zbbwhll8ml2m9k8sa31mirsvcbjkrq1yna0kkzz9fad5fm"))))
14730 (build-system python-build-system)
14731 (propagated-inputs
14732 `(("python-numpy" ,python-numpy)
14733 ("python-six" ,python-six)
14734 ("python-h5py" ,python-h5py)
14735 ("python-progressbar33" ,python-progressbar33)))
14736 (home-page "https://github.com/nanoporetech/ont_fast5_api")
14737 (synopsis "Interface to HDF5 files of the Oxford Nanopore fast5 file format")
14738 (description
14739 "This package provides a concrete implementation of the fast5 file schema
14740 using the generic @code{h5py} library, plain-named methods to interact with
14741 and reflect the fast5 file schema, and tools to convert between
14742 @code{multi_read} and @code{single_read} formats.")
14743 (license license:mpl2.0)))
14744
14745 (define-public tbsp
14746 (let ((commit "ec8fff4410cfb13a677dbbb95cbbc60217e64907")
14747 (revision "1"))
14748 (package
14749 (name "tbsp")
14750 (version (git-version "1.0.0" revision commit))
14751 (source
14752 (origin
14753 (method git-fetch)
14754 (uri (git-reference
14755 (url "https://github.com/phoenixding/tbsp")
14756 (commit commit)))
14757 (file-name (git-file-name name version))
14758 (sha256
14759 (base32
14760 "025ym14x8gbd6hb55lsinqj6f5qzw36i10klgs7ldzxxd7s39ki1"))))
14761 (build-system python-build-system)
14762 (arguments '(#:tests? #f)) ; no tests included
14763 (inputs
14764 `(("python-matplotlib" ,python-matplotlib)
14765 ("python-networkx" ,python-networkx)
14766 ("python-numpy" ,python-numpy)
14767 ("python-pybigwig" ,python-pybigwig)
14768 ("python-biopython" ,python-biopython)
14769 ("python-scikit-learn" ,python-scikit-learn)
14770 ("python-scipy" ,python-scipy)))
14771 (home-page "https://github.com/phoenixding/tbsp/")
14772 (synopsis "SNP-based trajectory inference")
14773 (description
14774 "Several studies focus on the inference of developmental and response
14775 trajectories from single cell RNA-Seq (scRNA-Seq) data. A number of
14776 computational methods, often referred to as pseudo-time ordering, have been
14777 developed for this task. CRISPR has also been used to reconstruct lineage
14778 trees by inserting random mutations. The tbsp package implements an
14779 alternative method to detect significant, cell type specific sequence
14780 mutations from scRNA-Seq data.")
14781 (license license:expat))))
14782
14783 (define-public tabixpp
14784 (package
14785 (name "tabixpp")
14786 (version "1.1.0")
14787 (source (origin
14788 (method git-fetch)
14789 (uri (git-reference
14790 (url "https://github.com/ekg/tabixpp")
14791 (commit (string-append "v" version))))
14792 (file-name (git-file-name name version))
14793 (sha256
14794 (base32 "1k2a3vbq96ic4lw72iwp5s3mwwc4xhdffjj584yn6l9637q9j1yd"))
14795 (modules '((guix build utils)))
14796 (snippet
14797 `(begin
14798 (delete-file-recursively "htslib") #t))))
14799 (build-system gnu-build-system)
14800 (inputs
14801 `(("htslib" ,htslib)
14802 ("zlib" ,zlib)))
14803 (arguments
14804 `(#:tests? #f ; There are no tests to run.
14805 #:phases
14806 (modify-phases %standard-phases
14807 (delete 'configure) ; There is no configure phase.
14808 ;; The build phase needs overriding the location of htslib.
14809 (replace 'build
14810 (lambda* (#:key inputs #:allow-other-keys)
14811 (let ((htslib-ref (assoc-ref inputs "htslib")))
14812 (invoke "make"
14813 (string-append "HTS_LIB=" htslib-ref "/lib/libhts.a")
14814 (string-append "INCLUDES= -I" htslib-ref "/include/htslib")
14815 "HTS_HEADERS=" ; No need to check for headers here.
14816 (string-append "LIBPATH=-L. -L" htslib-ref "/include"))
14817 (invoke "g++" "-shared" "-o" "libtabixpp.so" "tabix.o" "-lhts")
14818 (invoke "ar" "rcs" "libtabixpp.a" "tabix.o"))))
14819 (replace 'install
14820 (lambda* (#:key outputs #:allow-other-keys)
14821 (let* ((out (assoc-ref outputs "out"))
14822 (lib (string-append out "/lib"))
14823 (bin (string-append out "/bin")))
14824 (install-file "tabix++" bin)
14825 (install-file "libtabixpp.so" lib)
14826 (install-file "libtabixpp.a" lib)
14827 (install-file "tabix.hpp" (string-append out "/include"))
14828 (mkdir-p (string-append lib "/pkgconfig"))
14829 (with-output-to-file (string-append lib "/pkgconfig/tabixpp.pc")
14830 (lambda _
14831 (format #t "prefix=~a~@
14832 exec_prefix=${prefix}~@
14833 libdir=${exec_prefix}/lib~@
14834 includedir=${prefix}/include~@
14835 ~@
14836 ~@
14837 Name: libtabixpp~@
14838 Version: ~a~@
14839 Description: C++ wrapper around tabix project~@
14840 Libs: -L${libdir} -ltabixpp~@
14841 Cflags: -I${includedir}~%"
14842 out ,version)))
14843 #t))))))
14844 (home-page "https://github.com/ekg/tabixpp")
14845 (synopsis "C++ wrapper around tabix project")
14846 (description "This is a C++ wrapper around the Tabix project which abstracts
14847 some of the details of opening and jumping in tabix-indexed files.")
14848 (license license:expat)))
14849
14850 (define-public smithwaterman
14851 (let ((commit "2610e259611ae4cde8f03c72499d28f03f6d38a7"))
14852 (package
14853 (name "smithwaterman")
14854 (version (git-version "0.0.0" "2" commit))
14855 (source (origin
14856 (method git-fetch)
14857 (uri (git-reference
14858 (url "https://github.com/ekg/smithwaterman/")
14859 (commit commit)))
14860 (file-name (git-file-name name version))
14861 (sha256
14862 (base32 "0i9d8zrxpiracw3mxzd9siybpy62p06rqz9mc2w93arajgbk45bs"))))
14863 (build-system gnu-build-system)
14864 (arguments
14865 `(#:tests? #f ; There are no tests to run.
14866 #:make-flags '("libsw.a" "all")
14867 #:phases
14868 (modify-phases %standard-phases
14869 (delete 'configure) ; There is no configure phase.
14870 (add-after 'unpack 'patch-source
14871 (lambda _
14872 (substitute* "Makefile"
14873 (("-c ") "-c -fPIC "))
14874 #t))
14875 (add-after 'build 'build-dynamic
14876 (lambda _
14877 (invoke "g++"
14878 "-shared" "-o" "libsmithwaterman.so"
14879 "smithwaterman.o" "SmithWatermanGotoh.o"
14880 "disorder.o" "BandedSmithWaterman.o"
14881 "LeftAlign.o" "Repeats.o" "IndelAllele.o")))
14882 (replace 'install
14883 (lambda* (#:key outputs #:allow-other-keys)
14884 (let* ((out (assoc-ref outputs "out"))
14885 (bin (string-append out "/bin"))
14886 (lib (string-append out "/lib")))
14887 (install-file "smithwaterman" bin)
14888 (for-each
14889 (lambda (file)
14890 (install-file file (string-append out "/include/smithwaterman")))
14891 (find-files "." "\\.h$"))
14892 (install-file "libsmithwaterman.so" lib)
14893 (install-file "libsw.a" lib)
14894 (mkdir-p (string-append lib "/pkgconfig"))
14895 (with-output-to-file (string-append lib "/pkgconfig/smithwaterman.pc")
14896 (lambda _
14897 (format #t "prefix=~a~@
14898 exec_prefix=${prefix}~@
14899 libdir=${exec_prefix}/lib~@
14900 includedir=${prefix}/include/smithwaterman~@
14901 ~@
14902 ~@
14903 Name: smithwaterman~@
14904 Version: ~a~@
14905 Description: smith-waterman-gotoh alignment algorithm~@
14906 Libs: -L${libdir} -lsmithwaterman~@
14907 Cflags: -I${includedir}~%"
14908 out ,version))))
14909 #t)))))
14910 (home-page "https://github.com/ekg/smithwaterman")
14911 (synopsis "Implementation of the Smith-Waterman algorithm")
14912 (description "Implementation of the Smith-Waterman algorithm.")
14913 ;; The licensing terms are unclear: https://github.com/ekg/smithwaterman/issues/9.
14914 (license (list license:gpl2 license:expat)))))
14915
14916 (define-public multichoose
14917 (package
14918 (name "multichoose")
14919 (version "1.0.3")
14920 (source (origin
14921 (method git-fetch)
14922 (uri (git-reference
14923 (url "https://github.com/ekg/multichoose/")
14924 (commit (string-append "v" version))))
14925 (file-name (git-file-name name version))
14926 (sha256
14927 (base32 "0ci5fqvmpamwgxvmyd79ygj6n3bnbl3vc7b6h1sxz58186sm3pfs"))))
14928 (build-system gnu-build-system)
14929 (arguments
14930 `(#:tests? #f ; Tests require node.
14931 #:phases
14932 (modify-phases %standard-phases
14933 (delete 'configure) ; There is no configure phase.
14934 (replace 'install
14935 (lambda* (#:key outputs #:allow-other-keys)
14936 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
14937 ;; TODO: There are Python modules for these programs too.
14938 (install-file "multichoose" bin)
14939 (install-file "multipermute" bin))
14940 #t)))))
14941 (home-page "https://github.com/ekg/multichoose")
14942 (synopsis "Efficient loopless multiset combination generation algorithm")
14943 (description "This library implements an efficient loopless multiset
14944 combination generation algorithm which is (approximately) described in
14945 \"Loopless algorithms for generating permutations, combinations, and other
14946 combinatorial configurations.\", G. Ehrlich - Journal of the ACM (JACM),
14947 1973. (Algorithm 7.)")
14948 (license license:expat)))
14949
14950 (define-public fsom
14951 (let ((commit "a6ef318fbd347c53189384aef7f670c0e6ce89a3"))
14952 (package
14953 (name "fsom")
14954 (version (git-version "0.0.0" "1" commit))
14955 (source (origin
14956 (method git-fetch)
14957 (uri (git-reference
14958 (url "https://github.com/ekg/fsom/")
14959 (commit commit)))
14960 (file-name (git-file-name name version))
14961 (sha256
14962 (base32 "0gw1lpvr812pywg9y546x0h1hhj261xwls41r6kqhddjlrcjc0pi"))))
14963 (build-system gnu-build-system)
14964 (arguments
14965 `(#:tests? #f ; There are no tests to run.
14966 #:phases
14967 (modify-phases %standard-phases
14968 (delete 'configure) ; There is no configure phase.
14969 (replace 'install
14970 (lambda* (#:key outputs #:allow-other-keys)
14971 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
14972 (install-file "fsom" bin))
14973 #t)))))
14974 (home-page "https://github.com/ekg/fsom")
14975 (synopsis "Manage SOM (Self-Organizing Maps) neural networks")
14976 (description "A tiny C library for managing SOM (Self-Organizing Maps)
14977 neural networks.")
14978 (license license:gpl3))))
14979
14980 (define-public fastahack
14981 (package
14982 (name "fastahack")
14983 (version "1.0.0")
14984 (source (origin
14985 (method git-fetch)
14986 (uri (git-reference
14987 (url "https://github.com/ekg/fastahack/")
14988 (commit (string-append "v" version))))
14989 (file-name (git-file-name name version))
14990 (sha256
14991 (base32 "0rp1blskhzxf7vbh253ibpxbgl9wwgyzf1wbkxndi08d3j4vcss9"))))
14992 (build-system gnu-build-system)
14993 (arguments
14994 `(#:tests? #f ; Unclear how to run tests: https://github.com/ekg/fastahack/issues/15
14995 #:phases
14996 (modify-phases %standard-phases
14997 (delete 'configure) ; There is no configure phase.
14998 (add-after 'unpack 'patch-source
14999 (lambda _
15000 (substitute* "Makefile"
15001 (("-c ") "-c -fPIC "))
15002 #t))
15003 (add-after 'build 'build-dynamic
15004 (lambda _
15005 (invoke "g++"
15006 "-shared" "-o" "libfastahack.so"
15007 "Fasta.o" "FastaHack.o" "split.o" "disorder.o")))
15008 (replace 'install
15009 (lambda* (#:key outputs #:allow-other-keys)
15010 (let* ((out (assoc-ref outputs "out"))
15011 (lib (string-append out "/lib"))
15012 (bin (string-append out "/bin")))
15013 (mkdir-p (string-append out "/include/fastahack"))
15014 (for-each
15015 (lambda (file)
15016 (install-file file (string-append out "/include/fastahack")))
15017 (find-files "." "\\.h$"))
15018 (install-file "fastahack" bin)
15019 (install-file "libfastahack.so" lib)
15020 (mkdir-p (string-append lib "/pkgconfig"))
15021 (with-output-to-file (string-append lib "/pkgconfig/fastahack.pc")
15022 (lambda _
15023 (format #t "prefix=~a~@
15024 exec_prefix=${prefix}~@
15025 libdir=${exec_prefix}/lib~@
15026 includedir=${prefix}/include/fastahack~@
15027 ~@
15028 ~@
15029 Name: fastahack~@
15030 Version: ~a~@
15031 Description: Indexing and sequence extraction from FASTA files~@
15032 Libs: -L${libdir} -lfastahack~@
15033 Cflags: -I${includedir}~%"
15034 out ,version))))
15035 #t)))))
15036 (home-page "https://github.com/ekg/fastahack")
15037 (synopsis "Indexing and sequence extraction from FASTA files")
15038 (description "Fastahack is a small application for indexing and
15039 extracting sequences and subsequences from FASTA files. The included library
15040 provides a FASTA reader and indexer that can be embedded into applications
15041 which would benefit from directly reading subsequences from FASTA files. The
15042 library automatically handles index file generation and use.")
15043 (license (list license:expat license:gpl2))))
15044
15045 (define-public vcflib
15046 (package
15047 (name "vcflib")
15048 (version "1.0.1")
15049 (source
15050 (origin
15051 (method url-fetch)
15052 (uri (string-append "https://github.com/vcflib/vcflib/releases/"
15053 "download/v" version
15054 "/vcflib-" version "-src.tar.gz"))
15055 (sha256
15056 (base32 "14zzrg8hg8cq9cvq2wdvp21j7nmxxkjrbagw2apd2yqv2kyx42lm"))
15057 (patches (search-patches "vcflib-use-shared-libraries.patch"))
15058 (modules '((guix build utils)))
15059 (snippet
15060 `(begin
15061 (substitute* (find-files "." "\\.(h|c)(pp)?$")
15062 (("\"SmithWatermanGotoh.h\"") "<smithwaterman/SmithWatermanGotoh.h>")
15063 (("\"convert.h\"") "<smithwaterman/convert.h>")
15064 (("\"disorder.h\"") "<smithwaterman/disorder.h>")
15065 (("\"tabix.hpp\"") "<tabix.hpp>")
15066 (("\"Fasta.h\"") "<fastahack/Fasta.h>"))
15067 (for-each delete-file-recursively
15068 '("fastahack" "filevercmp" "fsom" "googletest" "intervaltree"
15069 "libVCFH" "multichoose" "smithwaterman" "tabixpp"))
15070 #t))))
15071 (build-system gnu-build-system)
15072 (inputs
15073 `(("htslib" ,htslib)
15074 ("fastahack" ,fastahack)
15075 ("perl" ,perl)
15076 ("python" ,python)
15077 ("smithwaterman" ,smithwaterman)
15078 ("tabixpp" ,tabixpp)
15079 ("xz" ,xz)
15080 ("zlib" ,zlib)))
15081 (native-inputs
15082 `(("pkg-config" ,pkg-config)
15083 ;; Submodules.
15084 ;; This package builds against the .o files so we need to extract the source.
15085 ("filevercmp-src" ,(package-source filevercmp))
15086 ("intervaltree-src" ,(package-source intervaltree))
15087 ("multichoose-src" ,(package-source multichoose))))
15088 (arguments
15089 `(#:tests? #f ; no tests
15090 #:phases
15091 (modify-phases %standard-phases
15092 (add-after 'unpack 'set-flags
15093 (lambda* (#:key outputs #:allow-other-keys)
15094 (substitute* "Makefile"
15095 (("LDFLAGS =")
15096 (string-append "LDFLAGS = -Wl,-rpath="
15097 (assoc-ref outputs "out") "/lib ")))
15098 (substitute* "filevercmp/Makefile"
15099 (("-c") "-c -fPIC"))
15100 #t))
15101 (delete 'configure)
15102 (add-after 'unpack 'unpack-submodule-sources
15103 (lambda* (#:key inputs #:allow-other-keys)
15104 (let ((unpack (lambda (source target)
15105 (mkdir target)
15106 (with-directory-excursion target
15107 (if (file-is-directory? (assoc-ref inputs source))
15108 (copy-recursively (assoc-ref inputs source) ".")
15109 (invoke "tar" "xvf"
15110 (assoc-ref inputs source)
15111 "--strip-components=1"))))))
15112 (and
15113 (unpack "filevercmp-src" "filevercmp")
15114 (unpack "intervaltree-src" "intervaltree")
15115 (unpack "multichoose-src" "multichoose")))))
15116 (replace 'install
15117 (lambda* (#:key outputs #:allow-other-keys)
15118 (let* ((out (assoc-ref outputs "out"))
15119 (bin (string-append out "/bin"))
15120 (lib (string-append out "/lib")))
15121 (for-each (lambda (file)
15122 (install-file file bin))
15123 (find-files "bin" ".*"))
15124 (install-file "libvcflib.so" lib)
15125 (install-file "libvcflib.a" lib)
15126 (for-each
15127 (lambda (file)
15128 (install-file file (string-append out "/include")))
15129 (find-files "include" "\\.h(pp)?$"))
15130 (mkdir-p (string-append lib "/pkgconfig"))
15131 (with-output-to-file (string-append lib "/pkgconfig/vcflib.pc")
15132 (lambda _
15133 (format #t "prefix=~a~@
15134 exec_prefix=${prefix}~@
15135 libdir=${exec_prefix}/lib~@
15136 includedir=${prefix}/include~@
15137 ~@
15138 ~@
15139 Name: libvcflib~@
15140 Version: ~a~@
15141 Requires: smithwaterman, fastahack~@
15142 Description: C++ library for parsing and manipulating VCF files~@
15143 Libs: -L${libdir} -lvcflib~@
15144 Cflags: -I${includedir}~%"
15145 out ,version))))
15146 #t)))))
15147 (home-page "https://github.com/vcflib/vcflib/")
15148 (synopsis "Library for parsing and manipulating VCF files")
15149 (description "Vcflib provides methods to manipulate and interpret
15150 sequence variation as it can be described by VCF. It is both an API for parsing
15151 and operating on records of genomic variation as it can be described by the VCF
15152 format, and a collection of command-line utilities for executing complex
15153 manipulations on VCF files.")
15154 (license license:expat)))
15155
15156 (define-public freebayes
15157 (let ((commit "3ce827d8ebf89bb3bdc097ee0fe7f46f9f30d5fb")
15158 (revision "1")
15159 (version "1.0.2"))
15160 (package
15161 (name "freebayes")
15162 (version (git-version version revision commit))
15163 (source (origin
15164 (method git-fetch)
15165 (uri (git-reference
15166 (url "https://github.com/ekg/freebayes")
15167 (commit commit)))
15168 (file-name (git-file-name name version))
15169 (sha256
15170 (base32 "1sbzwmcbn78ybymjnhwk7qc5r912azy5vqz2y7y81616yc3ba2a2"))))
15171 (build-system gnu-build-system)
15172 (inputs
15173 `(("bamtools" ,bamtools)
15174 ("htslib" ,htslib)
15175 ("zlib" ,zlib)))
15176 (native-inputs
15177 `(("bc" ,bc) ; Needed for running tests.
15178 ("samtools" ,samtools) ; Needed for running tests.
15179 ("parallel" ,parallel) ; Needed for running tests.
15180 ("perl" ,perl) ; Needed for running tests.
15181 ("procps" ,procps) ; Needed for running tests.
15182 ("python" ,python-2) ; Needed for running tests.
15183 ("vcflib-src" ,(package-source vcflib))
15184 ;; These are submodules for the vcflib version used in freebayes.
15185 ;; This package builds against the .o files so we need to extract the source.
15186 ("tabixpp-src" ,(package-source tabixpp))
15187 ("smithwaterman-src" ,(package-source smithwaterman))
15188 ("multichoose-src" ,(package-source multichoose))
15189 ("fsom-src" ,(package-source fsom))
15190 ("filevercmp-src" ,(package-source filevercmp))
15191 ("fastahack-src" ,(package-source fastahack))
15192 ("intervaltree-src" ,(package-source intervaltree))
15193 ;; These submodules are needed to run the tests.
15194 ("bash-tap-src" ,(package-source bash-tap))
15195 ("test-simple-bash-src"
15196 ,(origin
15197 (method git-fetch)
15198 (uri (git-reference
15199 (url "https://github.com/ingydotnet/test-simple-bash/")
15200 (commit "124673ff204b01c8e96b7fc9f9b32ee35d898acc")))
15201 (file-name "test-simple-bash-src-checkout")
15202 (sha256
15203 (base32 "043plp6z0x9yf7mdpky1fw7zcpwn1p47px95w9mh16603zqqqpga"))))))
15204 (arguments
15205 `(#:make-flags
15206 (list "CC=gcc"
15207 (string-append "BAMTOOLS_ROOT="
15208 (assoc-ref %build-inputs "bamtools")))
15209 #:test-target "test"
15210 #:phases
15211 (modify-phases %standard-phases
15212 (delete 'configure)
15213 (add-after 'unpack 'fix-tests
15214 (lambda _
15215 (substitute* "test/t/01_call_variants.t"
15216 (("grep -P \"\\(\\\\t500\\$\\|\\\\t11000\\$\\|\\\\t1000\\$\\)\"")
15217 "grep -E ' (500|11000|1000)$'"))
15218 #t))
15219 (add-after 'unpack 'unpack-submodule-sources
15220 (lambda* (#:key inputs #:allow-other-keys)
15221 (let ((unpack (lambda (source target)
15222 (with-directory-excursion target
15223 (if (file-is-directory? (assoc-ref inputs source))
15224 (copy-recursively (assoc-ref inputs source) ".")
15225 (invoke "tar" "xvf"
15226 (assoc-ref inputs source)
15227 "--strip-components=1"))))))
15228 (and
15229 (unpack "vcflib-src" "vcflib")
15230 (unpack "fastahack-src" "vcflib/fastahack")
15231 (unpack "filevercmp-src" "vcflib/filevercmp")
15232 (unpack "fsom-src" "vcflib/fsom")
15233 (unpack "intervaltree-src" "vcflib/intervaltree")
15234 (unpack "multichoose-src" "vcflib/multichoose")
15235 (unpack "smithwaterman-src" "vcflib/smithwaterman")
15236 (unpack "tabixpp-src" "vcflib/tabixpp")
15237 (unpack "test-simple-bash-src" "test/test-simple-bash")
15238 (unpack "bash-tap-src" "test/bash-tap")))))
15239 (add-after 'unpack-submodule-sources 'fix-makefiles
15240 (lambda _
15241 ;; We don't have the .git folder to get the version tag from.
15242 (substitute* "vcflib/Makefile"
15243 (("^GIT_VERSION.*")
15244 (string-append "GIT_VERSION = v" ,version)))
15245 (substitute* "src/Makefile"
15246 (("-I\\$\\(BAMTOOLS_ROOT\\)/src")
15247 "-I$(BAMTOOLS_ROOT)/include/bamtools"))
15248 #t))
15249 (add-before 'build 'build-tabixpp-and-vcflib
15250 (lambda* (#:key inputs make-flags #:allow-other-keys)
15251 (with-directory-excursion "vcflib"
15252 (with-directory-excursion "tabixpp"
15253 (apply invoke "make"
15254 (string-append "HTS_LIB="
15255 (assoc-ref inputs "htslib")
15256 "/lib/libhts.a")
15257 make-flags))
15258 (apply invoke "make"
15259 (string-append "CFLAGS=-Itabixpp")
15260 "all"
15261 make-flags))))
15262 (replace 'install
15263 (lambda* (#:key outputs #:allow-other-keys)
15264 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
15265 (install-file "bin/freebayes" bin)
15266 (install-file "bin/bamleftalign" bin))
15267 #t)))))
15268 (home-page "https://github.com/ekg/freebayes")
15269 (synopsis "Haplotype-based variant detector")
15270 (description "FreeBayes is a Bayesian genetic variant detector designed to
15271 find small polymorphisms, specifically SNPs (single-nucleotide polymorphisms),
15272 indels (insertions and deletions), MNPs (multi-nucleotide polymorphisms), and
15273 complex events (composite insertion and substitution events) smaller than the
15274 length of a short-read sequencing alignment.")
15275 (license license:expat))))
15276
15277 (define-public samblaster
15278 (package
15279 (name "samblaster")
15280 (version "0.1.24")
15281 (source (origin
15282 (method git-fetch)
15283 (uri (git-reference
15284 (url "https://github.com/GregoryFaust/samblaster")
15285 (commit (string-append "v." version))))
15286 (file-name (git-file-name name version))
15287 (sha256
15288 (base32
15289 "0iv2ddfw8363vb2x8gr3p8g88whb6mb9m0pf71i2cqsbv6jghap7"))))
15290 (build-system gnu-build-system)
15291 (arguments
15292 `(#:tests? #f ; there are none
15293 #:phases
15294 (modify-phases %standard-phases
15295 (delete 'configure) ; There is no configure phase.
15296 (replace 'install
15297 (lambda* (#:key outputs #:allow-other-keys)
15298 (install-file "samblaster"
15299 (string-append (assoc-ref outputs "out") "/bin"))
15300 #t)))))
15301 (home-page "https://github.com/GregoryFaust/samblaster")
15302 (synopsis "Mark duplicates in paired-end SAM files")
15303 (description "Samblaster is a fast and flexible program for marking
15304 duplicates in read-id grouped paired-end SAM files. It can also optionally
15305 output discordant read pairs and/or split read mappings to separate SAM files,
15306 and/or unmapped/clipped reads to a separate FASTQ file. When marking
15307 duplicates, samblaster will require approximately 20MB of memory per 1M read
15308 pairs.")
15309 (license license:expat)))
15310
15311 (define-public r-velocyto
15312 (let ((commit "d7790346cb99f49ab9c2b23ba70dcf9d2c9fc350")
15313 (revision "1"))
15314 (package
15315 (name "r-velocyto")
15316 (version (git-version "0.6" revision commit))
15317 (source
15318 (origin
15319 (method git-fetch)
15320 (uri (git-reference
15321 (url "https://github.com/velocyto-team/velocyto.R")
15322 (commit commit)))
15323 (file-name (git-file-name name version))
15324 (sha256
15325 (base32
15326 "16wqf70j7rd7pay2q513iyz12i8n9vrpg1bisah4lddbcpx5dz1n"))))
15327 (build-system r-build-system)
15328 (inputs
15329 `(("boost" ,boost)))
15330 (propagated-inputs
15331 `(("r-hdf5r" ,r-hdf5r)
15332 ("r-mass" ,r-mass)
15333 ("r-mgcv" ,r-mgcv)
15334 ("r-pcamethods" ,r-pcamethods)
15335 ("r-rcpp" ,r-rcpp)
15336 ("r-rcpparmadillo" ,r-rcpparmadillo)
15337 ;; Suggested packages
15338 ("r-rtsne" ,r-rtsne)
15339 ("r-cluster" ,r-cluster)
15340 ("r-abind" ,r-abind)
15341 ("r-h5" ,r-h5)
15342 ("r-biocgenerics" ,r-biocgenerics)
15343 ("r-genomicalignments" ,r-genomicalignments)
15344 ("r-rsamtools" ,r-rsamtools)
15345 ("r-edger" ,r-edger)
15346 ("r-igraph" ,r-igraph)))
15347 (home-page "https://velocyto.org")
15348 (synopsis "RNA velocity estimation in R")
15349 (description
15350 "This package provides basic routines for estimation of gene-specific
15351 transcriptional derivatives and visualization of the resulting velocity
15352 patterns.")
15353 (license license:gpl3))))
15354
15355 (define-public methyldackel
15356 (package
15357 (name "methyldackel")
15358 (version "0.4.0")
15359 (source (origin
15360 (method git-fetch)
15361 (uri (git-reference
15362 (url "https://github.com/dpryan79/MethylDackel")
15363 (commit version)))
15364 (file-name (git-file-name name version))
15365 (sha256
15366 (base32
15367 "10gh8k0ca92kywnrw5pkacq3g6r8s976s12k8jhp8g3g49q9a97g"))))
15368 (build-system gnu-build-system)
15369 (arguments
15370 `(#:test-target "test"
15371 #:make-flags
15372 (list "CC=gcc"
15373 (string-append "prefix="
15374 (assoc-ref %outputs "out") "/bin/"))
15375 #:phases
15376 (modify-phases %standard-phases
15377 (replace 'configure
15378 (lambda* (#:key outputs #:allow-other-keys)
15379 (substitute* "Makefile"
15380 (("install MethylDackel \\$\\(prefix\\)" match)
15381 (string-append "install -d $(prefix); " match)))
15382 #t)))))
15383 (inputs
15384 `(("htslib" ,htslib)
15385 ("zlib" ,zlib)))
15386 ;; Needed for tests
15387 (native-inputs
15388 `(("python" ,python-wrapper)))
15389 (home-page "https://github.com/dpryan79/MethylDackel")
15390 (synopsis "Universal methylation extractor for BS-seq experiments")
15391 (description
15392 "MethylDackel will process a coordinate-sorted and indexed BAM or CRAM
15393 file containing some form of BS-seq alignments and extract per-base
15394 methylation metrics from them. MethylDackel requires an indexed fasta file
15395 containing the reference genome as well.")
15396 ;; See https://github.com/dpryan79/MethylDackel/issues/85
15397 (license license:expat)))
15398
15399 ;; This package bundles PCRE 8.02 and cannot be built with the current
15400 ;; version.
15401 (define-public phast
15402 (package
15403 (name "phast")
15404 (version "1.5")
15405 (source (origin
15406 (method git-fetch)
15407 (uri (git-reference
15408 (url "https://github.com/CshlSiepelLab/phast")
15409 (commit (string-append "v" version))))
15410 (file-name (git-file-name name version))
15411 (sha256
15412 (base32
15413 "10lpbllvny923jjbbyrpxahhd1m5h7sbj9gx7rd123rg10mlidki"))))
15414 (build-system gnu-build-system)
15415 (arguments
15416 `(#:make-flags
15417 (list "CC=gcc"
15418 (string-append "DESTDIR=" (assoc-ref %outputs "out")))
15419 #:phases
15420 (modify-phases %standard-phases
15421 (replace 'configure
15422 (lambda* (#:key inputs outputs #:allow-other-keys)
15423 ;; Fix syntax
15424 (substitute* "test/Makefile"
15425 ((" ") " "))
15426 (substitute* "Makefile"
15427 (("CLAPACKPATH=/usr/lib")
15428 (string-append "CLAPACKPATH="
15429 (assoc-ref inputs "clapack") "/lib")))
15430 ;; Renaming the libraries is not necessary with our version of
15431 ;; CLAPACK.
15432 (substitute* "src/lib/Makefile"
15433 (("ifdef CLAPACKPATH") "ifdef UNNECESSARY"))
15434 (substitute* "src/make-include.mk"
15435 (("-lblaswr") "-lblas")
15436 (("-ltmg") "-ltmglib")
15437 (("liblapack.a") "liblapack.so")
15438 (("libblas.a") "libblas.so")
15439 (("libf2c.a") "libf2c.so"))
15440 (substitute* "src/Makefile"
15441 (("/opt") "/share")
15442 (("/usr/") "/"))
15443 #t))
15444 (replace 'check
15445 (lambda _
15446 (setenv "PATH"
15447 (string-append (getcwd) "/bin:" (getenv "PATH")))
15448 ;; Disable broken test
15449 (substitute* "test/Makefile"
15450 ((".*if.*hmrc_summary" m) (string-append "#" m)))
15451 ;; Only run the msa_view tests because the others fail for
15452 ;; unknown reasons.
15453 (invoke "make" "-C" "test" "msa_view"))))))
15454 (inputs
15455 `(("clapack" ,clapack)))
15456 (native-inputs
15457 `(("perl" ,perl)))
15458 (home-page "http://compgen.cshl.edu/phast/")
15459 (synopsis "Phylogenetic analysis with space/time models")
15460 (description
15461 "Phylogenetic Analysis with Space/Time models (PHAST) is a collection of
15462 command-line programs and supporting libraries for comparative and
15463 evolutionary genomics. Best known as the search engine behind the
15464 Conservation tracks in the University of California, Santa Cruz (UCSC) Genome
15465 Browser, PHAST also includes several tools for phylogenetic modeling,
15466 functional element identification, as well as utilities for manipulating
15467 alignments, trees and genomic annotations.")
15468 (license license:bsd-3)))
15469
15470 (define-public python-gffutils
15471 ;; The latest release is older more than a year than the latest commit
15472 (let ((commit "4034c54600813b1402945e12faa91b3a53162cf1")
15473 (revision "1"))
15474 (package
15475 (name "python-gffutils")
15476 (version (git-version "0.9" revision commit))
15477 (source
15478 (origin
15479 (method git-fetch)
15480 (uri (git-reference
15481 (url "https://github.com/daler/gffutils")
15482 (commit commit)))
15483 (file-name (git-file-name name version))
15484 (sha256
15485 (base32
15486 "1rwafjdnbir5wnk0ap06ww4lra3p5frhy7mfs03rlldgfnwxymsn"))))
15487 (build-system python-build-system)
15488 (arguments
15489 `(#:phases
15490 (modify-phases %standard-phases
15491 (replace 'check
15492 (lambda _
15493 ;; Tests need to access the HOME directory
15494 (setenv "HOME" "/tmp")
15495 (invoke "nosetests" "-a" "!slow")))
15496 (add-after 'unpack 'make-gz-files-writable
15497 (lambda _
15498 (for-each make-file-writable
15499 (find-files "." "\\.gz"))
15500 #t)))))
15501 (propagated-inputs
15502 `(("python-argcomplete" ,python-argcomplete)
15503 ("python-argh" ,python-argh)
15504 ("python-biopython" ,python-biopython)
15505 ("python-pybedtools" ,python-pybedtools)
15506 ("python-pyfaidx" ,python-pyfaidx)
15507 ("python-simplejson" ,python-simplejson)
15508 ("python-six" ,python-six)))
15509 (native-inputs
15510 `(("python-nose" , python-nose)))
15511 (home-page "https://github.com/daler/gffutils")
15512 (synopsis "Tool for manipulation of GFF and GTF files")
15513 (description
15514 "python-gffutils is a Python package for working with and manipulating
15515 the GFF and GTF format files typically used for genomic annotations. The
15516 files are loaded into a SQLite database, allowing much more complex
15517 manipulation of hierarchical features (e.g., genes, transcripts, and exons)
15518 than is possible with plain-text methods alone.")
15519 (license license:expat))))
15520
15521 (define-public libsbml
15522 (package
15523 (name "libsbml")
15524 (version "5.18.0")
15525 (source (origin
15526 (method url-fetch)
15527 (uri (string-append "mirror://sourceforge/sbml/libsbml/"
15528 version "/stable/libSBML-"
15529 version "-core-src.tar.gz"))
15530 (sha256
15531 (base32
15532 "0slkagrk3nfi2qsksv6b1brj6zhx4bj4bkib2sdycvrcd10ql2lh"))))
15533 (build-system cmake-build-system)
15534 (arguments
15535 `(#:test-target "test"
15536 #:configure-flags
15537 (list "-DWITH_CHECK=ON"
15538 (string-append "-DLIBXML_LIBRARY="
15539 (assoc-ref %build-inputs "libxml2")
15540 "/lib/libxml2.so")
15541 (string-append "-DLIBXML_INCLUDE_DIR="
15542 (assoc-ref %build-inputs "libxml2")
15543 "/include/libxml2"))))
15544 (propagated-inputs
15545 `(("libxml2" ,libxml2)))
15546 (native-inputs
15547 `(("check" ,check)
15548 ("swig" ,swig)))
15549 (home-page "http://sbml.org/Software/libSBML")
15550 (synopsis "Process SBML files and data streams")
15551 (description "LibSBML is a library to help you read, write, manipulate,
15552 translate, and validate SBML files and data streams. The @dfn{Systems Biology
15553 Markup Language} (SBML) is an interchange format for computer models of
15554 biological processes. SBML is useful for models of metabolism, cell
15555 signaling, and more. It continues to be evolved and expanded by an
15556 international community.")
15557 (license license:lgpl2.1+)))
15558
15559 (define-public grocsvs
15560 ;; The last release is out of date and new features have been added.
15561 (let ((commit "ecd956a65093a0b2c41849050e4512d46fecea5d")
15562 (revision "1"))
15563 (package
15564 (name "grocsvs")
15565 (version (git-version "0.2.6.1" revision commit))
15566 (source (origin
15567 (method git-fetch)
15568 (uri (git-reference
15569 (url "https://github.com/grocsvs/grocsvs")
15570 (commit commit)))
15571 (file-name (git-file-name name version))
15572 (sha256
15573 (base32 "14505725gr7qxc17cxxf0k6lzcwmgi64pija4mwf29aw70qn35cc"))
15574 (patches (search-patches "grocsvs-dont-use-admiral.patch"))))
15575 (build-system python-build-system)
15576 (arguments
15577 `(#:tests? #f ; No test suite.
15578 #:python ,python-2)) ; Only python-2 supported.
15579 (inputs
15580 `(("python2-h5py" ,python2-h5py)
15581 ("python2-ipython-cluster-helper" ,python2-ipython-cluster-helper)
15582 ("python2-networkx" ,python2-networkx)
15583 ("python2-psutil" ,python2-psutil)
15584 ("python2-pandas" ,python2-pandas)
15585 ("python2-pybedtools" ,python2-pybedtools)
15586 ("python2-pyfaidx" ,python2-pyfaidx)
15587 ("python2-pygraphviz" ,python2-pygraphviz)
15588 ("python2-pysam" ,python2-pysam)
15589 ("python2-scipy" ,python2-scipy)))
15590 (home-page "https://github.com/grocsvs/grocsvs")
15591 (synopsis "Genome-wide reconstruction of complex structural variants")
15592 (description
15593 "@dfn{Genome-wide Reconstruction of Complex Structural Variants}
15594 (GROC-SVs) is a software pipeline for identifying large-scale structural
15595 variants, performing sequence assembly at the breakpoints, and reconstructing
15596 the complex structural variants using the long-fragment information from the
15597 10x Genomics platform.")
15598 (license license:expat))))