Merge remote-tracking branch 'origin/master' into staging
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org>
4 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
5 ;;; Copyright © 2019, 2020 Simon Tournier <zimon.toutoune@gmail.com>
6 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
7 ;;; Copyright © 2020 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
8 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
9 ;;;
10 ;;; This file is part of GNU Guix.
11 ;;;
12 ;;; GNU Guix is free software; you can redistribute it and/or modify it
13 ;;; under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 3 of the License, or (at
15 ;;; your option) any later version.
16 ;;;
17 ;;; GNU Guix is distributed in the hope that it will be useful, but
18 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25 (define-module (gnu packages bioconductor)
26 #:use-module ((guix licenses) #:prefix license:)
27 #:use-module (guix packages)
28 #:use-module (guix download)
29 #:use-module (guix git-download)
30 #:use-module (guix build-system r)
31 #:use-module (gnu packages)
32 #:use-module (gnu packages base)
33 #:use-module (gnu packages bioinformatics)
34 #:use-module (gnu packages cran)
35 #:use-module (gnu packages compression)
36 #:use-module (gnu packages gcc)
37 #:use-module (gnu packages graph)
38 #:use-module (gnu packages graphviz)
39 #:use-module (gnu packages haskell-xyz)
40 #:use-module (gnu packages image)
41 #:use-module (gnu packages maths)
42 #:use-module (gnu packages netpbm)
43 #:use-module (gnu packages perl)
44 #:use-module (gnu packages pkg-config)
45 #:use-module (gnu packages statistics)
46 #:use-module (gnu packages web)
47 #:use-module (gnu packages xml)
48 #:use-module (srfi srfi-1))
49
50 \f
51 ;;; Annotations
52
53 (define-public r-org-eck12-eg-db
54 (package
55 (name "r-org-eck12-eg-db")
56 (version "3.12.0")
57 (source
58 (origin
59 (method url-fetch)
60 (uri (bioconductor-uri "org.EcK12.eg.db" version 'annotation))
61 (sha256
62 (base32 "0c4p6jr83k0gm6pvn760yr8xf33wggrfcr6fg7a42a96bcf817gs"))))
63 (properties
64 `((upstream-name . "org.EcK12.eg.db")))
65 (build-system r-build-system)
66 (propagated-inputs
67 `(("r-annotationdbi" ,r-annotationdbi)))
68 (home-page "https://bioconductor.org/packages/org.EcK12.eg.db")
69 (synopsis "Genome wide annotation for E coli strain K12")
70 (description
71 "This package provides genome wide annotation for E coli strain K12,
72 primarily based on mapping using Entrez Gene identifiers. Entrez Gene is
73 National Center for Biotechnology Information (NCBI)’s database for
74 gene-specific information. Entrez Gene maintains records from genomes which
75 have been completely sequenced, which have an active research community to
76 submit gene-specific information, or which are scheduled for intense sequence
77 analysis.")
78 (license license:artistic2.0)))
79
80 (define-public r-reactome-db
81 (package
82 (name "r-reactome-db")
83 (version "1.70.0")
84 (source
85 (origin
86 (method url-fetch)
87 (uri (bioconductor-uri "reactome.db" version 'annotation))
88 (sha256
89 (base32
90 "05wc4fp0faq6h3kq5rwafnips043as31yq11mrjngfxvf5i10srg"))))
91 (properties `((upstream-name . "reactome.db")))
92 (build-system r-build-system)
93 (propagated-inputs
94 `(("r-annotationdbi" ,r-annotationdbi)))
95 (home-page "https://bioconductor.org/packages/reactome.db/")
96 (synopsis "Annotation maps for reactome")
97 (description
98 "This package provides a set of annotation maps for the REACTOME
99 database, assembled using data from REACTOME.")
100 (license license:cc-by4.0)))
101
102 (define-public r-bsgenome-celegans-ucsc-ce6
103 (package
104 (name "r-bsgenome-celegans-ucsc-ce6")
105 (version "1.4.0")
106 (source (origin
107 (method url-fetch)
108 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
109 version 'annotation))
110 (sha256
111 (base32
112 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
113 (properties
114 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
115 (build-system r-build-system)
116 (propagated-inputs
117 `(("r-bsgenome" ,r-bsgenome)))
118 (home-page
119 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
120 (synopsis "Full genome sequences for Worm")
121 (description
122 "This package provides full genome sequences for Caenorhabditis
123 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
124 objects.")
125 (license license:artistic2.0)))
126
127 (define-public r-bsgenome-celegans-ucsc-ce10
128 (package
129 (name "r-bsgenome-celegans-ucsc-ce10")
130 (version "1.4.0")
131 (source (origin
132 (method url-fetch)
133 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
134 version 'annotation))
135 (sha256
136 (base32
137 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
138 (properties
139 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
140 (build-system r-build-system)
141 (propagated-inputs
142 `(("r-bsgenome" ,r-bsgenome)))
143 (home-page
144 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
145 (synopsis "Full genome sequences for Worm")
146 (description
147 "This package provides full genome sequences for Caenorhabditis
148 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
149 objects.")
150 (license license:artistic2.0)))
151
152 (define-public r-bsgenome-dmelanogaster-ucsc-dm6
153 (package
154 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
155 (version "1.4.1")
156 (source (origin
157 (method url-fetch)
158 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
159 version 'annotation))
160 (sha256
161 (base32
162 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
163 (properties
164 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
165 (build-system r-build-system)
166 (propagated-inputs
167 `(("r-bsgenome" ,r-bsgenome)))
168 (home-page
169 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
170 (synopsis "Full genome sequences for Fly")
171 (description
172 "This package provides full genome sequences for Drosophila
173 melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
174 objects.")
175 (license license:artistic2.0)))
176
177 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
178 (package
179 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
180 (version "1.4.0")
181 (source (origin
182 (method url-fetch)
183 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
184 version 'annotation))
185 (sha256
186 (base32
187 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
188 (properties
189 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
190 (build-system r-build-system)
191 (propagated-inputs
192 `(("r-bsgenome" ,r-bsgenome)))
193 (home-page
194 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
195 (synopsis "Full genome sequences for Fly")
196 (description
197 "This package provides full genome sequences for Drosophila
198 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
199 Biostrings objects.")
200 (license license:artistic2.0)))
201
202 (define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
203 (package
204 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
205 (version "1.3.99")
206 (source (origin
207 (method url-fetch)
208 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
209 version 'annotation))
210 (sha256
211 (base32
212 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
213 (properties
214 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
215 (build-system r-build-system)
216 (propagated-inputs
217 `(("r-bsgenome" ,r-bsgenome)
218 ("r-bsgenome-dmelanogaster-ucsc-dm3"
219 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
220 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
221 (synopsis "Full masked genome sequences for Fly")
222 (description
223 "This package provides full masked genome sequences for Drosophila
224 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
225 Biostrings objects. The sequences are the same as in
226 BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
227 masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
228 intra-contig ambiguities (AMB mask), (3) the mask of repeats from
229 RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
230 Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
231 (license license:artistic2.0)))
232
233 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
234 (package
235 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
236 (version "0.99.1")
237 (source (origin
238 (method url-fetch)
239 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
240 version 'annotation))
241 (sha256
242 (base32
243 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
244 (properties
245 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
246 (build-system r-build-system)
247 (propagated-inputs
248 `(("r-bsgenome" ,r-bsgenome)))
249 (home-page
250 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
251 (synopsis "Full genome sequences for Homo sapiens")
252 (description
253 "This package provides full genome sequences for Homo sapiens from
254 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
255 (license license:artistic2.0)))
256
257 (define-public r-bsgenome-hsapiens-ncbi-grch38
258 (package
259 (name "r-bsgenome-hsapiens-ncbi-grch38")
260 (version "1.3.1000")
261 (source
262 (origin
263 (method url-fetch)
264 (uri (bioconductor-uri "BSgenome.Hsapiens.NCBI.GRCh38"
265 version 'annotation))
266 (sha256
267 (base32
268 "0y75qdq578fh6420vbvsbwmdw8jvr3g06qli2h3vj3pxmjykh9c1"))))
269 (properties `((upstream-name . "BSgenome.Hsapiens.NCBI.GRCh38")))
270 (build-system r-build-system)
271 (propagated-inputs `(("r-bsgenome" ,r-bsgenome)))
272 (home-page
273 "https://bioconductor.org/packages/release/data/annotation/html/\
274 BSgenome.Hsapiens.NCBI.GRCh38.html")
275 (synopsis "Full genome sequences for Homo sapiens (GRCh38)")
276 (description
277 "This package provides full genome sequences for Homo sapiens (Human) as
278 provided by NCBI (GRCh38, 2013-12-17) and stored in Biostrings objects.")
279 (license license:artistic2.0)))
280
281 (define-public r-bsgenome-hsapiens-ucsc-hg19-masked
282 (package
283 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
284 (version "1.3.99")
285 (source (origin
286 (method url-fetch)
287 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
288 version 'annotation))
289 (sha256
290 (base32
291 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
292 (properties
293 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
294 (build-system r-build-system)
295 (propagated-inputs
296 `(("r-bsgenome" ,r-bsgenome)
297 ("r-bsgenome-hsapiens-ucsc-hg19"
298 ,r-bsgenome-hsapiens-ucsc-hg19)))
299 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
300 (synopsis "Full masked genome sequences for Homo sapiens")
301 (description
302 "This package provides full genome sequences for Homo sapiens (Human) as
303 provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
304 sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
305 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
306 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
307 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
308 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
309 default.")
310 (license license:artistic2.0)))
311
312 (define-public r-bsgenome-mmusculus-ucsc-mm9
313 (package
314 (name "r-bsgenome-mmusculus-ucsc-mm9")
315 (version "1.4.0")
316 (source (origin
317 (method url-fetch)
318 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
319 version 'annotation))
320 (sha256
321 (base32
322 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
323 (properties
324 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
325 (build-system r-build-system)
326 (propagated-inputs
327 `(("r-bsgenome" ,r-bsgenome)))
328 (home-page
329 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
330 (synopsis "Full genome sequences for Mouse")
331 (description
332 "This package provides full genome sequences for Mus musculus (Mouse) as
333 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
334 (license license:artistic2.0)))
335
336 (define-public r-bsgenome-mmusculus-ucsc-mm9-masked
337 (package
338 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
339 (version "1.3.99")
340 (source (origin
341 (method url-fetch)
342 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
343 version 'annotation))
344 (sha256
345 (base32
346 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
347 (properties
348 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
349 (build-system r-build-system)
350 (propagated-inputs
351 `(("r-bsgenome" ,r-bsgenome)
352 ("r-bsgenome-mmusculus-ucsc-mm9"
353 ,r-bsgenome-mmusculus-ucsc-mm9)))
354 (home-page "https://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
355 (synopsis "Full masked genome sequences for Mouse")
356 (description
357 "This package provides full genome sequences for Mus musculus (Mouse) as
358 provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
359 sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
360 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
361 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
362 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
363 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
364 default." )
365 (license license:artistic2.0)))
366
367 (define-public r-bsgenome-mmusculus-ucsc-mm10
368 (package
369 (name "r-bsgenome-mmusculus-ucsc-mm10")
370 (version "1.4.0")
371 (source (origin
372 (method url-fetch)
373 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
374 version 'annotation))
375 (sha256
376 (base32
377 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
378 (properties
379 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
380 (build-system r-build-system)
381 (propagated-inputs
382 `(("r-bsgenome" ,r-bsgenome)))
383 (home-page
384 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
385 (synopsis "Full genome sequences for Mouse")
386 (description
387 "This package provides full genome sequences for Mus
388 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
389 in Biostrings objects.")
390 (license license:artistic2.0)))
391
392 (define-public r-homo-sapiens
393 (package
394 (name "r-homo-sapiens")
395 (version "1.3.1")
396 (source (origin
397 (method url-fetch)
398 (uri (bioconductor-uri "Homo.sapiens" version 'annotation))
399 (sha256
400 (base32
401 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
402 (properties
403 `((upstream-name . "Homo.sapiens")))
404 (build-system r-build-system)
405 (propagated-inputs
406 `(("r-genomicfeatures" ,r-genomicfeatures)
407 ("r-go-db" ,r-go-db)
408 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
409 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
410 ("r-organismdbi" ,r-organismdbi)
411 ("r-annotationdbi" ,r-annotationdbi)))
412 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
413 (synopsis "Annotation package for the Homo.sapiens object")
414 (description
415 "This package contains the Homo.sapiens object to access data from
416 several related annotation packages.")
417 (license license:artistic2.0)))
418
419 (define-public r-org-ce-eg-db
420 (package
421 (name "r-org-ce-eg-db")
422 (version "3.7.0")
423 (source (origin
424 (method url-fetch)
425 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
426 (sha256
427 (base32
428 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
429 (properties
430 `((upstream-name . "org.Ce.eg.db")))
431 (build-system r-build-system)
432 (propagated-inputs
433 `(("r-annotationdbi" ,r-annotationdbi)))
434 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
435 (synopsis "Genome wide annotation for Worm")
436 (description
437 "This package provides mappings from Entrez gene identifiers to various
438 annotations for the genome of the model worm Caenorhabditis elegans.")
439 (license license:artistic2.0)))
440
441 (define-public r-org-dm-eg-db
442 (package
443 (name "r-org-dm-eg-db")
444 (version "3.7.0")
445 (source (origin
446 (method url-fetch)
447 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
448 (sha256
449 (base32
450 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
451 (properties
452 `((upstream-name . "org.Dm.eg.db")))
453 (build-system r-build-system)
454 (propagated-inputs
455 `(("r-annotationdbi" ,r-annotationdbi)))
456 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
457 (synopsis "Genome wide annotation for Fly")
458 (description
459 "This package provides mappings from Entrez gene identifiers to various
460 annotations for the genome of the model fruit fly Drosophila melanogaster.")
461 (license license:artistic2.0)))
462
463 (define-public r-org-dr-eg-db
464 (package
465 (name "r-org-dr-eg-db")
466 (version "3.7.0")
467 (source (origin
468 (method url-fetch)
469 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
470 (sha256
471 (base32
472 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
473 (properties
474 `((upstream-name . "org.Dr.eg.db")))
475 (build-system r-build-system)
476 (propagated-inputs
477 `(("r-annotationdbi" ,r-annotationdbi)))
478 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
479 (synopsis "Annotation for Zebrafish")
480 (description
481 "This package provides genome wide annotations for Zebrafish, primarily
482 based on mapping using Entrez Gene identifiers.")
483 (license license:artistic2.0)))
484
485 (define-public r-org-hs-eg-db
486 (package
487 (name "r-org-hs-eg-db")
488 (version "3.7.0")
489 (source (origin
490 (method url-fetch)
491 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
492 (sha256
493 (base32
494 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
495 (properties
496 `((upstream-name . "org.Hs.eg.db")))
497 (build-system r-build-system)
498 (propagated-inputs
499 `(("r-annotationdbi" ,r-annotationdbi)))
500 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
501 (synopsis "Genome wide annotation for Human")
502 (description
503 "This package contains genome-wide annotations for Human, primarily based
504 on mapping using Entrez Gene identifiers.")
505 (license license:artistic2.0)))
506
507 (define-public r-org-mm-eg-db
508 (package
509 (name "r-org-mm-eg-db")
510 (version "3.7.0")
511 (source (origin
512 (method url-fetch)
513 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
514 (sha256
515 (base32
516 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
517 (properties
518 `((upstream-name . "org.Mm.eg.db")))
519 (build-system r-build-system)
520 (propagated-inputs
521 `(("r-annotationdbi" ,r-annotationdbi)))
522 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
523 (synopsis "Genome wide annotation for Mouse")
524 (description
525 "This package provides mappings from Entrez gene identifiers to various
526 annotations for the genome of the model mouse Mus musculus.")
527 (license license:artistic2.0)))
528
529 (define-public r-bsgenome-hsapiens-ucsc-hg19
530 (package
531 (name "r-bsgenome-hsapiens-ucsc-hg19")
532 (version "1.4.0")
533 (source (origin
534 (method url-fetch)
535 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
536 version 'annotation))
537 (sha256
538 (base32
539 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
540 (properties
541 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
542 (build-system r-build-system)
543 (propagated-inputs
544 `(("r-bsgenome" ,r-bsgenome)))
545 (home-page
546 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
547 (synopsis "Full genome sequences for Homo sapiens")
548 (description
549 "This package provides full genome sequences for Homo sapiens as provided
550 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
551 (license license:artistic2.0)))
552
553 (define-public r-bsgenome-hsapiens-ucsc-hg38
554 (package
555 (name "r-bsgenome-hsapiens-ucsc-hg38")
556 (version "1.4.1")
557 (source (origin
558 (method url-fetch)
559 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg38"
560 version 'annotation))
561 (sha256
562 (base32
563 "1ql08pvi4vv0ynvg4qs9kysw1c7s3crkgin6zxvgzqk6fray9mvi"))))
564 (properties
565 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg38")))
566 (build-system r-build-system)
567 (propagated-inputs
568 `(("r-bsgenome" ,r-bsgenome)))
569 (home-page
570 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg38/")
571 (synopsis "Full genome sequences for Homo sapiens")
572 (description
573 "This package provides full genome sequences for Homo sapiens (Human)
574 as provided by UCSC (hg38, Dec. 2013) and stored in Biostrings objects.")
575 (license license:artistic2.0)))
576
577 (define-public r-ensdb-hsapiens-v75
578 (package
579 (name "r-ensdb-hsapiens-v75")
580 (version "2.99.0")
581 (source
582 (origin
583 (method url-fetch)
584 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
585 (sha256
586 (base32
587 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
588 (properties
589 `((upstream-name . "EnsDb.Hsapiens.v75")))
590 (build-system r-build-system)
591 (propagated-inputs
592 `(("r-ensembldb" ,r-ensembldb)))
593 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
594 (synopsis "Ensembl based annotation package")
595 (description
596 "This package exposes an annotation database generated from Ensembl.")
597 (license license:artistic2.0)))
598
599 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
600 (package
601 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
602 (version "3.2.2")
603 (source (origin
604 (method url-fetch)
605 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
606 version 'annotation))
607 (sha256
608 (base32
609 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
610 (properties
611 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
612 (build-system r-build-system)
613 (propagated-inputs
614 `(("r-genomicfeatures" ,r-genomicfeatures)))
615 (home-page
616 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
617 (synopsis "Annotation package for human genome in TxDb format")
618 (description
619 "This package provides an annotation database of Homo sapiens genome
620 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
621 track. The database is exposed as a @code{TxDb} object.")
622 (license license:artistic2.0)))
623
624 (define-public r-txdb-hsapiens-ucsc-hg38-knowngene
625 (package
626 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
627 (version "3.4.6")
628 (source (origin
629 (method url-fetch)
630 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
631 version 'annotation))
632 (sha256
633 (base32
634 "12j7rri9r129v9w1yiqadg952dx462dh092sxif3r5kk8l7bxkn9"))))
635 (properties
636 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
637 (build-system r-build-system)
638 (propagated-inputs
639 `(("r-genomicfeatures" ,r-genomicfeatures)))
640 (home-page
641 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
642 (synopsis "Annotation package for human genome in TxDb format")
643 (description
644 "This package provides an annotation database of Homo sapiens genome
645 data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
646 track. The database is exposed as a @code{TxDb} object.")
647 (license license:artistic2.0)))
648
649 (define-public r-txdb-mmusculus-ucsc-mm9-knowngene
650 (package
651 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
652 (version "3.2.2")
653 (source (origin
654 (method url-fetch)
655 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
656 version 'annotation))
657 (sha256
658 (base32
659 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
660 (properties
661 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
662 (build-system r-build-system)
663 (propagated-inputs
664 `(("r-genomicfeatures" ,r-genomicfeatures)
665 ("r-annotationdbi" ,r-annotationdbi)))
666 (home-page
667 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
668 (synopsis "Annotation package for mouse genome in TxDb format")
669 (description
670 "This package provides an annotation database of Mouse genome data. It
671 is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
672 database is exposed as a @code{TxDb} object.")
673 (license license:artistic2.0)))
674
675 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
676 (package
677 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
678 (version "3.10.0")
679 (source (origin
680 (method url-fetch)
681 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
682 version 'annotation))
683 (sha256
684 (base32
685 "0xs9npnhbwll7p62hibs02y4ac23jchdcr25i6a7qwq1kms82qk9"))))
686 (properties
687 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
688 (build-system r-build-system)
689 (propagated-inputs
690 `(("r-bsgenome" ,r-bsgenome)
691 ("r-genomicfeatures" ,r-genomicfeatures)
692 ("r-annotationdbi" ,r-annotationdbi)))
693 (home-page
694 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
695 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
696 (description
697 "This package loads a TxDb object, which is an R interface to
698 prefabricated databases contained in this package. This package provides
699 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
700 based on the knownGene track.")
701 (license license:artistic2.0)))
702
703 (define-public r-txdb-celegans-ucsc-ce6-ensgene
704 (package
705 (name "r-txdb-celegans-ucsc-ce6-ensgene")
706 (version "3.2.2")
707 (source
708 (origin
709 (method url-fetch)
710 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
711 version 'annotation))
712 (sha256
713 (base32
714 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
715 (properties
716 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
717 (build-system r-build-system)
718 (propagated-inputs
719 `(("r-annotationdbi" ,r-annotationdbi)
720 ("r-genomicfeatures" ,r-genomicfeatures)))
721 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
722 (synopsis "Annotation package for C elegans TxDb objects")
723 (description
724 "This package exposes a C elegans annotation database generated from UCSC
725 by exposing these as TxDb objects.")
726 (license license:artistic2.0)))
727
728 (define-public r-fdb-infiniummethylation-hg19
729 (package
730 (name "r-fdb-infiniummethylation-hg19")
731 (version "2.2.0")
732 (source (origin
733 (method url-fetch)
734 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
735 version 'annotation))
736 (sha256
737 (base32
738 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
739 (properties
740 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
741 (build-system r-build-system)
742 (propagated-inputs
743 `(("r-biostrings" ,r-biostrings)
744 ("r-genomicfeatures" ,r-genomicfeatures)
745 ("r-annotationdbi" ,r-annotationdbi)
746 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
747 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
748 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
749 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
750 (description
751 "This is an annotation package for Illumina Infinium DNA methylation
752 probes. It contains the compiled HumanMethylation27 and HumanMethylation450
753 annotations.")
754 (license license:artistic2.0)))
755
756 (define-public r-illuminahumanmethylationepicmanifest
757 (package
758 (name "r-illuminahumanmethylationepicmanifest")
759 (version "0.3.0")
760 (source (origin
761 (method url-fetch)
762 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
763 version 'annotation))
764 (sha256
765 (base32
766 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
767 (properties
768 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
769 (build-system r-build-system)
770 (propagated-inputs
771 `(("r-minfi" ,r-minfi)))
772 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
773 (synopsis "Manifest for Illumina's EPIC methylation arrays")
774 (description
775 "This is a manifest package for Illumina's EPIC methylation arrays.")
776 (license license:artistic2.0)))
777
778 (define-public r-do-db
779 (package
780 (name "r-do-db")
781 (version "2.9")
782 (source (origin
783 (method url-fetch)
784 (uri (bioconductor-uri "DO.db" version 'annotation))
785 (sha256
786 (base32
787 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
788 (properties
789 `((upstream-name . "DO.db")))
790 (build-system r-build-system)
791 (propagated-inputs
792 `(("r-annotationdbi" ,r-annotationdbi)))
793 (home-page "https://www.bioconductor.org/packages/DO.db/")
794 (synopsis "Annotation maps describing the entire Disease Ontology")
795 (description
796 "This package provides a set of annotation maps describing the entire
797 Disease Ontology.")
798 (license license:artistic2.0)))
799
800 (define-public r-pfam-db
801 (package
802 (name "r-pfam-db")
803 (version "3.8.2")
804 (source
805 (origin
806 (method url-fetch)
807 (uri (bioconductor-uri "PFAM.db" version 'annotation))
808 (sha256
809 (base32
810 "0rn1arzzcniy3yyc4yc44vn40g0cqss37dhwnvsgxpfayqq1k59s"))))
811 (properties `((upstream-name . "PFAM.db")))
812 (build-system r-build-system)
813 (propagated-inputs
814 `(("r-annotationdbi" ,r-annotationdbi)))
815 (home-page "https://bioconductor.org/packages/PFAM.db")
816 (synopsis "Set of protein ID mappings for PFAM")
817 (description
818 "This package provides a set of protein ID mappings for PFAM, assembled
819 using data from public repositories.")
820 (license license:artistic2.0)))
821
822 (define-public r-phastcons100way-ucsc-hg19
823 (package
824 (name "r-phastcons100way-ucsc-hg19")
825 (version "3.7.2")
826 (source
827 (origin
828 (method url-fetch)
829 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
830 version 'annotation))
831 (sha256
832 (base32
833 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
834 (properties
835 `((upstream-name . "phastCons100way.UCSC.hg19")))
836 (build-system r-build-system)
837 (propagated-inputs
838 `(("r-bsgenome" ,r-bsgenome)
839 ("r-genomeinfodb" ,r-genomeinfodb)
840 ("r-genomicranges" ,r-genomicranges)
841 ("r-genomicscores" ,r-genomicscores)
842 ("r-iranges" ,r-iranges)
843 ("r-s4vectors" ,r-s4vectors)))
844 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
845 (synopsis "UCSC phastCons conservation scores for hg19")
846 (description
847 "This package provides UCSC phastCons conservation scores for the human
848 genome (hg19) calculated from multiple alignments with other 99 vertebrate
849 species.")
850 (license license:artistic2.0)))
851
852 \f
853 ;;; Experiment data
854
855 (define-public r-abadata
856 (package
857 (name "r-abadata")
858 (version "1.12.0")
859 (source (origin
860 (method url-fetch)
861 (uri (bioconductor-uri "ABAData" version 'experiment))
862 (sha256
863 (base32
864 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
865 (properties
866 `((upstream-name . "ABAData")))
867 (build-system r-build-system)
868 (propagated-inputs
869 `(("r-annotationdbi" ,r-annotationdbi)))
870 (home-page "https://www.bioconductor.org/packages/ABAData/")
871 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
872 (description
873 "This package provides the data for the gene expression enrichment
874 analysis conducted in the package ABAEnrichment. The package includes three
875 datasets which are derived from the Allen Brain Atlas:
876
877 @enumerate
878 @item Gene expression data from Human Brain (adults) averaged across donors,
879 @item Gene expression data from the Developing Human Brain pooled into five
880 age categories and averaged across donors, and
881 @item a developmental effect score based on the Developing Human Brain
882 expression data.
883 @end enumerate
884
885 All datasets are restricted to protein coding genes.")
886 (license license:gpl2+)))
887
888 (define-public r-arrmdata
889 (package
890 (name "r-arrmdata")
891 (version "1.18.0")
892 (source (origin
893 (method url-fetch)
894 (uri (bioconductor-uri "ARRmData" version 'experiment))
895 (sha256
896 (base32
897 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
898 (properties
899 `((upstream-name . "ARRmData")))
900 (build-system r-build-system)
901 (home-page "https://www.bioconductor.org/packages/ARRmData/")
902 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
903 (description
904 "This package provides raw beta values from 36 samples across 3 groups
905 from Illumina 450k methylation arrays.")
906 (license license:artistic2.0)))
907
908 (define-public r-genelendatabase
909 (package
910 (name "r-genelendatabase")
911 (version "1.18.0")
912 (source
913 (origin
914 (method url-fetch)
915 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
916 (sha256
917 (base32
918 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
919 (properties
920 `((upstream-name . "geneLenDataBase")))
921 (build-system r-build-system)
922 (propagated-inputs
923 `(("r-rtracklayer" ,r-rtracklayer)
924 ("r-genomicfeatures" ,r-genomicfeatures)))
925 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
926 (synopsis "Lengths of mRNA transcripts for a number of genomes")
927 (description
928 "This package provides the lengths of mRNA transcripts for a number of
929 genomes and gene ID formats, largely based on the UCSC table browser.")
930 (license license:lgpl2.0+)))
931
932 (define-public r-pasilla
933 (package
934 (name "r-pasilla")
935 (version "1.14.0")
936 (source (origin
937 (method url-fetch)
938 (uri (string-append
939 "http://bioconductor.org/packages/release/data/experiment"
940 "/src/contrib/pasilla_" version ".tar.gz"))
941 (sha256
942 (base32
943 "0h124i2fb2lbj2k48zzf1n7ldqa471bs26fbd9vw50299aqx28x0"))))
944 (build-system r-build-system)
945 (propagated-inputs
946 `(("r-biocstyle" ,r-biocstyle)
947 ("r-dexseq" ,r-dexseq)
948 ("r-knitr" ,r-knitr)
949 ("r-rmarkdown" ,r-rmarkdown)))
950 (home-page "https://www.bioconductor.org/packages/pasilla/")
951 (synopsis "Data package with per-exon and per-gene read counts")
952 (description "This package provides per-exon and per-gene read counts
953 computed for selected genes from RNA-seq data that were presented in the
954 article 'Conservation of an RNA regulatory map between Drosophila and mammals'
955 by Brooks et al., Genome Research 2011.")
956 (license license:lgpl2.1+)))
957
958 (define-public r-hsmmsinglecell
959 (package
960 (name "r-hsmmsinglecell")
961 (version "1.2.0")
962 (source (origin
963 (method url-fetch)
964 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
965 (sha256
966 (base32
967 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
968 (properties
969 `((upstream-name . "HSMMSingleCell")))
970 (build-system r-build-system)
971 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
972 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
973 (description
974 "Skeletal myoblasts undergo a well-characterized sequence of
975 morphological and transcriptional changes during differentiation. In this
976 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
977 under high mitogen conditions (GM) and then differentiated by switching to
978 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
979 hundred cells taken over a time-course of serum-induced differentiation.
980 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
981 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
982 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
983 which were then sequenced to a depth of ~4 million reads per library,
984 resulting in a complete gene expression profile for each cell.")
985 (license license:artistic2.0)))
986
987 (define-public r-all
988 (package
989 (name "r-all")
990 (version "1.26.0")
991 (source (origin
992 (method url-fetch)
993 (uri (bioconductor-uri "ALL" version 'experiment))
994 (sha256
995 (base32
996 "1z7kpjw4ndj6fkxwvhqf3gawhrn26ksrlns7j2c78qzxqmjndik9"))))
997 (properties `((upstream-name . "ALL")))
998 (build-system r-build-system)
999 (propagated-inputs
1000 `(("r-biobase" ,r-biobase)))
1001 (home-page "https://bioconductor.org/packages/ALL")
1002 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
1003 (description
1004 "The data consist of microarrays from 128 different individuals with
1005 @dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
1006 are available. The data have been normalized (using rma) and it is the
1007 jointly normalized data that are available here. The data are presented in
1008 the form of an @code{exprSet} object.")
1009 (license license:artistic2.0)))
1010
1011 (define-public r-affydata
1012 (package
1013 (name "r-affydata")
1014 (version "1.32.0")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (bioconductor-uri "affydata" version 'experiment))
1019 (sha256
1020 (base32
1021 "1l9qhmjqgbrdl9cmd74rlnvmvr6mslbmckb83n0211whp2i0b7h5"))))
1022 (properties `((upstream-name . "affydata")))
1023 (build-system r-build-system)
1024 (propagated-inputs
1025 `(("r-affy" ,r-affy)))
1026 (home-page "https://bioconductor.org/packages/affydata/")
1027 (synopsis "Affymetrix data for demonstration purposes")
1028 (description
1029 "This package provides example datasets that represent 'real world
1030 examples' of Affymetrix data, unlike the artificial examples included in the
1031 package @code{affy}.")
1032 (license license:gpl2+)))
1033
1034 (define-public r-gagedata
1035 (package
1036 (name "r-gagedata")
1037 (version "2.28.0")
1038 (source
1039 (origin
1040 (method url-fetch)
1041 (uri (bioconductor-uri "gageData" version 'experiment))
1042 (sha256
1043 (base32 "16lmnvmbykvbdgwyx7r2jc217gb9nidn81860v5kri99g97j4jdn"))))
1044 (properties `((upstream-name . "gageData")))
1045 (build-system r-build-system)
1046 (home-page "https://bioconductor.org/packages/gageData")
1047 (synopsis "Auxillary data for gage package")
1048 (description
1049 "This is a supportive data package for the software package @code{gage}.
1050 However, the data supplied here are also useful for gene set or pathway
1051 analysis or microarray data analysis in general. In this package, we provide
1052 two demo microarray dataset: GSE16873 (a breast cancer dataset from GEO) and
1053 BMP6 (originally published as an demo dataset for GAGE, also registered as
1054 GSE13604 in GEO). This package also includes commonly used gene set data based
1055 on KEGG pathways and GO terms for major research species, including human,
1056 mouse, rat and budding yeast. Mapping data between common gene IDs for budding
1057 yeast are also included.")
1058 (license license:gpl2+)))
1059
1060 (define-public r-curatedtcgadata
1061 (package
1062 (name "r-curatedtcgadata")
1063 (version "1.8.0")
1064 (source
1065 (origin
1066 (method url-fetch)
1067 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
1068 (sha256
1069 (base32
1070 "02y6cgihmsl9b4a9mmcdjjgjp06lpz04biyvxd3n5lk5gnqd9r3y"))))
1071 (properties
1072 `((upstream-name . "curatedTCGAData")))
1073 (build-system r-build-system)
1074 (propagated-inputs
1075 `(("r-annotationhub" ,r-annotationhub)
1076 ("r-experimenthub" ,r-experimenthub)
1077 ("r-hdf5array" ,r-hdf5array)
1078 ("r-multiassayexperiment" ,r-multiassayexperiment)
1079 ("r-s4vectors" ,r-s4vectors)
1080 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1081 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
1082 (synopsis "Curated data from The Cancer Genome Atlas")
1083 (description
1084 "This package provides publicly available data from The Cancer Genome
1085 Atlas (TCGA) as @code{MultiAssayExperiment} objects.
1086 @code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
1087 number, mutation, microRNA, protein, and others) with clinical / pathological
1088 data. It also links assay barcodes with patient identifiers, enabling
1089 harmonized subsetting of rows (features) and columns (patients / samples)
1090 across the entire multi-'omics experiment.")
1091 (license license:artistic2.0)))
1092
1093 \f
1094 ;;; Packages
1095
1096 (define-public r-biocversion
1097 (package
1098 (name "r-biocversion")
1099 (version "3.12.0")
1100 (source
1101 (origin
1102 (method url-fetch)
1103 (uri (bioconductor-uri "BiocVersion" version))
1104 (sha256
1105 (base32
1106 "1cj9swyf4zbkdq45bhw0kymh2aghkwimxjlfj5r2j7kdiyh6n3rk"))))
1107 (properties `((upstream-name . "BiocVersion")))
1108 (build-system r-build-system)
1109 (home-page "https://bioconductor.org/packages/BiocVersion/")
1110 (synopsis "Set the appropriate version of Bioconductor packages")
1111 (description
1112 "This package provides repository information for the appropriate version
1113 of Bioconductor.")
1114 (license license:artistic2.0)))
1115
1116 (define-public r-biocgenerics
1117 (package
1118 (name "r-biocgenerics")
1119 (version "0.36.0")
1120 (source (origin
1121 (method url-fetch)
1122 (uri (bioconductor-uri "BiocGenerics" version))
1123 (sha256
1124 (base32
1125 "1y9pgangz2f0n9v3zj8brz8bv7a1yjsncdnd5h1l7zv0c0j9fh9q"))))
1126 (properties
1127 `((upstream-name . "BiocGenerics")))
1128 (build-system r-build-system)
1129 (home-page "https://bioconductor.org/packages/BiocGenerics")
1130 (synopsis "S4 generic functions for Bioconductor")
1131 (description
1132 "This package provides S4 generic functions needed by many Bioconductor
1133 packages.")
1134 (license license:artistic2.0)))
1135
1136 (define-public r-coverageview
1137 (package
1138 (name "r-coverageview")
1139 (version "1.28.0")
1140 (source (origin
1141 (method url-fetch)
1142 (uri (bioconductor-uri "CoverageView" version))
1143 (sha256
1144 (base32
1145 "1k89gzqhd8ca8s9gk5bfzringnc5nayqbwzwwy35fls1cg96qmsj"))))
1146 (build-system r-build-system)
1147 (propagated-inputs
1148 `(("r-s4vectors" ,r-s4vectors)
1149 ("r-iranges" ,r-iranges)
1150 ("r-genomicranges" ,r-genomicranges)
1151 ("r-genomicalignments" ,r-genomicalignments)
1152 ("r-rtracklayer" ,r-rtracklayer)
1153 ("r-rsamtools" ,r-rsamtools)))
1154 (home-page "https://bioconductor.org/packages/CoverageView/")
1155 (synopsis "Coverage visualization package for R")
1156 (description "This package provides a framework for the visualization of
1157 genome coverage profiles. It can be used for ChIP-seq experiments, but it can
1158 be also used for genome-wide nucleosome positioning experiments or other
1159 experiment types where it is important to have a framework in order to inspect
1160 how the coverage distributed across the genome.")
1161 (license license:artistic2.0)))
1162
1163 (define-public r-cummerbund
1164 (package
1165 (name "r-cummerbund")
1166 (version "2.32.0")
1167 (source (origin
1168 (method url-fetch)
1169 (uri (bioconductor-uri "cummeRbund" version))
1170 (sha256
1171 (base32
1172 "1x7rby50api1c66al6a0i92q82ydjmh3h8l2k7hj0ffpn8c5pdgj"))))
1173 (build-system r-build-system)
1174 (propagated-inputs
1175 `(("r-biobase" ,r-biobase)
1176 ("r-biocgenerics" ,r-biocgenerics)
1177 ("r-fastcluster" ,r-fastcluster)
1178 ("r-ggplot2" ,r-ggplot2)
1179 ("r-gviz" ,r-gviz)
1180 ("r-plyr" ,r-plyr)
1181 ("r-reshape2" ,r-reshape2)
1182 ("r-rsqlite" ,r-rsqlite)
1183 ("r-rtracklayer" ,r-rtracklayer)
1184 ("r-s4vectors" ,r-s4vectors)))
1185 (home-page "https://bioconductor.org/packages/cummeRbund/")
1186 (synopsis "Analyze Cufflinks high-throughput sequencing data")
1187 (description "This package allows for persistent storage, access,
1188 exploration, and manipulation of Cufflinks high-throughput sequencing
1189 data. In addition, provides numerous plotting functions for commonly
1190 used visualizations.")
1191 (license license:artistic2.0)))
1192
1193 (define-public r-bluster
1194 (package
1195 (name "r-bluster")
1196 (version "1.0.0")
1197 (source (origin
1198 (method url-fetch)
1199 (uri (bioconductor-uri "bluster" version))
1200 (sha256
1201 (base32
1202 "0izrf82m5znyrgai5y5jss4k2brabh4ajxdvnlwwc92l5bw7jp61"))))
1203 (properties `((upstream-name . "bluster")))
1204 (build-system r-build-system)
1205 (propagated-inputs
1206 `(("r-biocneighbors" ,r-biocneighbors)
1207 ("r-biocparallel" ,r-biocparallel)
1208 ("r-igraph" ,r-igraph)
1209 ("r-matrix" ,r-matrix)
1210 ("r-rcpp" ,r-rcpp)
1211 ("r-s4vectors" ,r-s4vectors)))
1212 (native-inputs
1213 `(("r-knitr" ,r-knitr)))
1214 (home-page "https://bioconductor.org/packages/bluster")
1215 (synopsis "Clustering algorithms for Bioconductor")
1216 (description"This package wraps common clustering algorithms in an easily
1217 extended S4 framework. Backends are implemented for hierarchical, k-means
1218 and graph-based clustering. Several utilities are also provided to compare
1219 and evaluate clustering results.")
1220 (license license:gpl3)))
1221
1222 (define-public r-ideoviz
1223 (package
1224 (name "r-ideoviz")
1225 (version "1.26.0")
1226 (source (origin
1227 (method url-fetch)
1228 (uri (bioconductor-uri "IdeoViz" version))
1229 (sha256
1230 (base32
1231 "1k5c0skr6pvpcvkak9f0a088w5wsx4fl3jb9a76gyyni4nkj7djq"))))
1232 (build-system r-build-system)
1233 (propagated-inputs
1234 `(("r-biobase" ,r-biobase)
1235 ("r-iranges" ,r-iranges)
1236 ("r-genomicranges" ,r-genomicranges)
1237 ("r-rcolorbrewer" ,r-rcolorbrewer)
1238 ("r-rtracklayer" ,r-rtracklayer)
1239 ("r-genomeinfodb" ,r-genomeinfodb)))
1240 (home-page "https://bioconductor.org/packages/IdeoViz/")
1241 (synopsis "Plots data along a chromosomal ideogram")
1242 (description "This package provides functions to plot data associated with
1243 arbitrary genomic intervals along chromosomal ideogram.")
1244 (license license:gpl2)))
1245
1246 ;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
1247 ;; from Bioconductor.
1248 (define-public r-deconstructsigs
1249 (package
1250 (name "r-deconstructsigs")
1251 (version "1.8.0")
1252 (source (origin
1253 (method url-fetch)
1254 (uri (cran-uri "deconstructSigs" version))
1255 (sha256
1256 (base32
1257 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
1258 (properties
1259 `((upstream-name . "deconstructSigs")))
1260 (build-system r-build-system)
1261 (propagated-inputs
1262 `(("r-bsgenome" ,r-bsgenome)
1263 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1264 ("r-genomeinfodb" ,r-genomeinfodb)
1265 ("r-reshape2" ,r-reshape2)))
1266 (home-page "https://github.com/raerose01/deconstructSigs")
1267 (synopsis "Identifies signatures present in a tumor sample")
1268 (description "This package takes sample information in the form of the
1269 fraction of mutations in each of 96 trinucleotide contexts and identifies
1270 the weighted combination of published signatures that, when summed, most
1271 closely reconstructs the mutational profile.")
1272 (license license:gpl2+)))
1273
1274 ;; This is a CRAN package, but it depends on Bioconductor packages.
1275 (define-public r-nmf
1276 (package
1277 (name "r-nmf")
1278 (version "0.23.0")
1279 (source
1280 (origin
1281 (method url-fetch)
1282 (uri (cran-uri "NMF" version))
1283 (sha256
1284 (base32
1285 "0ls7q9yc9l1z10jphq5a11wkfgcxc3gm3sfjj376zx3vnc0wl30g"))))
1286 (properties `((upstream-name . "NMF")))
1287 (build-system r-build-system)
1288 (propagated-inputs
1289 `(("r-cluster" ,r-cluster)
1290 ("r-biobase" ,r-biobase)
1291 ("r-biocmanager" ,r-biocmanager)
1292 ("r-bigmemory" ,r-bigmemory) ; suggested
1293 ("r-synchronicity" ,r-synchronicity) ; suggested
1294 ("r-colorspace" ,r-colorspace)
1295 ("r-digest" ,r-digest)
1296 ("r-doparallel" ,r-doparallel)
1297 ("r-foreach" ,r-foreach)
1298 ("r-ggplot2" ,r-ggplot2)
1299 ("r-gridbase" ,r-gridbase)
1300 ("r-pkgmaker" ,r-pkgmaker)
1301 ("r-rcolorbrewer" ,r-rcolorbrewer)
1302 ("r-registry" ,r-registry)
1303 ("r-reshape2" ,r-reshape2)
1304 ("r-rngtools" ,r-rngtools)
1305 ("r-stringr" ,r-stringr)))
1306 (native-inputs
1307 `(("r-knitr" ,r-knitr)))
1308 (home-page "http://renozao.github.io/NMF")
1309 (synopsis "Algorithms and framework for nonnegative matrix factorization")
1310 (description
1311 "This package provides a framework to perform Non-negative Matrix
1312 Factorization (NMF). The package implements a set of already published
1313 algorithms and seeding methods, and provides a framework to test, develop and
1314 plug new or custom algorithms. Most of the built-in algorithms have been
1315 optimized in C++, and the main interface function provides an easy way of
1316 performing parallel computations on multicore machines.")
1317 (license license:gpl2+)))
1318
1319 (define-public r-affycomp
1320 (package
1321 (name "r-affycomp")
1322 (version "1.66.0")
1323 (source
1324 (origin
1325 (method url-fetch)
1326 (uri (bioconductor-uri "affycomp" version))
1327 (sha256
1328 (base32
1329 "106gz4rami04r0ffc7rxkrv92s3yrcnlqnyykd5s8lrkndbihrpk"))))
1330 (properties `((upstream-name . "affycomp")))
1331 (build-system r-build-system)
1332 (propagated-inputs `(("r-biobase" ,r-biobase)))
1333 (home-page "https://bioconductor.org/packages/affycomp/")
1334 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
1335 (description
1336 "The package contains functions that can be used to compare expression
1337 measures for Affymetrix Oligonucleotide Arrays.")
1338 (license license:gpl2+)))
1339
1340 (define-public r-affycompatible
1341 (package
1342 (name "r-affycompatible")
1343 (version "1.50.0")
1344 (source
1345 (origin
1346 (method url-fetch)
1347 (uri (bioconductor-uri "AffyCompatible" version))
1348 (sha256
1349 (base32
1350 "0pcs51miy45bky26i1d4iarbjh569gssb5g4fr26bzgjmq19yl7x"))))
1351 (properties
1352 `((upstream-name . "AffyCompatible")))
1353 (build-system r-build-system)
1354 (propagated-inputs
1355 `(("r-biostrings" ,r-biostrings)
1356 ("r-rcurl" ,r-rcurl)
1357 ("r-xml" ,r-xml)))
1358 (home-page "https://bioconductor.org/packages/AffyCompatible/")
1359 (synopsis "Work with Affymetrix GeneChip files")
1360 (description
1361 "This package provides an interface to Affymetrix chip annotation and
1362 sample attribute files. The package allows an easy way for users to download
1363 and manage local data bases of Affynmetrix NetAffx annotation files. It also
1364 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
1365 Command Console} (AGCC)-compatible sample annotation files.")
1366 (license license:artistic2.0)))
1367
1368 (define-public r-affycontam
1369 (package
1370 (name "r-affycontam")
1371 (version "1.48.0")
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (bioconductor-uri "affyContam" version))
1376 (sha256
1377 (base32
1378 "0pi5fll5868sb80vb9kbymz6gkjv58f0abk6zwn407cnyjhr342b"))))
1379 (properties `((upstream-name . "affyContam")))
1380 (build-system r-build-system)
1381 (propagated-inputs
1382 `(("r-affy" ,r-affy)
1383 ("r-affydata" ,r-affydata)
1384 ("r-biobase" ,r-biobase)))
1385 (home-page "https://bioconductor.org/packages/affyContam/")
1386 (synopsis "Structured corruption of Affymetrix CEL file data")
1387 (description
1388 "Microarray quality assessment is a major concern of microarray analysts.
1389 This package provides some simple approaches to in silico creation of quality
1390 problems in CEL-level data to help evaluate performance of quality metrics.")
1391 (license license:artistic2.0)))
1392
1393 (define-public r-affycoretools
1394 (package
1395 (name "r-affycoretools")
1396 (version "1.62.0")
1397 (source
1398 (origin
1399 (method url-fetch)
1400 (uri (bioconductor-uri "affycoretools" version))
1401 (sha256
1402 (base32
1403 "0jacgwylg7wjw3xk3ga2sb1wkdklm5glamhbmqgvzm5kdjnl0rv0"))))
1404 (properties `((upstream-name . "affycoretools")))
1405 (build-system r-build-system)
1406 (propagated-inputs
1407 `(("r-affy" ,r-affy)
1408 ("r-annotationdbi" ,r-annotationdbi)
1409 ("r-biobase" ,r-biobase)
1410 ("r-biocgenerics" ,r-biocgenerics)
1411 ("r-dbi" ,r-dbi)
1412 ("r-edger" ,r-edger)
1413 ("r-gcrma" ,r-gcrma)
1414 ("r-glimma" ,r-glimma)
1415 ("r-ggplot2" ,r-ggplot2)
1416 ("r-gostats" ,r-gostats)
1417 ("r-gplots" ,r-gplots)
1418 ("r-hwriter" ,r-hwriter)
1419 ("r-lattice" ,r-lattice)
1420 ("r-limma" ,r-limma)
1421 ("r-oligoclasses" ,r-oligoclasses)
1422 ("r-reportingtools" ,r-reportingtools)
1423 ("r-rsqlite" ,r-rsqlite)
1424 ("r-s4vectors" ,r-s4vectors)
1425 ("r-xtable" ,r-xtable)))
1426 (native-inputs
1427 `(("r-knitr" ,r-knitr)))
1428 (home-page "https://bioconductor.org/packages/affycoretools/")
1429 (synopsis "Functions for analyses with Affymetrix GeneChips")
1430 (description
1431 "This package provides various wrapper functions that have been written
1432 to streamline the more common analyses that a Biostatistician might see.")
1433 (license license:artistic2.0)))
1434
1435 (define-public r-affxparser
1436 (package
1437 (name "r-affxparser")
1438 (version "1.62.0")
1439 (source
1440 (origin
1441 (method url-fetch)
1442 (uri (bioconductor-uri "affxparser" version))
1443 (sha256
1444 (base32
1445 "13h4iwskvgwgxid9f60gzb1zndgbhdlbn9ixv5waihy1jkcbn24p"))))
1446 (properties `((upstream-name . "affxparser")))
1447 (build-system r-build-system)
1448 (home-page "https://github.com/HenrikBengtsson/affxparser")
1449 (synopsis "Affymetrix File Parsing SDK")
1450 (description
1451 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
1452 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
1453 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
1454 are supported. Currently, there are methods for reading @dfn{chip definition
1455 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
1456 either in full or in part. For example, probe signals from a few probesets
1457 can be extracted very quickly from a set of CEL files into a convenient list
1458 structure.")
1459 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
1460 ;; under LGPLv2+.
1461 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
1462
1463 (define-public r-annotate
1464 (package
1465 (name "r-annotate")
1466 (version "1.68.0")
1467 (source
1468 (origin
1469 (method url-fetch)
1470 (uri (bioconductor-uri "annotate" version))
1471 (sha256
1472 (base32
1473 "1rql591x56532m8n4axdkfkhkbcsz5hfrf7271s0lmkvy84i7z6l"))))
1474 (build-system r-build-system)
1475 (propagated-inputs
1476 `(("r-annotationdbi" ,r-annotationdbi)
1477 ("r-biobase" ,r-biobase)
1478 ("r-biocgenerics" ,r-biocgenerics)
1479 ("r-dbi" ,r-dbi)
1480 ("r-httr" ,r-httr)
1481 ("r-xml" ,r-xml)
1482 ("r-xtable" ,r-xtable)))
1483 (home-page
1484 "https://bioconductor.org/packages/annotate")
1485 (synopsis "Annotation for microarrays")
1486 (description "This package provides R environments for the annotation of
1487 microarrays.")
1488 (license license:artistic2.0)))
1489
1490 (define-public r-hpar
1491 (package
1492 (name "r-hpar")
1493 (version "1.32.1")
1494 (source
1495 (origin
1496 (method url-fetch)
1497 (uri (bioconductor-uri "hpar" version))
1498 (sha256
1499 (base32
1500 "0h10b0fyblpsnxj60rpbk99z7snrkkb5jssmf0v27s6d445jq2zr"))))
1501 (build-system r-build-system)
1502 (native-inputs
1503 `(("r-knitr" ,r-knitr)))
1504 (home-page "https://bioconductor.org/packages/hpar/")
1505 (synopsis "Human Protein Atlas in R")
1506 (description "This package provides a simple interface to and data from
1507 the Human Protein Atlas project.")
1508 (license license:artistic2.0)))
1509
1510 (define-public r-regioner
1511 (package
1512 (name "r-regioner")
1513 (version "1.22.0")
1514 (source
1515 (origin
1516 (method url-fetch)
1517 (uri (bioconductor-uri "regioneR" version))
1518 (sha256
1519 (base32
1520 "0c2khfyrgy3y68cj6b07s91hplabbj70xwdgwrf2bsd9h6gknjdi"))))
1521 (properties `((upstream-name . "regioneR")))
1522 (build-system r-build-system)
1523 (propagated-inputs
1524 `(("r-biostrings" ,r-biostrings)
1525 ("r-bsgenome" ,r-bsgenome)
1526 ("r-genomeinfodb" ,r-genomeinfodb)
1527 ("r-genomicranges" ,r-genomicranges)
1528 ("r-iranges" ,r-iranges)
1529 ("r-memoise" ,r-memoise)
1530 ("r-rtracklayer" ,r-rtracklayer)
1531 ("r-s4vectors" ,r-s4vectors)))
1532 (native-inputs
1533 `(("r-knitr" ,r-knitr)))
1534 (home-page "https://bioconductor.org/packages/regioneR/")
1535 (synopsis "Association analysis of genomic regions")
1536 (description "This package offers a statistical framework based on
1537 customizable permutation tests to assess the association between genomic
1538 region sets and other genomic features.")
1539 (license license:artistic2.0)))
1540
1541 (define-public r-reportingtools
1542 (package
1543 (name "r-reportingtools")
1544 (version "2.30.0")
1545 (source
1546 (origin
1547 (method url-fetch)
1548 (uri (bioconductor-uri "ReportingTools" version))
1549 (sha256
1550 (base32
1551 "0gkshdhx44yjffqf1xmvik7j5hlhszp1n9ckanaws9ky3iia8j31"))))
1552 (properties
1553 `((upstream-name . "ReportingTools")))
1554 (build-system r-build-system)
1555 (propagated-inputs
1556 `(("r-annotate" ,r-annotate)
1557 ("r-annotationdbi" ,r-annotationdbi)
1558 ("r-biobase" ,r-biobase)
1559 ("r-biocgenerics" ,r-biocgenerics)
1560 ("r-category" ,r-category)
1561 ("r-deseq2" ,r-deseq2)
1562 ("r-edger" ,r-edger)
1563 ("r-ggbio" ,r-ggbio)
1564 ("r-ggplot2" ,r-ggplot2)
1565 ("r-gostats" ,r-gostats)
1566 ("r-gseabase" ,r-gseabase)
1567 ("r-hwriter" ,r-hwriter)
1568 ("r-iranges" ,r-iranges)
1569 ("r-knitr" ,r-knitr)
1570 ("r-lattice" ,r-lattice)
1571 ("r-limma" ,r-limma)
1572 ("r-pfam-db" ,r-pfam-db)
1573 ("r-r-utils" ,r-r-utils)
1574 ("r-xml" ,r-xml)))
1575 (native-inputs
1576 `(("r-knitr" ,r-knitr)))
1577 (home-page "https://bioconductor.org/packages/ReportingTools/")
1578 (synopsis "Tools for making reports in various formats")
1579 (description
1580 "The ReportingTools package enables users to easily display reports of
1581 analysis results generated from sources such as microarray and sequencing
1582 data. The package allows users to create HTML pages that may be viewed on a
1583 web browser, or in other formats. Users can generate tables with sortable and
1584 filterable columns, make and display plots, and link table entries to other
1585 data sources such as NCBI or larger plots within the HTML page. Using the
1586 package, users can also produce a table of contents page to link various
1587 reports together for a particular project that can be viewed in a web
1588 browser.")
1589 (license license:artistic2.0)))
1590
1591 (define-public r-geneplotter
1592 (package
1593 (name "r-geneplotter")
1594 (version "1.68.0")
1595 (source
1596 (origin
1597 (method url-fetch)
1598 (uri (bioconductor-uri "geneplotter" version))
1599 (sha256
1600 (base32
1601 "1f8nr60n1nig1gdy85wqdhpzxvp9r4chygxm8xpy882mdvfv6rqx"))))
1602 (build-system r-build-system)
1603 (propagated-inputs
1604 `(("r-annotate" ,r-annotate)
1605 ("r-annotationdbi" ,r-annotationdbi)
1606 ("r-biobase" ,r-biobase)
1607 ("r-biocgenerics" ,r-biocgenerics)
1608 ("r-lattice" ,r-lattice)
1609 ("r-rcolorbrewer" ,r-rcolorbrewer)))
1610 (home-page "https://bioconductor.org/packages/geneplotter")
1611 (synopsis "Graphics functions for genomic data")
1612 (description
1613 "This package provides functions for plotting genomic data.")
1614 (license license:artistic2.0)))
1615
1616 (define-public r-oligoclasses
1617 (package
1618 (name "r-oligoclasses")
1619 (version "1.52.0")
1620 (source
1621 (origin
1622 (method url-fetch)
1623 (uri (bioconductor-uri "oligoClasses" version))
1624 (sha256
1625 (base32
1626 "19p6h0cgnma5md5mm9bn6rxfhr0a9znljgdbvsqybms6asvh18gy"))))
1627 (properties `((upstream-name . "oligoClasses")))
1628 (build-system r-build-system)
1629 (propagated-inputs
1630 `(("r-affyio" ,r-affyio)
1631 ("r-biobase" ,r-biobase)
1632 ("r-biocgenerics" ,r-biocgenerics)
1633 ("r-biocmanager" ,r-biocmanager)
1634 ("r-biostrings" ,r-biostrings)
1635 ("r-dbi" ,r-dbi)
1636 ("r-ff" ,r-ff)
1637 ("r-foreach" ,r-foreach)
1638 ("r-genomicranges" ,r-genomicranges)
1639 ("r-iranges" ,r-iranges)
1640 ("r-rsqlite" ,r-rsqlite)
1641 ("r-s4vectors" ,r-s4vectors)
1642 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1643 (home-page "https://bioconductor.org/packages/oligoClasses/")
1644 (synopsis "Classes for high-throughput arrays")
1645 (description
1646 "This package contains class definitions, validity checks, and
1647 initialization methods for classes used by the @code{oligo} and @code{crlmm}
1648 packages.")
1649 (license license:gpl2+)))
1650
1651 (define-public r-oligo
1652 (package
1653 (name "r-oligo")
1654 (version "1.54.1")
1655 (source
1656 (origin
1657 (method url-fetch)
1658 (uri (bioconductor-uri "oligo" version))
1659 (sha256
1660 (base32
1661 "0cpfkvxpni7an361li0k0qlfcraj7z9zv71r25dbly5kp3dql7k3"))))
1662 (properties `((upstream-name . "oligo")))
1663 (build-system r-build-system)
1664 (inputs `(("zlib" ,zlib)))
1665 (propagated-inputs
1666 `(("r-affxparser" ,r-affxparser)
1667 ("r-affyio" ,r-affyio)
1668 ("r-biobase" ,r-biobase)
1669 ("r-biocgenerics" ,r-biocgenerics)
1670 ("r-biostrings" ,r-biostrings)
1671 ("r-dbi" ,r-dbi)
1672 ("r-ff" ,r-ff)
1673 ("r-oligoclasses" ,r-oligoclasses)
1674 ("r-preprocesscore" ,r-preprocesscore)
1675 ("r-rsqlite" ,r-rsqlite)
1676 ("r-zlibbioc" ,r-zlibbioc)))
1677 (native-inputs
1678 `(("r-knitr" ,r-knitr)))
1679 (home-page "https://bioconductor.org/packages/oligo/")
1680 (synopsis "Preprocessing tools for oligonucleotide arrays")
1681 (description
1682 "This package provides a package to analyze oligonucleotide
1683 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
1684 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
1685 (license license:lgpl2.0+)))
1686
1687 (define-public r-qvalue
1688 (package
1689 (name "r-qvalue")
1690 (version "2.22.0")
1691 (source
1692 (origin
1693 (method url-fetch)
1694 (uri (bioconductor-uri "qvalue" version))
1695 (sha256
1696 (base32
1697 "0xbww16lz0k2p4mmq1aqd7iz7d8rvzgw1gm55jy6xbx19ymj64i5"))))
1698 (build-system r-build-system)
1699 (propagated-inputs
1700 `(("r-ggplot2" ,r-ggplot2)
1701 ("r-reshape2" ,r-reshape2)))
1702 (native-inputs
1703 `(("r-knitr" ,r-knitr)))
1704 (home-page "https://github.com/StoreyLab/qvalue")
1705 (synopsis "Q-value estimation for false discovery rate control")
1706 (description
1707 "This package takes a list of p-values resulting from the simultaneous
1708 testing of many hypotheses and estimates their q-values and local @dfn{false
1709 discovery rate} (FDR) values. The q-value of a test measures the proportion
1710 of false positives incurred when that particular test is called significant.
1711 The local FDR measures the posterior probability the null hypothesis is true
1712 given the test's p-value. Various plots are automatically generated, allowing
1713 one to make sensible significance cut-offs. The software can be applied to
1714 problems in genomics, brain imaging, astrophysics, and data mining.")
1715 ;; Any version of the LGPL.
1716 (license license:lgpl3+)))
1717
1718 (define r-rcppnumerical
1719 (package
1720 (name "r-rcppnumerical")
1721 (version "0.4-0")
1722 (source (origin
1723 (method url-fetch)
1724 (uri (cran-uri "RcppNumerical" version))
1725 (sha256
1726 (base32
1727 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
1728 (properties `((upstream-name . "RcppNumerical")))
1729 (build-system r-build-system)
1730 (propagated-inputs
1731 `(("r-rcpp" ,r-rcpp)
1732 ("r-rcppeigen" ,r-rcppeigen)))
1733 (native-inputs
1734 `(("r-knitr" ,r-knitr)))
1735 (home-page "https://github.com/yixuan/RcppNumerical")
1736 (synopsis "Rcpp integration for numerical computing libraries")
1737 (description "This package provides a collection of open source libraries
1738 for numerical computing (numerical integration, optimization, etc.) and their
1739 integration with @code{Rcpp}.")
1740 (license license:gpl2+)))
1741
1742 (define-public r-apeglm
1743 (package
1744 (name "r-apeglm")
1745 (version "1.12.0")
1746 (source (origin
1747 (method url-fetch)
1748 (uri (bioconductor-uri "apeglm" version))
1749 (sha256
1750 (base32
1751 "0pix1fhxk2q89p2745fgsmxwics9rf10l392qhw3rw6v6ynhims2"))))
1752 (properties `((upstream-name . "apeglm")))
1753 (build-system r-build-system)
1754 (propagated-inputs
1755 `(("r-emdbook" ,r-emdbook)
1756 ("r-genomicranges" ,r-genomicranges)
1757 ("r-rcpp" ,r-rcpp)
1758 ("r-rcppeigen" ,r-rcppeigen)
1759 ("r-rcppnumerical" ,r-rcppnumerical)
1760 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1761 (native-inputs `(("r-knitr" ,r-knitr)))
1762 (home-page "https://bioconductor.org/packages/apeglm")
1763 (synopsis "Approximate posterior estimation for GLM coefficients")
1764 (description "This package provides Bayesian shrinkage estimators for
1765 effect sizes for a variety of GLM models, using approximation of the
1766 posterior for individual coefficients.")
1767 (license license:gpl2)))
1768
1769 (define-public r-greylistchip
1770 (package
1771 (name "r-greylistchip")
1772 (version "1.22.0")
1773 (source (origin
1774 (method url-fetch)
1775 (uri (bioconductor-uri "GreyListChIP" version))
1776 (sha256
1777 (base32
1778 "1d1yvza1aw3vs3di6mrra5l52ig0p9bpzprrqvknjaz5i4yb8ma6"))))
1779 (properties `((upstream-name . "GreyListChIP")))
1780 (build-system r-build-system)
1781 (propagated-inputs
1782 `(("r-bsgenome" ,r-bsgenome)
1783 ("r-genomeinfodb" ,r-genomeinfodb)
1784 ("r-genomicalignments" ,r-genomicalignments)
1785 ("r-genomicranges" ,r-genomicranges)
1786 ("r-mass" ,r-mass)
1787 ("r-rsamtools" ,r-rsamtools)
1788 ("r-rtracklayer" ,r-rtracklayer)
1789 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1790 (home-page "https://bioconductor.org/packages/GreyListChIP")
1791 (synopsis "Greylist artefact regions based on ChIP inputs")
1792 (description "This package identifies regions of ChIP experiments with high
1793 signal in the input, that lead to spurious peaks during peak calling.")
1794 (license license:artistic2.0)))
1795
1796 (define-public r-diffbind
1797 (package
1798 (name "r-diffbind")
1799 (version "3.0.8")
1800 (source
1801 (origin
1802 (method url-fetch)
1803 (uri (bioconductor-uri "DiffBind" version))
1804 (sha256
1805 (base32
1806 "11svdfjp4faswrmzwkryzhd0ji2pl9vwsd35lvbfjgakbpxnyn8a"))))
1807 (properties `((upstream-name . "DiffBind")))
1808 (build-system r-build-system)
1809 (propagated-inputs
1810 `(("r-amap" ,r-amap)
1811 ("r-apeglm" ,r-apeglm)
1812 ("r-ashr" ,r-ashr)
1813 ("r-biocparallel" ,r-biocparallel)
1814 ("r-deseq2" ,r-deseq2)
1815 ("r-dplyr" ,r-dplyr)
1816 ("r-genomicalignments" ,r-genomicalignments)
1817 ("r-genomicranges" ,r-genomicranges)
1818 ("r-ggplot2" ,r-ggplot2)
1819 ("r-ggrepel" ,r-ggrepel)
1820 ("r-gplots" ,r-gplots)
1821 ("r-greylistchip" ,r-greylistchip)
1822 ("r-iranges" ,r-iranges)
1823 ("r-lattice" ,r-lattice)
1824 ("r-limma" ,r-limma)
1825 ("r-locfit" ,r-locfit)
1826 ("r-rcolorbrewer" , r-rcolorbrewer)
1827 ("r-rcpp" ,r-rcpp)
1828 ("r-rhtslib" ,r-rhtslib)
1829 ("r-rsamtools" ,r-rsamtools)
1830 ("r-s4vectors" ,r-s4vectors)
1831 ("r-summarizedexperiment" ,r-summarizedexperiment)
1832 ("r-systempiper" ,r-systempiper)))
1833 (home-page "https://bioconductor.org/packages/DiffBind")
1834 (synopsis "Differential binding analysis of ChIP-Seq peak data")
1835 (description
1836 "This package computes differentially bound sites from multiple
1837 ChIP-seq experiments using affinity (quantitative) data. Also enables
1838 occupancy (overlap) analysis and plotting functions.")
1839 (license license:artistic2.0)))
1840
1841 (define-public r-ripseeker
1842 (package
1843 (name "r-ripseeker")
1844 (version "1.26.0")
1845 (source
1846 (origin
1847 (method url-fetch)
1848 (uri (bioconductor-uri "RIPSeeker" version))
1849 (sha256
1850 (base32
1851 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
1852 (properties `((upstream-name . "RIPSeeker")))
1853 (build-system r-build-system)
1854 (propagated-inputs
1855 `(("r-s4vectors" ,r-s4vectors)
1856 ("r-iranges" ,r-iranges)
1857 ("r-genomicranges" ,r-genomicranges)
1858 ("r-summarizedexperiment" ,r-summarizedexperiment)
1859 ("r-rsamtools" ,r-rsamtools)
1860 ("r-genomicalignments" ,r-genomicalignments)
1861 ("r-rtracklayer" ,r-rtracklayer)))
1862 (home-page "https://bioconductor.org/packages/RIPSeeker")
1863 (synopsis
1864 "Identifying protein-associated transcripts from RIP-seq experiments")
1865 (description
1866 "This package infers and discriminates RIP peaks from RIP-seq alignments
1867 using two-state HMM with negative binomial emission probability. While
1868 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
1869 a suite of bioinformatics tools integrated within this self-contained software
1870 package comprehensively addressing issues ranging from post-alignments
1871 processing to visualization and annotation.")
1872 (license license:gpl2)))
1873
1874 (define-public r-multtest
1875 (package
1876 (name "r-multtest")
1877 (version "2.46.0")
1878 (source
1879 (origin
1880 (method url-fetch)
1881 (uri (bioconductor-uri "multtest" version))
1882 (sha256
1883 (base32
1884 "06vixd81nh3nxrc6km73p7c4bwln1zm39fa9gp7gj272vsxkx53q"))))
1885 (build-system r-build-system)
1886 (propagated-inputs
1887 `(("r-survival" ,r-survival)
1888 ("r-biocgenerics" ,r-biocgenerics)
1889 ("r-biobase" ,r-biobase)
1890 ("r-mass" ,r-mass)))
1891 (home-page "https://bioconductor.org/packages/multtest")
1892 (synopsis "Resampling-based multiple hypothesis testing")
1893 (description
1894 "This package can do non-parametric bootstrap and permutation
1895 resampling-based multiple testing procedures (including empirical Bayes
1896 methods) for controlling the family-wise error rate (FWER), generalized
1897 family-wise error rate (gFWER), tail probability of the proportion of
1898 false positives (TPPFP), and false discovery rate (FDR). Several choices
1899 of bootstrap-based null distribution are implemented (centered, centered
1900 and scaled, quantile-transformed). Single-step and step-wise methods are
1901 available. Tests based on a variety of T- and F-statistics (including
1902 T-statistics based on regression parameters from linear and survival models
1903 as well as those based on correlation parameters) are included. When probing
1904 hypotheses with T-statistics, users may also select a potentially faster null
1905 distribution which is multivariate normal with mean zero and variance
1906 covariance matrix derived from the vector influence function. Results are
1907 reported in terms of adjusted P-values, confidence regions and test statistic
1908 cutoffs. The procedures are directly applicable to identifying differentially
1909 expressed genes in DNA microarray experiments.")
1910 (license license:lgpl3)))
1911
1912 (define-public r-graph
1913 (package
1914 (name "r-graph")
1915 (version "1.68.0")
1916 (source (origin
1917 (method url-fetch)
1918 (uri (bioconductor-uri "graph" version))
1919 (sha256
1920 (base32
1921 "0wr7j2pasvi3srvg9z3n034ljk8mldcixny6b3kmqbqm8dqy9py4"))))
1922 (build-system r-build-system)
1923 (propagated-inputs
1924 `(("r-biocgenerics" ,r-biocgenerics)))
1925 (home-page "https://bioconductor.org/packages/graph")
1926 (synopsis "Handle graph data structures in R")
1927 (description
1928 "This package implements some simple graph handling capabilities for R.")
1929 (license license:artistic2.0)))
1930
1931 ;; This is a CRAN package, but it depends on a Bioconductor package.
1932 (define-public r-ggm
1933 (package
1934 (name "r-ggm")
1935 (version "2.5")
1936 (source
1937 (origin
1938 (method url-fetch)
1939 (uri (cran-uri "ggm" version))
1940 (sha256
1941 (base32
1942 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
1943 (properties `((upstream-name . "ggm")))
1944 (build-system r-build-system)
1945 (propagated-inputs
1946 `(("r-graph" ,r-graph)
1947 ("r-igraph" ,r-igraph)))
1948 (home-page "https://cran.r-project.org/package=ggm")
1949 (synopsis "Functions for graphical Markov models")
1950 (description
1951 "This package provides functions and datasets for maximum likelihood
1952 fitting of some classes of graphical Markov models.")
1953 (license license:gpl2+)))
1954
1955 ;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
1956 (define-public r-perfmeas
1957 (package
1958 (name "r-perfmeas")
1959 (version "1.2.1")
1960 (source
1961 (origin
1962 (method url-fetch)
1963 (uri (cran-uri "PerfMeas" version))
1964 (sha256
1965 (base32
1966 "1x7ancmb41zd1js24rx94plgbssyc71z2bvpic6mg34xjkwdjw93"))))
1967 (properties `((upstream-name . "PerfMeas")))
1968 (build-system r-build-system)
1969 (propagated-inputs
1970 `(("r-graph" ,r-graph)
1971 ("r-limma" ,r-limma)
1972 ("r-rbgl" ,r-rbgl)))
1973 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
1974 (synopsis "Performance measures for ranking and classification tasks")
1975 (description
1976 "This package implements different performance measures for
1977 classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
1978 a given recall, F-score for single and multiple classes are available.")
1979 (license license:gpl2+)))
1980
1981 ;; This is a CRAN package, but it depends on a Bioconductor package.
1982 (define-public r-codedepends
1983 (package
1984 (name "r-codedepends")
1985 (version "0.6.5")
1986 (source
1987 (origin
1988 (method url-fetch)
1989 (uri (cran-uri "CodeDepends" version))
1990 (sha256
1991 (base32
1992 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
1993 (properties `((upstream-name . "CodeDepends")))
1994 (build-system r-build-system)
1995 (propagated-inputs
1996 `(("r-codetools" ,r-codetools)
1997 ("r-graph" ,r-graph)
1998 ("r-xml" ,r-xml)))
1999 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
2000 (synopsis "Analysis of R code for reproducible research and code comprehension")
2001 (description
2002 "This package provides tools for analyzing R expressions or blocks of
2003 code and determining the dependencies between them. It focuses on R scripts,
2004 but can be used on the bodies of functions. There are many facilities
2005 including the ability to summarize or get a high-level view of code,
2006 determining dependencies between variables, code improvement suggestions.")
2007 ;; Any version of the GPL
2008 (license (list license:gpl2+ license:gpl3+))))
2009
2010 (define-public r-chippeakanno
2011 (package
2012 (name "r-chippeakanno")
2013 (version "3.24.1")
2014 (source
2015 (origin
2016 (method url-fetch)
2017 (uri (bioconductor-uri "ChIPpeakAnno" version))
2018 (sha256
2019 (base32
2020 "0qdkwjv8s46d1kmgg2chijv7yzy9sv49kiks18w8x2z89prn15gj"))))
2021 (properties `((upstream-name . "ChIPpeakAnno")))
2022 (build-system r-build-system)
2023 (propagated-inputs
2024 `(("r-annotationdbi" ,r-annotationdbi)
2025 ("r-biocgenerics" ,r-biocgenerics)
2026 ("r-biomart" ,r-biomart)
2027 ("r-biostrings" ,r-biostrings)
2028 ("r-dbi" ,r-dbi)
2029 ("r-ensembldb" ,r-ensembldb)
2030 ("r-genomeinfodb" ,r-genomeinfodb)
2031 ("r-genomicalignments" ,r-genomicalignments)
2032 ("r-genomicfeatures" ,r-genomicfeatures)
2033 ("r-genomicranges" ,r-genomicranges)
2034 ("r-ggplot2" ,r-ggplot2)
2035 ("r-graph" ,r-graph)
2036 ("r-iranges" ,r-iranges)
2037 ("r-keggrest" ,r-keggrest)
2038 ("r-matrixstats" ,r-matrixstats)
2039 ("r-multtest" ,r-multtest)
2040 ("r-rbgl" ,r-rbgl)
2041 ("r-regioner" ,r-regioner)
2042 ("r-rsamtools" ,r-rsamtools)
2043 ("r-rtracklayer" ,r-rtracklayer)
2044 ("r-s4vectors" ,r-s4vectors)
2045 ("r-summarizedexperiment" ,r-summarizedexperiment)
2046 ("r-venndiagram" ,r-venndiagram)))
2047 (native-inputs
2048 `(("r-knitr" ,r-knitr)))
2049 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
2050 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
2051 (description
2052 "The package includes functions to retrieve the sequences around the peak,
2053 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
2054 custom features such as most conserved elements and other transcription factor
2055 binding sites supplied by users. Starting 2.0.5, new functions have been added
2056 for finding the peaks with bi-directional promoters with summary statistics
2057 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
2058 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
2059 enrichedGO (addGeneIDs).")
2060 (license license:gpl2+)))
2061
2062 (define-public r-matrixgenerics
2063 (package
2064 (name "r-matrixgenerics")
2065 (version "1.2.0")
2066 (source (origin
2067 (method url-fetch)
2068 (uri (bioconductor-uri "MatrixGenerics" version))
2069 (sha256
2070 (base32
2071 "1a3sw79185d6rld3wlrynkzcbp754a7jkracrmvn0ra964ia8zvc"))))
2072 (properties
2073 `((upstream-name . "MatrixGenerics")))
2074 (build-system r-build-system)
2075 (propagated-inputs
2076 `(("r-matrixstats" ,r-matrixstats)))
2077 (home-page "https://bioconductor.org/packages/MatrixGenerics")
2078 (synopsis "S4 generic summary statistic functions for matrix-like objects")
2079 (description
2080 "This package provides S4 generic functions modeled after the
2081 @code{matrixStats} API for alternative matrix implementations. Packages with
2082 alternative matrix implementation can depend on this package and implement the
2083 generic functions that are defined here for a useful set of row and column
2084 summary statistics. Other package developers can import this package and
2085 handle a different matrix implementations without worrying about
2086 incompatibilities.")
2087 (license license:artistic2.0)))
2088
2089 (define-public r-marray
2090 (package
2091 (name "r-marray")
2092 (version "1.68.0")
2093 (source (origin
2094 (method url-fetch)
2095 (uri (bioconductor-uri "marray" version))
2096 (sha256
2097 (base32 "1kkgv166gzvlj8p58vzam3hcaz8mypi3hhpdsjhaszwg6nav4ray"))))
2098 (build-system r-build-system)
2099 (propagated-inputs
2100 `(("r-limma" ,r-limma)))
2101 (home-page "https://bioconductor.org/packages/marray")
2102 (synopsis "Exploratory analysis for two-color spotted microarray data")
2103 (description "This package contains class definitions for two-color spotted
2104 microarray data. It also includes functions for data input, diagnostic plots,
2105 normalization and quality checking.")
2106 (license license:lgpl2.0+)))
2107
2108 (define-public r-cghbase
2109 (package
2110 (name "r-cghbase")
2111 (version "1.50.0")
2112 (source (origin
2113 (method url-fetch)
2114 (uri (bioconductor-uri "CGHbase" version))
2115 (sha256
2116 (base32 "10zhjmls3f63cj0bnywjb97zhrj7x3xsq6yjhvf5cclxc4kcrcx4"))))
2117 (properties `((upstream-name . "CGHbase")))
2118 (build-system r-build-system)
2119 (propagated-inputs
2120 `(("r-biobase" ,r-biobase)
2121 ("r-marray" ,r-marray)))
2122 (home-page "https://bioconductor.org/packages/CGHbase")
2123 (synopsis "Base functions and classes for arrayCGH data analysis")
2124 (description "This package contains functions and classes that are needed by
2125 the @code{arrayCGH} packages.")
2126 (license license:gpl2+)))
2127
2128 (define-public r-cghcall
2129 (package
2130 (name "r-cghcall")
2131 (version "2.52.0")
2132 (source (origin
2133 (method url-fetch)
2134 (uri (bioconductor-uri "CGHcall" version))
2135 (sha256
2136 (base32 "1a6k87xfm79wnsc30k5aziakv51h4dd9zqw81q8bd72hc3fpz8ba"))))
2137 (properties `((upstream-name . "CGHcall")))
2138 (build-system r-build-system)
2139 (propagated-inputs
2140 `(("r-biobase" ,r-biobase)
2141 ("r-cghbase" ,r-cghbase)
2142 ("r-impute" ,r-impute)
2143 ("r-dnacopy" ,r-dnacopy)
2144 ("r-snowfall" ,r-snowfall)))
2145 (home-page "https://bioconductor.org/packages/CGHcall")
2146 (synopsis "Base functions and classes for arrayCGH data analysis")
2147 (description "This package contains functions and classes that are needed by
2148 @code{arrayCGH} packages.")
2149 (license license:gpl2+)))
2150
2151 (define-public r-qdnaseq
2152 (package
2153 (name "r-qdnaseq")
2154 (version "1.26.0")
2155 (source (origin
2156 (method url-fetch)
2157 (uri (bioconductor-uri "QDNAseq" version))
2158 (sha256
2159 (base32 "1njka1ldaj12id3m2z8ghlrm2lg0n5pxsxyv5gpjnsiabnnaw6ph"))))
2160 (properties `((upstream-name . "QDNAseq")))
2161 (build-system r-build-system)
2162 (propagated-inputs
2163 `(("r-biobase" ,r-biobase)
2164 ("r-cghbase" ,r-cghbase)
2165 ("r-cghcall" ,r-cghcall)
2166 ("r-dnacopy" ,r-dnacopy)
2167 ("r-future" ,r-future)
2168 ("r-future-apply" ,r-future-apply)
2169 ("r-genomicranges" ,r-genomicranges)
2170 ("r-iranges" ,r-iranges)
2171 ("r-matrixstats" ,r-matrixstats)
2172 ("r-r-utils" ,r-r-utils)
2173 ("r-rsamtools" ,r-rsamtools)))
2174 (home-page "https://bioconductor.org/packages/QDNAseq")
2175 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
2176 (description "The genome is divided into non-overlapping fixed-sized bins,
2177 number of sequence reads in each counted, adjusted with a simultaneous
2178 two-dimensional loess correction for sequence mappability and GC content, and
2179 filtered to remove spurious regions in the genome. Downstream steps of
2180 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
2181 respectively.")
2182 (license license:gpl2+)))
2183
2184 (define-public r-bayseq
2185 (package
2186 (name "r-bayseq")
2187 (version "2.24.0")
2188 (source
2189 (origin
2190 (method url-fetch)
2191 (uri (bioconductor-uri "baySeq" version))
2192 (sha256
2193 (base32
2194 "1496inlw0x4mfy3g2v7j9ips96sf7576ydnfn6hvn2m6rz2ls215"))))
2195 (properties `((upstream-name . "baySeq")))
2196 (build-system r-build-system)
2197 (propagated-inputs
2198 `(("r-abind" ,r-abind)
2199 ("r-edger" ,r-edger)
2200 ("r-genomicranges" ,r-genomicranges)))
2201 (home-page "https://bioconductor.org/packages/baySeq/")
2202 (synopsis "Bayesian analysis of differential expression patterns in count data")
2203 (description
2204 "This package identifies differential expression in high-throughput count
2205 data, such as that derived from next-generation sequencing machines,
2206 calculating estimated posterior likelihoods of differential expression (or
2207 more complex hypotheses) via empirical Bayesian methods.")
2208 (license license:gpl3)))
2209
2210 (define-public r-chipcomp
2211 (package
2212 (name "r-chipcomp")
2213 (version "1.20.0")
2214 (source
2215 (origin
2216 (method url-fetch)
2217 (uri (bioconductor-uri "ChIPComp" version))
2218 (sha256
2219 (base32
2220 "0dbypfgys74snmyf982183ilzg6vamfw1d5y0lp5p8zxbffh2xl7"))))
2221 (properties `((upstream-name . "ChIPComp")))
2222 (build-system r-build-system)
2223 (propagated-inputs
2224 `(("r-biocgenerics" ,r-biocgenerics)
2225 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
2226 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
2227 ("r-genomeinfodb" ,r-genomeinfodb)
2228 ("r-genomicranges" ,r-genomicranges)
2229 ("r-iranges" ,r-iranges)
2230 ("r-limma" ,r-limma)
2231 ("r-rsamtools" ,r-rsamtools)
2232 ("r-rtracklayer" ,r-rtracklayer)
2233 ("r-s4vectors" ,r-s4vectors)))
2234 (home-page "https://bioconductor.org/packages/ChIPComp")
2235 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
2236 (description
2237 "ChIPComp implements a statistical method for quantitative comparison of
2238 multiple ChIP-seq datasets. It detects differentially bound sharp binding
2239 sites across multiple conditions considering matching control in ChIP-seq
2240 datasets.")
2241 ;; Any version of the GPL.
2242 (license license:gpl3+)))
2243
2244 (define-public r-riboprofiling
2245 (package
2246 (name "r-riboprofiling")
2247 (version "1.20.0")
2248 (source
2249 (origin
2250 (method url-fetch)
2251 (uri (bioconductor-uri "RiboProfiling" version))
2252 (sha256
2253 (base32
2254 "112071w7aw7cwckipq0dll1lssl7pwafma4v9jj9sx12rjcj57xg"))))
2255 (properties `((upstream-name . "RiboProfiling")))
2256 (build-system r-build-system)
2257 (propagated-inputs
2258 `(("r-biocgenerics" ,r-biocgenerics)
2259 ("r-biostrings" ,r-biostrings)
2260 ("r-data-table" ,r-data-table)
2261 ("r-genomeinfodb" ,r-genomeinfodb)
2262 ("r-genomicalignments" ,r-genomicalignments)
2263 ("r-genomicfeatures" ,r-genomicfeatures)
2264 ("r-genomicranges" ,r-genomicranges)
2265 ("r-ggbio" ,r-ggbio)
2266 ("r-ggplot2" ,r-ggplot2)
2267 ("r-iranges" ,r-iranges)
2268 ("r-plyr" ,r-plyr)
2269 ("r-reshape2" ,r-reshape2)
2270 ("r-rsamtools" ,r-rsamtools)
2271 ("r-rtracklayer" ,r-rtracklayer)
2272 ("r-s4vectors" ,r-s4vectors)
2273 ("r-sqldf" ,r-sqldf)))
2274 (native-inputs
2275 `(("r-knitr" ,r-knitr)))
2276 (home-page "https://bioconductor.org/packages/RiboProfiling/")
2277 (synopsis "Ribosome profiling data analysis")
2278 (description "Starting with a BAM file, this package provides the
2279 necessary functions for quality assessment, read start position recalibration,
2280 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
2281 of count data: pairs, log fold-change, codon frequency and coverage
2282 assessment, principal component analysis on codon coverage.")
2283 (license license:gpl3)))
2284
2285 (define-public r-riboseqr
2286 (package
2287 (name "r-riboseqr")
2288 (version "1.24.0")
2289 (source
2290 (origin
2291 (method url-fetch)
2292 (uri (bioconductor-uri "riboSeqR" version))
2293 (sha256
2294 (base32
2295 "07i64gch14rsbjlfv17s689wzlqbi7hcqhcw21pp6cw8bvhvd5xr"))))
2296 (properties `((upstream-name . "riboSeqR")))
2297 (build-system r-build-system)
2298 (propagated-inputs
2299 `(("r-abind" ,r-abind)
2300 ("r-bayseq" ,r-bayseq)
2301 ("r-genomeinfodb" ,r-genomeinfodb)
2302 ("r-genomicranges" ,r-genomicranges)
2303 ("r-iranges" ,r-iranges)
2304 ("r-rsamtools" ,r-rsamtools)
2305 ("r-seqlogo" ,r-seqlogo)))
2306 (home-page "https://bioconductor.org/packages/riboSeqR/")
2307 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
2308 (description
2309 "This package provides plotting functions, frameshift detection and
2310 parsing of genetic sequencing data from ribosome profiling experiments.")
2311 (license license:gpl3)))
2312
2313 (define-public r-interactionset
2314 (package ;BROKEN
2315 (name "r-interactionset")
2316 (version "1.18.0")
2317 (source
2318 (origin
2319 (method url-fetch)
2320 (uri (bioconductor-uri "InteractionSet" version))
2321 (sha256
2322 (base32
2323 "14lp23b298wr3r7ggcfvas0xlf1866cpla0rv7dz589f50z6bj31"))))
2324 (properties
2325 `((upstream-name . "InteractionSet")))
2326 (build-system r-build-system)
2327 (propagated-inputs
2328 `(("r-biocgenerics" ,r-biocgenerics)
2329 ("r-genomeinfodb" ,r-genomeinfodb)
2330 ("r-genomicranges" ,r-genomicranges)
2331 ("r-iranges" ,r-iranges)
2332 ("r-matrix" ,r-matrix)
2333 ("r-rcpp" ,r-rcpp)
2334 ("r-s4vectors" ,r-s4vectors)
2335 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2336 (native-inputs
2337 `(("r-knitr" ,r-knitr)))
2338 (home-page "https://bioconductor.org/packages/InteractionSet")
2339 (synopsis "Base classes for storing genomic interaction data")
2340 (description
2341 "This package provides the @code{GInteractions},
2342 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
2343 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
2344 experiments.")
2345 (license license:gpl3)))
2346
2347 (define-public r-genomicinteractions
2348 (package
2349 (name "r-genomicinteractions")
2350 (version "1.24.0")
2351 (source
2352 (origin
2353 (method url-fetch)
2354 (uri (bioconductor-uri "GenomicInteractions" version))
2355 (sha256
2356 (base32
2357 "0ad0a5cadchx1rkqj4cc8k0y1zf34jgp1406hvik5zabr7xijkbd"))))
2358 (properties
2359 `((upstream-name . "GenomicInteractions")))
2360 (build-system r-build-system)
2361 (propagated-inputs
2362 `(("r-biobase" ,r-biobase)
2363 ("r-biocgenerics" ,r-biocgenerics)
2364 ("r-data-table" ,r-data-table)
2365 ("r-dplyr" ,r-dplyr)
2366 ("r-genomeinfodb" ,r-genomeinfodb)
2367 ("r-genomicranges" ,r-genomicranges)
2368 ("r-ggplot2" ,r-ggplot2)
2369 ("r-gridextra" ,r-gridextra)
2370 ("r-gviz" ,r-gviz)
2371 ("r-igraph" ,r-igraph)
2372 ("r-interactionset" ,r-interactionset)
2373 ("r-iranges" ,r-iranges)
2374 ("r-rsamtools" ,r-rsamtools)
2375 ("r-rtracklayer" ,r-rtracklayer)
2376 ("r-s4vectors" ,r-s4vectors)
2377 ("r-stringr" ,r-stringr)))
2378 (native-inputs
2379 `(("r-knitr" ,r-knitr)))
2380 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
2381 (synopsis "R package for handling genomic interaction data")
2382 (description
2383 "This R package provides tools for handling genomic interaction data,
2384 such as ChIA-PET/Hi-C, annotating genomic features with interaction
2385 information and producing various plots and statistics.")
2386 (license license:gpl3)))
2387
2388 (define-public r-ctc
2389 (package
2390 (name "r-ctc")
2391 (version "1.64.0")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (bioconductor-uri "ctc" version))
2396 (sha256
2397 (base32
2398 "1nwlphbfba3w8ixck02k5c84qm4flnp9fd68li0jn5a08qi9gmyp"))))
2399 (build-system r-build-system)
2400 (propagated-inputs `(("r-amap" ,r-amap)))
2401 (home-page "https://bioconductor.org/packages/ctc/")
2402 (synopsis "Cluster and tree conversion")
2403 (description
2404 "This package provides tools for exporting and importing classification
2405 trees and clusters to other programs.")
2406 (license license:gpl2)))
2407
2408 (define-public r-goseq
2409 (package
2410 (name "r-goseq")
2411 (version "1.42.0")
2412 (source
2413 (origin
2414 (method url-fetch)
2415 (uri (bioconductor-uri "goseq" version))
2416 (sha256
2417 (base32
2418 "18fs3m4kl3zahn42j20rjvxy83irscgqx0dvid7va4majvsib509"))))
2419 (build-system r-build-system)
2420 (propagated-inputs
2421 `(("r-annotationdbi" ,r-annotationdbi)
2422 ("r-biasedurn" ,r-biasedurn)
2423 ("r-biocgenerics" ,r-biocgenerics)
2424 ("r-genelendatabase" ,r-genelendatabase)
2425 ("r-go-db" ,r-go-db)
2426 ("r-mgcv" ,r-mgcv)))
2427 (home-page "https://bioconductor.org/packages/goseq/")
2428 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
2429 (description
2430 "This package provides tools to detect Gene Ontology and/or other user
2431 defined categories which are over/under represented in RNA-seq data.")
2432 (license license:lgpl2.0+)))
2433
2434 (define-public r-glimma
2435 (package
2436 (name "r-glimma")
2437 (version "2.0.0")
2438 (source
2439 (origin
2440 (method url-fetch)
2441 (uri (bioconductor-uri "Glimma" version))
2442 (sha256
2443 (base32
2444 "0gy30v30lw27frhmw39pzacqzrv2vwj5rsp6gb3yifllrahdiffv"))))
2445 (properties `((upstream-name . "Glimma")))
2446 (build-system r-build-system)
2447 (propagated-inputs
2448 `(("r-deseq2" ,r-deseq2)
2449 ("r-edger" ,r-edger)
2450 ("r-htmlwidgets" ,r-htmlwidgets)
2451 ("r-jsonlite" ,r-jsonlite)
2452 ("r-limma" ,r-limma)
2453 ("r-s4vectors" ,r-s4vectors)
2454 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2455 (native-inputs
2456 `(("r-knitr" ,r-knitr)))
2457 (home-page "https://github.com/Shians/Glimma")
2458 (synopsis "Interactive HTML graphics")
2459 (description
2460 "This package generates interactive visualisations for analysis of
2461 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
2462 HTML page. The interactions are built on top of the popular static
2463 representations of analysis results in order to provide additional
2464 information.")
2465 (license license:lgpl3)))
2466
2467 (define-public r-rots
2468 (package
2469 (name "r-rots")
2470 (version "1.18.0")
2471 (source
2472 (origin
2473 (method url-fetch)
2474 (uri (bioconductor-uri "ROTS" version))
2475 (sha256
2476 (base32
2477 "0qk0gfhgr14g13zlfyf5101b5s8cma7j3r8a92q93h0axy8ka23n"))))
2478 (properties `((upstream-name . "ROTS")))
2479 (build-system r-build-system)
2480 (propagated-inputs
2481 `(("r-biobase" ,r-biobase)
2482 ("r-rcpp" ,r-rcpp)))
2483 (home-page "https://bioconductor.org/packages/ROTS/")
2484 (synopsis "Reproducibility-Optimized Test Statistic")
2485 (description
2486 "This package provides tools for calculating the
2487 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
2488 in omics data.")
2489 (license license:gpl2+)))
2490
2491 (define-public r-plgem
2492 (package
2493 (name "r-plgem")
2494 (version "1.62.0")
2495 (source
2496 (origin
2497 (method url-fetch)
2498 (uri (bioconductor-uri "plgem" version))
2499 (sha256
2500 (base32
2501 "039gqwsm1v6q8v8b248nm8g9gnsk379mfx65rbgdmh3chsd8pm8a"))))
2502 (build-system r-build-system)
2503 (propagated-inputs
2504 `(("r-biobase" ,r-biobase)
2505 ("r-mass" ,r-mass)))
2506 (home-page "http://www.genopolis.it")
2507 (synopsis "Detect differential expression in microarray and proteomics datasets")
2508 (description
2509 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
2510 model the variance-versus-mean dependence that exists in a variety of
2511 genome-wide datasets, including microarray and proteomics data. The use of
2512 PLGEM has been shown to improve the detection of differentially expressed
2513 genes or proteins in these datasets.")
2514 (license license:gpl2)))
2515
2516 (define-public r-inspect
2517 (package
2518 (name "r-inspect")
2519 (version "1.20.0")
2520 (source
2521 (origin
2522 (method url-fetch)
2523 (uri (bioconductor-uri "INSPEcT" version))
2524 (sha256
2525 (base32
2526 "1jymvi5mf7vhs58zfh290pacfswgvkw09rmbirmr24kxcgl30483"))))
2527 (properties `((upstream-name . "INSPEcT")))
2528 (build-system r-build-system)
2529 (propagated-inputs
2530 `(("r-biobase" ,r-biobase)
2531 ("r-biocgenerics" ,r-biocgenerics)
2532 ("r-biocparallel" ,r-biocparallel)
2533 ("r-deseq2" ,r-deseq2)
2534 ("r-desolve" ,r-desolve)
2535 ("r-gdata" ,r-gdata)
2536 ("r-genomeinfodb" ,r-genomeinfodb)
2537 ("r-genomicalignments" ,r-genomicalignments)
2538 ("r-genomicfeatures" ,r-genomicfeatures)
2539 ("r-genomicranges" ,r-genomicranges)
2540 ("r-iranges" ,r-iranges)
2541 ("r-kernsmooth" ,r-kernsmooth)
2542 ("r-plgem" ,r-plgem)
2543 ("r-proc" ,r-proc)
2544 ("r-rootsolve" ,r-rootsolve)
2545 ("r-rsamtools" ,r-rsamtools)
2546 ("r-rtracklayer" ,r-rtracklayer)
2547 ("r-s4vectors" ,r-s4vectors)
2548 ("r-shiny" ,r-shiny)
2549 ("r-summarizedexperiment" ,r-summarizedexperiment)
2550 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
2551 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
2552 (native-inputs
2553 `(("r-knitr" ,r-knitr)))
2554 (home-page "https://bioconductor.org/packages/INSPEcT")
2555 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
2556 (description
2557 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
2558 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
2559 order to evaluate synthesis, processing and degradation rates and assess via
2560 modeling the rates that determines changes in mature mRNA levels.")
2561 (license license:gpl2)))
2562
2563 (define-public r-dnabarcodes
2564 (package
2565 (name "r-dnabarcodes")
2566 (version "1.20.0")
2567 (source
2568 (origin
2569 (method url-fetch)
2570 (uri (bioconductor-uri "DNABarcodes" version))
2571 (sha256
2572 (base32
2573 "0zzf6xgg6k1gdig8zvpawck2bgmamsc0k43j4pl4xsz9an6dmzbg"))))
2574 (properties `((upstream-name . "DNABarcodes")))
2575 (build-system r-build-system)
2576 (propagated-inputs
2577 `(("r-bh" ,r-bh)
2578 ("r-matrix" ,r-matrix)
2579 ("r-rcpp" ,r-rcpp)))
2580 (native-inputs
2581 `(("r-knitr" ,r-knitr)))
2582 (home-page "https://bioconductor.org/packages/DNABarcodes")
2583 (synopsis "Create and analyze DNA barcodes")
2584 (description
2585 "This package offers tools to create DNA barcode sets capable of
2586 correcting insertion, deletion, and substitution errors. Existing barcodes
2587 can be analyzed regarding their minimal, maximal and average distances between
2588 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
2589 demultiplexed, i.e. assigned to their original reference barcode.")
2590 (license license:gpl2)))
2591
2592 (define-public r-ruvseq
2593 (package
2594 (name "r-ruvseq")
2595 (version "1.24.0")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 (uri (bioconductor-uri "RUVSeq" version))
2600 (sha256
2601 (base32
2602 "1anrybyrzpajr5434svyfbaypjai6x0ifsmqvjgimmxq3xqhv0jh"))))
2603 (properties `((upstream-name . "RUVSeq")))
2604 (build-system r-build-system)
2605 (propagated-inputs
2606 `(("r-biobase" ,r-biobase)
2607 ("r-edaseq" ,r-edaseq)
2608 ("r-edger" ,r-edger)
2609 ("r-mass" ,r-mass)))
2610 (native-inputs
2611 `(("r-knitr" ,r-knitr)))
2612 (home-page "https://github.com/drisso/RUVSeq")
2613 (synopsis "Remove unwanted variation from RNA-Seq data")
2614 (description
2615 "This package implements methods to @dfn{remove unwanted variation} (RUV)
2616 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
2617 samples.")
2618 (license license:artistic2.0)))
2619
2620 (define-public r-biocneighbors
2621 (package
2622 (name "r-biocneighbors")
2623 (version "1.8.2")
2624 (source
2625 (origin
2626 (method url-fetch)
2627 (uri (bioconductor-uri "BiocNeighbors" version))
2628 (sha256
2629 (base32
2630 "19gyl917lf5ydy5hgj0hnc388rw5sbj83awav9js2yr2zmbgn4d7"))))
2631 (properties `((upstream-name . "BiocNeighbors")))
2632 (build-system r-build-system)
2633 (propagated-inputs
2634 `(("r-biocparallel" ,r-biocparallel)
2635 ("r-matrix" ,r-matrix)
2636 ("r-rcpp" ,r-rcpp)
2637 ("r-rcpphnsw" ,r-rcpphnsw)
2638 ("r-s4vectors" ,r-s4vectors)))
2639 (native-inputs
2640 `(("r-knitr" ,r-knitr)))
2641 (home-page "https://bioconductor.org/packages/BiocNeighbors")
2642 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
2643 (description
2644 "This package implements exact and approximate methods for nearest
2645 neighbor detection, in a framework that allows them to be easily switched
2646 within Bioconductor packages or workflows. The exact algorithm is implemented
2647 using pre-clustering with the k-means algorithm. Functions are also provided
2648 to search for all neighbors within a given distance. Parallelization is
2649 achieved for all methods using the BiocParallel framework.")
2650 (license license:gpl3)))
2651
2652 (define-public r-biocsingular
2653 (package
2654 (name "r-biocsingular")
2655 (version "1.6.0")
2656 (source
2657 (origin
2658 (method url-fetch)
2659 (uri (bioconductor-uri "BiocSingular" version))
2660 (sha256
2661 (base32
2662 "1hczix1h14d19hzcsngqkqqnqkprs41phzlcird8haxnw9bs03ni"))))
2663 (properties `((upstream-name . "BiocSingular")))
2664 (build-system r-build-system)
2665 (propagated-inputs
2666 `(("r-beachmat" ,r-beachmat)
2667 ("r-biocgenerics" ,r-biocgenerics)
2668 ("r-biocparallel" ,r-biocparallel)
2669 ("r-delayedarray" ,r-delayedarray)
2670 ("r-irlba" ,r-irlba)
2671 ("r-matrix" ,r-matrix)
2672 ("r-rcpp" ,r-rcpp)
2673 ("r-rsvd" ,r-rsvd)
2674 ("r-s4vectors" ,r-s4vectors)))
2675 (native-inputs
2676 `(("r-knitr" ,r-knitr)))
2677 (home-page "https://github.com/LTLA/BiocSingular")
2678 (synopsis "Singular value decomposition for Bioconductor packages")
2679 (description
2680 "This package implements exact and approximate methods for singular value
2681 decomposition and principal components analysis, in a framework that allows
2682 them to be easily switched within Bioconductor packages or workflows. Where
2683 possible, parallelization is achieved using the BiocParallel framework.")
2684 (license license:gpl3)))
2685
2686 (define-public r-destiny
2687 (package
2688 (name "r-destiny")
2689 (version "3.4.0")
2690 (source
2691 (origin
2692 (method url-fetch)
2693 (uri (bioconductor-uri "destiny" version))
2694 (sha256
2695 (base32
2696 "1i7f5q02zvpfaxhd76fbw0h1wfgjphyn5hrmrjpvlnv4ardzsir2"))))
2697 (build-system r-build-system)
2698 (propagated-inputs
2699 `(("r-biobase" ,r-biobase)
2700 ("r-biocgenerics" ,r-biocgenerics)
2701 ("r-ggplot-multistats" ,r-ggplot-multistats)
2702 ("r-ggplot2" ,r-ggplot2)
2703 ("r-ggthemes" ,r-ggthemes)
2704 ("r-irlba" ,r-irlba)
2705 ("r-knn-covertree" ,r-knn-covertree)
2706 ("r-matrix" ,r-matrix)
2707 ("r-pcamethods" ,r-pcamethods)
2708 ("r-proxy" ,r-proxy)
2709 ("r-rcpp" ,r-rcpp)
2710 ("r-rcppeigen" ,r-rcppeigen)
2711 ("r-rcpphnsw" ,r-rcpphnsw)
2712 ("r-rspectra" ,r-rspectra)
2713 ("r-scales" ,r-scales)
2714 ("r-scatterplot3d" ,r-scatterplot3d)
2715 ("r-singlecellexperiment" ,r-singlecellexperiment)
2716 ("r-smoother" ,r-smoother)
2717 ("r-summarizedexperiment" ,r-summarizedexperiment)
2718 ("r-tidyr" ,r-tidyr)
2719 ("r-tidyselect" ,r-tidyselect)
2720 ("r-vim" ,r-vim)))
2721 (native-inputs
2722 `(("r-nbconvertr" ,r-nbconvertr))) ; for vignettes
2723 (home-page "https://bioconductor.org/packages/destiny/")
2724 (synopsis "Create and plot diffusion maps")
2725 (description "This package provides tools to create and plot diffusion
2726 maps.")
2727 ;; Any version of the GPL
2728 (license license:gpl3+)))
2729
2730 (define-public r-savr
2731 (package
2732 (name "r-savr")
2733 (version "1.28.0")
2734 (source
2735 (origin
2736 (method url-fetch)
2737 (uri (bioconductor-uri "savR" version))
2738 (sha256
2739 (base32
2740 "1vha9b7gndwjzvrzr1hdhv3wc6a1s2n9grxwfd78yb2lkysf4hic"))))
2741 (properties `((upstream-name . "savR")))
2742 (build-system r-build-system)
2743 (propagated-inputs
2744 `(("r-ggplot2" ,r-ggplot2)
2745 ("r-gridextra" ,r-gridextra)
2746 ("r-reshape2" ,r-reshape2)
2747 ("r-scales" ,r-scales)
2748 ("r-xml" ,r-xml)))
2749 (home-page "https://github.com/bcalder/savR")
2750 (synopsis "Parse and analyze Illumina SAV files")
2751 (description
2752 "This package provides tools to parse Illumina Sequence Analysis
2753 Viewer (SAV) files, access data, and generate QC plots.")
2754 (license license:agpl3+)))
2755
2756 (define-public r-chipexoqual
2757 (package
2758 (name "r-chipexoqual")
2759 (version "1.14.0")
2760 (source
2761 (origin
2762 (method url-fetch)
2763 (uri (bioconductor-uri "ChIPexoQual" version))
2764 (sha256
2765 (base32
2766 "15r5jgkfwwfqpw4v4q2ddmglm3bfw002nnbnzn1s0v2b1w3bgiag"))))
2767 (properties `((upstream-name . "ChIPexoQual")))
2768 (build-system r-build-system)
2769 (propagated-inputs
2770 `(("r-biocparallel" ,r-biocparallel)
2771 ("r-biovizbase" ,r-biovizbase)
2772 ("r-broom" ,r-broom)
2773 ("r-data-table" ,r-data-table)
2774 ("r-dplyr" ,r-dplyr)
2775 ("r-genomeinfodb" ,r-genomeinfodb)
2776 ("r-genomicalignments" ,r-genomicalignments)
2777 ("r-genomicranges" ,r-genomicranges)
2778 ("r-ggplot2" ,r-ggplot2)
2779 ("r-hexbin" ,r-hexbin)
2780 ("r-iranges" ,r-iranges)
2781 ("r-rcolorbrewer" ,r-rcolorbrewer)
2782 ("r-rmarkdown" ,r-rmarkdown)
2783 ("r-rsamtools" ,r-rsamtools)
2784 ("r-s4vectors" ,r-s4vectors)
2785 ("r-scales" ,r-scales)
2786 ("r-viridis" ,r-viridis)))
2787 (native-inputs
2788 `(("r-knitr" ,r-knitr)))
2789 (home-page "https://github.com/keleslab/ChIPexoQual")
2790 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
2791 (description
2792 "This package provides a quality control pipeline for ChIP-exo/nexus
2793 sequencing data.")
2794 (license license:gpl2+)))
2795
2796 (define-public r-copynumber
2797 (package
2798 (name "r-copynumber")
2799 (version "1.30.0")
2800 (source (origin
2801 (method url-fetch)
2802 (uri (bioconductor-uri "copynumber" version))
2803 (sha256
2804 (base32
2805 "00fyfy3kpz33v1hqisd5m5xdazwjmjrfj8ssbf6p9m3am2ar23gm"))))
2806 (build-system r-build-system)
2807 (propagated-inputs
2808 `(("r-s4vectors" ,r-s4vectors)
2809 ("r-iranges" ,r-iranges)
2810 ("r-genomicranges" ,r-genomicranges)
2811 ("r-biocgenerics" ,r-biocgenerics)))
2812 (home-page "https://bioconductor.org/packages/copynumber")
2813 (synopsis "Segmentation of single- and multi-track copy number data")
2814 (description
2815 "This package segments single- and multi-track copy number data by a
2816 penalized least squares regression method.")
2817 (license license:artistic2.0)))
2818
2819 (define-public r-dnacopy
2820 (package
2821 (name "r-dnacopy")
2822 (version "1.64.0")
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (bioconductor-uri "DNAcopy" version))
2827 (sha256
2828 (base32
2829 "0km5af4iw8a0m6by933lgdi5246jafyfxk6fsqdiwg07v9wxw5hc"))))
2830 (properties `((upstream-name . "DNAcopy")))
2831 (build-system r-build-system)
2832 (native-inputs `(("gfortran" ,gfortran)))
2833 (home-page "https://bioconductor.org/packages/DNAcopy")
2834 (synopsis "DNA copy number data analysis")
2835 (description
2836 "This package implements the @dfn{circular binary segmentation} (CBS)
2837 algorithm to segment DNA copy number data and identify genomic regions with
2838 abnormal copy number.")
2839 (license license:gpl2+)))
2840
2841 ;; This is a CRAN package, but it uncharacteristically depends on a
2842 ;; Bioconductor package.
2843 (define-public r-htscluster
2844 (package
2845 (name "r-htscluster")
2846 (version "2.0.8")
2847 (source
2848 (origin
2849 (method url-fetch)
2850 (uri (cran-uri "HTSCluster" version))
2851 (sha256
2852 (base32
2853 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
2854 (properties `((upstream-name . "HTSCluster")))
2855 (build-system r-build-system)
2856 (propagated-inputs
2857 `(("r-capushe" ,r-capushe)
2858 ("r-edger" ,r-edger)
2859 ("r-plotrix" ,r-plotrix)))
2860 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
2861 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
2862 (description
2863 "This package provides a Poisson mixture model is implemented to cluster
2864 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
2865 estimation is performed using either the EM or CEM algorithm, and the slope
2866 heuristics are used for model selection (i.e., to choose the number of
2867 clusters).")
2868 (license license:gpl3+)))
2869
2870 (define-public r-deds
2871 (package
2872 (name "r-deds")
2873 (version "1.60.0")
2874 (source
2875 (origin
2876 (method url-fetch)
2877 (uri (bioconductor-uri "DEDS" version))
2878 (sha256
2879 (base32
2880 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
2881 (properties `((upstream-name . "DEDS")))
2882 (build-system r-build-system)
2883 (home-page "https://bioconductor.org/packages/DEDS/")
2884 (synopsis "Differential expression via distance summary for microarray data")
2885 (description
2886 "This library contains functions that calculate various statistics of
2887 differential expression for microarray data, including t statistics, fold
2888 change, F statistics, SAM, moderated t and F statistics and B statistics. It
2889 also implements a new methodology called DEDS (Differential Expression via
2890 Distance Summary), which selects differentially expressed genes by integrating
2891 and summarizing a set of statistics using a weighted distance approach.")
2892 ;; Any version of the LGPL.
2893 (license license:lgpl3+)))
2894
2895 ;; This is a CRAN package, but since it depends on a Bioconductor package we
2896 ;; put it here.
2897 (define-public r-nbpseq
2898 (package
2899 (name "r-nbpseq")
2900 (version "0.3.0")
2901 (source
2902 (origin
2903 (method url-fetch)
2904 (uri (cran-uri "NBPSeq" version))
2905 (sha256
2906 (base32
2907 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
2908 (properties `((upstream-name . "NBPSeq")))
2909 (build-system r-build-system)
2910 (propagated-inputs
2911 `(("r-qvalue" ,r-qvalue)))
2912 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
2913 (synopsis "Negative binomial models for RNA-Seq data")
2914 (description
2915 "This package provides negative binomial models for two-group comparisons
2916 and regression inferences from RNA-sequencing data.")
2917 (license license:gpl2)))
2918
2919 (define-public r-ebseq
2920 (package
2921 (name "r-ebseq")
2922 (version "1.30.0")
2923 (source
2924 (origin
2925 (method url-fetch)
2926 (uri (bioconductor-uri "EBSeq" version))
2927 (sha256
2928 (base32
2929 "1x2489xaqg85v7n3yhqs0nh9ha6dn4m167dkc6akzig4xivwjjny"))))
2930 (properties `((upstream-name . "EBSeq")))
2931 (build-system r-build-system)
2932 (propagated-inputs
2933 `(("r-blockmodeling" ,r-blockmodeling)
2934 ("r-gplots" ,r-gplots)
2935 ("r-testthat" ,r-testthat)))
2936 (home-page "https://bioconductor.org/packages/EBSeq")
2937 (synopsis "Differential expression analysis of RNA-seq data")
2938 (description
2939 "This package provides tools for differential expression analysis at both
2940 gene and isoform level using RNA-seq data")
2941 (license license:artistic2.0)))
2942
2943 (define-public r-karyoploter
2944 (package
2945 (name "r-karyoploter")
2946 (version "1.16.0")
2947 (source (origin
2948 (method url-fetch)
2949 (uri (bioconductor-uri "karyoploteR" version))
2950 (sha256
2951 (base32
2952 "1agw49mckm3g33igqdp9lr8a4ky8nhivaxrs7d00dvzk0diqwdb2"))))
2953 (build-system r-build-system)
2954 (propagated-inputs
2955 `(("r-annotationdbi" ,r-annotationdbi)
2956 ("r-bamsignals" ,r-bamsignals)
2957 ("r-bezier" ,r-bezier)
2958 ("r-biovizbase" ,r-biovizbase)
2959 ("r-digest" ,r-digest)
2960 ("r-genomeinfodb" ,r-genomeinfodb)
2961 ("r-genomicfeatures" ,r-genomicfeatures)
2962 ("r-genomicranges" ,r-genomicranges)
2963 ("r-iranges" ,r-iranges)
2964 ("r-memoise" ,r-memoise)
2965 ("r-regioner" ,r-regioner)
2966 ("r-rsamtools" ,r-rsamtools)
2967 ("r-rtracklayer" ,r-rtracklayer)
2968 ("r-s4vectors" ,r-s4vectors)
2969 ("r-variantannotation" ,r-variantannotation)))
2970 (native-inputs
2971 `(("r-knitr" ,r-knitr)))
2972 (home-page "https://bioconductor.org/packages/karyoploteR/")
2973 (synopsis "Plot customizable linear genomes displaying arbitrary data")
2974 (description "This package creates karyotype plots of arbitrary genomes and
2975 offers a complete set of functions to plot arbitrary data on them. It mimics
2976 many R base graphics functions coupling them with a coordinate change function
2977 automatically mapping the chromosome and data coordinates into the plot
2978 coordinates.")
2979 (license license:artistic2.0)))
2980
2981 (define-public r-lpsymphony
2982 (package
2983 (name "r-lpsymphony")
2984 (version "1.18.0")
2985 (source
2986 (origin
2987 (method url-fetch)
2988 (uri (bioconductor-uri "lpsymphony" version))
2989 (sha256
2990 (base32
2991 "0f9qjfv7rp1y3mwscnjz3pph7m40zgz55xcdhyii6k1iw2vyaxx9"))))
2992 (build-system r-build-system)
2993 (inputs
2994 `(("zlib" ,zlib)))
2995 (native-inputs
2996 `(("pkg-config" ,pkg-config)
2997 ("r-knitr" ,r-knitr)))
2998 (home-page "https://r-forge.r-project.org/projects/rsymphony")
2999 (synopsis "Symphony integer linear programming solver in R")
3000 (description
3001 "This package was derived from Rsymphony. The package provides an R
3002 interface to SYMPHONY, a linear programming solver written in C++. The main
3003 difference between this package and Rsymphony is that it includes the solver
3004 source code, while Rsymphony expects to find header and library files on the
3005 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
3006 to install interface to SYMPHONY.")
3007 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
3008 ;; lpsimphony is released under the same terms.
3009 (license license:epl1.0)))
3010
3011 (define-public r-ihw
3012 (package
3013 (name "r-ihw")
3014 (version "1.18.0")
3015 (source
3016 (origin
3017 (method url-fetch)
3018 (uri (bioconductor-uri "IHW" version))
3019 (sha256
3020 (base32
3021 "04szg3bj5cjixxcp8j3inmj0fzk2mg8gp2w2b33x0im8ik24qiw0"))))
3022 (properties `((upstream-name . "IHW")))
3023 (build-system r-build-system)
3024 (propagated-inputs
3025 `(("r-biocgenerics" ,r-biocgenerics)
3026 ("r-fdrtool" ,r-fdrtool)
3027 ("r-lpsymphony" ,r-lpsymphony)
3028 ("r-slam" ,r-slam)))
3029 (native-inputs
3030 `(("r-knitr" ,r-knitr)))
3031 (home-page "https://bioconductor.org/packages/IHW")
3032 (synopsis "Independent hypothesis weighting")
3033 (description
3034 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
3035 procedure that increases power compared to the method of Benjamini and
3036 Hochberg by assigning data-driven weights to each hypothesis. The input to
3037 IHW is a two-column table of p-values and covariates. The covariate can be
3038 any continuous-valued or categorical variable that is thought to be
3039 informative on the statistical properties of each hypothesis test, while it is
3040 independent of the p-value under the null hypothesis.")
3041 (license license:artistic2.0)))
3042
3043 (define-public r-icobra
3044 (package
3045 (name "r-icobra")
3046 (version "1.18.0")
3047 (source
3048 (origin
3049 (method url-fetch)
3050 (uri (bioconductor-uri "iCOBRA" version))
3051 (sha256
3052 (base32
3053 "0knqvvfi5y53jk8s2g2bqgxnh2pbdf38676fk7pkdp1r2j6cbi3s"))))
3054 (properties `((upstream-name . "iCOBRA")))
3055 (build-system r-build-system)
3056 (propagated-inputs
3057 `(("r-dplyr" ,r-dplyr)
3058 ("r-dt" ,r-dt)
3059 ("r-ggplot2" ,r-ggplot2)
3060 ("r-limma" ,r-limma)
3061 ("r-reshape2" ,r-reshape2)
3062 ("r-rocr" ,r-rocr)
3063 ("r-scales" ,r-scales)
3064 ("r-shiny" ,r-shiny)
3065 ("r-shinybs" ,r-shinybs)
3066 ("r-shinydashboard" ,r-shinydashboard)
3067 ("r-upsetr" ,r-upsetr)))
3068 (native-inputs
3069 `(("r-knitr" ,r-knitr)))
3070 (home-page "https://bioconductor.org/packages/iCOBRA")
3071 (synopsis "Comparison and visualization of ranking and assignment methods")
3072 (description
3073 "This package provides functions for calculation and visualization of
3074 performance metrics for evaluation of ranking and binary
3075 classification (assignment) methods. It also contains a Shiny application for
3076 interactive exploration of results.")
3077 (license license:gpl2+)))
3078
3079 (define-public r-mast
3080 (package
3081 (name "r-mast")
3082 (version "1.16.0")
3083 (source
3084 (origin
3085 (method url-fetch)
3086 (uri (bioconductor-uri "MAST" version))
3087 (sha256
3088 (base32
3089 "11qr7n9i4masqz0yzikddchyn223m8dy6zv461dly07fd43qi9mn"))))
3090 (properties `((upstream-name . "MAST")))
3091 (build-system r-build-system)
3092 (propagated-inputs
3093 `(("r-abind" ,r-abind)
3094 ("r-biobase" ,r-biobase)
3095 ("r-biocgenerics" ,r-biocgenerics)
3096 ("r-data-table" ,r-data-table)
3097 ("r-ggplot2" ,r-ggplot2)
3098 ("r-plyr" ,r-plyr)
3099 ("r-progress" ,r-progress)
3100 ("r-reshape2" ,r-reshape2)
3101 ("r-s4vectors" ,r-s4vectors)
3102 ("r-singlecellexperiment" ,r-singlecellexperiment)
3103 ("r-stringr" ,r-stringr)
3104 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3105 (native-inputs
3106 `(("r-knitr" ,r-knitr)))
3107 (home-page "https://github.com/RGLab/MAST/")
3108 (synopsis "Model-based analysis of single cell transcriptomics")
3109 (description
3110 "This package provides methods and models for handling zero-inflated
3111 single cell assay data.")
3112 (license license:gpl2+)))
3113
3114 (define-public r-monocle
3115 (package
3116 (name "r-monocle")
3117 (version "2.18.0")
3118 (source
3119 (origin
3120 (method url-fetch)
3121 (uri (bioconductor-uri "monocle" version))
3122 (sha256
3123 (base32
3124 "1k3hwi9aspjy75arigg7i1w7ygf112y12cndibf2bhpz2phzwslx"))))
3125 (build-system r-build-system)
3126 (propagated-inputs
3127 `(("r-biobase" ,r-biobase)
3128 ("r-biocgenerics" ,r-biocgenerics)
3129 ("r-biocviews" ,r-biocviews)
3130 ("r-cluster" ,r-cluster)
3131 ("r-combinat" ,r-combinat)
3132 ("r-ddrtree" ,r-ddrtree)
3133 ("r-densityclust" ,r-densityclust)
3134 ("r-dplyr" ,r-dplyr)
3135 ("r-fastica" ,r-fastica)
3136 ("r-ggplot2" ,r-ggplot2)
3137 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
3138 ("r-igraph" ,r-igraph)
3139 ("r-irlba" ,r-irlba)
3140 ("r-limma" ,r-limma)
3141 ("r-mass" ,r-mass)
3142 ("r-matrix" ,r-matrix)
3143 ("r-matrixstats" ,r-matrixstats)
3144 ("r-pheatmap" ,r-pheatmap)
3145 ("r-plyr" ,r-plyr)
3146 ("r-proxy" ,r-proxy)
3147 ("r-qlcmatrix" ,r-qlcmatrix)
3148 ("r-rann" ,r-rann)
3149 ("r-rcpp" ,r-rcpp)
3150 ("r-reshape2" ,r-reshape2)
3151 ("r-rtsne" ,r-rtsne)
3152 ("r-slam" ,r-slam)
3153 ("r-stringr" ,r-stringr)
3154 ("r-tibble" ,r-tibble)
3155 ("r-vgam" ,r-vgam)
3156 ("r-viridis" ,r-viridis)))
3157 (native-inputs
3158 `(("r-knitr" ,r-knitr)))
3159 (home-page "https://bioconductor.org/packages/monocle")
3160 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
3161 (description
3162 "Monocle performs differential expression and time-series analysis for
3163 single-cell expression experiments. It orders individual cells according to
3164 progress through a biological process, without knowing ahead of time which
3165 genes define progress through that process. Monocle also performs
3166 differential expression analysis, clustering, visualization, and other useful
3167 tasks on single cell expression data. It is designed to work with RNA-Seq and
3168 qPCR data, but could be used with other types as well.")
3169 (license license:artistic2.0)))
3170
3171 (define-public r-monocle3
3172 (package
3173 (name "r-monocle3")
3174 (version "0.1.2")
3175 (source
3176 (origin
3177 (method git-fetch)
3178 (uri (git-reference
3179 (url "https://github.com/cole-trapnell-lab/monocle3")
3180 (commit version)))
3181 (file-name (git-file-name name version))
3182 (sha256
3183 (base32
3184 "1cjxqfw3qvy269hsf5v80d4kshl932wrl949iayas02saj6f70ls"))))
3185 (build-system r-build-system)
3186 (propagated-inputs
3187 `(("r-biobase" ,r-biobase)
3188 ("r-biocgenerics" ,r-biocgenerics)
3189 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
3190 ("r-dplyr" ,r-dplyr)
3191 ("r-ggplot2" ,r-ggplot2)
3192 ("r-ggrepel" ,r-ggrepel)
3193 ("r-grr" ,r-grr)
3194 ("r-htmlwidgets" ,r-htmlwidgets)
3195 ("r-igraph" ,r-igraph)
3196 ("r-irlba" ,r-irlba)
3197 ("r-limma" ,r-limma)
3198 ("r-lmtest" ,r-lmtest)
3199 ("r-mass" ,r-mass)
3200 ("r-matrix" ,r-matrix)
3201 ("r-matrix-utils" ,r-matrix-utils)
3202 ("r-pbapply" ,r-pbapply)
3203 ("r-pbmcapply" ,r-pbmcapply)
3204 ("r-pheatmap" ,r-pheatmap)
3205 ("r-plotly" ,r-plotly)
3206 ("r-pryr" ,r-pryr)
3207 ("r-proxy" ,r-proxy)
3208 ("r-pscl" ,r-pscl)
3209 ("r-purrr" ,r-purrr)
3210 ("r-rann" ,r-rann)
3211 ("r-rcpp" ,r-rcpp)
3212 ("r-rcppparallel" ,r-rcppparallel)
3213 ("r-reshape2" ,r-reshape2)
3214 ("r-reticulate" ,r-reticulate)
3215 ("r-rhpcblasctl" ,r-rhpcblasctl)
3216 ("r-rtsne" ,r-rtsne)
3217 ("r-shiny" ,r-shiny)
3218 ("r-slam" ,r-slam)
3219 ("r-spdep" ,r-spdep)
3220 ("r-speedglm" ,r-speedglm)
3221 ("r-stringr" ,r-stringr)
3222 ("r-singlecellexperiment" ,r-singlecellexperiment)
3223 ("r-tibble" ,r-tibble)
3224 ("r-tidyr" ,r-tidyr)
3225 ("r-uwot" ,r-uwot)
3226 ("r-viridis" ,r-viridis)))
3227 (home-page "https://github.com/cole-trapnell-lab/monocle3")
3228 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
3229 (description
3230 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
3231 (license license:expat)))
3232
3233 (define-public r-noiseq
3234 (package
3235 (name "r-noiseq")
3236 (version "2.34.0")
3237 (source
3238 (origin
3239 (method url-fetch)
3240 (uri (bioconductor-uri "NOISeq" version))
3241 (sha256
3242 (base32
3243 "08qlavakclgzk345bliam4cfjhsy39n4s6m1biqpq94n9qp00x8f"))))
3244 (properties `((upstream-name . "NOISeq")))
3245 (build-system r-build-system)
3246 (propagated-inputs
3247 `(("r-biobase" ,r-biobase)
3248 ("r-matrix" ,r-matrix)))
3249 (home-page "https://bioconductor.org/packages/NOISeq")
3250 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
3251 (description
3252 "This package provides tools to support the analysis of RNA-seq
3253 expression data or other similar kind of data. It provides exploratory plots
3254 to evaluate saturation, count distribution, expression per chromosome, type of
3255 detected features, features length, etc. It also supports the analysis of
3256 differential expression between two experimental conditions with no parametric
3257 assumptions.")
3258 (license license:artistic2.0)))
3259
3260 (define-public r-scdd
3261 (package
3262 (name "r-scdd")
3263 (version "1.14.0")
3264 (source
3265 (origin
3266 (method url-fetch)
3267 (uri (bioconductor-uri "scDD" version))
3268 (sha256
3269 (base32
3270 "07l07fq5633ccq5d3l35dm34pwvaqfa3b3qwpn5v5xn99f5hfz0g"))))
3271 (properties `((upstream-name . "scDD")))
3272 (build-system r-build-system)
3273 (propagated-inputs
3274 `(("r-arm" ,r-arm)
3275 ("r-biocparallel" ,r-biocparallel)
3276 ("r-ebseq" ,r-ebseq)
3277 ("r-fields" ,r-fields)
3278 ("r-ggplot2" ,r-ggplot2)
3279 ("r-mclust" ,r-mclust)
3280 ("r-outliers" ,r-outliers)
3281 ("r-s4vectors" ,r-s4vectors)
3282 ("r-scran" ,r-scran)
3283 ("r-singlecellexperiment" ,r-singlecellexperiment)
3284 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3285 (native-inputs
3286 `(("r-knitr" ,r-knitr)))
3287 (home-page "https://github.com/kdkorthauer/scDD")
3288 (synopsis "Mixture modeling of single-cell RNA-seq data")
3289 (description
3290 "This package implements a method to analyze single-cell RNA-seq data
3291 utilizing flexible Dirichlet Process mixture models. Genes with differential
3292 distributions of expression are classified into several interesting patterns
3293 of differences between two conditions. The package also includes functions
3294 for simulating data with these patterns from negative binomial
3295 distributions.")
3296 (license license:gpl2)))
3297
3298 (define-public r-scone
3299 (package
3300 (name "r-scone")
3301 (version "1.14.0")
3302 (source
3303 (origin
3304 (method url-fetch)
3305 (uri (bioconductor-uri "scone" version))
3306 (sha256
3307 (base32
3308 "1lnyxcrw3kn5gi3n59dwdhkqps58cjxfknsjsj53qz5rv8iiqz73"))))
3309 (build-system r-build-system)
3310 (propagated-inputs
3311 `(("r-aroma-light" ,r-aroma-light)
3312 ("r-biocparallel" ,r-biocparallel)
3313 ("r-boot" ,r-boot)
3314 ("r-class" ,r-class)
3315 ("r-cluster" ,r-cluster)
3316 ("r-compositions" ,r-compositions)
3317 ("r-diptest" ,r-diptest)
3318 ("r-edger" ,r-edger)
3319 ("r-fpc" ,r-fpc)
3320 ("r-gplots" ,r-gplots)
3321 ("r-hexbin" ,r-hexbin)
3322 ("r-limma" ,r-limma)
3323 ("r-matrixstats" ,r-matrixstats)
3324 ("r-mixtools" ,r-mixtools)
3325 ("r-rarpack" ,r-rarpack)
3326 ("r-rcolorbrewer" ,r-rcolorbrewer)
3327 ("r-rhdf5" ,r-rhdf5)
3328 ("r-ruvseq" ,r-ruvseq)
3329 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3330 (native-inputs
3331 `(("r-knitr" ,r-knitr)))
3332 (home-page "https://bioconductor.org/packages/scone")
3333 (synopsis "Single cell overview of normalized expression data")
3334 (description
3335 "SCONE is an R package for comparing and ranking the performance of
3336 different normalization schemes for single-cell RNA-seq and other
3337 high-throughput analyses.")
3338 (license license:artistic2.0)))
3339
3340 (define-public r-geoquery
3341 (package
3342 (name "r-geoquery")
3343 (version "2.58.0")
3344 (source
3345 (origin
3346 (method url-fetch)
3347 (uri (bioconductor-uri "GEOquery" version))
3348 (sha256
3349 (base32
3350 "1jzhgnd404wkz978vbqzwbgixr7yk98c7s9q1fzlyax4f8l0cpi4"))))
3351 (properties `((upstream-name . "GEOquery")))
3352 (build-system r-build-system)
3353 (propagated-inputs
3354 `(("r-biobase" ,r-biobase)
3355 ("r-dplyr" ,r-dplyr)
3356 ("r-httr" ,r-httr)
3357 ("r-limma" ,r-limma)
3358 ("r-magrittr" ,r-magrittr)
3359 ("r-readr" ,r-readr)
3360 ("r-tidyr" ,r-tidyr)
3361 ("r-xml2" ,r-xml2)))
3362 (native-inputs
3363 `(("r-knitr" ,r-knitr)))
3364 (home-page "https://github.com/seandavi/GEOquery/")
3365 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
3366 (description
3367 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
3368 microarray data. Given the rich and varied nature of this resource, it is
3369 only natural to want to apply BioConductor tools to these data. GEOquery is
3370 the bridge between GEO and BioConductor.")
3371 (license license:gpl2)))
3372
3373 (define-public r-illuminaio
3374 (package
3375 (name "r-illuminaio")
3376 (version "0.32.0")
3377 (source
3378 (origin
3379 (method url-fetch)
3380 (uri (bioconductor-uri "illuminaio" version))
3381 (sha256
3382 (base32
3383 "1yqm2fqw5ka7qywbal3p7axlwm1r0wibsr33n5xjma1dl9pi8fay"))))
3384 (build-system r-build-system)
3385 (propagated-inputs
3386 `(("r-base64" ,r-base64)))
3387 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
3388 (synopsis "Parse Illumina microarray output files")
3389 (description
3390 "This package provides tools for parsing Illumina's microarray output
3391 files, including IDAT.")
3392 (license license:gpl2)))
3393
3394 (define-public r-siggenes
3395 (package
3396 (name "r-siggenes")
3397 (version "1.64.0")
3398 (source
3399 (origin
3400 (method url-fetch)
3401 (uri (bioconductor-uri "siggenes" version))
3402 (sha256
3403 (base32
3404 "08wi2i6pqx06v13533y3mpli5fb637h0xfwcwy67ya9j2ygypv7w"))))
3405 (build-system r-build-system)
3406 (propagated-inputs
3407 `(("r-biobase" ,r-biobase)
3408 ("r-multtest" ,r-multtest)
3409 ("r-scrime" ,r-scrime)))
3410 (home-page "https://bioconductor.org/packages/siggenes/")
3411 (synopsis
3412 "Multiple testing using SAM and Efron's empirical Bayes approaches")
3413 (description
3414 "This package provides tools for the identification of differentially
3415 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
3416 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
3417 Bayes Analyses of Microarrays} (EBAM).")
3418 (license license:lgpl2.0+)))
3419
3420 (define-public r-bumphunter
3421 (package
3422 (name "r-bumphunter")
3423 (version "1.32.0")
3424 (source
3425 (origin
3426 (method url-fetch)
3427 (uri (bioconductor-uri "bumphunter" version))
3428 (sha256
3429 (base32
3430 "0hfl820kfxydv5kpgyly7sibv2sp6dqsmc78qm33n81w4z4j0mkk"))))
3431 (build-system r-build-system)
3432 (propagated-inputs
3433 `(("r-annotationdbi" ,r-annotationdbi)
3434 ("r-biocgenerics" ,r-biocgenerics)
3435 ("r-dorng" ,r-dorng)
3436 ("r-foreach" ,r-foreach)
3437 ("r-genomeinfodb" ,r-genomeinfodb)
3438 ("r-genomicfeatures" ,r-genomicfeatures)
3439 ("r-genomicranges" ,r-genomicranges)
3440 ("r-iranges" ,r-iranges)
3441 ("r-iterators" ,r-iterators)
3442 ("r-limma" ,r-limma)
3443 ("r-locfit" ,r-locfit)
3444 ("r-matrixstats" ,r-matrixstats)
3445 ("r-s4vectors" ,r-s4vectors)))
3446 (home-page "https://github.com/ririzarr/bumphunter")
3447 (synopsis "Find bumps in genomic data")
3448 (description
3449 "This package provides tools for finding bumps in genomic data in order
3450 to identify differentially methylated regions in epigenetic epidemiology
3451 studies.")
3452 (license license:artistic2.0)))
3453
3454 (define-public r-minfi
3455 (package
3456 (name "r-minfi")
3457 (version "1.36.0")
3458 (source
3459 (origin
3460 (method url-fetch)
3461 (uri (bioconductor-uri "minfi" version))
3462 (sha256
3463 (base32
3464 "1x3ksp6syl54hds7wgm4p9yj4mznhhhhk20ijn3i2jc3k8xqcqfi"))))
3465 (build-system r-build-system)
3466 (propagated-inputs
3467 `(("r-beanplot" ,r-beanplot)
3468 ("r-biobase" ,r-biobase)
3469 ("r-biocgenerics" ,r-biocgenerics)
3470 ("r-biocparallel" ,r-biocparallel)
3471 ("r-biostrings" ,r-biostrings)
3472 ("r-bumphunter" ,r-bumphunter)
3473 ("r-data-table" ,r-data-table)
3474 ("r-delayedarray" ,r-delayedarray)
3475 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
3476 ("r-genefilter" ,r-genefilter)
3477 ("r-genomeinfodb" ,r-genomeinfodb)
3478 ("r-genomicranges" ,r-genomicranges)
3479 ("r-geoquery" ,r-geoquery)
3480 ("r-hdf5array" ,r-hdf5array)
3481 ("r-illuminaio" ,r-illuminaio)
3482 ("r-iranges" ,r-iranges)
3483 ("r-lattice" ,r-lattice)
3484 ("r-limma" ,r-limma)
3485 ("r-mass" ,r-mass)
3486 ("r-mclust" ,r-mclust)
3487 ("r-nlme" ,r-nlme)
3488 ("r-nor1mix" ,r-nor1mix)
3489 ("r-preprocesscore" ,r-preprocesscore)
3490 ("r-quadprog" ,r-quadprog)
3491 ("r-rcolorbrewer" ,r-rcolorbrewer)
3492 ("r-reshape" ,r-reshape)
3493 ("r-s4vectors" ,r-s4vectors)
3494 ("r-siggenes" ,r-siggenes)
3495 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3496 (native-inputs
3497 `(("r-knitr" ,r-knitr)))
3498 (home-page "https://github.com/hansenlab/minfi")
3499 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
3500 (description
3501 "This package provides tools to analyze and visualize Illumina Infinium
3502 methylation arrays.")
3503 (license license:artistic2.0)))
3504
3505 (define-public r-methylumi
3506 (package
3507 (name "r-methylumi")
3508 (version "2.36.0")
3509 (source
3510 (origin
3511 (method url-fetch)
3512 (uri (bioconductor-uri "methylumi" version))
3513 (sha256
3514 (base32
3515 "00w5affxzirf6ffiznk33papwwvwsk2zgy6xvsx7iaf5kvnak2nh"))))
3516 (build-system r-build-system)
3517 (propagated-inputs
3518 `(("r-annotate" ,r-annotate)
3519 ("r-annotationdbi" ,r-annotationdbi)
3520 ("r-biobase" ,r-biobase)
3521 ("r-biocgenerics" ,r-biocgenerics)
3522 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
3523 ("r-genefilter" ,r-genefilter)
3524 ("r-genomeinfodb" ,r-genomeinfodb)
3525 ("r-genomicranges" ,r-genomicranges)
3526 ("r-ggplot2" ,r-ggplot2)
3527 ("r-illuminaio" ,r-illuminaio)
3528 ("r-iranges" ,r-iranges)
3529 ("r-lattice" ,r-lattice)
3530 ("r-matrixstats" ,r-matrixstats)
3531 ("r-minfi" ,r-minfi)
3532 ("r-reshape2" ,r-reshape2)
3533 ("r-s4vectors" ,r-s4vectors)
3534 ("r-scales" ,r-scales)
3535 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3536 (native-inputs
3537 `(("r-knitr" ,r-knitr)))
3538 (home-page "https://bioconductor.org/packages/methylumi")
3539 (synopsis "Handle Illumina methylation data")
3540 (description
3541 "This package provides classes for holding and manipulating Illumina
3542 methylation data. Based on eSet, it can contain MIAME information, sample
3543 information, feature information, and multiple matrices of data. An
3544 \"intelligent\" import function, methylumiR can read the Illumina text files
3545 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
3546 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
3547 background correction, and quality control features for GoldenGate, Infinium,
3548 and Infinium HD arrays are also included.")
3549 (license license:gpl2)))
3550
3551 (define-public r-lumi
3552 (package
3553 (name "r-lumi")
3554 (version "2.42.0")
3555 (source
3556 (origin
3557 (method url-fetch)
3558 (uri (bioconductor-uri "lumi" version))
3559 (sha256
3560 (base32
3561 "19asap8vhm3g8hyvpr8l7mw071dsa1d95wx46lh8m6achffngqv3"))))
3562 (build-system r-build-system)
3563 (propagated-inputs
3564 `(("r-affy" ,r-affy)
3565 ("r-annotate" ,r-annotate)
3566 ("r-annotationdbi" ,r-annotationdbi)
3567 ("r-biobase" ,r-biobase)
3568 ("r-dbi" ,r-dbi)
3569 ("r-genomicfeatures" ,r-genomicfeatures)
3570 ("r-genomicranges" ,r-genomicranges)
3571 ("r-kernsmooth" ,r-kernsmooth)
3572 ("r-lattice" ,r-lattice)
3573 ("r-mass" ,r-mass)
3574 ("r-methylumi" ,r-methylumi)
3575 ("r-mgcv" ,r-mgcv)
3576 ("r-nleqslv" ,r-nleqslv)
3577 ("r-preprocesscore" ,r-preprocesscore)
3578 ("r-rsqlite" ,r-rsqlite)))
3579 (home-page "https://bioconductor.org/packages/lumi")
3580 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
3581 (description
3582 "The lumi package provides an integrated solution for the Illumina
3583 microarray data analysis. It includes functions of Illumina
3584 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
3585 variance stabilization, normalization and gene annotation at the probe level.
3586 It also includes the functions of processing Illumina methylation microarrays,
3587 especially Illumina Infinium methylation microarrays.")
3588 (license license:lgpl2.0+)))
3589
3590 (define-public r-linnorm
3591 (package
3592 (name "r-linnorm")
3593 (version "2.14.0")
3594 (source
3595 (origin
3596 (method url-fetch)
3597 (uri (bioconductor-uri "Linnorm" version))
3598 (sha256
3599 (base32
3600 "1is1kp5av01kqqph16xl7w1dqbyd0q85pgqfv9gqkk8m53635cz3"))))
3601 (properties `((upstream-name . "Linnorm")))
3602 (build-system r-build-system)
3603 (propagated-inputs
3604 `(("r-amap" ,r-amap)
3605 ("r-apcluster" ,r-apcluster)
3606 ("r-ellipse" ,r-ellipse)
3607 ("r-fastcluster" ,r-fastcluster)
3608 ("r-fpc" ,r-fpc)
3609 ("r-ggdendro" ,r-ggdendro)
3610 ("r-ggplot2" ,r-ggplot2)
3611 ("r-gmodels" ,r-gmodels)
3612 ("r-igraph" ,r-igraph)
3613 ("r-limma" ,r-limma)
3614 ("r-mass" ,r-mass)
3615 ("r-mclust" ,r-mclust)
3616 ("r-rcpp" ,r-rcpp)
3617 ("r-rcpparmadillo" ,r-rcpparmadillo)
3618 ("r-rtsne" ,r-rtsne)
3619 ("r-statmod" ,r-statmod)
3620 ("r-vegan" ,r-vegan)
3621 ("r-zoo" ,r-zoo)))
3622 (native-inputs
3623 `(("r-knitr" ,r-knitr)))
3624 (home-page "http://www.jjwanglab.org/Linnorm/")
3625 (synopsis "Linear model and normality based transformation method")
3626 (description
3627 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
3628 count data or any large scale count data. It transforms such datasets for
3629 parametric tests. In addition to the transformtion function (@code{Linnorm}),
3630 the following pipelines are implemented:
3631
3632 @enumerate
3633 @item Library size/batch effect normalization (@code{Linnorm.Norm})
3634 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
3635 clustering or hierarchical clustering (@code{Linnorm.tSNE},
3636 @code{Linnorm.PCA}, @code{Linnorm.HClust})
3637 @item Differential expression analysis or differential peak detection using
3638 limma (@code{Linnorm.limma})
3639 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
3640 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
3641 @item Stable gene selection for scRNA-seq data; for users without or who do
3642 not want to rely on spike-in genes (@code{Linnorm.SGenes})
3643 @item Data imputation (@code{Linnorm.DataImput}).
3644 @end enumerate
3645
3646 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
3647 @code{RnaXSim} function is included for simulating RNA-seq data for the
3648 evaluation of DEG analysis methods.")
3649 (license license:expat)))
3650
3651 (define-public r-ioniser
3652 (package
3653 (name "r-ioniser")
3654 (version "2.14.0")
3655 (source
3656 (origin
3657 (method url-fetch)
3658 (uri (bioconductor-uri "IONiseR" version))
3659 (sha256
3660 (base32
3661 "0cfa64d3qv881sa9d665rfki91jaz2spg0zfrb24m37948qzk1lx"))))
3662 (properties `((upstream-name . "IONiseR")))
3663 (build-system r-build-system)
3664 (propagated-inputs
3665 `(("r-biocgenerics" ,r-biocgenerics)
3666 ("r-biocparallel" ,r-biocparallel)
3667 ("r-biostrings" ,r-biostrings)
3668 ("r-bit64" ,r-bit64)
3669 ("r-dplyr" ,r-dplyr)
3670 ("r-ggplot2" ,r-ggplot2)
3671 ("r-magrittr" ,r-magrittr)
3672 ("r-rhdf5" ,r-rhdf5)
3673 ("r-shortread" ,r-shortread)
3674 ("r-stringr" ,r-stringr)
3675 ("r-tibble" ,r-tibble)
3676 ("r-tidyr" ,r-tidyr)
3677 ("r-xvector" ,r-xvector)))
3678 (native-inputs
3679 `(("r-knitr" ,r-knitr)))
3680 (home-page "https://bioconductor.org/packages/IONiseR/")
3681 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
3682 (description
3683 "IONiseR provides tools for the quality assessment of Oxford Nanopore
3684 MinION data. It extracts summary statistics from a set of fast5 files and can
3685 be used either before or after base calling. In addition to standard
3686 summaries of the read-types produced, it provides a number of plots for
3687 visualising metrics relative to experiment run time or spatially over the
3688 surface of a flowcell.")
3689 (license license:expat)))
3690
3691 ;; This is a CRAN package, but it depends on packages from Bioconductor.
3692 (define-public r-gkmsvm
3693 (package
3694 (name "r-gkmsvm")
3695 (version "0.81.0")
3696 (source
3697 (origin
3698 (method url-fetch)
3699 (uri (cran-uri "gkmSVM" version))
3700 (sha256
3701 (base32
3702 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
3703 (properties `((upstream-name . "gkmSVM")))
3704 (build-system r-build-system)
3705 (propagated-inputs
3706 `(("r-kernlab" ,r-kernlab)
3707 ("r-rcpp" ,r-rcpp)
3708 ("r-rocr" ,r-rocr)
3709 ("r-seqinr" ,r-seqinr)))
3710 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
3711 (synopsis "Gapped-kmer support vector machine")
3712 (description
3713 "This R package provides tools for training gapped-kmer SVM classifiers
3714 for DNA and protein sequences. This package supports several sequence
3715 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
3716 (license license:gpl2+)))
3717
3718 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
3719 (define-public r-mutoss
3720 (package
3721 (name "r-mutoss")
3722 (version "0.1-12")
3723 (source
3724 (origin
3725 (method url-fetch)
3726 (uri (cran-uri "mutoss" version))
3727 (sha256
3728 (base32
3729 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
3730 (properties `((upstream-name . "mutoss")))
3731 (build-system r-build-system)
3732 (propagated-inputs
3733 `(("r-multcomp" ,r-multcomp)
3734 ("r-multtest" ,r-multtest)
3735 ("r-mvtnorm" ,r-mvtnorm)
3736 ("r-plotrix" ,r-plotrix)))
3737 (home-page "https://github.com/kornl/mutoss/")
3738 (synopsis "Unified multiple testing procedures")
3739 (description
3740 "This package is designed to ease the application and comparison of
3741 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
3742 are standardized and usable by the accompanying mutossGUI package.")
3743 ;; Any version of the GPL.
3744 (license (list license:gpl2+ license:gpl3+))))
3745
3746 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
3747 ;; from Bioconductor, so we put it here.
3748 (define-public r-metap
3749 (package
3750 (name "r-metap")
3751 (version "1.3")
3752 (source
3753 (origin
3754 (method url-fetch)
3755 (uri (cran-uri "metap" version))
3756 (sha256
3757 (base32
3758 "1jmmmmjiklaxfl604hwqil193ydaghvd5jv8xsr4bx3pzn5i9kvz"))))
3759 (build-system r-build-system)
3760 (propagated-inputs
3761 `(("r-lattice" ,r-lattice)
3762 ("r-mutoss" ,r-mutoss)
3763 ("r-rdpack" ,r-rdpack)
3764 ("r-tfisher" ,r-tfisher)))
3765 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3766 (synopsis "Meta-analysis of significance values")
3767 (description
3768 "The canonical way to perform meta-analysis involves using effect sizes.
3769 When they are not available this package provides a number of methods for
3770 meta-analysis of significance values including the methods of Edgington,
3771 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3772 published results; and a routine for graphical display.")
3773 (license license:gpl2)))
3774
3775 (define-public r-triform
3776 (package
3777 (name "r-triform")
3778 (version "1.29.0")
3779 (source
3780 (origin
3781 (method url-fetch)
3782 (uri (bioconductor-uri "triform" version))
3783 (sha256
3784 (base32
3785 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
3786 (build-system r-build-system)
3787 (propagated-inputs
3788 `(("r-biocgenerics" ,r-biocgenerics)
3789 ("r-iranges" ,r-iranges)
3790 ("r-yaml" ,r-yaml)))
3791 (home-page "https://bioconductor.org/packages/triform/")
3792 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
3793 (description
3794 "The Triform algorithm uses model-free statistics to identify peak-like
3795 distributions of TF ChIP sequencing reads, taking advantage of an improved
3796 peak definition in combination with known profile characteristics.")
3797 (license license:gpl2)))
3798
3799 (define-public r-varianttools
3800 (package
3801 (name "r-varianttools")
3802 (version "1.32.0")
3803 (source
3804 (origin
3805 (method url-fetch)
3806 (uri (bioconductor-uri "VariantTools" version))
3807 (sha256
3808 (base32
3809 "1im4g9p419mikkh4v585yf5f23d13chy67znk4g2mii2i1cd1c89"))))
3810 (properties `((upstream-name . "VariantTools")))
3811 (build-system r-build-system)
3812 (propagated-inputs
3813 `(("r-biobase" ,r-biobase)
3814 ("r-biocgenerics" ,r-biocgenerics)
3815 ("r-biocparallel" ,r-biocparallel)
3816 ("r-biostrings" ,r-biostrings)
3817 ("r-bsgenome" ,r-bsgenome)
3818 ("r-genomeinfodb" ,r-genomeinfodb)
3819 ("r-genomicfeatures" ,r-genomicfeatures)
3820 ("r-genomicranges" ,r-genomicranges)
3821 ("r-iranges" ,r-iranges)
3822 ("r-matrix" ,r-matrix)
3823 ("r-rsamtools" ,r-rsamtools)
3824 ("r-rtracklayer" ,r-rtracklayer)
3825 ("r-s4vectors" ,r-s4vectors)
3826 ("r-variantannotation" ,r-variantannotation)))
3827 (home-page "https://bioconductor.org/packages/VariantTools/")
3828 (synopsis "Tools for exploratory analysis of variant calls")
3829 (description
3830 "Explore, diagnose, and compare variant calls using filters. The
3831 VariantTools package supports a workflow for loading data, calling single
3832 sample variants and tumor-specific somatic mutations or other sample-specific
3833 variant types (e.g., RNA editing). Most of the functions operate on
3834 alignments (BAM files) or datasets of called variants. The user is expected
3835 to have already aligned the reads with a separate tool, e.g., GSNAP via
3836 gmapR.")
3837 (license license:artistic2.0)))
3838
3839 (define-public r-heatplus
3840 (package
3841 (name "r-heatplus")
3842 (version "2.36.0")
3843 (source
3844 (origin
3845 (method url-fetch)
3846 (uri (bioconductor-uri "Heatplus" version))
3847 (sha256
3848 (base32
3849 "0vp8y0242k6q07yjk4sg2w7mlk5pgzhjgqkxa79c5ypkyp095a8n"))))
3850 (properties `((upstream-name . "Heatplus")))
3851 (build-system r-build-system)
3852 (propagated-inputs
3853 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
3854 (home-page "https://github.com/alexploner/Heatplus")
3855 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
3856 (description
3857 "This package provides tools to display a rectangular heatmap (intensity
3858 plot) of a data matrix. By default, both samples (columns) and features (row)
3859 of the matrix are sorted according to a hierarchical clustering, and the
3860 corresponding dendrogram is plotted. Optionally, panels with additional
3861 information about samples and features can be added to the plot.")
3862 (license license:gpl2+)))
3863
3864 (define-public r-gosemsim
3865 (package
3866 (name "r-gosemsim")
3867 (version "2.16.1")
3868 (source
3869 (origin
3870 (method url-fetch)
3871 (uri (bioconductor-uri "GOSemSim" version))
3872 (sha256
3873 (base32
3874 "1hk1626172scja2gr6axy98czblz0zljiqgqaknsv2xj6frhxcgs"))))
3875 (properties `((upstream-name . "GOSemSim")))
3876 (build-system r-build-system)
3877 (propagated-inputs
3878 `(("r-annotationdbi" ,r-annotationdbi)
3879 ("r-go-db" ,r-go-db)
3880 ("r-rcpp" ,r-rcpp)))
3881 (native-inputs
3882 `(("r-knitr" ,r-knitr)))
3883 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
3884 (synopsis "GO-terms semantic similarity measures")
3885 (description
3886 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
3887 quantitative ways to compute similarities between genes and gene groups, and
3888 have became important basis for many bioinformatics analysis approaches.
3889 GOSemSim is an R package for semantic similarity computation among GO terms,
3890 sets of GO terms, gene products and gene clusters.")
3891 (license license:artistic2.0)))
3892
3893 (define-public r-anota
3894 (package
3895 (name "r-anota")
3896 (version "1.38.0")
3897 (source
3898 (origin
3899 (method url-fetch)
3900 (uri (bioconductor-uri "anota" version))
3901 (sha256
3902 (base32
3903 "02s061q6dfw1czppqiklb0fz6q0mjyqgxg6926b2dpqpz8hv690x"))))
3904 (build-system r-build-system)
3905 (propagated-inputs
3906 `(("r-multtest" ,r-multtest)
3907 ("r-qvalue" ,r-qvalue)))
3908 (home-page "https://bioconductor.org/packages/anota/")
3909 (synopsis "Analysis of translational activity")
3910 (description
3911 "Genome wide studies of translational control is emerging as a tool to
3912 study various biological conditions. The output from such analysis is both
3913 the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
3914 involved in translation (the actively translating mRNA level) for each mRNA.
3915 The standard analysis of such data strives towards identifying differential
3916 translational between two or more sample classes - i.e. differences in
3917 actively translated mRNA levels that are independent of underlying differences
3918 in cytosolic mRNA levels. This package allows for such analysis using partial
3919 variances and the random variance model. As 10s of thousands of mRNAs are
3920 analyzed in parallel the library performs a number of tests to assure that
3921 the data set is suitable for such analysis.")
3922 (license license:gpl3)))
3923
3924 (define-public r-sigpathway
3925 (package
3926 (name "r-sigpathway")
3927 (version "1.58.0")
3928 (source
3929 (origin
3930 (method url-fetch)
3931 (uri (bioconductor-uri "sigPathway" version))
3932 (sha256
3933 (base32
3934 "1fkw0ss471pllqxyjyif5lr35cr8sqpx31x0ccjp85lm3blws72l"))))
3935 (properties `((upstream-name . "sigPathway")))
3936 (build-system r-build-system)
3937 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
3938 (synopsis "Pathway analysis")
3939 (description
3940 "This package is used to conduct pathway analysis by calculating the NT_k
3941 and NE_k statistics in a statistical framework for determining whether a
3942 specified group of genes for a pathway has a coordinated association with a
3943 phenotype of interest.")
3944 (license license:gpl2)))
3945
3946 (define-public r-fgsea
3947 (package
3948 (name "r-fgsea")
3949 (version "1.16.0")
3950 (source
3951 (origin
3952 (method url-fetch)
3953 (uri (bioconductor-uri "fgsea" version))
3954 (sha256
3955 (base32
3956 "0jmkkayabx3m0lyyc2mxd4vdvv7gv7fbk1r884gplnf2zgsx068n"))))
3957 (build-system r-build-system)
3958 (propagated-inputs
3959 `(("r-bh" ,r-bh)
3960 ("r-biocparallel" ,r-biocparallel)
3961 ("r-data-table" ,r-data-table)
3962 ("r-fastmatch" ,r-fastmatch)
3963 ("r-ggplot2" ,r-ggplot2)
3964 ("r-gridextra" ,r-gridextra)
3965 ("r-matrix" ,r-matrix)
3966 ("r-rcpp" ,r-rcpp)))
3967 (native-inputs
3968 `(("r-knitr" ,r-knitr)))
3969 (home-page "https://github.com/ctlab/fgsea/")
3970 (synopsis "Fast gene set enrichment analysis")
3971 (description
3972 "The package implements an algorithm for fast gene set enrichment
3973 analysis. Using the fast algorithm makes more permutations and gets
3974 more fine grained p-values, which allows using accurate standard approaches
3975 to multiple hypothesis correction.")
3976 (license license:expat)))
3977
3978 (define-public r-dose
3979 (package
3980 (name "r-dose")
3981 (version "3.16.0")
3982 (source
3983 (origin
3984 (method url-fetch)
3985 (uri (bioconductor-uri "DOSE" version))
3986 (sha256
3987 (base32
3988 "149hpf690jls5r5g84sh2hqs10qbqi94syhxfv8n2f800fk7lgy4"))))
3989 (properties `((upstream-name . "DOSE")))
3990 (build-system r-build-system)
3991 (propagated-inputs
3992 `(("r-annotationdbi" ,r-annotationdbi)
3993 ("r-biocparallel" ,r-biocparallel)
3994 ("r-do-db" ,r-do-db)
3995 ("r-fgsea" ,r-fgsea)
3996 ("r-ggplot2" ,r-ggplot2)
3997 ("r-gosemsim" ,r-gosemsim)
3998 ("r-qvalue" ,r-qvalue)
3999 ("r-reshape2" ,r-reshape2)))
4000 (native-inputs
4001 `(("r-knitr" ,r-knitr)))
4002 (home-page "https://guangchuangyu.github.io/software/DOSE/")
4003 (synopsis "Disease ontology semantic and enrichment analysis")
4004 (description
4005 "This package implements five methods proposed by Resnik, Schlicker,
4006 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
4007 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
4008 including hypergeometric model and gene set enrichment analysis are also
4009 implemented for discovering disease associations of high-throughput biological
4010 data.")
4011 (license license:artistic2.0)))
4012
4013 (define-public r-enrichplot
4014 (package
4015 (name "r-enrichplot")
4016 (version "1.10.1")
4017 (source
4018 (origin
4019 (method url-fetch)
4020 (uri (bioconductor-uri "enrichplot" version))
4021 (sha256
4022 (base32
4023 "0h0455plh8bxnpizgfxij9625ff32rs1a51yzpnrf5hl27xbfkdd"))))
4024 (build-system r-build-system)
4025 (propagated-inputs
4026 `(("r-cowplot" ,r-cowplot)
4027 ("r-dose" ,r-dose)
4028 ("r-ggplot2" ,r-ggplot2)
4029 ("r-ggraph" ,r-ggraph)
4030 ("r-gosemsim" ,r-gosemsim)
4031 ("r-igraph" ,r-igraph)
4032 ("r-magrittr" ,r-magrittr)
4033 ("r-plyr" ,r-plyr)
4034 ("r-purrr" ,r-purrr)
4035 ("r-rcolorbrewer" ,r-rcolorbrewer)
4036 ("r-reshape2" ,r-reshape2)
4037 ("r-scatterpie" ,r-scatterpie)
4038 ("r-shadowtext" ,r-shadowtext)))
4039 (native-inputs
4040 `(("r-knitr" ,r-knitr)))
4041 (home-page "https://github.com/GuangchuangYu/enrichplot")
4042 (synopsis "Visualization of functional enrichment result")
4043 (description
4044 "The enrichplot package implements several visualization methods for
4045 interpreting functional enrichment results obtained from ORA or GSEA analyses.
4046 All the visualization methods are developed based on ggplot2 graphics.")
4047 (license license:artistic2.0)))
4048
4049 (define-public r-clusterprofiler
4050 (package
4051 (name "r-clusterprofiler")
4052 (version "3.18.0")
4053 (source
4054 (origin
4055 (method url-fetch)
4056 (uri (bioconductor-uri "clusterProfiler" version))
4057 (sha256
4058 (base32
4059 "07xkc515gp9j4axg0qh39ni65mcbjgxmzjh5wxd86w64lz7xh8b9"))))
4060 (properties
4061 `((upstream-name . "clusterProfiler")))
4062 (build-system r-build-system)
4063 (propagated-inputs
4064 `(("r-annotationdbi" ,r-annotationdbi)
4065 ("r-dose" ,r-dose)
4066 ("r-downloader" ,r-downloader)
4067 ("r-dplyr" ,r-dplyr)
4068 ("r-enrichplot" ,r-enrichplot)
4069 ("r-go-db" ,r-go-db)
4070 ("r-gosemsim" ,r-gosemsim)
4071 ("r-magrittr" ,r-magrittr)
4072 ("r-plyr" ,r-plyr)
4073 ("r-qvalue" ,r-qvalue)
4074 ("r-rlang" ,r-rlang)
4075 ("r-rvcheck" ,r-rvcheck)
4076 ("r-tidyr" ,r-tidyr)))
4077 (native-inputs
4078 `(("r-knitr" ,r-knitr)))
4079 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
4080 (synopsis "Analysis and visualization of functional profiles for gene clusters")
4081 (description
4082 "This package implements methods to analyze and visualize functional
4083 profiles (GO and KEGG) of gene and gene clusters.")
4084 (license license:artistic2.0)))
4085
4086 (define-public r-mlinterfaces
4087 (package
4088 (name "r-mlinterfaces")
4089 (version "1.70.0")
4090 (source
4091 (origin
4092 (method url-fetch)
4093 (uri (bioconductor-uri "MLInterfaces" version))
4094 (sha256
4095 (base32
4096 "1j920h1657rc5agd1vrkzk126npfhw7pzr7p7gwg4i0h0wv25q3r"))))
4097 (properties `((upstream-name . "MLInterfaces")))
4098 (build-system r-build-system)
4099 (propagated-inputs
4100 `(("r-annotate" ,r-annotate)
4101 ("r-biobase" ,r-biobase)
4102 ("r-biocgenerics" ,r-biocgenerics)
4103 ("r-cluster" ,r-cluster)
4104 ("r-fpc" ,r-fpc)
4105 ("r-gbm" ,r-gbm)
4106 ("r-gdata" ,r-gdata)
4107 ("r-genefilter" ,r-genefilter)
4108 ("r-ggvis" ,r-ggvis)
4109 ("r-hwriter" ,r-hwriter)
4110 ("r-mass" ,r-mass)
4111 ("r-mlbench" ,r-mlbench)
4112 ("r-pls" ,r-pls)
4113 ("r-rcolorbrewer" ,r-rcolorbrewer)
4114 ("r-rcpp" ,r-rcpp)
4115 ("r-rpart" ,r-rpart)
4116 ("r-sfsmisc" ,r-sfsmisc)
4117 ("r-shiny" ,r-shiny)
4118 ("r-threejs" ,r-threejs)))
4119 (home-page "https://bioconductor.org/packages/MLInterfaces/")
4120 (synopsis "Interfaces to R machine learning procedures")
4121 (description
4122 "This package provides uniform interfaces to machine learning code for
4123 data in R and Bioconductor containers.")
4124 ;; Any version of the LGPL.
4125 (license license:lgpl2.1+)))
4126
4127 (define-public r-annaffy
4128 (package
4129 (name "r-annaffy")
4130 (version "1.62.0")
4131 (source
4132 (origin
4133 (method url-fetch)
4134 (uri (bioconductor-uri "annaffy" version))
4135 (sha256
4136 (base32
4137 "1szlr33lq98pd3kx6n9l07lhr93swbk6vjpvb2n9f7716k39mi4i"))))
4138 (build-system r-build-system)
4139 (arguments
4140 `(#:phases
4141 (modify-phases %standard-phases
4142 (add-after 'unpack 'remove-reference-to-non-free-data
4143 (lambda _
4144 (substitute* "DESCRIPTION"
4145 ((", KEGG.db") ""))
4146 #t)))))
4147 (propagated-inputs
4148 `(("r-annotationdbi" ,r-annotationdbi)
4149 ("r-biobase" ,r-biobase)
4150 ("r-dbi" ,r-dbi)
4151 ("r-go-db" ,r-go-db)))
4152 (home-page "https://bioconductor.org/packages/annaffy/")
4153 (synopsis "Annotation tools for Affymetrix biological metadata")
4154 (description
4155 "This package provides functions for handling data from Bioconductor
4156 Affymetrix annotation data packages. It produces compact HTML and text
4157 reports including experimental data and URL links to many online databases.
4158 It allows searching of biological metadata using various criteria.")
4159 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
4160 ;; the LGPL 2.1 is included.
4161 (license license:lgpl2.1+)))
4162
4163 (define-public r-a4core
4164 (package
4165 (name "r-a4core")
4166 (version "1.38.0")
4167 (source
4168 (origin
4169 (method url-fetch)
4170 (uri (bioconductor-uri "a4Core" version))
4171 (sha256
4172 (base32
4173 "13mzhn92kqpbn58zmh96f6frkm85sv9137mldfzaljf6snk0spg2"))))
4174 (properties `((upstream-name . "a4Core")))
4175 (build-system r-build-system)
4176 (propagated-inputs
4177 `(("r-biobase" ,r-biobase)
4178 ("r-glmnet" ,r-glmnet)))
4179 (native-inputs
4180 `(("r-knitr" ,r-knitr)))
4181 (home-page "https://bioconductor.org/packages/a4Core")
4182 (synopsis "Automated Affymetrix array analysis core package")
4183 (description
4184 "This is the core package for the automated analysis of Affymetrix
4185 arrays.")
4186 (license license:gpl3)))
4187
4188 (define-public r-a4classif
4189 (package
4190 (name "r-a4classif")
4191 (version "1.38.0")
4192 (source
4193 (origin
4194 (method url-fetch)
4195 (uri (bioconductor-uri "a4Classif" version))
4196 (sha256
4197 (base32
4198 "03fln0x1am5fqhj4fpkx1yq58paqha086bhhr8az8j0vsq1r7wcz"))))
4199 (properties `((upstream-name . "a4Classif")))
4200 (build-system r-build-system)
4201 (propagated-inputs
4202 `(("r-a4core" ,r-a4core)
4203 ("r-a4preproc" ,r-a4preproc)
4204 ("r-biobase" ,r-biobase)
4205 ("r-glmnet" ,r-glmnet)
4206 ("r-pamr" ,r-pamr)
4207 ("r-rocr" ,r-rocr)
4208 ("r-varselrf" ,r-varselrf)))
4209 (native-inputs
4210 `(("r-knitr" ,r-knitr)))
4211 (home-page "https://bioconductor.org/packages/a4Classif/")
4212 (synopsis "Automated Affymetrix array analysis classification package")
4213 (description
4214 "This is the classification package for the automated analysis of
4215 Affymetrix arrays.")
4216 (license license:gpl3)))
4217
4218 (define-public r-a4preproc
4219 (package
4220 (name "r-a4preproc")
4221 (version "1.38.0")
4222 (source
4223 (origin
4224 (method url-fetch)
4225 (uri (bioconductor-uri "a4Preproc" version))
4226 (sha256
4227 (base32
4228 "1j8jhal83x1xpmsaw8iwv2r32i1ghzm6n0ipjk06yqa9f6zb7f7i"))))
4229 (properties `((upstream-name . "a4Preproc")))
4230 (build-system r-build-system)
4231 (propagated-inputs
4232 `(("r-biobase" ,r-biobase)
4233 ("r-biocgenerics" ,r-biocgenerics)))
4234 (native-inputs
4235 `(("r-knitr" ,r-knitr)))
4236 (home-page "https://bioconductor.org/packages/a4Preproc/")
4237 (synopsis "Automated Affymetrix array analysis preprocessing package")
4238 (description
4239 "This is a package for the automated analysis of Affymetrix arrays. It
4240 is used for preprocessing the arrays.")
4241 (license license:gpl3)))
4242
4243 (define-public r-a4reporting
4244 (package
4245 (name "r-a4reporting")
4246 (version "1.38.0")
4247 (source
4248 (origin
4249 (method url-fetch)
4250 (uri (bioconductor-uri "a4Reporting" version))
4251 (sha256
4252 (base32
4253 "1jx4ym3hyix8gwr8d2r38w1wj7siv6ynzhwanczcjf1naws3dqpy"))))
4254 (properties `((upstream-name . "a4Reporting")))
4255 (build-system r-build-system)
4256 (propagated-inputs
4257 `(("r-xtable" ,r-xtable)))
4258 (native-inputs
4259 `(("r-knitr" ,r-knitr)))
4260 (home-page "https://bioconductor.org/packages/a4Reporting/")
4261 (synopsis "Automated Affymetrix array analysis reporting package")
4262 (description
4263 "This is a package for the automated analysis of Affymetrix arrays. It
4264 provides reporting features.")
4265 (license license:gpl3)))
4266
4267 (define-public r-a4base
4268 (package
4269 (name "r-a4base")
4270 (version "1.38.0")
4271 (source
4272 (origin
4273 (method url-fetch)
4274 (uri (bioconductor-uri "a4Base" version))
4275 (sha256
4276 (base32
4277 "0bqagjmg3yjmdzxv4j7685jjhgb261pq60b5qkfffr1lfnz27lsp"))))
4278 (properties `((upstream-name . "a4Base")))
4279 (build-system r-build-system)
4280 (propagated-inputs
4281 `(("r-a4core" ,r-a4core)
4282 ("r-a4preproc" ,r-a4preproc)
4283 ("r-annaffy" ,r-annaffy)
4284 ("r-biobase" ,r-biobase)
4285 ("r-genefilter" ,r-genefilter)
4286 ("r-glmnet" ,r-glmnet)
4287 ("r-gplots" ,r-gplots)
4288 ("r-limma" ,r-limma)
4289 ("r-mpm" ,r-mpm)
4290 ("r-multtest" ,r-multtest)))
4291 (home-page "https://bioconductor.org/packages/a4Base/")
4292 (synopsis "Automated Affymetrix array analysis base package")
4293 (description
4294 "This package provides basic features for the automated analysis of
4295 Affymetrix arrays.")
4296 (license license:gpl3)))
4297
4298 (define-public r-a4
4299 (package
4300 (name "r-a4")
4301 (version "1.38.0")
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (bioconductor-uri "a4" version))
4306 (sha256
4307 (base32
4308 "12q09dhxjl7yrd5m2y7a03kv5614dp144ajmskp5q9x2gvz30f79"))))
4309 (build-system r-build-system)
4310 (propagated-inputs
4311 `(("r-a4base" ,r-a4base)
4312 ("r-a4classif" ,r-a4classif)
4313 ("r-a4core" ,r-a4core)
4314 ("r-a4preproc" ,r-a4preproc)
4315 ("r-a4reporting" ,r-a4reporting)))
4316 (home-page "https://bioconductor.org/packages/a4/")
4317 (synopsis "Automated Affymetrix array analysis umbrella package")
4318 (description
4319 "This package provides a software suite for the automated analysis of
4320 Affymetrix arrays.")
4321 (license license:gpl3)))
4322
4323 (define-public r-abseqr
4324 (package
4325 (name "r-abseqr")
4326 (version "1.8.0")
4327 (source
4328 (origin
4329 (method url-fetch)
4330 (uri (bioconductor-uri "abseqR" version))
4331 (sha256
4332 (base32
4333 "0lh7kcsp3yb3s8s8j6w9k1by8i16q7r2a49z8y1xjmkcb2klsi3f"))))
4334 (properties `((upstream-name . "abseqR")))
4335 (build-system r-build-system)
4336 (inputs
4337 `(("pandoc" ,pandoc)))
4338 (propagated-inputs
4339 `(("r-biocparallel" ,r-biocparallel)
4340 ("r-biocstyle" ,r-biocstyle)
4341 ("r-circlize" ,r-circlize)
4342 ("r-flexdashboard" ,r-flexdashboard)
4343 ("r-ggcorrplot" ,r-ggcorrplot)
4344 ("r-ggdendro" ,r-ggdendro)
4345 ("r-ggplot2" ,r-ggplot2)
4346 ("r-gridextra" ,r-gridextra)
4347 ("r-knitr" ,r-knitr)
4348 ("r-plotly" ,r-plotly)
4349 ("r-plyr" ,r-plyr)
4350 ("r-png" ,r-png)
4351 ("r-rcolorbrewer" ,r-rcolorbrewer)
4352 ("r-reshape2" ,r-reshape2)
4353 ("r-rmarkdown" ,r-rmarkdown)
4354 ("r-stringr" ,r-stringr)
4355 ("r-vegan" ,r-vegan)
4356 ("r-venndiagram" ,r-venndiagram)))
4357 (native-inputs
4358 `(("r-knitr" ,r-knitr)))
4359 (home-page "https://github.com/malhamdoosh/abseqR")
4360 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
4361 (description
4362 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
4363 sequencing datasets generated from antibody libraries and abseqR is one of its
4364 packages. AbseqR empowers the users of abseqPy with plotting and reporting
4365 capabilities and allows them to generate interactive HTML reports for the
4366 convenience of viewing and sharing with other researchers. Additionally,
4367 abseqR extends abseqPy to compare multiple repertoire analyses and perform
4368 further downstream analysis on its output.")
4369 (license license:gpl3)))
4370
4371 (define-public r-bacon
4372 (package
4373 (name "r-bacon")
4374 (version "1.18.0")
4375 (source
4376 (origin
4377 (method url-fetch)
4378 (uri (bioconductor-uri "bacon" version))
4379 (sha256
4380 (base32
4381 "0cv4zhs075mz8c5gdwhr45v14fb1lyi3rlwjfqyz15dmmnzlxw47"))))
4382 (build-system r-build-system)
4383 (propagated-inputs
4384 `(("r-biocparallel" ,r-biocparallel)
4385 ("r-ellipse" ,r-ellipse)
4386 ("r-ggplot2" ,r-ggplot2)))
4387 (native-inputs
4388 `(("r-knitr" ,r-knitr)))
4389 (home-page "https://bioconductor.org/packages/bacon/")
4390 (synopsis "Controlling bias and inflation in association studies")
4391 (description
4392 "Bacon can be used to remove inflation and bias often observed in
4393 epigenome- and transcriptome-wide association studies. To this end bacon
4394 constructs an empirical null distribution using a Gibbs Sampling algorithm by
4395 fitting a three-component normal mixture on z-scores.")
4396 (license license:gpl2+)))
4397
4398 (define-public r-rgadem
4399 (package
4400 (name "r-rgadem")
4401 (version "2.38.0")
4402 (source
4403 (origin
4404 (method url-fetch)
4405 (uri (bioconductor-uri "rGADEM" version))
4406 (sha256
4407 (base32
4408 "0x13glgkcnjg4qsn0v0qgzy6bgmghqpvgwfww2ha641p0c5i9qzw"))))
4409 (properties `((upstream-name . "rGADEM")))
4410 (build-system r-build-system)
4411 (propagated-inputs
4412 `(("r-biostrings" ,r-biostrings)
4413 ("r-bsgenome" ,r-bsgenome)
4414 ("r-genomicranges" ,r-genomicranges)
4415 ("r-iranges" ,r-iranges)
4416 ("r-seqlogo" ,r-seqlogo)))
4417 (home-page "https://bioconductor.org/packages/rGADEM/")
4418 (synopsis "De novo sequence motif discovery")
4419 (description
4420 "rGADEM is an efficient de novo motif discovery tool for large-scale
4421 genomic sequence data.")
4422 (license license:artistic2.0)))
4423
4424 (define-public r-motiv
4425 (package
4426 (name "r-motiv")
4427 (version "1.43.0")
4428 (source
4429 (origin
4430 (method url-fetch)
4431 (uri (bioconductor-uri "MotIV" version))
4432 (sha256
4433 (base32
4434 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
4435 (properties `((upstream-name . "MotIV")))
4436 (build-system r-build-system)
4437 (inputs
4438 `(("gsl" ,gsl)))
4439 (propagated-inputs
4440 `(("r-biocgenerics" ,r-biocgenerics)
4441 ("r-biostrings" ,r-biostrings)
4442 ("r-genomicranges" ,r-genomicranges)
4443 ("r-iranges" ,r-iranges)
4444 ("r-lattice" ,r-lattice)
4445 ("r-rgadem" ,r-rgadem)
4446 ("r-s4vectors" ,r-s4vectors)))
4447 (home-page "https://bioconductor.org/packages/MotIV/")
4448 (synopsis "Motif identification and validation")
4449 (description
4450 "This package is used for the identification and validation of sequence
4451 motifs. It makes use of STAMP for comparing a set of motifs to a given
4452 database (e.g. JASPAR). It can also be used to visualize motifs, motif
4453 distributions, modules and filter motifs.")
4454 (license license:gpl2)))
4455
4456 (define-public r-motifdb
4457 (package
4458 (name "r-motifdb")
4459 (version "1.32.0")
4460 (source (origin
4461 (method url-fetch)
4462 (uri (bioconductor-uri "MotifDb" version))
4463 (sha256
4464 (base32 "0gfk1dgw7gd2y4cnmfdzpzjqkvvikcwx20h0fp7aiq8f0zfwlav5"))))
4465 (properties `((upstream-name . "MotifDb")))
4466 (build-system r-build-system)
4467 (propagated-inputs
4468 `(("r-biocgenerics" ,r-biocgenerics)
4469 ("r-biostrings" ,r-biostrings)
4470 ("r-genomicranges" ,r-genomicranges)
4471 ("r-iranges" ,r-iranges)
4472 ("r-rtracklayer" ,r-rtracklayer)
4473 ("r-s4vectors" ,r-s4vectors)
4474 ("r-splitstackshape" ,r-splitstackshape)))
4475 (native-inputs
4476 `(("r-knitr" ,r-knitr)))
4477 (home-page "https://www.bioconductor.org/packages/MotifDb/")
4478 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
4479 (description "This package provides more than 2000 annotated position
4480 frequency matrices from nine public sources, for multiple organisms.")
4481 (license license:artistic2.0)))
4482
4483 (define-public r-motifbreakr
4484 (package
4485 (name "r-motifbreakr")
4486 (version "2.4.0")
4487 (source (origin
4488 (method url-fetch)
4489 (uri (bioconductor-uri "motifbreakR" version))
4490 (sha256
4491 (base32 "0nni6i7h51kz0ch8ls9c9jzd7fjmc9wsavp11hx6w6bmhnh3k4n7"))))
4492 (properties `((upstream-name . "motifbreakR")))
4493 (build-system r-build-system)
4494 (propagated-inputs
4495 `(("r-biocgenerics" ,r-biocgenerics)
4496 ("r-biocparallel" ,r-biocparallel)
4497 ("r-biostrings" ,r-biostrings)
4498 ("r-bsgenome" ,r-bsgenome)
4499 ("r-genomeinfodb" ,r-genomeinfodb)
4500 ("r-genomicranges" ,r-genomicranges)
4501 ("r-grimport" ,r-grimport)
4502 ("r-gviz" ,r-gviz)
4503 ("r-iranges" ,r-iranges)
4504 ("r-matrixstats" ,r-matrixstats)
4505 ("r-motifdb" ,r-motifdb)
4506 ("r-motifstack" ,r-motifstack)
4507 ("r-rtracklayer" ,r-rtracklayer)
4508 ("r-s4vectors" ,r-s4vectors)
4509 ("r-stringr" ,r-stringr)
4510 ("r-summarizedexperiment" ,r-summarizedexperiment)
4511 ("r-tfmpvalue" ,r-tfmpvalue)
4512 ("r-variantannotation" ,r-variantannotation)))
4513 (native-inputs
4514 `(("r-knitr" ,r-knitr)))
4515 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
4516 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
4517 (description "This package allows biologists to judge in the first place
4518 whether the sequence surrounding the polymorphism is a good match, and in
4519 the second place how much information is gained or lost in one allele of
4520 the polymorphism relative to another. This package gives a choice of
4521 algorithms for interrogation of genomes with motifs from public sources:
4522 @enumerate
4523 @item a weighted-sum probability matrix;
4524 @item log-probabilities;
4525 @item weighted by relative entropy.
4526 @end enumerate
4527
4528 This package can predict effects for novel or previously described variants in
4529 public databases, making it suitable for tasks beyond the scope of its original
4530 design. Lastly, it can be used to interrogate any genome curated within
4531 Bioconductor.")
4532 (license license:gpl2+)))
4533
4534 (define-public r-motifstack
4535 (package
4536 (name "r-motifstack")
4537 (version "1.34.0")
4538 (source
4539 (origin
4540 (method url-fetch)
4541 (uri (bioconductor-uri "motifStack" version))
4542 (sha256
4543 (base32
4544 "1psqpdbgbad31bd8hg5bl62qi5s9rl75nzm85igfpxar3zwwxjlb"))))
4545 (properties `((upstream-name . "motifStack")))
4546 (build-system r-build-system)
4547 (propagated-inputs
4548 `(("r-ade4" ,r-ade4)
4549 ("r-biostrings" ,r-biostrings)
4550 ("r-ggplot2" ,r-ggplot2)
4551 ("r-htmlwidgets" ,r-htmlwidgets)
4552 ("r-xml" ,r-xml)))
4553 (native-inputs
4554 `(("r-knitr" ,r-knitr)))
4555 (home-page "https://bioconductor.org/packages/motifStack/")
4556 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
4557 (description
4558 "The motifStack package is designed for graphic representation of
4559 multiple motifs with different similarity scores. It works with both DNA/RNA
4560 sequence motifs and amino acid sequence motifs. In addition, it provides the
4561 flexibility for users to customize the graphic parameters such as the font
4562 type and symbol colors.")
4563 (license license:gpl2+)))
4564
4565 (define-public r-genomicscores
4566 (package
4567 (name "r-genomicscores")
4568 (version "2.2.0")
4569 (source
4570 (origin
4571 (method url-fetch)
4572 (uri (bioconductor-uri "GenomicScores" version))
4573 (sha256
4574 (base32
4575 "1492xirsgag2dsr6ys9wm3a65sq826p9hcdg3b4dm1wbxgdfx6jr"))))
4576 (properties `((upstream-name . "GenomicScores")))
4577 (build-system r-build-system)
4578 (propagated-inputs
4579 `(("r-annotationhub" ,r-annotationhub)
4580 ("r-biobase" ,r-biobase)
4581 ("r-biocfilecache" ,r-biocfilecache)
4582 ("r-biocgenerics" ,r-biocgenerics)
4583 ("r-biocmanager" ,r-biocmanager)
4584 ("r-biostrings" ,r-biostrings)
4585 ("r-delayedarray" ,r-delayedarray)
4586 ("r-genomeinfodb" ,r-genomeinfodb)
4587 ("r-genomicranges" ,r-genomicranges)
4588 ("r-hdf5array" ,r-hdf5array)
4589 ("r-iranges" ,r-iranges)
4590 ("r-rhdf5" ,r-rhdf5)
4591 ("r-s4vectors" ,r-s4vectors)
4592 ("r-xml" ,r-xml)))
4593 (native-inputs
4594 `(("r-knitr" ,r-knitr)))
4595 (home-page "https://github.com/rcastelo/GenomicScores/")
4596 (synopsis "Work with genome-wide position-specific scores")
4597 (description
4598 "This package provides infrastructure to store and access genome-wide
4599 position-specific scores within R and Bioconductor.")
4600 (license license:artistic2.0)))
4601
4602 (define-public r-atacseqqc
4603 (package
4604 (name "r-atacseqqc")
4605 (version "1.14.4")
4606 (source
4607 (origin
4608 (method url-fetch)
4609 (uri (bioconductor-uri "ATACseqQC" version))
4610 (sha256
4611 (base32
4612 "04sn0zl4m60i5jvqz5rmhc4qwcgrhk6rhznrygmm93k9v363mbn9"))))
4613 (properties `((upstream-name . "ATACseqQC")))
4614 (build-system r-build-system)
4615 (propagated-inputs
4616 `(("r-biocgenerics" ,r-biocgenerics)
4617 ("r-biostrings" ,r-biostrings)
4618 ("r-bsgenome" ,r-bsgenome)
4619 ("r-chippeakanno" ,r-chippeakanno)
4620 ("r-edger" ,r-edger)
4621 ("r-genomeinfodb" ,r-genomeinfodb)
4622 ("r-genomicalignments" ,r-genomicalignments)
4623 ("r-genomicranges" ,r-genomicranges)
4624 ("r-genomicscores" ,r-genomicscores)
4625 ("r-iranges" ,r-iranges)
4626 ("r-kernsmooth" ,r-kernsmooth)
4627 ("r-limma" ,r-limma)
4628 ("r-motifstack" ,r-motifstack)
4629 ("r-preseqr" ,r-preseqr)
4630 ("r-randomforest" ,r-randomforest)
4631 ("r-rsamtools" ,r-rsamtools)
4632 ("r-rtracklayer" ,r-rtracklayer)
4633 ("r-s4vectors" ,r-s4vectors)))
4634 (native-inputs
4635 `(("r-knitr" ,r-knitr)))
4636 (home-page "https://bioconductor.org/packages/ATACseqQC/")
4637 (synopsis "ATAC-seq quality control")
4638 (description
4639 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
4640 sequencing, is a rapid and sensitive method for chromatin accessibility
4641 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
4642 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
4643 assess whether their ATAC-seq experiment is successful. It includes
4644 diagnostic plots of fragment size distribution, proportion of mitochondria
4645 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
4646 footprints.")
4647 (license license:gpl2+)))
4648
4649 (define-public r-gofuncr
4650 (package
4651 (name "r-gofuncr")
4652 (version "1.10.0")
4653 (source
4654 (origin
4655 (method url-fetch)
4656 (uri (bioconductor-uri "GOfuncR" version))
4657 (sha256
4658 (base32
4659 "1ah4v2jj508wjsmrncw58wjq2cyris7bnzfw6kr7jp9n4dvn33mq"))))
4660 (properties `((upstream-name . "GOfuncR")))
4661 (build-system r-build-system)
4662 (propagated-inputs
4663 `(("r-annotationdbi" ,r-annotationdbi)
4664 ("r-genomicranges" ,r-genomicranges)
4665 ("r-gtools" ,r-gtools)
4666 ("r-iranges" ,r-iranges)
4667 ("r-mapplots" ,r-mapplots)
4668 ("r-rcpp" ,r-rcpp)
4669 ("r-vioplot" ,r-vioplot)))
4670 (native-inputs
4671 `(("r-knitr" ,r-knitr)))
4672 (home-page "https://bioconductor.org/packages/GOfuncR/")
4673 (synopsis "Gene ontology enrichment using FUNC")
4674 (description
4675 "GOfuncR performs a gene ontology enrichment analysis based on the
4676 ontology enrichment software FUNC. GO-annotations are obtained from
4677 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
4678 included in the package and updated regularly. GOfuncR provides the standard
4679 candidate vs background enrichment analysis using the hypergeometric test, as
4680 well as three additional tests:
4681
4682 @enumerate
4683 @item the Wilcoxon rank-sum test that is used when genes are ranked,
4684 @item a binomial test that is used when genes are associated with two counts,
4685 and
4686 @item a Chi-square or Fisher's exact test that is used in cases when genes are
4687 associated with four counts.
4688 @end enumerate
4689
4690 To correct for multiple testing and interdependency of the tests, family-wise
4691 error rates are computed based on random permutations of the gene-associated
4692 variables. GOfuncR also provides tools for exploring the ontology graph and
4693 the annotations, and options to take gene-length or spatial clustering of
4694 genes into account. It is also possible to provide custom gene coordinates,
4695 annotations and ontologies.")
4696 (license license:gpl2+)))
4697
4698 (define-public r-abaenrichment
4699 (package
4700 (name "r-abaenrichment")
4701 (version "1.20.0")
4702 (source
4703 (origin
4704 (method url-fetch)
4705 (uri (bioconductor-uri "ABAEnrichment" version))
4706 (sha256
4707 (base32
4708 "0i0214ap9f6lnyawdgcdsds6g3g9qqji3wbn6ln6rs698gjs9w9c"))))
4709 (properties `((upstream-name . "ABAEnrichment")))
4710 (build-system r-build-system)
4711 (propagated-inputs
4712 `(("r-abadata" ,r-abadata)
4713 ("r-data-table" ,r-data-table)
4714 ("r-gofuncr" ,r-gofuncr)
4715 ("r-gplots" ,r-gplots)
4716 ("r-gtools" ,r-gtools)
4717 ("r-rcpp" ,r-rcpp)))
4718 (native-inputs
4719 `(("r-knitr" ,r-knitr)))
4720 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
4721 (synopsis "Gene expression enrichment in human brain regions")
4722 (description
4723 "The package ABAEnrichment is designed to test for enrichment of user
4724 defined candidate genes in the set of expressed genes in different human brain
4725 regions. The core function @code{aba_enrich} integrates the expression of the
4726 candidate gene set (averaged across donors) and the structural information of
4727 the brain using an ontology, both provided by the Allen Brain Atlas project.")
4728 (license license:gpl2+)))
4729
4730 (define-public r-annotationfuncs
4731 (package
4732 (name "r-annotationfuncs")
4733 (version "1.40.0")
4734 (source
4735 (origin
4736 (method url-fetch)
4737 (uri (bioconductor-uri "AnnotationFuncs" version))
4738 (sha256
4739 (base32
4740 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
4741 (properties
4742 `((upstream-name . "AnnotationFuncs")))
4743 (build-system r-build-system)
4744 (propagated-inputs
4745 `(("r-annotationdbi" ,r-annotationdbi)
4746 ("r-dbi" ,r-dbi)))
4747 (home-page "https://www.iysik.com/r/annotationfuncs")
4748 (synopsis "Annotation translation functions")
4749 (description
4750 "This package provides functions for handling translating between
4751 different identifieres using the Biocore Data Team data-packages (e.g.
4752 @code{org.Bt.eg.db}).")
4753 (license license:gpl2)))
4754
4755 (define-public r-annotationtools
4756 (package
4757 (name "r-annotationtools")
4758 (version "1.64.0")
4759 (source
4760 (origin
4761 (method url-fetch)
4762 (uri (bioconductor-uri "annotationTools" version))
4763 (sha256
4764 (base32
4765 "1q3c30hqxjgar3gm8d7h4rw3m7cgc11cgv9q0fwv5abj075cj224"))))
4766 (properties
4767 `((upstream-name . "annotationTools")))
4768 (build-system r-build-system)
4769 (propagated-inputs `(("r-biobase" ,r-biobase)))
4770 (home-page "https://bioconductor.org/packages/annotationTools/")
4771 (synopsis "Annotate microarrays and perform gene expression analyses")
4772 (description
4773 "This package provides functions to annotate microarrays, find orthologs,
4774 and integrate heterogeneous gene expression profiles using annotation and
4775 other molecular biology information available as flat file database (plain
4776 text files).")
4777 ;; Any version of the GPL.
4778 (license (list license:gpl2+))))
4779
4780 (define-public r-allelicimbalance
4781 (package
4782 (name "r-allelicimbalance")
4783 (version "1.28.0")
4784 (source
4785 (origin
4786 (method url-fetch)
4787 (uri (bioconductor-uri "AllelicImbalance" version))
4788 (sha256
4789 (base32
4790 "1hk08kwxjlg2jb59bwv9fbc446pyf6knkscfj757nl6yjf11akbl"))))
4791 (properties
4792 `((upstream-name . "AllelicImbalance")))
4793 (build-system r-build-system)
4794 (propagated-inputs
4795 `(("r-annotationdbi" ,r-annotationdbi)
4796 ("r-biocgenerics" ,r-biocgenerics)
4797 ("r-biostrings" ,r-biostrings)
4798 ("r-bsgenome" ,r-bsgenome)
4799 ("r-genomeinfodb" ,r-genomeinfodb)
4800 ("r-genomicalignments" ,r-genomicalignments)
4801 ("r-genomicfeatures" ,r-genomicfeatures)
4802 ("r-genomicranges" ,r-genomicranges)
4803 ("r-gridextra" ,r-gridextra)
4804 ("r-gviz" ,r-gviz)
4805 ("r-iranges" ,r-iranges)
4806 ("r-lattice" ,r-lattice)
4807 ("r-latticeextra" ,r-latticeextra)
4808 ("r-nlme" ,r-nlme)
4809 ("r-rsamtools" ,r-rsamtools)
4810 ("r-s4vectors" ,r-s4vectors)
4811 ("r-seqinr" ,r-seqinr)
4812 ("r-summarizedexperiment" ,r-summarizedexperiment)
4813 ("r-variantannotation" ,r-variantannotation)))
4814 (native-inputs
4815 `(("r-knitr" ,r-knitr)))
4816 (home-page "https://github.com/pappewaio/AllelicImbalance")
4817 (synopsis "Investigate allele-specific expression")
4818 (description
4819 "This package provides a framework for allele-specific expression
4820 investigation using RNA-seq data.")
4821 (license license:gpl3)))
4822
4823 (define-public r-aucell
4824 (package
4825 (name "r-aucell")
4826 (version "1.12.0")
4827 (source
4828 (origin
4829 (method url-fetch)
4830 (uri (bioconductor-uri "AUCell" version))
4831 (sha256
4832 (base32
4833 "0ibsf3nid27hipr03z7phh0yzwfj8bqza6n6g7wfghpls4l12ipx"))))
4834 (properties `((upstream-name . "AUCell")))
4835 (build-system r-build-system)
4836 (propagated-inputs
4837 `(("r-biocgenerics" ,r-biocgenerics)
4838 ("r-data-table" ,r-data-table)
4839 ("r-gseabase" ,r-gseabase)
4840 ("r-mixtools" ,r-mixtools)
4841 ("r-r-utils" ,r-r-utils)
4842 ("r-s4vectors" ,r-s4vectors)
4843 ("r-shiny" ,r-shiny)
4844 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4845 (native-inputs
4846 `(("r-knitr" ,r-knitr)))
4847 (home-page "https://bioconductor.org/packages/AUCell/")
4848 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
4849 (description
4850 "AUCell identifies cells with active gene sets (e.g. signatures,
4851 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
4852 Under the Curve} (AUC) to calculate whether a critical subset of the input
4853 gene set is enriched within the expressed genes for each cell. The
4854 distribution of AUC scores across all the cells allows exploring the relative
4855 expression of the signature. Since the scoring method is ranking-based,
4856 AUCell is independent of the gene expression units and the normalization
4857 procedure. In addition, since the cells are evaluated individually, it can
4858 easily be applied to bigger datasets, subsetting the expression matrix if
4859 needed.")
4860 (license license:gpl3)))
4861
4862 (define-public r-ebimage
4863 (package
4864 (name "r-ebimage")
4865 (version "4.32.0")
4866 (source
4867 (origin
4868 (method url-fetch)
4869 (uri (bioconductor-uri "EBImage" version))
4870 (sha256
4871 (base32
4872 "0qi8bbix5bjahs73ljhfvidlbj8hz5m5j0sb9cjxlngnnldbh4ww"))))
4873 (properties `((upstream-name . "EBImage")))
4874 (build-system r-build-system)
4875 (propagated-inputs
4876 `(("r-abind" ,r-abind)
4877 ("r-biocgenerics" ,r-biocgenerics)
4878 ("r-fftwtools" ,r-fftwtools)
4879 ("r-htmltools" ,r-htmltools)
4880 ("r-htmlwidgets" ,r-htmlwidgets)
4881 ("r-jpeg" ,r-jpeg)
4882 ("r-locfit" ,r-locfit)
4883 ("r-png" ,r-png)
4884 ("r-rcurl" ,r-rcurl)
4885 ("r-tiff" ,r-tiff)))
4886 (native-inputs
4887 `(("r-knitr" ,r-knitr))) ; for vignettes
4888 (home-page "https://github.com/aoles/EBImage")
4889 (synopsis "Image processing and analysis toolbox for R")
4890 (description
4891 "EBImage provides general purpose functionality for image processing and
4892 analysis. In the context of (high-throughput) microscopy-based cellular
4893 assays, EBImage offers tools to segment cells and extract quantitative
4894 cellular descriptors. This allows the automation of such tasks using the R
4895 programming language and facilitates the use of other tools in the R
4896 environment for signal processing, statistical modeling, machine learning and
4897 visualization with image data.")
4898 ;; Any version of the LGPL.
4899 (license license:lgpl2.1+)))
4900
4901 (define-public r-yamss
4902 (package
4903 (name "r-yamss")
4904 (version "1.16.0")
4905 (source
4906 (origin
4907 (method url-fetch)
4908 (uri (bioconductor-uri "yamss" version))
4909 (sha256
4910 (base32
4911 "0cxzn7j9apjcabbvvii16kn4whwd9khcyz867w5ag3zdxwvg7l7w"))))
4912 (build-system r-build-system)
4913 (propagated-inputs
4914 `(("r-biocgenerics" ,r-biocgenerics)
4915 ("r-data-table" ,r-data-table)
4916 ("r-ebimage" ,r-ebimage)
4917 ("r-iranges" ,r-iranges)
4918 ("r-limma" ,r-limma)
4919 ("r-matrix" ,r-matrix)
4920 ("r-mzr" ,r-mzr)
4921 ("r-s4vectors" ,r-s4vectors)
4922 ("r-summarizedexperiment"
4923 ,r-summarizedexperiment)))
4924 (native-inputs
4925 `(("r-knitr" ,r-knitr)))
4926 (home-page "https://github.com/hansenlab/yamss")
4927 (synopsis "Tools for high-throughput metabolomics")
4928 (description
4929 "This package provides tools to analyze and visualize high-throughput
4930 metabolomics data acquired using chromatography-mass spectrometry. These tools
4931 preprocess data in a way that enables reliable and powerful differential
4932 analysis.")
4933 (license license:artistic2.0)))
4934
4935 (define-public r-gtrellis
4936 (package
4937 (name "r-gtrellis")
4938 (version "1.22.0")
4939 (source
4940 (origin
4941 (method url-fetch)
4942 (uri (bioconductor-uri "gtrellis" version))
4943 (sha256
4944 (base32
4945 "14mpavkxlp9d1kccwi4b9hi7x8md5j4s1g17ivqsj38lxqjvg5gw"))))
4946 (build-system r-build-system)
4947 (propagated-inputs
4948 `(("r-circlize" ,r-circlize)
4949 ("r-genomicranges" ,r-genomicranges)
4950 ("r-getoptlong" ,r-getoptlong)
4951 ("r-iranges" ,r-iranges)))
4952 (native-inputs
4953 `(("r-knitr" ,r-knitr)))
4954 (home-page "https://github.com/jokergoo/gtrellis")
4955 (synopsis "Genome level Trellis layout")
4956 (description
4957 "Genome level Trellis graph visualizes genomic data conditioned by
4958 genomic categories (e.g. chromosomes). For each genomic category, multiple
4959 dimensional data which are represented as tracks describe different features
4960 from different aspects. This package provides high flexibility to arrange
4961 genomic categories and to add self-defined graphics in the plot.")
4962 (license license:expat)))
4963
4964 (define-public r-somaticsignatures
4965 (package
4966 (name "r-somaticsignatures")
4967 (version "2.26.0")
4968 (source
4969 (origin
4970 (method url-fetch)
4971 (uri (bioconductor-uri "SomaticSignatures" version))
4972 (sha256
4973 (base32
4974 "1pwf9ws0klcij27w22p0nh924yp5h2jsidp54ppp7mnx08iv0801"))))
4975 (properties
4976 `((upstream-name . "SomaticSignatures")))
4977 (build-system r-build-system)
4978 (propagated-inputs
4979 `(("r-biobase" ,r-biobase)
4980 ("r-biostrings" ,r-biostrings)
4981 ("r-genomeinfodb" ,r-genomeinfodb)
4982 ("r-genomicranges" ,r-genomicranges)
4983 ("r-ggbio" ,r-ggbio)
4984 ("r-ggplot2" ,r-ggplot2)
4985 ("r-iranges" ,r-iranges)
4986 ("r-nmf" ,r-nmf)
4987 ("r-pcamethods" ,r-pcamethods)
4988 ("r-proxy" ,r-proxy)
4989 ("r-reshape2" ,r-reshape2)
4990 ("r-s4vectors" ,r-s4vectors)
4991 ("r-variantannotation" ,r-variantannotation)))
4992 (native-inputs
4993 `(("r-knitr" ,r-knitr)))
4994 (home-page "https://github.com/juliangehring/SomaticSignatures")
4995 (synopsis "Somatic signatures")
4996 (description
4997 "This package identifies mutational signatures of @dfn{single nucleotide
4998 variants} (SNVs). It provides a infrastructure related to the methodology
4999 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
5000 decomposition algorithms.")
5001 (license license:expat)))
5002
5003 (define-public r-yapsa
5004 (package
5005 (name "r-yapsa")
5006 (version "1.16.0")
5007 (source
5008 (origin
5009 (method url-fetch)
5010 (uri (bioconductor-uri "YAPSA" version))
5011 (sha256
5012 (base32
5013 "1vwccrp01p8i42axbaz1bqq173la18ldrzmrjawr5nkjjkvddbpb"))))
5014 (properties `((upstream-name . "YAPSA")))
5015 (build-system r-build-system)
5016 (propagated-inputs
5017 `(("r-biostrings" ,r-biostrings)
5018 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
5019 ("r-circlize" ,r-circlize)
5020 ("r-complexheatmap" ,r-complexheatmap)
5021 ("r-corrplot" ,r-corrplot)
5022 ("r-dendextend" ,r-dendextend)
5023 ("r-doparallel" ,r-doparallel)
5024 ("r-dplyr" ,r-dplyr)
5025 ("r-genomeinfodb" ,r-genomeinfodb)
5026 ("r-genomicranges" ,r-genomicranges)
5027 ("r-getoptlong" ,r-getoptlong)
5028 ("r-ggbeeswarm" ,r-ggbeeswarm)
5029 ("r-ggplot2" ,r-ggplot2)
5030 ("r-gridextra" ,r-gridextra)
5031 ("r-gtrellis" ,r-gtrellis)
5032 ("r-keggrest" ,r-keggrest)
5033 ("r-limsolve" ,r-limsolve)
5034 ("r-magrittr" ,r-magrittr)
5035 ("r-pmcmr" ,r-pmcmr)
5036 ("r-pracma" ,r-pracma)
5037 ("r-reshape2" ,r-reshape2)
5038 ("r-somaticsignatures" ,r-somaticsignatures)
5039 ("r-variantannotation" ,r-variantannotation)))
5040 (native-inputs
5041 `(("r-knitr" ,r-knitr)))
5042 (home-page "https://bioconductor.org/packages/YAPSA/")
5043 (synopsis "Yet another package for signature analysis")
5044 (description
5045 "This package provides functions and routines useful in the analysis of
5046 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
5047 functions to perform a signature analysis with known signatures and a
5048 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
5049 provided.")
5050 (license license:gpl3)))
5051
5052 (define-public r-gcrma
5053 (package
5054 (name "r-gcrma")
5055 (version "2.62.0")
5056 (source
5057 (origin
5058 (method url-fetch)
5059 (uri (bioconductor-uri "gcrma" version))
5060 (sha256
5061 (base32
5062 "1v1x13iwcv6c9x7r1iz2598rwlyzic67jbqcajg24ib6lcfn9f00"))))
5063 (build-system r-build-system)
5064 (propagated-inputs
5065 `(("r-affy" ,r-affy)
5066 ("r-affyio" ,r-affyio)
5067 ("r-biobase" ,r-biobase)
5068 ("r-biocmanager" ,r-biocmanager)
5069 ("r-biostrings" ,r-biostrings)
5070 ("r-xvector" ,r-xvector)))
5071 (home-page "https://bioconductor.org/packages/gcrma/")
5072 (synopsis "Background adjustment using sequence information")
5073 (description
5074 "Gcrma adjusts for background intensities in Affymetrix array data which
5075 include optical noise and @dfn{non-specific binding} (NSB). The main function
5076 @code{gcrma} converts background adjusted probe intensities to expression
5077 measures using the same normalization and summarization methods as a
5078 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
5079 to estimate probe affinity to NSB. The sequence information is summarized in
5080 a more complex way than the simple GC content. Instead, the base types (A, T,
5081 G or C) at each position along the probe determine the affinity of each probe.
5082 The parameters of the position-specific base contributions to the probe
5083 affinity is estimated in an NSB experiment in which only NSB but no
5084 gene-specific binding is expected.")
5085 ;; Any version of the LGPL
5086 (license license:lgpl2.1+)))
5087
5088 (define-public r-simpleaffy
5089 (package
5090 (name "r-simpleaffy")
5091 (version "2.66.0")
5092 (source
5093 (origin
5094 (method url-fetch)
5095 (uri (bioconductor-uri "simpleaffy" version))
5096 (sha256
5097 (base32
5098 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
5099 (build-system r-build-system)
5100 (propagated-inputs
5101 `(("r-affy" ,r-affy)
5102 ("r-biobase" ,r-biobase)
5103 ("r-biocgenerics" ,r-biocgenerics)
5104 ("r-gcrma" ,r-gcrma)
5105 ("r-genefilter" ,r-genefilter)))
5106 (home-page "https://bioconductor.org/packages/simpleaffy/")
5107 (synopsis "Very simple high level analysis of Affymetrix data")
5108 (description
5109 "This package provides high level functions for reading Affy @file{.CEL}
5110 files, phenotypic data, and then computing simple things with it, such as
5111 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
5112 library. It also has some basic scatter plot functions and mechanisms for
5113 generating high resolution journal figures.")
5114 (license license:gpl2+)))
5115
5116 (define-public r-yaqcaffy
5117 (package
5118 (name "r-yaqcaffy")
5119 (version "1.50.0")
5120 (source
5121 (origin
5122 (method url-fetch)
5123 (uri (bioconductor-uri "yaqcaffy" version))
5124 (sha256
5125 (base32
5126 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
5127 (build-system r-build-system)
5128 (propagated-inputs
5129 `(("r-simpleaffy" ,r-simpleaffy)))
5130 (home-page "https://bioconductor.org/packages/yaqcaffy/")
5131 (synopsis "Affymetrix quality control and reproducibility analysis")
5132 (description
5133 "This is a package that can be used for quality control of Affymetrix
5134 GeneChip expression data and reproducibility analysis of human whole genome
5135 chips with the MAQC reference datasets.")
5136 (license license:artistic2.0)))
5137
5138 (define-public r-quantro
5139 (package
5140 (name "r-quantro")
5141 (version "1.24.0")
5142 (source
5143 (origin
5144 (method url-fetch)
5145 (uri (bioconductor-uri "quantro" version))
5146 (sha256
5147 (base32
5148 "1mq4hda73idkq0lkfrhcmiz4kkalfn47dh3i75br5fi33mdgc0k2"))))
5149 (build-system r-build-system)
5150 (propagated-inputs
5151 `(("r-biobase" ,r-biobase)
5152 ("r-doparallel" ,r-doparallel)
5153 ("r-foreach" ,r-foreach)
5154 ("r-ggplot2" ,r-ggplot2)
5155 ("r-iterators" ,r-iterators)
5156 ("r-minfi" ,r-minfi)
5157 ("r-rcolorbrewer" ,r-rcolorbrewer)))
5158 (native-inputs
5159 `(("r-knitr" ,r-knitr)))
5160 (home-page "https://bioconductor.org/packages/quantro/")
5161 (synopsis "Test for when to use quantile normalization")
5162 (description
5163 "This package provides a data-driven test for the assumptions of quantile
5164 normalization using raw data such as objects that inherit eSets (e.g.
5165 ExpressionSet, MethylSet). Group level information about each sample (such as
5166 Tumor / Normal status) must also be provided because the test assesses if
5167 there are global differences in the distributions between the user-defined
5168 groups.")
5169 (license license:gpl3+)))
5170
5171 (define-public r-yarn
5172 (package
5173 (name "r-yarn")
5174 (version "1.16.0")
5175 (source
5176 (origin
5177 (method url-fetch)
5178 (uri (bioconductor-uri "yarn" version))
5179 (sha256
5180 (base32
5181 "0p8wz5jn601vxbbxkm73ps3fx0j1y56nr2qf6y8k80vgrk7bv5gp"))))
5182 (build-system r-build-system)
5183 (propagated-inputs
5184 `(("r-biobase" ,r-biobase)
5185 ("r-biomart" ,r-biomart)
5186 ("r-downloader" ,r-downloader)
5187 ("r-edger" ,r-edger)
5188 ("r-gplots" ,r-gplots)
5189 ("r-limma" ,r-limma)
5190 ("r-matrixstats" ,r-matrixstats)
5191 ("r-preprocesscore" ,r-preprocesscore)
5192 ("r-quantro" ,r-quantro)
5193 ("r-rcolorbrewer" ,r-rcolorbrewer)
5194 ("r-readr" ,r-readr)))
5195 (native-inputs
5196 `(("r-knitr" ,r-knitr)))
5197 (home-page "https://bioconductor.org/packages/yarn/")
5198 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
5199 (description
5200 "Expedite large RNA-Seq analyses using a combination of previously
5201 developed tools. YARN is meant to make it easier for the user in performing
5202 basic mis-annotation quality control, filtering, and condition-aware
5203 normalization. YARN leverages many Bioconductor tools and statistical
5204 techniques to account for the large heterogeneity and sparsity found in very
5205 large RNA-seq experiments.")
5206 (license license:artistic2.0)))
5207
5208 (define-public r-roar
5209 (package
5210 (name "r-roar")
5211 (version "1.26.0")
5212 (source
5213 (origin
5214 (method url-fetch)
5215 (uri (bioconductor-uri "roar" version))
5216 (sha256
5217 (base32
5218 "0spidrcjnrcli0whkf6h8pa1i9dg9arjbm7b1skxbs6dn2k4yyqw"))))
5219 (build-system r-build-system)
5220 (propagated-inputs
5221 `(("r-biocgenerics" ,r-biocgenerics)
5222 ("r-genomeinfodb" ,r-genomeinfodb)
5223 ("r-genomicalignments" ,r-genomicalignments)
5224 ("r-genomicranges" ,r-genomicranges)
5225 ("r-iranges" ,r-iranges)
5226 ("r-rtracklayer" ,r-rtracklayer)
5227 ("r-s4vectors" ,r-s4vectors)
5228 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5229 (home-page "https://github.com/vodkatad/roar/")
5230 (synopsis "Identify differential APA usage from RNA-seq alignments")
5231 (description
5232 "This package provides tools for identifying preferential usage of APA
5233 sites, comparing two biological conditions, starting from known alternative
5234 sites and alignments obtained from standard RNA-seq experiments.")
5235 (license license:gpl3)))
5236
5237 (define-public r-xbseq
5238 (package
5239 (name "r-xbseq")
5240 (version "1.22.0")
5241 (source
5242 (origin
5243 (method url-fetch)
5244 (uri (bioconductor-uri "XBSeq" version))
5245 (sha256
5246 (base32
5247 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
5248 (properties `((upstream-name . "XBSeq")))
5249 (build-system r-build-system)
5250 (propagated-inputs
5251 `(("r-biobase" ,r-biobase)
5252 ("r-deseq2" ,r-deseq2)
5253 ("r-dplyr" ,r-dplyr)
5254 ("r-ggplot2" ,r-ggplot2)
5255 ("r-locfit" ,r-locfit)
5256 ("r-magrittr" ,r-magrittr)
5257 ("r-matrixstats" ,r-matrixstats)
5258 ("r-pracma" ,r-pracma)
5259 ("r-roar" ,r-roar)))
5260 (native-inputs
5261 `(("r-knitr" ,r-knitr)))
5262 (home-page "https://github.com/Liuy12/XBSeq")
5263 (synopsis "Test for differential expression for RNA-seq data")
5264 (description
5265 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
5266 expression} (DE), where a statistical model was established based on the
5267 assumption that observed signals are the convolution of true expression
5268 signals and sequencing noises. The mapped reads in non-exonic regions are
5269 considered as sequencing noises, which follows a Poisson distribution. Given
5270 measurable observed signal and background noise from RNA-seq data, true
5271 expression signals, assuming governed by the negative binomial distribution,
5272 can be delineated and thus the accurate detection of differential expressed
5273 genes.")
5274 (license license:gpl3+)))
5275
5276 (define-public r-massspecwavelet
5277 (package
5278 (name "r-massspecwavelet")
5279 (version "1.56.0")
5280 (source
5281 (origin
5282 (method url-fetch)
5283 (uri (bioconductor-uri "MassSpecWavelet" version))
5284 (sha256
5285 (base32
5286 "1vvxbxc538raqdsy0x9ln41vjhp2aw1nrh4k35y3s9mhb1jlzzv3"))))
5287 (properties
5288 `((upstream-name . "MassSpecWavelet")))
5289 (build-system r-build-system)
5290 (propagated-inputs
5291 `(("r-waveslim" ,r-waveslim)))
5292 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
5293 (synopsis "Mass spectrum processing by wavelet-based algorithms")
5294 (description
5295 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
5296 data mainly through the use of wavelet transforms. It supports peak detection
5297 based on @dfn{Continuous Wavelet Transform} (CWT).")
5298 (license license:lgpl2.0+)))
5299
5300 (define-public r-xcms
5301 (package
5302 (name "r-xcms")
5303 (version "3.12.0")
5304 (source
5305 (origin
5306 (method url-fetch)
5307 (uri (bioconductor-uri "xcms" version))
5308 (sha256
5309 (base32
5310 "17kyybj093mj0g2sbfmjp19mmkww4w025n6zc0hbznqb94vkc8fv"))))
5311 (build-system r-build-system)
5312 (propagated-inputs
5313 `(("r-biobase" ,r-biobase)
5314 ("r-biocgenerics" ,r-biocgenerics)
5315 ("r-biocparallel" ,r-biocparallel)
5316 ("r-iranges" ,r-iranges)
5317 ("r-lattice" ,r-lattice)
5318 ("r-massspecwavelet" ,r-massspecwavelet)
5319 ("r-mscoreutils" ,r-mscoreutils)
5320 ("r-msnbase" ,r-msnbase)
5321 ("r-mzr" ,r-mzr)
5322 ("r-plyr" ,r-plyr)
5323 ("r-protgenerics" ,r-protgenerics)
5324 ("r-rann" ,r-rann)
5325 ("r-rcolorbrewer" ,r-rcolorbrewer)
5326 ("r-robustbase" ,r-robustbase)
5327 ("r-s4vectors" ,r-s4vectors)
5328 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5329 (native-inputs
5330 `(("r-knitr" ,r-knitr)))
5331 (home-page "https://bioconductor.org/packages/xcms/")
5332 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
5333 (description
5334 "This package provides a framework for processing and visualization of
5335 chromatographically separated and single-spectra mass spectral data. It
5336 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
5337 data for high-throughput, untargeted analyte profiling.")
5338 (license license:gpl2+)))
5339
5340 (define-public r-wrench
5341 (package
5342 (name "r-wrench")
5343 (version "1.8.0")
5344 (source
5345 (origin
5346 (method url-fetch)
5347 (uri (bioconductor-uri "Wrench" version))
5348 (sha256
5349 (base32
5350 "01z7rd9fn6cpab3dxgwfpfjlq6vsqb8jhbzvhcqn9v2vqc2pridx"))))
5351 (properties `((upstream-name . "Wrench")))
5352 (build-system r-build-system)
5353 (propagated-inputs
5354 `(("r-limma" ,r-limma)
5355 ("r-locfit" ,r-locfit)
5356 ("r-matrixstats" ,r-matrixstats)))
5357 (native-inputs
5358 `(("r-knitr" ,r-knitr)))
5359 (home-page "https://github.com/HCBravoLab/Wrench")
5360 (synopsis "Wrench normalization for sparse count data")
5361 (description
5362 "Wrench is a package for normalization sparse genomic count data, like
5363 that arising from 16s metagenomic surveys.")
5364 (license license:artistic2.0)))
5365
5366 (define-public r-wiggleplotr
5367 (package
5368 (name "r-wiggleplotr")
5369 (version "1.14.0")
5370 (source
5371 (origin
5372 (method url-fetch)
5373 (uri (bioconductor-uri "wiggleplotr" version))
5374 (sha256
5375 (base32
5376 "1k4wlh5ayb1w4dr6dydqfgm3415qhsfmshmi6zjyyhhkd2626vad"))))
5377 (build-system r-build-system)
5378 (propagated-inputs
5379 `(("r-assertthat" ,r-assertthat)
5380 ("r-cowplot" ,r-cowplot)
5381 ("r-dplyr" ,r-dplyr)
5382 ("r-genomeinfodb" ,r-genomeinfodb)
5383 ("r-genomicranges" ,r-genomicranges)
5384 ("r-ggplot2" ,r-ggplot2)
5385 ("r-iranges" ,r-iranges)
5386 ("r-purrr" ,r-purrr)
5387 ("r-rtracklayer" ,r-rtracklayer)
5388 ("r-s4vectors" ,r-s4vectors)))
5389 (native-inputs
5390 `(("r-knitr" ,r-knitr)))
5391 (home-page "https://bioconductor.org/packages/wiggleplotr/")
5392 (synopsis "Make read coverage plots from BigWig files")
5393 (description
5394 "This package provides tools to visualize read coverage from sequencing
5395 experiments together with genomic annotations (genes, transcripts, peaks).
5396 Introns of long transcripts can be rescaled to a fixed length for better
5397 visualization of exonic read coverage.")
5398 (license license:asl2.0)))
5399
5400 (define-public r-widgettools
5401 (package
5402 (name "r-widgettools")
5403 (version "1.68.0")
5404 (source
5405 (origin
5406 (method url-fetch)
5407 (uri (bioconductor-uri "widgetTools" version))
5408 (sha256
5409 (base32
5410 "172f0pmsspd9lss557cmxzjfsbansimjyhwdiahg8pqrayhwvf2w"))))
5411 (properties `((upstream-name . "widgetTools")))
5412 (build-system r-build-system)
5413 (home-page "https://bioconductor.org/packages/widgetTools/")
5414 (synopsis "Tools for creating interactive tcltk widgets")
5415 (description
5416 "This package contains tools to support the construction of tcltk
5417 widgets in R.")
5418 ;; Any version of the LGPL.
5419 (license license:lgpl3+)))
5420
5421 (define-public r-webbioc
5422 (package
5423 (name "r-webbioc")
5424 (version "1.62.0")
5425 (source
5426 (origin
5427 (method url-fetch)
5428 (uri (bioconductor-uri "webbioc" version))
5429 (sha256
5430 (base32
5431 "1nnmr4ddi07x7sy89fgdn7iwz5k4l8n5ca3xjnlbpwxycza793vj"))))
5432 (build-system r-build-system)
5433 (inputs
5434 `(("netpbm" ,netpbm)
5435 ("perl" ,perl)))
5436 (propagated-inputs
5437 `(("r-affy" ,r-affy)
5438 ("r-annaffy" ,r-annaffy)
5439 ("r-biobase" ,r-biobase)
5440 ("r-biocmanager" ,r-biocmanager)
5441 ("r-gcrma" ,r-gcrma)
5442 ("r-multtest" ,r-multtest)
5443 ("r-qvalue" ,r-qvalue)
5444 ("r-vsn" ,r-vsn)))
5445 (home-page "https://www.bioconductor.org/")
5446 (synopsis "Bioconductor web interface")
5447 (description
5448 "This package provides an integrated web interface for doing microarray
5449 analysis using several of the Bioconductor packages. It is intended to be
5450 deployed as a centralized bioinformatics resource for use by many users.
5451 Currently only Affymetrix oligonucleotide analysis is supported.")
5452 (license license:gpl2+)))
5453
5454 (define-public r-zfpkm
5455 (package
5456 (name "r-zfpkm")
5457 (version "1.12.0")
5458 (source
5459 (origin
5460 (method url-fetch)
5461 (uri (bioconductor-uri "zFPKM" version))
5462 (sha256
5463 (base32
5464 "1sa7m7mzzr92c9ickial5701414rab233lq1il1sm9yfdkf8s9fm"))))
5465 (properties `((upstream-name . "zFPKM")))
5466 (build-system r-build-system)
5467 (propagated-inputs
5468 `(("r-checkmate" ,r-checkmate)
5469 ("r-dplyr" ,r-dplyr)
5470 ("r-ggplot2" ,r-ggplot2)
5471 ("r-summarizedexperiment" ,r-summarizedexperiment)
5472 ("r-tidyr" ,r-tidyr)))
5473 (native-inputs
5474 `(("r-knitr" ,r-knitr)))
5475 (home-page "https://github.com/ronammar/zFPKM/")
5476 (synopsis "Functions to facilitate zFPKM transformations")
5477 (description
5478 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
5479 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
5480 24215113).")
5481 (license license:gpl3)))
5482
5483 (define-public r-rbowtie2
5484 (package
5485 (name "r-rbowtie2")
5486 (version "1.12.0")
5487 (source
5488 (origin
5489 (method url-fetch)
5490 (uri (bioconductor-uri "Rbowtie2" version))
5491 (sha256
5492 (base32
5493 "1pcdcqn82ray73bajjnx5zgs98m56acviq3adbzga0cfqf6wiqx5"))))
5494 (properties `((upstream-name . "Rbowtie2")))
5495 (build-system r-build-system)
5496 (inputs
5497 `(("zlib" ,zlib)))
5498 (native-inputs
5499 `(("r-knitr" ,r-knitr)))
5500 (home-page "https://bioconductor.org/packages/Rbowtie2/")
5501 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
5502 (description
5503 "This package provides an R wrapper of the popular @code{bowtie2}
5504 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
5505 rapid adapter trimming, identification, and read merging.")
5506 (license license:gpl3+)))
5507
5508 (define-public r-progeny
5509 (package
5510 (name "r-progeny")
5511 (version "1.12.0")
5512 (source
5513 (origin
5514 (method url-fetch)
5515 (uri (bioconductor-uri "progeny" version))
5516 (sha256
5517 (base32
5518 "00lhzz4plmx5128khs298n6zv9204mhqv548lxxdhaw18b16vwm7"))))
5519 (build-system r-build-system)
5520 (propagated-inputs
5521 `(("r-biobase" ,r-biobase)
5522 ("r-dplyr" ,r-dplyr)
5523 ("r-ggplot2" ,r-ggplot2)
5524 ("r-ggrepel" ,r-ggrepel)
5525 ("r-gridextra" ,r-gridextra)
5526 ("r-tidyr" ,r-tidyr)))
5527 (native-inputs
5528 `(("r-knitr" ,r-knitr)))
5529 (home-page "https://github.com/saezlab/progeny")
5530 (synopsis "Pathway responsive gene activity inference")
5531 (description
5532 "This package provides a function to infer pathway activity from gene
5533 expression. It contains the linear model inferred in the publication
5534 \"Perturbation-response genes reveal signaling footprints in cancer gene
5535 expression\".")
5536 (license license:asl2.0)))
5537
5538 (define-public r-arrmnormalization
5539 (package
5540 (name "r-arrmnormalization")
5541 (version "1.30.0")
5542 (source
5543 (origin
5544 (method url-fetch)
5545 (uri (bioconductor-uri "ARRmNormalization" version))
5546 (sha256
5547 (base32
5548 "1ximvi0jbwmymx6iy70qfyr9j26x5arlarra9fzs5hq05jif6q95"))))
5549 (properties
5550 `((upstream-name . "ARRmNormalization")))
5551 (build-system r-build-system)
5552 (propagated-inputs `(("r-arrmdata" ,r-arrmdata)))
5553 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
5554 (synopsis "Adaptive robust regression normalization for methylation data")
5555 (description
5556 "This is a package to perform the @dfn{Adaptive Robust Regression
5557 method} (ARRm) for the normalization of methylation data from the Illumina
5558 Infinium HumanMethylation 450k assay.")
5559 (license license:artistic2.0)))
5560
5561 (define-public r-biocfilecache
5562 (package
5563 (name "r-biocfilecache")
5564 (version "1.14.0")
5565 (source
5566 (origin
5567 (method url-fetch)
5568 (uri (bioconductor-uri "BiocFileCache" version))
5569 (sha256
5570 (base32
5571 "0r032a033636bxap0vvb02jvjqiynzj9npqd8603qnwmhvvfi5z1"))))
5572 (properties `((upstream-name . "BiocFileCache")))
5573 (build-system r-build-system)
5574 (propagated-inputs
5575 `(("r-curl" ,r-curl)
5576 ("r-dbi" ,r-dbi)
5577 ("r-dbplyr" ,r-dbplyr)
5578 ("r-dplyr" ,r-dplyr)
5579 ("r-httr" ,r-httr)
5580 ("r-rappdirs" ,r-rappdirs)
5581 ("r-rsqlite" ,r-rsqlite)))
5582 (native-inputs
5583 `(("r-knitr" ,r-knitr)))
5584 (home-page "https://bioconductor.org/packages/BiocFileCache/")
5585 (synopsis "Manage files across sessions")
5586 (description
5587 "This package creates a persistent on-disk cache of files that the user
5588 can add, update, and retrieve. It is useful for managing resources (such as
5589 custom Txdb objects) that are costly or difficult to create, web resources,
5590 and data files used across sessions.")
5591 (license license:artistic2.0)))
5592
5593 (define-public r-iclusterplus
5594 (package
5595 (name "r-iclusterplus")
5596 (version "1.26.0")
5597 (source
5598 (origin
5599 (method url-fetch)
5600 (uri (bioconductor-uri "iClusterPlus" version))
5601 (sha256
5602 (base32
5603 "02ji84dsbn4wir8sim4qy8h57524mnrsq51wxc7n8ybp5x7n9k9q"))))
5604 (properties `((upstream-name . "iClusterPlus")))
5605 (build-system r-build-system)
5606 (native-inputs `(("gfortran" ,gfortran)))
5607 (home-page "https://bioconductor.org/packages/iClusterPlus/")
5608 (synopsis "Integrative clustering of multi-type genomic data")
5609 (description
5610 "iClusterPlus is developed for integrative clustering analysis of
5611 multi-type genomic data and is an enhanced version of iCluster proposed and
5612 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
5613 from the experiments where biological samples (e.g. tumor samples) are
5614 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
5615 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
5616 on. In the iClusterPlus model, binary observations such as somatic mutation
5617 are modeled as Binomial processes; categorical observations such as copy
5618 number states are realizations of Multinomial random variables; counts are
5619 modeled as Poisson random processes; and continuous measures are modeled by
5620 Gaussian distributions.")
5621 (license license:gpl2+)))
5622
5623 (define-public r-rbowtie
5624 (package
5625 (name "r-rbowtie")
5626 (version "1.30.0")
5627 (source
5628 (origin
5629 (method url-fetch)
5630 (uri (bioconductor-uri "Rbowtie" version))
5631 (sha256
5632 (base32
5633 "0rgxqc3sbq7phnrn9a6z361725h4zi2mi985i43n7fi3csif7507"))))
5634 (properties `((upstream-name . "Rbowtie")))
5635 (build-system r-build-system)
5636 (inputs
5637 `(("zlib" ,zlib)))
5638 (native-inputs
5639 `(("r-knitr" ,r-knitr)))
5640 (home-page "https://bioconductor.org/packages/Rbowtie/")
5641 (synopsis "R bowtie wrapper")
5642 (description
5643 "This package provides an R wrapper around the popular bowtie short read
5644 aligner and around SpliceMap, a de novo splice junction discovery and
5645 alignment tool.")
5646 (license license:artistic2.0)))
5647
5648 (define-public r-sgseq
5649 (package
5650 (name "r-sgseq")
5651 (version "1.24.0")
5652 (source
5653 (origin
5654 (method url-fetch)
5655 (uri (bioconductor-uri "SGSeq" version))
5656 (sha256
5657 (base32
5658 "1nfhy5kgyz56b6pyxcq8kflqwnhl9nlffszwpqb5fdh5ibz8xbjx"))))
5659 (properties `((upstream-name . "SGSeq")))
5660 (build-system r-build-system)
5661 (propagated-inputs
5662 `(("r-annotationdbi" ,r-annotationdbi)
5663 ("r-biocgenerics" ,r-biocgenerics)
5664 ("r-biostrings" ,r-biostrings)
5665 ("r-genomeinfodb" ,r-genomeinfodb)
5666 ("r-genomicalignments" ,r-genomicalignments)
5667 ("r-genomicfeatures" ,r-genomicfeatures)
5668 ("r-genomicranges" ,r-genomicranges)
5669 ("r-igraph" ,r-igraph)
5670 ("r-iranges" ,r-iranges)
5671 ("r-rsamtools" ,r-rsamtools)
5672 ("r-rtracklayer" ,r-rtracklayer)
5673 ("r-runit" ,r-runit)
5674 ("r-s4vectors" ,r-s4vectors)
5675 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5676 (native-inputs
5677 `(("r-knitr" ,r-knitr)))
5678 (home-page "https://bioconductor.org/packages/SGSeq/")
5679 (synopsis "Splice event prediction and quantification from RNA-seq data")
5680 (description
5681 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
5682 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
5683 represented as a splice graph, which can be obtained from existing annotation
5684 or predicted from the mapped sequence reads. Splice events are identified
5685 from the graph and are quantified locally using structurally compatible reads
5686 at the start or end of each splice variant. The software includes functions
5687 for splice event prediction, quantification, visualization and
5688 interpretation.")
5689 (license license:artistic2.0)))
5690
5691 (define-public r-rhisat2
5692 (package
5693 (name "r-rhisat2")
5694 (version "1.6.0")
5695 (source
5696 (origin
5697 (method url-fetch)
5698 (uri (bioconductor-uri "Rhisat2" version))
5699 (sha256
5700 (base32
5701 "0f9x2qcazml0zjcgyy0kdphnww4d1m62rn0ijcqlhy1bng6ihwwb"))))
5702 (properties `((upstream-name . "Rhisat2")))
5703 (build-system r-build-system)
5704 (arguments
5705 `(#:phases
5706 (modify-phases %standard-phases
5707 (add-after 'unpack 'make-reproducible
5708 (lambda _
5709 (substitute* "src/Makefile"
5710 (("`hostname`") "guix")
5711 (("`date`") "0")
5712 ;; Avoid shelling out to "which".
5713 (("^CC =.*") (which "gcc"))
5714 (("^CPP =.*") (which "g++")))
5715 #t)))))
5716 (propagated-inputs
5717 `(("r-genomicfeatures" ,r-genomicfeatures)
5718 ("r-genomicranges" ,r-genomicranges)
5719 ("r-sgseq" ,r-sgseq)))
5720 (native-inputs
5721 `(("r-knitr" ,r-knitr)))
5722 (home-page "https://github.com/fmicompbio/Rhisat2")
5723 (synopsis "R Wrapper for HISAT2 sequence aligner")
5724 (description
5725 "This package provides an R interface to the HISAT2 spliced short-read
5726 aligner by Kim et al. (2015). The package contains wrapper functions to
5727 create a genome index and to perform the read alignment to the generated
5728 index.")
5729 (license license:gpl3)))
5730
5731 (define-public r-quasr
5732 (package
5733 (name "r-quasr")
5734 (version "1.30.0")
5735 (source
5736 (origin
5737 (method url-fetch)
5738 (uri (bioconductor-uri "QuasR" version))
5739 (sha256
5740 (base32
5741 "032m01q34nnmvbhcb2g3pz2fqmgcw5464m74m1m0h7x9bl04a5k8"))))
5742 (properties `((upstream-name . "QuasR")))
5743 (build-system r-build-system)
5744 (propagated-inputs
5745 `(("r-annotationdbi" ,r-annotationdbi)
5746 ("r-biobase" ,r-biobase)
5747 ("r-biocgenerics" ,r-biocgenerics)
5748 ("r-biocmanager" ,r-biocmanager)
5749 ("r-biocparallel" ,r-biocparallel)
5750 ("r-biostrings" ,r-biostrings)
5751 ("r-bsgenome" ,r-bsgenome)
5752 ("r-genomeinfodb" ,r-genomeinfodb)
5753 ("r-genomicalignments" ,r-genomicalignments)
5754 ("r-genomicfeatures" ,r-genomicfeatures)
5755 ("r-genomicfiles" ,r-genomicfiles)
5756 ("r-genomicranges" ,r-genomicranges)
5757 ("r-iranges" ,r-iranges)
5758 ("r-rbowtie" ,r-rbowtie)
5759 ("r-rhisat2" ,r-rhisat2)
5760 ("r-rhtslib" ,r-rhtslib)
5761 ("r-rsamtools" ,r-rsamtools)
5762 ("r-rtracklayer" ,r-rtracklayer)
5763 ("r-s4vectors" ,r-s4vectors)
5764 ("r-shortread" ,r-shortread)))
5765 (native-inputs
5766 `(("r-knitr" ,r-knitr)))
5767 (home-page "https://bioconductor.org/packages/QuasR/")
5768 (synopsis "Quantify and annotate short reads in R")
5769 (description
5770 "This package provides a framework for the quantification and analysis of
5771 short genomic reads. It covers a complete workflow starting from raw sequence
5772 reads, over creation of alignments and quality control plots, to the
5773 quantification of genomic regions of interest.")
5774 (license license:gpl2)))
5775
5776 (define-public r-rqc
5777 (package
5778 (name "r-rqc")
5779 (version "1.24.0")
5780 (source
5781 (origin
5782 (method url-fetch)
5783 (uri (bioconductor-uri "Rqc" version))
5784 (sha256
5785 (base32
5786 "083c3ql0gndb6y7m9d3rpbkimyw8cj8jyv77mwwjhq49lzwsg6n9"))))
5787 (properties `((upstream-name . "Rqc")))
5788 (build-system r-build-system)
5789 (propagated-inputs
5790 `(("r-biocgenerics" ,r-biocgenerics)
5791 ("r-biocparallel" ,r-biocparallel)
5792 ("r-biocstyle" ,r-biocstyle)
5793 ("r-biostrings" ,r-biostrings)
5794 ("r-biovizbase" ,r-biovizbase)
5795 ("r-genomicalignments" ,r-genomicalignments)
5796 ("r-genomicfiles" ,r-genomicfiles)
5797 ("r-ggplot2" ,r-ggplot2)
5798 ("r-iranges" ,r-iranges)
5799 ("r-knitr" ,r-knitr)
5800 ("r-markdown" ,r-markdown)
5801 ("r-plyr" ,r-plyr)
5802 ("r-rcpp" ,r-rcpp)
5803 ("r-reshape2" ,r-reshape2)
5804 ("r-rsamtools" ,r-rsamtools)
5805 ("r-s4vectors" ,r-s4vectors)
5806 ("r-shiny" ,r-shiny)
5807 ("r-shortread" ,r-shortread)))
5808 (native-inputs
5809 `(("r-knitr" ,r-knitr)))
5810 (home-page "https://github.com/labbcb/Rqc")
5811 (synopsis "Quality control tool for high-throughput sequencing data")
5812 (description
5813 "Rqc is an optimized tool designed for quality control and assessment of
5814 high-throughput sequencing data. It performs parallel processing of entire
5815 files and produces a report which contains a set of high-resolution
5816 graphics.")
5817 (license license:gpl2+)))
5818
5819 (define-public r-birewire
5820 (package
5821 (name "r-birewire")
5822 (version "3.22.0")
5823 (source
5824 (origin
5825 (method url-fetch)
5826 (uri (bioconductor-uri "BiRewire" version))
5827 (sha256
5828 (base32
5829 "1h9zjjd5krsjpbxlmsbzwx7kbishn0z6mpm8zmrcpmbfrprp38qw"))))
5830 (properties `((upstream-name . "BiRewire")))
5831 (build-system r-build-system)
5832 (propagated-inputs
5833 `(("r-igraph" ,r-igraph)
5834 ("r-matrix" ,r-matrix)
5835 ("r-slam" ,r-slam)
5836 ("r-tsne" ,r-tsne)))
5837 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
5838 (synopsis "Tools for randomization of bipartite graphs")
5839 (description
5840 "This package provides functions for bipartite network rewiring through N
5841 consecutive switching steps and for the computation of the minimal number of
5842 switching steps to be performed in order to maximise the dissimilarity with
5843 respect to the original network. It includes functions for the analysis of
5844 the introduced randomness across the switching steps and several other
5845 routines to analyse the resulting networks and their natural projections.")
5846 (license license:gpl3)))
5847
5848 (define-public r-birta
5849 (package
5850 (name "r-birta")
5851 (version "1.31.0")
5852 (source
5853 (origin
5854 (method url-fetch)
5855 (uri (bioconductor-uri "birta" version))
5856 (sha256
5857 (base32
5858 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
5859 (build-system r-build-system)
5860 (propagated-inputs
5861 `(("r-biobase" ,r-biobase)
5862 ("r-limma" ,r-limma)
5863 ("r-mass" ,r-mass)))
5864 (home-page "https://bioconductor.org/packages/birta")
5865 (synopsis "Bayesian inference of regulation of transcriptional activity")
5866 (description
5867 "Expression levels of mRNA molecules are regulated by different
5868 processes, comprising inhibition or activation by transcription factors and
5869 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
5870 Inference of Regulation of Transcriptional Activity) uses the regulatory
5871 networks of transcription factors and miRNAs together with mRNA and miRNA
5872 expression data to predict switches in regulatory activity between two
5873 conditions. A Bayesian network is used to model the regulatory structure and
5874 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
5875 (license license:gpl2+)))
5876
5877 (define-public r-multidataset
5878 (package
5879 (name "r-multidataset")
5880 (version "1.18.0")
5881 (source
5882 (origin
5883 (method url-fetch)
5884 (uri (bioconductor-uri "MultiDataSet" version))
5885 (sha256
5886 (base32
5887 "025gfgn83ancp0khdmq2y4lwm97v5zqnjksi79rr0w175syznx5w"))))
5888 (properties `((upstream-name . "MultiDataSet")))
5889 (build-system r-build-system)
5890 (propagated-inputs
5891 `(("r-biobase" ,r-biobase)
5892 ("r-biocgenerics" ,r-biocgenerics)
5893 ("r-genomicranges" ,r-genomicranges)
5894 ("r-ggplot2" ,r-ggplot2)
5895 ("r-ggrepel" ,r-ggrepel)
5896 ("r-iranges" ,r-iranges)
5897 ("r-limma" ,r-limma)
5898 ("r-qqman" ,r-qqman)
5899 ("r-s4vectors" ,r-s4vectors)
5900 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5901 (native-inputs
5902 `(("r-knitr" ,r-knitr)))
5903 (home-page "https://bioconductor.org/packages/MultiDataSet/")
5904 (synopsis "Implementation of MultiDataSet and ResultSet")
5905 (description
5906 "This package provides an implementation of the BRGE's (Bioinformatic
5907 Research Group in Epidemiology from Center for Research in Environmental
5908 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
5909 integrating multi omics data sets and ResultSet is a container for omics
5910 results. This package contains base classes for MEAL and rexposome
5911 packages.")
5912 (license license:expat)))
5913
5914 (define-public r-ropls
5915 (package
5916 (name "r-ropls")
5917 (version "1.22.0")
5918 (source
5919 (origin
5920 (method url-fetch)
5921 (uri (bioconductor-uri "ropls" version))
5922 (sha256
5923 (base32
5924 "1h76s89hsafrkshpkx7vjinfni9lzfpnbfyg3fhkkrwpp1fnwyj5"))))
5925 (build-system r-build-system)
5926 (propagated-inputs
5927 `(("r-biobase" ,r-biobase)
5928 ("r-multidataset" ,r-multidataset)))
5929 (native-inputs
5930 `(("r-knitr" ,r-knitr))) ; for vignettes
5931 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
5932 (synopsis "Multivariate analysis and feature selection of omics data")
5933 (description
5934 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
5935 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
5936 regression, classification, and feature selection of omics data where the
5937 number of variables exceeds the number of samples and with multicollinearity
5938 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
5939 separately model the variation correlated (predictive) to the factor of
5940 interest and the uncorrelated (orthogonal) variation. While performing
5941 similarly to PLS, OPLS facilitates interpretation.
5942
5943 This package provides imlementations of PCA, PLS, and OPLS for multivariate
5944 analysis and feature selection of omics data. In addition to scores, loadings
5945 and weights plots, the package provides metrics and graphics to determine the
5946 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
5947 validity of the model by permutation testing, detect outliers, and perform
5948 feature selection (e.g. with Variable Importance in Projection or regression
5949 coefficients).")
5950 (license license:cecill)))
5951
5952 (define-public r-biosigner
5953 (package
5954 (name "r-biosigner")
5955 (version "1.18.2")
5956 (source
5957 (origin
5958 (method url-fetch)
5959 (uri (bioconductor-uri "biosigner" version))
5960 (sha256
5961 (base32
5962 "0i18j4fk91x5017yk1l35c58k5aby22yh81zkp59irphpv9akvjn"))))
5963 (build-system r-build-system)
5964 (propagated-inputs
5965 `(("r-biobase" ,r-biobase)
5966 ("r-e1071" ,r-e1071)
5967 ("r-multidataset" ,r-multidataset)
5968 ("r-randomforest" ,r-randomforest)
5969 ("r-ropls" ,r-ropls)))
5970 (native-inputs
5971 `(("r-knitr" ,r-knitr)))
5972 (home-page "https://bioconductor.org/packages/biosigner/")
5973 (synopsis "Signature discovery from omics data")
5974 (description
5975 "Feature selection is critical in omics data analysis to extract
5976 restricted and meaningful molecular signatures from complex and high-dimension
5977 data, and to build robust classifiers. This package implements a method to
5978 assess the relevance of the variables for the prediction performances of the
5979 classifier. The approach can be run in parallel with the PLS-DA, Random
5980 Forest, and SVM binary classifiers. The signatures and the corresponding
5981 'restricted' models are returned, enabling future predictions on new
5982 datasets.")
5983 (license license:cecill)))
5984
5985 (define-public r-annotatr
5986 (package
5987 (name "r-annotatr")
5988 (version "1.16.0")
5989 (source
5990 (origin
5991 (method url-fetch)
5992 (uri (bioconductor-uri "annotatr" version))
5993 (sha256
5994 (base32
5995 "0dq67snpqxl9mifljm6zlnkdb0ghjwday0fvcn3i7zmrfszgzyf9"))))
5996 (build-system r-build-system)
5997 (propagated-inputs
5998 `(("r-annotationdbi" ,r-annotationdbi)
5999 ("r-annotationhub" ,r-annotationhub)
6000 ("r-dplyr" ,r-dplyr)
6001 ("r-genomeinfodb" ,r-genomeinfodb)
6002 ("r-genomicfeatures" ,r-genomicfeatures)
6003 ("r-genomicranges" ,r-genomicranges)
6004 ("r-ggplot2" ,r-ggplot2)
6005 ("r-iranges" ,r-iranges)
6006 ("r-readr" ,r-readr)
6007 ("r-regioner" ,r-regioner)
6008 ("r-reshape2" ,r-reshape2)
6009 ("r-rtracklayer" ,r-rtracklayer)
6010 ("r-s4vectors" ,r-s4vectors)))
6011 (native-inputs
6012 `(("r-knitr" ,r-knitr)))
6013 (home-page "https://bioconductor.org/packages/annotatr/")
6014 (synopsis "Annotation of genomic regions to genomic annotations")
6015 (description
6016 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
6017 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
6018 to investigate the intersecting genomic annotations. Such annotations include
6019 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
6020 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
6021 enhancers. The annotatr package provides an easy way to summarize and
6022 visualize the intersection of genomic sites/regions with genomic
6023 annotations.")
6024 (license license:gpl3)))
6025
6026 (define-public r-rsubread
6027 (package
6028 (name "r-rsubread")
6029 (version "2.4.2")
6030 (source
6031 (origin
6032 (method url-fetch)
6033 (uri (bioconductor-uri "Rsubread" version))
6034 (sha256
6035 (base32
6036 "1wczrw5jb69x45hd3rdqqs9vkysdqwlxn9h3kjzn57r4x5q7jrra"))))
6037 (properties `((upstream-name . "Rsubread")))
6038 (build-system r-build-system)
6039 (inputs `(("zlib" ,zlib)))
6040 (propagated-inputs
6041 `(("r-matrix" ,r-matrix)))
6042 (home-page "https://bioconductor.org/packages/Rsubread/")
6043 (synopsis "Subread sequence alignment and counting for R")
6044 (description
6045 "This package provides tools for alignment, quantification and analysis
6046 of second and third generation sequencing data. It includes functionality for
6047 read mapping, read counting, SNP calling, structural variant detection and
6048 gene fusion discovery. It can be applied to all major sequencing techologies
6049 and to both short and long sequence reads.")
6050 (license license:gpl3)))
6051
6052 (define-public r-flowutils
6053 (package
6054 (name "r-flowutils")
6055 (version "1.54.0")
6056 (source
6057 (origin
6058 (method url-fetch)
6059 (uri (bioconductor-uri "flowUtils" version))
6060 (sha256
6061 (base32
6062 "1q4g666nd51j24hcp2wxla1bdi77kbfd4i0pxgp7rs2jf7200k09"))))
6063 (properties `((upstream-name . "flowUtils")))
6064 (build-system r-build-system)
6065 (propagated-inputs
6066 `(("r-biobase" ,r-biobase)
6067 ("r-corpcor" ,r-corpcor)
6068 ("r-flowcore" ,r-flowcore)
6069 ("r-graph" ,r-graph)
6070 ("r-runit" ,r-runit)
6071 ("r-xml" ,r-xml)))
6072 (home-page "https://github.com/jspidlen/flowUtils")
6073 (synopsis "Utilities for flow cytometry")
6074 (description
6075 "This package provides utilities for flow cytometry data.")
6076 (license license:artistic2.0)))
6077
6078 (define-public r-consensusclusterplus
6079 (package
6080 (name "r-consensusclusterplus")
6081 (version "1.54.0")
6082 (source
6083 (origin
6084 (method url-fetch)
6085 (uri (bioconductor-uri "ConsensusClusterPlus" version))
6086 (sha256
6087 (base32
6088 "06h85l1mg2kpjprylzz44nhxp64k211plhch5qhg39wp0fk34lfp"))))
6089 (properties
6090 `((upstream-name . "ConsensusClusterPlus")))
6091 (build-system r-build-system)
6092 (propagated-inputs
6093 `(("r-all" ,r-all)
6094 ("r-biobase" ,r-biobase)
6095 ("r-cluster" ,r-cluster)))
6096 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
6097 (synopsis "Clustering algorithm")
6098 (description
6099 "This package provides an implementation of an algorithm for determining
6100 cluster count and membership by stability evidence in unsupervised analysis.")
6101 (license license:gpl2)))
6102
6103 (define-public r-cytolib
6104 (package
6105 (name "r-cytolib")
6106 (version "2.2.0")
6107 (source
6108 (origin
6109 (method url-fetch)
6110 (uri (bioconductor-uri "cytolib" version))
6111 (sha256
6112 (base32
6113 "1wylzps7wbvm64k62w5bbi8l74gaqca96psfapxfg6mcac5yz4qw"))))
6114 (properties `((upstream-name . "cytolib")))
6115 (build-system r-build-system)
6116 (arguments
6117 `(#:phases
6118 (modify-phases %standard-phases
6119 (add-after 'unpack 'fix-linking
6120 (lambda _
6121 (substitute* "src/Makevars.in"
6122 ;; This is to avoid having a plain directory on the list of
6123 ;; libraries to link.
6124 (("\\(RHDF5_LIBS\\)" match)
6125 (string-append match "/libhdf5.a")))
6126 #t)))))
6127 (native-inputs
6128 `(("r-knitr" ,r-knitr)
6129 ("pkg-config" ,pkg-config)))
6130 (propagated-inputs
6131 `(("r-bh" ,r-bh)
6132 ("r-rcpp" ,r-rcpp)
6133 ("r-rcpparmadillo" ,r-rcpparmadillo)
6134 ("r-rcppparallel" ,r-rcppparallel)
6135 ("r-rhdf5lib" ,r-rhdf5lib)
6136 ("r-rprotobuflib" ,r-rprotobuflib)))
6137 (home-page "https://bioconductor.org/packages/cytolib/")
6138 (synopsis "C++ infrastructure for working with gated cytometry")
6139 (description
6140 "This package provides the core data structure and API to represent and
6141 interact with gated cytometry data.")
6142 (license license:artistic2.0)))
6143
6144 (define-public r-flowcore
6145 (package
6146 (name "r-flowcore")
6147 (version "2.2.0")
6148 (source
6149 (origin
6150 (method url-fetch)
6151 (uri (bioconductor-uri "flowCore" version))
6152 (sha256
6153 (base32
6154 "001ickrl2asdl0zwpdjqkl1w7137nzxbryamxihgya394jw73xr8"))))
6155 (properties `((upstream-name . "flowCore")))
6156 (build-system r-build-system)
6157 (propagated-inputs
6158 `(("r-bh" ,r-bh)
6159 ("r-biobase" ,r-biobase)
6160 ("r-biocgenerics" ,r-biocgenerics)
6161 ("r-cytolib" ,r-cytolib)
6162 ("r-matrixstats" ,r-matrixstats)
6163 ("r-rcpp" ,r-rcpp)
6164 ("r-rcpparmadillo" ,r-rcpparmadillo)
6165 ("r-rprotobuflib" ,r-rprotobuflib)
6166 ("r-s4vectors" ,r-s4vectors)))
6167 (native-inputs
6168 `(("r-knitr" ,r-knitr)))
6169 (home-page "https://bioconductor.org/packages/flowCore")
6170 (synopsis "Basic structures for flow cytometry data")
6171 (description
6172 "This package provides S4 data structures and basic functions to deal
6173 with flow cytometry data.")
6174 (license license:artistic2.0)))
6175
6176 (define-public r-flowmeans
6177 (package
6178 (name "r-flowmeans")
6179 (version "1.50.0")
6180 (source
6181 (origin
6182 (method url-fetch)
6183 (uri (bioconductor-uri "flowMeans" version))
6184 (sha256
6185 (base32
6186 "02y5b3iqjlqjlxrqq0l24dr68sjaniz26jqf14cnnwz1xg5hz734"))))
6187 (properties `((upstream-name . "flowMeans")))
6188 (build-system r-build-system)
6189 (propagated-inputs
6190 `(("r-biobase" ,r-biobase)
6191 ("r-feature" ,r-feature)
6192 ("r-flowcore" ,r-flowcore)
6193 ("r-rrcov" ,r-rrcov)))
6194 (home-page "https://bioconductor.org/packages/flowMeans")
6195 (synopsis "Non-parametric flow cytometry data gating")
6196 (description
6197 "This package provides tools to identify cell populations in Flow
6198 Cytometry data using non-parametric clustering and segmented-regression-based
6199 change point detection.")
6200 (license license:artistic2.0)))
6201
6202 (define-public r-ncdfflow
6203 (package
6204 (name "r-ncdfflow")
6205 (version "2.36.0")
6206 (source
6207 (origin
6208 (method url-fetch)
6209 (uri (bioconductor-uri "ncdfFlow" version))
6210 (sha256
6211 (base32
6212 "1knqc3ic2vpck7n7m7adxjz3ac70ra89d5gvlgp9r2q3kgaciwac"))))
6213 (properties `((upstream-name . "ncdfFlow")))
6214 (build-system r-build-system)
6215 (arguments
6216 `(#:phases
6217 (modify-phases %standard-phases
6218 (add-after 'unpack 'fix-linking
6219 (lambda _
6220 (substitute* "src/Makevars"
6221 ;; This is to avoid having a plain directory on the list of
6222 ;; libraries to link.
6223 (("\\(RHDF5_LIBS\\)" match)
6224 (string-append match "/libhdf5.a")))
6225 #t)))))
6226 (propagated-inputs
6227 `(("r-bh" ,r-bh)
6228 ("r-biobase" ,r-biobase)
6229 ("r-biocgenerics" ,r-biocgenerics)
6230 ("r-flowcore" ,r-flowcore)
6231 ("r-rcpp" ,r-rcpp)
6232 ("r-rcpparmadillo" ,r-rcpparmadillo)
6233 ("r-rhdf5lib" ,r-rhdf5lib)
6234 ("r-zlibbioc" ,r-zlibbioc)))
6235 (native-inputs
6236 `(("r-knitr" ,r-knitr)))
6237 (home-page "https://bioconductor.org/packages/ncdfFlow/")
6238 (synopsis "HDF5 based storage for flow cytometry data")
6239 (description
6240 "This package provides HDF5 storage based methods and functions for
6241 manipulation of flow cytometry data.")
6242 (license license:artistic2.0)))
6243
6244 (define-public r-ggcyto
6245 (package
6246 (name "r-ggcyto")
6247 (version "1.18.0")
6248 (source
6249 (origin
6250 (method url-fetch)
6251 (uri (bioconductor-uri "ggcyto" version))
6252 (sha256
6253 (base32
6254 "0myjvhm9jjb9cih5nlka3f9zg5ncy8gy3krpdpa0618jdglvgr1m"))))
6255 (properties `((upstream-name . "ggcyto")))
6256 (build-system r-build-system)
6257 (propagated-inputs
6258 `(("r-data-table" ,r-data-table)
6259 ("r-flowcore" ,r-flowcore)
6260 ("r-flowworkspace" ,r-flowworkspace)
6261 ("r-ggplot2" ,r-ggplot2)
6262 ("r-gridextra" ,r-gridextra)
6263 ("r-hexbin" ,r-hexbin)
6264 ("r-ncdfflow" ,r-ncdfflow)
6265 ("r-plyr" ,r-plyr)
6266 ("r-rcolorbrewer" ,r-rcolorbrewer)
6267 ("r-rlang" ,r-rlang)
6268 ("r-scales" ,r-scales)))
6269 (native-inputs
6270 `(("r-knitr" ,r-knitr)))
6271 (home-page "https://github.com/RGLab/ggcyto/issues")
6272 (synopsis "Visualize Cytometry data with ggplot")
6273 (description
6274 "With the dedicated fortify method implemented for @code{flowSet},
6275 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
6276 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
6277 and some custom layers also make it easy to add gates and population
6278 statistics to the plot.")
6279 (license license:artistic2.0)))
6280
6281 (define-public r-flowviz
6282 (package
6283 (name "r-flowviz")
6284 (version "1.54.0")
6285 (source
6286 (origin
6287 (method url-fetch)
6288 (uri (bioconductor-uri "flowViz" version))
6289 (sha256
6290 (base32
6291 "1s6jrn2a7hv984xvm6gyn8k3hnma8qidrw9kgj9z5128hv330z7k"))))
6292 (properties `((upstream-name . "flowViz")))
6293 (build-system r-build-system)
6294 (propagated-inputs
6295 `(("r-biobase" ,r-biobase)
6296 ("r-flowcore" ,r-flowcore)
6297 ("r-hexbin" ,r-hexbin)
6298 ("r-idpmisc" ,r-idpmisc)
6299 ("r-kernsmooth" ,r-kernsmooth)
6300 ("r-lattice" ,r-lattice)
6301 ("r-latticeextra" ,r-latticeextra)
6302 ("r-mass" ,r-mass)
6303 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6304 (native-inputs
6305 `(("r-knitr" ,r-knitr)))
6306 (home-page "https://bioconductor.org/packages/flowViz/")
6307 (synopsis "Visualization for flow cytometry")
6308 (description
6309 "This package provides visualization tools for flow cytometry data.")
6310 (license license:artistic2.0)))
6311
6312 (define-public r-flowclust
6313 (package
6314 (name "r-flowclust")
6315 (version "3.28.0")
6316 (source
6317 (origin
6318 (method url-fetch)
6319 (uri (bioconductor-uri "flowClust" version))
6320 (sha256
6321 (base32
6322 "1ml3y5wq68jbyr7l5j4zs79bj5bbwzmn5gx41yi88hq78iwkscrq"))))
6323 (properties `((upstream-name . "flowClust")))
6324 (build-system r-build-system)
6325 (arguments
6326 `(#:configure-flags
6327 (list "--configure-args=--enable-bundled-gsl=no")))
6328 (propagated-inputs
6329 `(("r-biobase" ,r-biobase)
6330 ("r-biocgenerics" ,r-biocgenerics)
6331 ("r-clue" ,r-clue)
6332 ("r-corpcor" ,r-corpcor)
6333 ("r-ellipse" ,r-ellipse)
6334 ("r-flowcore" ,r-flowcore)
6335 ("r-flowviz" ,r-flowviz)
6336 ("r-graph" ,r-graph)
6337 ("r-mnormt" ,r-mnormt)))
6338 (inputs
6339 `(("gsl" ,gsl)))
6340 (native-inputs
6341 `(("pkg-config" ,pkg-config)
6342 ("r-knitr" ,r-knitr)))
6343 (home-page "https://bioconductor.org/packages/flowClust")
6344 (synopsis "Clustering for flow cytometry")
6345 (description
6346 "This package provides robust model-based clustering using a t-mixture
6347 model with Box-Cox transformation.")
6348 (license license:artistic2.0)))
6349
6350 ;; TODO: this package bundles an old version of protobuf. It's not easy to
6351 ;; make it use our protobuf package instead.
6352 (define-public r-rprotobuflib
6353 (package
6354 (name "r-rprotobuflib")
6355 (version "2.2.0")
6356 (source
6357 (origin
6358 (method url-fetch)
6359 (uri (bioconductor-uri "RProtoBufLib" version))
6360 (sha256
6361 (base32
6362 "09n4ny3ymfkja2br4rrr2n9dzw3hs7qijhcq4mj0avr86i27llqz"))))
6363 (properties `((upstream-name . "RProtoBufLib")))
6364 (build-system r-build-system)
6365 (arguments
6366 `(#:phases
6367 (modify-phases %standard-phases
6368 (add-after 'unpack 'unpack-bundled-sources
6369 (lambda _
6370 (with-directory-excursion "src"
6371 (invoke "tar" "xf" "protobuf-3.10.0.tar.gz"))
6372 #t)))))
6373 (native-inputs
6374 `(("r-knitr" ,r-knitr)))
6375 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
6376 (synopsis "C++ headers and static libraries of Protocol buffers")
6377 (description
6378 "This package provides the headers and static library of Protocol buffers
6379 for other R packages to compile and link against.")
6380 (license license:bsd-3)))
6381
6382 (define-public r-flowworkspace
6383 (package
6384 (name "r-flowworkspace")
6385 (version "4.2.0")
6386 (source
6387 (origin
6388 (method url-fetch)
6389 (uri (bioconductor-uri "flowWorkspace" version))
6390 (sha256
6391 (base32
6392 "19svh32jq1dpq3ayhpd5r8bw0iax8d9kdvpvc23gx2pf16g1j5ag"))))
6393 (properties `((upstream-name . "flowWorkspace")))
6394 (build-system r-build-system)
6395 (arguments
6396 `(#:phases
6397 (modify-phases %standard-phases
6398 (add-after 'unpack 'fix-linking
6399 (lambda _
6400 (substitute* "src/Makevars"
6401 ;; This is to avoid having a plain directory on the list of
6402 ;; libraries to link.
6403 (("\\{h5lib\\}" match)
6404 (string-append match "/libhdf5.a")))
6405 #t)))))
6406 (propagated-inputs
6407 `(("r-aws-s3" ,r-aws-s3)
6408 ("r-aws-signature" ,r-aws-signature)
6409 ("r-bh" ,r-bh)
6410 ("r-biobase" ,r-biobase)
6411 ("r-biocgenerics" ,r-biocgenerics)
6412 ("r-cytolib" ,r-cytolib)
6413 ("r-data-table" ,r-data-table)
6414 ("r-digest" ,r-digest)
6415 ("r-dplyr" ,r-dplyr)
6416 ("r-flowcore" ,r-flowcore)
6417 ("r-ggplot2" ,r-ggplot2)
6418 ("r-graph" ,r-graph)
6419 ("r-lattice" ,r-lattice)
6420 ("r-latticeextra" ,r-latticeextra)
6421 ("r-matrixstats" ,r-matrixstats)
6422 ("r-ncdfflow" ,r-ncdfflow)
6423 ("r-rbgl" ,r-rbgl)
6424 ("r-rcpp" ,r-rcpp)
6425 ("r-rcpparmadillo" ,r-rcpparmadillo)
6426 ("r-rcppparallel" ,r-rcppparallel)
6427 ("r-rgraphviz" ,r-rgraphviz)
6428 ("r-rhdf5lib" ,r-rhdf5lib)
6429 ("r-rprotobuflib" ,r-rprotobuflib)
6430 ("r-scales" ,r-scales)
6431 ("r-xml" ,r-xml)))
6432 (native-inputs
6433 `(("r-knitr" ,r-knitr)))
6434 (home-page "https://bioconductor.org/packages/flowWorkspace/")
6435 (synopsis "Infrastructure for working with cytometry data")
6436 (description
6437 "This package is designed to facilitate comparison of automated gating
6438 methods against manual gating done in flowJo. This package allows you to
6439 import basic flowJo workspaces into BioConductor and replicate the gating from
6440 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
6441 samples, compensation, and transformation are performed so that the output
6442 matches the flowJo analysis.")
6443 (license license:artistic2.0)))
6444
6445 (define-public r-flowstats
6446 (package
6447 (name "r-flowstats")
6448 (version "4.2.0")
6449 (source
6450 (origin
6451 (method url-fetch)
6452 (uri (bioconductor-uri "flowStats" version))
6453 (sha256
6454 (base32
6455 "1i6nrwc55k4bn4qprgs6npy7wf8537m429yncqsygsv47z21ix6x"))))
6456 (properties `((upstream-name . "flowStats")))
6457 (build-system r-build-system)
6458 (propagated-inputs
6459 `(("r-biobase" ,r-biobase)
6460 ("r-biocgenerics" ,r-biocgenerics)
6461 ("r-cluster" ,r-cluster)
6462 ("r-fda" ,r-fda)
6463 ("r-flowcore" ,r-flowcore)
6464 ("r-flowviz" ,r-flowviz)
6465 ("r-flowworkspace" ,r-flowworkspace)
6466 ("r-kernsmooth" ,r-kernsmooth)
6467 ("r-ks" ,r-ks)
6468 ("r-lattice" ,r-lattice)
6469 ("r-mass" ,r-mass)
6470 ("r-ncdfflow" ,r-ncdfflow)
6471 ("r-rcolorbrewer" ,r-rcolorbrewer)
6472 ("r-rrcov" ,r-rrcov)))
6473 (home-page "http://www.github.com/RGLab/flowStats")
6474 (synopsis "Statistical methods for the analysis of flow cytometry data")
6475 (description
6476 "This package provides methods and functionality to analyze flow data
6477 that is beyond the basic infrastructure provided by the @code{flowCore}
6478 package.")
6479 (license license:artistic2.0)))
6480
6481 (define-public r-opencyto
6482 (package
6483 (name "r-opencyto")
6484 (version "2.2.0")
6485 (source
6486 (origin
6487 (method url-fetch)
6488 (uri (bioconductor-uri "openCyto" version))
6489 (sha256
6490 (base32
6491 "02dymy5fa0wjd4pql3jdv1d65mak7ra4il96va7c0km8s87rn40v"))))
6492 (properties `((upstream-name . "openCyto")))
6493 (build-system r-build-system)
6494 (propagated-inputs
6495 `(("r-biobase" ,r-biobase)
6496 ("r-biocgenerics" ,r-biocgenerics)
6497 ("r-clue" ,r-clue)
6498 ("r-data-table" ,r-data-table)
6499 ("r-flowclust" ,r-flowclust)
6500 ("r-flowcore" ,r-flowcore)
6501 ("r-flowstats" ,r-flowstats)
6502 ("r-flowviz" ,r-flowviz)
6503 ("r-flowworkspace" ,r-flowworkspace)
6504 ("r-graph" ,r-graph)
6505 ("r-gtools" ,r-gtools)
6506 ("r-ks" ,r-ks)
6507 ("r-lattice" ,r-lattice)
6508 ("r-mass" ,r-mass)
6509 ("r-ncdfflow" ,r-ncdfflow)
6510 ("r-plyr" ,r-plyr)
6511 ("r-r-utils" ,r-r-utils)
6512 ("r-rbgl" ,r-rbgl)
6513 ("r-rcolorbrewer" ,r-rcolorbrewer)
6514 ("r-rcpp" ,r-rcpp)
6515 ("r-rrcov" ,r-rrcov)))
6516 (native-inputs
6517 `(("r-knitr" ,r-knitr)))
6518 (home-page "https://bioconductor.org/packages/openCyto")
6519 (synopsis "Hierarchical gating pipeline for flow cytometry data")
6520 (description
6521 "This package is designed to facilitate the automated gating methods in a
6522 sequential way to mimic the manual gating strategy.")
6523 (license license:artistic2.0)))
6524
6525 (define-public r-cytoml
6526 (package
6527 (name "r-cytoml")
6528 (version "2.2.1")
6529 (source
6530 (origin
6531 (method url-fetch)
6532 (uri (bioconductor-uri "CytoML" version))
6533 (sha256
6534 (base32
6535 "1d8x49aqc95x1vx456hya5r7mal80pj9l6wmr5x5pb5r8qyzz6yq"))))
6536 (properties `((upstream-name . "CytoML")))
6537 (build-system r-build-system)
6538 (arguments
6539 `(#:phases
6540 (modify-phases %standard-phases
6541 (add-after 'unpack 'fix-linking
6542 (lambda _
6543 (substitute* "src/Makevars.in"
6544 ;; This is to avoid having a plain directory on the list of
6545 ;; libraries to link.
6546 (("\\{h5lib\\}" match)
6547 (string-append match "/libhdf5.a")))
6548 #t)))))
6549 (inputs
6550 `(("libxml2" ,libxml2)))
6551 (propagated-inputs
6552 `(("r-base64enc" ,r-base64enc)
6553 ("r-bh" ,r-bh)
6554 ("r-biobase" ,r-biobase)
6555 ("r-corpcor" ,r-corpcor)
6556 ("r-cytolib" ,r-cytolib)
6557 ("r-data-table" ,r-data-table)
6558 ("r-dplyr" ,r-dplyr)
6559 ("r-flowcore" ,r-flowcore)
6560 ("r-flowworkspace" ,r-flowworkspace)
6561 ("r-ggcyto" ,r-ggcyto)
6562 ("r-graph" ,r-graph)
6563 ("r-jsonlite" ,r-jsonlite)
6564 ("r-lattice" ,r-lattice)
6565 ("r-opencyto" ,r-opencyto)
6566 ("r-plyr" ,r-plyr)
6567 ("r-rbgl" ,r-rbgl)
6568 ("r-rcpp" ,r-rcpp)
6569 ("r-rcpparmadillo" ,r-rcpparmadillo)
6570 ("r-rcppparallel" ,r-rcppparallel)
6571 ("r-rgraphviz" ,r-rgraphviz)
6572 ("r-rhdf5lib" ,r-rhdf5lib)
6573 ("r-rprotobuflib" ,r-rprotobuflib)
6574 ("r-runit" ,r-runit)
6575 ("r-tibble" ,r-tibble)
6576 ("r-xml" ,r-xml)
6577 ("r-xml2" ,r-xml2)
6578 ("r-yaml" ,r-yaml)))
6579 (native-inputs
6580 `(("r-knitr" ,r-knitr)))
6581 (home-page "https://github.com/RGLab/CytoML")
6582 (synopsis "GatingML interface for cross platform cytometry data sharing")
6583 (description
6584 "This package provides an interface to implementations of the GatingML2.0
6585 standard to exchange gated cytometry data with other software platforms.")
6586 (license license:artistic2.0)))
6587
6588 (define-public r-flowsom
6589 (package
6590 (name "r-flowsom")
6591 (version "1.22.0")
6592 (source
6593 (origin
6594 (method url-fetch)
6595 (uri (bioconductor-uri "FlowSOM" version))
6596 (sha256
6597 (base32
6598 "0gydp6q6zqkadw356k9br646zfynz8gk9ckbx9d297x503j5sgwf"))))
6599 (properties `((upstream-name . "FlowSOM")))
6600 (build-system r-build-system)
6601 (propagated-inputs
6602 `(("r-biocgenerics" ,r-biocgenerics)
6603 ("r-consensusclusterplus" ,r-consensusclusterplus)
6604 ("r-cytoml" ,r-cytoml)
6605 ("r-flowcore" ,r-flowcore)
6606 ("r-flowworkspace" ,r-flowworkspace)
6607 ("r-igraph" ,r-igraph)
6608 ("r-rcolorbrewer" ,r-rcolorbrewer)
6609 ("r-tsne" ,r-tsne)
6610 ("r-xml" ,r-xml)))
6611 (home-page "https://bioconductor.org/packages/FlowSOM/")
6612 (synopsis "Visualize and interpret cytometry data")
6613 (description
6614 "FlowSOM offers visualization options for cytometry data, by using
6615 self-organizing map clustering and minimal spanning trees.")
6616 (license license:gpl2+)))
6617
6618 (define-public r-mixomics
6619 (package
6620 (name "r-mixomics")
6621 (version "6.14.0")
6622 (source
6623 (origin
6624 (method url-fetch)
6625 (uri (bioconductor-uri "mixOmics" version))
6626 (sha256
6627 (base32
6628 "0q43ay5r0qsx0zjjnrq24fk6pq5cimviky5lm4w2mbjclqf0gv0q"))))
6629 (properties `((upstream-name . "mixOmics")))
6630 (build-system r-build-system)
6631 (propagated-inputs
6632 `(("r-corpcor" ,r-corpcor)
6633 ("r-dplyr" ,r-dplyr)
6634 ("r-ellipse" ,r-ellipse)
6635 ("r-ggrepel" ,r-ggrepel)
6636 ("r-ggplot2" ,r-ggplot2)
6637 ("r-gridextra" ,r-gridextra)
6638 ("r-igraph" ,r-igraph)
6639 ("r-lattice" ,r-lattice)
6640 ("r-mass" ,r-mass)
6641 ("r-matrixstats" ,r-matrixstats)
6642 ("r-rarpack" ,r-rarpack)
6643 ("r-rcolorbrewer" ,r-rcolorbrewer)
6644 ("r-reshape2" ,r-reshape2)
6645 ("r-tidyr" ,r-tidyr)))
6646 (native-inputs
6647 `(("r-knitr" ,r-knitr)))
6648 (home-page "http://www.mixOmics.org")
6649 (synopsis "Multivariate methods for exploration of biological datasets")
6650 (description
6651 "mixOmics offers a wide range of multivariate methods for the exploration
6652 and integration of biological datasets with a particular focus on variable
6653 selection. The package proposes several sparse multivariate models we have
6654 developed to identify the key variables that are highly correlated, and/or
6655 explain the biological outcome of interest. The data that can be analysed
6656 with mixOmics may come from high throughput sequencing technologies, such as
6657 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
6658 also beyond the realm of omics (e.g. spectral imaging). The methods
6659 implemented in mixOmics can also handle missing values without having to
6660 delete entire rows with missing data.")
6661 (license license:gpl2+)))
6662
6663 (define-public r-depecher
6664 (package ;Source/Weave error
6665 (name "r-depecher")
6666 (version "1.6.0")
6667 (source
6668 (origin
6669 (method url-fetch)
6670 (uri (bioconductor-uri "DepecheR" version))
6671 (sha256
6672 (base32
6673 "0c7yv3a7k22nhhw3601n8jdl61cjmlny9b3nfrzsp78mkxi0h469"))))
6674 (properties `((upstream-name . "DepecheR")))
6675 (build-system r-build-system)
6676 (propagated-inputs
6677 `(("r-beanplot" ,r-beanplot)
6678 ("r-dosnow" ,r-dosnow)
6679 ("r-dplyr" ,r-dplyr)
6680 ("r-fnn" ,r-fnn)
6681 ("r-foreach" ,r-foreach)
6682 ("r-ggplot2" ,r-ggplot2)
6683 ("r-gmodels" ,r-gmodels)
6684 ("r-gplots" ,r-gplots)
6685 ("r-mass" ,r-mass)
6686 ("r-matrixstats" ,r-matrixstats)
6687 ("r-mixomics" ,r-mixomics)
6688 ("r-moments" ,r-moments)
6689 ("r-rcpp" ,r-rcpp)
6690 ("r-rcppeigen" ,r-rcppeigen)
6691 ("r-reshape2" ,r-reshape2)
6692 ("r-robustbase" ,r-robustbase)
6693 ("r-viridis" ,r-viridis)))
6694 (native-inputs
6695 `(("r-knitr" ,r-knitr)))
6696 (home-page "https://bioconductor.org/packages/DepecheR/")
6697 (synopsis "Identify traits of clusters in high-dimensional entities")
6698 (description
6699 "The purpose of this package is to identify traits in a dataset that can
6700 separate groups. This is done on two levels. First, clustering is performed,
6701 using an implementation of sparse K-means. Secondly, the generated clusters
6702 are used to predict outcomes of groups of individuals based on their
6703 distribution of observations in the different clusters. As certain clusters
6704 with separating information will be identified, and these clusters are defined
6705 by a sparse number of variables, this method can reduce the complexity of
6706 data, to only emphasize the data that actually matters.")
6707 (license license:expat)))
6708
6709 (define-public r-rcistarget
6710 (package
6711 (name "r-rcistarget")
6712 (version "1.10.0")
6713 (source
6714 (origin
6715 (method url-fetch)
6716 (uri (bioconductor-uri "RcisTarget" version))
6717 (sha256
6718 (base32
6719 "0a711jzxl1kggpk3ln68xzc5y30my4nbs1mxx8951pyi3jvzjfyf"))))
6720 (properties `((upstream-name . "RcisTarget")))
6721 (build-system r-build-system)
6722 (propagated-inputs
6723 `(("r-aucell" ,r-aucell)
6724 ("r-biocgenerics" ,r-biocgenerics)
6725 ("r-data-table" ,r-data-table)
6726 ("r-feather" ,r-feather)
6727 ("r-gseabase" ,r-gseabase)
6728 ("r-r-utils" ,r-r-utils)
6729 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6730 (native-inputs
6731 `(("r-knitr" ,r-knitr)))
6732 (home-page "https://aertslab.org/#scenic")
6733 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
6734 (description
6735 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
6736 over-represented on a gene list. In a first step, RcisTarget selects DNA
6737 motifs that are significantly over-represented in the surroundings of the
6738 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
6739 achieved by using a database that contains genome-wide cross-species rankings
6740 for each motif. The motifs that are then annotated to TFs and those that have
6741 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
6742 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
6743 genes in the gene-set that are ranked above the leading edge).")
6744 (license license:gpl3)))
6745
6746 (define-public r-cicero
6747 (package
6748 (name "r-cicero")
6749 (version "1.8.1")
6750 (source
6751 (origin
6752 (method url-fetch)
6753 (uri (bioconductor-uri "cicero" version))
6754 (sha256
6755 (base32
6756 "12y857p4p0m7k72bimli8wjn9cd0gxjwcs3n7ri9pn9l9d42krqr"))))
6757 (build-system r-build-system)
6758 (propagated-inputs
6759 `(("r-assertthat" ,r-assertthat)
6760 ("r-biobase" ,r-biobase)
6761 ("r-biocgenerics" ,r-biocgenerics)
6762 ("r-data-table" ,r-data-table)
6763 ("r-dplyr" ,r-dplyr)
6764 ("r-fnn" ,r-fnn)
6765 ("r-genomicranges" ,r-genomicranges)
6766 ("r-ggplot2" ,r-ggplot2)
6767 ("r-glasso" ,r-glasso)
6768 ("r-gviz" ,r-gviz)
6769 ("r-igraph" ,r-igraph)
6770 ("r-iranges" ,r-iranges)
6771 ("r-matrix" ,r-matrix)
6772 ("r-monocle" ,r-monocle)
6773 ("r-plyr" ,r-plyr)
6774 ("r-reshape2" ,r-reshape2)
6775 ("r-s4vectors" ,r-s4vectors)
6776 ("r-stringi" ,r-stringi)
6777 ("r-stringr" ,r-stringr)
6778 ("r-tibble" ,r-tibble)
6779 ("r-tidyr" ,r-tidyr)
6780 ("r-vgam" ,r-vgam)))
6781 (native-inputs
6782 `(("r-knitr" ,r-knitr)))
6783 (home-page "https://bioconductor.org/packages/cicero/")
6784 (synopsis "Predict cis-co-accessibility from single-cell data")
6785 (description
6786 "Cicero computes putative cis-regulatory maps from single-cell chromatin
6787 accessibility data. It also extends the monocle package for use in chromatin
6788 accessibility data.")
6789 (license license:expat)))
6790
6791 ;; This is the latest commit on the "monocle3" branch.
6792 (define-public r-cicero-monocle3
6793 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
6794 (revision "1"))
6795 (package (inherit r-cicero)
6796 (name "r-cicero-monocle3")
6797 (version (git-version "1.3.2" revision commit))
6798 (source
6799 (origin
6800 (method git-fetch)
6801 (uri (git-reference
6802 (url "https://github.com/cole-trapnell-lab/cicero-release")
6803 (commit commit)))
6804 (file-name (git-file-name name version))
6805 (sha256
6806 (base32
6807 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
6808 (propagated-inputs
6809 `(("r-monocle3" ,r-monocle3)
6810 ,@(alist-delete "r-monocle"
6811 (package-propagated-inputs r-cicero)))))))
6812
6813 (define-public r-cistopic
6814 (let ((commit "29abd8df9afb60ff27ac3f0a590930debe926950")
6815 (revision "0"))
6816 (package
6817 (name "r-cistopic")
6818 (version (git-version "0.2.1" revision commit))
6819 (source
6820 (origin
6821 (method git-fetch)
6822 (uri (git-reference
6823 (url "https://github.com/aertslab/cisTopic")
6824 (commit commit)))
6825 (file-name (git-file-name name version))
6826 (sha256
6827 (base32
6828 "0s8irpsv5d2zcv4ihanvsf1vrpignzliscxnvs4519af3jmx78h8"))))
6829 (build-system r-build-system)
6830 (propagated-inputs
6831 `(("r-aucell" ,r-aucell)
6832 ("r-data-table" ,r-data-table)
6833 ("r-dplyr" ,r-dplyr)
6834 ("r-dosnow" ,r-dosnow)
6835 ("r-dt" ,r-dt)
6836 ("r-feather" ,r-feather)
6837 ("r-fitdistrplus" ,r-fitdistrplus)
6838 ("r-genomicranges" ,r-genomicranges)
6839 ("r-ggplot2" ,r-ggplot2)
6840 ("r-lda" ,r-lda)
6841 ("r-matrix" ,r-matrix)
6842 ("r-plyr" ,r-plyr)
6843 ("r-rcistarget" ,r-rcistarget)
6844 ("r-rtracklayer" ,r-rtracklayer)
6845 ("r-s4vectors" ,r-s4vectors)))
6846 (home-page "https://github.com/aertslab/cisTopic")
6847 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
6848 (description
6849 "The sparse nature of single cell epigenomics data can be overruled using
6850 probabilistic modelling methods such as @dfn{Latent Dirichlet
6851 Allocation} (LDA). This package allows the probabilistic modelling of
6852 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
6853 includes functionalities to identify cell states based on the contribution of
6854 cisTopics and explore the nature and regulatory proteins driving them.")
6855 (license license:gpl3))))
6856
6857 (define-public r-genie3
6858 (package
6859 (name "r-genie3")
6860 (version "1.12.0")
6861 (source
6862 (origin
6863 (method url-fetch)
6864 (uri (bioconductor-uri "GENIE3" version))
6865 (sha256
6866 (base32
6867 "1z7qkv0cgdx2plhc7xdz6s7vwdjhzcdadi35wg3fl6xpids5njf5"))))
6868 (properties `((upstream-name . "GENIE3")))
6869 (build-system r-build-system)
6870 (propagated-inputs `(("r-reshape2" ,r-reshape2)))
6871 (native-inputs
6872 `(("r-knitr" ,r-knitr)))
6873 (home-page "https://bioconductor.org/packages/GENIE3")
6874 (synopsis "Gene network inference with ensemble of trees")
6875 (description
6876 "This package implements the GENIE3 algorithm for inferring gene
6877 regulatory networks from expression data.")
6878 (license license:gpl2+)))
6879
6880 (define-public r-roc
6881 (package
6882 (name "r-roc")
6883 (version "1.66.0")
6884 (source
6885 (origin
6886 (method url-fetch)
6887 (uri (bioconductor-uri "ROC" version))
6888 (sha256
6889 (base32
6890 "02b9n42z3kjrfxpdf3glqvimd79nhnycq00mb09fzhkpp5zl43c9"))))
6891 (properties `((upstream-name . "ROC")))
6892 (build-system r-build-system)
6893 (propagated-inputs
6894 `(("r-knitr" ,r-knitr)))
6895 (home-page "https://www.bioconductor.org/packages/ROC/")
6896 (synopsis "Utilities for ROC curves")
6897 (description
6898 "This package provides utilities for @dfn{Receiver Operating
6899 Characteristic} (ROC) curves, with a focus on micro arrays.")
6900 (license license:artistic2.0)))
6901
6902 (define-public r-illuminahumanmethylation450kanno-ilmn12-hg19
6903 (package
6904 (name "r-illuminahumanmethylation450kanno-ilmn12-hg19")
6905 (version "0.6.0")
6906 (source
6907 (origin
6908 (method url-fetch)
6909 (uri (bioconductor-uri
6910 "IlluminaHumanMethylation450kanno.ilmn12.hg19"
6911 version 'annotation))
6912 (sha256
6913 (base32
6914 "059vlxsx3p3fcnywwirahsc6mlk813zpqnbv0jsrag6x5bb8z6r4"))))
6915 (properties
6916 `((upstream-name
6917 . "IlluminaHumanMethylation450kanno.ilmn12.hg19")))
6918 (build-system r-build-system)
6919 (propagated-inputs `(("r-minfi" ,r-minfi)))
6920 (home-page
6921 "https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19/")
6922 (synopsis "Annotation for Illumina's 450k methylation arrays")
6923 (description
6924 "This package provides manifests and annotation for Illumina's 450k array
6925 data.")
6926 (license license:artistic2.0)))
6927
6928 (define-public r-watermelon
6929 (package
6930 (name "r-watermelon")
6931 (version "1.34.0")
6932 (source
6933 (origin
6934 (method url-fetch)
6935 (uri (bioconductor-uri "wateRmelon" version))
6936 (sha256
6937 (base32
6938 "1sc2nxg9bafpvlwqhky2p5b6fkimkk9v3xcab9kvwnj6szrb6p3f"))))
6939 (properties `((upstream-name . "wateRmelon")))
6940 (build-system r-build-system)
6941 (propagated-inputs
6942 `(("r-biobase" ,r-biobase)
6943 ("r-illuminahumanmethylation450kanno-ilmn12-hg19"
6944 ,r-illuminahumanmethylation450kanno-ilmn12-hg19)
6945 ("r-illuminaio" ,r-illuminaio)
6946 ("r-limma" ,r-limma)
6947 ("r-lumi" ,r-lumi)
6948 ("r-matrixstats" ,r-matrixstats)
6949 ("r-methylumi" ,r-methylumi)
6950 ("r-roc" ,r-roc)))
6951 (home-page "https://bioconductor.org/packages/wateRmelon/")
6952 (synopsis "Illumina 450 methylation array normalization and metrics")
6953 (description
6954 "The standard index of DNA methylation (beta) is computed from methylated
6955 and unmethylated signal intensities. Betas calculated from raw signal
6956 intensities perform well, but using 11 methylomic datasets we demonstrate that
6957 quantile normalization methods produce marked improvement. The commonly used
6958 procedure of normalizing betas is inferior to the separate normalization of M
6959 and U, and it is also advantageous to normalize Type I and Type II assays
6960 separately. This package provides 15 flavours of betas and three performance
6961 metrics, with methods for objects produced by the @code{methylumi} and
6962 @code{minfi} packages.")
6963 (license license:gpl3)))
6964
6965 (define-public r-gdsfmt
6966 (package
6967 (name "r-gdsfmt")
6968 (version "1.26.0")
6969 (source
6970 (origin
6971 (method url-fetch)
6972 (uri (bioconductor-uri "gdsfmt" version))
6973 (sha256
6974 (base32
6975 "0x8ik179sf38ihx2y24cvsa9d8isdmx2z27sjhcwq0r3xpjxpz1a"))
6976 (modules '((guix build utils)))
6977 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
6978 ;; them and link with system libraries instead.
6979 (snippet
6980 '(begin
6981 (for-each delete-file-recursively
6982 '("src/LZ4"
6983 "src/XZ"
6984 "src/ZLIB"))
6985 (substitute* "src/Makevars"
6986 (("all: \\$\\(SHLIB\\)") "all:")
6987 (("\\$\\(SHLIB\\): liblzma.a") "")
6988 (("(ZLIB|LZ4)/.*") "")
6989 (("CoreArray/dVLIntGDS.cpp.*")
6990 "CoreArray/dVLIntGDS.cpp")
6991 (("CoreArray/dVLIntGDS.o.*")
6992 "CoreArray/dVLIntGDS.o")
6993 (("PKG_LIBS = ./liblzma.a")
6994 "PKG_LIBS = -llz4"))
6995 (substitute* "src/CoreArray/dStream.h"
6996 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
6997 (string-append "include <" header ">")))
6998 #t))))
6999 (properties `((upstream-name . "gdsfmt")))
7000 (build-system r-build-system)
7001 (inputs
7002 `(("lz4" ,lz4)
7003 ("xz" ,xz)
7004 ("zlib" ,zlib)))
7005 (native-inputs
7006 `(("r-knitr" ,r-knitr)))
7007 (home-page "http://corearray.sourceforge.net/")
7008 (synopsis
7009 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
7010 (description
7011 "This package provides a high-level R interface to CoreArray @dfn{Genomic
7012 Data Structure} (GDS) data files, which are portable across platforms with
7013 hierarchical structure to store multiple scalable array-oriented data sets
7014 with metadata information. It is suited for large-scale datasets, especially
7015 for data which are much larger than the available random-access memory. The
7016 @code{gdsfmt} package offers efficient operations specifically designed for
7017 integers of less than 8 bits, since a diploid genotype, like
7018 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
7019 byte. Data compression and decompression are available with relatively
7020 efficient random access. It is also allowed to read a GDS file in parallel
7021 with multiple R processes supported by the package @code{parallel}.")
7022 (license license:lgpl3)))
7023
7024 (define-public r-bigmelon
7025 (package
7026 (name "r-bigmelon")
7027 (version "1.16.0")
7028 (source
7029 (origin
7030 (method url-fetch)
7031 (uri (bioconductor-uri "bigmelon" version))
7032 (sha256
7033 (base32
7034 "0hj5njwx7n681vigkq4560f9dm7mdjgvcwbgp5nbdn1fb2z24bk7"))))
7035 (properties `((upstream-name . "bigmelon")))
7036 (build-system r-build-system)
7037 (propagated-inputs
7038 `(("r-biobase" ,r-biobase)
7039 ("r-biocgenerics" ,r-biocgenerics)
7040 ("r-gdsfmt" ,r-gdsfmt)
7041 ("r-geoquery" ,r-geoquery)
7042 ("r-methylumi" ,r-methylumi)
7043 ("r-minfi" ,r-minfi)
7044 ("r-watermelon" ,r-watermelon)))
7045 (home-page "https://bioconductor.org/packages/bigmelon/")
7046 (synopsis "Illumina methylation array analysis for large experiments")
7047 (description
7048 "This package provides methods for working with Illumina arrays using the
7049 @code{gdsfmt} package.")
7050 (license license:gpl3)))
7051
7052 (define-public r-seqbias
7053 (package
7054 (name "r-seqbias")
7055 (version "1.38.0")
7056 (source
7057 (origin
7058 (method url-fetch)
7059 (uri (bioconductor-uri "seqbias" version))
7060 (sha256
7061 (base32
7062 "1m634sidmk6c603k2gflyiddkns9vr6ij591nmab523xk5r2f4b2"))))
7063 (properties `((upstream-name . "seqbias")))
7064 (build-system r-build-system)
7065 (propagated-inputs
7066 `(("r-biostrings" ,r-biostrings)
7067 ("r-genomicranges" ,r-genomicranges)
7068 ("r-rhtslib" ,r-rhtslib)))
7069 (home-page "https://bioconductor.org/packages/seqbias/")
7070 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
7071 (description
7072 "This package implements a model of per-position sequencing bias in
7073 high-throughput sequencing data using a simple Bayesian network, the structure
7074 and parameters of which are trained on a set of aligned reads and a reference
7075 genome sequence.")
7076 (license license:lgpl3)))
7077
7078 (define-public r-snplocs-hsapiens-dbsnp144-grch37
7079 (package
7080 (name "r-snplocs-hsapiens-dbsnp144-grch37")
7081 (version "0.99.20")
7082 (source (origin
7083 (method url-fetch)
7084 (uri (bioconductor-uri "SNPlocs.Hsapiens.dbSNP144.GRCh37"
7085 version 'annotation))
7086 (sha256
7087 (base32
7088 "1z8kx43ki1jvj7ms7pcybakcdimfwr6zpjvspkjmma97bdz093iz"))))
7089 (build-system r-build-system)
7090 ;; As this package provides little more than a very large data file it
7091 ;; doesn't make sense to build substitutes.
7092 (arguments `(#:substitutable? #f))
7093 (propagated-inputs
7094 `(("r-biocgenerics" ,r-biocgenerics)
7095 ("r-s4vectors" ,r-s4vectors)
7096 ("r-iranges" ,r-iranges)
7097 ("r-genomeinfodb" ,r-genomeinfodb)
7098 ("r-genomicranges" ,r-genomicranges)
7099 ("r-bsgenome" ,r-bsgenome)
7100 ("r-biostrings" ,r-biostrings)))
7101 (home-page
7102 "https://bioconductor.org/packages/SNPlocs.Hsapiens.dbSNP144.GRCh37/")
7103 (synopsis "SNP locations for Homo sapiens (dbSNP Build 144)")
7104 (description "This package provides SNP locations and alleles for Homo
7105 sapiens extracted from NCBI dbSNP Build 144. The source data files used for
7106 this package were created by NCBI on May 29-30, 2015, and contain SNPs mapped
7107 to reference genome GRCh37.p13. Note that the GRCh37.p13 genome is a
7108 patched version of GRCh37. However the patch doesn't alter chromosomes 1-22,
7109 X, Y, MT. GRCh37 itself is the same as the hg19 genome from UCSC *except* for
7110 the mitochondrion chromosome. Therefore, the SNPs in this package can be
7111 injected in @code{BSgenome.Hsapiens.UCSC.hg19} and they will land at the
7112 correct position but this injection will exclude chrM (i.e. nothing will be
7113 injected in that sequence).")
7114 (license license:artistic2.0)))
7115
7116 (define-public r-reqon
7117 (package
7118 (name "r-reqon")
7119 (version "1.36.0")
7120 (source
7121 (origin
7122 (method url-fetch)
7123 (uri (bioconductor-uri "ReQON" version))
7124 (sha256
7125 (base32
7126 "1yz0r0rrk4n6dnqbdq41lvs5z8l6vkx729m0a7f29svw4dbc6mdq"))))
7127 (properties `((upstream-name . "ReQON")))
7128 (build-system r-build-system)
7129 (propagated-inputs
7130 `(("r-rjava" ,r-rjava)
7131 ("r-rsamtools" ,r-rsamtools)
7132 ("r-seqbias" ,r-seqbias)))
7133 (home-page "https://bioconductor.org/packages/ReQON/")
7134 (synopsis "Recalibrating quality of nucleotides")
7135 (description
7136 "This package provides an implementation of an algorithm for
7137 recalibrating the base quality scores for aligned sequencing data in BAM
7138 format.")
7139 (license license:gpl2)))
7140
7141 (define-public r-wavcluster
7142 (package
7143 (name "r-wavcluster")
7144 (version "2.24.0")
7145 (source
7146 (origin
7147 (method url-fetch)
7148 (uri (bioconductor-uri "wavClusteR" version))
7149 (sha256
7150 (base32
7151 "18cg0jbr3rjyx31wwyag1n5gams55pbd2rvb99i3g80q9hvswawi"))))
7152 (properties `((upstream-name . "wavClusteR")))
7153 (build-system r-build-system)
7154 (propagated-inputs
7155 `(("r-biocgenerics" ,r-biocgenerics)
7156 ("r-biostrings" ,r-biostrings)
7157 ("r-foreach" ,r-foreach)
7158 ("r-genomicfeatures" ,r-genomicfeatures)
7159 ("r-genomicranges" ,r-genomicranges)
7160 ("r-ggplot2" ,r-ggplot2)
7161 ("r-hmisc" ,r-hmisc)
7162 ("r-iranges" ,r-iranges)
7163 ("r-mclust" ,r-mclust)
7164 ("r-rsamtools" ,r-rsamtools)
7165 ("r-rtracklayer" ,r-rtracklayer)
7166 ("r-s4vectors" ,r-s4vectors)
7167 ("r-seqinr" ,r-seqinr)
7168 ("r-stringr" ,r-stringr)))
7169 (native-inputs
7170 `(("r-knitr" ,r-knitr)))
7171 (home-page "https://bioconductor.org/packages/wavClusteR/")
7172 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
7173 (description
7174 "This package provides an integrated pipeline for the analysis of
7175 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
7176 sequencing errors, SNPs and additional non-experimental sources by a non-
7177 parametric mixture model. The protein binding sites (clusters) are then
7178 resolved at high resolution and cluster statistics are estimated using a
7179 rigorous Bayesian framework. Post-processing of the results, data export for
7180 UCSC genome browser visualization and motif search analysis are provided. In
7181 addition, the package integrates RNA-Seq data to estimate the False
7182 Discovery Rate of cluster detection. Key functions support parallel multicore
7183 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
7184 be applied to the analysis of other NGS data obtained from experimental
7185 procedures that induce nucleotide substitutions (e.g. BisSeq).")
7186 (license license:gpl2)))
7187
7188 (define-public r-timeseriesexperiment
7189 (package
7190 (name "r-timeseriesexperiment")
7191 (version "1.8.0")
7192 (source
7193 (origin
7194 (method url-fetch)
7195 (uri (bioconductor-uri "TimeSeriesExperiment" version))
7196 (sha256
7197 (base32
7198 "1jx0rk660mfzk7rfhamnp0disx3bv456cqi9hyaz2wcbcdrlvcjn"))))
7199 (properties
7200 `((upstream-name . "TimeSeriesExperiment")))
7201 (build-system r-build-system)
7202 (propagated-inputs
7203 `(("r-deseq2" ,r-deseq2)
7204 ("r-dplyr" ,r-dplyr)
7205 ("r-dynamictreecut" ,r-dynamictreecut)
7206 ("r-edger" ,r-edger)
7207 ("r-ggplot2" ,r-ggplot2)
7208 ("r-hmisc" ,r-hmisc)
7209 ("r-limma" ,r-limma)
7210 ("r-magrittr" ,r-magrittr)
7211 ("r-proxy" ,r-proxy)
7212 ("r-s4vectors" ,r-s4vectors)
7213 ("r-summarizedexperiment" ,r-summarizedexperiment)
7214 ("r-tibble" ,r-tibble)
7215 ("r-tidyr" ,r-tidyr)
7216 ("r-vegan" ,r-vegan)
7217 ("r-viridis" ,r-viridis)))
7218 (native-inputs
7219 `(("r-knitr" ,r-knitr)))
7220 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
7221 (synopsis "Analysis for short time-series data")
7222 (description
7223 "This package is a visualization and analysis toolbox for short time
7224 course data which includes dimensionality reduction, clustering, two-sample
7225 differential expression testing and gene ranking techniques. The package also
7226 provides methods for retrieving enriched pathways.")
7227 (license license:lgpl3+)))
7228
7229 (define-public r-variantfiltering
7230 (package
7231 (name "r-variantfiltering")
7232 (version "1.26.0")
7233 (source
7234 (origin
7235 (method url-fetch)
7236 (uri (bioconductor-uri "VariantFiltering" version))
7237 (sha256
7238 (base32
7239 "0zy53knvyk8wy3hmnsxc0w9qkhvx6xhviskvx7rwmrsi7pz531l5"))))
7240 (properties
7241 `((upstream-name . "VariantFiltering")))
7242 (build-system r-build-system)
7243 (propagated-inputs
7244 `(("r-annotationdbi" ,r-annotationdbi)
7245 ("r-biobase" ,r-biobase)
7246 ("r-biocgenerics" ,r-biocgenerics)
7247 ("r-biocparallel" ,r-biocparallel)
7248 ("r-biostrings" ,r-biostrings)
7249 ("r-bsgenome" ,r-bsgenome)
7250 ("r-dt" ,r-dt)
7251 ("r-genomeinfodb" ,r-genomeinfodb)
7252 ("r-genomicfeatures" ,r-genomicfeatures)
7253 ("r-genomicranges" ,r-genomicranges)
7254 ("r-genomicscores" ,r-genomicscores)
7255 ("r-graph" ,r-graph)
7256 ("r-gviz" ,r-gviz)
7257 ("r-iranges" ,r-iranges)
7258 ("r-rbgl" ,r-rbgl)
7259 ("r-rsamtools" ,r-rsamtools)
7260 ("r-s4vectors" ,r-s4vectors)
7261 ("r-shiny" ,r-shiny)
7262 ("r-shinyjs" ,r-shinyjs)
7263 ("r-shinythemes" ,r-shinythemes)
7264 ("r-shinytree" ,r-shinytree)
7265 ("r-summarizedexperiment" ,r-summarizedexperiment)
7266 ("r-variantannotation" ,r-variantannotation)
7267 ("r-xvector" ,r-xvector)))
7268 (home-page "https://github.com/rcastelo/VariantFiltering")
7269 (synopsis "Filtering of coding and non-coding genetic variants")
7270 (description
7271 "Filter genetic variants using different criteria such as inheritance
7272 model, amino acid change consequence, minor allele frequencies across human
7273 populations, splice site strength, conservation, etc.")
7274 (license license:artistic2.0)))
7275
7276 (define-public r-genomegraphs
7277 (package
7278 (name "r-genomegraphs")
7279 (version "1.46.0")
7280 (source
7281 (origin
7282 (method url-fetch)
7283 (uri (bioconductor-uri "GenomeGraphs" version))
7284 (sha256
7285 (base32
7286 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
7287 (properties `((upstream-name . "GenomeGraphs")))
7288 (build-system r-build-system)
7289 (propagated-inputs
7290 `(("r-biomart" ,r-biomart)))
7291 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
7292 (synopsis "Plotting genomic information from Ensembl")
7293 (description
7294 "Genomic data analyses requires integrated visualization of known genomic
7295 information and new experimental data. GenomeGraphs uses the biomaRt package
7296 to perform live annotation queries to Ensembl and translates this to e.g.
7297 gene/transcript structures in viewports of the grid graphics package. This
7298 results in genomic information plotted together with your data. Another
7299 strength of GenomeGraphs is to plot different data types such as array CGH,
7300 gene expression, sequencing and other data, together in one plot using the
7301 same genome coordinate system.")
7302 (license license:artistic2.0)))
7303
7304 (define-public r-wavetiling
7305 (package
7306 (name "r-wavetiling")
7307 (version "1.28.0")
7308 (source
7309 (origin
7310 (method url-fetch)
7311 (uri (bioconductor-uri "waveTiling" version))
7312 (sha256
7313 (base32
7314 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
7315 (properties `((upstream-name . "waveTiling")))
7316 (build-system r-build-system)
7317 (propagated-inputs
7318 `(("r-affy" ,r-affy)
7319 ("r-biobase" ,r-biobase)
7320 ("r-biostrings" ,r-biostrings)
7321 ("r-genomegraphs" ,r-genomegraphs)
7322 ("r-genomicranges" ,r-genomicranges)
7323 ("r-iranges" ,r-iranges)
7324 ("r-oligo" ,r-oligo)
7325 ("r-oligoclasses" ,r-oligoclasses)
7326 ("r-preprocesscore" ,r-preprocesscore)
7327 ("r-waveslim" ,r-waveslim)))
7328 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
7329 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
7330 (description
7331 "This package is designed to conduct transcriptome analysis for tiling
7332 arrays based on fast wavelet-based functional models.")
7333 (license license:gpl2+)))
7334
7335 (define-public r-variancepartition
7336 (package
7337 (name "r-variancepartition")
7338 (version "1.20.0")
7339 (source
7340 (origin
7341 (method url-fetch)
7342 (uri (bioconductor-uri "variancePartition" version))
7343 (sha256
7344 (base32
7345 "0fisaqd5v8xy9rz9l1zs62k1n2h4k1irzgwj46ci947l52x1qhah"))))
7346 (properties
7347 `((upstream-name . "variancePartition")))
7348 (build-system r-build-system)
7349 (propagated-inputs
7350 `(("r-biobase" ,r-biobase)
7351 ("r-biocparallel" ,r-biocparallel)
7352 ("r-colorramps" ,r-colorramps)
7353 ("r-doparallel" ,r-doparallel)
7354 ("r-foreach" ,r-foreach)
7355 ("r-ggplot2" ,r-ggplot2)
7356 ("r-gplots" ,r-gplots)
7357 ("r-iterators" ,r-iterators)
7358 ("r-limma" ,r-limma)
7359 ("r-lme4" ,r-lme4)
7360 ("r-lmertest" ,r-lmertest)
7361 ("r-mass" ,r-mass)
7362 ("r-pbkrtest" ,r-pbkrtest)
7363 ("r-progress" ,r-progress)
7364 ("r-reshape2" ,r-reshape2)
7365 ("r-scales" ,r-scales)))
7366 (native-inputs
7367 `(("r-knitr" ,r-knitr)))
7368 (home-page "https://bioconductor.org/packages/variancePartition/")
7369 (synopsis "Analyze variation in gene expression experiments")
7370 (description
7371 "This is a package providing tools to quantify and interpret multiple
7372 sources of biological and technical variation in gene expression experiments.
7373 It uses a linear mixed model to quantify variation in gene expression
7374 attributable to individual, tissue, time point, or technical variables. The
7375 package includes dream differential expression analysis for repeated
7376 measures.")
7377 (license license:gpl2+)))
7378
7379 (define-public r-htqpcr
7380 (package
7381 (name "r-htqpcr")
7382 (version "1.44.0")
7383 (source
7384 (origin
7385 (method url-fetch)
7386 (uri (bioconductor-uri "HTqPCR" version))
7387 (sha256
7388 (base32
7389 "1fzjx6psr41naq9ycpnv3lxlgkiyrpn7r2wl1i4gz45f3lax0yji"))))
7390 (properties `((upstream-name . "HTqPCR")))
7391 (build-system r-build-system)
7392 (propagated-inputs
7393 `(("r-affy" ,r-affy)
7394 ("r-biobase" ,r-biobase)
7395 ("r-gplots" ,r-gplots)
7396 ("r-limma" ,r-limma)
7397 ("r-rcolorbrewer" ,r-rcolorbrewer)))
7398 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
7399 "groups/bertone/software/HTqPCR.pdf"))
7400 (synopsis "Automated analysis of high-throughput qPCR data")
7401 (description
7402 "Analysis of Ct values from high throughput quantitative real-time
7403 PCR (qPCR) assays across multiple conditions or replicates. The input data
7404 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
7405 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
7406 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
7407 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
7408 loading, quality assessment, normalization, visualization and parametric or
7409 non-parametric testing for statistical significance in Ct values between
7410 features (e.g. genes, microRNAs).")
7411 (license license:artistic2.0)))
7412
7413 (define-public r-unifiedwmwqpcr
7414 (package
7415 (name "r-unifiedwmwqpcr")
7416 (version "1.26.0")
7417 (source
7418 (origin
7419 (method url-fetch)
7420 (uri (bioconductor-uri "unifiedWMWqPCR" version))
7421 (sha256
7422 (base32
7423 "1ad5a7gy43l8x1rf5lgqiy2bv6fgah7cbnp4lrqwshphlnr30ndv"))))
7424 (properties
7425 `((upstream-name . "unifiedWMWqPCR")))
7426 (build-system r-build-system)
7427 (propagated-inputs
7428 `(("r-biocgenerics" ,r-biocgenerics)
7429 ("r-htqpcr" ,r-htqpcr)))
7430 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
7431 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
7432 (description
7433 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
7434 data. This modified test allows for testing differential expression in qPCR
7435 data.")
7436 (license license:gpl2+)))
7437
7438 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
7439 ;; it here.
7440 (define-public r-activedriverwgs
7441 (package
7442 (name "r-activedriverwgs")
7443 (version "1.1.1")
7444 (source
7445 (origin
7446 (method url-fetch)
7447 (uri (cran-uri "ActiveDriverWGS" version))
7448 (sha256
7449 (base32
7450 "06mvakdc8d2pn91p0sr4ixc561s4ia5h1cvd1p7pqd6s50dy4say"))))
7451 (properties
7452 `((upstream-name . "ActiveDriverWGS")))
7453 (build-system r-build-system)
7454 (propagated-inputs
7455 `(("r-biostrings" ,r-biostrings)
7456 ("r-bsgenome" ,r-bsgenome)
7457 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
7458 ("r-genomeinfodb" ,r-genomeinfodb)
7459 ("r-genomicranges" ,r-genomicranges)
7460 ("r-iranges" ,r-iranges)
7461 ("r-s4vectors" ,r-s4vectors)))
7462 (native-inputs
7463 `(("r-knitr" ,r-knitr)))
7464 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
7465 (synopsis "Driver discovery tool for cancer whole genomes")
7466 (description
7467 "This package provides a method for finding an enrichment of cancer
7468 simple somatic mutations (SNVs and Indels) in functional elements across the
7469 human genome. ActiveDriverWGS detects coding and noncoding driver elements
7470 using whole genome sequencing data.")
7471 (license license:gpl3)))
7472
7473 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
7474 ;; it here.
7475 (define-public r-activepathways
7476 (package
7477 (name "r-activepathways")
7478 (version "1.0.2")
7479 (source
7480 (origin
7481 (method url-fetch)
7482 (uri (cran-uri "ActivePathways" version))
7483 (sha256
7484 (base32
7485 "1hxy760x141ykrpqdbfldq4ggj1svj3lsrpwi4rb2x7r4lna937l"))))
7486 (properties
7487 `((upstream-name . "ActivePathways")))
7488 (build-system r-build-system)
7489 (propagated-inputs
7490 `(("r-data-table" ,r-data-table)
7491 ("r-ggplot2" ,r-ggplot2)))
7492 (native-inputs
7493 `(("r-knitr" ,r-knitr)))
7494 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
7495 (synopsis "Multivariate pathway enrichment analysis")
7496 (description
7497 "This package represents an integrative method of analyzing multi omics
7498 data that conducts enrichment analysis of annotated gene sets. ActivePathways
7499 uses a statistical data fusion approach, rationalizes contributing evidence
7500 and highlights associated genes, improving systems-level understanding of
7501 cellular organization in health and disease.")
7502 (license license:gpl3)))
7503
7504 (define-public r-bgmix
7505 (package
7506 (name "r-bgmix")
7507 (version "1.50.0")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 (uri (bioconductor-uri "BGmix" version))
7512 (sha256
7513 (base32
7514 "0r9gjqajarg5mivxhqdzn8m8hmfarmzbplp3zqyyznccri03pv50"))))
7515 (properties `((upstream-name . "BGmix")))
7516 (build-system r-build-system)
7517 (propagated-inputs
7518 `(("r-kernsmooth" ,r-kernsmooth)))
7519 (home-page "https://bioconductor.org/packages/BGmix/")
7520 (synopsis "Bayesian models for differential gene expression")
7521 (description
7522 "This package provides fully Bayesian mixture models for differential
7523 gene expression.")
7524 (license license:gpl2)))
7525
7526 (define-public r-bgx
7527 (package
7528 (name "r-bgx")
7529 (version "1.56.0")
7530 (source
7531 (origin
7532 (method url-fetch)
7533 (uri (bioconductor-uri "bgx" version))
7534 (sha256
7535 (base32
7536 "0gm4wv9drqvg9r4f0id1ivrfgv0nvh0hb6hp63b3jd14092777im"))))
7537 (properties `((upstream-name . "bgx")))
7538 (build-system r-build-system)
7539 (propagated-inputs
7540 `(("r-affy" ,r-affy)
7541 ("r-biobase" ,r-biobase)
7542 ("r-gcrma" ,r-gcrma)
7543 ("r-rcpp" ,r-rcpp)))
7544 (home-page "https://bioconductor.org/packages/bgx/")
7545 (synopsis "Bayesian gene expression")
7546 (description
7547 "This package provides tools for Bayesian integrated analysis of
7548 Affymetrix GeneChips.")
7549 (license license:gpl2)))
7550
7551 (define-public r-bhc
7552 (package
7553 (name "r-bhc")
7554 (version "1.42.0")
7555 (source
7556 (origin
7557 (method url-fetch)
7558 (uri (bioconductor-uri "BHC" version))
7559 (sha256
7560 (base32
7561 "1n2rkbj8j10f38d40wvi6mwjxnrlfx71a48ab07bp2s0hwhxd7yn"))))
7562 (properties `((upstream-name . "BHC")))
7563 (build-system r-build-system)
7564 (home-page "https://bioconductor.org/packages/BHC/")
7565 (synopsis "Bayesian hierarchical clustering")
7566 (description
7567 "The method implemented in this package performs bottom-up hierarchical
7568 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
7569 in the data and Bayesian model selection to decide at each step which clusters
7570 to merge. This avoids several limitations of traditional methods, for example
7571 how many clusters there should be and how to choose a principled distance
7572 metric. This implementation accepts multinomial (i.e. discrete, with 2+
7573 categories) or time-series data. This version also includes a randomised
7574 algorithm which is more efficient for larger data sets.")
7575 (license license:gpl3)))
7576
7577 (define-public r-bicare
7578 (package
7579 (name "r-bicare")
7580 (version "1.48.0")
7581 (source
7582 (origin
7583 (method url-fetch)
7584 (uri (bioconductor-uri "BicARE" version))
7585 (sha256
7586 (base32
7587 "1np3967rjx54hbjsynvya75lcsqa6zic6frw5fjwqybwv2pzzw2k"))))
7588 (properties `((upstream-name . "BicARE")))
7589 (build-system r-build-system)
7590 (propagated-inputs
7591 `(("r-biobase" ,r-biobase)
7592 ("r-gseabase" ,r-gseabase)
7593 ("r-multtest" ,r-multtest)))
7594 (home-page "http://bioinfo.curie.fr")
7595 (synopsis "Biclustering analysis and results exploration")
7596 (description
7597 "This is a package for biclustering analysis and exploration of
7598 results.")
7599 (license license:gpl2)))
7600
7601 (define-public r-bifet
7602 (package
7603 (name "r-bifet")
7604 (version "1.10.0")
7605 (source
7606 (origin
7607 (method url-fetch)
7608 (uri (bioconductor-uri "BiFET" version))
7609 (sha256
7610 (base32
7611 "191m1xhsj4l64rrh67hqiz1rdkfhw0gfd5aymf3x0xm710l3rh4a"))))
7612 (properties `((upstream-name . "BiFET")))
7613 (build-system r-build-system)
7614 (propagated-inputs
7615 `(("r-genomicranges" ,r-genomicranges)
7616 ("r-poibin" ,r-poibin)))
7617 (native-inputs
7618 `(("r-knitr" ,r-knitr)))
7619 (home-page "https://bioconductor.org/packages/BiFET")
7620 (synopsis "Bias-free footprint enrichment test")
7621 (description
7622 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
7623 over-represented in target regions compared to background regions after
7624 correcting for the bias arising from the imbalance in read counts and GC
7625 contents between the target and background regions. For a given TF k, BiFET
7626 tests the null hypothesis that the target regions have the same probability of
7627 having footprints for the TF k as the background regions while correcting for
7628 the read count and GC content bias.")
7629 (license license:gpl3)))
7630
7631 (define-public r-rsbml
7632 (package
7633 (name "r-rsbml")
7634 (version "2.48.0")
7635 (source
7636 (origin
7637 (method url-fetch)
7638 (uri (bioconductor-uri "rsbml" version))
7639 (sha256
7640 (base32
7641 "0vrjfhwcpc699sq78pkm022fam3ahar8h3lx3fr879dd21k02g61"))))
7642 (properties `((upstream-name . "rsbml")))
7643 (build-system r-build-system)
7644 (inputs
7645 `(("libsbml" ,libsbml)
7646 ("zlib" ,zlib)))
7647 (propagated-inputs
7648 `(("r-biocgenerics" ,r-biocgenerics)
7649 ("r-graph" ,r-graph)))
7650 (native-inputs
7651 `(("pkg-config" ,pkg-config)))
7652 (home-page "http://www.sbml.org")
7653 (synopsis "R support for SBML")
7654 (description
7655 "This package provides an R interface to libsbml for SBML parsing,
7656 validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
7657 (license license:artistic2.0)))
7658
7659 (define-public r-hypergraph
7660 (package
7661 (name "r-hypergraph")
7662 (version "1.62.0")
7663 (source
7664 (origin
7665 (method url-fetch)
7666 (uri (bioconductor-uri "hypergraph" version))
7667 (sha256
7668 (base32
7669 "1p5mzr2aiqqc1j2inh45abjvqhid9jqv6wiym1xxnz16mpaa7q97"))))
7670 (properties `((upstream-name . "hypergraph")))
7671 (build-system r-build-system)
7672 (propagated-inputs
7673 `(("r-graph" ,r-graph)))
7674 (home-page "https://bioconductor.org/packages/hypergraph")
7675 (synopsis "Hypergraph data structures")
7676 (description
7677 "This package implements some simple capabilities for representing and
7678 manipulating hypergraphs.")
7679 (license license:artistic2.0)))
7680
7681 (define-public r-hyperdraw
7682 (package
7683 (name "r-hyperdraw")
7684 (version "1.42.0")
7685 (source
7686 (origin
7687 (method url-fetch)
7688 (uri (bioconductor-uri "hyperdraw" version))
7689 (sha256
7690 (base32
7691 "0z3a3lpz7s0fw023fxldkgxvl2dl1wn8agnyj09sky11ainxdayz"))))
7692 (properties `((upstream-name . "hyperdraw")))
7693 (build-system r-build-system)
7694 (inputs `(("graphviz" ,graphviz)))
7695 (propagated-inputs
7696 `(("r-graph" ,r-graph)
7697 ("r-hypergraph" ,r-hypergraph)
7698 ("r-rgraphviz" ,r-rgraphviz)))
7699 (home-page "https://bioconductor.org/packages/hyperdraw")
7700 (synopsis "Visualizing hypergraphs")
7701 (description
7702 "This package provides functions for visualizing hypergraphs.")
7703 (license license:gpl2+)))
7704
7705 (define-public r-biggr
7706 (package
7707 (name "r-biggr")
7708 (version "1.26.0")
7709 (source
7710 (origin
7711 (method url-fetch)
7712 (uri (bioconductor-uri "BiGGR" version))
7713 (sha256
7714 (base32
7715 "1hlsnss6071ck4ky1akxp1dnv3vmd8f85drdziqmm4nc2dfrr14y"))))
7716 (properties `((upstream-name . "BiGGR")))
7717 (build-system r-build-system)
7718 (propagated-inputs
7719 `(("r-hyperdraw" ,r-hyperdraw)
7720 ("r-hypergraph" ,r-hypergraph)
7721 ("r-lim" ,r-lim)
7722 ("r-limsolve" ,r-limsolve)
7723 ("r-rsbml" ,r-rsbml)
7724 ("r-stringr" ,r-stringr)))
7725 (home-page "https://bioconductor.org/packages/BiGGR/")
7726 (synopsis "Constraint based modeling using metabolic reconstruction databases")
7727 (description
7728 "This package provides an interface to simulate metabolic reconstruction
7729 from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
7730 reconstruction databases. The package facilitates @dfn{flux balance
7731 analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
7732 networks and estimated fluxes can be visualized with hypergraphs.")
7733 (license license:gpl3+)))
7734
7735 (define-public r-bigmemoryextras
7736 (package
7737 (name "r-bigmemoryextras")
7738 (version "1.38.0")
7739 (source
7740 (origin
7741 (method url-fetch)
7742 (uri (bioconductor-uri "bigmemoryExtras" version))
7743 (sha256
7744 (base32
7745 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
7746 (properties
7747 `((upstream-name . "bigmemoryExtras")))
7748 (build-system r-build-system)
7749 (propagated-inputs
7750 `(("r-bigmemory" ,r-bigmemory)))
7751 (native-inputs
7752 `(("r-knitr" ,r-knitr)))
7753 (home-page "https://github.com/phaverty/bigmemoryExtras")
7754 (synopsis "Extension of the bigmemory package")
7755 (description
7756 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
7757 safety and convenience features to the @code{filebacked.big.matrix} class from
7758 the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
7759 monitoring and gracefully restoring the connection to on-disk data and it also
7760 protects against accidental data modification with a file-system-based
7761 permissions system. Utilities are provided for using @code{BigMatrix}-derived
7762 classes as @code{assayData} matrices within the @code{Biobase} package's
7763 @code{eSet} family of classes. @code{BigMatrix} provides some optimizations
7764 related to attaching to, and indexing into, file-backed matrices with
7765 dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
7766 a file-backed matrix with factor properties.")
7767 (license license:artistic2.0)))
7768
7769 (define-public r-bigpint
7770 (package
7771 (name "r-bigpint")
7772 (version "1.6.0")
7773 (source
7774 (origin
7775 (method url-fetch)
7776 (uri (bioconductor-uri "bigPint" version))
7777 (sha256
7778 (base32
7779 "1axgapy4iyx059777m9faczwwj03h3i5dyrs0rlc84axzhzd2kis"))))
7780 (properties `((upstream-name . "bigPint")))
7781 (build-system r-build-system)
7782 (propagated-inputs
7783 `(("r-delayedarray" ,r-delayedarray)
7784 ("r-dplyr" ,r-dplyr)
7785 ("r-ggally" ,r-ggally)
7786 ("r-ggplot2" ,r-ggplot2)
7787 ("r-gridextra" ,r-gridextra)
7788 ("r-hexbin" ,r-hexbin)
7789 ("r-hmisc" ,r-hmisc)
7790 ("r-htmlwidgets" ,r-htmlwidgets)
7791 ("r-plotly" ,r-plotly)
7792 ("r-plyr" ,r-plyr)
7793 ("r-rcolorbrewer" ,r-rcolorbrewer)
7794 ("r-reshape" ,r-reshape)
7795 ("r-shiny" ,r-shiny)
7796 ("r-shinycssloaders" ,r-shinycssloaders)
7797 ("r-shinydashboard" ,r-shinydashboard)
7798 ("r-stringr" ,r-stringr)
7799 ("r-summarizedexperiment" ,r-summarizedexperiment)
7800 ("r-tidyr" ,r-tidyr)))
7801 (native-inputs
7802 `(("r-knitr" ,r-knitr)))
7803 (home-page "https://github.com/lindsayrutter/bigPint")
7804 (synopsis "Big multivariate data plotted interactively")
7805 (description
7806 "This package provides methods for visualizing large multivariate
7807 datasets using static and interactive scatterplot matrices, parallel
7808 coordinate plots, volcano plots, and litre plots. It includes examples for
7809 visualizing RNA-sequencing datasets and differentially expressed genes.")
7810 (license license:gpl3)))
7811
7812 (define-public r-chemminer
7813 (package
7814 (name "r-chemminer")
7815 (version "3.42.0")
7816 (source
7817 (origin
7818 (method url-fetch)
7819 (uri (bioconductor-uri "ChemmineR" version))
7820 (sha256
7821 (base32
7822 "14q9zhhxgkx5skj424i2rbjdbp5j8jfkxspkhnkwv5i45cvkgh19"))))
7823 (properties `((upstream-name . "ChemmineR")))
7824 (build-system r-build-system)
7825 (propagated-inputs
7826 `(("r-base64enc" ,r-base64enc)
7827 ("r-bh" ,r-bh)
7828 ("r-biocgenerics" ,r-biocgenerics)
7829 ("r-dbi" ,r-dbi)
7830 ("r-digest" ,r-digest)
7831 ("r-dt" ,r-dt)
7832 ("r-ggplot2" ,r-ggplot2)
7833 ("r-gridextra" ,r-gridextra)
7834 ("r-png" ,r-png)
7835 ("r-rcpp" ,r-rcpp)
7836 ("r-rcurl" ,r-rcurl)
7837 ("r-rjson" ,r-rjson)
7838 ("r-rsvg" ,r-rsvg)))
7839 (native-inputs
7840 `(("r-knitr" ,r-knitr)))
7841 (home-page "https://github.com/girke-lab/ChemmineR")
7842 (synopsis "Cheminformatics toolkit for R")
7843 (description
7844 "ChemmineR is a cheminformatics package for analyzing drug-like small
7845 molecule data in R. It contains functions for efficient processing of large
7846 numbers of molecules, physicochemical/structural property predictions,
7847 structural similarity searching, classification and clustering of compound
7848 libraries with a wide spectrum of algorithms. In addition, it offers
7849 visualization functions for compound clustering results and chemical
7850 structures.")
7851 (license license:artistic2.0)))
7852
7853 (define-public r-bioassayr
7854 (package
7855 (name "r-bioassayr")
7856 (version "1.28.0")
7857 (source
7858 (origin
7859 (method url-fetch)
7860 (uri (bioconductor-uri "bioassayR" version))
7861 (sha256
7862 (base32
7863 "0vxnd8wnhjdfqh47nc6y1ffiy5r9a6n3g2hyk1r9bv6vhrd0ns3f"))))
7864 (properties `((upstream-name . "bioassayR")))
7865 (build-system r-build-system)
7866 (propagated-inputs
7867 `(("r-biocgenerics" ,r-biocgenerics)
7868 ("r-chemminer" ,r-chemminer)
7869 ("r-dbi" ,r-dbi)
7870 ("r-matrix" ,r-matrix)
7871 ("r-rjson" ,r-rjson)
7872 ("r-rsqlite" ,r-rsqlite)
7873 ("r-xml" ,r-xml)))
7874 (native-inputs
7875 `(("r-knitr" ,r-knitr)))
7876 (home-page "https://github.com/TylerBackman/bioassayR")
7877 (synopsis "Cross-target analysis of small molecule bioactivity")
7878 (description
7879 "bioassayR is a computational tool that enables simultaneous analysis of
7880 thousands of bioassay experiments performed over a diverse set of compounds
7881 and biological targets. Unique features include support for large-scale
7882 cross-target analyses of both public and custom bioassays, generation of
7883 @dfn{high throughput screening fingerprints} (HTSFPs), and an optional
7884 preloaded database that provides access to a substantial portion of publicly
7885 available bioactivity data.")
7886 (license license:artistic2.0)))
7887
7888 (define-public r-biobroom
7889 (package
7890 (name "r-biobroom")
7891 (version "1.22.0")
7892 (source
7893 (origin
7894 (method url-fetch)
7895 (uri (bioconductor-uri "biobroom" version))
7896 (sha256
7897 (base32
7898 "07wzamwl07p20s932aym2jkf6c1zz7d9h7kyby5ka4pw4abynlrv"))))
7899 (properties `((upstream-name . "biobroom")))
7900 (build-system r-build-system)
7901 (propagated-inputs
7902 `(("r-biobase" ,r-biobase)
7903 ("r-broom" ,r-broom)
7904 ("r-dplyr" ,r-dplyr)
7905 ("r-tidyr" ,r-tidyr)))
7906 (native-inputs
7907 `(("r-knitr" ,r-knitr)))
7908 (home-page "https://github.com/StoreyLab/biobroom")
7909 (synopsis "Turn Bioconductor objects into tidy data frames")
7910 (description
7911 "This package contains methods for converting standard objects
7912 constructed by bioinformatics packages, especially those in Bioconductor, and
7913 converting them to @code{tidy} data. It thus serves as a complement to the
7914 @code{broom} package, and follows the same tidy, augment, glance division of
7915 tidying methods. Tidying data makes it easy to recombine, reshape and
7916 visualize bioinformatics analyses.")
7917 ;; Any version of the LGPL.
7918 (license license:lgpl3+)))
7919
7920 (define-public r-graphite
7921 (package
7922 (name "r-graphite")
7923 (version "1.36.0")
7924 (source
7925 (origin
7926 (method url-fetch)
7927 (uri (bioconductor-uri "graphite" version))
7928 (sha256
7929 (base32
7930 "1ihza8m397qfvr79fhghs2knmw862hwz2akysy39r8hndv6lc7wk"))))
7931 (properties `((upstream-name . "graphite")))
7932 (build-system r-build-system)
7933 (propagated-inputs
7934 `(("r-annotationdbi" ,r-annotationdbi)
7935 ("r-checkmate" ,r-checkmate)
7936 ("r-graph" ,r-graph)
7937 ("r-httr" ,r-httr)
7938 ("r-rappdirs" ,r-rappdirs)))
7939 (home-page "https://bioconductor.org/packages/graphite/")
7940 (synopsis "Networks from pathway databases")
7941 (description
7942 "Graphite provides networks derived from eight public pathway databases,
7943 and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
7944 symbols).")
7945 (license license:agpl3+)))
7946
7947 (define-public r-reactomepa
7948 (package
7949 (name "r-reactomepa")
7950 (version "1.34.0")
7951 (source
7952 (origin
7953 (method url-fetch)
7954 (uri (bioconductor-uri "ReactomePA" version))
7955 (sha256
7956 (base32
7957 "04b2ng9jp2bsfbg3wnbg6m6a5c3szcmbypk1lx34i63228g8z98m"))))
7958 (properties `((upstream-name . "ReactomePA")))
7959 (build-system r-build-system)
7960 (propagated-inputs
7961 `(("r-annotationdbi" ,r-annotationdbi)
7962 ("r-dose" ,r-dose)
7963 ("r-enrichplot" ,r-enrichplot)
7964 ("r-ggplot2" ,r-ggplot2)
7965 ("r-ggraph" ,r-ggraph)
7966 ("r-graphite" ,r-graphite)
7967 ("r-igraph" ,r-igraph)
7968 ("r-reactome-db" ,r-reactome-db)))
7969 (native-inputs
7970 `(("r-knitr" ,r-knitr)))
7971 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
7972 (synopsis "Reactome pathway analysis")
7973 (description
7974 "This package provides functions for pathway analysis based on the
7975 REACTOME pathway database. It implements enrichment analysis, gene set
7976 enrichment analysis and several functions for visualization.")
7977 (license license:gpl2)))
7978
7979 (define-public r-ebarrays
7980 (package
7981 (name "r-ebarrays")
7982 (version "2.54.0")
7983 (source
7984 (origin
7985 (method url-fetch)
7986 (uri (bioconductor-uri "EBarrays" version))
7987 (sha256
7988 (base32
7989 "1r2dl19my1hqkq01fqk48pk3agb98vgrplj56kb4srhz2xm0w9pd"))))
7990 (properties `((upstream-name . "EBarrays")))
7991 (build-system r-build-system)
7992 (propagated-inputs
7993 `(("r-biobase" ,r-biobase)
7994 ("r-cluster" ,r-cluster)
7995 ("r-lattice" ,r-lattice)))
7996 (home-page "https://bioconductor.org/packages/EBarrays/")
7997 (synopsis "Gene clustering and differential expression identification")
7998 (description
7999 "EBarrays provides tools for the analysis of replicated/unreplicated
8000 microarray data.")
8001 (license license:gpl2+)))
8002
8003 (define-public r-bioccasestudies
8004 (package
8005 (name "r-bioccasestudies")
8006 (version "1.52.0")
8007 (source
8008 (origin
8009 (method url-fetch)
8010 (uri (bioconductor-uri "BiocCaseStudies" version))
8011 (sha256
8012 (base32
8013 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
8014 (properties
8015 `((upstream-name . "BiocCaseStudies")))
8016 (build-system r-build-system)
8017 (propagated-inputs `(("r-biobase" ,r-biobase)))
8018 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
8019 (synopsis "Support for the case studies monograph")
8020 (description
8021 "This package provides software and data to support the case studies
8022 monograph.")
8023 (license license:artistic2.0)))
8024
8025 (define-public r-biocgraph
8026 (package
8027 (name "r-biocgraph")
8028 (version "1.52.0")
8029 (source
8030 (origin
8031 (method url-fetch)
8032 (uri (bioconductor-uri "biocGraph" version))
8033 (sha256
8034 (base32
8035 "02y7vizc6jv8y9r8chsda4yysim0ch45i3rasqvv7m85zqsskf75"))))
8036 (properties `((upstream-name . "biocGraph")))
8037 (build-system r-build-system)
8038 (propagated-inputs
8039 `(("r-biocgenerics" ,r-biocgenerics)
8040 ("r-geneplotter" ,r-geneplotter)
8041 ("r-graph" ,r-graph)
8042 ("r-rgraphviz" ,r-rgraphviz)))
8043 (home-page "https://bioconductor.org/packages/biocGraph/")
8044 (synopsis "Graph examples and use cases in Bioinformatics")
8045 (description
8046 "This package provides examples and code that make use of the
8047 different graph related packages produced by Bioconductor.")
8048 (license license:artistic2.0)))
8049
8050 (define-public r-experimenthub
8051 (package
8052 (name "r-experimenthub")
8053 (version "1.16.0")
8054 (source
8055 (origin
8056 (method url-fetch)
8057 (uri (bioconductor-uri "ExperimentHub" version))
8058 (sha256
8059 (base32
8060 "1zi7vsrhf1hj27rlzrxl4jd81fqh1yhn0svp2d9w71fizsi71akg"))))
8061 (properties `((upstream-name . "ExperimentHub")))
8062 (build-system r-build-system)
8063 (propagated-inputs
8064 `(("r-annotationhub" ,r-annotationhub)
8065 ("r-biocfilecache" ,r-biocfilecache)
8066 ("r-biocgenerics" ,r-biocgenerics)
8067 ("r-biocmanager" ,r-biocmanager)
8068 ("r-curl" ,r-curl)
8069 ("r-rappdirs" ,r-rappdirs)
8070 ("r-s4vectors" ,r-s4vectors)))
8071 (native-inputs
8072 `(("r-knitr" ,r-knitr)))
8073 (home-page "https://bioconductor.org/packages/ExperimentHub/")
8074 (synopsis "Client to access ExperimentHub resources")
8075 (description
8076 "This package provides a client for the Bioconductor ExperimentHub web
8077 resource. ExperimentHub provides a central location where curated data from
8078 experiments, publications or training courses can be accessed. Each resource
8079 has associated metadata, tags and date of modification. The client creates
8080 and manages a local cache of files retrieved enabling quick and reproducible
8081 access.")
8082 (license license:artistic2.0)))
8083
8084 (define-public r-multiassayexperiment
8085 (package
8086 (name "r-multiassayexperiment")
8087 (version "1.16.0")
8088 (source
8089 (origin
8090 (method url-fetch)
8091 (uri (bioconductor-uri "MultiAssayExperiment" version))
8092 (sha256
8093 (base32
8094 "1nx3gikl8vr54862h6wl0q30arnpynla085219lhh61ziswdffrs"))))
8095 (properties
8096 `((upstream-name . "MultiAssayExperiment")))
8097 (build-system r-build-system)
8098 (propagated-inputs
8099 `(("r-biobase" ,r-biobase)
8100 ("r-biocgenerics" ,r-biocgenerics)
8101 ("r-genomicranges" ,r-genomicranges)
8102 ("r-iranges" ,r-iranges)
8103 ("r-s4vectors" ,r-s4vectors)
8104 ("r-summarizedexperiment" ,r-summarizedexperiment)
8105 ("r-tidyr" ,r-tidyr)))
8106 (native-inputs
8107 `(("r-knitr" ,r-knitr)))
8108 (home-page "https://waldronlab.io/MultiAssayExperiment/")
8109 (synopsis "Integration of multi-omics experiments in Bioconductor")
8110 (description
8111 "MultiAssayExperiment harmonizes data management of multiple assays
8112 performed on an overlapping set of specimens. It provides a familiar
8113 Bioconductor user experience by extending concepts from
8114 @code{SummarizedExperiment}, supporting an open-ended mix of standard data
8115 classes for individual assays, and allowing subsetting by genomic ranges or
8116 rownames.")
8117 (license license:artistic2.0)))
8118
8119 (define-public r-bioconcotk
8120 (package
8121 (name "r-bioconcotk")
8122 (version "1.10.0")
8123 (source
8124 (origin
8125 (method url-fetch)
8126 (uri (bioconductor-uri "BiocOncoTK" version))
8127 (sha256
8128 (base32
8129 "1jwp0gww2xyx8qfv5h4y0v3g66mmlyrd1v64xn91si4fsymk4108"))))
8130 (properties `((upstream-name . "BiocOncoTK")))
8131 (build-system r-build-system)
8132 (propagated-inputs
8133 `(("r-bigrquery" ,r-bigrquery)
8134 ("r-car" ,r-car)
8135 ("r-complexheatmap" ,r-complexheatmap)
8136 ("r-curatedtcgadata" ,r-curatedtcgadata)
8137 ("r-dbi" ,r-dbi)
8138 ("r-dplyr" ,r-dplyr)
8139 ("r-dt" ,r-dt)
8140 ("r-genomicfeatures" ,r-genomicfeatures)
8141 ("r-genomicranges" ,r-genomicranges)
8142 ("r-ggplot2" ,r-ggplot2)
8143 ("r-ggpubr" ,r-ggpubr)
8144 ("r-graph" ,r-graph)
8145 ("r-httr" ,r-httr)
8146 ("r-iranges" ,r-iranges)
8147 ("r-magrittr" ,r-magrittr)
8148 ("r-plyr" ,r-plyr)
8149 ("r-rgraphviz" ,r-rgraphviz)
8150 ("r-rjson" ,r-rjson)
8151 ("r-s4vectors" ,r-s4vectors)
8152 ("r-scales" ,r-scales)
8153 ("r-shiny" ,r-shiny)
8154 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8155 (native-inputs
8156 `(("r-knitr" ,r-knitr)))
8157 (home-page "https://bioconductor.org/packages/BiocOncoTK")
8158 (synopsis "Bioconductor components for general cancer genomics")
8159 (description
8160 "The purpose of this package is to provide a central interface to various
8161 tools for genome-scale analysis of cancer studies.")
8162 (license license:artistic2.0)))
8163
8164 (define-public r-biocor
8165 (package
8166 (name "r-biocor")
8167 (version "1.14.0")
8168 (source
8169 (origin
8170 (method url-fetch)
8171 (uri (bioconductor-uri "BioCor" version))
8172 (sha256
8173 (base32
8174 "12slrdn98h43j3y7klk3chrwa2ycwm4krhz3l3kfzbxr834mhy19"))))
8175 (properties `((upstream-name . "BioCor")))
8176 (build-system r-build-system)
8177 (propagated-inputs
8178 `(("r-biocparallel" ,r-biocparallel)
8179 ("r-gseabase" ,r-gseabase)
8180 ("r-matrix" ,r-matrix)))
8181 (native-inputs
8182 `(("r-knitr" ,r-knitr)))
8183 (home-page "https://llrs.github.io/BioCor/")
8184 (synopsis "Functional similarities")
8185 (description
8186 "This package provides tools to calculate functional similarities based
8187 on the pathways described on KEGG and REACTOME or in gene sets. These
8188 similarities can be calculated for pathways or gene sets, genes, or clusters
8189 and combined with other similarities. They can be used to improve networks,
8190 gene selection, testing relationships, and so on.")
8191 (license license:expat)))
8192
8193 (define-public r-biocpkgtools
8194 (package
8195 (name "r-biocpkgtools")
8196 (version "1.8.0")
8197 (source
8198 (origin
8199 (method url-fetch)
8200 (uri (bioconductor-uri "BiocPkgTools" version))
8201 (sha256
8202 (base32
8203 "12j4vag40zdgrxfzaqvf3ly7776qyziryz04c3jqzgsqfvzvzz8m"))))
8204 (properties `((upstream-name . "BiocPkgTools")))
8205 (build-system r-build-system)
8206 (propagated-inputs
8207 `(("r-biocfilecache" ,r-biocfilecache)
8208 ("r-biocmanager" ,r-biocmanager)
8209 ("r-biocviews" ,r-biocviews)
8210 ("r-dplyr" ,r-dplyr)
8211 ("r-dt" ,r-dt)
8212 ("r-gh" ,r-gh)
8213 ("r-graph" ,r-graph)
8214 ("r-htmltools" ,r-htmltools)
8215 ("r-htmlwidgets" ,r-htmlwidgets)
8216 ("r-httr" ,r-httr)
8217 ("r-igraph" ,r-igraph)
8218 ("r-jsonlite" ,r-jsonlite)
8219 ("r-magrittr" ,r-magrittr)
8220 ("r-rappdirs" ,r-rappdirs)
8221 ("r-rbgl" ,r-rbgl)
8222 ("r-readr" ,r-readr)
8223 ("r-rex" ,r-rex)
8224 ("r-rlang" ,r-rlang)
8225 ("r-rvest" ,r-rvest)
8226 ("r-stringr" ,r-stringr)
8227 ("r-tibble" ,r-tibble)
8228 ("r-tidyr" ,r-tidyr)
8229 ("r-tidyselect" ,r-tidyselect)
8230 ("r-xml2" ,r-xml2)))
8231 (native-inputs
8232 `(("r-knitr" ,r-knitr)))
8233 (home-page "https://github.com/seandavi/BiocPkgTools")
8234 (synopsis "Collection of tools for learning about Bioconductor packages")
8235 (description
8236 "Bioconductor has a rich ecosystem of metadata around packages, usage,
8237 and build status. This package is a simple collection of functions to access
8238 that metadata from R. The goal is to expose metadata for data mining and
8239 value-added functionality such as package searching, text mining, and
8240 analytics on packages.")
8241 (license license:expat)))
8242
8243 (define-public r-biocset
8244 (package
8245 (name "r-biocset")
8246 (version "1.4.0")
8247 (source
8248 (origin
8249 (method url-fetch)
8250 (uri (bioconductor-uri "BiocSet" version))
8251 (sha256
8252 (base32
8253 "16pjg09i0j5qk9s9qzm6fq5q0bgwb4wgqvp6scs06ajgrr07qjqg"))))
8254 (properties `((upstream-name . "BiocSet")))
8255 (build-system r-build-system)
8256 (propagated-inputs
8257 `(("r-annotationdbi" ,r-annotationdbi)
8258 ("r-biocio" ,r-biocio)
8259 ("r-dplyr" ,r-dplyr)
8260 ("r-keggrest" ,r-keggrest)
8261 ("r-ontologyindex" ,r-ontologyindex)
8262 ("r-plyr" ,r-plyr)
8263 ("r-rlang" ,r-rlang)
8264 ("r-s4vectors" ,r-s4vectors)
8265 ("r-tibble" ,r-tibble)
8266 ("r-tidyr" ,r-tidyr)))
8267 (native-inputs
8268 `(("r-knitr" ,r-knitr)))
8269 (home-page
8270 "https://bioconductor.org/packages/BiocSet")
8271 (synopsis
8272 "Representing Different Biological Sets")
8273 (description
8274 "BiocSet displays different biological sets in a triple tibble format.
8275 These three tibbles are @code{element}, @code{set}, and @code{elementset}.
8276 The user has the ability to activate one of these three tibbles to perform
8277 common functions from the @code{dplyr} package. Mapping functionality and
8278 accessing web references for elements/sets are also available in BiocSet.")
8279 (license license:artistic2.0)))
8280
8281 (define-public r-biocworkflowtools
8282 (package
8283 (name "r-biocworkflowtools")
8284 (version "1.16.0")
8285 (source
8286 (origin
8287 (method url-fetch)
8288 (uri (bioconductor-uri "BiocWorkflowTools" version))
8289 (sha256
8290 (base32
8291 "0lvckdy20bhgyhqbccp0rdfi2p6vvip694r27qwpyi5092nfmqh6"))))
8292 (properties
8293 `((upstream-name . "BiocWorkflowTools")))
8294 (build-system r-build-system)
8295 (propagated-inputs
8296 `(("r-biocstyle" ,r-biocstyle)
8297 ("r-bookdown" ,r-bookdown)
8298 ("r-git2r" ,r-git2r)
8299 ("r-httr" ,r-httr)
8300 ("r-knitr" ,r-knitr)
8301 ("r-rmarkdown" ,r-rmarkdown)
8302 ("r-rstudioapi" ,r-rstudioapi)
8303 ("r-stringr" ,r-stringr)
8304 ("r-usethis" ,r-usethis)))
8305 (native-inputs
8306 `(("r-knitr" ,r-knitr)))
8307 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
8308 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
8309 (description
8310 "This package provides functions to ease the transition between
8311 Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
8312 (license license:expat)))
8313
8314 (define-public r-biodist
8315 (package
8316 (name "r-biodist")
8317 (version "1.62.0")
8318 (source
8319 (origin
8320 (method url-fetch)
8321 (uri (bioconductor-uri "bioDist" version))
8322 (sha256
8323 (base32
8324 "10p4iajpyqgqb35743jm1a33lwbsmax2g4vz9fbbhn2cpiq3chap"))))
8325 (properties `((upstream-name . "bioDist")))
8326 (build-system r-build-system)
8327 (propagated-inputs
8328 `(("r-biobase" ,r-biobase)
8329 ("r-kernsmooth" ,r-kernsmooth)))
8330 (home-page "https://bioconductor.org/packages/bioDist/")
8331 (synopsis "Different distance measures")
8332 (description
8333 "This package provides a collection of software tools for calculating
8334 distance measures.")
8335 (license license:artistic2.0)))
8336
8337 (define-public r-pcatools
8338 (package
8339 (name "r-pcatools")
8340 (version "2.2.0")
8341 (source
8342 (origin
8343 (method url-fetch)
8344 (uri (bioconductor-uri "PCAtools" version))
8345 (sha256
8346 (base32
8347 "1fz9h99yyn49b5rcnkg2kjdfmczfwnc44fpwbia0izj6gx192phb"))))
8348 (properties `((upstream-name . "PCAtools")))
8349 (build-system r-build-system)
8350 (propagated-inputs
8351 `(("r-beachmat" ,r-beachmat)
8352 ("r-bh" ,r-bh)
8353 ("r-biocparallel" ,r-biocparallel)
8354 ("r-biocsingular" ,r-biocsingular)
8355 ("r-cowplot" ,r-cowplot)
8356 ("r-delayedarray" ,r-delayedarray)
8357 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
8358 ("r-dqrng" ,r-dqrng)
8359 ("r-ggplot2" ,r-ggplot2)
8360 ("r-ggrepel" ,r-ggrepel)
8361 ("r-lattice" ,r-lattice)
8362 ("r-matrix" ,r-matrix)
8363 ("r-rcpp" ,r-rcpp)
8364 ("r-reshape2" ,r-reshape2)))
8365 (native-inputs `(("r-knitr" ,r-knitr)))
8366 (home-page "https://github.com/kevinblighe/PCAtools")
8367 (synopsis "PCAtools: everything Principal Components Analysis")
8368 (description
8369 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
8370 structure of the data without the need to build any model to represent it.
8371 This \"summary\" of the data is arrived at through a process of reduction that
8372 can transform the large number of variables into a lesser number that are
8373 uncorrelated (i.e. the 'principal components'), while at the same time being
8374 capable of easy interpretation on the original data. PCAtools provides
8375 functions for data exploration via PCA, and allows the user to generate
8376 publication-ready figures. PCA is performed via @code{BiocSingular}; users
8377 can also identify an optimal number of principal components via different
8378 metrics, such as the elbow method and Horn's parallel analysis, which has
8379 relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
8380 dimensional mass cytometry data.")
8381 (license license:gpl3)))
8382
8383 (define-public r-rgreat
8384 (package
8385 (name "r-rgreat")
8386 (version "1.22.0")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (bioconductor-uri "rGREAT" version))
8391 (sha256
8392 (base32
8393 "0p2b8cqxibxxmsh687y7yvlvr2a5ipiz53jb4wsr8ddypynb1asj"))))
8394 (properties `((upstream-name . "rGREAT")))
8395 (build-system r-build-system)
8396 (propagated-inputs
8397 `(("r-genomicranges" ,r-genomicranges)
8398 ("r-getoptlong" ,r-getoptlong)
8399 ("r-iranges" ,r-iranges)
8400 ("r-rcurl" ,r-rcurl)
8401 ("r-rjson" ,r-rjson)))
8402 (native-inputs `(("r-knitr" ,r-knitr)))
8403 (home-page "https://github.com/jokergoo/rGREAT")
8404 (synopsis "Client for GREAT analysis")
8405 (description
8406 "This package makes GREAT (Genomic Regions Enrichment of Annotations
8407 Tool) analysis automatic by constructing a HTTP POST request according to
8408 user's input and automatically retrieving results from GREAT web server.")
8409 (license license:expat)))
8410
8411 (define-public r-m3c
8412 (package
8413 (name "r-m3c")
8414 (version "1.12.0")
8415 (source
8416 (origin
8417 (method url-fetch)
8418 (uri (bioconductor-uri "M3C" version))
8419 (sha256
8420 (base32
8421 "05ygi4fd85hh17mlww5wcww8d5z5zvkn2r46s4n6g18mcbv8snv5"))))
8422 (properties `((upstream-name . "M3C")))
8423 (build-system r-build-system)
8424 (propagated-inputs
8425 `(("r-cluster" ,r-cluster)
8426 ("r-corpcor" ,r-corpcor)
8427 ("r-doparallel" ,r-doparallel)
8428 ("r-dosnow" ,r-dosnow)
8429 ("r-foreach" ,r-foreach)
8430 ("r-ggplot2" ,r-ggplot2)
8431 ("r-matrix" ,r-matrix)
8432 ("r-matrixcalc" ,r-matrixcalc)
8433 ("r-rtsne" ,r-rtsne)
8434 ("r-umap" ,r-umap)))
8435 (native-inputs `(("r-knitr" ,r-knitr)))
8436 (home-page "https://bioconductor.org/packages/M3C")
8437 (synopsis "Monte Carlo reference-based consensus clustering")
8438 (description
8439 "M3C is a consensus clustering algorithm that uses a Monte Carlo
8440 simulation to eliminate overestimation of @code{K} and can reject the null
8441 hypothesis @code{K=1}.")
8442 (license license:agpl3+)))
8443
8444 (define-public r-icens
8445 (package
8446 (name "r-icens")
8447 (version "1.62.0")
8448 (source
8449 (origin
8450 (method url-fetch)
8451 (uri (bioconductor-uri "Icens" version))
8452 (sha256
8453 (base32
8454 "1w94mvh8pai77h4fcaiyacmzs58n4kbiq6bm4z0hk24j1ywph3dr"))))
8455 (properties `((upstream-name . "Icens")))
8456 (build-system r-build-system)
8457 (propagated-inputs
8458 `(("r-survival" ,r-survival)))
8459 (home-page "https://bioconductor.org/packages/Icens")
8460 (synopsis "NPMLE for censored and truncated data")
8461 (description
8462 "This package provides many functions for computing the
8463 @dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
8464 truncated data.")
8465 (license license:artistic2.0)))
8466
8467 ;; This is a CRAN package but it depends on r-icens, which is published on
8468 ;; Bioconductor.
8469 (define-public r-interval
8470 (package
8471 (name "r-interval")
8472 (version "1.1-0.7")
8473 (source
8474 (origin
8475 (method url-fetch)
8476 (uri (cran-uri "interval" version))
8477 (sha256
8478 (base32
8479 "1b31lh0sv7lzy76230djipahxa10lblbr37kdiigr6hp3dd1xmz9"))))
8480 (properties `((upstream-name . "interval")))
8481 (build-system r-build-system)
8482 (propagated-inputs
8483 `(("r-icens" ,r-icens)
8484 ("r-mlecens" ,r-mlecens)
8485 ("r-perm" ,r-perm)
8486 ("r-survival" ,r-survival)))
8487 (home-page "https://cran.r-project.org/web/packages/interval/")
8488 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
8489 (description
8490 "This package provides functions to fit nonparametric survival curves,
8491 plot them, and perform logrank or Wilcoxon type tests.")
8492 (license license:gpl2+)))
8493
8494 ;; This is a CRAN package, but it depends on r-interval, which depends on a
8495 ;; Bioconductor package.
8496 (define-public r-fhtest
8497 (package
8498 (name "r-fhtest")
8499 (version "1.5")
8500 (source
8501 (origin
8502 (method url-fetch)
8503 (uri (cran-uri "FHtest" version))
8504 (sha256
8505 (base32
8506 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
8507 (properties `((upstream-name . "FHtest")))
8508 (build-system r-build-system)
8509 (propagated-inputs
8510 `(("r-interval" ,r-interval)
8511 ("r-kmsurv" ,r-kmsurv)
8512 ("r-mass" ,r-mass)
8513 ("r-perm" ,r-perm)
8514 ("r-survival" ,r-survival)))
8515 (home-page "https://cran.r-project.org/web/packages/FHtest/")
8516 (synopsis "Tests for survival data based on the Fleming-Harrington class")
8517 (description
8518 "This package provides functions to compare two or more survival curves
8519 with:
8520
8521 @itemize
8522 @item The Fleming-Harrington test for right-censored data based on
8523 permutations and on counting processes.
8524 @item An extension of the Fleming-Harrington test for interval-censored data
8525 based on a permutation distribution and on a score vector distribution.
8526 @end itemize
8527 ")
8528 (license license:gpl2+)))
8529
8530 (define-public r-fourcseq
8531 (package
8532 (name "r-fourcseq")
8533 (version "1.24.0")
8534 (source
8535 (origin
8536 (method url-fetch)
8537 (uri (bioconductor-uri "FourCSeq" version))
8538 (sha256
8539 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
8540 (properties `((upstream-name . "FourCSeq")))
8541 (build-system r-build-system)
8542 (propagated-inputs
8543 `(("r-biobase" ,r-biobase)
8544 ("r-biostrings" ,r-biostrings)
8545 ("r-deseq2" ,r-deseq2)
8546 ("r-fda" ,r-fda)
8547 ("r-genomicalignments" ,r-genomicalignments)
8548 ("r-genomicranges" ,r-genomicranges)
8549 ("r-ggbio" ,r-ggbio)
8550 ("r-ggplot2" ,r-ggplot2)
8551 ("r-gtools" ,r-gtools)
8552 ("r-lsd" ,r-lsd)
8553 ("r-matrix" ,r-matrix)
8554 ("r-reshape2" ,r-reshape2)
8555 ("r-rsamtools" ,r-rsamtools)
8556 ("r-rtracklayer" ,r-rtracklayer)
8557 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8558 (native-inputs
8559 `(("r-knitr" ,r-knitr)))
8560 (home-page
8561 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
8562 (synopsis "Analysis of multiplexed 4C sequencing data")
8563 (description
8564 "This package is an R package dedicated to the analysis of (multiplexed)
8565 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
8566 interactions between DNA elements and identify differential interactions
8567 between conditions. The statistical analysis in R starts with individual bam
8568 files for each sample as inputs. To obtain these files, the package contains
8569 a Python script to demultiplex libraries and trim off primer sequences. With
8570 a standard alignment software the required bam files can be then be
8571 generated.")
8572 (license license:gpl3+)))
8573
8574 (define-public r-preprocesscore
8575 (package
8576 (name "r-preprocesscore")
8577 (version "1.52.0")
8578 (source
8579 (origin
8580 (method url-fetch)
8581 (uri (bioconductor-uri "preprocessCore" version))
8582 (sha256
8583 (base32
8584 "1i5ky3bfbkrz4lgfs72fkckr8q3wq48p38mp05cjmnmh1chmdw38"))))
8585 (properties
8586 `((upstream-name . "preprocessCore")))
8587 (build-system r-build-system)
8588 (home-page "https://github.com/bmbolstad/preprocessCore")
8589 (synopsis "Collection of pre-processing functions")
8590 (description
8591 "This package provides a library of core pre-processing and normalization
8592 routines.")
8593 (license license:lgpl2.0+)))
8594
8595 ;; This is a CRAN package, but it depends on preprocessorcore, which is a
8596 ;; Bioconductor package.
8597 (define-public r-wgcna
8598 (package
8599 (name "r-wgcna")
8600 (version "1.69")
8601 (source
8602 (origin
8603 (method url-fetch)
8604 (uri (cran-uri "WGCNA" version))
8605 (sha256
8606 (base32
8607 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
8608 (properties `((upstream-name . "WGCNA")))
8609 (build-system r-build-system)
8610 (propagated-inputs
8611 `(("r-annotationdbi" ,r-annotationdbi)
8612 ("r-doparallel" ,r-doparallel)
8613 ("r-dynamictreecut" ,r-dynamictreecut)
8614 ("r-fastcluster" ,r-fastcluster)
8615 ("r-foreach" ,r-foreach)
8616 ("r-go-db" ,r-go-db)
8617 ("r-hmisc" ,r-hmisc)
8618 ("r-impute" ,r-impute)
8619 ("r-rcpp" ,r-rcpp)
8620 ("r-survival" ,r-survival)
8621 ("r-matrixstats" ,r-matrixstats)
8622 ("r-preprocesscore" ,r-preprocesscore)))
8623 (home-page
8624 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
8625 (synopsis "Weighted correlation network analysis")
8626 (description
8627 "This package provides functions necessary to perform Weighted
8628 Correlation Network Analysis on high-dimensional data. It includes functions
8629 for rudimentary data cleaning, construction and summarization of correlation
8630 networks, module identification and functions for relating both variables and
8631 modules to sample traits. It also includes a number of utility functions for
8632 data manipulation and visualization.")
8633 (license license:gpl2+)))
8634
8635 (define-public r-rgraphviz
8636 (package
8637 (name "r-rgraphviz")
8638 (version "2.34.0")
8639 (source
8640 (origin
8641 (method url-fetch)
8642 (uri (bioconductor-uri "Rgraphviz" version))
8643 (sha256
8644 (base32
8645 "1k0nrskak2v5xv7za226r3wypja3zxxmmc0cxz2imjhlgnkbha77"))))
8646 (properties `((upstream-name . "Rgraphviz")))
8647 (build-system r-build-system)
8648 (arguments
8649 `(#:phases
8650 (modify-phases %standard-phases
8651 (add-after 'unpack 'make-reproducible
8652 (lambda _
8653 ;; The replacement value is taken from src/graphviz/builddate.h
8654 (substitute* "src/graphviz/configure"
8655 (("VERSION_DATE=.*")
8656 "VERSION_DATE=20200427.2341\n"))
8657 #t)))))
8658 ;; FIXME: Rgraphviz bundles the sources of an older variant of
8659 ;; graphviz. It does not build with the latest version of graphviz, so
8660 ;; we do not add graphviz to the inputs.
8661 (inputs `(("zlib" ,zlib)))
8662 (propagated-inputs
8663 `(("r-graph" ,r-graph)))
8664 (native-inputs
8665 `(("pkg-config" ,pkg-config)))
8666 (home-page "https://bioconductor.org/packages/Rgraphviz")
8667 (synopsis "Plotting capabilities for R graph objects")
8668 (description
8669 "This package interfaces R with the graphviz library for plotting R graph
8670 objects from the @code{graph} package.")
8671 (license license:epl1.0)))
8672
8673 (define-public r-fithic
8674 (package
8675 (name "r-fithic")
8676 (version "1.16.0")
8677 (source (origin
8678 (method url-fetch)
8679 (uri (bioconductor-uri "FitHiC" version))
8680 (sha256
8681 (base32
8682 "1sdfkqc6s7m9whkzr0mllzzfjzhj2g54ncjwxj8q0azjgszrfwd2"))))
8683 (properties `((upstream-name . "FitHiC")))
8684 (build-system r-build-system)
8685 (propagated-inputs
8686 `(("r-data-table" ,r-data-table)
8687 ("r-fdrtool" ,r-fdrtool)
8688 ("r-rcpp" ,r-rcpp)))
8689 (native-inputs
8690 `(("r-knitr" ,r-knitr)))
8691 (home-page "https://bioconductor.org/packages/FitHiC")
8692 (synopsis "Confidence estimation for intra-chromosomal contact maps")
8693 (description
8694 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
8695 intra-chromosomal contact maps produced by genome-wide genome architecture
8696 assays such as Hi-C.")
8697 (license license:gpl2+)))
8698
8699 (define-public r-hitc
8700 (package
8701 (name "r-hitc")
8702 (version "1.34.0")
8703 (source (origin
8704 (method url-fetch)
8705 (uri (bioconductor-uri "HiTC" version))
8706 (sha256
8707 (base32
8708 "1xbh36qgmzl8b6xq0hnl41li2x18yma50fq0v4dglh2ddn7as9iy"))))
8709 (properties `((upstream-name . "HiTC")))
8710 (build-system r-build-system)
8711 (propagated-inputs
8712 `(("r-biostrings" ,r-biostrings)
8713 ("r-genomeinfodb" ,r-genomeinfodb)
8714 ("r-genomicranges" ,r-genomicranges)
8715 ("r-iranges" ,r-iranges)
8716 ("r-matrix" ,r-matrix)
8717 ("r-rcolorbrewer" ,r-rcolorbrewer)
8718 ("r-rtracklayer" ,r-rtracklayer)))
8719 (home-page "https://bioconductor.org/packages/HiTC")
8720 (synopsis "High throughput chromosome conformation capture analysis")
8721 (description
8722 "The HiTC package was developed to explore high-throughput \"C\" data
8723 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
8724 quality controls, normalization, visualization, and further analysis are also
8725 provided.")
8726 (license license:artistic2.0)))
8727
8728 (define-public r-hdf5array
8729 (package
8730 (name "r-hdf5array")
8731 (version "1.18.0")
8732 (source
8733 (origin
8734 (method url-fetch)
8735 (uri (bioconductor-uri "HDF5Array" version))
8736 (sha256
8737 (base32
8738 "1hr149q03p09y1cjnx8av854j53041wfyq66xpsjw4mypzjf6f28"))))
8739 (properties `((upstream-name . "HDF5Array")))
8740 (build-system r-build-system)
8741 (arguments
8742 `(#:phases
8743 (modify-phases %standard-phases
8744 (add-after 'unpack 'fix-linking
8745 (lambda _
8746 (substitute* "src/Makevars"
8747 ;; This is to avoid having a plain directory on the list of
8748 ;; libraries to link.
8749 (("\\(RHDF5LIB_LIBS\\)" match)
8750 (string-append match "/libhdf5.a")))
8751 #t)))))
8752 (inputs
8753 `(("zlib" ,zlib)))
8754 (propagated-inputs
8755 `(("r-biocgenerics" ,r-biocgenerics)
8756 ("r-delayedarray" ,r-delayedarray)
8757 ("r-iranges" ,r-iranges)
8758 ("r-matrix" ,r-matrix)
8759 ("r-rhdf5" ,r-rhdf5)
8760 ("r-rhdf5lib" ,r-rhdf5lib)
8761 ("r-s4vectors" ,r-s4vectors)))
8762 (home-page "https://bioconductor.org/packages/HDF5Array")
8763 (synopsis "HDF5 back end for DelayedArray objects")
8764 (description "This package provides an array-like container for convenient
8765 access and manipulation of HDF5 datasets. It supports delayed operations and
8766 block processing.")
8767 (license license:artistic2.0)))
8768
8769 (define-public r-rhdf5lib
8770 (package
8771 (name "r-rhdf5lib")
8772 (version "1.12.0")
8773 (source
8774 (origin
8775 (method url-fetch)
8776 (uri (bioconductor-uri "Rhdf5lib" version))
8777 (sha256
8778 (base32
8779 "0wia85a6dkgibsjcmpqas5068msck3h3bqpgw2x07bk189z4vay2"))
8780 (modules '((guix build utils)))
8781 (snippet
8782 '(begin
8783 ;; Delete bundled binaries
8784 (delete-file-recursively "src/wininclude/")
8785 (delete-file-recursively "src/winlib-4.9.3/")
8786 (delete-file-recursively "src/winlib-8.3.0/")
8787 (delete-file "src/hdf5small_cxx_hl_1.10.6.tar.gz")
8788 #t))))
8789 (properties `((upstream-name . "Rhdf5lib")))
8790 (build-system r-build-system)
8791 (arguments
8792 `(#:phases
8793 (modify-phases %standard-phases
8794 (add-after 'unpack 'do-not-use-bundled-hdf5
8795 (lambda* (#:key inputs #:allow-other-keys)
8796 (for-each delete-file '("configure" "configure.ac"))
8797 ;; Do not make other packages link with the proprietary libsz.
8798 (substitute* "R/zzz.R"
8799 ((" \"%s/libsz.a\"") ""))
8800 (with-directory-excursion "src"
8801 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
8802 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
8803 "hdf5")
8804 ;; Remove timestamp and host system information to make
8805 ;; the build reproducible.
8806 (substitute* "hdf5/src/libhdf5.settings.in"
8807 (("Configured on: @CONFIG_DATE@")
8808 "Configured on: Guix")
8809 (("Uname information:.*")
8810 "Uname information: Linux\n")
8811 ;; Remove unnecessary store reference.
8812 (("C Compiler:.*")
8813 "C Compiler: GCC\n"))
8814 (rename-file "hdf5/src/libhdf5.settings.in"
8815 "hdf5/src/libhdf5.settings")
8816 (rename-file "Makevars.in" "Makevars")
8817 (substitute* "Makevars"
8818 (("@ZLIB_LIB@") "-lz")
8819 (("@ZLIB_INCLUDE@") "")
8820 (("HDF5_CXX_LIB=.*")
8821 (string-append "HDF5_CXX_LIB="
8822 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
8823 (("HDF5_LIB=.*")
8824 (string-append "HDF5_LIB="
8825 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
8826 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
8827 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
8828 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
8829 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
8830 (("HDF5_HL_LIB=.*")
8831 (string-append "HDF5_HL_LIB="
8832 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
8833 (("HDF5_HL_CXX_LIB=.*")
8834 (string-append "HDF5_HL_CXX_LIB="
8835 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
8836 ;; szip is non-free software
8837 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
8838 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n")))
8839 #t)))))
8840 (inputs
8841 `(("zlib" ,zlib)))
8842 (propagated-inputs
8843 `(("hdf5" ,hdf5-1.10)))
8844 (native-inputs
8845 `(("hdf5-source" ,(package-source hdf5-1.10))
8846 ("r-knitr" ,r-knitr)))
8847 (home-page "https://bioconductor.org/packages/Rhdf5lib")
8848 (synopsis "HDF5 library as an R package")
8849 (description "This package provides C and C++ HDF5 libraries for use in R
8850 packages.")
8851 (license license:artistic2.0)))
8852
8853 (define-public r-beachmat
8854 (package
8855 (name "r-beachmat")
8856 (version "2.6.2")
8857 (source
8858 (origin
8859 (method url-fetch)
8860 (uri (bioconductor-uri "beachmat" version))
8861 (sha256
8862 (base32
8863 "1yxm5andf4hsxxsmwrn5vl79707yfqkhzzajq6fvhsmaad3f97n7"))))
8864 (build-system r-build-system)
8865 (propagated-inputs
8866 `(("r-biocgenerics" ,r-biocgenerics)
8867 ("r-delayedarray" ,r-delayedarray)
8868 ("r-matrix" ,r-matrix)))
8869 (native-inputs
8870 `(("r-knitr" ,r-knitr)))
8871 (home-page "https://bioconductor.org/packages/beachmat")
8872 (synopsis "Compiling Bioconductor to handle each matrix type")
8873 (description "This package provides a consistent C++ class interface for a
8874 variety of commonly used matrix types, including sparse and HDF5-backed
8875 matrices.")
8876 (license license:gpl3)))
8877
8878 (define-public r-singlecellexperiment
8879 (package
8880 (name "r-singlecellexperiment")
8881 (version "1.12.0")
8882 (source
8883 (origin
8884 (method url-fetch)
8885 (uri (bioconductor-uri "SingleCellExperiment" version))
8886 (sha256
8887 (base32
8888 "0wpgb2rhxxlclpmwl08iyfy204f7gpj8ijd0qdy4j41c58bl4qm2"))))
8889 (properties
8890 `((upstream-name . "SingleCellExperiment")))
8891 (build-system r-build-system)
8892 (propagated-inputs
8893 `(("r-biocgenerics" ,r-biocgenerics)
8894 ("r-s4vectors" ,r-s4vectors)
8895 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8896 (native-inputs
8897 `(("r-knitr" ,r-knitr)))
8898 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
8899 (synopsis "S4 classes for single cell data")
8900 (description "This package defines an S4 class for storing data from
8901 single-cell experiments. This includes specialized methods to store and
8902 retrieve spike-in information, dimensionality reduction coordinates and size
8903 factors for each cell, along with the usual metadata for genes and
8904 libraries.")
8905 (license license:gpl3)))
8906
8907 (define-public r-scuttle
8908 (package
8909 (name "r-scuttle")
8910 (version "1.0.3")
8911 (source
8912 (origin
8913 (method url-fetch)
8914 (uri (bioconductor-uri "scuttle" version))
8915 (sha256
8916 (base32
8917 "0l2r6fhyd33dllf2mc5a1pd5sawfvcin54pgh9l1nafqzg3sdv2m"))))
8918 (properties `((upstream-name . "scuttle")))
8919 (build-system r-build-system)
8920 (propagated-inputs
8921 `(("r-beachmat" ,r-beachmat)
8922 ("r-biocgenerics" ,r-biocgenerics)
8923 ("r-biocparallel" ,r-biocparallel)
8924 ("r-delayedarray" ,r-delayedarray)
8925 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
8926 ("r-genomicranges" ,r-genomicranges)
8927 ("r-matrix" ,r-matrix)
8928 ("r-rcpp" ,r-rcpp)
8929 ("r-s4vectors" ,r-s4vectors)
8930 ("r-singlecellexperiment" ,r-singlecellexperiment)
8931 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8932 (native-inputs `(("r-knitr" ,r-knitr)))
8933 (home-page "https://bioconductor.org/packages/scuttle")
8934 (synopsis "Single-cell RNA-Seq analysis utilities")
8935 (description
8936 "This package provides basic utility functions for performing single-cell
8937 analyses, focusing on simple normalization, quality control and data
8938 transformations. It also provides some helper functions to assist development
8939 of other packages.")
8940 (license license:gpl3)))
8941
8942 (define-public r-scater
8943 (package
8944 (name "r-scater")
8945 (version "1.18.3")
8946 (source (origin
8947 (method url-fetch)
8948 (uri (bioconductor-uri "scater" version))
8949 (sha256
8950 (base32
8951 "14f7yw277nykxmcm7wlhlsf3nizpwzz24hax1icx73lavfxmc535"))))
8952 (build-system r-build-system)
8953 (propagated-inputs
8954 `(("r-biocgenerics" ,r-biocgenerics)
8955 ("r-biocneighbors" ,r-biocneighbors)
8956 ("r-biocparallel" ,r-biocparallel)
8957 ("r-biocsingular" ,r-biocsingular)
8958 ("r-delayedarray" ,r-delayedarray)
8959 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
8960 ("r-ggbeeswarm" ,r-ggbeeswarm)
8961 ("r-ggplot2" ,r-ggplot2)
8962 ("r-gridextra" ,r-gridextra)
8963 ("r-matrix" ,r-matrix)
8964 ("r-rlang" ,r-rlang)
8965 ("r-s4vectors" ,r-s4vectors)
8966 ("r-scuttle" ,r-scuttle)
8967 ("r-singlecellexperiment" ,r-singlecellexperiment)
8968 ("r-summarizedexperiment" ,r-summarizedexperiment)
8969 ("r-viridis" ,r-viridis)))
8970 (native-inputs
8971 `(("r-knitr" ,r-knitr)))
8972 (home-page "https://github.com/davismcc/scater")
8973 (synopsis "Single-cell analysis toolkit for gene expression data in R")
8974 (description "This package provides a collection of tools for doing
8975 various analyses of single-cell RNA-seq gene expression data, with a focus on
8976 quality control.")
8977 (license license:gpl2+)))
8978
8979 (define-public r-scran
8980 (package
8981 (name "r-scran")
8982 (version "1.18.1")
8983 (source
8984 (origin
8985 (method url-fetch)
8986 (uri (bioconductor-uri "scran" version))
8987 (sha256
8988 (base32
8989 "1zap12rm61z2hg6ykknbif478nr7g468v8mp50bj5hqgi69ywcww"))))
8990 (build-system r-build-system)
8991 (propagated-inputs
8992 `(("r-beachmat" ,r-beachmat)
8993 ("r-bh" ,r-bh)
8994 ("r-biocgenerics" ,r-biocgenerics)
8995 ("r-biocneighbors" ,r-biocneighbors)
8996 ("r-biocparallel" ,r-biocparallel)
8997 ("r-biocsingular" ,r-biocsingular)
8998 ("r-bluster" ,r-bluster)
8999 ("r-delayedarray" ,r-delayedarray)
9000 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
9001 ("r-dqrng" ,r-dqrng)
9002 ("r-edger" ,r-edger)
9003 ("r-igraph" ,r-igraph)
9004 ("r-limma" ,r-limma)
9005 ("r-matrix" ,r-matrix)
9006 ("r-rcpp" ,r-rcpp)
9007 ("r-s4vectors" ,r-s4vectors)
9008 ("r-scuttle" ,r-scuttle)
9009 ("r-singlecellexperiment" ,r-singlecellexperiment)
9010 ("r-statmod" ,r-statmod)
9011 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9012 (native-inputs
9013 `(("r-knitr" ,r-knitr)))
9014 (home-page "https://bioconductor.org/packages/scran")
9015 (synopsis "Methods for single-cell RNA-Seq data analysis")
9016 (description "This package implements a variety of low-level analyses of
9017 single-cell RNA-seq data. Methods are provided for normalization of
9018 cell-specific biases, assignment of cell cycle phase, and detection of highly
9019 variable and significantly correlated genes.")
9020 (license license:gpl3)))
9021
9022 (define-public r-sparsematrixstats
9023 (package
9024 (name "r-sparsematrixstats")
9025 (version "1.2.0")
9026 (source
9027 (origin
9028 (method url-fetch)
9029 (uri (bioconductor-uri "sparseMatrixStats" version))
9030 (sha256
9031 (base32
9032 "0d1idbda1pzhdam9m0i5rn0c6pl7gwv0v3mcrv4wi5760v9qd5qh"))))
9033 (properties
9034 `((upstream-name . "sparseMatrixStats")))
9035 (build-system r-build-system)
9036 (propagated-inputs
9037 `(("r-matrix" ,r-matrix)
9038 ("r-matrixgenerics" ,r-matrixgenerics)
9039 ("r-matrixstats" ,r-matrixstats)
9040 ("r-rcpp" ,r-rcpp)))
9041 (native-inputs `(("r-knitr" ,r-knitr)))
9042 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
9043 (synopsis "Summary statistics for rows and columns of sparse matrices")
9044 (description
9045 "This package provides high performance functions for row and column
9046 operations on sparse matrices. Currently, the optimizations are limited to
9047 data in the column sparse format.")
9048 (license license:expat)))
9049
9050 (define-public r-delayedmatrixstats
9051 (package
9052 (name "r-delayedmatrixstats")
9053 (version "1.12.1")
9054 (source
9055 (origin
9056 (method url-fetch)
9057 (uri (bioconductor-uri "DelayedMatrixStats" version))
9058 (sha256
9059 (base32
9060 "1cyvj6ffl10vaiip146dldc1w8if854kpz9nhi50ndhpkmdb8sa0"))))
9061 (properties
9062 `((upstream-name . "DelayedMatrixStats")))
9063 (build-system r-build-system)
9064 (propagated-inputs
9065 `(("r-biocparallel" ,r-biocparallel)
9066 ("r-delayedarray" ,r-delayedarray)
9067 ("r-hdf5array" ,r-hdf5array)
9068 ("r-iranges" ,r-iranges)
9069 ("r-matrix" ,r-matrix)
9070 ("r-matrixgenerics" ,r-matrixgenerics)
9071 ("r-matrixstats" ,r-matrixstats)
9072 ("r-s4vectors" ,r-s4vectors)
9073 ("r-sparsematrixstats" ,r-sparsematrixstats)))
9074 (native-inputs
9075 `(("r-knitr" ,r-knitr)))
9076 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
9077 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
9078 (description
9079 "This package provides a port of the @code{matrixStats} API for use with
9080 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
9081 contains high-performing functions operating on rows and columns of
9082 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
9083 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
9084 are optimized per data type and for subsetted calculations such that both
9085 memory usage and processing time is minimized.")
9086 (license license:expat)))
9087
9088 (define-public r-mscoreutils
9089 (package
9090 (name "r-mscoreutils")
9091 (version "1.2.0")
9092 (source
9093 (origin
9094 (method url-fetch)
9095 (uri (bioconductor-uri "MsCoreUtils" version))
9096 (sha256
9097 (base32
9098 "0fa3bcf2cmzf5y8wjs7pnzs26qwgqnrrl4hj4sa4fp9kv8z80630"))))
9099 (properties `((upstream-name . "MsCoreUtils")))
9100 (build-system r-build-system)
9101 (propagated-inputs
9102 `(("r-mass" ,r-mass)
9103 ("r-rcpp" ,r-rcpp)
9104 ("r-s4vectors" ,r-s4vectors)))
9105 (native-inputs
9106 `(("r-knitr" ,r-knitr)))
9107 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
9108 (synopsis "Core utils for mass spectrometry data")
9109 (description
9110 "This package defines low-level functions for mass spectrometry data and
9111 is independent of any high-level data structures. These functions include
9112 mass spectra processing functions (noise estimation, smoothing, binning),
9113 quantitative aggregation functions (median polish, robust summarisation,
9114 etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
9115 well as misc helper functions, that are used across high-level data structure
9116 within the R for Mass Spectrometry packages.")
9117 (license license:artistic2.0)))
9118
9119 (define-public r-biocio
9120 (package
9121 (name "r-biocio")
9122 (version "1.0.1")
9123 (source
9124 (origin
9125 (method url-fetch)
9126 (uri (bioconductor-uri "BiocIO" version))
9127 (sha256
9128 (base32
9129 "06gg5ra3r7q4b6mz14c2s9d453cnh1lxh517ffl9f8dr8vwv5s18"))))
9130 (properties `((upstream-name . "BiocIO")))
9131 (build-system r-build-system)
9132 (propagated-inputs
9133 `(("r-biocgenerics" ,r-biocgenerics)
9134 ("r-genomicranges" ,r-genomicranges)
9135 ("r-rcurl" ,r-rcurl)
9136 ("r-s4vectors" ,r-s4vectors)))
9137 (native-inputs
9138 `(("r-knitr" ,r-knitr)))
9139 (home-page "https://bioconductor.org/packages/BiocIO")
9140 (synopsis "Standard input and output for Bioconductor packages")
9141 (description
9142 "This package implements `import()` and `export()` standard generics for
9143 importing and exporting biological data formats. `import()` supports
9144 whole-file as well as chunk-wise iterative import. The `import()` interface
9145 optionally provides a standard mechanism for 'lazy' access via `filter()` (on
9146 row or element-like components of the file resource), `select()` (on
9147 column-like components of the file resource) and `collect()`. The `import()`
9148 interface optionally provides transparent access to remote (e.g. via https)
9149 as well as local access. Developers can register a file extension, e.g.,
9150 `.loom` for dispatch from character-based URIs to specific `import()` /
9151 `export()` methods based on classes representing file types, e.g.,
9152 `LoomFile()`.")
9153 (license license:artistic2.0)))
9154
9155 (define-public r-msmseda
9156 (package
9157 (name "r-msmseda")
9158 (version "1.28.0")
9159 (source
9160 (origin
9161 (method url-fetch)
9162 (uri (bioconductor-uri "msmsEDA" version))
9163 (sha256
9164 (base32
9165 "1llmy8msxmrqik3s3439wffma1662vwvvcaz8q0a4g5ridkmdbrx"))))
9166 (properties `((upstream-name . "msmsEDA")))
9167 (build-system r-build-system)
9168 (propagated-inputs
9169 `(("r-gplots" ,r-gplots)
9170 ("r-mass" ,r-mass)
9171 ("r-msnbase" ,r-msnbase)
9172 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9173 (home-page
9174 "https://bioconductor.org/packages/msmsEDA")
9175 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
9176 (description
9177 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
9178 experiments, and visualize de influence of the involved factors.")
9179 (license license:gpl2)))
9180
9181 (define-public r-msmstests
9182 (package
9183 (name "r-msmstests")
9184 (version "1.28.0")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (bioconductor-uri "msmsTests" version))
9189 (sha256
9190 (base32
9191 "1zsnmzj1qvjdwz7mwg9wrsk5iskpqs0f6jccqn8mxy9dgkskmp0j"))))
9192 (properties `((upstream-name . "msmsTests")))
9193 (build-system r-build-system)
9194 (propagated-inputs
9195 `(("r-edger" ,r-edger)
9196 ("r-msmseda" ,r-msmseda)
9197 ("r-msnbase" ,r-msnbase)
9198 ("r-qvalue" ,r-qvalue)))
9199 (home-page
9200 "https://bioconductor.org/packages/msmsTests")
9201 (synopsis "Differential LC-MS/MS expression tests")
9202 (description
9203 "This packages provides statistical tests for label-free LC-MS/MS data
9204 by spectral counts, to discover differentially expressed proteins between two
9205 biological conditions. Three tests are available: Poisson GLM regression,
9206 quasi-likelihood GLM regression, and the negative binomial of the edgeR
9207 package.The three models admit blocking factors to control for nuissance
9208 variables.To assure a good level of reproducibility a post-test filter is
9209 available, where we may set the minimum effect size considered biologicaly
9210 relevant, and the minimum expression of the most abundant condition.")
9211 (license license:gpl2)))
9212
9213 (define-public r-catalyst
9214 (package
9215 (name "r-catalyst")
9216 (version "1.14.0")
9217 (source
9218 (origin
9219 (method url-fetch)
9220 (uri (bioconductor-uri "CATALYST" version))
9221 (sha256
9222 (base32
9223 "13af7c4irx1f5yqi32k7kj661vzg32wn3dnps7r9pjijfl4drhrh"))))
9224 (properties `((upstream-name . "CATALYST")))
9225 (build-system r-build-system)
9226 (propagated-inputs
9227 `(("r-circlize" ,r-circlize)
9228 ("r-complexheatmap" ,r-complexheatmap)
9229 ("r-consensusclusterplus" ,r-consensusclusterplus)
9230 ("r-cowplot" ,r-cowplot)
9231 ("r-data-table" ,r-data-table)
9232 ("r-dplyr" ,r-dplyr)
9233 ("r-drc" ,r-drc)
9234 ("r-flowcore" ,r-flowcore)
9235 ("r-flowsom" ,r-flowsom)
9236 ("r-ggplot2" ,r-ggplot2)
9237 ("r-ggrepel" ,r-ggrepel)
9238 ("r-ggridges" ,r-ggridges)
9239 ("r-gridextra" ,r-gridextra)
9240 ("r-magrittr" ,r-magrittr)
9241 ("r-matrix" ,r-matrix)
9242 ("r-matrixstats" ,r-matrixstats)
9243 ("r-nnls" ,r-nnls)
9244 ("r-purrr" ,r-purrr)
9245 ("r-rcolorbrewer" ,r-rcolorbrewer)
9246 ("r-reshape2" ,r-reshape2)
9247 ("r-rtsne" ,r-rtsne)
9248 ("r-s4vectors" ,r-s4vectors)
9249 ("r-scales" ,r-scales)
9250 ("r-scater" ,r-scater)
9251 ("r-singlecellexperiment" ,r-singlecellexperiment)
9252 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9253 (native-inputs
9254 `(("r-knitr" ,r-knitr)))
9255 (home-page
9256 "https://github.com/HelenaLC/CATALYST")
9257 (synopsis "Cytometry data analysis tools")
9258 (description
9259 "This package is Cytometry dATa anALYSis Tools (CATALYST). Mass
9260 cytometry (CyTOF) uses heavy metal isotopes rather than fluorescent tags as
9261 reporters to label antibodies, thereby substantially decreasing spectral
9262 overlap and allowing for examination of over 50 parameters at the single cell
9263 level. While spectral overlap is significantly less pronounced in CyTOF than
9264 flow cytometry, spillover due to detection sensitivity, isotopic impurities,
9265 and oxide formation can impede data interpretability. We designed
9266 CATALYST (Cytometry dATa anALYSis Tools) to provide a pipeline for
9267 preprocessing of cytometry data, including i) normalization using bead
9268 standards, ii) single-cell deconvolution, and iii) bead-based compensation.")
9269 (license license:gpl2+)))
9270
9271 (define-public r-erma
9272 (package
9273 (name "r-erma")
9274 (version "1.6.0")
9275 (source
9276 (origin
9277 (method url-fetch)
9278 (uri (bioconductor-uri "erma" version))
9279 (sha256
9280 (base32
9281 "1k2j1xhv0vwn45xmh8ds0gz812px5hnpgzvp37ngsdn4j5ai1l0k"))))
9282 (build-system r-build-system)
9283 (propagated-inputs
9284 `(("r-annotationdbi" ,r-annotationdbi)
9285 ("r-biobase" ,r-biobase)
9286 ("r-biocgenerics" ,r-biocgenerics)
9287 ("r-biocparallel" ,r-biocparallel)
9288 ("r-genomeinfodb" ,r-genomeinfodb)
9289 ("r-genomicfiles" ,r-genomicfiles)
9290 ("r-genomicranges" ,r-genomicranges)
9291 ("r-ggplot2" ,r-ggplot2)
9292 ("r-homo-sapiens" ,r-homo-sapiens)
9293 ("r-iranges" ,r-iranges)
9294 ("r-rtracklayer" ,r-rtracklayer)
9295 ("r-s4vectors" ,r-s4vectors)
9296 ("r-shiny" ,r-shiny)
9297 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9298 (native-inputs
9299 `(("r-knitr" ,r-knitr)))
9300 (home-page "https://bioconductor.org/packages/erma")
9301 (synopsis "Epigenomic road map adventures")
9302 (description
9303 "The epigenomics road map describes locations of epigenetic marks in DNA
9304 from a variety of cell types. Of interest are locations of histone
9305 modifications, sites of DNA methylation, and regions of accessible chromatin.
9306 This package presents a selection of elements of the road map including
9307 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
9308 by Ernst and Kellis.")
9309 (license license:artistic2.0)))
9310
9311 (define-public r-ggbio
9312 (package
9313 (name "r-ggbio")
9314 (version "1.38.0")
9315 (source
9316 (origin
9317 (method url-fetch)
9318 (uri (bioconductor-uri "ggbio" version))
9319 (sha256
9320 (base32
9321 "0vabil4jzrlv01aibqjhdkvrv2bf2kkpsidrkjj06isqr5fz54lw"))))
9322 (build-system r-build-system)
9323 (arguments
9324 `(#:phases
9325 (modify-phases %standard-phases
9326 ;; See https://github.com/tengfei/ggbio/issues/117
9327 ;; This fix will be included in the next release.
9328 (add-after 'unpack 'fix-typo
9329 (lambda _
9330 (substitute* "R/GGbio-class.R"
9331 (("fechable") "fetchable"))
9332 #t)))))
9333 (propagated-inputs
9334 `(("r-annotationdbi" ,r-annotationdbi)
9335 ("r-annotationfilter" ,r-annotationfilter)
9336 ("r-biobase" ,r-biobase)
9337 ("r-biocgenerics" ,r-biocgenerics)
9338 ("r-biostrings" ,r-biostrings)
9339 ("r-biovizbase" ,r-biovizbase)
9340 ("r-bsgenome" ,r-bsgenome)
9341 ("r-ensembldb" ,r-ensembldb)
9342 ("r-genomeinfodb" ,r-genomeinfodb)
9343 ("r-genomicalignments" ,r-genomicalignments)
9344 ("r-genomicfeatures" ,r-genomicfeatures)
9345 ("r-genomicranges" ,r-genomicranges)
9346 ("r-ggally" ,r-ggally)
9347 ("r-ggplot2" ,r-ggplot2)
9348 ("r-gridextra" ,r-gridextra)
9349 ("r-gtable" ,r-gtable)
9350 ("r-hmisc" ,r-hmisc)
9351 ("r-iranges" ,r-iranges)
9352 ("r-organismdbi" ,r-organismdbi)
9353 ("r-reshape2" ,r-reshape2)
9354 ("r-rlang" ,r-rlang)
9355 ("r-rsamtools" ,r-rsamtools)
9356 ("r-rtracklayer" ,r-rtracklayer)
9357 ("r-s4vectors" ,r-s4vectors)
9358 ("r-scales" ,r-scales)
9359 ("r-summarizedexperiment" ,r-summarizedexperiment)
9360 ("r-variantannotation" ,r-variantannotation)))
9361 (native-inputs
9362 `(("r-knitr" ,r-knitr)))
9363 (home-page "http://www.tengfei.name/ggbio/")
9364 (synopsis "Visualization tools for genomic data")
9365 (description
9366 "The ggbio package extends and specializes the grammar of graphics for
9367 biological data. The graphics are designed to answer common scientific
9368 questions, in particular those often asked of high throughput genomics data.
9369 All core Bioconductor data structures are supported, where appropriate. The
9370 package supports detailed views of particular genomic regions, as well as
9371 genome-wide overviews. Supported overviews include ideograms and grand linear
9372 views. High-level plots include sequence fragment length, edge-linked
9373 interval to data view, mismatch pileup, and several splicing summaries.")
9374 (license license:artistic2.0)))
9375
9376 (define-public r-gqtlbase
9377 (package
9378 (name "r-gqtlbase")
9379 (version "1.21.1")
9380 (source
9381 (origin
9382 (method url-fetch)
9383 (uri (bioconductor-uri "gQTLBase" version))
9384 (sha256
9385 (base32
9386 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
9387 (properties `((upstream-name . "gQTLBase")))
9388 (build-system r-build-system)
9389 (arguments
9390 `(#:phases
9391 (modify-phases %standard-phases
9392 ;; This is an upstream bug.
9393 (add-after 'unpack 'fix-imports
9394 (lambda _
9395 (substitute* "NAMESPACE"
9396 ((".*maxffmode.*") "")
9397 (("importFrom\\(ff,.*") "import(ff)\n"))
9398 #t)))))
9399 (propagated-inputs
9400 `(("r-batchjobs" ,r-batchjobs)
9401 ("r-bbmisc" ,r-bbmisc)
9402 ("r-biocgenerics" ,r-biocgenerics)
9403 ("r-bit" ,r-bit)
9404 ("r-doparallel" ,r-doparallel)
9405 ("r-ff" ,r-ff)
9406 ("r-ffbase" ,r-ffbase)
9407 ("r-foreach" ,r-foreach)
9408 ("r-genomicfiles" ,r-genomicfiles)
9409 ("r-genomicranges" ,r-genomicranges)
9410 ("r-rtracklayer" ,r-rtracklayer)
9411 ("r-s4vectors" ,r-s4vectors)
9412 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9413 (native-inputs
9414 `(("r-knitr" ,r-knitr)))
9415 (home-page "https://bioconductor.org/packages/gQTLBase")
9416 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
9417 (description
9418 "The purpose of this package is to simplify the storage and interrogation
9419 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
9420 and more.")
9421 (license license:artistic2.0)))
9422
9423 (define-public r-gqtlstats
9424 (package
9425 (name "r-gqtlstats")
9426 (version "1.21.3")
9427 (source
9428 (origin
9429 (method url-fetch)
9430 (uri (bioconductor-uri "gQTLstats" version))
9431 (sha256
9432 (base32
9433 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
9434 (properties `((upstream-name . "gQTLstats")))
9435 (build-system r-build-system)
9436 (propagated-inputs
9437 `(("r-annotationdbi" ,r-annotationdbi)
9438 ("r-batchjobs" ,r-batchjobs)
9439 ("r-bbmisc" ,r-bbmisc)
9440 ("r-beeswarm" ,r-beeswarm)
9441 ("r-biobase" ,r-biobase)
9442 ("r-biocgenerics" ,r-biocgenerics)
9443 ("r-doparallel" ,r-doparallel)
9444 ("r-dplyr" ,r-dplyr)
9445 ("r-erma" ,r-erma)
9446 ("r-ffbase" ,r-ffbase)
9447 ("r-foreach" ,r-foreach)
9448 ("r-genomeinfodb" ,r-genomeinfodb)
9449 ("r-genomicfeatures" ,r-genomicfeatures)
9450 ("r-genomicfiles" ,r-genomicfiles)
9451 ("r-genomicranges" ,r-genomicranges)
9452 ("r-ggbeeswarm" ,r-ggbeeswarm)
9453 ("r-ggplot2" ,r-ggplot2)
9454 ("r-gqtlbase" ,r-gqtlbase)
9455 ("r-hardyweinberg" ,r-hardyweinberg)
9456 ("r-homo-sapiens" ,r-homo-sapiens)
9457 ("r-iranges" ,r-iranges)
9458 ("r-limma" ,r-limma)
9459 ("r-mgcv" ,r-mgcv)
9460 ("r-plotly" ,r-plotly)
9461 ("r-reshape2" ,r-reshape2)
9462 ("r-s4vectors" ,r-s4vectors)
9463 ("r-shiny" ,r-shiny)
9464 ("r-snpstats" ,r-snpstats)
9465 ("r-summarizedexperiment" ,r-summarizedexperiment)
9466 ("r-variantannotation" ,r-variantannotation)))
9467 (native-inputs
9468 `(("r-knitr" ,r-knitr)))
9469 (home-page "https://bioconductor.org/packages/gQTLstats")
9470 (synopsis "Computationally efficient analysis for eQTL and allied studies")
9471 (description
9472 "This package provides tools for the computationally efficient analysis
9473 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
9474 The software in this package aims to support refinements and functional
9475 interpretation of members of a collection of association statistics on a
9476 family of feature/genome hypotheses.")
9477 (license license:artistic2.0)))
9478
9479 (define-public r-gviz
9480 (package
9481 (name "r-gviz")
9482 (version "1.34.0")
9483 (source
9484 (origin
9485 (method url-fetch)
9486 (uri (bioconductor-uri "Gviz" version))
9487 (sha256
9488 (base32
9489 "0v7bz46b91dnrr55ah42ljj1i2xs3090s4w0lw8098pag00p4vh2"))))
9490 (properties `((upstream-name . "Gviz")))
9491 (build-system r-build-system)
9492 (propagated-inputs
9493 `(("r-annotationdbi" ,r-annotationdbi)
9494 ("r-biobase" ,r-biobase)
9495 ("r-biocgenerics" ,r-biocgenerics)
9496 ("r-biomart" ,r-biomart)
9497 ("r-biostrings" ,r-biostrings)
9498 ("r-biovizbase" ,r-biovizbase)
9499 ("r-bsgenome" ,r-bsgenome)
9500 ("r-digest" ,r-digest)
9501 ("r-ensembldb" ,r-ensembldb)
9502 ("r-genomeinfodb" ,r-genomeinfodb)
9503 ("r-genomicalignments" ,r-genomicalignments)
9504 ("r-genomicfeatures" ,r-genomicfeatures)
9505 ("r-genomicranges" ,r-genomicranges)
9506 ("r-iranges" ,r-iranges)
9507 ("r-lattice" ,r-lattice)
9508 ("r-latticeextra" ,r-latticeextra)
9509 ("r-matrixstats" ,r-matrixstats)
9510 ("r-rcolorbrewer" ,r-rcolorbrewer)
9511 ("r-rsamtools" ,r-rsamtools)
9512 ("r-rtracklayer" ,r-rtracklayer)
9513 ("r-s4vectors" ,r-s4vectors)
9514 ("r-xvector" ,r-xvector)))
9515 (native-inputs
9516 `(("r-knitr" ,r-knitr)))
9517 (home-page "https://bioconductor.org/packages/Gviz")
9518 (synopsis "Plotting data and annotation information along genomic coordinates")
9519 (description
9520 "Genomic data analyses requires integrated visualization of known genomic
9521 information and new experimental data. Gviz uses the biomaRt and the
9522 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
9523 and translates this to e.g. gene/transcript structures in viewports of the
9524 grid graphics package. This results in genomic information plotted together
9525 with your data.")
9526 (license license:artistic2.0)))
9527
9528 (define-public r-gwascat
9529 (package
9530 (name "r-gwascat")
9531 (version "2.22.0")
9532 (source
9533 (origin
9534 (method url-fetch)
9535 (uri (bioconductor-uri "gwascat" version))
9536 (sha256
9537 (base32
9538 "1aqi1ny93virnzsxkh9ccx3mws70bgv0r8nwgla09vffb7f16nna"))))
9539 (build-system r-build-system)
9540 (propagated-inputs
9541 `(("r-annotationdbi" ,r-annotationdbi)
9542 ("r-biocfilecache" ,r-biocfilecache)
9543 ("r-biostrings" ,r-biostrings)
9544 ("r-genomeinfodb" ,r-genomeinfodb)
9545 ("r-genomicfeatures" ,r-genomicfeatures)
9546 ("r-genomicranges" ,r-genomicranges)
9547 ("r-iranges" ,r-iranges)
9548 ("r-readr" ,r-readr)
9549 ("r-s4vectors" ,r-s4vectors)
9550 ("r-snpstats" ,r-snpstats)
9551 ("r-variantannotation" ,r-variantannotation)))
9552 (native-inputs
9553 `(("r-knitr" ,r-knitr)))
9554 (home-page "https://bioconductor.org/packages/gwascat")
9555 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
9556 (description
9557 "This package provides tools for representing and modeling data in the
9558 EMBL-EBI GWAS catalog.")
9559 (license license:artistic2.0)))
9560
9561 (define-public r-kegggraph
9562 (package
9563 (name "r-kegggraph")
9564 (version "1.50.0")
9565 (source
9566 (origin
9567 (method url-fetch)
9568 (uri (bioconductor-uri "KEGGgraph" version))
9569 (sha256
9570 (base32 "1h293hn02ysm923bh9gxk87xv663xiqchqcvpaxpla9c3yrgkx2v"))))
9571 (properties `((upstream-name . "KEGGgraph")))
9572 (build-system r-build-system)
9573 (propagated-inputs
9574 `(("r-graph" ,r-graph)
9575 ("r-rcurl" ,r-rcurl)
9576 ("r-xml" ,r-xml)))
9577 (home-page "https://bioconductor.org/packages/KEGGgraph")
9578 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
9579 (description
9580 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
9581 object as well as a collection of tools to analyze, dissect and visualize these
9582 graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
9583 maintaining all essential pathway attributes. The package offers
9584 functionalities including parsing, graph operation, visualization and etc.")
9585 (license license:gpl2+)))
9586
9587 (define-public r-ldblock
9588 (package
9589 (name "r-ldblock")
9590 (version "1.20.0")
9591 (source
9592 (origin
9593 (method url-fetch)
9594 (uri (bioconductor-uri "ldblock" version))
9595 (sha256
9596 (base32
9597 "09i3ikv0axks9g842z1pjsc8x0fba51zyyc218h0bylbi1n9cdkm"))))
9598 (build-system r-build-system)
9599 (propagated-inputs
9600 `(("r-biocgenerics" ,r-biocgenerics)
9601 ("r-ensdb-hsapiens-v75" ,r-ensdb-hsapiens-v75)
9602 ("r-ensembldb" ,r-ensembldb)
9603 ("r-genomeinfodb" ,r-genomeinfodb)
9604 ("r-genomicfiles" ,r-genomicfiles)
9605 ("r-httr" ,r-httr)
9606 ("r-matrix" ,r-matrix)
9607 ("r-rsamtools" ,r-rsamtools)
9608 ("r-snpstats" ,r-snpstats)
9609 ("r-variantannotation" ,r-variantannotation)))
9610 (native-inputs
9611 `(("r-knitr" ,r-knitr)))
9612 (home-page "https://bioconductor.org/packages/ldblock")
9613 (synopsis "Data structures for linkage disequilibrium measures in populations")
9614 (description
9615 "This package defines data structures for @dfn{linkage
9616 disequilibrium} (LD) measures in populations. Its purpose is to simplify
9617 handling of existing population-level data for the purpose of flexibly
9618 defining LD blocks.")
9619 (license license:artistic2.0)))
9620
9621 ;; This is a CRAN package, but it depends on r-snpstats, which is a
9622 ;; Bioconductor package.
9623 (define-public r-ldheatmap
9624 (package
9625 (name "r-ldheatmap")
9626 (version "1.0-4")
9627 (source
9628 (origin
9629 (method url-fetch)
9630 (uri (cran-uri "LDheatmap" version))
9631 (sha256
9632 (base32
9633 "1jp578cf29qcgx95w10lpymlwx2pgjsf0nypwkl9b8g635gkisq7"))))
9634 (properties `((upstream-name . "LDheatmap")))
9635 (build-system r-build-system)
9636 (propagated-inputs
9637 `(("r-genetics" ,r-genetics)
9638 ("r-rcpp" ,r-rcpp)
9639 ("r-snpstats" ,r-snpstats)))
9640 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
9641 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
9642 (description
9643 "This package provides tools to produce a graphical display, as a heat
9644 map, of measures of pairwise linkage disequilibria between SNPs. Users may
9645 optionally include the physical locations or genetic map distances of each SNP
9646 on the plot.")
9647 (license license:gpl3)))
9648
9649 (define-public r-pathview
9650 (package
9651 (name "r-pathview")
9652 (version "1.30.1")
9653 (source
9654 (origin
9655 (method url-fetch)
9656 (uri (bioconductor-uri "pathview" version))
9657 (sha256
9658 (base32 "11fisiksw1y64ii9q8p2znyp9w8mlqzgiaacmycw59rngkjlmbs4"))))
9659 (properties `((upstream-name . "pathview")))
9660 (build-system r-build-system)
9661 (propagated-inputs
9662 `(("r-annotationdbi" ,r-annotationdbi)
9663 ("r-graph" ,r-graph)
9664 ("r-kegggraph" ,r-kegggraph)
9665 ("r-keggrest" ,r-keggrest)
9666 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
9667 ("r-png" ,r-png)
9668 ("r-rgraphviz" ,r-rgraphviz)
9669 ("r-xml" ,r-xml)))
9670 (home-page "https://pathview.uncc.edu/")
9671 (synopsis "Tool set for pathway based data integration and visualization")
9672 (description
9673 "@code{r-pathview} is a tool set for pathway based data integration and
9674 visualization. It maps and renders a wide variety of biological data on
9675 relevant pathway graphs. All users need is to supply their data and specify
9676 the target pathway. This package automatically downloads the pathway graph
9677 data, parses the data file, maps user data to the pathway, and render pathway
9678 graph with the mapped data. In addition, @code{r-pathview} also seamlessly
9679 integrates with pathway and gene set (enrichment) analysis tools for
9680 large-scale and fully automated analysis.")
9681 (license license:gpl3+)))
9682
9683 (define-public r-snpstats
9684 (package
9685 (name "r-snpstats")
9686 (version "1.40.0")
9687 (source
9688 (origin
9689 (method url-fetch)
9690 (uri (bioconductor-uri "snpStats" version))
9691 (sha256
9692 (base32
9693 "1298a71swwav53yf9kfqkdpach3818plqcbw0lgb6sibs8y8ff24"))))
9694 (properties `((upstream-name . "snpStats")))
9695 (build-system r-build-system)
9696 (inputs `(("zlib" ,zlib)))
9697 (propagated-inputs
9698 `(("r-biocgenerics" ,r-biocgenerics)
9699 ("r-matrix" ,r-matrix)
9700 ("r-survival" ,r-survival)
9701 ("r-zlibbioc" ,r-zlibbioc)))
9702 (home-page "https://bioconductor.org/packages/snpStats")
9703 (synopsis "Methods for SNP association studies")
9704 (description
9705 "This package provides classes and statistical methods for large
9706 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
9707 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
9708 (license license:gpl3)))
9709
9710 (define-public r-sushi
9711 (package
9712 (name "r-sushi")
9713 (version "1.28.0")
9714 (source (origin
9715 (method url-fetch)
9716 (uri (bioconductor-uri "Sushi" version))
9717 (sha256
9718 (base32
9719 "0ksj4f9z14mjsv6ssg5dwhpldw4r7wpdsln2if5g486mm1c56r8p"))))
9720 (properties `((upstream-name . "Sushi")))
9721 (build-system r-build-system)
9722 (propagated-inputs
9723 `(("r-biomart" ,r-biomart)
9724 ("r-zoo" ,r-zoo)))
9725 (home-page "https://bioconductor.org/packages/Sushi")
9726 (synopsis "Tools for visualizing genomics data")
9727 (description
9728 "This package provides flexible, quantitative, and integrative genomic
9729 visualizations for publication-quality multi-panel figures.")
9730 (license license:gpl2+)))