40c63638594fc4943a8a857ec772047a67b78755
[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-maldiquant
9429 (package
9430 (name "r-maldiquant")
9431 (version "1.19.3")
9432 (source
9433 (origin
9434 (method url-fetch)
9435 (uri (cran-uri "MALDIquant" version))
9436 (sha256
9437 (base32
9438 "0b7kdz3x4sdq413h1q09l1qhcvdnnwv6fqsqwllks1cd3xy34c57"))))
9439 (properties `((upstream-name . "MALDIquant")))
9440 (build-system r-build-system)
9441 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
9442 (synopsis "Quantitative analysis of mass spectrometry data")
9443 (description
9444 "This package provides a complete analysis pipeline for matrix-assisted
9445 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
9446 two-dimensional mass spectrometry data. In addition to commonly used plotting
9447 and processing methods it includes distinctive features, namely baseline
9448 subtraction methods such as morphological filters (TopHat) or the
9449 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
9450 alignment using warping functions, handling of replicated measurements as well
9451 as allowing spectra with different resolutions.")
9452 (license license:gpl3+)))
9453
9454 (define-public r-protgenerics
9455 (package
9456 (name "r-protgenerics")
9457 (version "1.20.0")
9458 (source
9459 (origin
9460 (method url-fetch)
9461 (uri (bioconductor-uri "ProtGenerics" version))
9462 (sha256
9463 (base32
9464 "14xzdh7vxss8vmrw91hcwrszdn3ikm71mah8875b2lkrkrfzbl73"))))
9465 (properties `((upstream-name . "ProtGenerics")))
9466 (build-system r-build-system)
9467 (home-page "https://github.com/lgatto/ProtGenerics")
9468 (synopsis "S4 generic functions for proteomics infrastructure")
9469 (description
9470 "This package provides S4 generic functions needed by Bioconductor
9471 proteomics packages.")
9472 (license license:artistic2.0)))
9473
9474 (define-public r-mzr
9475 (package
9476 (name "r-mzr")
9477 (version "2.22.0")
9478 (source
9479 (origin
9480 (method url-fetch)
9481 (uri (bioconductor-uri "mzR" version))
9482 (sha256
9483 (base32
9484 "1r8j8yiz5lcan7j4h37sza2kwczl48dxvld3da3ghjjq67cdc2cm"))
9485 (modules '((guix build utils)))
9486 (snippet
9487 '(begin
9488 (delete-file-recursively "src/boost")
9489 #t))))
9490 (properties `((upstream-name . "mzR")))
9491 (build-system r-build-system)
9492 (arguments
9493 `(#:phases
9494 (modify-phases %standard-phases
9495 (add-after 'unpack 'use-system-boost
9496 (lambda _
9497 (substitute* "src/Makevars"
9498 (("\\./boost/libs.*") "")
9499 (("ARCH_OBJS=" line)
9500 (string-append line
9501 "\nARCH_LIBS=-lboost_system -lboost_regex \
9502 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n")))
9503 #t)))))
9504 (inputs
9505 `(;; Our default boost package won't work here, unfortunately, even with
9506 ;; mzR version 2.22.0.
9507 ("boost" ,boost-for-mysql) ; use this instead of the bundled boost sources
9508 ("zlib" ,zlib)))
9509 (propagated-inputs
9510 `(("r-biobase" ,r-biobase)
9511 ("r-biocgenerics" ,r-biocgenerics)
9512 ("r-ncdf4" ,r-ncdf4)
9513 ("r-protgenerics" ,r-protgenerics)
9514 ("r-rcpp" ,r-rcpp)
9515 ("r-rhdf5lib" ,r-rhdf5lib)
9516 ("r-zlibbioc" ,r-zlibbioc)))
9517 (native-inputs
9518 `(("r-knitr" ,r-knitr)))
9519 (home-page "https://github.com/sneumann/mzR/")
9520 (synopsis "Parser for mass spectrometry data files")
9521 (description
9522 "The mzR package provides a unified API to the common file formats and
9523 parsers available for mass spectrometry data. It comes with a wrapper for the
9524 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
9525 The package contains the original code written by the ISB, and a subset of the
9526 proteowizard library for mzML and mzIdentML. The netCDF reading code has
9527 previously been used in XCMS.")
9528 (license license:artistic2.0)))
9529
9530 (define-public r-affyio
9531 (package
9532 (name "r-affyio")
9533 (version "1.58.0")
9534 (source
9535 (origin
9536 (method url-fetch)
9537 (uri (bioconductor-uri "affyio" version))
9538 (sha256
9539 (base32
9540 "0j1f61409yq6hmkqrpzamfm7dx35rlq33ccs7wb1qcqx3d3nb75q"))))
9541 (build-system r-build-system)
9542 (propagated-inputs
9543 `(("r-zlibbioc" ,r-zlibbioc)))
9544 (inputs
9545 `(("zlib" ,zlib)))
9546 (home-page "https://github.com/bmbolstad/affyio")
9547 (synopsis "Tools for parsing Affymetrix data files")
9548 (description
9549 "This package provides routines for parsing Affymetrix data files based
9550 upon file format information. The primary focus is on accessing the CEL and
9551 CDF file formats.")
9552 (license license:lgpl2.0+)))
9553
9554 (define-public r-affy
9555 (package
9556 (name "r-affy")
9557 (version "1.66.0")
9558 (source
9559 (origin
9560 (method url-fetch)
9561 (uri (bioconductor-uri "affy" version))
9562 (sha256
9563 (base32
9564 "0m6hkyjxmsf80n3anhwh9k26csxczv6v92fkb7klnchdski61pyc"))))
9565 (build-system r-build-system)
9566 (propagated-inputs
9567 `(("r-affyio" ,r-affyio)
9568 ("r-biobase" ,r-biobase)
9569 ("r-biocgenerics" ,r-biocgenerics)
9570 ("r-biocmanager" ,r-biocmanager)
9571 ("r-preprocesscore" ,r-preprocesscore)
9572 ("r-zlibbioc" ,r-zlibbioc)))
9573 (inputs
9574 `(("zlib" ,zlib)))
9575 (home-page "https://bioconductor.org/packages/affy")
9576 (synopsis "Methods for affymetrix oligonucleotide arrays")
9577 (description
9578 "This package contains functions for exploratory oligonucleotide array
9579 analysis.")
9580 (license license:lgpl2.0+)))
9581
9582 (define-public r-vsn
9583 (package
9584 (name "r-vsn")
9585 (version "3.56.0")
9586 (source
9587 (origin
9588 (method url-fetch)
9589 (uri (bioconductor-uri "vsn" version))
9590 (sha256
9591 (base32
9592 "1k82dikrv1gcync5y1131wg7z1kxv2z2jl4nndg20bixc3398h58"))))
9593 (build-system r-build-system)
9594 (propagated-inputs
9595 `(("r-affy" ,r-affy)
9596 ("r-biobase" ,r-biobase)
9597 ("r-ggplot2" ,r-ggplot2)
9598 ("r-lattice" ,r-lattice)
9599 ("r-limma" ,r-limma)))
9600 (native-inputs
9601 `(("r-knitr" ,r-knitr))) ; for vignettes
9602 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
9603 (synopsis "Variance stabilization and calibration for microarray data")
9604 (description
9605 "The package implements a method for normalising microarray intensities,
9606 and works for single- and multiple-color arrays. It can also be used for data
9607 from other technologies, as long as they have similar format. The method uses
9608 a robust variant of the maximum-likelihood estimator for an
9609 additive-multiplicative error model and affine calibration. The model
9610 incorporates data calibration step (a.k.a. normalization), a model for the
9611 dependence of the variance on the mean intensity and a variance stabilizing
9612 data transformation. Differences between transformed intensities are
9613 analogous to \"normalized log-ratios\". However, in contrast to the latter,
9614 their variance is independent of the mean, and they are usually more sensitive
9615 and specific in detecting differential transcription.")
9616 (license license:artistic2.0)))
9617
9618 (define-public r-mzid
9619 (package
9620 (name "r-mzid")
9621 (version "1.26.0")
9622 (source
9623 (origin
9624 (method url-fetch)
9625 (uri (bioconductor-uri "mzID" version))
9626 (sha256
9627 (base32
9628 "0y50lzkdamkpz67f6r5whp246qsxpbammjil7g8vjprx0c4jk5n5"))))
9629 (properties `((upstream-name . "mzID")))
9630 (build-system r-build-system)
9631 (propagated-inputs
9632 `(("r-doparallel" ,r-doparallel)
9633 ("r-foreach" ,r-foreach)
9634 ("r-iterators" ,r-iterators)
9635 ("r-plyr" ,r-plyr)
9636 ("r-protgenerics" ,r-protgenerics)
9637 ("r-rcpp" ,r-rcpp)
9638 ("r-xml" ,r-xml)))
9639 (native-inputs
9640 `(("r-knitr" ,r-knitr)))
9641 (home-page "https://bioconductor.org/packages/mzID")
9642 (synopsis "Parser for mzIdentML files")
9643 (description
9644 "This package provides a parser for mzIdentML files implemented using the
9645 XML package. The parser tries to be general and able to handle all types of
9646 mzIdentML files with the drawback of having less pretty output than a vendor
9647 specific parser.")
9648 (license license:gpl2+)))
9649
9650 (define-public r-pcamethods
9651 (package
9652 (name "r-pcamethods")
9653 (version "1.80.0")
9654 (source
9655 (origin
9656 (method url-fetch)
9657 (uri (bioconductor-uri "pcaMethods" version))
9658 (sha256
9659 (base32
9660 "10cww4jxyynkwxbbsx804nwac31j0hh8dgisygld0q663gaxkgni"))))
9661 (properties `((upstream-name . "pcaMethods")))
9662 (build-system r-build-system)
9663 (propagated-inputs
9664 `(("r-biobase" ,r-biobase)
9665 ("r-biocgenerics" ,r-biocgenerics)
9666 ("r-mass" ,r-mass)
9667 ("r-rcpp" ,r-rcpp)))
9668 (home-page "https://github.com/hredestig/pcamethods")
9669 (synopsis "Collection of PCA methods")
9670 (description
9671 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
9672 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
9673 for missing value estimation is included for comparison. BPCA, PPCA and
9674 NipalsPCA may be used to perform PCA on incomplete data as well as for
9675 accurate missing value estimation. A set of methods for printing and plotting
9676 the results is also provided. All PCA methods make use of the same data
9677 structure (pcaRes) to provide a common interface to the PCA results.")
9678 (license license:gpl3+)))
9679
9680 (define-public r-msnbase
9681 (package
9682 (name "r-msnbase")
9683 (version "2.14.2")
9684 (source
9685 (origin
9686 (method url-fetch)
9687 (uri (bioconductor-uri "MSnbase" version))
9688 (sha256
9689 (base32
9690 "17vlv9gh41s1hp043b7j1jfqiw52alh1misjzy1kxl0g90rld00l"))))
9691 (properties `((upstream-name . "MSnbase")))
9692 (build-system r-build-system)
9693 (propagated-inputs
9694 `(("r-affy" ,r-affy)
9695 ("r-biobase" ,r-biobase)
9696 ("r-biocgenerics" ,r-biocgenerics)
9697 ("r-biocparallel" ,r-biocparallel)
9698 ("r-digest" ,r-digest)
9699 ("r-ggplot2" ,r-ggplot2)
9700 ("r-impute" ,r-impute)
9701 ("r-iranges" ,r-iranges)
9702 ("r-lattice" ,r-lattice)
9703 ("r-maldiquant" ,r-maldiquant)
9704 ("r-mass" ,r-mass)
9705 ("r-mzid" ,r-mzid)
9706 ("r-mzr" ,r-mzr)
9707 ("r-pcamethods" ,r-pcamethods)
9708 ("r-plyr" ,r-plyr)
9709 ("r-preprocesscore" ,r-preprocesscore)
9710 ("r-protgenerics" ,r-protgenerics)
9711 ("r-rcpp" ,r-rcpp)
9712 ("r-s4vectors" ,r-s4vectors)
9713 ("r-scales" ,r-scales)
9714 ("r-vsn" ,r-vsn)
9715 ("r-xml" ,r-xml)))
9716 (native-inputs
9717 `(("r-knitr" ,r-knitr)))
9718 (home-page "https://github.com/lgatto/MSnbase")
9719 (synopsis "Base functions and classes for MS-based proteomics")
9720 (description
9721 "This package provides basic plotting, data manipulation and processing
9722 of mass spectrometry based proteomics data.")
9723 (license license:artistic2.0)))
9724
9725 (define-public r-msnid
9726 (package
9727 (name "r-msnid")
9728 (version "1.22.0")
9729 (source
9730 (origin
9731 (method url-fetch)
9732 (uri (bioconductor-uri "MSnID" version))
9733 (sha256
9734 (base32
9735 "0dwa6j2nqb3223a8g4f453aznjh69wngrpvdi12iy69j1psbbjcc"))))
9736 (properties `((upstream-name . "MSnID")))
9737 (build-system r-build-system)
9738 (propagated-inputs
9739 `(("r-biobase" ,r-biobase)
9740 ("r-data-table" ,r-data-table)
9741 ("r-doparallel" ,r-doparallel)
9742 ("r-dplyr" ,r-dplyr)
9743 ("r-foreach" ,r-foreach)
9744 ("r-iterators" ,r-iterators)
9745 ("r-msnbase" ,r-msnbase)
9746 ("r-mzid" ,r-mzid)
9747 ("r-mzr" ,r-mzr)
9748 ("r-protgenerics" ,r-protgenerics)
9749 ("r-r-cache" ,r-r-cache)
9750 ("r-rcpp" ,r-rcpp)
9751 ("r-reshape2" ,r-reshape2)))
9752 (home-page "https://bioconductor.org/packages/MSnID")
9753 (synopsis "Utilities for LC-MSn proteomics identifications")
9754 (description
9755 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
9756 from mzIdentML (leveraging the mzID package) or text files. After collating
9757 the search results from multiple datasets it assesses their identification
9758 quality and optimize filtering criteria to achieve the maximum number of
9759 identifications while not exceeding a specified false discovery rate. It also
9760 contains a number of utilities to explore the MS/MS results and assess missed
9761 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
9762 (license license:artistic2.0)))
9763
9764 (define-public r-seurat
9765 (package
9766 (name "r-seurat")
9767 (version "3.2.0")
9768 (source (origin
9769 (method url-fetch)
9770 (uri (cran-uri "Seurat" version))
9771 (sha256
9772 (base32
9773 "1vj3dlsqakgnn4x1jz9fkl2cy0jzc5s65h1c20fnamr7lk45pnf2"))))
9774 (properties `((upstream-name . "Seurat")))
9775 (build-system r-build-system)
9776 (propagated-inputs
9777 `(("r-ape" ,r-ape)
9778 ("r-cluster" ,r-cluster)
9779 ("r-cowplot" ,r-cowplot)
9780 ("r-fitdistrplus" ,r-fitdistrplus)
9781 ("r-future" ,r-future)
9782 ("r-future-apply" ,r-future-apply)
9783 ("r-ggplot2" ,r-ggplot2)
9784 ("r-ggrepel" ,r-ggrepel)
9785 ("r-ggridges" ,r-ggridges)
9786 ("r-httr" ,r-httr)
9787 ("r-ica" ,r-ica)
9788 ("r-igraph" ,r-igraph)
9789 ("r-irlba" ,r-irlba)
9790 ("r-jsonlite" ,r-jsonlite)
9791 ("r-kernsmooth" ,r-kernsmooth)
9792 ("r-leiden" ,r-leiden)
9793 ("r-lmtest" ,r-lmtest)
9794 ("r-mass" ,r-mass)
9795 ("r-matrix" ,r-matrix)
9796 ("r-miniui" ,r-miniui)
9797 ("r-patchwork" ,r-patchwork)
9798 ("r-pbapply" ,r-pbapply)
9799 ("r-plotly" ,r-plotly)
9800 ("r-png" ,r-png)
9801 ("r-rann" ,r-rann)
9802 ("r-rcolorbrewer" ,r-rcolorbrewer)
9803 ("r-rcpp" ,r-rcpp)
9804 ("r-rcppannoy" ,r-rcppannoy)
9805 ("r-rcppeigen" ,r-rcppeigen)
9806 ("r-rcppprogress" ,r-rcppprogress)
9807 ("r-reticulate" ,r-reticulate)
9808 ("r-rlang" ,r-rlang)
9809 ("r-rocr" ,r-rocr)
9810 ("r-rsvd" ,r-rsvd)
9811 ("r-rtsne" ,r-rtsne)
9812 ("r-scales" ,r-scales)
9813 ("r-sctransform" ,r-sctransform)
9814 ("r-shiny" ,r-shiny)
9815 ("r-spatstat" ,r-spatstat)
9816 ("r-tibble" ,r-tibble)
9817 ("r-uwot" ,r-uwot)))
9818 (home-page "http://www.satijalab.org/seurat")
9819 (synopsis "Seurat is an R toolkit for single cell genomics")
9820 (description
9821 "This package is an R package designed for QC, analysis, and
9822 exploration of single cell RNA-seq data. It easily enables widely-used
9823 analytical techniques, including the identification of highly variable genes,
9824 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
9825 algorithms; density clustering, hierarchical clustering, k-means, and the
9826 discovery of differentially expressed genes and markers.")
9827 (license license:gpl3)))
9828
9829 (define-public r-aroma-light
9830 (package
9831 (name "r-aroma-light")
9832 (version "3.18.0")
9833 (source
9834 (origin
9835 (method url-fetch)
9836 (uri (bioconductor-uri "aroma.light" version))
9837 (sha256
9838 (base32
9839 "19y5f2minx2pp73zdh43v1qkwpkaxygkl8cwlnwja15i46s0bcyc"))))
9840 (properties `((upstream-name . "aroma.light")))
9841 (build-system r-build-system)
9842 (propagated-inputs
9843 `(("r-matrixstats" ,r-matrixstats)
9844 ("r-r-methodss3" ,r-r-methodss3)
9845 ("r-r-oo" ,r-r-oo)
9846 ("r-r-utils" ,r-r-utils)))
9847 (home-page "https://github.com/HenrikBengtsson/aroma.light")
9848 (synopsis "Methods for normalization and visualization of microarray data")
9849 (description
9850 "This package provides methods for microarray analysis that take basic
9851 data types such as matrices and lists of vectors. These methods can be used
9852 standalone, be utilized in other packages, or be wrapped up in higher-level
9853 classes.")
9854 (license license:gpl2+)))
9855
9856 (define-public r-deseq
9857 (package
9858 (name "r-deseq")
9859 (version "1.39.0")
9860 (source
9861 (origin
9862 (method url-fetch)
9863 (uri (bioconductor-uri "DESeq" version))
9864 (sha256
9865 (base32
9866 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
9867 (properties `((upstream-name . "DESeq")))
9868 (build-system r-build-system)
9869 (propagated-inputs
9870 `(("r-biobase" ,r-biobase)
9871 ("r-biocgenerics" ,r-biocgenerics)
9872 ("r-genefilter" ,r-genefilter)
9873 ("r-geneplotter" ,r-geneplotter)
9874 ("r-lattice" ,r-lattice)
9875 ("r-locfit" ,r-locfit)
9876 ("r-mass" ,r-mass)
9877 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9878 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
9879 (synopsis "Differential gene expression analysis")
9880 (description
9881 "This package provides tools for estimating variance-mean dependence in
9882 count data from high-throughput genetic sequencing assays and for testing for
9883 differential expression based on a model using the negative binomial
9884 distribution.")
9885 (license license:gpl3+)))
9886
9887 (define-public r-edaseq
9888 (package
9889 (name "r-edaseq")
9890 (version "2.22.0")
9891 (source
9892 (origin
9893 (method url-fetch)
9894 (uri (bioconductor-uri "EDASeq" version))
9895 (sha256
9896 (base32
9897 "12gzxjh73qshlwvsf92lbrf4bi199kxg2snrkprh1z4yqf7bjfm4"))))
9898 (properties `((upstream-name . "EDASeq")))
9899 (build-system r-build-system)
9900 (propagated-inputs
9901 `(("r-annotationdbi" ,r-annotationdbi)
9902 ("r-aroma-light" ,r-aroma-light)
9903 ("r-biobase" ,r-biobase)
9904 ("r-biocgenerics" ,r-biocgenerics)
9905 ("r-biocmanager" ,r-biocmanager)
9906 ("r-biomart" ,r-biomart)
9907 ("r-biostrings" ,r-biostrings)
9908 ("r-deseq" ,r-deseq)
9909 ("r-genomicfeatures" ,r-genomicfeatures)
9910 ("r-genomicranges" ,r-genomicranges)
9911 ("r-iranges" ,r-iranges)
9912 ("r-rsamtools" ,r-rsamtools)
9913 ("r-shortread" ,r-shortread)))
9914 (native-inputs
9915 `(("r-knitr" ,r-knitr)))
9916 (home-page "https://github.com/drisso/EDASeq")
9917 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
9918 (description
9919 "This package provides support for numerical and graphical summaries of
9920 RNA-Seq genomic read data. Provided within-lane normalization procedures to
9921 adjust for GC-content effect (or other gene-level effects) on read counts:
9922 loess robust local regression, global-scaling, and full-quantile
9923 normalization. Between-lane normalization procedures to adjust for
9924 distributional differences between lanes (e.g., sequencing depth):
9925 global-scaling and full-quantile normalization.")
9926 (license license:artistic2.0)))
9927
9928 (define-public r-interactivedisplaybase
9929 (package
9930 (name "r-interactivedisplaybase")
9931 (version "1.26.3")
9932 (source
9933 (origin
9934 (method url-fetch)
9935 (uri (bioconductor-uri "interactiveDisplayBase" version))
9936 (sha256
9937 (base32
9938 "1x5vipqa4pgwpd62c1c58shnlpv3zyzzpf4wdwr00q1swkdb7wv3"))))
9939 (properties
9940 `((upstream-name . "interactiveDisplayBase")))
9941 (build-system r-build-system)
9942 (propagated-inputs
9943 `(("r-biocgenerics" ,r-biocgenerics)
9944 ("r-dt" ,r-dt)
9945 ("r-shiny" ,r-shiny)))
9946 (native-inputs
9947 `(("r-knitr" ,r-knitr)))
9948 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
9949 (synopsis "Base package for web displays of Bioconductor objects")
9950 (description
9951 "This package contains the basic methods needed to generate interactive
9952 Shiny-based display methods for Bioconductor objects.")
9953 (license license:artistic2.0)))
9954
9955 (define-public r-annotationhub
9956 (package
9957 (name "r-annotationhub")
9958 (version "2.20.2")
9959 (source
9960 (origin
9961 (method url-fetch)
9962 (uri (bioconductor-uri "AnnotationHub" version))
9963 (sha256
9964 (base32
9965 "04bz91m2wx1zm61rvpr0syyklz232fw74wrl73d965wi3x8fyda5"))))
9966 (properties `((upstream-name . "AnnotationHub")))
9967 (build-system r-build-system)
9968 (propagated-inputs
9969 `(("r-annotationdbi" ,r-annotationdbi)
9970 ("r-biocfilecache" ,r-biocfilecache)
9971 ("r-biocgenerics" ,r-biocgenerics)
9972 ("r-biocmanager" ,r-biocmanager)
9973 ("r-biocversion" ,r-biocversion)
9974 ("r-curl" ,r-curl)
9975 ("r-dplyr" ,r-dplyr)
9976 ("r-httr" ,r-httr)
9977 ("r-interactivedisplaybase" ,r-interactivedisplaybase)
9978 ("r-rappdirs" ,r-rappdirs)
9979 ("r-rsqlite" ,r-rsqlite)
9980 ("r-s4vectors" ,r-s4vectors)
9981 ("r-yaml" ,r-yaml)))
9982 (native-inputs
9983 `(("r-knitr" ,r-knitr)))
9984 (home-page "https://bioconductor.org/packages/AnnotationHub")
9985 (synopsis "Client to access AnnotationHub resources")
9986 (description
9987 "This package provides a client for the Bioconductor AnnotationHub web
9988 resource. The AnnotationHub web resource provides a central location where
9989 genomic files (e.g. VCF, bed, wig) and other resources from standard
9990 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
9991 metadata about each resource, e.g., a textual description, tags, and date of
9992 modification. The client creates and manages a local cache of files retrieved
9993 by the user, helping with quick and reproducible access.")
9994 (license license:artistic2.0)))
9995
9996 (define-public r-fastseg
9997 (package
9998 (name "r-fastseg")
9999 (version "1.34.0")
10000 (source
10001 (origin
10002 (method url-fetch)
10003 (uri (bioconductor-uri "fastseg" version))
10004 (sha256
10005 (base32
10006 "1d48n245pzmvcpsz93lxb4frqh222gfhpmlvm0sb74skn16way63"))))
10007 (build-system r-build-system)
10008 (propagated-inputs
10009 `(("r-biobase" ,r-biobase)
10010 ("r-biocgenerics" ,r-biocgenerics)
10011 ("r-genomicranges" ,r-genomicranges)
10012 ("r-iranges" ,r-iranges)
10013 ("r-s4vectors" ,r-s4vectors)))
10014 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
10015 (synopsis "Fast segmentation algorithm for genetic sequencing data")
10016 (description
10017 "Fastseg implements a very fast and efficient segmentation algorithm.
10018 It can segment data from DNA microarrays and data from next generation
10019 sequencing for example to detect copy number segments. Further it can segment
10020 data from RNA microarrays like tiling arrays to identify transcripts. Most
10021 generally, it can segment data given as a matrix or as a vector. Various data
10022 formats can be used as input to fastseg like expression set objects for
10023 microarrays or GRanges for sequencing data.")
10024 (license license:lgpl2.0+)))
10025
10026 (define-public r-keggrest
10027 (package
10028 (name "r-keggrest")
10029 (version "1.28.0")
10030 (source
10031 (origin
10032 (method url-fetch)
10033 (uri (bioconductor-uri "KEGGREST" version))
10034 (sha256
10035 (base32
10036 "0q76w17fya2x0z7mvyhkk5kqh07flldgih13ma44vhcy1bdlm6j1"))))
10037 (properties `((upstream-name . "KEGGREST")))
10038 (build-system r-build-system)
10039 (propagated-inputs
10040 `(("r-biostrings" ,r-biostrings)
10041 ("r-httr" ,r-httr)
10042 ("r-png" ,r-png)))
10043 (native-inputs
10044 `(("r-knitr" ,r-knitr)))
10045 (home-page "https://bioconductor.org/packages/KEGGREST")
10046 (synopsis "Client-side REST access to KEGG")
10047 (description
10048 "This package provides a package that provides a client interface to the
10049 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
10050 (license license:artistic2.0)))
10051
10052 (define-public r-gage
10053 (package
10054 (name "r-gage")
10055 (version "2.38.3")
10056 (source
10057 (origin
10058 (method url-fetch)
10059 (uri (bioconductor-uri "gage" version))
10060 (sha256
10061 (base32
10062 "1bqmvjiya1df0b3h491lp1jxahiyidvaf9n094z0sk84x5y3xh2p"))))
10063 (build-system r-build-system)
10064 (propagated-inputs
10065 `(("r-annotationdbi" ,r-annotationdbi)
10066 ("r-go-db" ,r-go-db)
10067 ("r-graph" ,r-graph)
10068 ("r-keggrest" ,r-keggrest)))
10069 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
10070 "articles/10.1186/1471-2105-10-161"))
10071 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
10072 (description
10073 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
10074 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
10075 data attributes including sample sizes, experimental designs, assay platforms,
10076 and other types of heterogeneity. The gage package provides functions for
10077 basic GAGE analysis, result processing and presentation. In addition, it
10078 provides demo microarray data and commonly used gene set data based on KEGG
10079 pathways and GO terms. These functions and data are also useful for gene set
10080 analysis using other methods.")
10081 (license license:gpl2+)))
10082
10083 (define-public r-genomicfiles
10084 (package
10085 (name "r-genomicfiles")
10086 (version "1.24.0")
10087 (source
10088 (origin
10089 (method url-fetch)
10090 (uri (bioconductor-uri "GenomicFiles" version))
10091 (sha256
10092 (base32
10093 "1k3824pzf9fdqvcv6cz2742q3mabpmncrc72hwa21ac8wy1b04n4"))))
10094 (properties `((upstream-name . "GenomicFiles")))
10095 (build-system r-build-system)
10096 (propagated-inputs
10097 `(("r-biocgenerics" ,r-biocgenerics)
10098 ("r-biocparallel" ,r-biocparallel)
10099 ("r-genomeinfodb" ,r-genomeinfodb)
10100 ("r-genomicalignments" ,r-genomicalignments)
10101 ("r-genomicranges" ,r-genomicranges)
10102 ("r-iranges" ,r-iranges)
10103 ("r-rsamtools" ,r-rsamtools)
10104 ("r-rtracklayer" ,r-rtracklayer)
10105 ("r-s4vectors" ,r-s4vectors)
10106 ("r-summarizedexperiment" ,r-summarizedexperiment)
10107 ("r-variantannotation" ,r-variantannotation)))
10108 (home-page "https://bioconductor.org/packages/GenomicFiles")
10109 (synopsis "Distributed computing by file or by range")
10110 (description
10111 "This package provides infrastructure for parallel computations
10112 distributed by file or by range. User defined mapper and reducer functions
10113 provide added flexibility for data combination and manipulation.")
10114 (license license:artistic2.0)))
10115
10116 (define-public r-complexheatmap
10117 (package
10118 (name "r-complexheatmap")
10119 (version "2.4.3")
10120 (source
10121 (origin
10122 (method url-fetch)
10123 (uri (bioconductor-uri "ComplexHeatmap" version))
10124 (sha256
10125 (base32
10126 "1gx0hzrkla92pgmfkrm2zp0ccnhizq6rs26zgzpi5x8a5lvghh5q"))))
10127 (properties
10128 `((upstream-name . "ComplexHeatmap")))
10129 (build-system r-build-system)
10130 (propagated-inputs
10131 `(("r-circlize" ,r-circlize)
10132 ("r-clue" ,r-clue)
10133 ("r-colorspace" ,r-colorspace)
10134 ("r-getoptlong" ,r-getoptlong)
10135 ("r-globaloptions" ,r-globaloptions)
10136 ("r-png" ,r-png)
10137 ("r-rcolorbrewer" ,r-rcolorbrewer)))
10138 (native-inputs
10139 `(("r-knitr" ,r-knitr)))
10140 (home-page
10141 "https://github.com/jokergoo/ComplexHeatmap")
10142 (synopsis "Making Complex Heatmaps")
10143 (description
10144 "Complex heatmaps are efficient to visualize associations between
10145 different sources of data sets and reveal potential structures. This package
10146 provides a highly flexible way to arrange multiple heatmaps and supports
10147 self-defined annotation graphics.")
10148 (license license:gpl2+)))
10149
10150 (define-public r-dirichletmultinomial
10151 (package
10152 (name "r-dirichletmultinomial")
10153 (version "1.30.0")
10154 (source
10155 (origin
10156 (method url-fetch)
10157 (uri (bioconductor-uri "DirichletMultinomial" version))
10158 (sha256
10159 (base32
10160 "1m9dsrddrllb2i88qzik1867iv9mggrgdkn0dlp8sq7gl69vmalb"))))
10161 (properties
10162 `((upstream-name . "DirichletMultinomial")))
10163 (build-system r-build-system)
10164 (inputs
10165 `(("gsl" ,gsl)))
10166 (propagated-inputs
10167 `(("r-biocgenerics" ,r-biocgenerics)
10168 ("r-iranges" ,r-iranges)
10169 ("r-s4vectors" ,r-s4vectors)))
10170 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
10171 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
10172 (description
10173 "Dirichlet-multinomial mixture models can be used to describe variability
10174 in microbial metagenomic data. This package is an interface to code
10175 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
10176 1-15.")
10177 (license license:lgpl3)))
10178
10179 (define-public r-ensembldb
10180 (package
10181 (name "r-ensembldb")
10182 (version "2.12.1")
10183 (source
10184 (origin
10185 (method url-fetch)
10186 (uri (bioconductor-uri "ensembldb" version))
10187 (sha256
10188 (base32
10189 "1vvchc04nshxc768fp31rxb603aj3hmq8xlh5qabcwf2c3z9719g"))))
10190 (build-system r-build-system)
10191 (propagated-inputs
10192 `(("r-annotationdbi" ,r-annotationdbi)
10193 ("r-annotationfilter" ,r-annotationfilter)
10194 ("r-biobase" ,r-biobase)
10195 ("r-biocgenerics" ,r-biocgenerics)
10196 ("r-biostrings" ,r-biostrings)
10197 ("r-curl" ,r-curl)
10198 ("r-dbi" ,r-dbi)
10199 ("r-genomeinfodb" ,r-genomeinfodb)
10200 ("r-genomicfeatures" ,r-genomicfeatures)
10201 ("r-genomicranges" ,r-genomicranges)
10202 ("r-iranges" ,r-iranges)
10203 ("r-protgenerics" ,r-protgenerics)
10204 ("r-rsamtools" ,r-rsamtools)
10205 ("r-rsqlite" ,r-rsqlite)
10206 ("r-rtracklayer" ,r-rtracklayer)
10207 ("r-s4vectors" ,r-s4vectors)))
10208 (native-inputs
10209 `(("r-knitr" ,r-knitr)))
10210 (home-page "https://github.com/jotsetung/ensembldb")
10211 (synopsis "Utilities to create and use Ensembl-based annotation databases")
10212 (description
10213 "The package provides functions to create and use transcript-centric
10214 annotation databases/packages. The annotation for the databases are directly
10215 fetched from Ensembl using their Perl API. The functionality and data is
10216 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
10217 but, in addition to retrieve all gene/transcript models and annotations from
10218 the database, the @code{ensembldb} package also provides a filter framework
10219 allowing to retrieve annotations for specific entries like genes encoded on a
10220 chromosome region or transcript models of lincRNA genes.")
10221 ;; No version specified
10222 (license license:lgpl3+)))
10223
10224 (define-public r-organismdbi
10225 (package
10226 (name "r-organismdbi")
10227 (version "1.30.0")
10228 (source
10229 (origin
10230 (method url-fetch)
10231 (uri (bioconductor-uri "OrganismDbi" version))
10232 (sha256
10233 (base32
10234 "194h5576inq44qr666snzq0ygnc77rk5ljkn9bn8zs6x6gb3cwaw"))))
10235 (properties `((upstream-name . "OrganismDbi")))
10236 (build-system r-build-system)
10237 (propagated-inputs
10238 `(("r-annotationdbi" ,r-annotationdbi)
10239 ("r-biobase" ,r-biobase)
10240 ("r-biocgenerics" ,r-biocgenerics)
10241 ("r-biocmanager" ,r-biocmanager)
10242 ("r-dbi" ,r-dbi)
10243 ("r-genomicfeatures" ,r-genomicfeatures)
10244 ("r-genomicranges" ,r-genomicranges)
10245 ("r-graph" ,r-graph)
10246 ("r-iranges" ,r-iranges)
10247 ("r-rbgl" ,r-rbgl)
10248 ("r-s4vectors" ,r-s4vectors)))
10249 (home-page "https://bioconductor.org/packages/OrganismDbi")
10250 (synopsis "Software to enable the smooth interfacing of database packages")
10251 (description "The package enables a simple unified interface to several
10252 annotation packages each of which has its own schema by taking advantage of
10253 the fact that each of these packages implements a select methods.")
10254 (license license:artistic2.0)))
10255
10256 (define-public r-biovizbase
10257 (package
10258 (name "r-biovizbase")
10259 (version "1.36.0")
10260 (source
10261 (origin
10262 (method url-fetch)
10263 (uri (bioconductor-uri "biovizBase" version))
10264 (sha256
10265 (base32
10266 "1vq2mxa2jkljgw75zqjdkyml0ppi5dspvwj4cznfhi31cq8ds0qh"))))
10267 (properties `((upstream-name . "biovizBase")))
10268 (build-system r-build-system)
10269 (propagated-inputs
10270 `(("r-annotationdbi" ,r-annotationdbi)
10271 ("r-annotationfilter" ,r-annotationfilter)
10272 ("r-biocgenerics" ,r-biocgenerics)
10273 ("r-biostrings" ,r-biostrings)
10274 ("r-dichromat" ,r-dichromat)
10275 ("r-ensembldb" ,r-ensembldb)
10276 ("r-genomeinfodb" ,r-genomeinfodb)
10277 ("r-genomicalignments" ,r-genomicalignments)
10278 ("r-genomicfeatures" ,r-genomicfeatures)
10279 ("r-genomicranges" ,r-genomicranges)
10280 ("r-hmisc" ,r-hmisc)
10281 ("r-iranges" ,r-iranges)
10282 ("r-rcolorbrewer" ,r-rcolorbrewer)
10283 ("r-rlang" ,r-rlang)
10284 ("r-rsamtools" ,r-rsamtools)
10285 ("r-s4vectors" ,r-s4vectors)
10286 ("r-scales" ,r-scales)
10287 ("r-summarizedexperiment" ,r-summarizedexperiment)
10288 ("r-variantannotation" ,r-variantannotation)))
10289 (home-page "https://bioconductor.org/packages/biovizBase")
10290 (synopsis "Basic graphic utilities for visualization of genomic data")
10291 (description
10292 "The biovizBase package is designed to provide a set of utilities, color
10293 schemes and conventions for genomic data. It serves as the base for various
10294 high-level packages for biological data visualization. This saves development
10295 effort and encourages consistency.")
10296 (license license:artistic2.0)))
10297
10298 (define-public r-ggbio
10299 (package
10300 (name "r-ggbio")
10301 (version "1.36.0")
10302 (source
10303 (origin
10304 (method url-fetch)
10305 (uri (bioconductor-uri "ggbio" version))
10306 (sha256
10307 (base32
10308 "11ggnqjq42fi2hm9xlvrrlr2xhy4kglvl1a0mycp1s4v67lxw5h5"))))
10309 (build-system r-build-system)
10310 (arguments
10311 `(#:phases
10312 (modify-phases %standard-phases
10313 ;; See https://github.com/tengfei/ggbio/issues/117
10314 ;; This fix will be included in the next release.
10315 (add-after 'unpack 'fix-typo
10316 (lambda _
10317 (substitute* "R/GGbio-class.R"
10318 (("fechable") "fetchable"))
10319 #t)))))
10320 (propagated-inputs
10321 `(("r-annotationdbi" ,r-annotationdbi)
10322 ("r-annotationfilter" ,r-annotationfilter)
10323 ("r-biobase" ,r-biobase)
10324 ("r-biocgenerics" ,r-biocgenerics)
10325 ("r-biostrings" ,r-biostrings)
10326 ("r-biovizbase" ,r-biovizbase)
10327 ("r-bsgenome" ,r-bsgenome)
10328 ("r-ensembldb" ,r-ensembldb)
10329 ("r-genomeinfodb" ,r-genomeinfodb)
10330 ("r-genomicalignments" ,r-genomicalignments)
10331 ("r-genomicfeatures" ,r-genomicfeatures)
10332 ("r-genomicranges" ,r-genomicranges)
10333 ("r-ggally" ,r-ggally)
10334 ("r-ggplot2" ,r-ggplot2)
10335 ("r-gridextra" ,r-gridextra)
10336 ("r-gtable" ,r-gtable)
10337 ("r-hmisc" ,r-hmisc)
10338 ("r-iranges" ,r-iranges)
10339 ("r-organismdbi" ,r-organismdbi)
10340 ("r-reshape2" ,r-reshape2)
10341 ("r-rlang" ,r-rlang)
10342 ("r-rsamtools" ,r-rsamtools)
10343 ("r-rtracklayer" ,r-rtracklayer)
10344 ("r-s4vectors" ,r-s4vectors)
10345 ("r-scales" ,r-scales)
10346 ("r-summarizedexperiment" ,r-summarizedexperiment)
10347 ("r-variantannotation" ,r-variantannotation)))
10348 (native-inputs
10349 `(("r-knitr" ,r-knitr)))
10350 (home-page "http://www.tengfei.name/ggbio/")
10351 (synopsis "Visualization tools for genomic data")
10352 (description
10353 "The ggbio package extends and specializes the grammar of graphics for
10354 biological data. The graphics are designed to answer common scientific
10355 questions, in particular those often asked of high throughput genomics data.
10356 All core Bioconductor data structures are supported, where appropriate. The
10357 package supports detailed views of particular genomic regions, as well as
10358 genome-wide overviews. Supported overviews include ideograms and grand linear
10359 views. High-level plots include sequence fragment length, edge-linked
10360 interval to data view, mismatch pileup, and several splicing summaries.")
10361 (license license:artistic2.0)))
10362
10363 (define-public r-gqtlbase
10364 (package
10365 (name "r-gqtlbase")
10366 (version "1.20.0")
10367 (source
10368 (origin
10369 (method url-fetch)
10370 (uri (bioconductor-uri "gQTLBase" version))
10371 (sha256
10372 (base32
10373 "06xvzp4fn3qfa46ggg8kxi267gbyd821vvx4040173xkqxpr0g5j"))))
10374 (properties `((upstream-name . "gQTLBase")))
10375 (build-system r-build-system)
10376 (propagated-inputs
10377 `(("r-batchjobs" ,r-batchjobs)
10378 ("r-bbmisc" ,r-bbmisc)
10379 ("r-biocgenerics" ,r-biocgenerics)
10380 ("r-bit" ,r-bit)
10381 ("r-doparallel" ,r-doparallel)
10382 ("r-ff" ,r-ff)
10383 ("r-ffbase" ,r-ffbase)
10384 ("r-foreach" ,r-foreach)
10385 ("r-genomicfiles" ,r-genomicfiles)
10386 ("r-genomicranges" ,r-genomicranges)
10387 ("r-rtracklayer" ,r-rtracklayer)
10388 ("r-s4vectors" ,r-s4vectors)
10389 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10390 (native-inputs
10391 `(("r-knitr" ,r-knitr)))
10392 (home-page "https://bioconductor.org/packages/gQTLBase")
10393 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
10394 (description
10395 "The purpose of this package is to simplify the storage and interrogation
10396 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
10397 and more.")
10398 (license license:artistic2.0)))
10399
10400 (define-public r-snpstats
10401 (package
10402 (name "r-snpstats")
10403 (version "1.38.0")
10404 (source
10405 (origin
10406 (method url-fetch)
10407 (uri (bioconductor-uri "snpStats" version))
10408 (sha256
10409 (base32
10410 "1qv3nqqr30d3n66mawqd9dbl95dl89r4bcjvkc5iassy1yrwr8wq"))))
10411 (properties `((upstream-name . "snpStats")))
10412 (build-system r-build-system)
10413 (inputs `(("zlib" ,zlib)))
10414 (propagated-inputs
10415 `(("r-biocgenerics" ,r-biocgenerics)
10416 ("r-matrix" ,r-matrix)
10417 ("r-survival" ,r-survival)
10418 ("r-zlibbioc" ,r-zlibbioc)))
10419 (home-page "https://bioconductor.org/packages/snpStats")
10420 (synopsis "Methods for SNP association studies")
10421 (description
10422 "This package provides classes and statistical methods for large
10423 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
10424 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
10425 (license license:gpl3)))
10426
10427 (define-public r-homo-sapiens
10428 (package
10429 (name "r-homo-sapiens")
10430 (version "1.3.1")
10431 (source (origin
10432 (method url-fetch)
10433 ;; We cannot use bioconductor-uri here because this tarball is
10434 ;; located under "data/annotation/" instead of "bioc/".
10435 (uri (string-append "https://www.bioconductor.org/packages/"
10436 "release/data/annotation/src/contrib/"
10437 "Homo.sapiens_"
10438 version ".tar.gz"))
10439 (sha256
10440 (base32
10441 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
10442 (properties
10443 `((upstream-name . "Homo.sapiens")))
10444 (build-system r-build-system)
10445 (propagated-inputs
10446 `(("r-genomicfeatures" ,r-genomicfeatures)
10447 ("r-go-db" ,r-go-db)
10448 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
10449 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
10450 ("r-organismdbi" ,r-organismdbi)
10451 ("r-annotationdbi" ,r-annotationdbi)))
10452 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
10453 (synopsis "Annotation package for the Homo.sapiens object")
10454 (description
10455 "This package contains the Homo.sapiens object to access data from
10456 several related annotation packages.")
10457 (license license:artistic2.0)))
10458
10459 (define-public r-erma
10460 (package
10461 (name "r-erma")
10462 (version "1.4.0")
10463 (source
10464 (origin
10465 (method url-fetch)
10466 (uri (bioconductor-uri "erma" version))
10467 (sha256
10468 (base32
10469 "1ccfbq0r48sr3h8050w8zv8402h7nx09adr0xdyqlg7kwp9vd2l3"))))
10470 (build-system r-build-system)
10471 (propagated-inputs
10472 `(("r-annotationdbi" ,r-annotationdbi)
10473 ("r-biobase" ,r-biobase)
10474 ("r-biocgenerics" ,r-biocgenerics)
10475 ("r-biocparallel" ,r-biocparallel)
10476 ("r-genomeinfodb" ,r-genomeinfodb)
10477 ("r-genomicfiles" ,r-genomicfiles)
10478 ("r-genomicranges" ,r-genomicranges)
10479 ("r-ggplot2" ,r-ggplot2)
10480 ("r-homo-sapiens" ,r-homo-sapiens)
10481 ("r-iranges" ,r-iranges)
10482 ("r-rtracklayer" ,r-rtracklayer)
10483 ("r-s4vectors" ,r-s4vectors)
10484 ("r-shiny" ,r-shiny)
10485 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10486 (native-inputs
10487 `(("r-knitr" ,r-knitr)))
10488 (home-page "https://bioconductor.org/packages/erma")
10489 (synopsis "Epigenomic road map adventures")
10490 (description
10491 "The epigenomics road map describes locations of epigenetic marks in DNA
10492 from a variety of cell types. Of interest are locations of histone
10493 modifications, sites of DNA methylation, and regions of accessible chromatin.
10494 This package presents a selection of elements of the road map including
10495 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
10496 by Ernst and Kellis.")
10497 (license license:artistic2.0)))
10498
10499 (define-public r-ldblock
10500 (package
10501 (name "r-ldblock")
10502 (version "1.18.0")
10503 (source
10504 (origin
10505 (method url-fetch)
10506 (uri (bioconductor-uri "ldblock" version))
10507 (sha256
10508 (base32
10509 "0plw00n2zfgh029ab41dnydzgv2yxrapjp770147rx9pff4dngrv"))))
10510 (build-system r-build-system)
10511 (propagated-inputs
10512 `(("r-biocgenerics" ,r-biocgenerics)
10513 ("r-ensdb-hsapiens-v75" ,r-ensdb-hsapiens-v75)
10514 ("r-ensembldb" ,r-ensembldb)
10515 ("r-genomeinfodb" ,r-genomeinfodb)
10516 ("r-genomicfiles" ,r-genomicfiles)
10517 ("r-httr" ,r-httr)
10518 ("r-matrix" ,r-matrix)
10519 ("r-rsamtools" ,r-rsamtools)
10520 ("r-snpstats" ,r-snpstats)
10521 ("r-variantannotation" ,r-variantannotation)))
10522 (native-inputs
10523 `(("r-knitr" ,r-knitr)))
10524 (home-page "https://bioconductor.org/packages/ldblock")
10525 (synopsis "Data structures for linkage disequilibrium measures in populations")
10526 (description
10527 "This package defines data structures for @dfn{linkage
10528 disequilibrium} (LD) measures in populations. Its purpose is to simplify
10529 handling of existing population-level data for the purpose of flexibly
10530 defining LD blocks.")
10531 (license license:artistic2.0)))
10532
10533 (define-public r-gqtlstats
10534 (package
10535 (name "r-gqtlstats")
10536 (version "1.20.0")
10537 (source
10538 (origin
10539 (method url-fetch)
10540 (uri (bioconductor-uri "gQTLstats" version))
10541 (sha256
10542 (base32
10543 "1jjqfpjp93nmxjn757j5mzcax96bzcqdd1gr3rsdxg7ap008l2w7"))))
10544 (properties `((upstream-name . "gQTLstats")))
10545 (build-system r-build-system)
10546 (propagated-inputs
10547 `(("r-annotationdbi" ,r-annotationdbi)
10548 ("r-batchjobs" ,r-batchjobs)
10549 ("r-bbmisc" ,r-bbmisc)
10550 ("r-beeswarm" ,r-beeswarm)
10551 ("r-biobase" ,r-biobase)
10552 ("r-biocgenerics" ,r-biocgenerics)
10553 ("r-doparallel" ,r-doparallel)
10554 ("r-dplyr" ,r-dplyr)
10555 ("r-erma" ,r-erma)
10556 ("r-ffbase" ,r-ffbase)
10557 ("r-foreach" ,r-foreach)
10558 ("r-genomeinfodb" ,r-genomeinfodb)
10559 ("r-genomicfeatures" ,r-genomicfeatures)
10560 ("r-genomicfiles" ,r-genomicfiles)
10561 ("r-genomicranges" ,r-genomicranges)
10562 ("r-ggbeeswarm" ,r-ggbeeswarm)
10563 ("r-ggplot2" ,r-ggplot2)
10564 ("r-gqtlbase" ,r-gqtlbase)
10565 ("r-hardyweinberg" ,r-hardyweinberg)
10566 ("r-homo-sapiens" ,r-homo-sapiens)
10567 ("r-iranges" ,r-iranges)
10568 ("r-limma" ,r-limma)
10569 ("r-mgcv" ,r-mgcv)
10570 ("r-plotly" ,r-plotly)
10571 ("r-reshape2" ,r-reshape2)
10572 ("r-s4vectors" ,r-s4vectors)
10573 ("r-shiny" ,r-shiny)
10574 ("r-snpstats" ,r-snpstats)
10575 ("r-summarizedexperiment" ,r-summarizedexperiment)
10576 ("r-variantannotation" ,r-variantannotation)))
10577 (native-inputs
10578 `(("r-knitr" ,r-knitr)))
10579 (home-page "https://bioconductor.org/packages/gQTLstats")
10580 (synopsis "Computationally efficient analysis for eQTL and allied studies")
10581 (description
10582 "This package provides tools for the computationally efficient analysis
10583 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
10584 The software in this package aims to support refinements and functional
10585 interpretation of members of a collection of association statistics on a
10586 family of feature/genome hypotheses.")
10587 (license license:artistic2.0)))
10588
10589 (define-public r-gviz
10590 (package
10591 (name "r-gviz")
10592 (version "1.32.0")
10593 (source
10594 (origin
10595 (method url-fetch)
10596 (uri (bioconductor-uri "Gviz" version))
10597 (sha256
10598 (base32
10599 "0cgkp0ciyy2qykqgh3vzp5mx9b4vsvacjh2jnsj3wldiapzlz08a"))))
10600 (properties `((upstream-name . "Gviz")))
10601 (build-system r-build-system)
10602 (propagated-inputs
10603 `(("r-annotationdbi" ,r-annotationdbi)
10604 ("r-biobase" ,r-biobase)
10605 ("r-biocgenerics" ,r-biocgenerics)
10606 ("r-biomart" ,r-biomart)
10607 ("r-biostrings" ,r-biostrings)
10608 ("r-biovizbase" ,r-biovizbase)
10609 ("r-bsgenome" ,r-bsgenome)
10610 ("r-digest" ,r-digest)
10611 ("r-ensembldb" ,r-ensembldb)
10612 ("r-genomeinfodb" ,r-genomeinfodb)
10613 ("r-genomicalignments" ,r-genomicalignments)
10614 ("r-genomicfeatures" ,r-genomicfeatures)
10615 ("r-genomicranges" ,r-genomicranges)
10616 ("r-iranges" ,r-iranges)
10617 ("r-lattice" ,r-lattice)
10618 ("r-latticeextra" ,r-latticeextra)
10619 ("r-matrixstats" ,r-matrixstats)
10620 ("r-rcolorbrewer" ,r-rcolorbrewer)
10621 ("r-rsamtools" ,r-rsamtools)
10622 ("r-rtracklayer" ,r-rtracklayer)
10623 ("r-s4vectors" ,r-s4vectors)
10624 ("r-xvector" ,r-xvector)))
10625 (native-inputs
10626 `(("r-knitr" ,r-knitr)))
10627 (home-page "https://bioconductor.org/packages/Gviz")
10628 (synopsis "Plotting data and annotation information along genomic coordinates")
10629 (description
10630 "Genomic data analyses requires integrated visualization of known genomic
10631 information and new experimental data. Gviz uses the biomaRt and the
10632 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
10633 and translates this to e.g. gene/transcript structures in viewports of the
10634 grid graphics package. This results in genomic information plotted together
10635 with your data.")
10636 (license license:artistic2.0)))
10637
10638 (define-public r-gwascat
10639 (package
10640 (name "r-gwascat")
10641 (version "2.20.1")
10642 (source
10643 (origin
10644 (method url-fetch)
10645 (uri (bioconductor-uri "gwascat" version))
10646 (sha256
10647 (base32
10648 "1cq5cmdrf0a0arr841yvkh6d8drc15p7mif1afr215l1s3y2dwd4"))))
10649 (build-system r-build-system)
10650 (propagated-inputs
10651 `(("r-annotationdbi" ,r-annotationdbi)
10652 ("r-biocgenerics" ,r-biocgenerics)
10653 ("r-biostrings" ,r-biostrings)
10654 ("r-genomeinfodb" ,r-genomeinfodb)
10655 ("r-genomicfeatures" ,r-genomicfeatures)
10656 ("r-genomicranges" ,r-genomicranges)
10657 ("r-ggplot2" ,r-ggplot2)
10658 ("r-iranges" ,r-iranges)
10659 ("r-rsamtools" ,r-rsamtools)
10660 ("r-rtracklayer" ,r-rtracklayer)
10661 ("r-s4vectors" ,r-s4vectors)))
10662 (native-inputs
10663 `(("r-knitr" ,r-knitr)))
10664 (home-page "https://bioconductor.org/packages/gwascat")
10665 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
10666 (description
10667 "This package provides tools for representing and modeling data in the
10668 EMBL-EBI GWAS catalog.")
10669 (license license:artistic2.0)))
10670
10671 (define-public r-sushi
10672 (package
10673 (name "r-sushi")
10674 (version "1.26.0")
10675 (source (origin
10676 (method url-fetch)
10677 (uri (bioconductor-uri "Sushi" version))
10678 (sha256
10679 (base32
10680 "17j3d5qjq5nbv99by5mq8rwr0jgh2jyyfn2nwxmwgzlmk3lgi1rb"))))
10681 (properties `((upstream-name . "Sushi")))
10682 (build-system r-build-system)
10683 (propagated-inputs
10684 `(("r-biomart" ,r-biomart)
10685 ("r-zoo" ,r-zoo)))
10686 (home-page "https://bioconductor.org/packages/Sushi")
10687 (synopsis "Tools for visualizing genomics data")
10688 (description
10689 "This package provides flexible, quantitative, and integrative genomic
10690 visualizations for publication-quality multi-panel figures.")
10691 (license license:gpl2+)))
10692
10693 (define-public r-fithic
10694 (package
10695 (name "r-fithic")
10696 (version "1.14.0")
10697 (source (origin
10698 (method url-fetch)
10699 (uri (bioconductor-uri "FitHiC" version))
10700 (sha256
10701 (base32
10702 "1dffkdxm08wq4kjd9j2v2625x3p6vbrk33a2zx94pwpgkghr72yp"))))
10703 (properties `((upstream-name . "FitHiC")))
10704 (build-system r-build-system)
10705 (propagated-inputs
10706 `(("r-data-table" ,r-data-table)
10707 ("r-fdrtool" ,r-fdrtool)
10708 ("r-rcpp" ,r-rcpp)))
10709 (native-inputs
10710 `(("r-knitr" ,r-knitr)))
10711 (home-page "https://bioconductor.org/packages/FitHiC")
10712 (synopsis "Confidence estimation for intra-chromosomal contact maps")
10713 (description
10714 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
10715 intra-chromosomal contact maps produced by genome-wide genome architecture
10716 assays such as Hi-C.")
10717 (license license:gpl2+)))
10718
10719 (define-public r-hitc
10720 (package
10721 (name "r-hitc")
10722 (version "1.32.0")
10723 (source (origin
10724 (method url-fetch)
10725 (uri (bioconductor-uri "HiTC" version))
10726 (sha256
10727 (base32
10728 "1jx2pfa7sbdz7xi466lz1h5xv126g56z73n0a5l2wrq28k47qaxy"))))
10729 (properties `((upstream-name . "HiTC")))
10730 (build-system r-build-system)
10731 (propagated-inputs
10732 `(("r-biostrings" ,r-biostrings)
10733 ("r-genomeinfodb" ,r-genomeinfodb)
10734 ("r-genomicranges" ,r-genomicranges)
10735 ("r-iranges" ,r-iranges)
10736 ("r-matrix" ,r-matrix)
10737 ("r-rcolorbrewer" ,r-rcolorbrewer)
10738 ("r-rtracklayer" ,r-rtracklayer)))
10739 (home-page "https://bioconductor.org/packages/HiTC")
10740 (synopsis "High throughput chromosome conformation capture analysis")
10741 (description
10742 "The HiTC package was developed to explore high-throughput \"C\" data
10743 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
10744 quality controls, normalization, visualization, and further analysis are also
10745 provided.")
10746 (license license:artistic2.0)))
10747
10748 (define-public r-hdf5array
10749 (package
10750 (name "r-hdf5array")
10751 (version "1.16.1")
10752 (source
10753 (origin
10754 (method url-fetch)
10755 (uri (bioconductor-uri "HDF5Array" version))
10756 (sha256
10757 (base32
10758 "01767v90nl0499jcicpxngbbs0af5p9c5aasi5va01w3v5bnqddn"))))
10759 (properties `((upstream-name . "HDF5Array")))
10760 (build-system r-build-system)
10761 (inputs
10762 `(("zlib" ,zlib)))
10763 (propagated-inputs
10764 `(("r-biocgenerics" ,r-biocgenerics)
10765 ("r-delayedarray" ,r-delayedarray)
10766 ("r-iranges" ,r-iranges)
10767 ("r-matrix" ,r-matrix)
10768 ("r-rhdf5" ,r-rhdf5)
10769 ("r-rhdf5lib" ,r-rhdf5lib)
10770 ("r-s4vectors" ,r-s4vectors)))
10771 (home-page "https://bioconductor.org/packages/HDF5Array")
10772 (synopsis "HDF5 back end for DelayedArray objects")
10773 (description "This package provides an array-like container for convenient
10774 access and manipulation of HDF5 datasets. It supports delayed operations and
10775 block processing.")
10776 (license license:artistic2.0)))
10777
10778 (define-public r-rhdf5lib
10779 (package
10780 (name "r-rhdf5lib")
10781 (version "1.10.1")
10782 (source
10783 (origin
10784 (method url-fetch)
10785 (uri (bioconductor-uri "Rhdf5lib" version))
10786 (sha256
10787 (base32
10788 "0f45sqrvzj6x4mckalyp8366hm8v0rrmzklx3xd4gs6l2wallcn9"))
10789 (modules '((guix build utils)))
10790 (snippet
10791 '(begin
10792 ;; Delete bundled binaries
10793 (delete-file-recursively "src/wininclude/")
10794 (delete-file-recursively "src/winlib-4.9.3/")
10795 (delete-file-recursively "src/winlib-8.3.0/")
10796 (delete-file "src/hdf5small_cxx_hl_1.10.6.tar.gz")
10797 #t))))
10798 (properties `((upstream-name . "Rhdf5lib")))
10799 (build-system r-build-system)
10800 (arguments
10801 `(#:phases
10802 (modify-phases %standard-phases
10803 (add-after 'unpack 'do-not-use-bundled-hdf5
10804 (lambda* (#:key inputs #:allow-other-keys)
10805 (for-each delete-file '("configure" "configure.ac"))
10806 ;; Do not make other packages link with the proprietary libsz.
10807 (substitute* "R/zzz.R"
10808 ((" \"%s/libsz.a\"") ""))
10809 (with-directory-excursion "src"
10810 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
10811 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
10812 "hdf5")
10813 ;; Remove timestamp and host system information to make
10814 ;; the build reproducible.
10815 (substitute* "hdf5/src/libhdf5.settings.in"
10816 (("Configured on: @CONFIG_DATE@")
10817 "Configured on: Guix")
10818 (("Uname information:.*")
10819 "Uname information: Linux\n")
10820 ;; Remove unnecessary store reference.
10821 (("C Compiler:.*")
10822 "C Compiler: GCC\n"))
10823 (rename-file "Makevars.in" "Makevars")
10824 (substitute* "Makevars"
10825 (("@ZLIB_LIB@") "-lz")
10826 (("@ZLIB_INCLUDE@") "")
10827 (("HDF5_CXX_LIB=.*")
10828 (string-append "HDF5_CXX_LIB="
10829 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
10830 (("HDF5_LIB=.*")
10831 (string-append "HDF5_LIB="
10832 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
10833 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
10834 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
10835 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
10836 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
10837 (("HDF5_HL_LIB=.*")
10838 (string-append "HDF5_HL_LIB="
10839 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
10840 (("HDF5_HL_CXX_LIB=.*")
10841 (string-append "HDF5_HL_CXX_LIB="
10842 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
10843 ;; szip is non-free software
10844 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
10845 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n")))
10846 #t)))))
10847 (inputs
10848 `(("zlib" ,zlib)))
10849 (propagated-inputs
10850 `(("hdf5" ,hdf5-1.10)))
10851 (native-inputs
10852 `(("hdf5-source" ,(package-source hdf5-1.10))
10853 ("r-knitr" ,r-knitr)))
10854 (home-page "https://bioconductor.org/packages/Rhdf5lib")
10855 (synopsis "HDF5 library as an R package")
10856 (description "This package provides C and C++ HDF5 libraries for use in R
10857 packages.")
10858 (license license:artistic2.0)))
10859
10860 (define-public r-beachmat
10861 (package
10862 (name "r-beachmat")
10863 (version "2.4.0")
10864 (source
10865 (origin
10866 (method url-fetch)
10867 (uri (bioconductor-uri "beachmat" version))
10868 (sha256
10869 (base32
10870 "1vl6jbf9ia78cm4ikdb8vz04jv4b46zhvg5i006c63a9pzw7zhxi"))))
10871 (build-system r-build-system)
10872 (propagated-inputs
10873 `(("r-biocgenerics" ,r-biocgenerics)
10874 ("r-delayedarray" ,r-delayedarray)
10875 ("r-matrix" ,r-matrix)))
10876 (native-inputs
10877 `(("r-knitr" ,r-knitr)))
10878 (home-page "https://bioconductor.org/packages/beachmat")
10879 (synopsis "Compiling Bioconductor to handle each matrix type")
10880 (description "This package provides a consistent C++ class interface for a
10881 variety of commonly used matrix types, including sparse and HDF5-backed
10882 matrices.")
10883 (license license:gpl3)))
10884
10885 (define-public r-singlecellexperiment
10886 (package
10887 (name "r-singlecellexperiment")
10888 (version "1.10.1")
10889 (source
10890 (origin
10891 (method url-fetch)
10892 (uri (bioconductor-uri "SingleCellExperiment" version))
10893 (sha256
10894 (base32
10895 "092wvk11n7pa234vlwhxm3gdi4k3sbnz1splhxalbdhz3jf02zfp"))))
10896 (properties
10897 `((upstream-name . "SingleCellExperiment")))
10898 (build-system r-build-system)
10899 (propagated-inputs
10900 `(("r-biocgenerics" ,r-biocgenerics)
10901 ("r-s4vectors" ,r-s4vectors)
10902 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10903 (native-inputs
10904 `(("r-knitr" ,r-knitr)))
10905 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
10906 (synopsis "S4 classes for single cell data")
10907 (description "This package defines an S4 class for storing data from
10908 single-cell experiments. This includes specialized methods to store and
10909 retrieve spike-in information, dimensionality reduction coordinates and size
10910 factors for each cell, along with the usual metadata for genes and
10911 libraries.")
10912 (license license:gpl3)))
10913
10914 (define-public r-scater
10915 (package
10916 (name "r-scater")
10917 (version "1.16.2")
10918 (source (origin
10919 (method url-fetch)
10920 (uri (bioconductor-uri "scater" version))
10921 (sha256
10922 (base32
10923 "1pa5wvgjb30rw1vsjwbnn07ss3sc5n8ck5d7khdby4r2s9177s33"))))
10924 (build-system r-build-system)
10925 (propagated-inputs
10926 `(("r-beachmat" ,r-beachmat)
10927 ("r-biocgenerics" ,r-biocgenerics)
10928 ("r-biocneighbors" ,r-biocneighbors)
10929 ("r-biocparallel" ,r-biocparallel)
10930 ("r-biocsingular" ,r-biocsingular)
10931 ("r-delayedarray" ,r-delayedarray)
10932 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
10933 ("r-ggbeeswarm" ,r-ggbeeswarm)
10934 ("r-ggplot2" ,r-ggplot2)
10935 ("r-matrix" ,r-matrix)
10936 ("r-rcpp" ,r-rcpp)
10937 ("r-rlang" ,r-rlang)
10938 ("r-s4vectors" ,r-s4vectors)
10939 ("r-singlecellexperiment" ,r-singlecellexperiment)
10940 ("r-summarizedexperiment" ,r-summarizedexperiment)
10941 ("r-viridis" ,r-viridis)))
10942 (native-inputs
10943 `(("r-knitr" ,r-knitr)))
10944 (home-page "https://github.com/davismcc/scater")
10945 (synopsis "Single-cell analysis toolkit for gene expression data in R")
10946 (description "This package provides a collection of tools for doing
10947 various analyses of single-cell RNA-seq gene expression data, with a focus on
10948 quality control.")
10949 (license license:gpl2+)))
10950
10951 (define-public r-scran
10952 (package
10953 (name "r-scran")
10954 (version "1.16.0")
10955 (source
10956 (origin
10957 (method url-fetch)
10958 (uri (bioconductor-uri "scran" version))
10959 (sha256
10960 (base32
10961 "1gm4ys4aq8h1pn45k1rxk384wjyf55izivw8kgxbrflj6j4xvvsv"))))
10962 (build-system r-build-system)
10963 (propagated-inputs
10964 `(("r-beachmat" ,r-beachmat)
10965 ("r-bh" ,r-bh)
10966 ("r-biocgenerics" ,r-biocgenerics)
10967 ("r-biocneighbors" ,r-biocneighbors)
10968 ("r-biocparallel" ,r-biocparallel)
10969 ("r-biocsingular" ,r-biocsingular)
10970 ("r-delayedarray" ,r-delayedarray)
10971 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
10972 ("r-dqrng" ,r-dqrng)
10973 ("r-edger" ,r-edger)
10974 ("r-igraph" ,r-igraph)
10975 ("r-iranges" ,r-iranges)
10976 ("r-limma" ,r-limma)
10977 ("r-matrix" ,r-matrix)
10978 ("r-rcpp" ,r-rcpp)
10979 ("r-s4vectors" ,r-s4vectors)
10980 ("r-scater" ,r-scater)
10981 ("r-singlecellexperiment" ,r-singlecellexperiment)
10982 ("r-statmod" ,r-statmod)
10983 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10984 (native-inputs
10985 `(("r-knitr" ,r-knitr)))
10986 (home-page "https://bioconductor.org/packages/scran")
10987 (synopsis "Methods for single-cell RNA-Seq data analysis")
10988 (description "This package implements a variety of low-level analyses of
10989 single-cell RNA-seq data. Methods are provided for normalization of
10990 cell-specific biases, assignment of cell cycle phase, and detection of highly
10991 variable and significantly correlated genes.")
10992 (license license:gpl3)))
10993
10994 (define-public r-delayedmatrixstats
10995 (package
10996 (name "r-delayedmatrixstats")
10997 (version "1.10.1")
10998 (source
10999 (origin
11000 (method url-fetch)
11001 (uri (bioconductor-uri "DelayedMatrixStats" version))
11002 (sha256
11003 (base32
11004 "046sam0rz42ph0m7jz7v3bck7d3h2mp45gzywh5dvc1qkjq6fdxx"))))
11005 (properties
11006 `((upstream-name . "DelayedMatrixStats")))
11007 (build-system r-build-system)
11008 (propagated-inputs
11009 `(("r-biocparallel" ,r-biocparallel)
11010 ("r-delayedarray" ,r-delayedarray)
11011 ("r-hdf5array" ,r-hdf5array)
11012 ("r-iranges" ,r-iranges)
11013 ("r-matrix" ,r-matrix)
11014 ("r-matrixstats" ,r-matrixstats)
11015 ("r-s4vectors" ,r-s4vectors)))
11016 (native-inputs
11017 `(("r-knitr" ,r-knitr)))
11018 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
11019 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
11020 (description
11021 "This package provides a port of the @code{matrixStats} API for use with
11022 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
11023 contains high-performing functions operating on rows and columns of
11024 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
11025 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
11026 are optimized per data type and for subsetted calculations such that both
11027 memory usage and processing time is minimized.")
11028 (license license:expat)))
11029
11030 (define-public r-phangorn
11031 (package
11032 (name "r-phangorn")
11033 (version "2.5.5")
11034 (source
11035 (origin
11036 (method url-fetch)
11037 (uri (cran-uri "phangorn" version))
11038 (sha256
11039 (base32
11040 "0ihkaykqjmf80d8wrk3saphxvnv58zma6pd13633bd3cwanc33f5"))))
11041 (build-system r-build-system)
11042 (propagated-inputs
11043 `(("r-ape" ,r-ape)
11044 ("r-fastmatch" ,r-fastmatch)
11045 ("r-igraph" ,r-igraph)
11046 ("r-magrittr" ,r-magrittr)
11047 ("r-matrix" ,r-matrix)
11048 ("r-quadprog" ,r-quadprog)
11049 ("r-rcpp" ,r-rcpp)))
11050 (home-page "https://github.com/KlausVigo/phangorn")
11051 (synopsis "Phylogenetic analysis in R")
11052 (description
11053 "Phangorn is a package for phylogenetic analysis in R. It supports
11054 estimation of phylogenetic trees and networks using Maximum Likelihood,
11055 Maximum Parsimony, distance methods and Hadamard conjugation.")
11056 (license license:gpl2+)))
11057
11058 (define-public r-dropbead
11059 (let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
11060 (revision "2"))
11061 (package
11062 (name "r-dropbead")
11063 (version (string-append "0-" revision "." (string-take commit 7)))
11064 (source
11065 (origin
11066 (method git-fetch)
11067 (uri (git-reference
11068 (url "https://github.com/rajewsky-lab/dropbead")
11069 (commit commit)))
11070 (file-name (git-file-name name version))
11071 (sha256
11072 (base32
11073 "0sbzma49aiiyw8b0jpr7fnhzys9nsqmp4hy4hdz1gzyg1lhnca26"))))
11074 (build-system r-build-system)
11075 (propagated-inputs
11076 `(("r-ggplot2" ,r-ggplot2)
11077 ("r-rcolorbrewer" ,r-rcolorbrewer)
11078 ("r-gridextra" ,r-gridextra)
11079 ("r-gplots" ,r-gplots)
11080 ("r-plyr" ,r-plyr)))
11081 (home-page "https://github.com/rajewsky-lab/dropbead")
11082 (synopsis "Basic exploration and analysis of Drop-seq data")
11083 (description "This package offers a quick and straight-forward way to
11084 explore and perform basic analysis of single cell sequencing data coming from
11085 droplet sequencing. It has been particularly tailored for Drop-seq.")
11086 (license license:gpl3))))
11087
11088 (define htslib-for-sambamba
11089 (let ((commit "2f3c3ea7b301f9b45737a793c0b2dcf0240e5ee5"))
11090 (package
11091 (inherit htslib)
11092 (name "htslib-for-sambamba")
11093 (version (string-append "1.3.1-1." (string-take commit 9)))
11094 (source
11095 (origin
11096 (method git-fetch)
11097 (uri (git-reference
11098 (url "https://github.com/lomereiter/htslib")
11099 (commit commit)))
11100 (file-name (string-append "htslib-" version "-checkout"))
11101 (sha256
11102 (base32
11103 "0g38g8s3npr0gjm9fahlbhiskyfws9l5i0x1ml3rakzj7az5l9c9"))))
11104 (native-inputs
11105 `(("autoconf" ,autoconf)
11106 ("automake" ,automake)
11107 ,@(package-native-inputs htslib))))))
11108
11109 (define-public sambamba
11110 (package
11111 (name "sambamba")
11112 (version "0.7.1")
11113 (source
11114 (origin
11115 (method git-fetch)
11116 (uri (git-reference
11117 (url "https://github.com/lomereiter/sambamba")
11118 (commit (string-append "v" version))))
11119 (file-name (string-append name "-" version "-checkout"))
11120 (sha256
11121 (base32
11122 "111h05b60pj8dxbidiamy4imc92x2962b3lmb7wgysl6lx064qis"))))
11123 (build-system gnu-build-system)
11124 (arguments
11125 `(#:tests? #f ; there is no test target
11126 #:parallel-build? #f ; not supported
11127 #:phases
11128 (modify-phases %standard-phases
11129 (delete 'configure)
11130 (add-after 'unpack 'fix-ldc-version
11131 (lambda _
11132 (substitute* "gen_ldc_version_info.py"
11133 (("/usr/bin/env.*") (which "python3")))
11134 (substitute* "Makefile"
11135 ;; We use ldc2 instead of ldmd2 to compile sambamba.
11136 (("\\$\\(shell which ldmd2\\)") (which "ldc2")))
11137 #t))
11138 (add-after 'unpack 'place-biod-and-undead
11139 (lambda* (#:key inputs #:allow-other-keys)
11140 (copy-recursively (assoc-ref inputs "biod") "BioD")
11141 #t))
11142 (add-after 'unpack 'unbundle-prerequisites
11143 (lambda _
11144 (substitute* "Makefile"
11145 (("htslib/libhts.a lz4/lib/liblz4.a")
11146 "-L-lhts -L-llz4")
11147 ((" lz4-static htslib-static") ""))
11148 #t))
11149 (replace 'install
11150 (lambda* (#:key outputs #:allow-other-keys)
11151 (let* ((out (assoc-ref outputs "out"))
11152 (bin (string-append out "/bin")))
11153 (mkdir-p bin)
11154 (copy-file (string-append "bin/sambamba-" ,version)
11155 (string-append bin "/sambamba"))
11156 #t))))))
11157 (native-inputs
11158 `(("ldc" ,ldc)
11159 ("rdmd" ,rdmd)
11160 ("python" ,python)
11161 ("biod"
11162 ,(let ((commit "7969eb0a847b05874e83ffddead26e193ece8101"))
11163 (origin
11164 (method git-fetch)
11165 (uri (git-reference
11166 (url "https://github.com/biod/BioD")
11167 (commit commit)))
11168 (file-name (string-append "biod-"
11169 (string-take commit 9)
11170 "-checkout"))
11171 (sha256
11172 (base32
11173 "0mjxsmbmv0jxl3pq21p8j5r829d648if8q58ka50b2956lc6qkpm")))))))
11174 (inputs
11175 `(("lz4" ,lz4)
11176 ("htslib" ,htslib-for-sambamba)))
11177 (home-page "https://lomereiter.github.io/sambamba/")
11178 (synopsis "Tools for working with SAM/BAM data")
11179 (description "Sambamba is a high performance modern robust and
11180 fast tool (and library), written in the D programming language, for
11181 working with SAM and BAM files. Current parallelised functionality is
11182 an important subset of samtools functionality, including view, index,
11183 sort, markdup, and depth.")
11184 (license license:gpl2+)))
11185
11186 (define-public ritornello
11187 (package
11188 (name "ritornello")
11189 (version "2.0.1")
11190 (source (origin
11191 (method git-fetch)
11192 (uri (git-reference
11193 (url "https://github.com/KlugerLab/Ritornello")
11194 (commit (string-append "v" version))))
11195 (file-name (git-file-name name version))
11196 (sha256
11197 (base32
11198 "1xahvq215qld7x1w8vpa5zbrsj6p9crb9shqa2x89sb0aaxa02jk"))))
11199 (build-system gnu-build-system)
11200 (arguments
11201 `(#:tests? #f ; there are no tests
11202 #:phases
11203 (modify-phases %standard-phases
11204 (add-after 'unpack 'patch-samtools-references
11205 (lambda* (#:key inputs #:allow-other-keys)
11206 (substitute* '("src/SamStream.h"
11207 "src/FLD.cpp")
11208 (("<sam.h>") "<samtools/sam.h>"))
11209 #t))
11210 (delete 'configure)
11211 (replace 'install
11212 (lambda* (#:key inputs outputs #:allow-other-keys)
11213 (let* ((out (assoc-ref outputs "out"))
11214 (bin (string-append out "/bin/")))
11215 (mkdir-p bin)
11216 (install-file "bin/Ritornello" bin)
11217 #t))))))
11218 (inputs
11219 `(("samtools" ,samtools-0.1)
11220 ("fftw" ,fftw)
11221 ("boost" ,boost)
11222 ("zlib" ,zlib)))
11223 (home-page "https://github.com/KlugerLab/Ritornello")
11224 (synopsis "Control-free peak caller for ChIP-seq data")
11225 (description "Ritornello is a ChIP-seq peak calling algorithm based on
11226 signal processing that can accurately call binding events without the need to
11227 do a pair total DNA input or IgG control sample. It has been tested for use
11228 with narrow binding events such as transcription factor ChIP-seq.")
11229 (license license:gpl3+)))
11230
11231 (define-public trim-galore
11232 (package
11233 (name "trim-galore")
11234 (version "0.6.1")
11235 (source
11236 (origin
11237 (method git-fetch)
11238 (uri (git-reference
11239 (url "https://github.com/FelixKrueger/TrimGalore")
11240 (commit version)))
11241 (file-name (git-file-name name version))
11242 (sha256
11243 (base32
11244 "1y31wbxwkm9xqzr5zv1pk5q418whnmlmgmfyxxpnl12h83m2i9iv"))))
11245 (build-system gnu-build-system)
11246 (arguments
11247 `(#:tests? #f ; no tests
11248 #:phases
11249 (modify-phases %standard-phases
11250 (replace 'configure
11251 (lambda _
11252 ;; Trim Galore tries to figure out what version of Python
11253 ;; cutadapt is using by looking at the shebang. Of course that
11254 ;; doesn't work, because cutadapt is wrapped in a shell script.
11255 (substitute* "trim_galore"
11256 (("my \\$python_return.*")
11257 "my $python_return = \"Python 3.999\";\n"))
11258 #t))
11259 (delete 'build)
11260 (add-after 'unpack 'hardcode-tool-references
11261 (lambda* (#:key inputs #:allow-other-keys)
11262 (substitute* "trim_galore"
11263 (("\\$path_to_cutadapt = 'cutadapt'")
11264 (string-append "$path_to_cutadapt = '"
11265 (assoc-ref inputs "cutadapt")
11266 "/bin/cutadapt'"))
11267 (("\\$compression_path = \"gzip\"")
11268 (string-append "$compression_path = \""
11269 (assoc-ref inputs "gzip")
11270 "/bin/gzip\""))
11271 (("\"gunzip")
11272 (string-append "\""
11273 (assoc-ref inputs "gzip")
11274 "/bin/gunzip"))
11275 (("\"pigz")
11276 (string-append "\""
11277 (assoc-ref inputs "pigz")
11278 "/bin/pigz")))
11279 #t))
11280 (replace 'install
11281 (lambda* (#:key outputs #:allow-other-keys)
11282 (let ((bin (string-append (assoc-ref outputs "out")
11283 "/bin")))
11284 (mkdir-p bin)
11285 (install-file "trim_galore" bin)
11286 #t))))))
11287 (inputs
11288 `(("gzip" ,gzip)
11289 ("perl" ,perl)
11290 ("pigz" ,pigz)
11291 ("cutadapt" ,cutadapt)))
11292 (native-inputs
11293 `(("unzip" ,unzip)))
11294 (home-page "https://www.bioinformatics.babraham.ac.uk/projects/trim_galore/")
11295 (synopsis "Wrapper around Cutadapt and FastQC")
11296 (description "Trim Galore! is a wrapper script to automate quality and
11297 adapter trimming as well as quality control, with some added functionality to
11298 remove biased methylation positions for RRBS sequence files.")
11299 (license license:gpl3+)))
11300
11301 (define-public gess
11302 (package
11303 (name "gess")
11304 (version "1.0")
11305 (source (origin
11306 (method url-fetch)
11307 (uri (string-append "http://compbio.uthscsa.edu/"
11308 "GESS_Web/files/"
11309 "gess-" version ".src.tar.gz"))
11310 (sha256
11311 (base32
11312 "0hyk403kxscclzfs24pvdgiv0wm03kjcziqdrp5w46cb049gz0d7"))))
11313 (build-system gnu-build-system)
11314 (arguments
11315 `(#:tests? #f ; no tests
11316 #:phases
11317 (modify-phases %standard-phases
11318 (delete 'configure)
11319 (delete 'build)
11320 (replace 'install
11321 (lambda* (#:key inputs outputs #:allow-other-keys)
11322 (let* ((python (assoc-ref inputs "python"))
11323 (out (assoc-ref outputs "out"))
11324 (bin (string-append out "/bin/"))
11325 (target (string-append
11326 out "/lib/python"
11327 ,(version-major+minor
11328 (package-version python))
11329 "/site-packages/gess/")))
11330 (mkdir-p target)
11331 (copy-recursively "." target)
11332 ;; Make GESS.py executable
11333 (chmod (string-append target "GESS.py") #o555)
11334 ;; Add Python shebang to the top and make Matplotlib
11335 ;; usable.
11336 (substitute* (string-append target "GESS.py")
11337 (("\"\"\"Description:" line)
11338 (string-append "#!" (which "python") "
11339 import matplotlib
11340 matplotlib.use('Agg')
11341 " line)))
11342 ;; Make sure GESS has all modules in its path
11343 (wrap-script (string-append target "GESS.py")
11344 `("PYTHONPATH" ":" = (,target ,(getenv "PYTHONPATH"))))
11345 (mkdir-p bin)
11346 (symlink (string-append target "GESS.py")
11347 (string-append bin "GESS.py"))
11348 #t))))))
11349 (inputs
11350 `(("python" ,python-2)
11351 ("python2-pysam" ,python2-pysam)
11352 ("python2-scipy" ,python2-scipy)
11353 ("python2-numpy" ,python2-numpy)
11354 ("python2-networkx" ,python2-networkx)
11355 ("python2-biopython" ,python2-biopython)
11356 ("guile" ,guile-3.0))) ; for the script wrapper
11357 (home-page "https://compbio.uthscsa.edu/GESS_Web/")
11358 (synopsis "Detect exon-skipping events from raw RNA-seq data")
11359 (description
11360 "GESS is an implementation of a novel computational method to detect de
11361 novo exon-skipping events directly from raw RNA-seq data without the prior
11362 knowledge of gene annotation information. GESS stands for the graph-based
11363 exon-skipping scanner detection scheme.")
11364 (license license:bsd-3)))
11365
11366 (define-public phylip
11367 (package
11368 (name "phylip")
11369 (version "3.696")
11370 (source
11371 (origin
11372 (method url-fetch)
11373 (uri (string-append "http://evolution.gs.washington.edu/phylip/"
11374 "download/phylip-" version ".tar.gz"))
11375 (sha256
11376 (base32
11377 "01jar1rayhr2gba2pgbw49m56rc5z4p5wn3ds0m188hrlln4a2nd"))))
11378 (build-system gnu-build-system)
11379 (arguments
11380 `(#:tests? #f ; no check target
11381 #:make-flags (list "-f" "Makefile.unx" "install")
11382 #:parallel-build? #f ; not supported
11383 #:phases
11384 (modify-phases %standard-phases
11385 (add-after 'unpack 'enter-dir
11386 (lambda _ (chdir "src") #t))
11387 (delete 'configure)
11388 (replace 'install
11389 (lambda* (#:key inputs outputs #:allow-other-keys)
11390 (let ((target (string-append (assoc-ref outputs "out")
11391 "/bin")))
11392 (mkdir-p target)
11393 (for-each (lambda (file)
11394 (install-file file target))
11395 (find-files "../exe" ".*")))
11396 #t)))))
11397 (home-page "http://evolution.genetics.washington.edu/phylip/")
11398 (synopsis "Tools for inferring phylogenies")
11399 (description "PHYLIP (the PHYLogeny Inference Package) is a package of
11400 programs for inferring phylogenies (evolutionary trees).")
11401 (license license:bsd-2)))
11402
11403 (define-public imp
11404 (package
11405 (name "imp")
11406 (version "2.6.2")
11407 (source
11408 (origin
11409 (method url-fetch)
11410 (uri (string-append "https://integrativemodeling.org/"
11411 version "/download/imp-" version ".tar.gz"))
11412 (sha256
11413 (base32
11414 "0lxqx7vh79d771svr611dkilp6sn30qrbw8zvscbrm37v38d2j6h"))))
11415 (build-system cmake-build-system)
11416 (arguments
11417 `(;; FIXME: Some tests fail because they produce warnings, others fail
11418 ;; because the PYTHONPATH does not include the modeller's directory.
11419 #:tests? #f))
11420 (inputs
11421 `(("boost" ,boost)
11422 ("gsl" ,gsl)
11423 ("swig" ,swig)
11424 ("hdf5" ,hdf5)
11425 ("fftw" ,fftw)
11426 ("python" ,python-2)))
11427 (propagated-inputs
11428 `(("python2-numpy" ,python2-numpy)
11429 ("python2-scipy" ,python2-scipy)
11430 ("python2-pandas" ,python2-pandas)
11431 ("python2-scikit-learn" ,python2-scikit-learn)
11432 ("python2-networkx" ,python2-networkx)))
11433 (home-page "https://integrativemodeling.org")
11434 (synopsis "Integrative modeling platform")
11435 (description "IMP's broad goal is to contribute to a comprehensive
11436 structural characterization of biomolecules ranging in size and complexity
11437 from small peptides to large macromolecular assemblies, by integrating data
11438 from diverse biochemical and biophysical experiments. IMP provides a C++ and
11439 Python toolbox for solving complex modeling problems, and a number of
11440 applications for tackling some common problems in a user-friendly way.")
11441 ;; IMP is largely available under the GNU Lesser GPL; see the file
11442 ;; COPYING.LGPL for the full text of this license. Some IMP modules are
11443 ;; available under the GNU GPL (see the file COPYING.GPL).
11444 (license (list license:lgpl2.1+
11445 license:gpl3+))))
11446
11447 (define-public tadbit
11448 (package
11449 (name "tadbit")
11450 (version "0.2.0")
11451 (source (origin
11452 (method git-fetch)
11453 (uri (git-reference
11454 (url "https://github.com/3DGenomes/TADbit")
11455 (commit (string-append "v" version))))
11456 (file-name (git-file-name name version))
11457 (sha256
11458 (base32
11459 "07g3aj648prmsvxp9caz5yl41k0y0647vxh0f5p3w8376mfiljd0"))))
11460 (build-system python-build-system)
11461 (arguments
11462 `(;; Tests are included and must be run after installation, but
11463 ;; they are incomplete and thus cannot be run.
11464 #:tests? #f
11465 #:python ,python-2
11466 #:phases
11467 (modify-phases %standard-phases
11468 (add-after 'unpack 'fix-problems-with-setup.py
11469 (lambda* (#:key outputs #:allow-other-keys)
11470 ;; setup.py opens these files for writing
11471 (chmod "_pytadbit/_version.py" #o664)
11472 (chmod "README.rst" #o664)
11473
11474 ;; Don't attempt to install the bash completions to
11475 ;; the home directory.
11476 (rename-file "extras/.bash_completion"
11477 "extras/tadbit")
11478 (substitute* "setup.py"
11479 (("\\(path.expanduser\\('~'\\)")
11480 (string-append "(\""
11481 (assoc-ref outputs "out")
11482 "/etc/bash_completion.d\""))
11483 (("extras/\\.bash_completion")
11484 "extras/tadbit"))
11485 #t)))))
11486 (inputs
11487 ;; TODO: add Chimera for visualization
11488 `(("imp" ,imp)
11489 ("mcl" ,mcl)
11490 ("python2-scipy" ,python2-scipy)
11491 ("python2-numpy" ,python2-numpy)
11492 ("python2-matplotlib" ,python2-matplotlib)
11493 ("python2-pysam" ,python2-pysam)))
11494 (home-page "https://3dgenomes.github.io/TADbit/")
11495 (synopsis "Analyze, model, and explore 3C-based data")
11496 (description
11497 "TADbit is a complete Python library to deal with all steps to analyze,
11498 model, and explore 3C-based data. With TADbit the user can map FASTQ files to
11499 obtain raw interaction binned matrices (Hi-C like matrices), normalize and
11500 correct interaction matrices, identify and compare the so-called
11501 @dfn{Topologically Associating Domains} (TADs), build 3D models from the
11502 interaction matrices, and finally, extract structural properties from the
11503 models. TADbit is complemented by TADkit for visualizing 3D models.")
11504 (license license:gpl3+)))
11505
11506 (define-public kentutils
11507 (package
11508 (name "kentutils")
11509 ;; 302.1.0 is out, but the only difference is the inclusion of
11510 ;; pre-built binaries.
11511 (version "302.0.0")
11512 (source
11513 (origin
11514 (method git-fetch)
11515 (uri (git-reference
11516 (url "https://github.com/ENCODE-DCC/kentUtils")
11517 (commit (string-append "v" version))))
11518 (file-name (git-file-name name version))
11519 (sha256
11520 (base32
11521 "0n1wbyjpzii2b9qhyp9r1q76j623cggpg3y8fmw78ld3z4y7ivha"))
11522 (modules '((guix build utils)
11523 (srfi srfi-26)
11524 (ice-9 ftw)))
11525 (snippet
11526 '(begin
11527 ;; Only the contents of the specified directories are free
11528 ;; for all uses, so we remove the rest. "hg/autoSql" and
11529 ;; "hg/autoXml" are nominally free, but they depend on a
11530 ;; library that is built from the sources in "hg/lib",
11531 ;; which is nonfree.
11532 (let ((free (list "." ".."
11533 "utils" "lib" "inc" "tagStorm"
11534 "parasol" "htslib"))
11535 (directory? (lambda (file)
11536 (eq? 'directory (stat:type (stat file))))))
11537 (for-each (lambda (file)
11538 (and (directory? file)
11539 (delete-file-recursively file)))
11540 (map (cut string-append "src/" <>)
11541 (scandir "src"
11542 (lambda (file)
11543 (not (member file free)))))))
11544 ;; Only make the utils target, not the userApps target,
11545 ;; because that requires libraries we won't build.
11546 (substitute* "Makefile"
11547 ((" userApps") " utils"))
11548 ;; Only build libraries that are free.
11549 (substitute* "src/makefile"
11550 (("DIRS =.*") "DIRS =\n")
11551 (("cd jkOwnLib.*") "")
11552 ((" hgLib") "")
11553 (("cd hg.*") ""))
11554 (substitute* "src/utils/makefile"
11555 ;; These tools depend on "jkhgap.a", which is part of the
11556 ;; nonfree "src/hg/lib" directory.
11557 (("raSqlQuery") "")
11558 (("pslLiftSubrangeBlat") "")
11559
11560 ;; Do not build UCSC tools, which may require nonfree
11561 ;; components.
11562 (("ALL_APPS =.*") "ALL_APPS = $(UTILS_APPLIST)\n"))
11563 #t))))
11564 (build-system gnu-build-system)
11565 (arguments
11566 `( ;; There is no global test target and the test target for
11567 ;; individual tools depends on input files that are not
11568 ;; included.
11569 #:tests? #f
11570 #:phases
11571 (modify-phases %standard-phases
11572 (add-after 'unpack 'fix-permissions
11573 (lambda _ (make-file-writable "src/inc/localEnvironment.mk") #t))
11574 (add-after 'unpack 'fix-paths
11575 (lambda _
11576 (substitute* "Makefile"
11577 (("/bin/echo") (which "echo")))
11578 #t))
11579 (add-after 'unpack 'prepare-samtabix
11580 (lambda* (#:key inputs #:allow-other-keys)
11581 (copy-recursively (assoc-ref inputs "samtabix")
11582 "samtabix")
11583 #t))
11584 (delete 'configure)
11585 (replace 'install
11586 (lambda* (#:key outputs #:allow-other-keys)
11587 (let ((bin (string-append (assoc-ref outputs "out")
11588 "/bin")))
11589 (copy-recursively "bin" bin))
11590 #t)))))
11591 (native-inputs
11592 `(("samtabix"
11593 ,(origin
11594 (method git-fetch)
11595 (uri (git-reference
11596 (url "http://genome-source.cse.ucsc.edu/samtabix.git")
11597 (commit "10fd107909c1ac4d679299908be4262a012965ba")))
11598 (sha256
11599 (base32
11600 "0c1nj64l42v395sa84n7az43xiap4i6f9n9dfz4058aqiwkhkmma"))))))
11601 (inputs
11602 `(("zlib" ,zlib)
11603 ("tcsh" ,tcsh)
11604 ("perl" ,perl)
11605 ("libpng" ,libpng)
11606 ("mariadb" ,mariadb "lib")
11607 ("mariadb-dev" ,mariadb "dev")
11608 ("openssl" ,openssl-1.0)))
11609 (home-page "https://genome.cse.ucsc.edu/index.html")
11610 (synopsis "Assorted bioinformatics utilities")
11611 (description "This package provides the kentUtils, a selection of
11612 bioinformatics utilities used in combination with the UCSC genome
11613 browser.")
11614 ;; Only a subset of the sources are released under a non-copyleft
11615 ;; free software license. All other sources are removed in a
11616 ;; snippet. See this bug report for an explanation of how the
11617 ;; license statements apply:
11618 ;; https://github.com/ENCODE-DCC/kentUtils/issues/12
11619 (license (license:non-copyleft
11620 "http://genome.ucsc.edu/license/"
11621 "The contents of this package are free for all uses."))))
11622
11623 (define-public f-seq
11624 (let ((commit "6ccded34cff38cf432deed8503648b4a66953f9b")
11625 (revision "1"))
11626 (package
11627 (name "f-seq")
11628 (version (string-append "1.1-" revision "." (string-take commit 7)))
11629 (source (origin
11630 (method git-fetch)
11631 (uri (git-reference
11632 (url "https://github.com/aboyle/F-seq")
11633 (commit commit)))
11634 (file-name (string-append name "-" version))
11635 (sha256
11636 (base32
11637 "1nk33k0yajg2id4g59bc4szr58r2q6pdq42vgcw054m8ip9wv26h"))
11638 (modules '((guix build utils)))
11639 ;; Remove bundled Java library archives.
11640 (snippet
11641 '(begin
11642 (for-each delete-file (find-files "lib" ".*"))
11643 #t))))
11644 (build-system ant-build-system)
11645 (arguments
11646 `(#:tests? #f ; no tests included
11647 #:phases
11648 (modify-phases %standard-phases
11649 (replace 'install
11650 (lambda* (#:key inputs outputs #:allow-other-keys)
11651 (let* ((target (assoc-ref outputs "out"))
11652 (bin (string-append target "/bin"))
11653 (doc (string-append target "/share/doc/f-seq"))
11654 (lib (string-append target "/lib")))
11655 (mkdir-p target)
11656 (mkdir-p doc)
11657 (substitute* "bin/linux/fseq"
11658 (("java") (which "java"))
11659 (("\\$REALDIR/../lib/commons-cli-1.1.jar")
11660 (string-append (assoc-ref inputs "java-commons-cli")
11661 "/share/java/commons-cli.jar"))
11662 (("REALDIR=.*")
11663 (string-append "REALDIR=" bin "\n")))
11664 (install-file "README.txt" doc)
11665 (install-file "bin/linux/fseq" bin)
11666 (install-file "build~/fseq.jar" lib)
11667 (copy-recursively "lib" lib)
11668 #t))))))
11669 (inputs
11670 `(("perl" ,perl)
11671 ("java-commons-cli" ,java-commons-cli)))
11672 (home-page "http://fureylab.web.unc.edu/software/fseq/")
11673 (synopsis "Feature density estimator for high-throughput sequence tags")
11674 (description
11675 "F-Seq is a software package that generates a continuous tag sequence
11676 density estimation allowing identification of biologically meaningful sites
11677 such as transcription factor binding sites (ChIP-seq) or regions of open
11678 chromatin (DNase-seq). Output can be displayed directly in the UCSC Genome
11679 Browser.")
11680 (license license:gpl3+))))
11681
11682 (define-public bismark
11683 (package
11684 (name "bismark")
11685 (version "0.20.1")
11686 (source
11687 (origin
11688 (method git-fetch)
11689 (uri (git-reference
11690 (url "https://github.com/FelixKrueger/Bismark")
11691 (commit version)))
11692 (file-name (string-append name "-" version "-checkout"))
11693 (sha256
11694 (base32
11695 "0xchm3rgilj6vfjnyzfzzymfd7djr64sbrmrvs3njbwi66jqbzw9"))))
11696 (build-system perl-build-system)
11697 (arguments
11698 `(#:tests? #f ; there are no tests
11699 #:modules ((guix build utils)
11700 (ice-9 popen)
11701 (srfi srfi-26)
11702 (guix build perl-build-system))
11703 #:phases
11704 (modify-phases %standard-phases
11705 ;; The bundled plotly.js is minified.
11706 (add-after 'unpack 'replace-plotly.js
11707 (lambda* (#:key inputs #:allow-other-keys)
11708 (let* ((file (assoc-ref inputs "plotly.js"))
11709 (installed "plotly/plotly.js"))
11710 (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
11711 (call-with-output-file installed
11712 (cut dump-port minified <>))))
11713 #t))
11714 (delete 'configure)
11715 (delete 'build)
11716 (replace 'install
11717 (lambda* (#:key inputs outputs #:allow-other-keys)
11718 (let* ((out (assoc-ref outputs "out"))
11719 (bin (string-append out "/bin"))
11720 (share (string-append out "/share/bismark"))
11721 (docdir (string-append out "/share/doc/bismark"))
11722 (docs '("Docs/Bismark_User_Guide.html"))
11723 (scripts '("bismark"
11724 "bismark_genome_preparation"
11725 "bismark_methylation_extractor"
11726 "bismark2bedGraph"
11727 "bismark2report"
11728 "coverage2cytosine"
11729 "deduplicate_bismark"
11730 "filter_non_conversion"
11731 "bam2nuc"
11732 "bismark2summary"
11733 "NOMe_filtering")))
11734 (substitute* "bismark2report"
11735 (("\\$RealBin/plotly")
11736 (string-append share "/plotly")))
11737 (mkdir-p share)
11738 (mkdir-p docdir)
11739 (mkdir-p bin)
11740 (for-each (lambda (file) (install-file file bin))
11741 scripts)
11742 (for-each (lambda (file) (install-file file docdir))
11743 docs)
11744 (copy-recursively "Docs/Images" (string-append docdir "/Images"))
11745 (copy-recursively "plotly"
11746 (string-append share "/plotly"))
11747
11748 ;; Fix references to gunzip
11749 (substitute* (map (lambda (file)
11750 (string-append bin "/" file))
11751 scripts)
11752 (("\"gunzip -c")
11753 (string-append "\"" (assoc-ref inputs "gzip")
11754 "/bin/gunzip -c")))
11755 #t))))))
11756 (inputs
11757 `(("gzip" ,gzip)
11758 ("perl-carp" ,perl-carp)
11759 ("perl-getopt-long" ,perl-getopt-long)))
11760 (native-inputs
11761 `(("plotly.js"
11762 ,(origin
11763 (method url-fetch)
11764 (uri (string-append "https://raw.githubusercontent.com/plotly/plotly.js/"
11765 "v1.39.4/dist/plotly.js"))
11766 (sha256
11767 (base32 "138mwsr4nf5qif4mrxx286mpnagxd1xwl6k8aidrjgknaqg88zyr"))))
11768 ("uglify-js" ,uglify-js)))
11769 (home-page "https://www.bioinformatics.babraham.ac.uk/projects/bismark/")
11770 (synopsis "Map bisulfite treated sequence reads and analyze methylation")
11771 (description "Bismark is a program to map bisulfite treated sequencing
11772 reads to a genome of interest and perform methylation calls in a single step.
11773 The output can be easily imported into a genome viewer, such as SeqMonk, and
11774 enables a researcher to analyse the methylation levels of their samples
11775 straight away. Its main features are:
11776
11777 @itemize
11778 @item Bisulfite mapping and methylation calling in one single step
11779 @item Supports single-end and paired-end read alignments
11780 @item Supports ungapped and gapped alignments
11781 @item Alignment seed length, number of mismatches etc are adjustable
11782 @item Output discriminates between cytosine methylation in CpG, CHG
11783 and CHH context
11784 @end itemize\n")
11785 (license license:gpl3+)))
11786
11787 (define-public paml
11788 (package
11789 (name "paml")
11790 (version "4.9e")
11791 (source (origin
11792 (method url-fetch)
11793 (uri (string-append "http://abacus.gene.ucl.ac.uk/software/"
11794 "paml" version ".tgz"))
11795 (sha256
11796 (base32
11797 "13zf6h9fiqghwhch2h06x1zdr6s42plsnqahflp5g7myr3han3s6"))
11798 (modules '((guix build utils)))
11799 ;; Remove Windows binaries
11800 (snippet
11801 '(begin
11802 (for-each delete-file (find-files "." "\\.exe$"))
11803 ;; Some files in the original tarball have restrictive
11804 ;; permissions, which makes repackaging fail
11805 (for-each (lambda (file) (chmod file #o644)) (find-files "."))
11806 #t))))
11807 (build-system gnu-build-system)
11808 (arguments
11809 `(#:tests? #f ; there are no tests
11810 #:make-flags '("CC=gcc")
11811 #:phases
11812 (modify-phases %standard-phases
11813 (replace 'configure
11814 (lambda _
11815 (substitute* "src/BFdriver.c"
11816 (("/bin/bash") (which "bash")))
11817 (chdir "src")
11818 #t))
11819 (replace 'install
11820 (lambda* (#:key outputs #:allow-other-keys)
11821 (let ((tools '("baseml" "basemlg" "codeml"
11822 "pamp" "evolver" "yn00" "chi2"))
11823 (bin (string-append (assoc-ref outputs "out") "/bin"))
11824 (docdir (string-append (assoc-ref outputs "out")
11825 "/share/doc/paml")))
11826 (mkdir-p bin)
11827 (for-each (lambda (file) (install-file file bin)) tools)
11828 (copy-recursively "../doc" docdir)
11829 #t))))))
11830 (home-page "http://abacus.gene.ucl.ac.uk/software/paml.html")
11831 (synopsis "Phylogentic analysis by maximum likelihood")
11832 (description "PAML (for Phylogentic Analysis by Maximum Likelihood)
11833 contains a few programs for model fitting and phylogenetic tree reconstruction
11834 using nucleotide or amino-acid sequence data.")
11835 ;; GPLv3 only
11836 (license license:gpl3)))
11837
11838 (define-public kallisto
11839 (package
11840 (name "kallisto")
11841 (version "0.44.0")
11842 (source (origin
11843 (method git-fetch)
11844 (uri (git-reference
11845 (url "https://github.com/pachterlab/kallisto")
11846 (commit (string-append "v" version))))
11847 (file-name (git-file-name name version))
11848 (sha256
11849 (base32
11850 "0nj382jiywqnpgvyhichajpkkh5r0bapn43f4dx40zdaq5v4m40m"))))
11851 (build-system cmake-build-system)
11852 (arguments
11853 `(#:tests? #f ; no "check" target
11854 #:phases
11855 (modify-phases %standard-phases
11856 (add-after 'unpack 'do-not-use-bundled-htslib
11857 (lambda _
11858 (substitute* "CMakeLists.txt"
11859 (("^ExternalProject_Add" m)
11860 (string-append "if (NEVER)\n" m))
11861 (("^\\)")
11862 (string-append ")\nendif(NEVER)"))
11863 (("include_directories\\(\\$\\{htslib_PREFIX.*" m)
11864 (string-append "# " m)))
11865 (substitute* "src/CMakeLists.txt"
11866 (("target_link_libraries\\(kallisto kallisto_core pthread \
11867 \\$\\{CMAKE_CURRENT_SOURCE_DIR\\}/../ext/htslib/libhts.a\\)")
11868 "target_link_libraries(kallisto kallisto_core pthread hts)")
11869 (("include_directories\\(\\.\\./ext/htslib\\)") ""))
11870 #t)))))
11871 (inputs
11872 `(("hdf5" ,hdf5)
11873 ("htslib" ,htslib)
11874 ("zlib" ,zlib)))
11875 (home-page "https://pachterlab.github.io/kallisto/")
11876 (synopsis "Near-optimal RNA-Seq quantification")
11877 (description
11878 "Kallisto is a program for quantifying abundances of transcripts from
11879 RNA-Seq data, or more generally of target sequences using high-throughput
11880 sequencing reads. It is based on the novel idea of pseudoalignment for
11881 rapidly determining the compatibility of reads with targets, without the need
11882 for alignment. Pseudoalignment of reads preserves the key information needed
11883 for quantification, and kallisto is therefore not only fast, but also as
11884 accurate as existing quantification tools.")
11885 (license license:bsd-2)))
11886
11887 (define-public libgff
11888 (package
11889 (name "libgff")
11890 (version "1.0")
11891 (source (origin
11892 (method git-fetch)
11893 (uri (git-reference
11894 (url "https://github.com/Kingsford-Group/libgff")
11895 (commit (string-append "v" version))))
11896 (file-name (git-file-name name version))
11897 (sha256
11898 (base32
11899 "0n6vfjnq7a2mianipscbshrvbncss8z4zkgkbjw754p9043nfkps"))))
11900 (build-system cmake-build-system)
11901 (arguments `(#:tests? #f)) ; no tests included
11902 (home-page "https://github.com/Kingsford-Group/libgff")
11903 (synopsis "Parser library for reading/writing GFF files")
11904 (description "This is a simple \"libraryfication\" of the GFF/GTF parsing
11905 code that is used in the Cufflinks codebase. The goal of this library is to
11906 provide this functionality without the necessity of drawing in a heavy-weight
11907 dependency like SeqAn.")
11908 (license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"))))
11909
11910 (define-public sailfish
11911 (package
11912 (name "sailfish")
11913 (version "0.10.1")
11914 (source (origin
11915 (method git-fetch)
11916 (uri (git-reference
11917 (url "https://github.com/kingsfordgroup/sailfish")
11918 (commit (string-append "v" version))))
11919 (file-name (git-file-name name version))
11920 (sha256
11921 (base32
11922 "1amcc5hqvsl42hg4x19bi9vy47cl874s0lw1fmi0hwsdk9i8c03v"))
11923 (modules '((guix build utils)))
11924 (snippet
11925 '(begin
11926 ;; Delete bundled headers for eigen3.
11927 (delete-file-recursively "include/eigen3/")
11928 #t))))
11929 (build-system cmake-build-system)
11930 (arguments
11931 `(#:configure-flags
11932 (list (string-append "-DBOOST_INCLUDEDIR="
11933 (assoc-ref %build-inputs "boost")
11934 "/include/")
11935 (string-append "-DBOOST_LIBRARYDIR="
11936 (assoc-ref %build-inputs "boost")
11937 "/lib/")
11938 (string-append "-DBoost_LIBRARIES="
11939 "-lboost_iostreams "
11940 "-lboost_filesystem "
11941 "-lboost_system "
11942 "-lboost_thread "
11943 "-lboost_timer "
11944 "-lboost_chrono "
11945 "-lboost_program_options")
11946 "-DBoost_FOUND=TRUE"
11947 ;; Don't download RapMap---we already have it!
11948 "-DFETCHED_RAPMAP=1")
11949 ;; Tests must be run after installation and the location of the test
11950 ;; data file must be overridden. But the tests fail. It looks like
11951 ;; they are not really meant to be run.
11952 #:tests? #f
11953 #:phases
11954 (modify-phases %standard-phases
11955 ;; Boost cannot be found, even though it's right there.
11956 (add-after 'unpack 'do-not-look-for-boost
11957 (lambda* (#:key inputs #:allow-other-keys)
11958 (substitute* "CMakeLists.txt"
11959 (("find_package\\(Boost 1\\.53\\.0") "#"))
11960 #t))
11961 (add-after 'unpack 'do-not-assign-to-macro
11962 (lambda _
11963 (substitute* "include/spdlog/details/format.cc"
11964 (("const unsigned CHAR_WIDTH = 1;") ""))
11965 #t))
11966 (add-after 'unpack 'prepare-rapmap
11967 (lambda* (#:key inputs #:allow-other-keys)
11968 (let ((src "external/install/src/rapmap/")
11969 (include "external/install/include/rapmap/")
11970 (rapmap (assoc-ref inputs "rapmap")))
11971 (mkdir-p "/tmp/rapmap")
11972 (invoke "tar" "xf"
11973 (assoc-ref inputs "rapmap")
11974 "-C" "/tmp/rapmap"
11975 "--strip-components=1")
11976 (mkdir-p src)
11977 (mkdir-p include)
11978 (for-each (lambda (file)
11979 (install-file file src))
11980 (find-files "/tmp/rapmap/src" "\\.(c|cpp)"))
11981 (copy-recursively "/tmp/rapmap/include" include))
11982 #t))
11983 (add-after 'unpack 'use-system-libraries
11984 (lambda* (#:key inputs #:allow-other-keys)
11985 (substitute* '("src/SailfishIndexer.cpp"
11986 "src/SailfishUtils.cpp"
11987 "src/SailfishQuantify.cpp"
11988 "src/FASTAParser.cpp"
11989 "include/PCA.hpp"
11990 "include/SailfishUtils.hpp"
11991 "include/SailfishIndex.hpp"
11992 "include/CollapsedEMOptimizer.hpp"
11993 "src/CollapsedEMOptimizer.cpp")
11994 (("#include \"jellyfish/config.h\"") ""))
11995 (substitute* "src/CMakeLists.txt"
11996 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/include/jellyfish-2.2..")
11997 (string-append (assoc-ref inputs "jellyfish")
11998 "/include/jellyfish-" ,(package-version jellyfish)))
11999 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libjellyfish-2.0.a")
12000 (string-append (assoc-ref inputs "jellyfish")
12001 "/lib/libjellyfish-2.0.a"))
12002 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
12003 (string-append (assoc-ref inputs "libdivsufsort")
12004 "/lib/libdivsufsort.so"))
12005 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
12006 (string-append (assoc-ref inputs "libdivsufsort")
12007 "/lib/libdivsufsort64.so")))
12008 (substitute* "CMakeLists.txt"
12009 ;; Don't prefer static libs
12010 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
12011 (("find_package\\(Jellyfish.*") "")
12012 (("ExternalProject_Add\\(libjellyfish") "message(")
12013 (("ExternalProject_Add\\(libgff") "message(")
12014 (("ExternalProject_Add\\(libsparsehash") "message(")
12015 (("ExternalProject_Add\\(libdivsufsort") "message("))
12016
12017 ;; Ensure that Eigen headers can be found
12018 (setenv "CPLUS_INCLUDE_PATH"
12019 (string-append (assoc-ref inputs "eigen")
12020 "/include/eigen3:"
12021 (or (getenv "CPLUS_INCLUDE_PATH") "")))
12022 #t)))))
12023 (inputs
12024 `(("boost" ,boost)
12025 ("eigen" ,eigen)
12026 ("jemalloc" ,jemalloc)
12027 ("jellyfish" ,jellyfish)
12028 ("sparsehash" ,sparsehash)
12029 ("rapmap" ,(origin
12030 (method git-fetch)
12031 (uri (git-reference
12032 (url "https://github.com/COMBINE-lab/RapMap")
12033 (commit (string-append "sf-v" version))))
12034 (file-name (string-append "rapmap-sf-v" version "-checkout"))
12035 (sha256
12036 (base32
12037 "1hv79l5i576ykv5a1srj2p0q36yvyl5966m0fcy2lbi169ipjakf"))
12038 (modules '((guix build utils)))
12039 ;; These files are expected to be excluded.
12040 (snippet
12041 '(begin (delete-file-recursively "include/spdlog")
12042 (for-each delete-file '("include/xxhash.h"
12043 "src/xxhash.c"))
12044 #t))))
12045 ("libdivsufsort" ,libdivsufsort)
12046 ("libgff" ,libgff)
12047 ("tbb" ,tbb)
12048 ("zlib" ,zlib)))
12049 (native-inputs
12050 `(("pkg-config" ,pkg-config)))
12051 (home-page "https://www.cs.cmu.edu/~ckingsf/software/sailfish/")
12052 (synopsis "Mapping-based isoform quantification from RNA-Seq reads")
12053 (description "Sailfish is a tool for genomic transcript quantification
12054 from RNA-seq data. It requires a set of target transcripts (either from a
12055 reference or de-novo assembly) to quantify. All you need to run sailfish is a
12056 fasta file containing your reference transcripts and a (set of) fasta/fastq
12057 file(s) containing your reads.")
12058 (license license:gpl3+)))
12059
12060 (define libstadenio-for-salmon
12061 (package
12062 (name "libstadenio")
12063 (version "1.14.8")
12064 (source (origin
12065 (method git-fetch)
12066 (uri (git-reference
12067 (url "https://github.com/COMBINE-lab/staden-io_lib")
12068 (commit (string-append "v" version))))
12069 (file-name (string-append name "-" version "-checkout"))
12070 (sha256
12071 (base32
12072 "1x8kxxqxl892vwfbprlbyfwkkv7c34ggkc94892x9x0g37x5nbwx"))))
12073 (build-system gnu-build-system)
12074 (arguments '(#:parallel-tests? #f)) ; not supported
12075 (inputs
12076 `(("zlib" ,zlib)))
12077 (native-inputs
12078 `(("perl" ,perl))) ; for tests
12079 (home-page "https://github.com/COMBINE-lab/staden-io_lib")
12080 (synopsis "General purpose trace and experiment file library")
12081 (description "This package provides a library of file reading and writing
12082 code to provide a general purpose Trace file (and Experiment File) reading
12083 interface.
12084
12085 The following file formats are supported:
12086
12087 @enumerate
12088 @item SCF trace files
12089 @item ABI trace files
12090 @item ALF trace files
12091 @item ZTR trace files
12092 @item SFF trace archives
12093 @item SRF trace archives
12094 @item Experiment files
12095 @item Plain text files
12096 @item SAM/BAM sequence files
12097 @item CRAM sequence files
12098 @end enumerate\n")
12099 (license license:bsd-3)))
12100
12101 (define-public salmon
12102 (package
12103 (name "salmon")
12104 (version "0.13.1")
12105 (source (origin
12106 (method git-fetch)
12107 (uri (git-reference
12108 (url "https://github.com/COMBINE-lab/salmon")
12109 (commit (string-append "v" version))))
12110 (file-name (git-file-name name version))
12111 (sha256
12112 (base32
12113 "1i2z4aivicmiixdz9bxalp7vmfzi3k92fxa63iqa8kgvfw5a4aq5"))
12114 (modules '((guix build utils)))
12115 (snippet
12116 '(begin
12117 ;; Delete bundled headers for eigen3.
12118 (delete-file-recursively "include/eigen3/")
12119 #t))))
12120 (build-system cmake-build-system)
12121 (arguments
12122 `(#:configure-flags
12123 (list (string-append "-DBOOST_INCLUDEDIR="
12124 (assoc-ref %build-inputs "boost")
12125 "/include/")
12126 (string-append "-DBOOST_LIBRARYDIR="
12127 (assoc-ref %build-inputs "boost")
12128 "/lib/")
12129 (string-append "-DBoost_LIBRARIES="
12130 "-lboost_iostreams "
12131 "-lboost_filesystem "
12132 "-lboost_system "
12133 "-lboost_thread "
12134 "-lboost_timer "
12135 "-lboost_chrono "
12136 "-lboost_program_options")
12137 "-DBoost_FOUND=TRUE"
12138 "-DTBB_LIBRARIES=tbb tbbmalloc"
12139 ;; Don't download RapMap---we already have it!
12140 "-DFETCHED_RAPMAP=1")
12141 #:phases
12142 (modify-phases %standard-phases
12143 ;; Boost cannot be found, even though it's right there.
12144 (add-after 'unpack 'do-not-look-for-boost
12145 (lambda* (#:key inputs #:allow-other-keys)
12146 (substitute* "CMakeLists.txt"
12147 (("find_package\\(Boost 1\\.59\\.0") "#"))
12148 #t))
12149 (add-after 'unpack 'do-not-phone-home
12150 (lambda _
12151 (substitute* "src/Salmon.cpp"
12152 (("getVersionMessage\\(\\)") "\"\""))
12153 #t))
12154 (add-after 'unpack 'prepare-rapmap
12155 (lambda* (#:key inputs #:allow-other-keys)
12156 (let ((src "external/install/src/rapmap/")
12157 (include "external/install/include/rapmap/")
12158 (rapmap (assoc-ref inputs "rapmap")))
12159 (mkdir-p src)
12160 (mkdir-p include)
12161 (copy-recursively (string-append rapmap "/src") src)
12162 (copy-recursively (string-append rapmap "/include") include)
12163 (for-each delete-file '("external/install/include/rapmap/xxhash.h"
12164 "external/install/include/rapmap/FastxParser.hpp"
12165 "external/install/include/rapmap/concurrentqueue.h"
12166 "external/install/include/rapmap/FastxParserThreadUtils.hpp"
12167 "external/install/src/rapmap/FastxParser.cpp"
12168 "external/install/src/rapmap/xxhash.c"))
12169 (delete-file-recursively "external/install/include/rapmap/spdlog"))
12170 #t))
12171 (add-after 'unpack 'use-system-libraries
12172 (lambda* (#:key inputs #:allow-other-keys)
12173 (substitute* "CMakeLists.txt"
12174 ;; Don't prefer static libs
12175 (("SET\\(CMAKE_FIND_LIBRARY_SUFFIXES.*") "")
12176 (("set\\(TBB_LIBRARIES") "message(")
12177 ;; Don't download anything
12178 (("DOWNLOAD_COMMAND") "DOWNLOAD_COMMAND echo")
12179 (("externalproject_add\\(libcereal") "message(")
12180 (("externalproject_add\\(libgff") "message(")
12181 (("externalproject_add\\(libtbb") "message(")
12182 (("externalproject_add\\(libdivsufsort") "message(")
12183 (("externalproject_add\\(libstadenio") "message(")
12184 (("externalproject_add_step\\(") "message("))
12185 (substitute* "src/CMakeLists.txt"
12186 (("add_dependencies") "#")
12187 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libstaden-read.a")
12188 (string-append (assoc-ref inputs "libstadenio-for-salmon")
12189 "/lib/libstaden-read.so"))
12190 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort.a")
12191 (string-append (assoc-ref inputs "libdivsufsort")
12192 "/lib/libdivsufsort.so"))
12193 (("\\$\\{GAT_SOURCE_DIR\\}/external/install/lib/libdivsufsort64.a")
12194 (string-append (assoc-ref inputs "libdivsufsort")
12195 "/lib/libdivsufsort64.so"))
12196 (("lib/libdivsufsort.a") "/lib/libdivsufsort.so"))
12197
12198 ;; Ensure that all headers can be found
12199 (setenv "CPLUS_INCLUDE_PATH"
12200 (string-append (or (getenv "CPLUS_INCLUDE_PATH") "")
12201 ":"
12202 (assoc-ref inputs "eigen")
12203 "/include/eigen3"))
12204 #t))
12205 ;; CMAKE_INSTALL_PREFIX does not exist when the tests are
12206 ;; run. It only exists after the install phase.
12207 (add-after 'unpack 'fix-tests
12208 (lambda _
12209 (substitute* "src/CMakeLists.txt"
12210 (("DTOPLEVEL_DIR=\\$\\{CMAKE_INSTALL_PREFIX")
12211 "DTOPLEVEL_DIR=${GAT_SOURCE_DIR"))
12212 #t)))))
12213 (inputs
12214 `(("boost" ,boost)
12215 ("bzip2" ,bzip2)
12216 ("cereal" ,cereal)
12217 ("eigen" ,eigen)
12218 ("rapmap" ,(origin
12219 (method git-fetch)
12220 (uri (git-reference
12221 (url "https://github.com/COMBINE-lab/RapMap")
12222 (commit (string-append "salmon-v" version))))
12223 (file-name (string-append "rapmap-salmon-v" version "-checkout"))
12224 (sha256
12225 (base32
12226 "1biplxf0csc7a8h1wf219b0vmjkvw6wk2zylhdklb577kgmihdms"))))
12227 ("jemalloc" ,jemalloc)
12228 ("libgff" ,libgff)
12229 ("tbb" ,tbb)
12230 ("libdivsufsort" ,libdivsufsort)
12231 ("libstadenio-for-salmon" ,libstadenio-for-salmon)
12232 ("xz" ,xz)
12233 ("zlib" ,zlib)))
12234 (native-inputs
12235 `(("pkg-config" ,pkg-config)))
12236 (home-page "https://github.com/COMBINE-lab/salmon")
12237 (synopsis "Quantification from RNA-seq reads using lightweight alignments")
12238 (description "Salmon is a program to produce highly-accurate,
12239 transcript-level quantification estimates from RNA-seq data. Salmon achieves
12240 its accuracy and speed via a number of different innovations, including the
12241 use of lightweight alignments (accurate but fast-to-compute proxies for
12242 traditional read alignments) and massively-parallel stochastic collapsed
12243 variational inference.")
12244 (license license:gpl3+)))
12245
12246 (define-public python-loompy
12247 (package
12248 (name "python-loompy")
12249 (version "2.0.17")
12250 ;; The tarball on Pypi does not include the tests.
12251 (source (origin
12252 (method git-fetch)
12253 (uri (git-reference
12254 (url "https://github.com/linnarsson-lab/loompy")
12255 (commit version)))
12256 (file-name (git-file-name name version))
12257 (sha256
12258 (base32
12259 "12a5kjgiikapv93wahfw0frszx1lblnppyz3vs5gy8fgmgngra07"))))
12260 (build-system python-build-system)
12261 (arguments
12262 `(#:phases
12263 (modify-phases %standard-phases
12264 (replace 'check
12265 (lambda _
12266 (setenv "PYTHONPATH"
12267 (string-append (getcwd) ":"
12268 (getenv "PYTHONPATH")))
12269 (invoke "pytest" "tests")
12270 #t)))))
12271 (propagated-inputs
12272 `(("python-h5py" ,python-h5py)
12273 ("python-numpy" ,python-numpy)
12274 ("python-pandas" ,python-pandas)
12275 ("python-scipy" ,python-scipy)))
12276 (native-inputs
12277 `(("python-pytest" ,python-pytest)))
12278 (home-page "https://github.com/linnarsson-lab/loompy")
12279 (synopsis "Work with .loom files for single-cell RNA-seq data")
12280 (description "The loom file format is an efficient format for very large
12281 omics datasets, consisting of a main matrix, optional additional layers, a
12282 variable number of row and column annotations. Loom also supports sparse
12283 graphs. This library makes it easy to work with @file{.loom} files for
12284 single-cell RNA-seq data.")
12285 (license license:bsd-3)))
12286
12287 ;; We cannot use the latest commit because it requires Java 9.
12288 (define-public java-forester
12289 (let ((commit "86b07efe302d5094b42deed9260f719a4c4ac2e6")
12290 (revision "1"))
12291 (package
12292 (name "java-forester")
12293 (version (string-append "0-" revision "." (string-take commit 7)))
12294 (source (origin
12295 (method git-fetch)
12296 (uri (git-reference
12297 (url "https://github.com/cmzmasek/forester")
12298 (commit commit)))
12299 (file-name (string-append name "-" version "-checkout"))
12300 (sha256
12301 (base32
12302 "0vxavc1yrf84yrnf20dq26hi0lglidk8d382xrxsy4qmlbjd276z"))
12303 (modules '((guix build utils)))
12304 (snippet
12305 '(begin
12306 ;; Delete bundled jars and pre-built classes
12307 (delete-file-recursively "forester/java/resources")
12308 (delete-file-recursively "forester/java/classes")
12309 (for-each delete-file (find-files "forester/java/" "\\.jar$"))
12310 ;; Delete bundled applications
12311 (delete-file-recursively "forester_applications")
12312 #t))))
12313 (build-system ant-build-system)
12314 (arguments
12315 `(#:tests? #f ; there are none
12316 #:jdk ,icedtea-8
12317 #:modules ((guix build ant-build-system)
12318 (guix build utils)
12319 (guix build java-utils)
12320 (sxml simple)
12321 (sxml transform))
12322 #:phases
12323 (modify-phases %standard-phases
12324 (add-after 'unpack 'chdir
12325 (lambda _ (chdir "forester/java") #t))
12326 (add-after 'chdir 'fix-dependencies
12327 (lambda _
12328 (chmod "build.xml" #o664)
12329 (call-with-output-file "build.xml.new"
12330 (lambda (port)
12331 (sxml->xml
12332 (pre-post-order
12333 (with-input-from-file "build.xml"
12334 (lambda _ (xml->sxml #:trim-whitespace? #t)))
12335 `(;; Remove all unjar tags to avoid repacking classes.
12336 (unjar . ,(lambda _ '()))
12337 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
12338 (*text* . ,(lambda (_ txt) txt))))
12339 port)))
12340 (rename-file "build.xml.new" "build.xml")
12341 #t))
12342 ;; FIXME: itext is difficult to package as it depends on a few
12343 ;; unpackaged libraries.
12344 (add-after 'chdir 'remove-dependency-on-unpackaged-itext
12345 (lambda _
12346 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
12347 (substitute* "src/org/forester/archaeopteryx/MainFrame.java"
12348 (("pdf_written_to = PdfExporter.*")
12349 "throw new IOException(\"PDF export is not available.\");"))
12350 #t))
12351 ;; There is no install target
12352 (replace 'install (install-jars ".")))))
12353 (propagated-inputs
12354 `(("java-commons-codec" ,java-commons-codec)
12355 ("java-openchart2" ,java-openchart2)))
12356 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
12357 (synopsis "Phylogenomics libraries for Java")
12358 (description "Forester is a collection of Java libraries for
12359 phylogenomics and evolutionary biology research. It includes support for
12360 reading, writing, and exporting phylogenetic trees.")
12361 (license license:lgpl2.1+))))
12362
12363 (define-public java-forester-1.005
12364 (package
12365 (name "java-forester")
12366 (version "1.005")
12367 (source (origin
12368 (method url-fetch)
12369 (uri (string-append "https://repo1.maven.org/maven2/"
12370 "org/biojava/thirdparty/forester/"
12371 version "/forester-" version "-sources.jar"))
12372 (file-name (string-append name "-" version ".jar"))
12373 (sha256
12374 (base32
12375 "04r8qv4rk3p71z4ajrvp11py1z46qrx0047j3zzs79s6lnsm3lcv"))))
12376 (build-system ant-build-system)
12377 (arguments
12378 `(#:tests? #f ; there are none
12379 #:jdk ,icedtea-8
12380 #:modules ((guix build ant-build-system)
12381 (guix build utils)
12382 (guix build java-utils)
12383 (sxml simple)
12384 (sxml transform))
12385 #:phases
12386 (modify-phases %standard-phases
12387 (add-after 'unpack 'fix-dependencies
12388 (lambda* (#:key inputs #:allow-other-keys)
12389 (call-with-output-file "build.xml"
12390 (lambda (port)
12391 (sxml->xml
12392 (pre-post-order
12393 (with-input-from-file "src/build.xml"
12394 (lambda _ (xml->sxml #:trim-whitespace? #t)))
12395 `(;; Remove all unjar tags to avoid repacking classes.
12396 (unjar . ,(lambda _ '()))
12397 (*default* . ,(lambda (tag . kids) `(,tag ,@kids)))
12398 (*text* . ,(lambda (_ txt) txt))))
12399 port)))
12400 (copy-file (assoc-ref inputs "synth_look_and_feel_1.xml")
12401 "synth_look_and_feel_1.xml")
12402 (copy-file (assoc-ref inputs "phyloxml.xsd")
12403 "phyloxml.xsd")
12404 (substitute* "build.xml"
12405 (("../resources/synth_laf/synth_look_and_feel_1.xml")
12406 "synth_look_and_feel_1.xml")
12407 (("../resources/phyloxml_schema/1.10/phyloxml.xsd")
12408 "phyloxml.xsd"))
12409 #t))
12410 ;; FIXME: itext is difficult to package as it depends on a few
12411 ;; unpackaged libraries.
12412 (add-after 'unpack 'remove-dependency-on-unpackaged-itext
12413 (lambda _
12414 (delete-file "src/org/forester/archaeopteryx/PdfExporter.java")
12415 (substitute* '("src/org/forester/archaeopteryx/MainFrame.java"
12416 "src/org/forester/archaeopteryx/MainFrameApplication.java")
12417 (("pdf_written_to = PdfExporter.*")
12418 "throw new IOException(\"PDF export is not available.\"); /*")
12419 ((".getPrintSizeX\\(\\), getOptions\\(\\).getPrintSizeY\\(\\) \\);") "*/")
12420 (("getCurrentTreePanel\\(\\).getHeight\\(\\) \\);") "*/"))
12421 #t))
12422 (add-after 'unpack 'delete-pre-built-classes
12423 (lambda _ (delete-file-recursively "src/classes") #t))
12424 ;; There is no install target
12425 (replace 'install (install-jars ".")))))
12426 (propagated-inputs
12427 `(("java-commons-codec" ,java-commons-codec)
12428 ("java-openchart2" ,java-openchart2)))
12429 ;; The source archive does not contain the resources.
12430 (native-inputs
12431 `(("phyloxml.xsd"
12432 ,(origin
12433 (method url-fetch)
12434 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
12435 "b61cc2dcede0bede317db362472333115756b8c6/"
12436 "forester/resources/phyloxml_schema/1.10/phyloxml.xsd"))
12437 (file-name (string-append name "-phyloxml-" version ".xsd"))
12438 (sha256
12439 (base32
12440 "1zxc4m8sn4n389nqdnpxa8d0k17qnr3pm2y5y6g6vh4k0zm52npv"))))
12441 ("synth_look_and_feel_1.xml"
12442 ,(origin
12443 (method url-fetch)
12444 (uri (string-append "https://raw.githubusercontent.com/cmzmasek/forester/"
12445 "29e04321615da6b35c1e15c60e52caf3f21d8e6a/"
12446 "forester/java/classes/resources/"
12447 "synth_look_and_feel_1.xml"))
12448 (file-name (string-append name "-synth-look-and-feel-" version ".xml"))
12449 (sha256
12450 (base32
12451 "1gv5602gv4k7y7713y75a4jvj7i9s7nildsbdl7n9q10sc2ikg8h"))))))
12452 (home-page "https://sites.google.com/site/cmzmasek/home/software/forester")
12453 (synopsis "Phylogenomics libraries for Java")
12454 (description "Forester is a collection of Java libraries for
12455 phylogenomics and evolutionary biology research. It includes support for
12456 reading, writing, and exporting phylogenetic trees.")
12457 (license license:lgpl2.1+)))
12458
12459 (define-public java-biojava-core
12460 (package
12461 (name "java-biojava-core")
12462 (version "4.2.11")
12463 (source (origin
12464 (method git-fetch)
12465 (uri (git-reference
12466 (url "https://github.com/biojava/biojava")
12467 (commit (string-append "biojava-" version))))
12468 (file-name (string-append name "-" version "-checkout"))
12469 (sha256
12470 (base32
12471 "1bvryh2bpsvash8ln79cmc9sqm8qw72hz4xzwqxcrjm8ssxszhqk"))))
12472 (build-system ant-build-system)
12473 (arguments
12474 `(#:jdk ,icedtea-8
12475 #:jar-name "biojava-core.jar"
12476 #:source-dir "biojava-core/src/main/java/"
12477 #:test-dir "biojava-core/src/test"
12478 ;; These tests seem to require internet access.
12479 #:test-exclude (list "**/SearchIOTest.java"
12480 "**/BlastXMLParserTest.java"
12481 "**/GenbankCookbookTest.java"
12482 "**/GenbankProxySequenceReaderTest.java")
12483 #:phases
12484 (modify-phases %standard-phases
12485 (add-before 'build 'copy-resources
12486 (lambda _
12487 (copy-recursively "biojava-core/src/main/resources"
12488 "build/classes")
12489 #t))
12490 (add-before 'check 'copy-test-resources
12491 (lambda _
12492 (copy-recursively "biojava-core/src/test/resources"
12493 "build/test-classes")
12494 #t)))))
12495 (propagated-inputs
12496 `(("java-log4j-api" ,java-log4j-api)
12497 ("java-log4j-core" ,java-log4j-core)
12498 ("java-slf4j-api" ,java-slf4j-api)
12499 ("java-slf4j-simple" ,java-slf4j-simple)))
12500 (native-inputs
12501 `(("java-junit" ,java-junit)
12502 ("java-hamcrest-core" ,java-hamcrest-core)))
12503 (home-page "https://biojava.org")
12504 (synopsis "Core libraries of Java framework for processing biological data")
12505 (description "BioJava is a project dedicated to providing a Java framework
12506 for processing biological data. It provides analytical and statistical
12507 routines, parsers for common file formats, reference implementations of
12508 popular algorithms, and allows the manipulation of sequences and 3D
12509 structures. The goal of the biojava project is to facilitate rapid
12510 application development for bioinformatics.
12511
12512 This package provides the core libraries.")
12513 (license license:lgpl2.1+)))
12514
12515 (define-public java-biojava-phylo
12516 (package (inherit java-biojava-core)
12517 (name "java-biojava-phylo")
12518 (build-system ant-build-system)
12519 (arguments
12520 `(#:jdk ,icedtea-8
12521 #:jar-name "biojava-phylo.jar"
12522 #:source-dir "biojava-phylo/src/main/java/"
12523 #:test-dir "biojava-phylo/src/test"
12524 #:phases
12525 (modify-phases %standard-phases
12526 (add-before 'build 'copy-resources
12527 (lambda _
12528 (copy-recursively "biojava-phylo/src/main/resources"
12529 "build/classes")
12530 #t))
12531 (add-before 'check 'copy-test-resources
12532 (lambda _
12533 (copy-recursively "biojava-phylo/src/test/resources"
12534 "build/test-classes")
12535 #t)))))
12536 (propagated-inputs
12537 `(("java-log4j-api" ,java-log4j-api)
12538 ("java-log4j-core" ,java-log4j-core)
12539 ("java-slf4j-api" ,java-slf4j-api)
12540 ("java-slf4j-simple" ,java-slf4j-simple)
12541 ("java-biojava-core" ,java-biojava-core)
12542 ("java-forester" ,java-forester)))
12543 (native-inputs
12544 `(("java-junit" ,java-junit)
12545 ("java-hamcrest-core" ,java-hamcrest-core)))
12546 (home-page "https://biojava.org")
12547 (synopsis "Biojava interface to the forester phylogenomics library")
12548 (description "The phylo module provides a biojava interface layer to the
12549 forester phylogenomics library for constructing phylogenetic trees.")))
12550
12551 (define-public java-biojava-alignment
12552 (package (inherit java-biojava-core)
12553 (name "java-biojava-alignment")
12554 (build-system ant-build-system)
12555 (arguments
12556 `(#:jdk ,icedtea-8
12557 #:jar-name "biojava-alignment.jar"
12558 #:source-dir "biojava-alignment/src/main/java/"
12559 #:test-dir "biojava-alignment/src/test"
12560 #:phases
12561 (modify-phases %standard-phases
12562 (add-before 'build 'copy-resources
12563 (lambda _
12564 (copy-recursively "biojava-alignment/src/main/resources"
12565 "build/classes")
12566 #t))
12567 (add-before 'check 'copy-test-resources
12568 (lambda _
12569 (copy-recursively "biojava-alignment/src/test/resources"
12570 "build/test-classes")
12571 #t)))))
12572 (propagated-inputs
12573 `(("java-log4j-api" ,java-log4j-api)
12574 ("java-log4j-core" ,java-log4j-core)
12575 ("java-slf4j-api" ,java-slf4j-api)
12576 ("java-slf4j-simple" ,java-slf4j-simple)
12577 ("java-biojava-core" ,java-biojava-core)
12578 ("java-biojava-phylo" ,java-biojava-phylo)
12579 ("java-forester" ,java-forester)))
12580 (native-inputs
12581 `(("java-junit" ,java-junit)
12582 ("java-hamcrest-core" ,java-hamcrest-core)))
12583 (home-page "https://biojava.org")
12584 (synopsis "Biojava API for genetic sequence alignment")
12585 (description "The alignment module of BioJava provides an API that
12586 contains
12587
12588 @itemize
12589 @item implementations of dynamic programming algorithms for sequence
12590 alignment;
12591 @item reading and writing of popular alignment file formats;
12592 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12593 @end itemize\n")))
12594
12595 (define-public java-biojava-core-4.0
12596 (package (inherit java-biojava-core)
12597 (name "java-biojava-core")
12598 (version "4.0.0")
12599 (source (origin
12600 (method git-fetch)
12601 (uri (git-reference
12602 (url "https://github.com/biojava/biojava")
12603 (commit (string-append "biojava-" version))))
12604 (file-name (string-append name "-" version "-checkout"))
12605 (sha256
12606 (base32
12607 "13675f6y9aqi7bi2lk3s1z7a22ynccjiqwa8izh7p97xi9wsfmd8"))))))
12608
12609 (define-public java-biojava-phylo-4.0
12610 (package (inherit java-biojava-core-4.0)
12611 (name "java-biojava-phylo")
12612 (build-system ant-build-system)
12613 (arguments
12614 `(#:jdk ,icedtea-8
12615 #:jar-name "biojava-phylo.jar"
12616 #:source-dir "biojava-phylo/src/main/java/"
12617 #:test-dir "biojava-phylo/src/test"
12618 #:phases
12619 (modify-phases %standard-phases
12620 (add-before 'build 'copy-resources
12621 (lambda _
12622 (copy-recursively "biojava-phylo/src/main/resources"
12623 "build/classes")
12624 #t))
12625 (add-before 'check 'copy-test-resources
12626 (lambda _
12627 (copy-recursively "biojava-phylo/src/test/resources"
12628 "build/test-classes")
12629 #t)))))
12630 (propagated-inputs
12631 `(("java-log4j-api" ,java-log4j-api)
12632 ("java-log4j-core" ,java-log4j-core)
12633 ("java-slf4j-api" ,java-slf4j-api)
12634 ("java-slf4j-simple" ,java-slf4j-simple)
12635 ("java-biojava-core" ,java-biojava-core-4.0)
12636 ("java-forester" ,java-forester-1.005)))
12637 (native-inputs
12638 `(("java-junit" ,java-junit)
12639 ("java-hamcrest-core" ,java-hamcrest-core)))
12640 (home-page "https://biojava.org")
12641 (synopsis "Biojava interface to the forester phylogenomics library")
12642 (description "The phylo module provides a biojava interface layer to the
12643 forester phylogenomics library for constructing phylogenetic trees.")))
12644
12645 (define-public java-biojava-alignment-4.0
12646 (package (inherit java-biojava-core-4.0)
12647 (name "java-biojava-alignment")
12648 (build-system ant-build-system)
12649 (arguments
12650 `(#:jdk ,icedtea-8
12651 #:jar-name "biojava-alignment.jar"
12652 #:source-dir "biojava-alignment/src/main/java/"
12653 #:test-dir "biojava-alignment/src/test"
12654 #:phases
12655 (modify-phases %standard-phases
12656 (add-before 'build 'copy-resources
12657 (lambda _
12658 (copy-recursively "biojava-alignment/src/main/resources"
12659 "build/classes")
12660 #t))
12661 (add-before 'check 'copy-test-resources
12662 (lambda _
12663 (copy-recursively "biojava-alignment/src/test/resources"
12664 "build/test-classes")
12665 #t)))))
12666 (propagated-inputs
12667 `(("java-log4j-api" ,java-log4j-api)
12668 ("java-log4j-core" ,java-log4j-core)
12669 ("java-slf4j-api" ,java-slf4j-api)
12670 ("java-slf4j-simple" ,java-slf4j-simple)
12671 ("java-biojava-core" ,java-biojava-core-4.0)
12672 ("java-biojava-phylo" ,java-biojava-phylo-4.0)
12673 ("java-forester" ,java-forester-1.005)))
12674 (native-inputs
12675 `(("java-junit" ,java-junit)
12676 ("java-hamcrest-core" ,java-hamcrest-core)))
12677 (home-page "https://biojava.org")
12678 (synopsis "Biojava API for genetic sequence alignment")
12679 (description "The alignment module of BioJava provides an API that
12680 contains
12681
12682 @itemize
12683 @item implementations of dynamic programming algorithms for sequence
12684 alignment;
12685 @item reading and writing of popular alignment file formats;
12686 @item a single-, or multi- threaded multiple sequence alignment algorithm.
12687 @end itemize\n")))
12688
12689 (define-public dropseq-tools
12690 (package
12691 (name "dropseq-tools")
12692 (version "1.13")
12693 (source
12694 (origin
12695 (method url-fetch)
12696 (uri "http://mccarrolllab.com/download/1276/")
12697 (file-name (string-append "dropseq-tools-" version ".zip"))
12698 (sha256
12699 (base32
12700 "0yrffckxqk5l8b5xb6z4laq157zd9mdypr2p4b4vq2bhjzi1sj0s"))
12701 ;; Delete bundled libraries
12702 (modules '((guix build utils)))
12703 (snippet
12704 '(begin
12705 (for-each delete-file (find-files "jar/lib" "\\.jar$"))
12706 (delete-file-recursively "3rdParty")
12707 #t))))
12708 (build-system ant-build-system)
12709 (arguments
12710 `(#:tests? #f ; test data are not included
12711 #:test-target "test"
12712 #:build-target "all"
12713 #:source-dir "public/src/"
12714 #:jdk ,icedtea-8
12715 #:make-flags
12716 (list (string-append "-Dpicard.executable.dir="
12717 (assoc-ref %build-inputs "java-picard")
12718 "/share/java/"))
12719 #:modules ((ice-9 match)
12720 (srfi srfi-1)
12721 (guix build utils)
12722 (guix build java-utils)
12723 (guix build ant-build-system))
12724 #:phases
12725 (modify-phases %standard-phases
12726 ;; FIXME: fails with "java.io.FileNotFoundException:
12727 ;; /gnu/store/…-dropseq-tools-1.13/share/java/lib/biojava-alignment.jar"
12728 (delete 'generate-jar-indices)
12729 ;; All dependencies must be linked to "lib", because that's where
12730 ;; they will be searched for when the Class-Path property of the
12731 ;; manifest is computed.
12732 (add-after 'unpack 'record-references
12733 (lambda* (#:key inputs #:allow-other-keys)
12734 (mkdir-p "jar/lib")
12735 (let ((dirs (filter-map (match-lambda
12736 ((name . dir)
12737 (if (and (string-prefix? "java-" name)
12738 (not (string=? name "java-testng")))
12739 dir #f)))
12740 inputs)))
12741 (for-each (lambda (jar)
12742 (symlink jar (string-append "jar/lib/" (basename jar))))
12743 (append-map (lambda (dir) (find-files dir "\\.jar$"))
12744 dirs)))
12745 #t))
12746 ;; There is no installation target
12747 (replace 'install
12748 (lambda* (#:key inputs outputs #:allow-other-keys)
12749 (let* ((out (assoc-ref outputs "out"))
12750 (bin (string-append out "/bin"))
12751 (share (string-append out "/share/java/"))
12752 (lib (string-append share "/lib/"))
12753 (scripts (list "BAMTagHistogram"
12754 "BAMTagofTagCounts"
12755 "BaseDistributionAtReadPosition"
12756 "CollapseBarcodesInPlace"
12757 "CollapseTagWithContext"
12758 "ConvertToRefFlat"
12759 "CreateIntervalsFiles"
12760 "DetectBeadSynthesisErrors"
12761 "DigitalExpression"
12762 "Drop-seq_alignment.sh"
12763 "FilterBAM"
12764 "FilterBAMByTag"
12765 "GatherGeneGCLength"
12766 "GatherMolecularBarcodeDistributionByGene"
12767 "GatherReadQualityMetrics"
12768 "PolyATrimmer"
12769 "ReduceGTF"
12770 "SelectCellsByNumTranscripts"
12771 "SingleCellRnaSeqMetricsCollector"
12772 "TagBamWithReadSequenceExtended"
12773 "TagReadWithGeneExon"
12774 "TagReadWithInterval"
12775 "TrimStartingSequence"
12776 "ValidateReference")))
12777 (for-each mkdir-p (list bin share lib))
12778 (install-file "dist/dropseq.jar" share)
12779 (for-each (lambda (script)
12780 (chmod script #o555)
12781 (install-file script bin))
12782 scripts)
12783 (substitute* (map (lambda (script)
12784 (string-append bin "/" script))
12785 scripts)
12786 (("^java") (which "java"))
12787 (("jar_deploy_dir=.*")
12788 (string-append "jar_deploy_dir=" share "\n"))))
12789 #t))
12790 ;; FIXME: We do this after stripping jars because we don't want it to
12791 ;; copy all these jars and strip them. We only want to install
12792 ;; links. Arguably, this is a problem with the ant-build-system.
12793 (add-after 'strip-jar-timestamps 'install-links
12794 (lambda* (#:key outputs #:allow-other-keys)
12795 (let* ((out (assoc-ref outputs "out"))
12796 (share (string-append out "/share/java/"))
12797 (lib (string-append share "/lib/")))
12798 (for-each (lambda (jar)
12799 (symlink (readlink jar)
12800 (string-append lib (basename jar))))
12801 (find-files "jar/lib" "\\.jar$")))
12802 #t)))))
12803 (inputs
12804 `(("jdk" ,icedtea-8)
12805 ("java-picard" ,java-picard-2.10.3)
12806 ("java-log4j-1.2-api" ,java-log4j-1.2-api)
12807 ("java-commons-math3" ,java-commons-math3)
12808 ("java-commons-jexl2" ,java-commons-jexl-2)
12809 ("java-commons-collections4" ,java-commons-collections4)
12810 ("java-commons-lang2" ,java-commons-lang)
12811 ("java-commons-io" ,java-commons-io)
12812 ("java-snappy-1.0.3-rc3" ,java-snappy-1)
12813 ("java-guava" ,java-guava)
12814 ("java-la4j" ,java-la4j)
12815 ("java-biojava-core" ,java-biojava-core-4.0)
12816 ("java-biojava-alignment" ,java-biojava-alignment-4.0)
12817 ("java-jdistlib" ,java-jdistlib)
12818 ("java-simple-xml" ,java-simple-xml)
12819 ("java-snakeyaml" ,java-snakeyaml)))
12820 (native-inputs
12821 `(("unzip" ,unzip)
12822 ("java-testng" ,java-testng)))
12823 (home-page "http://mccarrolllab.com/dropseq/")
12824 (synopsis "Tools for Drop-seq analyses")
12825 (description "Drop-seq is a technology to enable biologists to
12826 analyze RNA expression genome-wide in thousands of individual cells at
12827 once. This package provides tools to perform Drop-seq analyses.")
12828 (license license:expat)))
12829
12830 (define-public pigx-rnaseq
12831 (package
12832 (name "pigx-rnaseq")
12833 (version "0.0.10")
12834 (source (origin
12835 (method url-fetch)
12836 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_rnaseq/"
12837 "releases/download/v" version
12838 "/pigx_rnaseq-" version ".tar.gz"))
12839 (sha256
12840 (base32
12841 "0z3hr120wk2vrlmlpz1vp3n9wy3rq4y2mnzh2vf08qgqn2xfdwcw"))))
12842 (build-system gnu-build-system)
12843 (arguments
12844 `(#:parallel-tests? #f ; not supported
12845 #:phases
12846 (modify-phases %standard-phases
12847 ;; "test.sh" runs STAR, which requires excessive amounts of memory.
12848 (add-after 'unpack 'disable-resource-intensive-test
12849 (lambda _
12850 (substitute* "Makefile.in"
12851 (("(^ tests/test_trim_galore/test.sh).*" _ m) m)
12852 (("^ tests/test_multiqc/test.sh") "")
12853 (("^ test.sh") ""))
12854 #t)))))
12855 (inputs
12856 `(("coreutils" ,coreutils)
12857 ("sed" ,sed)
12858 ("gzip" ,gzip)
12859 ("snakemake" ,snakemake)
12860 ("fastqc" ,fastqc)
12861 ("multiqc" ,multiqc)
12862 ("star" ,star)
12863 ("trim-galore" ,trim-galore)
12864 ("htseq" ,htseq)
12865 ("samtools" ,samtools)
12866 ("r-minimal" ,r-minimal)
12867 ("r-rmarkdown" ,r-rmarkdown)
12868 ("r-ggplot2" ,r-ggplot2)
12869 ("r-ggrepel" ,r-ggrepel)
12870 ("r-gprofiler" ,r-gprofiler)
12871 ("r-deseq2" ,r-deseq2)
12872 ("r-dt" ,r-dt)
12873 ("r-knitr" ,r-knitr)
12874 ("r-pheatmap" ,r-pheatmap)
12875 ("r-corrplot" ,r-corrplot)
12876 ("r-reshape2" ,r-reshape2)
12877 ("r-plotly" ,r-plotly)
12878 ("r-scales" ,r-scales)
12879 ("r-summarizedexperiment" ,r-summarizedexperiment)
12880 ("r-crosstalk" ,r-crosstalk)
12881 ("r-tximport" ,r-tximport)
12882 ("r-rtracklayer" ,r-rtracklayer)
12883 ("r-rjson" ,r-rjson)
12884 ("salmon" ,salmon)
12885 ("pandoc" ,pandoc)
12886 ("pandoc-citeproc" ,pandoc-citeproc)
12887 ("python-wrapper" ,python-wrapper)
12888 ("python-pyyaml" ,python-pyyaml)))
12889 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12890 (synopsis "Analysis pipeline for RNA sequencing experiments")
12891 (description "PiGX RNAseq is an analysis pipeline for preprocessing and
12892 reporting for RNA sequencing experiments. It is easy to use and produces high
12893 quality reports. The inputs are reads files from the sequencing experiment,
12894 and a configuration file which describes the experiment. In addition to
12895 quality control of the experiment, the pipeline produces a differential
12896 expression report comparing samples in an easily configurable manner.")
12897 (license license:gpl3+)))
12898
12899 (define-public pigx-chipseq
12900 (package
12901 (name "pigx-chipseq")
12902 (version "0.0.43")
12903 (source (origin
12904 (method url-fetch)
12905 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_chipseq/"
12906 "releases/download/v" version
12907 "/pigx_chipseq-" version ".tar.gz"))
12908 (sha256
12909 (base32
12910 "0426i31b7mqqkbss5dgrvf5prkj4z1qrd7yrpd27vybs01xhdlks"))))
12911 (build-system gnu-build-system)
12912 ;; parts of the tests rely on access to the network
12913 (arguments '(#:tests? #f))
12914 (inputs
12915 `(("grep" ,grep)
12916 ("coreutils" ,coreutils)
12917 ("r-minimal" ,r-minimal)
12918 ("r-argparser" ,r-argparser)
12919 ("r-biocparallel" ,r-biocparallel)
12920 ("r-biostrings" ,r-biostrings)
12921 ("r-chipseq" ,r-chipseq)
12922 ("r-data-table" ,r-data-table)
12923 ("r-dplyr" ,r-dplyr)
12924 ("r-genomation" ,r-genomation)
12925 ("r-genomicalignments" ,r-genomicalignments)
12926 ("r-genomicranges" ,r-genomicranges)
12927 ("r-rsamtools" ,r-rsamtools)
12928 ("r-rtracklayer" ,r-rtracklayer)
12929 ("r-s4vectors" ,r-s4vectors)
12930 ("r-stringr" ,r-stringr)
12931 ("r-tibble" ,r-tibble)
12932 ("r-tidyr" ,r-tidyr)
12933 ("r-jsonlite" ,r-jsonlite)
12934 ("r-heatmaply" ,r-heatmaply)
12935 ("r-htmlwidgets" ,r-htmlwidgets)
12936 ("r-ggplot2" ,r-ggplot2)
12937 ("r-plotly" ,r-plotly)
12938 ("r-rmarkdown" ,r-rmarkdown)
12939 ("python-wrapper" ,python-wrapper)
12940 ("python-pyyaml" ,python-pyyaml)
12941 ("python-magic" ,python-magic)
12942 ("python-xlrd" ,python-xlrd)
12943 ("trim-galore" ,trim-galore)
12944 ("macs" ,macs)
12945 ("multiqc" ,multiqc)
12946 ("perl" ,perl)
12947 ("pandoc" ,pandoc)
12948 ("pandoc-citeproc" ,pandoc-citeproc)
12949 ("fastqc" ,fastqc)
12950 ("bowtie" ,bowtie)
12951 ("idr" ,idr)
12952 ("snakemake" ,snakemake)
12953 ("samtools" ,samtools)
12954 ("bedtools" ,bedtools)
12955 ("kentutils" ,kentutils)))
12956 (native-inputs
12957 `(("python-pytest" ,python-pytest)))
12958 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
12959 (synopsis "Analysis pipeline for ChIP sequencing experiments")
12960 (description "PiGX ChIPseq is an analysis pipeline for preprocessing, peak
12961 calling and reporting for ChIP sequencing experiments. It is easy to use and
12962 produces high quality reports. The inputs are reads files from the sequencing
12963 experiment, and a configuration file which describes the experiment. In
12964 addition to quality control of the experiment, the pipeline enables to set up
12965 multiple peak calling analysis and allows the generation of a UCSC track hub
12966 in an easily configurable manner.")
12967 (license license:gpl3+)))
12968
12969 (define-public pigx-bsseq
12970 (package
12971 (name "pigx-bsseq")
12972 (version "0.1.2")
12973 (source (origin
12974 (method url-fetch)
12975 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_bsseq/"
12976 "releases/download/v" version
12977 "/pigx_bsseq-" version ".tar.gz"))
12978 (sha256
12979 (base32
12980 "0mpzlay2d5cjpmrcp7knff6rg1c2mqszd638n7lw0mc0cycbp9f8"))))
12981 (build-system gnu-build-system)
12982 (arguments
12983 `(;; TODO: tests currently require 12+GB of RAM. See
12984 ;; https://github.com/BIMSBbioinfo/pigx_bsseq/issues/164
12985 #:tests? #f
12986 #:phases
12987 (modify-phases %standard-phases
12988 (add-before 'check 'set-timezone
12989 ;; The readr package is picky about timezones.
12990 (lambda* (#:key inputs #:allow-other-keys)
12991 (setenv "TZ" "UTC+1")
12992 (setenv "TZDIR"
12993 (string-append (assoc-ref inputs "tzdata")
12994 "/share/zoneinfo"))
12995 #t)))))
12996 (native-inputs
12997 `(("tzdata" ,tzdata)))
12998 (inputs
12999 `(("coreutils" ,coreutils)
13000 ("sed" ,sed)
13001 ("grep" ,grep)
13002 ("r-minimal" ,r-minimal)
13003 ("r-annotationhub" ,r-annotationhub)
13004 ("r-dt" ,r-dt)
13005 ("r-genomation" ,r-genomation)
13006 ("r-ggrepel" ,r-ggrepel)
13007 ("r-methylkit" ,r-methylkit)
13008 ("r-rtracklayer" ,r-rtracklayer)
13009 ("r-rmarkdown" ,r-rmarkdown)
13010 ("r-bookdown" ,r-bookdown)
13011 ("r-ggplot2" ,r-ggplot2)
13012 ("r-ggbio" ,r-ggbio)
13013 ("pandoc" ,pandoc)
13014 ("pandoc-citeproc" ,pandoc-citeproc)
13015 ("python-wrapper" ,python-wrapper)
13016 ("python-pyyaml" ,python-pyyaml)
13017 ("snakemake" ,snakemake)
13018 ("bismark" ,bismark)
13019 ("bowtie" ,bowtie)
13020 ("bwa-meth" ,bwa-meth)
13021 ("fastqc" ,fastqc)
13022 ("methyldackel" ,methyldackel)
13023 ("multiqc" ,multiqc)
13024 ("trim-galore" ,trim-galore)
13025 ("cutadapt" ,cutadapt)
13026 ("samblaster" ,samblaster)
13027 ("samtools" ,samtools)))
13028 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
13029 (synopsis "Bisulfite sequencing pipeline from fastq to methylation reports")
13030 (description "PiGx BSseq is a data processing pipeline for raw fastq read
13031 data of bisulfite experiments; it produces reports on aggregate methylation
13032 and coverage and can be used to produce information on differential
13033 methylation and segmentation.")
13034 (license license:gpl3+)))
13035
13036 (define-public pigx-scrnaseq
13037 (package
13038 (name "pigx-scrnaseq")
13039 (version "1.1.4")
13040 (source (origin
13041 (method url-fetch)
13042 (uri (string-append "https://github.com/BIMSBbioinfo/pigx_scrnaseq/"
13043 "releases/download/v" version
13044 "/pigx_scrnaseq-" version ".tar.gz"))
13045 (sha256
13046 (base32
13047 "1d5l3gywypi67yz9advxq5xkgfhr4733gj0bwnngm723i3hdf5w9"))))
13048 (build-system gnu-build-system)
13049 (inputs
13050 `(("coreutils" ,coreutils)
13051 ("perl" ,perl)
13052 ("fastqc" ,fastqc)
13053 ("flexbar" ,flexbar)
13054 ("java" ,icedtea-8)
13055 ("jellyfish" ,jellyfish)
13056 ("python-wrapper" ,python-wrapper)
13057 ("python-pyyaml" ,python-pyyaml)
13058 ("python-pandas" ,python-pandas)
13059 ("python-magic" ,python-magic)
13060 ("python-numpy" ,python-numpy)
13061 ("python-loompy" ,python-loompy)
13062 ("pandoc" ,pandoc)
13063 ("pandoc-citeproc" ,pandoc-citeproc)
13064 ("samtools" ,samtools)
13065 ("snakemake" ,snakemake)
13066 ("star" ,star)
13067 ("r-minimal" ,r-minimal)
13068 ("r-argparser" ,r-argparser)
13069 ("r-cowplot" ,r-cowplot)
13070 ("r-data-table" ,r-data-table)
13071 ("r-delayedarray" ,r-delayedarray)
13072 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
13073 ("r-dplyr" ,r-dplyr)
13074 ("r-dropbead" ,r-dropbead)
13075 ("r-dt" ,r-dt)
13076 ("r-genomicalignments" ,r-genomicalignments)
13077 ("r-genomicfiles" ,r-genomicfiles)
13078 ("r-genomicranges" ,r-genomicranges)
13079 ("r-ggplot2" ,r-ggplot2)
13080 ("r-hdf5array" ,r-hdf5array)
13081 ("r-pheatmap" ,r-pheatmap)
13082 ("r-rmarkdown" ,r-rmarkdown)
13083 ("r-rsamtools" ,r-rsamtools)
13084 ("r-rtracklayer" ,r-rtracklayer)
13085 ("r-rtsne" ,r-rtsne)
13086 ("r-scater" ,r-scater)
13087 ("r-scran" ,r-scran)
13088 ("r-seurat" ,r-seurat)
13089 ("r-singlecellexperiment" ,r-singlecellexperiment)
13090 ("r-stringr" ,r-stringr)
13091 ("r-yaml" ,r-yaml)))
13092 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
13093 (synopsis "Analysis pipeline for single-cell RNA sequencing experiments")
13094 (description "PiGX scRNAseq is an analysis pipeline for preprocessing and
13095 quality control for single cell RNA sequencing experiments. The inputs are
13096 read files from the sequencing experiment, and a configuration file which
13097 describes the experiment. It produces processed files for downstream analysis
13098 and interactive quality reports. The pipeline is designed to work with UMI
13099 based methods.")
13100 (license license:gpl3+)))
13101
13102 (define-public pigx
13103 (package
13104 (name "pigx")
13105 (version "0.0.3")
13106 (source (origin
13107 (method url-fetch)
13108 (uri (string-append "https://github.com/BIMSBbioinfo/pigx/"
13109 "releases/download/v" version
13110 "/pigx-" version ".tar.gz"))
13111 (sha256
13112 (base32
13113 "1i5njdy1clj5ncw45d16p7mwmqvb1ilikl9n797pxklc3f4s7mq7"))))
13114 (build-system gnu-build-system)
13115 (inputs
13116 `(("python" ,python)
13117 ("pigx-bsseq" ,pigx-bsseq)
13118 ("pigx-chipseq" ,pigx-chipseq)
13119 ("pigx-rnaseq" ,pigx-rnaseq)
13120 ("pigx-scrnaseq" ,pigx-scrnaseq)))
13121 (home-page "https://bioinformatics.mdc-berlin.de/pigx/")
13122 (synopsis "Analysis pipelines for genomics")
13123 (description "PiGx is a collection of genomics pipelines. It includes the
13124 following pipelines:
13125
13126 @itemize
13127 @item PiGx BSseq for raw fastq read data of bisulfite experiments
13128 @item PiGx RNAseq for RNAseq samples
13129 @item PiGx scRNAseq for single cell dropseq analysis
13130 @item PiGx ChIPseq for reads from ChIPseq experiments
13131 @end itemize
13132
13133 All pipelines are easily configured with a simple sample sheet and a
13134 descriptive settings file. The result is a set of comprehensive, interactive
13135 HTML reports with interesting findings about your samples.")
13136 (license license:gpl3+)))
13137
13138 (define-public genrich
13139 (package
13140 (name "genrich")
13141 (version "0.5")
13142 (source (origin
13143 (method git-fetch)
13144 (uri (git-reference
13145 (url "https://github.com/jsh58/Genrich")
13146 (commit (string-append "v" version))))
13147 (file-name (git-file-name name version))
13148 (sha256
13149 (base32
13150 "0x0q6z0208n3cxzqjla4rgjqpyqgwpmz27852lcvzkzaigymq4zp"))))
13151 (build-system gnu-build-system)
13152 (arguments
13153 `(#:tests? #f ; there are none
13154 #:phases
13155 (modify-phases %standard-phases
13156 (delete 'configure)
13157 (replace 'install
13158 (lambda* (#:key outputs #:allow-other-keys)
13159 (install-file "Genrich" (string-append (assoc-ref outputs "out") "/bin"))
13160 #t)))))
13161 (inputs
13162 `(("zlib" ,zlib)))
13163 (home-page "https://github.com/jsh58/Genrich")
13164 (synopsis "Detecting sites of genomic enrichment")
13165 (description "Genrich is a peak-caller for genomic enrichment
13166 assays (e.g. ChIP-seq, ATAC-seq). It analyzes alignment files generated
13167 following the assay and produces a file detailing peaks of significant
13168 enrichment.")
13169 (license license:expat)))
13170
13171 (define-public mantis
13172 (let ((commit "4ffd171632c2cb0056a86d709dfd2bf21bc69b84")
13173 (revision "1"))
13174 (package
13175 (name "mantis")
13176 (version (git-version "0" revision commit))
13177 (source (origin
13178 (method git-fetch)
13179 (uri (git-reference
13180 (url "https://github.com/splatlab/mantis")
13181 (commit commit)))
13182 (file-name (git-file-name name version))
13183 (sha256
13184 (base32
13185 "0iqbr0dhmlc8mzpirmm2s4pkzkwdgrcx50yx6cv3wlr2qi064p55"))))
13186 (build-system cmake-build-system)
13187 (arguments '(#:tests? #f)) ; there are none
13188 (inputs
13189 `(("sdsl-lite" ,sdsl-lite)
13190 ("openssl" ,openssl)
13191 ("zlib" ,zlib)))
13192 (home-page "https://github.com/splatlab/mantis")
13193 (synopsis "Large-scale sequence-search index data structure")
13194 (description "Mantis is a space-efficient data structure that can be
13195 used to index thousands of raw-read genomics experiments and facilitate
13196 large-scale sequence searches on those experiments. Mantis uses counting
13197 quotient filters instead of Bloom filters, enabling rapid index builds and
13198 queries, small indexes, and exact results, i.e., no false positives or
13199 negatives. Furthermore, Mantis is also a colored de Bruijn graph
13200 representation, so it supports fast graph traversal and other topological
13201 analyses in addition to large-scale sequence-level searches.")
13202 ;; uses __uint128_t and inline assembly
13203 (supported-systems '("x86_64-linux"))
13204 (license license:bsd-3))))
13205
13206 (define-public r-diversitree
13207 (package
13208 (name "r-diversitree")
13209 (version "0.9-13")
13210 (source
13211 (origin
13212 (method url-fetch)
13213 (uri (cran-uri "diversitree" version))
13214 (sha256
13215 (base32
13216 "00vi4klywi35hd170ksjv3xja3hqqbkcidcnrrlpgv4179k0azix"))))
13217 (build-system r-build-system)
13218 (native-inputs
13219 `(("gfortran" ,gfortran)))
13220 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
13221 (propagated-inputs
13222 `(("r-ape" ,r-ape)
13223 ("r-desolve" ,r-desolve)
13224 ("r-rcpp" ,r-rcpp)
13225 ("r-subplex" ,r-subplex)))
13226 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
13227 (synopsis "Comparative 'phylogenetic' analyses of diversification")
13228 (description "This package contains a number of comparative \"phylogenetic\"
13229 methods, mostly focusing on analysing diversification and character evolution.
13230 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
13231 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
13232 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
13233 include Markov models of discrete and continuous trait evolution and constant
13234 rate speciation and extinction.")
13235 (license license:gpl2+)))
13236
13237 (define-public sjcount
13238 ;; There is no tag for version 3.2, nor is there a release archive.
13239 (let ((commit "292d3917cadb3f6834c81e509c30e61cd7ead6e5")
13240 (revision "1"))
13241 (package
13242 (name "sjcount")
13243 (version (git-version "3.2" revision commit))
13244 (source (origin
13245 (method git-fetch)
13246 (uri (git-reference
13247 (url "https://github.com/pervouchine/sjcount-full")
13248 (commit commit)))
13249 (file-name (string-append name "-" version "-checkout"))
13250 (sha256
13251 (base32
13252 "0gdgj35j249f04rqgq8ymcc1xg1vi9kzbajnjqpaq2wpbh8bl234"))))
13253 (build-system gnu-build-system)
13254 (arguments
13255 `(#:tests? #f ; requires a 1.4G test file
13256 #:make-flags
13257 (list (string-append "SAMTOOLS_DIR="
13258 (assoc-ref %build-inputs "samtools")
13259 "/lib/"))
13260 #:phases
13261 (modify-phases %standard-phases
13262 (replace 'configure
13263 (lambda* (#:key inputs #:allow-other-keys)
13264 (substitute* "makefile"
13265 (("-I \\$\\{SAMTOOLS_DIR\\}")
13266 (string-append "-I" (assoc-ref inputs "samtools")
13267 "/include/samtools"))
13268 (("-lz ") "-lz -lpthread "))
13269 #t))
13270 (replace 'install
13271 (lambda* (#:key outputs #:allow-other-keys)
13272 (for-each (lambda (tool)
13273 (install-file tool
13274 (string-append (assoc-ref outputs "out")
13275 "/bin")))
13276 '("j_count" "b_count" "sjcount"))
13277 #t)))))
13278 (inputs
13279 `(("samtools" ,samtools-0.1)
13280 ("zlib" ,zlib)))
13281 (home-page "https://github.com/pervouchine/sjcount-full/")
13282 (synopsis "Annotation-agnostic splice junction counting pipeline")
13283 (description "Sjcount is a utility for fast quantification of splice
13284 junctions in RNA-seq data. It is annotation-agnostic and offset-aware. This
13285 version does count multisplits.")
13286 (license license:gpl3+))))
13287
13288 (define-public minimap2
13289 (package
13290 (name "minimap2")
13291 (version "2.17")
13292 (source
13293 (origin
13294 (method url-fetch)
13295 (uri (string-append "https://github.com/lh3/minimap2/"
13296 "releases/download/v" version "/"
13297 "minimap2-" version ".tar.bz2"))
13298 (sha256
13299 (base32
13300 "0hi7i9pzxhvjj44khzzzj1lrn5gb5837arr4wgln7k1k5n4ci2mn"))))
13301 (build-system gnu-build-system)
13302 (arguments
13303 `(#:tests? #f ; there are none
13304 #:make-flags
13305 (list "CC=gcc"
13306 (let ((system ,(or (%current-target-system)
13307 (%current-system))))
13308 (cond
13309 ((string-prefix? "x86_64" system)
13310 "all")
13311 ((or (string-prefix? "armhf" system)
13312 (string-prefix? "aarch64" system))
13313 "arm_neon=1")
13314 (else "sse2only=1"))))
13315 #:phases
13316 (modify-phases %standard-phases
13317 (delete 'configure)
13318 (replace 'install
13319 (lambda* (#:key outputs #:allow-other-keys)
13320 (let* ((out (assoc-ref outputs "out"))
13321 (bin (string-append out "/bin"))
13322 (man (string-append out "/share/man/man1")))
13323 (install-file "minimap2" bin)
13324 (mkdir-p man)
13325 (install-file "minimap2.1" man))
13326 #t)))))
13327 (inputs
13328 `(("zlib" ,zlib)))
13329 (home-page "https://lh3.github.io/minimap2/")
13330 (synopsis "Pairwise aligner for genomic and spliced nucleotide sequences")
13331 (description "Minimap2 is a versatile sequence alignment program that
13332 aligns DNA or mRNA sequences against a large reference database. Typical use
13333 cases include:
13334
13335 @enumerate
13336 @item mapping PacBio or Oxford Nanopore genomic reads to the human genome;
13337 @item finding overlaps between long reads with error rate up to ~15%;
13338 @item splice-aware alignment of PacBio Iso-Seq or Nanopore cDNA or Direct RNA
13339 reads against a reference genome;
13340 @item aligning Illumina single- or paired-end reads;
13341 @item assembly-to-assembly alignment;
13342 @item full-genome alignment between two closely related species with
13343 divergence below ~15%.
13344 @end enumerate\n")
13345 (license license:expat)))
13346
13347 (define-public miniasm
13348 (package
13349 (name "miniasm")
13350 (version "0.3")
13351 (source (origin
13352 (method git-fetch)
13353 (uri (git-reference
13354 (url "https://github.com/lh3/miniasm")
13355 (commit (string-append "v" version))))
13356 (file-name (git-file-name name version))
13357 (sha256
13358 (base32
13359 "04dv5wv8bhsw1imxwyd438bnn9kby7svp44nbcz8lsadzjjci5gs"))))
13360 (build-system gnu-build-system)
13361 (inputs
13362 `(("zlib" ,zlib)))
13363 (arguments
13364 `(#:tests? #f ; There are no tests.
13365 #:phases
13366 (modify-phases %standard-phases
13367 (delete 'configure)
13368 (replace 'install
13369 (lambda* (#:key inputs outputs #:allow-other-keys)
13370 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
13371 (install-file "miniasm" bin)
13372 (install-file "minidot" bin)
13373 #t))))))
13374 (home-page "https://github.com/lh3/miniasm")
13375 (synopsis "Ultrafast de novo assembly for long noisy reads")
13376 (description "Miniasm is a very fast OLC-based de novo assembler for noisy
13377 long reads. It takes all-vs-all read self-mappings (typically by minimap) as
13378 input and outputs an assembly graph in the GFA format. Different from
13379 mainstream assemblers, miniasm does not have a consensus step. It simply
13380 concatenates pieces of read sequences to generate the final unitig sequences.
13381 Thus the per-base error rate is similar to the raw input reads.")
13382 (license license:expat)))
13383
13384 (define-public r-circus
13385 (package
13386 (name "r-circus")
13387 (version "0.1.5")
13388 (source
13389 (origin
13390 (method git-fetch)
13391 (uri (git-reference
13392 (url "https://github.com/BIMSBbioinfo/ciRcus")
13393 (commit (string-append "v" version))))
13394 (file-name (git-file-name name version))
13395 (sha256
13396 (base32
13397 "0jhjn3ilb057hbf6yzrihj13ifxxs32y7nkby8l3lkm28dg4p97h"))))
13398 (build-system r-build-system)
13399 (propagated-inputs
13400 `(("r-annotationdbi" ,r-annotationdbi)
13401 ("r-annotationhub" ,r-annotationhub)
13402 ("r-biomart" ,r-biomart)
13403 ("r-data-table" ,r-data-table)
13404 ("r-dbi" ,r-dbi)
13405 ("r-genomicfeatures" ,r-genomicfeatures)
13406 ("r-genomicranges" ,r-genomicranges)
13407 ("r-ggplot2" ,r-ggplot2)
13408 ("r-hash" ,r-hash)
13409 ("r-iranges" ,r-iranges)
13410 ("r-rcolorbrewer" ,r-rcolorbrewer)
13411 ("r-rmysql" ,r-rmysql)
13412 ("r-s4vectors" ,r-s4vectors)
13413 ("r-stringr" ,r-stringr)
13414 ("r-summarizedexperiment" ,r-summarizedexperiment)))
13415 (native-inputs
13416 `(("r-knitr" ,r-knitr)))
13417 (home-page "https://github.com/BIMSBbioinfo/ciRcus")
13418 (synopsis "Annotation, analysis and visualization of circRNA data")
13419 (description "Circus is an R package for annotation, analysis and
13420 visualization of circRNA data. Users can annotate their circRNA candidates
13421 with host genes, gene featrues they are spliced from, and discriminate between
13422 known and yet unknown splice junctions. Circular-to-linear ratios of circRNAs
13423 can be calculated, and a number of descriptive plots easily generated.")
13424 (license license:artistic2.0)))
13425
13426 (define-public gffread
13427 ;; We cannot use the tagged release because it is not in sync with gclib.
13428 ;; See https://github.com/gpertea/gffread/issues/26
13429 (let ((commit "ba7535fcb3cea55a6e5a491d916e93b454e87fd0")
13430 (revision "1"))
13431 (package
13432 (name "gffread")
13433 (version (git-version "0.9.12" revision commit))
13434 (source
13435 (origin
13436 (method git-fetch)
13437 (uri (git-reference
13438 (url "https://github.com/gpertea/gffread")
13439 (commit commit)))
13440 (file-name (git-file-name name version))
13441 (sha256
13442 (base32
13443 "1dl2nbcg96lxpd0drg48ssa8343nf7pw9s9mkrc4mjjmfwsin3ki"))))
13444 (build-system gnu-build-system)
13445 (arguments
13446 `(#:tests? #f ; no check target
13447 #:make-flags
13448 (list "GCLDIR=gclib")
13449 #:phases
13450 (modify-phases %standard-phases
13451 (delete 'configure)
13452 (add-after 'unpack 'copy-gclib-source
13453 (lambda* (#:key inputs #:allow-other-keys)
13454 (mkdir-p "gclib")
13455 (copy-recursively (assoc-ref inputs "gclib-source") "gclib")
13456 #t))
13457 ;; There is no install target
13458 (replace 'install
13459 (lambda* (#:key outputs #:allow-other-keys)
13460 (let* ((out (assoc-ref outputs "out"))
13461 (bin (string-append out "/bin")))
13462 (install-file "gffread" bin))
13463 #t)))))
13464 (native-inputs
13465 `(("gclib-source"
13466 ,(let ((version "0.10.3")
13467 (commit "54917d0849c1e83cfb057b5f712e5cb6a35d948f")
13468 (revision "1"))
13469 (origin
13470 (method git-fetch)
13471 (uri (git-reference
13472 (url "https://github.com/gpertea/gclib")
13473 (commit commit)))
13474 (file-name (git-file-name "gclib" version))
13475 (sha256
13476 (base32
13477 "0b51lc0b8syrv7186fd7n8f15rwnf264qgfmm2palrwks1px24mr")))))))
13478 (home-page "https://github.com/gpertea/gffread/")
13479 (synopsis "Parse and convert GFF/GTF files")
13480 (description
13481 "This package provides a GFF/GTF file parsing utility providing format
13482 conversions, region filtering, FASTA sequence extraction and more.")
13483 ;; gffread is under Expat, but gclib is under Artistic 2.0
13484 (license (list license:expat
13485 license:artistic2.0)))))
13486
13487 (define-public find-circ
13488 ;; The last release was in 2015. The license was clarified in 2017, so we
13489 ;; take the latest commit.
13490 (let ((commit "8655dca54970fcf7e92e22fbf57e1188724dda7d")
13491 (revision "1"))
13492 (package
13493 (name "find-circ")
13494 (version (git-version "1.2" revision commit))
13495 (source
13496 (origin
13497 (method git-fetch)
13498 (uri (git-reference
13499 (url "https://github.com/marvin-jens/find_circ")
13500 (commit commit)))
13501 (file-name (git-file-name name version))
13502 (sha256
13503 (base32
13504 "0p77pbqbclqr4srms34y1b9b4njybfpjiknc11ki84f3p8skb3cg"))))
13505 (build-system gnu-build-system)
13506 (arguments
13507 `(#:tests? #f ; there are none
13508 #:phases
13509 ;; There is no actual build system.
13510 (modify-phases %standard-phases
13511 (delete 'configure)
13512 (delete 'build)
13513 (replace 'install
13514 (lambda* (#:key outputs #:allow-other-keys)
13515 (let* ((out (assoc-ref outputs "out"))
13516 (bin (string-append out "/bin"))
13517 (path (getenv "PYTHONPATH")))
13518 (for-each (lambda (script)
13519 (install-file script bin)
13520 (wrap-program (string-append bin "/" script)
13521 `("PYTHONPATH" ":" prefix (,path))))
13522 '("cmp_bed.py"
13523 "find_circ.py"
13524 "maxlength.py"
13525 "merge_bed.py"
13526 "unmapped2anchors.py")))
13527 #t)))))
13528 (inputs
13529 `(("python2" ,python-2)
13530 ("python2-pysam" ,python2-pysam)
13531 ("python2-numpy" ,python2-numpy)))
13532 (home-page "https://github.com/marvin-jens/find_circ")
13533 (synopsis "circRNA detection from RNA-seq reads")
13534 (description "This package provides tools to detect head-to-tail
13535 spliced (back-spliced) sequencing reads, indicative of circular RNA (circRNA)
13536 in RNA-seq data.")
13537 (license license:gpl3))))
13538
13539 (define-public python-scanpy
13540 (package
13541 (name "python-scanpy")
13542 (version "1.4.6")
13543 (source
13544 (origin
13545 (method url-fetch)
13546 (uri (pypi-uri "scanpy" version))
13547 (sha256
13548 (base32
13549 "0s2b6cvaigx4wzw3850qb93sjwwxbzh22kpbp498zklc5rjpbz4l"))))
13550 (build-system python-build-system)
13551 (arguments
13552 `(#:phases
13553 (modify-phases %standard-phases
13554 (replace 'check
13555 (lambda* (#:key inputs #:allow-other-keys)
13556 ;; These tests require Internet access.
13557 (delete-file-recursively "scanpy/tests/notebooks")
13558 (delete-file "scanpy/tests/test_clustering.py")
13559 (delete-file "scanpy/tests/test_datasets.py")
13560
13561 ;; TODO: I can't get the plotting tests to work, even with Xvfb.
13562 (delete-file "scanpy/tests/test_plotting.py")
13563 (delete-file "scanpy/tests/test_preprocessing.py")
13564 (delete-file "scanpy/tests/test_read_10x.py")
13565
13566 (setenv "PYTHONPATH"
13567 (string-append (getcwd) ":"
13568 (getenv "PYTHONPATH")))
13569 (invoke "pytest")
13570 #t)))))
13571 (propagated-inputs
13572 `(("python-anndata" ,python-anndata)
13573 ("python-h5py" ,python-h5py)
13574 ("python-igraph" ,python-igraph)
13575 ("python-joblib" ,python-joblib)
13576 ("python-legacy-api-wrap" ,python-legacy-api-wrap)
13577 ("python-louvain" ,python-louvain)
13578 ("python-matplotlib" ,python-matplotlib)
13579 ("python-natsort" ,python-natsort)
13580 ("python-networkx" ,python-networkx)
13581 ("python-numba" ,python-numba)
13582 ("python-packaging" ,python-packaging)
13583 ("python-pandas" ,python-pandas)
13584 ("python-patsy" ,python-patsy)
13585 ("python-scikit-learn" ,python-scikit-learn)
13586 ("python-scipy" ,python-scipy)
13587 ("python-seaborn" ,python-seaborn)
13588 ("python-statsmodels" ,python-statsmodels)
13589 ("python-tables" ,python-tables)
13590 ("python-tqdm" ,python-tqdm)
13591 ("python-umap-learn" ,python-umap-learn)))
13592 (native-inputs
13593 `(("python-pytest" ,python-pytest)
13594 ("python-setuptools-scm" ,python-setuptools-scm)))
13595 (home-page "https://github.com/theislab/scanpy")
13596 (synopsis "Single-Cell Analysis in Python.")
13597 (description "Scanpy is a scalable toolkit for analyzing single-cell gene
13598 expression data. It includes preprocessing, visualization, clustering,
13599 pseudotime and trajectory inference and differential expression testing. The
13600 Python-based implementation efficiently deals with datasets of more than one
13601 million cells.")
13602 (license license:bsd-3)))
13603
13604 (define-public python-bbknn
13605 (package
13606 (name "python-bbknn")
13607 (version "1.3.6")
13608 (source
13609 (origin
13610 (method url-fetch)
13611 (uri (pypi-uri "bbknn" version))
13612 (sha256
13613 (base32
13614 "1jbsh01f57zj4bhvjr3jh4532zznqd6nccmgrl3qi9gnhkf7c4y0"))))
13615 (build-system python-build-system)
13616 (arguments
13617 `(#:tests? #f)) ; TODO: Enable after migration to scikit-learn.
13618 (propagated-inputs
13619 `(("python-annoy" ,python-annoy)
13620 ("python-cython" ,python-cython)
13621 ("python-numpy" ,python-numpy)
13622 ("python-scipy" ,python-scipy)
13623 ("python-umap-learn" ,python-umap-learn)))
13624 (home-page "https://github.com/Teichlab/bbknn")
13625 (synopsis "Batch balanced KNN")
13626 (description "BBKNN is a batch effect removal tool that can be directly
13627 used in the Scanpy workflow. It serves as an alternative to
13628 @code{scanpy.api.pp.neighbors()}, with both functions creating a neighbour
13629 graph for subsequent use in clustering, pseudotime and UMAP visualisation. If
13630 technical artifacts are present in the data, they will make it challenging to
13631 link corresponding cell types across different batches. BBKNN actively
13632 combats this effect by splitting your data into batches and finding a smaller
13633 number of neighbours for each cell within each of the groups. This helps
13634 create connections between analogous cells in different batches without
13635 altering the counts or PCA space.")
13636 (license license:expat)))
13637
13638 (define-public gffcompare
13639 (let ((commit "be56ef4349ea3966c12c6397f85e49e047361c41")
13640 (revision "1"))
13641 (package
13642 (name "gffcompare")
13643 (version (git-version "0.10.15" revision commit))
13644 (source
13645 (origin
13646 (method git-fetch)
13647 (uri (git-reference
13648 (url "https://github.com/gpertea/gffcompare/")
13649 (commit commit)))
13650 (file-name (git-file-name name version))
13651 (sha256
13652 (base32 "0cp5qpxdhw4mxpya5dld8wi3jk00zyklm6rcri426wydinrnfmkg"))))
13653 (build-system gnu-build-system)
13654 (arguments
13655 `(#:tests? #f ; no check target
13656 #:phases
13657 (modify-phases %standard-phases
13658 (delete 'configure)
13659 (add-before 'build 'copy-gclib-source
13660 (lambda* (#:key inputs #:allow-other-keys)
13661 (mkdir "../gclib")
13662 (copy-recursively
13663 (assoc-ref inputs "gclib-source") "../gclib")
13664 #t))
13665 (replace 'install
13666 (lambda* (#:key outputs #:allow-other-keys)
13667 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
13668 (install-file "gffcompare" bin)
13669 #t))))))
13670 (native-inputs
13671 `(("gclib-source" ; see 'README.md' of gffcompare
13672 ,(let ((commit "54917d0849c1e83cfb057b5f712e5cb6a35d948f")
13673 (revision "1")
13674 (name "gclib")
13675 (version (git-version "0.10.3" revision commit)))
13676 (origin
13677 (method git-fetch)
13678 (uri (git-reference
13679 (url "https://github.com/gpertea/gclib/")
13680 (commit commit)))
13681 (file-name (git-file-name name version))
13682 (sha256
13683 (base32 "0b51lc0b8syrv7186fd7n8f15rwnf264qgfmm2palrwks1px24mr")))))))
13684 (home-page "https://github.com/gpertea/gffcompare/")
13685 (synopsis "Tool for comparing or classifing transcripts of RNA-Seq")
13686 (description
13687 "@code{gffcompare} is a tool that can:
13688 @enumerate
13689 @item compare and evaluate the accuracy of RNA-Seq transcript assemblers
13690 (Cufflinks, Stringtie);
13691 @item collapse (merge) duplicate transcripts from multiple GTF/GFF3 files (e.g.
13692 resulted from assembly of different samples);
13693 @item classify transcripts from one or multiple GTF/GFF3 files as they relate to
13694 reference transcripts provided in a annotation file (also in GTF/GFF3 format).
13695 @end enumerate")
13696 (license
13697 (list
13698 license:expat ;license for gffcompare
13699 license:artistic2.0))))) ;license for gclib
13700
13701 (define-public intervaltree
13702 (let ((commit "b90527f9e6d51cd36ecbb50429e4524d3a418ea5"))
13703 (package
13704 (name "intervaltree")
13705 (version (git-version "0.0.0" "1" commit))
13706 (source
13707 (origin
13708 (method git-fetch)
13709 (uri (git-reference
13710 (url "https://github.com/ekg/intervaltree/")
13711 (commit commit)))
13712 (file-name (git-file-name name version))
13713 (sha256
13714 (base32 "0rgv6q5fl4x5d74n6p5wvdna6zmbdbqpb4jqqh6vq3670gn08xad"))))
13715 (build-system gnu-build-system)
13716 (arguments
13717 '(#:tests? #f ; No tests.
13718 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
13719 "DESTDIR=\"\"")
13720 #:phases
13721 (modify-phases %standard-phases
13722 (delete 'configure)))) ; There is no configure phase.
13723 (home-page "https://github.com/ekg/intervaltree")
13724 (synopsis "Minimal C++ interval tree implementation")
13725 (description "An interval tree can be used to efficiently find a set of
13726 numeric intervals overlapping or containing another interval. This library
13727 provides a basic implementation of an interval tree using C++ templates,
13728 allowing the insertion of arbitrary types into the tree.")
13729 (license license:expat))))
13730
13731 (define-public python-intervaltree
13732 (package
13733 (name "python-intervaltree")
13734 (version "3.0.2")
13735 (source
13736 (origin
13737 (method url-fetch)
13738 (uri (pypi-uri "intervaltree" version))
13739 (sha256
13740 (base32
13741 "0wz234g6irlm4hivs2qzmnywk0ss06ckagwh15nflkyb3p462kyb"))))
13742 (build-system python-build-system)
13743 (arguments
13744 `(#:phases
13745 (modify-phases %standard-phases
13746 ;; pytest seems to have a check to make sure the user is testing
13747 ;; their checked-out code and not an installed, potentially
13748 ;; out-of-date copy. This is harmless here, since we just installed
13749 ;; the package, so we disable the check to avoid skipping tests
13750 ;; entirely.
13751 (add-before 'check 'import-mismatch-error-workaround
13752 (lambda _
13753 (setenv "PY_IGNORE_IMPORTMISMATCH" "1")
13754 #t)))))
13755 (propagated-inputs
13756 `(("python-sortedcontainers" ,python-sortedcontainers)))
13757 (native-inputs
13758 `(("python-pytest" ,python-pytest)))
13759 (home-page "https://github.com/chaimleib/intervaltree")
13760 (synopsis "Editable interval tree data structure")
13761 (description
13762 "This package provides a mutable, self-balancing interval tree
13763 implementation for Python. Queries may be by point, by range overlap, or by
13764 range envelopment. This library was designed to allow tagging text and time
13765 intervals, where the intervals include the lower bound but not the upper
13766 bound.")
13767 (license license:asl2.0)))
13768
13769 (define-public python-pypairix
13770 (package
13771 (name "python-pypairix")
13772 (version "0.3.7")
13773 ;; The tarball on pypi does not include the makefile to build the
13774 ;; programs.
13775 (source
13776 (origin
13777 (method git-fetch)
13778 (uri (git-reference
13779 (url "https://github.com/4dn-dcic/pairix")
13780 (commit version)))
13781 (file-name (git-file-name name version))
13782 (sha256
13783 (base32
13784 "1snr3lrmsld8sy77ng6ba6wcmd33xjccf1l2f3m6pi29xis9nd6p"))))
13785 (build-system python-build-system)
13786 (arguments
13787 `(#:phases
13788 (modify-phases %standard-phases
13789 (add-before 'build 'build-programs
13790 (lambda _ (invoke "make")))
13791 (add-after 'install 'install-programs
13792 (lambda* (#:key outputs #:allow-other-keys)
13793 (copy-recursively "bin" (string-append
13794 (assoc-ref outputs "out")
13795 "/bin"))
13796 #t)))))
13797 (inputs
13798 `(("zlib" ,zlib)))
13799 (home-page "https://github.com/4dn-dcic/pairix")
13800 (synopsis "Support for querying pairix-indexed bgzipped text files")
13801 (description
13802 "Pypairix is a Python module for fast querying on a pairix-indexed
13803 bgzipped text file that contains a pair of genomic coordinates per line.")
13804 (license license:expat)))
13805
13806 (define-public python-pyfaidx
13807 (package
13808 (name "python-pyfaidx")
13809 (version "0.5.8")
13810 (source
13811 (origin
13812 (method url-fetch)
13813 (uri (pypi-uri "pyfaidx" version))
13814 (sha256
13815 (base32
13816 "038xi3a6zvrxbyyfpp64ka8pcjgsdq4fgw9cl5lpxbvmm1bzzw2q"))))
13817 (build-system python-build-system)
13818 (propagated-inputs
13819 `(("python-six" ,python-six)))
13820 (home-page "http://mattshirley.com")
13821 (synopsis "Random access to fasta subsequences")
13822 (description
13823 "This package provides procedures for efficient pythonic random access to
13824 fasta subsequences.")
13825 (license license:bsd-3)))
13826
13827 (define-public python2-pyfaidx
13828 (package-with-python2 python-pyfaidx))
13829
13830 (define-public python-cooler
13831 (package
13832 (name "python-cooler")
13833 (version "0.8.7")
13834 (source
13835 (origin
13836 (method url-fetch)
13837 (uri (pypi-uri "cooler" version))
13838 (sha256
13839 (base32
13840 "01g6gqix9ba27sappz6nfyiwabzrlf8i5fn8kwcz8ra356cq9crp"))))
13841 (build-system python-build-system)
13842 (propagated-inputs
13843 `(("python-asciitree" ,python-asciitree)
13844 ("python-biopython" ,python-biopython)
13845 ("python-click" ,python-click)
13846 ("python-cytoolz" ,python-cytoolz)
13847 ("python-dask" ,python-dask)
13848 ("python-h5py" ,python-h5py)
13849 ("python-multiprocess" ,python-multiprocess)
13850 ("python-numpy" ,python-numpy)
13851 ("python-pandas" ,python-pandas)
13852 ("python-pyfaidx" ,python-pyfaidx)
13853 ("python-pypairix" ,python-pypairix)
13854 ("python-pysam" ,python-pysam)
13855 ("python-pyyaml" ,python-pyyaml)
13856 ("python-scipy" ,python-scipy)
13857 ("python-simplejson" ,python-simplejson)))
13858 (native-inputs
13859 `(("python-mock" ,python-mock)
13860 ("python-pytest" ,python-pytest)))
13861 (home-page "https://github.com/mirnylab/cooler")
13862 (synopsis "Sparse binary format for genomic interaction matrices")
13863 (description
13864 "Cooler is a support library for a sparse, compressed, binary persistent
13865 storage format, called @code{cool}, used to store genomic interaction data,
13866 such as Hi-C contact matrices.")
13867 (license license:bsd-3)))
13868
13869 (define-public python-hicmatrix
13870 (package
13871 (name "python-hicmatrix")
13872 (version "12")
13873 (source
13874 (origin
13875 ;; Version 12 is not available on pypi.
13876 (method git-fetch)
13877 (uri (git-reference
13878 (url "https://github.com/deeptools/HiCMatrix")
13879 (commit version)))
13880 (file-name (git-file-name name version))
13881 (sha256
13882 (base32
13883 "1xhdyx16f3brgxgxybixdi64ki8nbbkq5vk4h9ahi11pzpjfn1pj"))))
13884 (build-system python-build-system)
13885 (arguments
13886 `(#:phases
13887 (modify-phases %standard-phases
13888 (add-after 'unpack 'relax-requirements
13889 (lambda _
13890 (substitute* '("requirements.txt"
13891 "setup.py")
13892 (("cooler *=+ *0.8.5")
13893 "cooler==0.8.*"))
13894 #t)))))
13895 (propagated-inputs
13896 `(("python-cooler" ,python-cooler)
13897 ("python-intervaltree" ,python-intervaltree)
13898 ("python-numpy" ,python-numpy)
13899 ("python-pandas" ,python-pandas)
13900 ("python-scipy" ,python-scipy)
13901 ("python-tables" ,python-tables)))
13902 (home-page "https://github.com/deeptools/HiCMatrix/")
13903 (synopsis "HiCMatrix class for HiCExplorer and pyGenomeTracks")
13904 (description
13905 "This helper package implements the @code{HiCMatrix} class for
13906 the HiCExplorer and pyGenomeTracks packages.")
13907 (license license:gpl3+)))
13908
13909 (define-public python-hicexplorer
13910 (package
13911 (name "python-hicexplorer")
13912 (version "2.1.4")
13913 (source
13914 (origin
13915 ;; The latest version is not available on Pypi.
13916 (method git-fetch)
13917 (uri (git-reference
13918 (url "https://github.com/deeptools/HiCExplorer")
13919 (commit version)))
13920 (file-name (git-file-name name version))
13921 (sha256
13922 (base32
13923 "0q5gpbzmrkvygqgw524q36b4nrivcmyi5v194vsx0qw7b3gcmq08"))))
13924 (build-system python-build-system)
13925 (arguments
13926 `(#:phases
13927 (modify-phases %standard-phases
13928 (add-after 'unpack 'loosen-up-requirements
13929 (lambda _
13930 (substitute* "setup.py"
13931 (("==") ">="))
13932 #t)))))
13933 (propagated-inputs
13934 `(("python-biopython" ,python-biopython)
13935 ("python-configparser" ,python-configparser)
13936 ("python-cooler" ,python-cooler)
13937 ("python-future" ,python-future)
13938 ("python-intervaltree" ,python-intervaltree)
13939 ("python-jinja2" ,python-jinja2)
13940 ("python-matplotlib" ,python-matplotlib)
13941 ("python-numpy" ,python-numpy)
13942 ("python-pandas" ,python-pandas)
13943 ("python-pybigwig" ,python-pybigwig)
13944 ("python-pysam" ,python-pysam)
13945 ("python-scipy" ,python-scipy)
13946 ("python-six" ,python-six)
13947 ("python-tables" ,python-tables)
13948 ("python-unidecode" ,python-unidecode)))
13949 (home-page "https://hicexplorer.readthedocs.io")
13950 (synopsis "Process, analyze and visualize Hi-C data")
13951 (description
13952 "HiCExplorer is a powerful and easy to use set of tools to process,
13953 normalize and visualize Hi-C data. HiCExplorer facilitates the creation of
13954 contact matrices, correction of contacts, TAD detection, A/B compartments,
13955 merging, reordering or chromosomes, conversion from different formats
13956 including cooler and detection of long-range contacts. Moreover, it allows
13957 the visualization of multiple contact matrices along with other types of data
13958 like genes, compartments, ChIP-seq coverage tracks (and in general any type of
13959 genomic scores), long range contacts and the visualization of viewpoints.")
13960 (license license:gpl3)))
13961
13962 (define-public python-pygenometracks
13963 (package
13964 (name "python-pygenometracks")
13965 (version "3.3")
13966 (source
13967 (origin
13968 (method url-fetch)
13969 (uri (pypi-uri "pyGenomeTracks" version))
13970 (sha256
13971 (base32
13972 "16laa0wnf4qn9fb9ych4w1vqhqwjss70v0y0f6wp4gwqfrlgac0f"))))
13973 (build-system python-build-system)
13974 (arguments
13975 `(#:tests? #f ; there are none
13976 #:phases
13977 (modify-phases %standard-phases
13978 (add-after 'unpack 'relax-requirements
13979 (lambda _
13980 (substitute* "setup.py"
13981 (("matplotlib ==3.1.1")
13982 "matplotlib >=3.1.1"))
13983 #t)))))
13984 (propagated-inputs
13985 `(("python-future" ,python-future)
13986 ("python-gffutils" ,python-gffutils)
13987 ("python-hicmatrix" ,python-hicmatrix)
13988 ("python-intervaltree" ,python-intervaltree)
13989 ("python-matplotlib" ,python-matplotlib)
13990 ("python-numpy" ,python-numpy)
13991 ("python-pybigwig" ,python-pybigwig)
13992 ("python-pysam" ,python-pysam)
13993 ("python-tqdm" ,python-tqdm)))
13994 (native-inputs
13995 `(("python-pytest" ,python-pytest)))
13996 (home-page "https://pygenometracks.readthedocs.io")
13997 (synopsis "Program and library to plot beautiful genome browser tracks")
13998 (description
13999 "This package aims to produce high-quality genome browser tracks that
14000 are highly customizable. Currently, it is possible to plot: bigwig, bed (many
14001 options), bedgraph, links (represented as arcs), and Hi-C matrices.
14002 pyGenomeTracks can make plots with or without Hi-C data.")
14003 (license license:gpl3+)))
14004
14005 (define-public python-hic2cool
14006 (package
14007 (name "python-hic2cool")
14008 (version "0.4.2")
14009 (source
14010 (origin
14011 (method url-fetch)
14012 (uri (pypi-uri "hic2cool" version))
14013 (sha256
14014 (base32
14015 "0xy6mhfns2lzib1kcr6419jjp6pmh0qx8z8na55lmiwn0ds8q9cl"))))
14016 (build-system python-build-system)
14017 (arguments '(#:tests? #f)) ; no tests included
14018 (propagated-inputs
14019 `(("python-cooler" ,python-cooler)))
14020 (home-page "https://github.com/4dn-dcic/hic2cool")
14021 (synopsis "Converter for .hic and .cool files")
14022 (description
14023 "This package provides a converter between @code{.hic} files (from
14024 juicer) and single-resolution or multi-resolution @code{.cool} files (for
14025 cooler). Both @code{hic} and @code{cool} files describe Hi-C contact
14026 matrices.")
14027 (license license:expat)))
14028
14029 (define-public r-pore
14030 (package
14031 (name "r-pore")
14032 (version "0.24")
14033 (source
14034 (origin
14035 (method url-fetch)
14036 (uri
14037 (string-append "mirror://sourceforge/rpore/" version
14038 "/poRe_" version ".tar.gz"))
14039 (sha256
14040 (base32 "0pih9nljbv8g4x8rkk29i7aqq681b782r5s5ynp4nw9yzqnmmksv"))))
14041 (properties `((upstream-name . "poRe")))
14042 (build-system r-build-system)
14043 (propagated-inputs
14044 `(("r-bit64" ,r-bit64)
14045 ("r-data-table" ,r-data-table)
14046 ("r-rhdf5" ,r-rhdf5)
14047 ("r-shiny" ,r-shiny)
14048 ("r-svdialogs" ,r-svdialogs)))
14049 (home-page "https://sourceforge.net/projects/rpore/")
14050 (synopsis "Visualize Nanopore sequencing data")
14051 (description
14052 "This package provides graphical user interfaces to organize and visualize Nanopore
14053 sequencing data.")
14054 ;; This is free software but the license variant is unclear:
14055 ;; <https://github.com/mw55309/poRe_docs/issues/10>.
14056 (license license:bsd-3)))
14057
14058 (define-public r-xbioc
14059 (let ((revision "1")
14060 (commit "6ff0670a37ab3036aaf1d94aa4b208310946b0b5"))
14061 (package
14062 (name "r-xbioc")
14063 (version (git-version "0.1.16" revision commit))
14064 (source (origin
14065 (method git-fetch)
14066 (uri (git-reference
14067 (url "https://github.com/renozao/xbioc")
14068 (commit commit)))
14069 (file-name (git-file-name name version))
14070 (sha256
14071 (base32
14072 "0w8bsq5myiwkfhh83nm6is5ichiyvwa1axx2szvxnzq39x6knf66"))))
14073 (build-system r-build-system)
14074 (propagated-inputs
14075 `(("r-annotationdbi" ,r-annotationdbi)
14076 ("r-assertthat" ,r-assertthat)
14077 ("r-biobase" ,r-biobase)
14078 ("r-biocmanager" ,r-biocmanager)
14079 ("r-digest" ,r-digest)
14080 ("r-pkgmaker" ,r-pkgmaker)
14081 ("r-plyr" ,r-plyr)
14082 ("r-reshape2" ,r-reshape2)
14083 ("r-stringr" ,r-stringr)))
14084 (home-page "https://github.com/renozao/xbioc/")
14085 (synopsis "Extra base functions for Bioconductor")
14086 (description "This package provides extra utility functions to perform
14087 common tasks in the analysis of omics data, leveraging and enhancing features
14088 provided by Bioconductor packages.")
14089 (license license:gpl3+))))
14090
14091 (define-public r-cssam
14092 (let ((revision "1")
14093 (commit "9ec58c982fa551af0d80b1a266890d92954833f2"))
14094 (package
14095 (name "r-cssam")
14096 (version (git-version "1.4" revision commit))
14097 (source (origin
14098 (method git-fetch)
14099 (uri (git-reference
14100 (url "https://github.com/shenorrLab/csSAM")
14101 (commit commit)))
14102 (file-name (git-file-name name version))
14103 (sha256
14104 (base32
14105 "128syf9v39gk0z3ip000qpsjbg6l1siyq6c8b0hz41dzg5achyb3"))))
14106 (build-system r-build-system)
14107 (propagated-inputs
14108 `(("r-formula" ,r-formula)
14109 ("r-ggplot2" ,r-ggplot2)
14110 ("r-pkgmaker" ,r-pkgmaker)
14111 ("r-plyr" ,r-plyr)
14112 ("r-rngtools" ,r-rngtools)
14113 ("r-scales" ,r-scales)))
14114 (home-page "https://github.com/shenorrLab/csSAM/")
14115 (synopsis "Cell type-specific statistical analysis of microarray")
14116 (description "This package implements the method csSAM that computes
14117 cell-specific differential expression from measured cell proportions using
14118 SAM.")
14119 ;; Any version
14120 (license license:lgpl2.1+))))
14121
14122 (define-public r-bseqsc
14123 (let ((revision "1")
14124 (commit "fef3f3e38dcf3df37103348b5780937982b43b98"))
14125 (package
14126 (name "r-bseqsc")
14127 (version (git-version "1.0" revision commit))
14128 (source (origin
14129 (method git-fetch)
14130 (uri (git-reference
14131 (url "https://github.com/shenorrLab/bseqsc")
14132 (commit commit)))
14133 (file-name (git-file-name name version))
14134 (sha256
14135 (base32
14136 "1prw13wa20f7wlc3gkkls66n1kxz8d28qrb8icfqdwdnnv8w5qg8"))))
14137 (build-system r-build-system)
14138 (propagated-inputs
14139 `(("r-abind" ,r-abind)
14140 ("r-annotationdbi" ,r-annotationdbi)
14141 ("r-biobase" ,r-biobase)
14142 ("r-cssam" ,r-cssam)
14143 ("r-dplyr" ,r-dplyr)
14144 ("r-e1071" ,r-e1071)
14145 ("r-edger" ,r-edger)
14146 ("r-ggplot2" ,r-ggplot2)
14147 ("r-nmf" ,r-nmf)
14148 ("r-openxlsx" ,r-openxlsx)
14149 ("r-pkgmaker" ,r-pkgmaker)
14150 ("r-plyr" ,r-plyr)
14151 ("r-preprocesscore" ,r-preprocesscore)
14152 ("r-rngtools" ,r-rngtools)
14153 ("r-scales" ,r-scales)
14154 ("r-stringr" ,r-stringr)
14155 ("r-xbioc" ,r-xbioc)))
14156 (home-page "https://github.com/shenorrLab/bseqsc")
14157 (synopsis "Deconvolution of bulk sequencing experiments using single cell data")
14158 (description "BSeq-sc is a bioinformatics analysis pipeline that
14159 leverages single-cell sequencing data to estimate cell type proportion and
14160 cell type-specific gene expression differences from RNA-seq data from bulk
14161 tissue samples. This is a companion package to the publication \"A
14162 single-cell transcriptomic map of the human and mouse pancreas reveals inter-
14163 and intra-cell population structure.\" Baron et al. Cell Systems (2016)
14164 @url{https://www.ncbi.nlm.nih.gov/pubmed/27667365}.")
14165 (license license:gpl2+))))
14166
14167 (define-public porechop
14168 ;; The recommended way to install is to clone the git repository
14169 ;; https://github.com/rrwick/Porechop#installation
14170 (let ((commit "289d5dca4a5fc327f97b3f8cecb68ecaf1014861")
14171 (revision "1"))
14172 (package
14173 (name "porechop")
14174 (version (git-version "0.2.3" revision commit))
14175 (source
14176 (origin
14177 (method git-fetch)
14178 (uri (git-reference
14179 (url "https://github.com/rrwick/Porechop")
14180 (commit commit)))
14181 (file-name (git-file-name name version))
14182 (sha256
14183 (base32 "05ps43gig0d3ia9x5lj84lb00hbsl6ba9n7y7jz927npxbr2ym23"))))
14184 (build-system python-build-system)
14185 (home-page "https://github.com/rrwick/porechop")
14186 (synopsis "Finding, trimming or splitting adapters, in Oxford Nanopore reads")
14187 (description
14188 "The porechop package is a tool for finding and removing adapters from Oxford
14189 Nanopore reads. Adapters on the ends of reads are trimmed off, and when a read
14190 has an adapter in its middle, it is treated as chimeric and chopped into
14191 separate reads. Porechop performs thorough alignments to effectively find
14192 adapters, even at low sequence identity. Porechop also supports demultiplexing
14193 of Nanopore reads that were barcoded with the Native Barcoding Kit, PCR
14194 Barcoding Kit or Rapid Barcoding Kit.")
14195 (license license:gpl3+))))
14196
14197 (define-public poretools
14198 ;; The latest release was in 2016 and the latest commit is from 2017
14199 ;; the recommended way to install is to clone the git repository
14200 ;; https://poretools.readthedocs.io/en/latest/content/installation.html
14201 (let ((commit "e426b1f09e86ac259a00c261c79df91510777407")
14202 (revision "1"))
14203 (package
14204 (name "poretools")
14205 (version (git-version "0.6.0" revision commit))
14206 (source
14207 (origin
14208 (method git-fetch)
14209 (uri (git-reference
14210 (url "https://github.com/arq5x/poretools")
14211 (commit commit)))
14212 (file-name (git-file-name name version))
14213 (sha256
14214 (base32 "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am"))))
14215 (build-system python-build-system)
14216 ;; requires python >=2.7, <3.0, and the same for python dependencies
14217 (arguments `(#:python ,python-2))
14218 (inputs
14219 `(("hdf5" ,hdf5)))
14220 (propagated-inputs
14221 `(("python-dateutil" ,python2-dateutil)
14222 ("python-h5py" ,python2-h5py)
14223 ("python-matplotlib" ,python2-matplotlib)
14224 ("python-pandas" ,python2-pandas)
14225 ("python-seaborn" ,python2-seaborn)))
14226 (home-page "https://poretools.readthedocs.io")
14227 (synopsis "Toolkit for working with nanopore sequencing data")
14228 (description
14229 "The MinION from Oxford Nanopore Technologies is a nanopore sequencer.
14230 This @code{poretools} package is a flexible toolkit for exploring datasets
14231 generated by nanopore sequencing devices for the purposes of quality control and
14232 downstream analysis. Poretools operates directly on the native FAST5, a variant
14233 of the Hierarchical Data Format (HDF5) standard.")
14234 (license license:expat))))
14235
14236 (define-public r-absfiltergsea
14237 (package
14238 (name "r-absfiltergsea")
14239 (version "1.5.1")
14240 (source
14241 (origin
14242 (method url-fetch)
14243 (uri (cran-uri "AbsFilterGSEA" version))
14244 (sha256
14245 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
14246 (properties `((upstream-name . "AbsFilterGSEA")))
14247 (build-system r-build-system)
14248 (propagated-inputs
14249 `(("r-biobase" ,r-biobase)
14250 ("r-deseq" ,r-deseq)
14251 ("r-limma" ,r-limma)
14252 ("r-rcpp" ,r-rcpp)
14253 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14254 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
14255 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
14256 (description
14257 "This package provides a function that performs gene-permuting of a gene-set
14258 enrichment analysis (GSEA) calculation with or without the absolute filtering.
14259 Without filtering, users can perform (original) two-tailed or one-tailed
14260 absolute GSEA.")
14261 (license license:gpl2)))
14262
14263 (define-public jamm
14264 (package
14265 (name "jamm")
14266 (version "1.0.7.6")
14267 (source
14268 (origin
14269 (method git-fetch)
14270 (uri (git-reference
14271 (url "https://github.com/mahmoudibrahim/JAMM")
14272 (commit (string-append "JAMMv" version))))
14273 (file-name (git-file-name name version))
14274 (sha256
14275 (base32
14276 "0bsa5mf9n9q5jz7mmacrra41l7r8rac5vgsn6wv1fb52ya58b970"))))
14277 (build-system gnu-build-system)
14278 (arguments
14279 `(#:tests? #f ; there are none
14280 #:phases
14281 (modify-phases %standard-phases
14282 (delete 'configure)
14283 (delete 'build)
14284 (replace 'install
14285 (lambda* (#:key inputs outputs #:allow-other-keys)
14286 (let* ((out (assoc-ref outputs "out"))
14287 (libexec (string-append out "/libexec/jamm"))
14288 (bin (string-append out "/bin")))
14289 (substitute* '("JAMM.sh"
14290 "SignalGenerator.sh")
14291 (("^sPath=.*")
14292 (string-append "sPath=\"" libexec "\"\n")))
14293 (for-each (lambda (file)
14294 (install-file file libexec))
14295 (list "bincalculator.r"
14296 "peakfinder.r"
14297 "peakhelper.r"
14298 "signalmaker.r"
14299 "xcorr.r"
14300 "xcorrhelper.r"
14301 ;; Perl scripts
14302 "peakfilter.pl"
14303 "readshifter.pl"))
14304
14305 (for-each
14306 (lambda (script)
14307 (chmod script #o555)
14308 (install-file script bin)
14309 (wrap-program (string-append bin "/" script)
14310 `("PATH" ":" prefix
14311 (,(string-append (assoc-ref inputs "coreutils") "/bin")
14312 ,(string-append (assoc-ref inputs "gawk") "/bin")
14313 ,(string-append (assoc-ref inputs "perl") "/bin")
14314 ,(string-append (assoc-ref inputs "r-minimal") "/bin")))
14315 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))
14316 `("R_LIBS_SITE" ":" prefix (,(getenv "R_LIBS_SITE")))))
14317 (list "JAMM.sh" "SignalGenerator.sh")))
14318 #t)))))
14319 (inputs
14320 `(("bash" ,bash)
14321 ("coreutils" ,coreutils)
14322 ("gawk" ,gawk)
14323 ("perl" ,perl)
14324 ("r-minimal" ,r-minimal)
14325 ;;("r-parallel" ,r-parallel)
14326 ("r-signal" ,r-signal)
14327 ("r-mclust" ,r-mclust)))
14328 (home-page "https://github.com/mahmoudibrahim/JAMM")
14329 (synopsis "Peak finder for NGS datasets")
14330 (description
14331 "JAMM is a peak finder for next generation sequencing datasets (ChIP-Seq,
14332 ATAC-Seq, DNase-Seq, etc.) that can integrate replicates and assign peak
14333 boundaries accurately. JAMM is applicable to both broad and narrow
14334 datasets.")
14335 (license license:gpl3+)))
14336
14337 (define-public ngless
14338 (package
14339 (name "ngless")
14340 (version "1.1.0")
14341 (source
14342 (origin
14343 (method git-fetch)
14344 (uri (git-reference
14345 (url "https://gitlab.com/ngless/ngless.git")
14346 (commit (string-append "v" version))))
14347 (file-name (git-file-name name version))
14348 (sha256
14349 (base32
14350 "1wim8wpqyff080dfcazynrmjwqas38m24m0v350w245mmhrapdma"))))
14351 (build-system haskell-build-system)
14352 (arguments
14353 `(#:haddock? #f ; The haddock phase fails with: NGLess/CmdArgs.hs:20:1:
14354 ; error: parse error on input import
14355 ; import Options.Applicative
14356 #:phases
14357 (modify-phases %standard-phases
14358 (add-after 'unpack 'create-Versions.hs
14359 (lambda _
14360 (substitute* "Makefile"
14361 (("BWA_VERSION = .*")
14362 (string-append "BWA_VERSION = "
14363 ,(package-version bwa) "\n"))
14364 (("SAM_VERSION = .*")
14365 (string-append "SAM_VERSION = "
14366 ,(package-version samtools) "\n"))
14367 (("PRODIGAL_VERSION = .*")
14368 (string-append "PRODIGAL_VERSION = "
14369 ,(package-version prodigal) "\n"))
14370 (("MINIMAP2_VERSION = .*")
14371 (string-append "MINIMAP2_VERSION = "
14372 ,(package-version minimap2) "\n")))
14373 (invoke "make" "NGLess/Dependencies/Versions.hs")
14374 #t))
14375 (add-after 'create-Versions.hs 'create-cabal-file
14376 (lambda _ (invoke "hpack") #t))
14377 ;; These tools are expected to be installed alongside ngless.
14378 (add-after 'install 'link-tools
14379 (lambda* (#:key inputs outputs #:allow-other-keys)
14380 (let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
14381 (symlink (string-append (assoc-ref inputs "prodigal")
14382 "/bin/prodigal")
14383 (string-append bin "ngless-" ,version "-prodigal"))
14384 (symlink (string-append (assoc-ref inputs "minimap2")
14385 "/bin/minimap2")
14386 (string-append bin "ngless-" ,version "-minimap2"))
14387 (symlink (string-append (assoc-ref inputs "samtools")
14388 "/bin/samtools")
14389 (string-append bin "ngless-" ,version "-samtools"))
14390 (symlink (string-append (assoc-ref inputs "bwa")
14391 "/bin/bwa")
14392 (string-append bin "ngless-" ,version "-bwa"))
14393 #t))))))
14394 (inputs
14395 `(("prodigal" ,prodigal)
14396 ("bwa" ,bwa)
14397 ("samtools" ,samtools)
14398 ("minimap2" ,minimap2)
14399 ("ghc-aeson" ,ghc-aeson)
14400 ("ghc-ansi-terminal" ,ghc-ansi-terminal)
14401 ("ghc-async" ,ghc-async)
14402 ("ghc-atomic-write" ,ghc-atomic-write)
14403 ("ghc-bytestring-lexing" ,ghc-bytestring-lexing)
14404 ("ghc-conduit" ,ghc-conduit)
14405 ("ghc-conduit-algorithms" ,ghc-conduit-algorithms)
14406 ("ghc-conduit-extra" ,ghc-conduit-extra)
14407 ("ghc-configurator" ,ghc-configurator)
14408 ("ghc-convertible" ,ghc-convertible)
14409 ("ghc-data-default" ,ghc-data-default)
14410 ("ghc-diagrams-core" ,ghc-diagrams-core)
14411 ("ghc-diagrams-lib" ,ghc-diagrams-lib)
14412 ("ghc-diagrams-svg" ,ghc-diagrams-svg)
14413 ("ghc-double-conversion" ,ghc-double-conversion)
14414 ("ghc-edit-distance" ,ghc-edit-distance)
14415 ("ghc-either" ,ghc-either)
14416 ("ghc-errors" ,ghc-errors)
14417 ("ghc-extra" ,ghc-extra)
14418 ("ghc-filemanip" ,ghc-filemanip)
14419 ("ghc-file-embed" ,ghc-file-embed)
14420 ("ghc-gitrev" ,ghc-gitrev)
14421 ("ghc-hashtables" ,ghc-hashtables)
14422 ("ghc-http-conduit" ,ghc-http-conduit)
14423 ("ghc-inline-c" ,ghc-inline-c)
14424 ("ghc-inline-c-cpp" ,ghc-inline-c-cpp)
14425 ("ghc-intervalmap" ,ghc-intervalmap)
14426 ("ghc-missingh" ,ghc-missingh)
14427 ("ghc-optparse-applicative" ,ghc-optparse-applicative)
14428 ("ghc-regex" ,ghc-regex)
14429 ("ghc-safe" ,ghc-safe)
14430 ("ghc-safeio" ,ghc-safeio)
14431 ("ghc-strict" ,ghc-strict)
14432 ("ghc-tar" ,ghc-tar)
14433 ("ghc-tar-conduit" ,ghc-tar-conduit)
14434 ("ghc-unliftio" ,ghc-unliftio)
14435 ("ghc-unliftio-core" ,ghc-unliftio-core)
14436 ("ghc-vector" ,ghc-vector)
14437 ("ghc-yaml" ,ghc-yaml)
14438 ("ghc-zlib" ,ghc-zlib)))
14439 (propagated-inputs
14440 `(("r-r6" ,r-r6)
14441 ("r-hdf5r" ,r-hdf5r)
14442 ("r-iterators" ,r-iterators)
14443 ("r-itertools" ,r-itertools)
14444 ("r-matrix" ,r-matrix)))
14445 (native-inputs
14446 `(("ghc-hpack" ,ghc-hpack)
14447 ("ghc-quickcheck" ,ghc-quickcheck)
14448 ("ghc-test-framework" ,ghc-test-framework)
14449 ("ghc-test-framework-hunit",ghc-test-framework-hunit)
14450 ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)
14451 ("ghc-test-framework-th" ,ghc-test-framework-th)))
14452 (home-page "https://gitlab.com/ngless/ngless")
14453 (synopsis "DSL for processing next-generation sequencing data")
14454 (description "Ngless is a domain-specific language for
14455 @dfn{next-generation sequencing} (NGS) data processing.")
14456 (license license:expat)))
14457
14458 (define-public filtlong
14459 ;; The recommended way to install is to clone the git repository
14460 ;; https://github.com/rrwick/Filtlong#installation
14461 ;; and the lastest release is more than nine months old
14462 (let ((commit "d1bb46dfe8bc7efe6257b5ce222c04bfe8aedaab")
14463 (revision "1"))
14464 (package
14465 (name "filtlong")
14466 (version (git-version "0.2.0" revision commit))
14467 (source
14468 (origin
14469 (method git-fetch)
14470 (uri (git-reference
14471 (url "https://github.com/rrwick/Filtlong")
14472 (commit commit)))
14473 (file-name (git-file-name name version))
14474 (sha256
14475 (base32 "1xr92r820x8qlkcr3b57iw223yq8vjgyi42jr79w2xgw47qzr575"))))
14476 (build-system gnu-build-system)
14477 (arguments
14478 `(#:tests? #f ; no check target
14479 #:phases
14480 (modify-phases %standard-phases
14481 (delete 'configure)
14482 (replace 'install
14483 (lambda* (#:key outputs #:allow-other-keys)
14484 (let* ((out (assoc-ref outputs "out"))
14485 (bin (string-append out "/bin"))
14486 (scripts (string-append out "/share/filtlong/scripts")))
14487 (install-file "bin/filtlong" bin)
14488 (install-file "scripts/histogram.py" scripts)
14489 (install-file "scripts/read_info_histograms.sh" scripts))
14490 #t))
14491 (add-after 'install 'wrap-program
14492 (lambda* (#:key inputs outputs #:allow-other-keys)
14493 (let* ((out (assoc-ref outputs "out"))
14494 (path (getenv "PYTHONPATH")))
14495 (wrap-program (string-append out
14496 "/share/filtlong/scripts/histogram.py")
14497 `("PYTHONPATH" ":" prefix (,path))))
14498 #t))
14499 (add-before 'check 'patch-tests
14500 (lambda _
14501 (substitute* "scripts/read_info_histograms.sh"
14502 (("awk") (which "gawk")))
14503 #t)))))
14504 (inputs
14505 `(("gawk" ,gawk) ;for read_info_histograms.sh
14506 ("python" ,python-2) ;required for histogram.py
14507 ("zlib" ,zlib)))
14508 (home-page "https://github.com/rrwick/Filtlong/")
14509 (synopsis "Tool for quality filtering of Nanopore and PacBio data")
14510 (description
14511 "The Filtlong package is a tool for filtering long reads by quality.
14512 It can take a set of long reads and produce a smaller, better subset. It uses
14513 both read length (longer is better) and read identity (higher is better) when
14514 choosing which reads pass the filter.")
14515 (license (list license:gpl3 ;filtlong
14516 license:asl2.0))))) ;histogram.py
14517
14518 (define-public nanopolish
14519 ;; The recommended way to install is to clone the git repository
14520 ;; <https://github.com/jts/nanopolish#installing-a-particular-release>.
14521 ;; Also, the differences between release and current version seem to be
14522 ;; significant.
14523 (let ((commit "6331dc4f15b9dfabb954ba3fae9d76b6c3ca6377")
14524 (revision "1"))
14525 (package
14526 (name "nanopolish")
14527 (version (git-version "0.11.1" revision commit))
14528 (source
14529 (origin
14530 (method git-fetch)
14531 (uri (git-reference
14532 (url "https://github.com/jts/nanopolish")
14533 (commit commit)
14534 (recursive? #t)))
14535 (file-name (git-file-name name version))
14536 (sha256
14537 (base32 "15ikl3d37y49pwd7vx36xksgsqajhf24q7qqsnpl15dqqyy5qgbc"))
14538 (modules '((guix build utils)))
14539 (snippet
14540 '(begin
14541 (delete-file-recursively "htslib")
14542 #t))))
14543 (build-system gnu-build-system)
14544 (arguments
14545 `(#:make-flags
14546 `("HDF5=noinstall" "EIGEN=noinstall" "HTS=noinstall" "CC=gcc")
14547 #:tests? #f ; no check target
14548 #:phases
14549 (modify-phases %standard-phases
14550 (add-after 'unpack 'find-eigen
14551 (lambda* (#:key inputs #:allow-other-keys)
14552 (setenv "CPATH"
14553 (string-append (assoc-ref inputs "eigen")
14554 "/include/eigen3:"
14555 (or (getenv "CPATH") "")))
14556 #t))
14557 (delete 'configure)
14558 (replace 'install
14559 (lambda* (#:key outputs #:allow-other-keys)
14560 (let* ((out (assoc-ref outputs "out"))
14561 (bin (string-append out "/bin"))
14562 (scripts (string-append out "/share/nanopolish/scripts")))
14563
14564 (install-file "nanopolish" bin)
14565 (for-each (lambda (file) (install-file file scripts))
14566 (find-files "scripts" ".*"))
14567 #t)))
14568 (add-after 'install 'wrap-programs
14569 (lambda* (#:key outputs #:allow-other-keys)
14570 (for-each (lambda (file)
14571 (wrap-program file `("PYTHONPATH" ":" prefix (,path))))
14572 (find-files "/share/nanopolish/scripts" "\\.py"))
14573 (for-each (lambda (file)
14574 (wrap-program file `("PERL5LIB" ":" prefix (,path))))
14575 (find-files "/share/nanopolish/scripts" "\\.pl"))
14576 #t)))))
14577 (inputs
14578 `(("eigen" ,eigen)
14579 ("hdf5" ,hdf5)
14580 ("htslib" ,htslib)
14581 ("perl" ,perl)
14582 ("python" ,python-wrapper)
14583 ("python-biopython" ,python-biopython)
14584 ("python-numpy" ,python-numpy)
14585 ("python-pysam" ,python-pysam)
14586 ("python-scikit-learn" , python-scikit-learn)
14587 ("python-scipy" ,python-scipy)
14588 ("zlib" ,zlib)))
14589 (home-page "https://github.com/jts/nanopolish")
14590 (synopsis "Signal-level analysis of Oxford Nanopore sequencing data")
14591 (description
14592 "This package analyses the Oxford Nanopore sequencing data at signal-level.
14593 Nanopolish can calculate an improved consensus sequence for a draft genome
14594 assembly, detect base modifications, call SNPs (Single nucleotide
14595 polymorphisms) and indels with respect to a reference genome and more.")
14596 (license license:expat))))
14597
14598 (define-public cnvkit
14599 (package
14600 (name "cnvkit")
14601 (version "0.9.5")
14602 (source
14603 (origin
14604 (method git-fetch)
14605 (uri (git-reference
14606 (url "https://github.com/etal/cnvkit")
14607 (commit (string-append "v" version))))
14608 (file-name (git-file-name name version))
14609 (sha256
14610 (base32 "0g2f78k68yglmj4fsfmgs8idqv3di9aj53fg0ld0hqljg8chhh82"))))
14611 (build-system python-build-system)
14612 (propagated-inputs
14613 `(("python-biopython" ,python-biopython)
14614 ("python-future" ,python-future)
14615 ("python-matplotlib" ,python-matplotlib)
14616 ("python-numpy" ,python-numpy)
14617 ("python-reportlab" ,python-reportlab)
14618 ("python-pandas" ,python-pandas)
14619 ("python-pysam" ,python-pysam)
14620 ("python-pyfaidx" ,python-pyfaidx)
14621 ("python-scipy" ,python-scipy)
14622 ;; R packages
14623 ("r-dnacopy" ,r-dnacopy)))
14624 (home-page "https://cnvkit.readthedocs.org/")
14625 (synopsis "Copy number variant detection from targeted DNA sequencing")
14626 (description
14627 "CNVkit is a Python library and command-line software toolkit to infer
14628 and visualize copy number from high-throughput DNA sequencing data. It is
14629 designed for use with hybrid capture, including both whole-exome and custom
14630 target panels, and short-read sequencing platforms such as Illumina and Ion
14631 Torrent.")
14632 (license license:asl2.0)))
14633
14634 (define-public python-pyfit-sne
14635 (package
14636 (name "python-pyfit-sne")
14637 (version "1.0.1")
14638 (source
14639 (origin
14640 (method git-fetch)
14641 (uri (git-reference
14642 (url "https://github.com/KlugerLab/pyFIt-SNE")
14643 (commit version)))
14644 (file-name (git-file-name name version))
14645 (sha256
14646 (base32 "13wh3qkzs56azmmgnxib6xfr29g7xh09sxylzjpni5j0pp0rc5qw"))))
14647 (build-system python-build-system)
14648 (propagated-inputs
14649 `(("python-numpy" ,python-numpy)))
14650 (inputs
14651 `(("fftw" ,fftw)))
14652 (native-inputs
14653 `(("python-cython" ,python-cython)))
14654 (home-page "https://github.com/KlugerLab/pyFIt-SNE")
14655 (synopsis "FFT-accelerated Interpolation-based t-SNE")
14656 (description
14657 "t-Stochastic Neighborhood Embedding (t-SNE) is a highly successful
14658 method for dimensionality reduction and visualization of high dimensional
14659 datasets. A popular implementation of t-SNE uses the Barnes-Hut algorithm to
14660 approximate the gradient at each iteration of gradient descent. This package
14661 is a Cython wrapper for FIt-SNE.")
14662 (license license:bsd-4)))
14663
14664 (define-public bbmap
14665 (package
14666 (name "bbmap")
14667 (version "35.82")
14668 (source (origin
14669 (method url-fetch)
14670 (uri (string-append
14671 "mirror://sourceforge/bbmap/BBMap_" version ".tar.gz"))
14672 (sha256
14673 (base32
14674 "1q4rfhxcb6z3gm8zg2davjz98w22lkf4hm9ikxz9kdl93pil3wkd"))))
14675 (build-system ant-build-system)
14676 (arguments
14677 `(#:build-target "dist"
14678 #:tests? #f ; there are none
14679 #:make-flags
14680 (list (string-append "-Dmpijar="
14681 (assoc-ref %build-inputs "java-openmpi")
14682 "/lib/mpi.jar"))
14683 #:modules ((guix build ant-build-system)
14684 (guix build utils)
14685 (guix build java-utils))
14686 #:phases
14687 (modify-phases %standard-phases
14688 (add-after 'build 'build-jni-library
14689 (lambda _
14690 (with-directory-excursion "jni"
14691 (invoke "make" "-f" "makefile.linux"))))
14692 ;; There is no install target
14693 (replace 'install (install-jars "dist"))
14694 (add-after 'install 'install-scripts-and-documentation
14695 (lambda* (#:key outputs #:allow-other-keys)
14696 (substitute* "calcmem.sh"
14697 (("\\| awk ") (string-append "| " (which "awk") " ")))
14698 (let* ((scripts (find-files "." "\\.sh$"))
14699 (out (assoc-ref outputs "out"))
14700 (bin (string-append out "/bin"))
14701 (doc (string-append out "/share/doc/bbmap"))
14702 (jni (string-append out "/lib/jni")))
14703 (substitute* scripts
14704 (("\\$DIR\"\"docs") doc)
14705 (("^CP=.*")
14706 (string-append "CP=" out "/share/java/BBTools.jar\n"))
14707 (("^NATIVELIBDIR.*")
14708 (string-append "NATIVELIBDIR=" jni "\n"))
14709 (("CMD=\"java")
14710 (string-append "CMD=\"" (which "java"))))
14711 (for-each (lambda (script) (install-file script bin)) scripts)
14712
14713 ;; Install JNI library
14714 (install-file "jni/libbbtoolsjni.so" jni)
14715
14716 ;; Install documentation
14717 (install-file "docs/readme.txt" doc)
14718 (copy-recursively "docs/guides" doc))
14719 #t)))
14720 #:jdk ,openjdk11))
14721 (inputs
14722 `(("gawk" ,gawk)
14723 ("java-eclipse-jdt-core" ,java-eclipse-jdt-core)
14724 ("java-eclipse-jdt-compiler-apt" ,java-eclipse-jdt-compiler-apt)
14725 ("java-openmpi" ,java-openmpi)))
14726 (home-page "https://sourceforge.net/projects/bbmap/")
14727 (synopsis "Aligner and other tools for short sequencing reads")
14728 (description
14729 "This package provides bioinformatic tools to align, deduplicate,
14730 reformat, filter and normalize DNA and RNA-seq data. It includes the
14731 following tools: BBMap, a short read aligner for DNA and RNA-seq data; BBNorm,
14732 a kmer-based error-correction and normalization tool; Dedupe, a tool to
14733 simplify assemblies by removing duplicate or contained subsequences that share
14734 a target percent identity; Reformat, to convert reads between
14735 fasta/fastq/scarf/fasta+qual/sam, interleaved/paired, and ASCII-33/64, at over
14736 500 MB/s; and BBDuk, a tool to filter, trim, or mask reads with kmer matches
14737 to an artifact/contaminant file.")
14738 (license license:bsd-3)))
14739
14740 (define-public velvet
14741 (package
14742 (name "velvet")
14743 (version "1.2.10")
14744 (source (origin
14745 (method url-fetch)
14746 (uri (string-append "https://www.ebi.ac.uk/~zerbino/velvet/"
14747 "velvet_" version ".tgz"))
14748 (sha256
14749 (base32
14750 "0h3njwy66p6bx14r3ar1byb0ccaxmxka4c65rn4iybyiqa4d8kc8"))
14751 ;; Delete bundled libraries
14752 (modules '((guix build utils)))
14753 (snippet
14754 '(begin
14755 (delete-file "Manual.pdf")
14756 (delete-file-recursively "third-party")
14757 #t))))
14758 (build-system gnu-build-system)
14759 (arguments
14760 `(#:make-flags '("OPENMP=t")
14761 #:test-target "test"
14762 #:phases
14763 (modify-phases %standard-phases
14764 (delete 'configure)
14765 (add-after 'unpack 'fix-zlib-include
14766 (lambda _
14767 (substitute* "src/binarySequences.c"
14768 (("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))
14769 #t))
14770 (replace 'install
14771 (lambda* (#:key outputs #:allow-other-keys)
14772 (let* ((out (assoc-ref outputs "out"))
14773 (bin (string-append out "/bin"))
14774 (doc (string-append out "/share/doc/velvet")))
14775 (mkdir-p bin)
14776 (mkdir-p doc)
14777 (install-file "velveth" bin)
14778 (install-file "velvetg" bin)
14779 (install-file "Manual.pdf" doc)
14780 (install-file "Columbus_manual.pdf" doc)
14781 #t))))))
14782 (inputs
14783 `(("openmpi" ,openmpi)
14784 ("zlib" ,zlib)))
14785 (native-inputs
14786 `(("texlive" ,(texlive-union (list texlive-latex-graphics
14787 texlive-latex-hyperref)))))
14788 (home-page "https://www.ebi.ac.uk/~zerbino/velvet/")
14789 (synopsis "Nucleic acid sequence assembler for very short reads")
14790 (description
14791 "Velvet is a de novo genomic assembler specially designed for short read
14792 sequencing technologies, such as Solexa or 454. Velvet currently takes in
14793 short read sequences, removes errors then produces high quality unique
14794 contigs. It then uses paired read information, if available, to retrieve the
14795 repeated areas between contigs.")
14796 (license license:gpl2+)))
14797
14798 (define-public python-velocyto
14799 (package
14800 (name "python-velocyto")
14801 (version "0.17.17")
14802 (source
14803 (origin
14804 (method url-fetch)
14805 (uri (pypi-uri "velocyto" version))
14806 (sha256
14807 (base32
14808 "0fgygyzqgrq32dv6a00biq1p1cwi6kbl5iqblxq1kklj6b2mzmhs"))))
14809 (build-system python-build-system)
14810 (native-inputs
14811 `(("python-joblib" ,python-joblib)))
14812 (propagated-inputs
14813 `(("python-click" ,python-click)
14814 ("python-cython" ,python-cython)
14815 ("python-h5py" ,python-h5py)
14816 ("python-loompy" ,python-loompy)
14817 ("python-matplotlib" ,python-matplotlib)
14818 ("python-numba" ,python-numba)
14819 ("python-numpy" ,python-numpy)
14820 ("python-pandas" ,python-pandas)
14821 ("python-pysam" ,python-pysam)
14822 ("python-scikit-learn" ,python-scikit-learn)
14823 ("python-scipy" ,python-scipy)))
14824 (home-page "https://github.com/velocyto-team/velocyto.py")
14825 (synopsis "RNA velocity analysis for single cell RNA-seq data")
14826 (description
14827 "Velocyto is a library for the analysis of RNA velocity. Velocyto
14828 includes a command line tool and an analysis pipeline.")
14829 (license license:bsd-2)))
14830
14831 (define-public arriba
14832 (package
14833 (name "arriba")
14834 (version "1.0.1")
14835 (source
14836 (origin
14837 (method url-fetch)
14838 (uri (string-append "https://github.com/suhrig/arriba/releases/"
14839 "download/v" version "/arriba_v" version ".tar.gz"))
14840 (sha256
14841 (base32
14842 "0jx9656ry766vb8z08m1c3im87b0c82qpnjby9wz4kcz8vn87dx2"))))
14843 (build-system gnu-build-system)
14844 (arguments
14845 `(#:tests? #f ; there are none
14846 #:phases
14847 (modify-phases %standard-phases
14848 (replace 'configure
14849 (lambda* (#:key inputs #:allow-other-keys)
14850 (let ((htslib (assoc-ref inputs "htslib")))
14851 (substitute* "Makefile"
14852 (("-I\\$\\(HTSLIB\\)/htslib")
14853 (string-append "-I" htslib "/include/htslib"))
14854 ((" \\$\\(HTSLIB\\)/libhts.a")
14855 (string-append " " htslib "/lib/libhts.so"))))
14856 (substitute* "run_arriba.sh"
14857 (("^STAR ") (string-append (which "STAR") " "))
14858 (("samtools --version-only")
14859 (string-append (which "samtools") " --version-only"))
14860 (("samtools index")
14861 (string-append (which "samtools") " index"))
14862 (("samtools sort")
14863 (string-append (which "samtools") " sort")))
14864 #t))
14865 (replace 'install
14866 (lambda* (#:key outputs #:allow-other-keys)
14867 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
14868 (install-file "arriba" bin)
14869 (install-file "run_arriba.sh" bin)
14870 (install-file "draw_fusions.R" bin)
14871 (wrap-program (string-append bin "/draw_fusions.R")
14872 `("R_LIBS_SITE" ":" prefix (,(getenv "R_LIBS_SITE")))))
14873 #t)))))
14874 (inputs
14875 `(("htslib" ,htslib)
14876 ("r-minimal" ,r-minimal)
14877 ("r-circlize" ,r-circlize)
14878 ("r-genomicalignments" ,r-genomicalignments)
14879 ("r-genomicranges" ,r-genomicranges)
14880 ("samtools" ,samtools)
14881 ("star" ,star)
14882 ("zlib" ,zlib)))
14883 (home-page "https://github.com/suhrig/arriba")
14884 (synopsis "Gene fusion detection from RNA-Seq data ")
14885 (description
14886 "Arriba is a command-line tool for the detection of gene fusions from
14887 RNA-Seq data. It was developed for the use in a clinical research setting.
14888 Therefore, short runtimes and high sensitivity were important design criteria.
14889 It is based on the fast STAR aligner and the post-alignment runtime is
14890 typically just around two minutes. In contrast to many other fusion detection
14891 tools which build on STAR, Arriba does not require to reduce the
14892 @code{alignIntronMax} parameter of STAR to detect small deletions.")
14893 ;; All code is under the Expat license with the exception of
14894 ;; "draw_fusions.R", which is under GPLv3.
14895 (license (list license:expat license:gpl3))))
14896
14897 (define-public adapterremoval
14898 (package
14899 (name "adapterremoval")
14900 (version "2.3.0")
14901 (source
14902 (origin
14903 (method git-fetch)
14904 (uri (git-reference
14905 (url "https://github.com/MikkelSchubert/adapterremoval")
14906 (commit (string-append "v" version))))
14907 (file-name (git-file-name name version))
14908 (sha256
14909 (base32
14910 "1nf3ki5pfzalhrx2fr1y6pfqfi133yj2m7q4fj9irf5fb94bapwr"))))
14911 (build-system gnu-build-system)
14912 (arguments
14913 `(#:make-flags (list "COLOR_BUILD=no"
14914 (string-append "PREFIX="
14915 (assoc-ref %outputs "out")))
14916 #:test-target "test"
14917 #:phases
14918 (modify-phases %standard-phases
14919 (delete 'configure))))
14920 (inputs
14921 `(("zlib" ,zlib)))
14922 (home-page "https://adapterremoval.readthedocs.io/")
14923 (synopsis "Rapid sequence adapter trimming, identification, and read merging")
14924 (description
14925 "This program searches for and removes remnant adapter sequences from
14926 @dfn{High-Throughput Sequencing} (HTS) data and (optionally) trims low quality
14927 bases from the 3' end of reads following adapter removal. AdapterRemoval can
14928 analyze both single end and paired end data, and can be used to merge
14929 overlapping paired-ended reads into (longer) consensus sequences.
14930 Additionally, the AdapterRemoval may be used to recover a consensus adapter
14931 sequence for paired-ended data, for which this information is not available.")
14932 (license license:gpl3+)))
14933
14934 (define-public pplacer
14935 (let ((commit "807f6f3"))
14936 (package
14937 (name "pplacer")
14938 ;; The commit should be updated with each version change.
14939 (version "1.1.alpha19")
14940 (source
14941 (origin
14942 (method git-fetch)
14943 (uri (git-reference
14944 (url "https://github.com/matsen/pplacer")
14945 (commit (string-append "v" version))))
14946 (file-name (git-file-name name version))
14947 (sha256
14948 (base32 "11ppbbbx20p2g9wj3ff64dhnarb12q79v7qh4rk0gj6lkbz4n7cn"))))
14949 (build-system ocaml-build-system)
14950 (arguments
14951 `(#:modules ((guix build ocaml-build-system)
14952 (guix build utils)
14953 (ice-9 ftw))
14954 #:phases
14955 (modify-phases %standard-phases
14956 (delete 'configure)
14957 (add-after 'unpack 'fix-build-with-latest-ocaml
14958 (lambda _
14959 (substitute* "myocamlbuild.ml"
14960 (("dep \\[\"c_pam\"\\]" m)
14961 (string-append "flag [\"ocaml\"; \"compile\"] (A \"-unsafe-string\");\n"
14962 m))
14963 (("let run_and_read" m)
14964 (string-append "
14965 let split s ch =
14966 let x = ref [] in
14967 let rec go s =
14968 let pos = String.index s ch in
14969 x := (String.before s pos)::!x;
14970 go (String.after s (pos + 1))
14971 in
14972 try go s
14973 with Not_found -> !x
14974 let split_nl s = split s '\\n'
14975 let before_space s =
14976 try String.before s (String.index s ' ')
14977 with Not_found -> s
14978
14979 " m))
14980 (("run_and_read \"ocamlfind list \\| cut -d' ' -f1\"" m)
14981 (string-append "List.map before_space (split_nl & " m ")"))
14982 ((" blank_sep_strings &") "")
14983 ((" Lexing.from_string &") ""))
14984 #t))
14985 (add-after 'unpack 'replace-bundled-cddlib
14986 (lambda* (#:key inputs #:allow-other-keys)
14987 (let* ((cddlib-src (assoc-ref inputs "cddlib-src"))
14988 (local-dir "cddlib_guix"))
14989 (mkdir local-dir)
14990 (with-directory-excursion local-dir
14991 (invoke "tar" "xvf" cddlib-src))
14992 (let ((cddlib-src-folder
14993 (string-append local-dir "/"
14994 (list-ref (scandir local-dir) 2)
14995 "/lib-src")))
14996 (for-each make-file-writable (find-files "cdd_src" ".*"))
14997 (for-each
14998 (lambda (file)
14999 (copy-file file
15000 (string-append "cdd_src/" (basename file))))
15001 (find-files cddlib-src-folder ".*[ch]$")))
15002 #t)))
15003 (add-after 'unpack 'fix-makefile
15004 (lambda _
15005 ;; Remove system calls to 'git'.
15006 (substitute* "Makefile"
15007 (("^DESCRIPT:=pplacer-.*")
15008 (string-append
15009 "DESCRIPT:=pplacer-$(shell uname)-v" ,version "\n")))
15010 (substitute* "myocamlbuild.ml"
15011 (("git describe --tags --long .*\\\" with")
15012 (string-append
15013 "echo -n v" ,version "-" ,commit "\" with")))
15014 #t))
15015 (replace 'install
15016 (lambda* (#:key outputs #:allow-other-keys)
15017 (let* ((out (assoc-ref outputs "out"))
15018 (bin (string-append out "/bin")))
15019 (copy-recursively "bin" bin))
15020 #t)))
15021 #:ocaml ,ocaml-4.07
15022 #:findlib ,ocaml4.07-findlib))
15023 (inputs
15024 `(("zlib" ,zlib "static")
15025 ("gsl" ,gsl)
15026 ("ocaml-ounit" ,(package-with-ocaml4.07 ocaml-ounit))
15027 ("ocaml-batteries" ,(package-with-ocaml4.07 ocaml-batteries))
15028 ("ocaml-camlzip" ,(package-with-ocaml4.07 camlzip))
15029 ("ocaml-csv" ,(package-with-ocaml4.07 ocaml-csv))
15030 ("ocaml-sqlite3" ,ocaml4.07-sqlite3)
15031 ("ocaml-xmlm" ,(package-with-ocaml4.07 ocaml-xmlm))
15032 ("ocaml-mcl" ,(package-with-ocaml4.07 ocaml-mcl))
15033 ("ocaml-gsl" ,ocaml4.07-gsl-1)))
15034 (native-inputs
15035 `(("cddlib-src" ,(package-source cddlib))
15036 ("ocamlbuild" ,(package-with-ocaml4.07 ocamlbuild))
15037 ("pkg-config" ,pkg-config)))
15038 (propagated-inputs
15039 `(("pplacer-scripts" ,pplacer-scripts)))
15040 (synopsis "Phylogenetic placement of biological sequences")
15041 (description
15042 "Pplacer places query sequences on a fixed reference phylogenetic tree
15043 to maximize phylogenetic likelihood or posterior probability according to a
15044 reference alignment. Pplacer is designed to be fast, to give useful
15045 information about uncertainty, and to offer advanced visualization and
15046 downstream analysis.")
15047 (home-page "https://matsen.fhcrc.org/pplacer/")
15048 (license license:gpl3))))
15049
15050 ;; This package is installed alongside 'pplacer'. It is a separate package so
15051 ;; that it can use the python-build-system for the scripts that are
15052 ;; distributed alongside the main OCaml binaries.
15053 (define pplacer-scripts
15054 (package
15055 (inherit pplacer)
15056 (name "pplacer-scripts")
15057 (build-system python-build-system)
15058 (arguments
15059 `(#:python ,python-2
15060 #:phases
15061 (modify-phases %standard-phases
15062 (add-after 'unpack 'enter-scripts-dir
15063 (lambda _ (chdir "scripts") #t))
15064 (replace 'check
15065 (lambda _ (invoke "python" "-m" "unittest" "discover" "-v") #t))
15066 (add-after 'install 'wrap-executables
15067 (lambda* (#:key inputs outputs #:allow-other-keys)
15068 (let* ((out (assoc-ref outputs "out"))
15069 (bin (string-append out "/bin")))
15070 (let ((path (string-append
15071 (assoc-ref inputs "hmmer") "/bin:"
15072 (assoc-ref inputs "infernal") "/bin")))
15073 (display path)
15074 (wrap-program (string-append bin "/refpkg_align.py")
15075 `("PATH" ":" prefix (,path))))
15076 (let ((path (string-append
15077 (assoc-ref inputs "hmmer") "/bin")))
15078 (wrap-program (string-append bin "/hrefpkg_query.py")
15079 `("PATH" ":" prefix (,path)))))
15080 #t)))))
15081 (inputs
15082 `(("infernal" ,infernal)
15083 ("hmmer" ,hmmer)))
15084 (propagated-inputs
15085 `(("python-biopython" ,python2-biopython)
15086 ("taxtastic" ,taxtastic)))
15087 (synopsis "Pplacer Python scripts")))
15088
15089 (define-public python2-checkm-genome
15090 (package
15091 (name "python2-checkm-genome")
15092 (version "1.0.13")
15093 (source
15094 (origin
15095 (method url-fetch)
15096 (uri (pypi-uri "checkm-genome" version))
15097 (sha256
15098 (base32
15099 "0bm8gpxjmzxsxxl8lzwqhgx8g1dlnmp6znz7wv3hgb0gdjbf9dzz"))))
15100 (build-system python-build-system)
15101 (arguments
15102 `(#:python ,python-2
15103 #:tests? #f)) ; some tests are interactive
15104 (propagated-inputs
15105 `(("python-dendropy" ,python2-dendropy)
15106 ("python-matplotlib" ,python2-matplotlib)
15107 ("python-numpy" ,python2-numpy)
15108 ("python-pysam" ,python2-pysam)
15109 ("python-scipy" ,python2-scipy)))
15110 (home-page "https://pypi.org/project/Checkm/")
15111 (synopsis "Assess the quality of putative genome bins")
15112 (description
15113 "CheckM provides a set of tools for assessing the quality of genomes
15114 recovered from isolates, single cells, or metagenomes. It provides robust
15115 estimates of genome completeness and contamination by using collocated sets of
15116 genes that are ubiquitous and single-copy within a phylogenetic lineage.
15117 Assessment of genome quality can also be examined using plots depicting key
15118 genomic characteristics (e.g., GC, coding density) which highlight sequences
15119 outside the expected distributions of a typical genome. CheckM also provides
15120 tools for identifying genome bins that are likely candidates for merging based
15121 on marker set compatibility, similarity in genomic characteristics, and
15122 proximity within a reference genome.")
15123 (license license:gpl3+)))
15124
15125 (define-public umi-tools
15126 (package
15127 (name "umi-tools")
15128 (version "1.0.0")
15129 (source
15130 (origin
15131 (method url-fetch)
15132 (uri (pypi-uri "umi_tools" version))
15133 (sha256
15134 (base32
15135 "08y3vz1vcx09whmbsn722lcs6jl9wyrh9i4p3k8j4cb1i32bij4a"))))
15136 (build-system python-build-system)
15137 (inputs
15138 `(("python-pandas" ,python-pandas)
15139 ("python-future" ,python-future)
15140 ("python-scipy" ,python-scipy)
15141 ("python-matplotlib" ,python-matplotlib)
15142 ("python-regex" ,python-regex)
15143 ("python-pysam" ,python-pysam)))
15144 (native-inputs
15145 `(("python-cython" ,python-cython)))
15146 (home-page "https://github.com/CGATOxford/UMI-tools")
15147 (synopsis "Tools for analyzing unique modular identifiers")
15148 (description "This package provides tools for dealing with @dfn{Unique
15149 Molecular Identifiers} (UMIs) and @dfn{Random Molecular Tags} (RMTs) in
15150 genetic sequences. There are six tools: the @code{extract} and
15151 @code{whitelist} commands are used to prepare a fastq containing UMIs @code{+/-}
15152 cell barcodes for alignment. The remaining commands, @code{group},
15153 @code{dedup}, and @{count}/@code{count_tab}, are used to identify PCR
15154 duplicates using the UMIs and perform different levels of analysis depending
15155 on the needs of the user.")
15156 (license license:expat)))
15157
15158 (define-public ataqv
15159 (package
15160 (name "ataqv")
15161 (version "1.0.0")
15162 (source
15163 (origin
15164 (method git-fetch)
15165 (uri (git-reference
15166 (url "https://github.com/ParkerLab/ataqv")
15167 (commit version)))
15168 (file-name (git-file-name name version))
15169 (sha256
15170 (base32
15171 "031xr6jx1aprh26y5b1lv3gzrlmzg4alfl73vvshymx8cq8asrqi"))))
15172 (build-system gnu-build-system)
15173 (arguments
15174 `(#:make-flags
15175 (list (string-append "prefix=" (assoc-ref %outputs "out"))
15176 (string-append "BOOST_ROOT="
15177 (assoc-ref %build-inputs "boost"))
15178 (string-append "HTSLIB_ROOT="
15179 (assoc-ref %build-inputs "htslib")))
15180 #:test-target "test"
15181 #:phases
15182 (modify-phases %standard-phases
15183 (delete 'configure))))
15184 (inputs
15185 `(("boost" ,boost)
15186 ("htslib" ,htslib)
15187 ("ncurses" ,ncurses)
15188 ("zlib" ,zlib)))
15189 (native-inputs
15190 `(("lcov" ,lcov)))
15191 (home-page "https://github.com/ParkerLab/ataqv")
15192 (synopsis "Toolkit for quality control and visualization of ATAC-seq data")
15193 (description "This package provides a toolkit for measuring and comparing
15194 ATAC-seq results. It was written to make it easier to spot differences that
15195 might be caused by ATAC-seq library prep or sequencing. The main program,
15196 @code{ataqv}, examines aligned reads and reports some basic metrics.")
15197 (license license:gpl3+)))
15198
15199 (define-public r-psiplot
15200 (package
15201 (name "r-psiplot")
15202 (version "2.3.0")
15203 (source
15204 (origin
15205 (method git-fetch)
15206 (uri (git-reference
15207 (url "https://github.com/kcha/psiplot")
15208 (commit (string-append "v" version))))
15209 (file-name (git-file-name name version))
15210 (sha256
15211 (base32 "08438h16cfry5kqh3y9hs8q1b1a8bxhblsm75knviz5r6q0n1jxh"))))
15212 (build-system r-build-system)
15213 (propagated-inputs
15214 `(("r-mass" ,r-mass)
15215 ("r-dplyr" ,r-dplyr)
15216 ("r-tidyr" ,r-tidyr)
15217 ("r-purrr" ,r-purrr)
15218 ("r-readr" ,r-readr)
15219 ("r-magrittr" ,r-magrittr)
15220 ("r-ggplot2" ,r-ggplot2)))
15221 (home-page "https://github.com/kcha/psiplot")
15222 (synopsis "Plot percent spliced-in values of alternatively-spliced exons")
15223 (description
15224 "PSIplot is an R package for generating plots of @dfn{percent
15225 spliced-in} (PSI) values of alternatively-spliced exons that were computed by
15226 vast-tools, an RNA-Seq pipeline for alternative splicing analysis. The plots
15227 are generated using @code{ggplot2}.")
15228 (license license:expat)))
15229
15230 (define-public python-ont-fast5-api
15231 (package
15232 (name "python-ont-fast5-api")
15233 (version "1.4.4")
15234 (source
15235 (origin
15236 (method git-fetch)
15237 (uri (git-reference
15238 (url "https://github.com/nanoporetech/ont_fast5_api")
15239 (commit (string-append "release_" version))))
15240 (file-name (git-file-name name version))
15241 (sha256
15242 (base32
15243 "03cbq4zbbwhll8ml2m9k8sa31mirsvcbjkrq1yna0kkzz9fad5fm"))))
15244 (build-system python-build-system)
15245 (propagated-inputs
15246 `(("python-numpy" ,python-numpy)
15247 ("python-six" ,python-six)
15248 ("python-h5py" ,python-h5py)
15249 ("python-progressbar33" ,python-progressbar33)))
15250 (home-page "https://github.com/nanoporetech/ont_fast5_api")
15251 (synopsis "Interface to HDF5 files of the Oxford Nanopore fast5 file format")
15252 (description
15253 "This package provides a concrete implementation of the fast5 file schema
15254 using the generic @code{h5py} library, plain-named methods to interact with
15255 and reflect the fast5 file schema, and tools to convert between
15256 @code{multi_read} and @code{single_read} formats.")
15257 (license license:mpl2.0)))
15258
15259 (define-public tbsp
15260 (let ((commit "ec8fff4410cfb13a677dbbb95cbbc60217e64907")
15261 (revision "1"))
15262 (package
15263 (name "tbsp")
15264 (version (git-version "1.0.0" revision commit))
15265 (source
15266 (origin
15267 (method git-fetch)
15268 (uri (git-reference
15269 (url "https://github.com/phoenixding/tbsp")
15270 (commit commit)))
15271 (file-name (git-file-name name version))
15272 (sha256
15273 (base32
15274 "025ym14x8gbd6hb55lsinqj6f5qzw36i10klgs7ldzxxd7s39ki1"))))
15275 (build-system python-build-system)
15276 (arguments '(#:tests? #f)) ; no tests included
15277 (inputs
15278 `(("python-matplotlib" ,python-matplotlib)
15279 ("python-networkx" ,python-networkx)
15280 ("python-numpy" ,python-numpy)
15281 ("python-pybigwig" ,python-pybigwig)
15282 ("python-biopython" ,python-biopython)
15283 ("python-scikit-learn" ,python-scikit-learn)
15284 ("python-scipy" ,python-scipy)))
15285 (home-page "https://github.com/phoenixding/tbsp/")
15286 (synopsis "SNP-based trajectory inference")
15287 (description
15288 "Several studies focus on the inference of developmental and response
15289 trajectories from single cell RNA-Seq (scRNA-Seq) data. A number of
15290 computational methods, often referred to as pseudo-time ordering, have been
15291 developed for this task. CRISPR has also been used to reconstruct lineage
15292 trees by inserting random mutations. The tbsp package implements an
15293 alternative method to detect significant, cell type specific sequence
15294 mutations from scRNA-Seq data.")
15295 (license license:expat))))
15296
15297 (define-public tabixpp
15298 (package
15299 (name "tabixpp")
15300 (version "1.1.0")
15301 (source (origin
15302 (method git-fetch)
15303 (uri (git-reference
15304 (url "https://github.com/ekg/tabixpp")
15305 (commit (string-append "v" version))))
15306 (file-name (git-file-name name version))
15307 (sha256
15308 (base32 "1k2a3vbq96ic4lw72iwp5s3mwwc4xhdffjj584yn6l9637q9j1yd"))
15309 (modules '((guix build utils)))
15310 (snippet
15311 `(begin
15312 (delete-file-recursively "htslib") #t))))
15313 (build-system gnu-build-system)
15314 (inputs
15315 `(("htslib" ,htslib)
15316 ("zlib" ,zlib)))
15317 (arguments
15318 `(#:tests? #f ; There are no tests to run.
15319 #:phases
15320 (modify-phases %standard-phases
15321 (delete 'configure) ; There is no configure phase.
15322 ;; The build phase needs overriding the location of htslib.
15323 (replace 'build
15324 (lambda* (#:key inputs #:allow-other-keys)
15325 (let ((htslib-ref (assoc-ref inputs "htslib")))
15326 (invoke "make"
15327 (string-append "HTS_LIB=" htslib-ref "/lib/libhts.a")
15328 (string-append "INCLUDES= -I" htslib-ref "/include/htslib")
15329 "HTS_HEADERS=" ; No need to check for headers here.
15330 (string-append "LIBPATH=-L. -L" htslib-ref "/include"))
15331 (invoke "g++" "-shared" "-o" "libtabixpp.so" "tabix.o" "-lhts")
15332 (invoke "ar" "rcs" "libtabixpp.a" "tabix.o"))))
15333 (replace 'install
15334 (lambda* (#:key outputs #:allow-other-keys)
15335 (let* ((out (assoc-ref outputs "out"))
15336 (lib (string-append out "/lib"))
15337 (bin (string-append out "/bin")))
15338 (install-file "tabix++" bin)
15339 (install-file "libtabixpp.so" lib)
15340 (install-file "libtabixpp.a" lib)
15341 (install-file "tabix.hpp" (string-append out "/include"))
15342 (mkdir-p (string-append lib "/pkgconfig"))
15343 (with-output-to-file (string-append lib "/pkgconfig/tabixpp.pc")
15344 (lambda _
15345 (format #t "prefix=~a~@
15346 exec_prefix=${prefix}~@
15347 libdir=${exec_prefix}/lib~@
15348 includedir=${prefix}/include~@
15349 ~@
15350 ~@
15351 Name: libtabixpp~@
15352 Version: ~a~@
15353 Description: C++ wrapper around tabix project~@
15354 Libs: -L${libdir} -ltabixpp~@
15355 Cflags: -I${includedir}~%"
15356 out ,version)))
15357 #t))))))
15358 (home-page "https://github.com/ekg/tabixpp")
15359 (synopsis "C++ wrapper around tabix project")
15360 (description "This is a C++ wrapper around the Tabix project which abstracts
15361 some of the details of opening and jumping in tabix-indexed files.")
15362 (license license:expat)))
15363
15364 (define-public smithwaterman
15365 (let ((commit "2610e259611ae4cde8f03c72499d28f03f6d38a7"))
15366 (package
15367 (name "smithwaterman")
15368 (version (git-version "0.0.0" "2" commit))
15369 (source (origin
15370 (method git-fetch)
15371 (uri (git-reference
15372 (url "https://github.com/ekg/smithwaterman/")
15373 (commit commit)))
15374 (file-name (git-file-name name version))
15375 (sha256
15376 (base32 "0i9d8zrxpiracw3mxzd9siybpy62p06rqz9mc2w93arajgbk45bs"))))
15377 (build-system gnu-build-system)
15378 (arguments
15379 `(#:tests? #f ; There are no tests to run.
15380 #:make-flags '("libsw.a" "all")
15381 #:phases
15382 (modify-phases %standard-phases
15383 (delete 'configure) ; There is no configure phase.
15384 (add-after 'unpack 'patch-source
15385 (lambda _
15386 (substitute* "Makefile"
15387 (("-c ") "-c -fPIC "))
15388 #t))
15389 (add-after 'build 'build-dynamic
15390 (lambda _
15391 (invoke "g++"
15392 "-shared" "-o" "libsmithwaterman.so"
15393 "smithwaterman.o" "SmithWatermanGotoh.o"
15394 "disorder.o" "BandedSmithWaterman.o"
15395 "LeftAlign.o" "Repeats.o" "IndelAllele.o")))
15396 (replace 'install
15397 (lambda* (#:key outputs #:allow-other-keys)
15398 (let* ((out (assoc-ref outputs "out"))
15399 (bin (string-append out "/bin"))
15400 (lib (string-append out "/lib")))
15401 (install-file "smithwaterman" bin)
15402 (for-each
15403 (lambda (file)
15404 (install-file file (string-append out "/include/smithwaterman")))
15405 (find-files "." "\\.h$"))
15406 (install-file "libsmithwaterman.so" lib)
15407 (install-file "libsw.a" lib)
15408 (mkdir-p (string-append lib "/pkgconfig"))
15409 (with-output-to-file (string-append lib "/pkgconfig/smithwaterman.pc")
15410 (lambda _
15411 (format #t "prefix=~a~@
15412 exec_prefix=${prefix}~@
15413 libdir=${exec_prefix}/lib~@
15414 includedir=${prefix}/include/smithwaterman~@
15415 ~@
15416 ~@
15417 Name: smithwaterman~@
15418 Version: ~a~@
15419 Description: smith-waterman-gotoh alignment algorithm~@
15420 Libs: -L${libdir} -lsmithwaterman~@
15421 Cflags: -I${includedir}~%"
15422 out ,version))))
15423 #t)))))
15424 (home-page "https://github.com/ekg/smithwaterman")
15425 (synopsis "Implementation of the Smith-Waterman algorithm")
15426 (description "Implementation of the Smith-Waterman algorithm.")
15427 ;; The licensing terms are unclear: https://github.com/ekg/smithwaterman/issues/9.
15428 (license (list license:gpl2 license:expat)))))
15429
15430 (define-public multichoose
15431 (package
15432 (name "multichoose")
15433 (version "1.0.3")
15434 (source (origin
15435 (method git-fetch)
15436 (uri (git-reference
15437 (url "https://github.com/ekg/multichoose/")
15438 (commit (string-append "v" version))))
15439 (file-name (git-file-name name version))
15440 (sha256
15441 (base32 "0ci5fqvmpamwgxvmyd79ygj6n3bnbl3vc7b6h1sxz58186sm3pfs"))))
15442 (build-system gnu-build-system)
15443 (arguments
15444 `(#:tests? #f ; Tests require node.
15445 #:phases
15446 (modify-phases %standard-phases
15447 (delete 'configure) ; There is no configure phase.
15448 (replace 'install
15449 (lambda* (#:key outputs #:allow-other-keys)
15450 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
15451 ;; TODO: There are Python modules for these programs too.
15452 (install-file "multichoose" bin)
15453 (install-file "multipermute" bin))
15454 #t)))))
15455 (home-page "https://github.com/ekg/multichoose")
15456 (synopsis "Efficient loopless multiset combination generation algorithm")
15457 (description "This library implements an efficient loopless multiset
15458 combination generation algorithm which is (approximately) described in
15459 \"Loopless algorithms for generating permutations, combinations, and other
15460 combinatorial configurations.\", G. Ehrlich - Journal of the ACM (JACM),
15461 1973. (Algorithm 7.)")
15462 (license license:expat)))
15463
15464 (define-public fsom
15465 (let ((commit "a6ef318fbd347c53189384aef7f670c0e6ce89a3"))
15466 (package
15467 (name "fsom")
15468 (version (git-version "0.0.0" "1" commit))
15469 (source (origin
15470 (method git-fetch)
15471 (uri (git-reference
15472 (url "https://github.com/ekg/fsom/")
15473 (commit commit)))
15474 (file-name (git-file-name name version))
15475 (sha256
15476 (base32 "0gw1lpvr812pywg9y546x0h1hhj261xwls41r6kqhddjlrcjc0pi"))))
15477 (build-system gnu-build-system)
15478 (arguments
15479 `(#:tests? #f ; There are no tests to run.
15480 #:phases
15481 (modify-phases %standard-phases
15482 (delete 'configure) ; There is no configure phase.
15483 (replace 'install
15484 (lambda* (#:key outputs #:allow-other-keys)
15485 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
15486 (install-file "fsom" bin))
15487 #t)))))
15488 (home-page "https://github.com/ekg/fsom")
15489 (synopsis "Manage SOM (Self-Organizing Maps) neural networks")
15490 (description "A tiny C library for managing SOM (Self-Organizing Maps)
15491 neural networks.")
15492 (license license:gpl3))))
15493
15494 (define-public fastahack
15495 (package
15496 (name "fastahack")
15497 (version "1.0.0")
15498 (source (origin
15499 (method git-fetch)
15500 (uri (git-reference
15501 (url "https://github.com/ekg/fastahack/")
15502 (commit (string-append "v" version))))
15503 (file-name (git-file-name name version))
15504 (sha256
15505 (base32 "0rp1blskhzxf7vbh253ibpxbgl9wwgyzf1wbkxndi08d3j4vcss9"))))
15506 (build-system gnu-build-system)
15507 (arguments
15508 `(#:tests? #f ; Unclear how to run tests: https://github.com/ekg/fastahack/issues/15
15509 #:phases
15510 (modify-phases %standard-phases
15511 (delete 'configure) ; There is no configure phase.
15512 (add-after 'unpack 'patch-source
15513 (lambda _
15514 (substitute* "Makefile"
15515 (("-c ") "-c -fPIC "))
15516 #t))
15517 (add-after 'build 'build-dynamic
15518 (lambda _
15519 (invoke "g++"
15520 "-shared" "-o" "libfastahack.so"
15521 "Fasta.o" "FastaHack.o" "split.o" "disorder.o")))
15522 (replace 'install
15523 (lambda* (#:key outputs #:allow-other-keys)
15524 (let* ((out (assoc-ref outputs "out"))
15525 (lib (string-append out "/lib"))
15526 (bin (string-append out "/bin")))
15527 (mkdir-p (string-append out "/include/fastahack"))
15528 (for-each
15529 (lambda (file)
15530 (install-file file (string-append out "/include/fastahack")))
15531 (find-files "." "\\.h$"))
15532 (install-file "fastahack" bin)
15533 (install-file "libfastahack.so" lib)
15534 (mkdir-p (string-append lib "/pkgconfig"))
15535 (with-output-to-file (string-append lib "/pkgconfig/fastahack.pc")
15536 (lambda _
15537 (format #t "prefix=~a~@
15538 exec_prefix=${prefix}~@
15539 libdir=${exec_prefix}/lib~@
15540 includedir=${prefix}/include/fastahack~@
15541 ~@
15542 ~@
15543 Name: fastahack~@
15544 Version: ~a~@
15545 Description: Indexing and sequence extraction from FASTA files~@
15546 Libs: -L${libdir} -lfastahack~@
15547 Cflags: -I${includedir}~%"
15548 out ,version))))
15549 #t)))))
15550 (home-page "https://github.com/ekg/fastahack")
15551 (synopsis "Indexing and sequence extraction from FASTA files")
15552 (description "Fastahack is a small application for indexing and
15553 extracting sequences and subsequences from FASTA files. The included library
15554 provides a FASTA reader and indexer that can be embedded into applications
15555 which would benefit from directly reading subsequences from FASTA files. The
15556 library automatically handles index file generation and use.")
15557 (license (list license:expat license:gpl2))))
15558
15559 (define-public vcflib
15560 (package
15561 (name "vcflib")
15562 (version "1.0.1")
15563 (source
15564 (origin
15565 (method url-fetch)
15566 (uri (string-append "https://github.com/vcflib/vcflib/releases/"
15567 "download/v" version
15568 "/vcflib-" version "-src.tar.gz"))
15569 (sha256
15570 (base32 "14zzrg8hg8cq9cvq2wdvp21j7nmxxkjrbagw2apd2yqv2kyx42lm"))
15571 (patches (search-patches "vcflib-use-shared-libraries.patch"))
15572 (modules '((guix build utils)))
15573 (snippet
15574 `(begin
15575 (substitute* (find-files "." "\\.(h|c)(pp)?$")
15576 (("\"SmithWatermanGotoh.h\"") "<smithwaterman/SmithWatermanGotoh.h>")
15577 (("\"convert.h\"") "<smithwaterman/convert.h>")
15578 (("\"disorder.h\"") "<smithwaterman/disorder.h>")
15579 (("\"tabix.hpp\"") "<tabix.hpp>")
15580 (("\"Fasta.h\"") "<fastahack/Fasta.h>"))
15581 (for-each delete-file-recursively
15582 '("fastahack" "filevercmp" "fsom" "googletest" "intervaltree"
15583 "libVCFH" "multichoose" "smithwaterman" "tabixpp"))
15584 #t))))
15585 (build-system gnu-build-system)
15586 (inputs
15587 `(("htslib" ,htslib)
15588 ("fastahack" ,fastahack)
15589 ("perl" ,perl)
15590 ("python" ,python)
15591 ("smithwaterman" ,smithwaterman)
15592 ("tabixpp" ,tabixpp)
15593 ("xz" ,xz)
15594 ("zlib" ,zlib)))
15595 (native-inputs
15596 `(("pkg-config" ,pkg-config)
15597 ;; Submodules.
15598 ;; This package builds against the .o files so we need to extract the source.
15599 ("filevercmp-src" ,(package-source filevercmp))
15600 ("intervaltree-src" ,(package-source intervaltree))
15601 ("multichoose-src" ,(package-source multichoose))))
15602 (arguments
15603 `(#:tests? #f ; no tests
15604 #:phases
15605 (modify-phases %standard-phases
15606 (add-after 'unpack 'set-flags
15607 (lambda* (#:key outputs #:allow-other-keys)
15608 (substitute* "Makefile"
15609 (("LDFLAGS =")
15610 (string-append "LDFLAGS = -Wl,-rpath="
15611 (assoc-ref outputs "out") "/lib ")))
15612 (substitute* "filevercmp/Makefile"
15613 (("-c") "-c -fPIC"))
15614 #t))
15615 (delete 'configure)
15616 (add-after 'unpack 'unpack-submodule-sources
15617 (lambda* (#:key inputs #:allow-other-keys)
15618 (let ((unpack (lambda (source target)
15619 (mkdir target)
15620 (with-directory-excursion target
15621 (if (file-is-directory? (assoc-ref inputs source))
15622 (copy-recursively (assoc-ref inputs source) ".")
15623 (invoke "tar" "xvf"
15624 (assoc-ref inputs source)
15625 "--strip-components=1"))))))
15626 (and
15627 (unpack "filevercmp-src" "filevercmp")
15628 (unpack "intervaltree-src" "intervaltree")
15629 (unpack "multichoose-src" "multichoose")))))
15630 (replace 'install
15631 (lambda* (#:key outputs #:allow-other-keys)
15632 (let* ((out (assoc-ref outputs "out"))
15633 (bin (string-append out "/bin"))
15634 (lib (string-append out "/lib")))
15635 (for-each (lambda (file)
15636 (install-file file bin))
15637 (find-files "bin" ".*"))
15638 (install-file "libvcflib.so" lib)
15639 (install-file "libvcflib.a" lib)
15640 (for-each
15641 (lambda (file)
15642 (install-file file (string-append out "/include")))
15643 (find-files "include" "\\.h(pp)?$"))
15644 (mkdir-p (string-append lib "/pkgconfig"))
15645 (with-output-to-file (string-append lib "/pkgconfig/vcflib.pc")
15646 (lambda _
15647 (format #t "prefix=~a~@
15648 exec_prefix=${prefix}~@
15649 libdir=${exec_prefix}/lib~@
15650 includedir=${prefix}/include~@
15651 ~@
15652 ~@
15653 Name: libvcflib~@
15654 Version: ~a~@
15655 Requires: smithwaterman, fastahack~@
15656 Description: C++ library for parsing and manipulating VCF files~@
15657 Libs: -L${libdir} -lvcflib~@
15658 Cflags: -I${includedir}~%"
15659 out ,version))))
15660 #t)))))
15661 (home-page "https://github.com/vcflib/vcflib/")
15662 (synopsis "Library for parsing and manipulating VCF files")
15663 (description "Vcflib provides methods to manipulate and interpret
15664 sequence variation as it can be described by VCF. It is both an API for parsing
15665 and operating on records of genomic variation as it can be described by the VCF
15666 format, and a collection of command-line utilities for executing complex
15667 manipulations on VCF files.")
15668 (license license:expat)))
15669
15670 (define-public freebayes
15671 (let ((commit "3ce827d8ebf89bb3bdc097ee0fe7f46f9f30d5fb")
15672 (revision "1")
15673 (version "1.0.2"))
15674 (package
15675 (name "freebayes")
15676 (version (git-version version revision commit))
15677 (source (origin
15678 (method git-fetch)
15679 (uri (git-reference
15680 (url "https://github.com/ekg/freebayes")
15681 (commit commit)))
15682 (file-name (git-file-name name version))
15683 (sha256
15684 (base32 "1sbzwmcbn78ybymjnhwk7qc5r912azy5vqz2y7y81616yc3ba2a2"))))
15685 (build-system gnu-build-system)
15686 (inputs
15687 `(("bamtools" ,bamtools)
15688 ("htslib" ,htslib)
15689 ("zlib" ,zlib)))
15690 (native-inputs
15691 `(("bc" ,bc) ; Needed for running tests.
15692 ("samtools" ,samtools) ; Needed for running tests.
15693 ("parallel" ,parallel) ; Needed for running tests.
15694 ("perl" ,perl) ; Needed for running tests.
15695 ("procps" ,procps) ; Needed for running tests.
15696 ("python" ,python-2) ; Needed for running tests.
15697 ("vcflib-src" ,(package-source vcflib))
15698 ;; These are submodules for the vcflib version used in freebayes.
15699 ;; This package builds against the .o files so we need to extract the source.
15700 ("tabixpp-src" ,(package-source tabixpp))
15701 ("smithwaterman-src" ,(package-source smithwaterman))
15702 ("multichoose-src" ,(package-source multichoose))
15703 ("fsom-src" ,(package-source fsom))
15704 ("filevercmp-src" ,(package-source filevercmp))
15705 ("fastahack-src" ,(package-source fastahack))
15706 ("intervaltree-src" ,(package-source intervaltree))
15707 ;; These submodules are needed to run the tests.
15708 ("bash-tap-src" ,(package-source bash-tap))
15709 ("test-simple-bash-src"
15710 ,(origin
15711 (method git-fetch)
15712 (uri (git-reference
15713 (url "https://github.com/ingydotnet/test-simple-bash/")
15714 (commit "124673ff204b01c8e96b7fc9f9b32ee35d898acc")))
15715 (file-name "test-simple-bash-src-checkout")
15716 (sha256
15717 (base32 "043plp6z0x9yf7mdpky1fw7zcpwn1p47px95w9mh16603zqqqpga"))))))
15718 (arguments
15719 `(#:make-flags
15720 (list "CC=gcc"
15721 (string-append "BAMTOOLS_ROOT="
15722 (assoc-ref %build-inputs "bamtools")))
15723 #:test-target "test"
15724 #:phases
15725 (modify-phases %standard-phases
15726 (delete 'configure)
15727 (add-after 'unpack 'fix-tests
15728 (lambda _
15729 (substitute* "test/t/01_call_variants.t"
15730 (("grep -P \"\\(\\\\t500\\$\\|\\\\t11000\\$\\|\\\\t1000\\$\\)\"")
15731 "grep -E ' (500|11000|1000)$'"))
15732 #t))
15733 (add-after 'unpack 'unpack-submodule-sources
15734 (lambda* (#:key inputs #:allow-other-keys)
15735 (let ((unpack (lambda (source target)
15736 (with-directory-excursion target
15737 (if (file-is-directory? (assoc-ref inputs source))
15738 (copy-recursively (assoc-ref inputs source) ".")
15739 (invoke "tar" "xvf"
15740 (assoc-ref inputs source)
15741 "--strip-components=1"))))))
15742 (and
15743 (unpack "vcflib-src" "vcflib")
15744 (unpack "fastahack-src" "vcflib/fastahack")
15745 (unpack "filevercmp-src" "vcflib/filevercmp")
15746 (unpack "fsom-src" "vcflib/fsom")
15747 (unpack "intervaltree-src" "vcflib/intervaltree")
15748 (unpack "multichoose-src" "vcflib/multichoose")
15749 (unpack "smithwaterman-src" "vcflib/smithwaterman")
15750 (unpack "tabixpp-src" "vcflib/tabixpp")
15751 (unpack "test-simple-bash-src" "test/test-simple-bash")
15752 (unpack "bash-tap-src" "test/bash-tap")))))
15753 (add-after 'unpack-submodule-sources 'fix-makefiles
15754 (lambda _
15755 ;; We don't have the .git folder to get the version tag from.
15756 (substitute* "vcflib/Makefile"
15757 (("^GIT_VERSION.*")
15758 (string-append "GIT_VERSION = v" ,version)))
15759 (substitute* "src/Makefile"
15760 (("-I\\$\\(BAMTOOLS_ROOT\\)/src")
15761 "-I$(BAMTOOLS_ROOT)/include/bamtools"))
15762 #t))
15763 (add-before 'build 'build-tabixpp-and-vcflib
15764 (lambda* (#:key inputs make-flags #:allow-other-keys)
15765 (with-directory-excursion "vcflib"
15766 (with-directory-excursion "tabixpp"
15767 (apply invoke "make"
15768 (string-append "HTS_LIB="
15769 (assoc-ref inputs "htslib")
15770 "/lib/libhts.a")
15771 make-flags))
15772 (apply invoke "make"
15773 (string-append "CFLAGS=-Itabixpp")
15774 "all"
15775 make-flags))))
15776 (replace 'install
15777 (lambda* (#:key outputs #:allow-other-keys)
15778 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
15779 (install-file "bin/freebayes" bin)
15780 (install-file "bin/bamleftalign" bin))
15781 #t)))))
15782 (home-page "https://github.com/ekg/freebayes")
15783 (synopsis "Haplotype-based variant detector")
15784 (description "FreeBayes is a Bayesian genetic variant detector designed to
15785 find small polymorphisms, specifically SNPs (single-nucleotide polymorphisms),
15786 indels (insertions and deletions), MNPs (multi-nucleotide polymorphisms), and
15787 complex events (composite insertion and substitution events) smaller than the
15788 length of a short-read sequencing alignment.")
15789 (license license:expat))))
15790
15791 (define-public samblaster
15792 (package
15793 (name "samblaster")
15794 (version "0.1.24")
15795 (source (origin
15796 (method git-fetch)
15797 (uri (git-reference
15798 (url "https://github.com/GregoryFaust/samblaster")
15799 (commit (string-append "v." version))))
15800 (file-name (git-file-name name version))
15801 (sha256
15802 (base32
15803 "0iv2ddfw8363vb2x8gr3p8g88whb6mb9m0pf71i2cqsbv6jghap7"))))
15804 (build-system gnu-build-system)
15805 (arguments
15806 `(#:tests? #f ; there are none
15807 #:phases
15808 (modify-phases %standard-phases
15809 (delete 'configure) ; There is no configure phase.
15810 (replace 'install
15811 (lambda* (#:key outputs #:allow-other-keys)
15812 (install-file "samblaster"
15813 (string-append (assoc-ref outputs "out") "/bin"))
15814 #t)))))
15815 (home-page "https://github.com/GregoryFaust/samblaster")
15816 (synopsis "Mark duplicates in paired-end SAM files")
15817 (description "Samblaster is a fast and flexible program for marking
15818 duplicates in read-id grouped paired-end SAM files. It can also optionally
15819 output discordant read pairs and/or split read mappings to separate SAM files,
15820 and/or unmapped/clipped reads to a separate FASTQ file. When marking
15821 duplicates, samblaster will require approximately 20MB of memory per 1M read
15822 pairs.")
15823 (license license:expat)))
15824
15825 (define-public r-velocyto
15826 (let ((commit "d7790346cb99f49ab9c2b23ba70dcf9d2c9fc350")
15827 (revision "1"))
15828 (package
15829 (name "r-velocyto")
15830 (version (git-version "0.6" revision commit))
15831 (source
15832 (origin
15833 (method git-fetch)
15834 (uri (git-reference
15835 (url "https://github.com/velocyto-team/velocyto.R")
15836 (commit commit)))
15837 (file-name (git-file-name name version))
15838 (sha256
15839 (base32
15840 "16wqf70j7rd7pay2q513iyz12i8n9vrpg1bisah4lddbcpx5dz1n"))))
15841 (build-system r-build-system)
15842 (inputs
15843 `(("boost" ,boost)))
15844 (propagated-inputs
15845 `(("r-hdf5r" ,r-hdf5r)
15846 ("r-mass" ,r-mass)
15847 ("r-mgcv" ,r-mgcv)
15848 ("r-pcamethods" ,r-pcamethods)
15849 ("r-rcpp" ,r-rcpp)
15850 ("r-rcpparmadillo" ,r-rcpparmadillo)
15851 ;; Suggested packages
15852 ("r-rtsne" ,r-rtsne)
15853 ("r-cluster" ,r-cluster)
15854 ("r-abind" ,r-abind)
15855 ("r-h5" ,r-h5)
15856 ("r-biocgenerics" ,r-biocgenerics)
15857 ("r-genomicalignments" ,r-genomicalignments)
15858 ("r-rsamtools" ,r-rsamtools)
15859 ("r-edger" ,r-edger)
15860 ("r-igraph" ,r-igraph)))
15861 (home-page "https://velocyto.org")
15862 (synopsis "RNA velocity estimation in R")
15863 (description
15864 "This package provides basic routines for estimation of gene-specific
15865 transcriptional derivatives and visualization of the resulting velocity
15866 patterns.")
15867 (license license:gpl3))))
15868
15869 (define-public methyldackel
15870 (package
15871 (name "methyldackel")
15872 (version "0.4.0")
15873 (source (origin
15874 (method git-fetch)
15875 (uri (git-reference
15876 (url "https://github.com/dpryan79/MethylDackel")
15877 (commit version)))
15878 (file-name (git-file-name name version))
15879 (sha256
15880 (base32
15881 "10gh8k0ca92kywnrw5pkacq3g6r8s976s12k8jhp8g3g49q9a97g"))))
15882 (build-system gnu-build-system)
15883 (arguments
15884 `(#:test-target "test"
15885 #:make-flags
15886 (list "CC=gcc"
15887 (string-append "prefix="
15888 (assoc-ref %outputs "out") "/bin/"))
15889 #:phases
15890 (modify-phases %standard-phases
15891 (replace 'configure
15892 (lambda* (#:key outputs #:allow-other-keys)
15893 (substitute* "Makefile"
15894 (("install MethylDackel \\$\\(prefix\\)" match)
15895 (string-append "install -d $(prefix); " match)))
15896 #t)))))
15897 (inputs
15898 `(("htslib" ,htslib)
15899 ("zlib" ,zlib)))
15900 ;; Needed for tests
15901 (native-inputs
15902 `(("python" ,python-wrapper)))
15903 (home-page "https://github.com/dpryan79/MethylDackel")
15904 (synopsis "Universal methylation extractor for BS-seq experiments")
15905 (description
15906 "MethylDackel will process a coordinate-sorted and indexed BAM or CRAM
15907 file containing some form of BS-seq alignments and extract per-base
15908 methylation metrics from them. MethylDackel requires an indexed fasta file
15909 containing the reference genome as well.")
15910 ;; See https://github.com/dpryan79/MethylDackel/issues/85
15911 (license license:expat)))
15912
15913 ;; This package bundles PCRE 8.02 and cannot be built with the current
15914 ;; version.
15915 (define-public phast
15916 (package
15917 (name "phast")
15918 (version "1.5")
15919 (source (origin
15920 (method git-fetch)
15921 (uri (git-reference
15922 (url "https://github.com/CshlSiepelLab/phast")
15923 (commit (string-append "v" version))))
15924 (file-name (git-file-name name version))
15925 (sha256
15926 (base32
15927 "10lpbllvny923jjbbyrpxahhd1m5h7sbj9gx7rd123rg10mlidki"))))
15928 (build-system gnu-build-system)
15929 (arguments
15930 `(#:make-flags
15931 (list "CC=gcc"
15932 (string-append "DESTDIR=" (assoc-ref %outputs "out")))
15933 #:phases
15934 (modify-phases %standard-phases
15935 (replace 'configure
15936 (lambda* (#:key inputs outputs #:allow-other-keys)
15937 ;; Fix syntax
15938 (substitute* "test/Makefile"
15939 ((" ") " "))
15940 (substitute* "Makefile"
15941 (("CLAPACKPATH=/usr/lib")
15942 (string-append "CLAPACKPATH="
15943 (assoc-ref inputs "clapack") "/lib")))
15944 ;; Renaming the libraries is not necessary with our version of
15945 ;; CLAPACK.
15946 (substitute* "src/lib/Makefile"
15947 (("ifdef CLAPACKPATH") "ifdef UNNECESSARY"))
15948 (substitute* "src/make-include.mk"
15949 (("-lblaswr") "-lblas")
15950 (("-ltmg") "-ltmglib")
15951 (("liblapack.a") "liblapack.so")
15952 (("libblas.a") "libblas.so")
15953 (("libf2c.a") "libf2c.so"))
15954 (substitute* "src/Makefile"
15955 (("/opt") "/share")
15956 (("/usr/") "/"))
15957 #t))
15958 (replace 'check
15959 (lambda _
15960 (setenv "PATH"
15961 (string-append (getcwd) "/bin:" (getenv "PATH")))
15962 ;; Disable broken test
15963 (substitute* "test/Makefile"
15964 ((".*if.*hmrc_summary" m) (string-append "#" m)))
15965 ;; Only run the msa_view tests because the others fail for
15966 ;; unknown reasons.
15967 (invoke "make" "-C" "test" "msa_view"))))))
15968 (inputs
15969 `(("clapack" ,clapack)))
15970 (native-inputs
15971 `(("perl" ,perl)))
15972 (home-page "http://compgen.cshl.edu/phast/")
15973 (synopsis "Phylogenetic analysis with space/time models")
15974 (description
15975 "Phylogenetic Analysis with Space/Time models (PHAST) is a collection of
15976 command-line programs and supporting libraries for comparative and
15977 evolutionary genomics. Best known as the search engine behind the
15978 Conservation tracks in the University of California, Santa Cruz (UCSC) Genome
15979 Browser, PHAST also includes several tools for phylogenetic modeling,
15980 functional element identification, as well as utilities for manipulating
15981 alignments, trees and genomic annotations.")
15982 (license license:bsd-3)))
15983
15984 (define-public python-gffutils
15985 ;; The latest release is older more than a year than the latest commit
15986 (let ((commit "4034c54600813b1402945e12faa91b3a53162cf1")
15987 (revision "1"))
15988 (package
15989 (name "python-gffutils")
15990 (version (git-version "0.9" revision commit))
15991 (source
15992 (origin
15993 (method git-fetch)
15994 (uri (git-reference
15995 (url "https://github.com/daler/gffutils")
15996 (commit commit)))
15997 (file-name (git-file-name name version))
15998 (sha256
15999 (base32
16000 "1rwafjdnbir5wnk0ap06ww4lra3p5frhy7mfs03rlldgfnwxymsn"))))
16001 (build-system python-build-system)
16002 (arguments
16003 `(#:phases
16004 (modify-phases %standard-phases
16005 (replace 'check
16006 (lambda _
16007 ;; Tests need to access the HOME directory
16008 (setenv "HOME" "/tmp")
16009 (invoke "nosetests" "-a" "!slow")))
16010 (add-after 'unpack 'make-gz-files-writable
16011 (lambda _
16012 (for-each make-file-writable
16013 (find-files "." "\\.gz"))
16014 #t)))))
16015 (propagated-inputs
16016 `(("python-argcomplete" ,python-argcomplete)
16017 ("python-argh" ,python-argh)
16018 ("python-biopython" ,python-biopython)
16019 ("python-pybedtools" ,python-pybedtools)
16020 ("python-pyfaidx" ,python-pyfaidx)
16021 ("python-simplejson" ,python-simplejson)
16022 ("python-six" ,python-six)))
16023 (native-inputs
16024 `(("python-nose" , python-nose)))
16025 (home-page "https://github.com/daler/gffutils")
16026 (synopsis "Tool for manipulation of GFF and GTF files")
16027 (description
16028 "python-gffutils is a Python package for working with and manipulating
16029 the GFF and GTF format files typically used for genomic annotations. The
16030 files are loaded into a SQLite database, allowing much more complex
16031 manipulation of hierarchical features (e.g., genes, transcripts, and exons)
16032 than is possible with plain-text methods alone.")
16033 (license license:expat))))
16034
16035 (define-public libsbml
16036 (package
16037 (name "libsbml")
16038 (version "5.18.0")
16039 (source (origin
16040 (method url-fetch)
16041 (uri (string-append "mirror://sourceforge/sbml/libsbml/"
16042 version "/stable/libSBML-"
16043 version "-core-src.tar.gz"))
16044 (sha256
16045 (base32
16046 "0slkagrk3nfi2qsksv6b1brj6zhx4bj4bkib2sdycvrcd10ql2lh"))))
16047 (build-system cmake-build-system)
16048 (arguments
16049 `(#:test-target "test"
16050 #:configure-flags
16051 (list "-DWITH_CHECK=ON"
16052 (string-append "-DLIBXML_LIBRARY="
16053 (assoc-ref %build-inputs "libxml2")
16054 "/lib/libxml2.so")
16055 (string-append "-DLIBXML_INCLUDE_DIR="
16056 (assoc-ref %build-inputs "libxml2")
16057 "/include/libxml2"))))
16058 (propagated-inputs
16059 `(("libxml2" ,libxml2)))
16060 (native-inputs
16061 `(("check" ,check)
16062 ("swig" ,swig)))
16063 (home-page "http://sbml.org/Software/libSBML")
16064 (synopsis "Process SBML files and data streams")
16065 (description "LibSBML is a library to help you read, write, manipulate,
16066 translate, and validate SBML files and data streams. The @dfn{Systems Biology
16067 Markup Language} (SBML) is an interchange format for computer models of
16068 biological processes. SBML is useful for models of metabolism, cell
16069 signaling, and more. It continues to be evolved and expanded by an
16070 international community.")
16071 (license license:lgpl2.1+)))
16072
16073 (define-public grocsvs
16074 ;; The last release is out of date and new features have been added.
16075 (let ((commit "ecd956a65093a0b2c41849050e4512d46fecea5d")
16076 (revision "1"))
16077 (package
16078 (name "grocsvs")
16079 (version (git-version "0.2.6.1" revision commit))
16080 (source (origin
16081 (method git-fetch)
16082 (uri (git-reference
16083 (url "https://github.com/grocsvs/grocsvs")
16084 (commit commit)))
16085 (file-name (git-file-name name version))
16086 (sha256
16087 (base32 "14505725gr7qxc17cxxf0k6lzcwmgi64pija4mwf29aw70qn35cc"))
16088 (patches (search-patches "grocsvs-dont-use-admiral.patch"))))
16089 (build-system python-build-system)
16090 (arguments
16091 `(#:tests? #f ; No test suite.
16092 #:python ,python-2)) ; Only python-2 supported.
16093 (inputs
16094 `(("python2-h5py" ,python2-h5py)
16095 ("python2-ipython-cluster-helper" ,python2-ipython-cluster-helper)
16096 ("python2-networkx" ,python2-networkx)
16097 ("python2-psutil" ,python2-psutil)
16098 ("python2-pandas" ,python2-pandas)
16099 ("python2-pybedtools" ,python2-pybedtools)
16100 ("python2-pyfaidx" ,python2-pyfaidx)
16101 ("python2-pygraphviz" ,python2-pygraphviz)
16102 ("python2-pysam" ,python2-pysam)
16103 ("python2-scipy" ,python2-scipy)))
16104 (home-page "https://github.com/grocsvs/grocsvs")
16105 (synopsis "Genome-wide reconstruction of complex structural variants")
16106 (description
16107 "@dfn{Genome-wide Reconstruction of Complex Structural Variants}
16108 (GROC-SVs) is a software pipeline for identifying large-scale structural
16109 variants, performing sequence assembly at the breakpoints, and reconstructing
16110 the complex structural variants using the long-fragment information from the
16111 10x Genomics platform.")
16112 (license license:expat))))