gnu: Add r-bhc.
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
4 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
5 ;;; Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com>
6 ;;;
7 ;;; This file is part of GNU Guix.
8 ;;;
9 ;;; GNU Guix is free software; you can redistribute it and/or modify it
10 ;;; under the terms of the GNU General Public License as published by
11 ;;; the Free Software Foundation; either version 3 of the License, or (at
12 ;;; your option) any later version.
13 ;;;
14 ;;; GNU Guix is distributed in the hope that it will be useful, but
15 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;;; GNU General Public License for more details.
18 ;;;
19 ;;; You should have received a copy of the GNU General Public License
20 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22 (define-module (gnu packages bioconductor)
23 #:use-module ((guix licenses) #:prefix license:)
24 #:use-module (guix packages)
25 #:use-module (guix download)
26 #:use-module (guix git-download)
27 #:use-module (guix build-system r)
28 #:use-module (gnu packages)
29 #:use-module (gnu packages base)
30 #:use-module (gnu packages bioinformatics)
31 #:use-module (gnu packages cran)
32 #:use-module (gnu packages compression)
33 #:use-module (gnu packages gcc)
34 #:use-module (gnu packages graph)
35 #:use-module (gnu packages haskell-xyz)
36 #:use-module (gnu packages image)
37 #:use-module (gnu packages maths)
38 #:use-module (gnu packages netpbm)
39 #:use-module (gnu packages perl)
40 #:use-module (gnu packages pkg-config)
41 #:use-module (gnu packages statistics)
42 #:use-module (gnu packages web)
43 #:use-module (gnu packages xml)
44 #:use-module (srfi srfi-1))
45
46 \f
47 ;;; Annotations
48
49 (define-public r-bsgenome-celegans-ucsc-ce6
50 (package
51 (name "r-bsgenome-celegans-ucsc-ce6")
52 (version "1.4.0")
53 (source (origin
54 (method url-fetch)
55 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
56 version 'annotation))
57 (sha256
58 (base32
59 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
60 (properties
61 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
62 (build-system r-build-system)
63 (propagated-inputs
64 `(("r-bsgenome" ,r-bsgenome)))
65 (home-page
66 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
67 (synopsis "Full genome sequences for Worm")
68 (description
69 "This package provides full genome sequences for Caenorhabditis
70 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
71 objects.")
72 (license license:artistic2.0)))
73
74 (define-public r-bsgenome-celegans-ucsc-ce10
75 (package
76 (name "r-bsgenome-celegans-ucsc-ce10")
77 (version "1.4.0")
78 (source (origin
79 (method url-fetch)
80 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
81 version 'annotation))
82 (sha256
83 (base32
84 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
85 (properties
86 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
87 (build-system r-build-system)
88 (propagated-inputs
89 `(("r-bsgenome" ,r-bsgenome)))
90 (home-page
91 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
92 (synopsis "Full genome sequences for Worm")
93 (description
94 "This package provides full genome sequences for Caenorhabditis
95 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
96 objects.")
97 (license license:artistic2.0)))
98
99 (define-public r-bsgenome-dmelanogaster-ucsc-dm6
100 (package
101 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
102 (version "1.4.1")
103 (source (origin
104 (method url-fetch)
105 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
106 version 'annotation))
107 (sha256
108 (base32
109 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
110 (properties
111 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
112 (build-system r-build-system)
113 (propagated-inputs
114 `(("r-bsgenome" ,r-bsgenome)))
115 (home-page
116 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
117 (synopsis "Full genome sequences for Fly")
118 (description
119 "This package provides full genome sequences for Drosophila
120 melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
121 objects.")
122 (license license:artistic2.0)))
123
124 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
125 (package
126 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
127 (version "1.4.0")
128 (source (origin
129 (method url-fetch)
130 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
131 version 'annotation))
132 (sha256
133 (base32
134 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
135 (properties
136 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
137 (build-system r-build-system)
138 (propagated-inputs
139 `(("r-bsgenome" ,r-bsgenome)))
140 (home-page
141 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
142 (synopsis "Full genome sequences for Fly")
143 (description
144 "This package provides full genome sequences for Drosophila
145 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
146 Biostrings objects.")
147 (license license:artistic2.0)))
148
149 (define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
150 (package
151 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
152 (version "1.3.99")
153 (source (origin
154 (method url-fetch)
155 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
156 version 'annotation))
157 (sha256
158 (base32
159 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
160 (properties
161 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
162 (build-system r-build-system)
163 (propagated-inputs
164 `(("r-bsgenome" ,r-bsgenome)
165 ("r-bsgenome-dmelanogaster-ucsc-dm3"
166 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
167 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
168 (synopsis "Full masked genome sequences for Fly")
169 (description
170 "This package provides full masked genome sequences for Drosophila
171 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
172 Biostrings objects. The sequences are the same as in
173 BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
174 masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
175 intra-contig ambiguities (AMB mask), (3) the mask of repeats from
176 RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
177 Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
178 (license license:artistic2.0)))
179
180 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
181 (package
182 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
183 (version "0.99.1")
184 (source (origin
185 (method url-fetch)
186 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
187 version 'annotation))
188 (sha256
189 (base32
190 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
191 (properties
192 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
193 (build-system r-build-system)
194 (propagated-inputs
195 `(("r-bsgenome" ,r-bsgenome)))
196 (home-page
197 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
198 (synopsis "Full genome sequences for Homo sapiens")
199 (description
200 "This package provides full genome sequences for Homo sapiens from
201 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
202 (license license:artistic2.0)))
203
204 (define-public r-bsgenome-hsapiens-ucsc-hg19-masked
205 (package
206 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
207 (version "1.3.99")
208 (source (origin
209 (method url-fetch)
210 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
211 version 'annotation))
212 (sha256
213 (base32
214 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
215 (properties
216 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
217 (build-system r-build-system)
218 (propagated-inputs
219 `(("r-bsgenome" ,r-bsgenome)
220 ("r-bsgenome-hsapiens-ucsc-hg19"
221 ,r-bsgenome-hsapiens-ucsc-hg19)))
222 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
223 (synopsis "Full masked genome sequences for Homo sapiens")
224 (description
225 "This package provides full genome sequences for Homo sapiens (Human) as
226 provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
227 sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
228 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
229 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
230 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
231 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
232 default.")
233 (license license:artistic2.0)))
234
235 (define-public r-bsgenome-mmusculus-ucsc-mm9
236 (package
237 (name "r-bsgenome-mmusculus-ucsc-mm9")
238 (version "1.4.0")
239 (source (origin
240 (method url-fetch)
241 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
242 version 'annotation))
243 (sha256
244 (base32
245 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
246 (properties
247 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
248 (build-system r-build-system)
249 (propagated-inputs
250 `(("r-bsgenome" ,r-bsgenome)))
251 (home-page
252 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
253 (synopsis "Full genome sequences for Mouse")
254 (description
255 "This package provides full genome sequences for Mus musculus (Mouse) as
256 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
257 (license license:artistic2.0)))
258
259 (define-public r-bsgenome-mmusculus-ucsc-mm9-masked
260 (package
261 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
262 (version "1.3.99")
263 (source (origin
264 (method url-fetch)
265 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
266 version 'annotation))
267 (sha256
268 (base32
269 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
270 (properties
271 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
272 (build-system r-build-system)
273 (propagated-inputs
274 `(("r-bsgenome" ,r-bsgenome)
275 ("r-bsgenome-mmusculus-ucsc-mm9"
276 ,r-bsgenome-mmusculus-ucsc-mm9)))
277 (home-page "http://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
278 (synopsis "Full masked genome sequences for Mouse")
279 (description
280 "This package provides full genome sequences for Mus musculus (Mouse) as
281 provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
282 sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
283 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
284 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
285 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
286 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
287 default." )
288 (license license:artistic2.0)))
289
290 (define-public r-bsgenome-mmusculus-ucsc-mm10
291 (package
292 (name "r-bsgenome-mmusculus-ucsc-mm10")
293 (version "1.4.0")
294 (source (origin
295 (method url-fetch)
296 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
297 version 'annotation))
298 (sha256
299 (base32
300 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
301 (properties
302 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
303 (build-system r-build-system)
304 (propagated-inputs
305 `(("r-bsgenome" ,r-bsgenome)))
306 (home-page
307 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
308 (synopsis "Full genome sequences for Mouse")
309 (description
310 "This package provides full genome sequences for Mus
311 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
312 in Biostrings objects.")
313 (license license:artistic2.0)))
314
315 (define-public r-org-ce-eg-db
316 (package
317 (name "r-org-ce-eg-db")
318 (version "3.7.0")
319 (source (origin
320 (method url-fetch)
321 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
322 (sha256
323 (base32
324 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
325 (properties
326 `((upstream-name . "org.Ce.eg.db")))
327 (build-system r-build-system)
328 (propagated-inputs
329 `(("r-annotationdbi" ,r-annotationdbi)))
330 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
331 (synopsis "Genome wide annotation for Worm")
332 (description
333 "This package provides mappings from Entrez gene identifiers to various
334 annotations for the genome of the model worm Caenorhabditis elegans.")
335 (license license:artistic2.0)))
336
337 (define-public r-org-dm-eg-db
338 (package
339 (name "r-org-dm-eg-db")
340 (version "3.7.0")
341 (source (origin
342 (method url-fetch)
343 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
344 (sha256
345 (base32
346 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
347 (properties
348 `((upstream-name . "org.Dm.eg.db")))
349 (build-system r-build-system)
350 (propagated-inputs
351 `(("r-annotationdbi" ,r-annotationdbi)))
352 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
353 (synopsis "Genome wide annotation for Fly")
354 (description
355 "This package provides mappings from Entrez gene identifiers to various
356 annotations for the genome of the model fruit fly Drosophila melanogaster.")
357 (license license:artistic2.0)))
358
359 (define-public r-org-dr-eg-db
360 (package
361 (name "r-org-dr-eg-db")
362 (version "3.7.0")
363 (source (origin
364 (method url-fetch)
365 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
366 (sha256
367 (base32
368 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
369 (properties
370 `((upstream-name . "org.Dr.eg.db")))
371 (build-system r-build-system)
372 (propagated-inputs
373 `(("r-annotationdbi" ,r-annotationdbi)))
374 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
375 (synopsis "Annotation for Zebrafish")
376 (description
377 "This package provides genome wide annotations for Zebrafish, primarily
378 based on mapping using Entrez Gene identifiers.")
379 (license license:artistic2.0)))
380
381 (define-public r-org-hs-eg-db
382 (package
383 (name "r-org-hs-eg-db")
384 (version "3.7.0")
385 (source (origin
386 (method url-fetch)
387 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
388 (sha256
389 (base32
390 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
391 (properties
392 `((upstream-name . "org.Hs.eg.db")))
393 (build-system r-build-system)
394 (propagated-inputs
395 `(("r-annotationdbi" ,r-annotationdbi)))
396 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
397 (synopsis "Genome wide annotation for Human")
398 (description
399 "This package contains genome-wide annotations for Human, primarily based
400 on mapping using Entrez Gene identifiers.")
401 (license license:artistic2.0)))
402
403 (define-public r-org-mm-eg-db
404 (package
405 (name "r-org-mm-eg-db")
406 (version "3.7.0")
407 (source (origin
408 (method url-fetch)
409 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
410 (sha256
411 (base32
412 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
413 (properties
414 `((upstream-name . "org.Mm.eg.db")))
415 (build-system r-build-system)
416 (propagated-inputs
417 `(("r-annotationdbi" ,r-annotationdbi)))
418 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
419 (synopsis "Genome wide annotation for Mouse")
420 (description
421 "This package provides mappings from Entrez gene identifiers to various
422 annotations for the genome of the model mouse Mus musculus.")
423 (license license:artistic2.0)))
424
425 (define-public r-bsgenome-hsapiens-ucsc-hg19
426 (package
427 (name "r-bsgenome-hsapiens-ucsc-hg19")
428 (version "1.4.0")
429 (source (origin
430 (method url-fetch)
431 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
432 version 'annotation))
433 (sha256
434 (base32
435 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
436 (properties
437 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
438 (build-system r-build-system)
439 (propagated-inputs
440 `(("r-bsgenome" ,r-bsgenome)))
441 (home-page
442 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
443 (synopsis "Full genome sequences for Homo sapiens")
444 (description
445 "This package provides full genome sequences for Homo sapiens as provided
446 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
447 (license license:artistic2.0)))
448
449 (define-public r-ensdb-hsapiens-v75
450 (package
451 (name "r-ensdb-hsapiens-v75")
452 (version "2.99.0")
453 (source
454 (origin
455 (method url-fetch)
456 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
457 (sha256
458 (base32
459 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
460 (properties
461 `((upstream-name . "EnsDb.Hsapiens.v75")))
462 (build-system r-build-system)
463 (propagated-inputs
464 `(("r-ensembldb" ,r-ensembldb)))
465 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
466 (synopsis "Ensembl based annotation package")
467 (description
468 "This package exposes an annotation database generated from Ensembl.")
469 (license license:artistic2.0)))
470
471 (define-public r-genelendatabase
472 (package
473 (name "r-genelendatabase")
474 (version "1.18.0")
475 (source
476 (origin
477 (method url-fetch)
478 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
479 (sha256
480 (base32
481 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
482 (properties
483 `((upstream-name . "geneLenDataBase")))
484 (build-system r-build-system)
485 (propagated-inputs
486 `(("r-rtracklayer" ,r-rtracklayer)
487 ("r-genomicfeatures" ,r-genomicfeatures)))
488 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
489 (synopsis "Lengths of mRNA transcripts for a number of genomes")
490 (description
491 "This package provides the lengths of mRNA transcripts for a number of
492 genomes and gene ID formats, largely based on the UCSC table browser.")
493 (license license:lgpl2.0+)))
494
495 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
496 (package
497 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
498 (version "3.2.2")
499 (source (origin
500 (method url-fetch)
501 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
502 version 'annotation))
503 (sha256
504 (base32
505 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
506 (properties
507 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
508 (build-system r-build-system)
509 (propagated-inputs
510 `(("r-genomicfeatures" ,r-genomicfeatures)))
511 (home-page
512 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
513 (synopsis "Annotation package for human genome in TxDb format")
514 (description
515 "This package provides an annotation database of Homo sapiens genome
516 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
517 track. The database is exposed as a @code{TxDb} object.")
518 (license license:artistic2.0)))
519
520 (define-public r-txdb-hsapiens-ucsc-hg38-knowngene
521 (package
522 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
523 (version "3.4.6")
524 (source (origin
525 (method url-fetch)
526 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
527 version 'annotation))
528 (sha256
529 (base32
530 "12j7rri9r129v9w1yiqadg952dx462dh092sxif3r5kk8l7bxkn9"))))
531 (properties
532 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
533 (build-system r-build-system)
534 (propagated-inputs
535 `(("r-genomicfeatures" ,r-genomicfeatures)))
536 (home-page
537 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
538 (synopsis "Annotation package for human genome in TxDb format")
539 (description
540 "This package provides an annotation database of Homo sapiens genome
541 data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
542 track. The database is exposed as a @code{TxDb} object.")
543 (license license:artistic2.0)))
544
545 (define-public r-txdb-mmusculus-ucsc-mm9-knowngene
546 (package
547 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
548 (version "3.2.2")
549 (source (origin
550 (method url-fetch)
551 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
552 version 'annotation))
553 (sha256
554 (base32
555 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
556 (properties
557 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
558 (build-system r-build-system)
559 (propagated-inputs
560 `(("r-genomicfeatures" ,r-genomicfeatures)
561 ("r-annotationdbi" ,r-annotationdbi)))
562 (home-page
563 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
564 (synopsis "Annotation package for mouse genome in TxDb format")
565 (description
566 "This package provides an annotation database of Mouse genome data. It
567 is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
568 database is exposed as a @code{TxDb} object.")
569 (license license:artistic2.0)))
570
571 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
572 (package
573 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
574 (version "3.4.7")
575 (source (origin
576 (method url-fetch)
577 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
578 version 'annotation))
579 (sha256
580 (base32
581 "04impkl8zh1gpwwrpbf19jqznsjrq2306yyhm6cmx6hr1401bd6b"))))
582 (properties
583 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
584 (build-system r-build-system)
585 (propagated-inputs
586 `(("r-bsgenome" ,r-bsgenome)
587 ("r-genomicfeatures" ,r-genomicfeatures)
588 ("r-annotationdbi" ,r-annotationdbi)))
589 (home-page
590 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
591 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
592 (description
593 "This package loads a TxDb object, which is an R interface to
594 prefabricated databases contained in this package. This package provides
595 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
596 based on the knownGene track.")
597 (license license:artistic2.0)))
598
599 (define-public r-txdb-celegans-ucsc-ce6-ensgene
600 (package
601 (name "r-txdb-celegans-ucsc-ce6-ensgene")
602 (version "3.2.2")
603 (source
604 (origin
605 (method url-fetch)
606 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
607 version 'annotation))
608 (sha256
609 (base32
610 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
611 (properties
612 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
613 (build-system r-build-system)
614 (propagated-inputs
615 `(("r-annotationdbi" ,r-annotationdbi)
616 ("r-genomicfeatures" ,r-genomicfeatures)))
617 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
618 (synopsis "Annotation package for C elegans TxDb objects")
619 (description
620 "This package exposes a C elegans annotation database generated from UCSC
621 by exposing these as TxDb objects.")
622 (license license:artistic2.0)))
623
624 (define-public r-fdb-infiniummethylation-hg19
625 (package
626 (name "r-fdb-infiniummethylation-hg19")
627 (version "2.2.0")
628 (source (origin
629 (method url-fetch)
630 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
631 version 'annotation))
632 (sha256
633 (base32
634 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
635 (properties
636 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
637 (build-system r-build-system)
638 (propagated-inputs
639 `(("r-biostrings" ,r-biostrings)
640 ("r-genomicfeatures" ,r-genomicfeatures)
641 ("r-annotationdbi" ,r-annotationdbi)
642 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
643 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
644 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
645 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
646 (description
647 "This is an annotation package for Illumina Infinium DNA methylation
648 probes. It contains the compiled HumanMethylation27 and HumanMethylation450
649 annotations.")
650 (license license:artistic2.0)))
651
652 (define-public r-illuminahumanmethylationepicmanifest
653 (package
654 (name "r-illuminahumanmethylationepicmanifest")
655 (version "0.3.0")
656 (source (origin
657 (method url-fetch)
658 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
659 version 'annotation))
660 (sha256
661 (base32
662 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
663 (properties
664 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
665 (build-system r-build-system)
666 (propagated-inputs
667 `(("r-minfi" ,r-minfi)))
668 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
669 (synopsis "Manifest for Illumina's EPIC methylation arrays")
670 (description
671 "This is a manifest package for Illumina's EPIC methylation arrays.")
672 (license license:artistic2.0)))
673
674 (define-public r-do-db
675 (package
676 (name "r-do-db")
677 (version "2.9")
678 (source (origin
679 (method url-fetch)
680 (uri (bioconductor-uri "DO.db" version 'annotation))
681 (sha256
682 (base32
683 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
684 (properties
685 `((upstream-name . "DO.db")))
686 (build-system r-build-system)
687 (propagated-inputs
688 `(("r-annotationdbi" ,r-annotationdbi)))
689 (home-page "https://www.bioconductor.org/packages/DO.db/")
690 (synopsis "Annotation maps describing the entire Disease Ontology")
691 (description
692 "This package provides a set of annotation maps describing the entire
693 Disease Ontology.")
694 (license license:artistic2.0)))
695
696 (define-public r-pfam-db
697 (package
698 (name "r-pfam-db")
699 (version "3.8.2")
700 (source
701 (origin
702 (method url-fetch)
703 (uri (bioconductor-uri "PFAM.db" version 'annotation))
704 (sha256
705 (base32
706 "0rn1arzzcniy3yyc4yc44vn40g0cqss37dhwnvsgxpfayqq1k59s"))))
707 (properties `((upstream-name . "PFAM.db")))
708 (build-system r-build-system)
709 (propagated-inputs
710 `(("r-annotationdbi" ,r-annotationdbi)))
711 (home-page "https://bioconductor.org/packages/PFAM.db")
712 (synopsis "Set of protein ID mappings for PFAM")
713 (description
714 "This package provides a set of protein ID mappings for PFAM, assembled
715 using data from public repositories.")
716 (license license:artistic2.0)))
717
718 (define-public r-phastcons100way-ucsc-hg19
719 (package
720 (name "r-phastcons100way-ucsc-hg19")
721 (version "3.7.2")
722 (source
723 (origin
724 (method url-fetch)
725 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
726 version 'annotation))
727 (sha256
728 (base32
729 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
730 (properties
731 `((upstream-name . "phastCons100way.UCSC.hg19")))
732 (build-system r-build-system)
733 (propagated-inputs
734 `(("r-bsgenome" ,r-bsgenome)
735 ("r-genomeinfodb" ,r-genomeinfodb)
736 ("r-genomicranges" ,r-genomicranges)
737 ("r-genomicscores" ,r-genomicscores)
738 ("r-iranges" ,r-iranges)
739 ("r-s4vectors" ,r-s4vectors)))
740 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
741 (synopsis "UCSC phastCons conservation scores for hg19")
742 (description
743 "This package provides UCSC phastCons conservation scores for the human
744 genome (hg19) calculated from multiple alignments with other 99 vertebrate
745 species.")
746 (license license:artistic2.0)))
747
748 \f
749 ;;; Experiment data
750
751 (define-public r-abadata
752 (package
753 (name "r-abadata")
754 (version "1.12.0")
755 (source (origin
756 (method url-fetch)
757 (uri (bioconductor-uri "ABAData" version 'experiment))
758 (sha256
759 (base32
760 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
761 (properties
762 `((upstream-name . "ABAData")))
763 (build-system r-build-system)
764 (propagated-inputs
765 `(("r-annotationdbi" ,r-annotationdbi)))
766 (home-page "https://www.bioconductor.org/packages/ABAData/")
767 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
768 (description
769 "This package provides the data for the gene expression enrichment
770 analysis conducted in the package ABAEnrichment. The package includes three
771 datasets which are derived from the Allen Brain Atlas:
772
773 @enumerate
774 @item Gene expression data from Human Brain (adults) averaged across donors,
775 @item Gene expression data from the Developing Human Brain pooled into five
776 age categories and averaged across donors, and
777 @item a developmental effect score based on the Developing Human Brain
778 expression data.
779 @end enumerate
780
781 All datasets are restricted to protein coding genes.")
782 (license license:gpl2+)))
783
784 (define-public r-arrmdata
785 (package
786 (name "r-arrmdata")
787 (version "1.18.0")
788 (source (origin
789 (method url-fetch)
790 (uri (bioconductor-uri "ARRmData" version 'experiment))
791 (sha256
792 (base32
793 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
794 (properties
795 `((upstream-name . "ARRmData")))
796 (build-system r-build-system)
797 (home-page "https://www.bioconductor.org/packages/ARRmData/")
798 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
799 (description
800 "This package provides raw beta values from 36 samples across 3 groups
801 from Illumina 450k methylation arrays.")
802 (license license:artistic2.0)))
803
804 (define-public r-hsmmsinglecell
805 (package
806 (name "r-hsmmsinglecell")
807 (version "1.2.0")
808 (source (origin
809 (method url-fetch)
810 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
811 (sha256
812 (base32
813 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
814 (properties
815 `((upstream-name . "HSMMSingleCell")))
816 (build-system r-build-system)
817 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
818 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
819 (description
820 "Skeletal myoblasts undergo a well-characterized sequence of
821 morphological and transcriptional changes during differentiation. In this
822 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
823 under high mitogen conditions (GM) and then differentiated by switching to
824 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
825 hundred cells taken over a time-course of serum-induced differentiation.
826 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
827 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
828 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
829 which were then sequenced to a depth of ~4 million reads per library,
830 resulting in a complete gene expression profile for each cell.")
831 (license license:artistic2.0)))
832
833 (define-public r-all
834 (package
835 (name "r-all")
836 (version "1.26.0")
837 (source (origin
838 (method url-fetch)
839 (uri (bioconductor-uri "ALL" version 'experiment))
840 (sha256
841 (base32
842 "1z7kpjw4ndj6fkxwvhqf3gawhrn26ksrlns7j2c78qzxqmjndik9"))))
843 (properties `((upstream-name . "ALL")))
844 (build-system r-build-system)
845 (propagated-inputs
846 `(("r-biobase" ,r-biobase)))
847 (home-page "https://bioconductor.org/packages/ALL")
848 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
849 (description
850 "The data consist of microarrays from 128 different individuals with
851 @dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
852 are available. The data have been normalized (using rma) and it is the
853 jointly normalized data that are available here. The data are presented in
854 the form of an @code{exprSet} object.")
855 (license license:artistic2.0)))
856
857 (define-public r-affydata
858 (package
859 (name "r-affydata")
860 (version "1.32.0")
861 (source
862 (origin
863 (method url-fetch)
864 (uri (bioconductor-uri "affydata" version 'experiment))
865 (sha256
866 (base32
867 "1l9qhmjqgbrdl9cmd74rlnvmvr6mslbmckb83n0211whp2i0b7h5"))))
868 (properties `((upstream-name . "affydata")))
869 (build-system r-build-system)
870 (propagated-inputs
871 `(("r-affy" ,r-affy)))
872 (home-page "https://bioconductor.org/packages/affydata/")
873 (synopsis "Affymetrix data for demonstration purposes")
874 (description
875 "This package provides example datasets that represent 'real world
876 examples' of Affymetrix data, unlike the artificial examples included in the
877 package @code{affy}.")
878 (license license:gpl2+)))
879
880 \f
881 ;;; Packages
882
883 (define-public r-biocversion
884 (package
885 (name "r-biocversion")
886 (version "3.10.1")
887 (source
888 (origin
889 (method url-fetch)
890 (uri (bioconductor-uri "BiocVersion" version))
891 (sha256
892 (base32
893 "0mfqjqfvrwwglldq3g7nbic5hf3nwzv02nbfxnl2cfvf9gznlh5f"))))
894 (properties `((upstream-name . "BiocVersion")))
895 (build-system r-build-system)
896 (home-page "https://bioconductor.org/packages/BiocVersion/")
897 (synopsis "Set the appropriate version of Bioconductor packages")
898 (description
899 "This package provides repository information for the appropriate version
900 of Bioconductor.")
901 (license license:artistic2.0)))
902
903 (define-public r-biocgenerics
904 (package
905 (name "r-biocgenerics")
906 (version "0.32.0")
907 (source (origin
908 (method url-fetch)
909 (uri (bioconductor-uri "BiocGenerics" version))
910 (sha256
911 (base32
912 "1np8y442zyakm4axpinbw1qsgc6wd3zjsnirbhc8lcii4ky9j0rn"))))
913 (properties
914 `((upstream-name . "BiocGenerics")))
915 (build-system r-build-system)
916 (home-page "https://bioconductor.org/packages/BiocGenerics")
917 (synopsis "S4 generic functions for Bioconductor")
918 (description
919 "This package provides S4 generic functions needed by many Bioconductor
920 packages.")
921 (license license:artistic2.0)))
922
923 (define-public r-affycomp
924 (package
925 (name "r-affycomp")
926 (version "1.62.0")
927 (source
928 (origin
929 (method url-fetch)
930 (uri (bioconductor-uri "affycomp" version))
931 (sha256
932 (base32
933 "0cl7c3m2lz2w8g2k7z7wjd0dyj0dkssvms99qpg8a1v3hx1xs6js"))))
934 (properties `((upstream-name . "affycomp")))
935 (build-system r-build-system)
936 (propagated-inputs `(("r-biobase" ,r-biobase)))
937 (home-page "https://bioconductor.org/packages/affycomp/")
938 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
939 (description
940 "The package contains functions that can be used to compare expression
941 measures for Affymetrix Oligonucleotide Arrays.")
942 (license license:gpl2+)))
943
944 (define-public r-affycompatible
945 (package
946 (name "r-affycompatible")
947 (version "1.46.0")
948 (source
949 (origin
950 (method url-fetch)
951 (uri (bioconductor-uri "AffyCompatible" version))
952 (sha256
953 (base32
954 "10ahrdlifp1i7rd58zb10w75y5bnigs7xp5gv4fhb5y7p7dvb0ks"))))
955 (properties
956 `((upstream-name . "AffyCompatible")))
957 (build-system r-build-system)
958 (propagated-inputs
959 `(("r-biostrings" ,r-biostrings)
960 ("r-rcurl" ,r-rcurl)
961 ("r-xml" ,r-xml)))
962 (home-page "https://bioconductor.org/packages/AffyCompatible/")
963 (synopsis "Work with Affymetrix GeneChip files")
964 (description
965 "This package provides an interface to Affymetrix chip annotation and
966 sample attribute files. The package allows an easy way for users to download
967 and manage local data bases of Affynmetrix NetAffx annotation files. It also
968 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
969 Command Console} (AGCC)-compatible sample annotation files.")
970 (license license:artistic2.0)))
971
972 (define-public r-affycontam
973 (package
974 (name "r-affycontam")
975 (version "1.44.0")
976 (source
977 (origin
978 (method url-fetch)
979 (uri (bioconductor-uri "affyContam" version))
980 (sha256
981 (base32
982 "0yd1prgv5zfkg22ski73mvg96qknwz8v6ji6s4qy8p4wrqyj7b7l"))))
983 (properties `((upstream-name . "affyContam")))
984 (build-system r-build-system)
985 (propagated-inputs
986 `(("r-affy" ,r-affy)
987 ("r-affydata" ,r-affydata)
988 ("r-biobase" ,r-biobase)))
989 (home-page "https://bioconductor.org/packages/affyContam/")
990 (synopsis "Structured corruption of Affymetrix CEL file data")
991 (description
992 "Microarray quality assessment is a major concern of microarray analysts.
993 This package provides some simple approaches to in silico creation of quality
994 problems in CEL-level data to help evaluate performance of quality metrics.")
995 (license license:artistic2.0)))
996
997 (define-public r-affycoretools
998 (package
999 (name "r-affycoretools")
1000 (version "1.58.2")
1001 (source
1002 (origin
1003 (method url-fetch)
1004 (uri (bioconductor-uri "affycoretools" version))
1005 (sha256
1006 (base32
1007 "0cgy9phwdk4x9lr11xh6zs7v8r5xq959fmsmzwrpnd50dr7hzkvd"))))
1008 (properties `((upstream-name . "affycoretools")))
1009 (build-system r-build-system)
1010 (propagated-inputs
1011 `(("r-affy" ,r-affy)
1012 ("r-annotationdbi" ,r-annotationdbi)
1013 ("r-biobase" ,r-biobase)
1014 ("r-biocgenerics" ,r-biocgenerics)
1015 ("r-dbi" ,r-dbi)
1016 ("r-edger" ,r-edger)
1017 ("r-gcrma" ,r-gcrma)
1018 ("r-ggplot2" ,r-ggplot2)
1019 ("r-gostats" ,r-gostats)
1020 ("r-gplots" ,r-gplots)
1021 ("r-hwriter" ,r-hwriter)
1022 ("r-lattice" ,r-lattice)
1023 ("r-limma" ,r-limma)
1024 ("r-oligoclasses" ,r-oligoclasses)
1025 ("r-reportingtools" ,r-reportingtools)
1026 ("r-rsqlite" ,r-rsqlite)
1027 ("r-s4vectors" ,r-s4vectors)
1028 ("r-xtable" ,r-xtable)))
1029 (home-page "https://bioconductor.org/packages/affycoretools/")
1030 (synopsis "Functions for analyses with Affymetrix GeneChips")
1031 (description
1032 "This package provides various wrapper functions that have been written
1033 to streamline the more common analyses that a Biostatistician might see.")
1034 (license license:artistic2.0)))
1035
1036 (define-public r-affxparser
1037 (package
1038 (name "r-affxparser")
1039 (version "1.58.0")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (bioconductor-uri "affxparser" version))
1044 (sha256
1045 (base32
1046 "03h4lxr48p84f6i7zb2rm10ma3k4d1nmvdw5yhxcmzqbmd12lk40"))))
1047 (properties `((upstream-name . "affxparser")))
1048 (build-system r-build-system)
1049 (home-page "https://github.com/HenrikBengtsson/affxparser")
1050 (synopsis "Affymetrix File Parsing SDK")
1051 (description
1052 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
1053 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
1054 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
1055 are supported. Currently, there are methods for reading @dfn{chip definition
1056 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
1057 either in full or in part. For example, probe signals from a few probesets
1058 can be extracted very quickly from a set of CEL files into a convenient list
1059 structure.")
1060 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
1061 ;; under LGPLv2+.
1062 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
1063
1064 (define-public r-annotate
1065 (package
1066 (name "r-annotate")
1067 (version "1.64.0")
1068 (source
1069 (origin
1070 (method url-fetch)
1071 (uri (bioconductor-uri "annotate" version))
1072 (sha256
1073 (base32
1074 "0rcmdy6hs6m4d6wxgi52c0bhdsbf2sm9f155qbcb05sn0nh8pxwy"))))
1075 (build-system r-build-system)
1076 (propagated-inputs
1077 `(("r-annotationdbi" ,r-annotationdbi)
1078 ("r-biobase" ,r-biobase)
1079 ("r-biocgenerics" ,r-biocgenerics)
1080 ("r-dbi" ,r-dbi)
1081 ("r-rcurl" ,r-rcurl)
1082 ("r-xml" ,r-xml)
1083 ("r-xtable" ,r-xtable)))
1084 (home-page
1085 "https://bioconductor.org/packages/annotate")
1086 (synopsis "Annotation for microarrays")
1087 (description "This package provides R environments for the annotation of
1088 microarrays.")
1089 (license license:artistic2.0)))
1090
1091 (define-public r-hpar
1092 (package
1093 (name "r-hpar")
1094 (version "1.28.0")
1095 (source
1096 (origin
1097 (method url-fetch)
1098 (uri (bioconductor-uri "hpar" version))
1099 (sha256
1100 (base32
1101 "1yhay1ryrgj9cqa1x136cw40ca93afyvg0sarm30jsbj8nc1rm5m"))))
1102 (build-system r-build-system)
1103 (home-page "https://bioconductor.org/packages/hpar/")
1104 (synopsis "Human Protein Atlas in R")
1105 (description "This package provides a simple interface to and data from
1106 the Human Protein Atlas project.")
1107 (license license:artistic2.0)))
1108
1109 (define-public r-regioner
1110 (package
1111 (name "r-regioner")
1112 (version "1.18.0")
1113 (source
1114 (origin
1115 (method url-fetch)
1116 (uri (bioconductor-uri "regioneR" version))
1117 (sha256
1118 (base32
1119 "0m073hrqp62zpd2blnqm5ka539hcilir05m8av14vdhzhjzp13ya"))))
1120 (properties `((upstream-name . "regioneR")))
1121 (build-system r-build-system)
1122 (propagated-inputs
1123 `(("r-biostrings" ,r-biostrings)
1124 ("r-bsgenome" ,r-bsgenome)
1125 ("r-genomeinfodb" ,r-genomeinfodb)
1126 ("r-genomicranges" ,r-genomicranges)
1127 ("r-iranges" ,r-iranges)
1128 ("r-memoise" ,r-memoise)
1129 ("r-rtracklayer" ,r-rtracklayer)
1130 ("r-s4vectors" ,r-s4vectors)))
1131 (home-page "https://bioconductor.org/packages/regioneR/")
1132 (synopsis "Association analysis of genomic regions")
1133 (description "This package offers a statistical framework based on
1134 customizable permutation tests to assess the association between genomic
1135 region sets and other genomic features.")
1136 (license license:artistic2.0)))
1137
1138 (define-public r-reportingtools
1139 (package
1140 (name "r-reportingtools")
1141 (version "2.26.0")
1142 (source
1143 (origin
1144 (method url-fetch)
1145 (uri (bioconductor-uri "ReportingTools" version))
1146 (sha256
1147 (base32
1148 "0wmi2219wydyzc07rz3azsrksa7wiacfh9pr5x2fsmj9f0w3n15w"))))
1149 (properties
1150 `((upstream-name . "ReportingTools")))
1151 (build-system r-build-system)
1152 (propagated-inputs
1153 `(("r-annotate" ,r-annotate)
1154 ("r-annotationdbi" ,r-annotationdbi)
1155 ("r-biobase" ,r-biobase)
1156 ("r-biocgenerics" ,r-biocgenerics)
1157 ("r-category" ,r-category)
1158 ("r-deseq2" ,r-deseq2)
1159 ("r-edger" ,r-edger)
1160 ("r-ggbio" ,r-ggbio)
1161 ("r-ggplot2" ,r-ggplot2)
1162 ("r-gostats" ,r-gostats)
1163 ("r-gseabase" ,r-gseabase)
1164 ("r-hwriter" ,r-hwriter)
1165 ("r-iranges" ,r-iranges)
1166 ("r-knitr" ,r-knitr)
1167 ("r-lattice" ,r-lattice)
1168 ("r-limma" ,r-limma)
1169 ("r-pfam-db" ,r-pfam-db)
1170 ("r-r-utils" ,r-r-utils)
1171 ("r-xml" ,r-xml)))
1172 (home-page "https://bioconductor.org/packages/ReportingTools/")
1173 (synopsis "Tools for making reports in various formats")
1174 (description
1175 "The ReportingTools package enables users to easily display reports of
1176 analysis results generated from sources such as microarray and sequencing
1177 data. The package allows users to create HTML pages that may be viewed on a
1178 web browser, or in other formats. Users can generate tables with sortable and
1179 filterable columns, make and display plots, and link table entries to other
1180 data sources such as NCBI or larger plots within the HTML page. Using the
1181 package, users can also produce a table of contents page to link various
1182 reports together for a particular project that can be viewed in a web
1183 browser.")
1184 (license license:artistic2.0)))
1185
1186 (define-public r-geneplotter
1187 (package
1188 (name "r-geneplotter")
1189 (version "1.64.0")
1190 (source
1191 (origin
1192 (method url-fetch)
1193 (uri (bioconductor-uri "geneplotter" version))
1194 (sha256
1195 (base32
1196 "1k6780fn1kkghpm1prhhsyw621441a3bmnqfl9ns0zbc1zdq39nx"))))
1197 (build-system r-build-system)
1198 (propagated-inputs
1199 `(("r-annotate" ,r-annotate)
1200 ("r-annotationdbi" ,r-annotationdbi)
1201 ("r-biobase" ,r-biobase)
1202 ("r-biocgenerics" ,r-biocgenerics)
1203 ("r-lattice" ,r-lattice)
1204 ("r-rcolorbrewer" ,r-rcolorbrewer)))
1205 (home-page "https://bioconductor.org/packages/geneplotter")
1206 (synopsis "Graphics functions for genomic data")
1207 (description
1208 "This package provides functions for plotting genomic data.")
1209 (license license:artistic2.0)))
1210
1211 (define-public r-oligoclasses
1212 (package
1213 (name "r-oligoclasses")
1214 (version "1.48.0")
1215 (source
1216 (origin
1217 (method url-fetch)
1218 (uri (bioconductor-uri "oligoClasses" version))
1219 (sha256
1220 (base32
1221 "02m1m3dkiyywalphw3i5n6y3bs8zp24xh59v9cz6jgjpah811skf"))))
1222 (properties `((upstream-name . "oligoClasses")))
1223 (build-system r-build-system)
1224 (propagated-inputs
1225 `(("r-affyio" ,r-affyio)
1226 ("r-biobase" ,r-biobase)
1227 ("r-biocgenerics" ,r-biocgenerics)
1228 ("r-biocmanager" ,r-biocmanager)
1229 ("r-biostrings" ,r-biostrings)
1230 ("r-dbi" ,r-dbi)
1231 ("r-ff" ,r-ff)
1232 ("r-foreach" ,r-foreach)
1233 ("r-genomicranges" ,r-genomicranges)
1234 ("r-iranges" ,r-iranges)
1235 ("r-rsqlite" ,r-rsqlite)
1236 ("r-s4vectors" ,r-s4vectors)
1237 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1238 (home-page "https://bioconductor.org/packages/oligoClasses/")
1239 (synopsis "Classes for high-throughput arrays")
1240 (description
1241 "This package contains class definitions, validity checks, and
1242 initialization methods for classes used by the @code{oligo} and @code{crlmm}
1243 packages.")
1244 (license license:gpl2+)))
1245
1246 (define-public r-oligo
1247 (package
1248 (name "r-oligo")
1249 (version "1.50.0")
1250 (source
1251 (origin
1252 (method url-fetch)
1253 (uri (bioconductor-uri "oligo" version))
1254 (sha256
1255 (base32
1256 "01icfyy82f9k0m7ngrppz1ckq3wpq7zp6kgf8ppc55j6582c5jh3"))))
1257 (properties `((upstream-name . "oligo")))
1258 (build-system r-build-system)
1259 (inputs `(("zlib" ,zlib)))
1260 (propagated-inputs
1261 `(("r-affxparser" ,r-affxparser)
1262 ("r-affyio" ,r-affyio)
1263 ("r-biobase" ,r-biobase)
1264 ("r-biocgenerics" ,r-biocgenerics)
1265 ("r-biostrings" ,r-biostrings)
1266 ("r-dbi" ,r-dbi)
1267 ("r-ff" ,r-ff)
1268 ("r-oligoclasses" ,r-oligoclasses)
1269 ("r-preprocesscore" ,r-preprocesscore)
1270 ("r-rsqlite" ,r-rsqlite)
1271 ("r-zlibbioc" ,r-zlibbioc)))
1272 (home-page "https://bioconductor.org/packages/oligo/")
1273 (synopsis "Preprocessing tools for oligonucleotide arrays")
1274 (description
1275 "This package provides a package to analyze oligonucleotide
1276 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
1277 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
1278 (license license:lgpl2.0+)))
1279
1280 (define-public r-qvalue
1281 (package
1282 (name "r-qvalue")
1283 (version "2.18.0")
1284 (source
1285 (origin
1286 (method url-fetch)
1287 (uri (bioconductor-uri "qvalue" version))
1288 (sha256
1289 (base32
1290 "0njnidyncm3g3712mnp77cs4kghn596ss1pz6fhp1cr0wxcayp6j"))))
1291 (build-system r-build-system)
1292 (propagated-inputs
1293 `(("r-ggplot2" ,r-ggplot2)
1294 ("r-reshape2" ,r-reshape2)))
1295 (home-page "http://github.com/jdstorey/qvalue")
1296 (synopsis "Q-value estimation for false discovery rate control")
1297 (description
1298 "This package takes a list of p-values resulting from the simultaneous
1299 testing of many hypotheses and estimates their q-values and local @dfn{false
1300 discovery rate} (FDR) values. The q-value of a test measures the proportion
1301 of false positives incurred when that particular test is called significant.
1302 The local FDR measures the posterior probability the null hypothesis is true
1303 given the test's p-value. Various plots are automatically generated, allowing
1304 one to make sensible significance cut-offs. The software can be applied to
1305 problems in genomics, brain imaging, astrophysics, and data mining.")
1306 ;; Any version of the LGPL.
1307 (license license:lgpl3+)))
1308
1309 (define-public r-diffbind
1310 (package
1311 (name "r-diffbind")
1312 (version "2.14.0")
1313 (source
1314 (origin
1315 (method url-fetch)
1316 (uri (bioconductor-uri "DiffBind" version))
1317 (sha256
1318 (base32
1319 "1729wyi2l4480yrkp5wg3ryirrmlk0j3njqs1qyckq3c8bjk12h2"))))
1320 (properties `((upstream-name . "DiffBind")))
1321 (build-system r-build-system)
1322 (inputs
1323 `(("zlib" ,zlib)))
1324 (propagated-inputs
1325 `(("r-amap" ,r-amap)
1326 ("r-biocparallel" ,r-biocparallel)
1327 ("r-deseq2" ,r-deseq2)
1328 ("r-dplyr" ,r-dplyr)
1329 ("r-edger" ,r-edger)
1330 ("r-genomicalignments" ,r-genomicalignments)
1331 ("r-genomicranges" ,r-genomicranges)
1332 ("r-ggplot2" ,r-ggplot2)
1333 ("r-ggrepel" ,r-ggrepel)
1334 ("r-gplots" ,r-gplots)
1335 ("r-iranges" ,r-iranges)
1336 ("r-lattice" ,r-lattice)
1337 ("r-limma" ,r-limma)
1338 ("r-locfit" ,r-locfit)
1339 ("r-rcolorbrewer" , r-rcolorbrewer)
1340 ("r-rcpp" ,r-rcpp)
1341 ("r-rhtslib" ,r-rhtslib)
1342 ("r-rsamtools" ,r-rsamtools)
1343 ("r-s4vectors" ,r-s4vectors)
1344 ("r-summarizedexperiment" ,r-summarizedexperiment)
1345 ("r-systempiper" ,r-systempiper)))
1346 (home-page "http://bioconductor.org/packages/DiffBind")
1347 (synopsis "Differential binding analysis of ChIP-Seq peak data")
1348 (description
1349 "This package computes differentially bound sites from multiple
1350 ChIP-seq experiments using affinity (quantitative) data. Also enables
1351 occupancy (overlap) analysis and plotting functions.")
1352 (license license:artistic2.0)))
1353
1354 (define-public r-ripseeker
1355 (package
1356 (name "r-ripseeker")
1357 (version "1.26.0")
1358 (source
1359 (origin
1360 (method url-fetch)
1361 (uri (bioconductor-uri "RIPSeeker" version))
1362 (sha256
1363 (base32
1364 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
1365 (properties `((upstream-name . "RIPSeeker")))
1366 (build-system r-build-system)
1367 (propagated-inputs
1368 `(("r-s4vectors" ,r-s4vectors)
1369 ("r-iranges" ,r-iranges)
1370 ("r-genomicranges" ,r-genomicranges)
1371 ("r-summarizedexperiment" ,r-summarizedexperiment)
1372 ("r-rsamtools" ,r-rsamtools)
1373 ("r-genomicalignments" ,r-genomicalignments)
1374 ("r-rtracklayer" ,r-rtracklayer)))
1375 (home-page "http://bioconductor.org/packages/RIPSeeker")
1376 (synopsis
1377 "Identifying protein-associated transcripts from RIP-seq experiments")
1378 (description
1379 "This package infers and discriminates RIP peaks from RIP-seq alignments
1380 using two-state HMM with negative binomial emission probability. While
1381 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
1382 a suite of bioinformatics tools integrated within this self-contained software
1383 package comprehensively addressing issues ranging from post-alignments
1384 processing to visualization and annotation.")
1385 (license license:gpl2)))
1386
1387 (define-public r-multtest
1388 (package
1389 (name "r-multtest")
1390 (version "2.42.0")
1391 (source
1392 (origin
1393 (method url-fetch)
1394 (uri (bioconductor-uri "multtest" version))
1395 (sha256
1396 (base32
1397 "0qna9lx76ldsfy8qf5xmhl4ymqfkj29m1gdqhph06s470c8mwari"))))
1398 (build-system r-build-system)
1399 (propagated-inputs
1400 `(("r-survival" ,r-survival)
1401 ("r-biocgenerics" ,r-biocgenerics)
1402 ("r-biobase" ,r-biobase)
1403 ("r-mass" ,r-mass)))
1404 (home-page "http://bioconductor.org/packages/multtest")
1405 (synopsis "Resampling-based multiple hypothesis testing")
1406 (description
1407 "This package can do non-parametric bootstrap and permutation
1408 resampling-based multiple testing procedures (including empirical Bayes
1409 methods) for controlling the family-wise error rate (FWER), generalized
1410 family-wise error rate (gFWER), tail probability of the proportion of
1411 false positives (TPPFP), and false discovery rate (FDR). Several choices
1412 of bootstrap-based null distribution are implemented (centered, centered
1413 and scaled, quantile-transformed). Single-step and step-wise methods are
1414 available. Tests based on a variety of T- and F-statistics (including
1415 T-statistics based on regression parameters from linear and survival models
1416 as well as those based on correlation parameters) are included. When probing
1417 hypotheses with T-statistics, users may also select a potentially faster null
1418 distribution which is multivariate normal with mean zero and variance
1419 covariance matrix derived from the vector influence function. Results are
1420 reported in terms of adjusted P-values, confidence regions and test statistic
1421 cutoffs. The procedures are directly applicable to identifying differentially
1422 expressed genes in DNA microarray experiments.")
1423 (license license:lgpl3)))
1424
1425 (define-public r-graph
1426 (package
1427 (name "r-graph")
1428 (version "1.64.0")
1429 (source (origin
1430 (method url-fetch)
1431 (uri (bioconductor-uri "graph" version))
1432 (sha256
1433 (base32
1434 "1ivf59k7k552m7zd8g3wwazd71dq3xmgmhcq435738i02h0fqnyc"))))
1435 (build-system r-build-system)
1436 (propagated-inputs
1437 `(("r-biocgenerics" ,r-biocgenerics)))
1438 (home-page "https://bioconductor.org/packages/graph")
1439 (synopsis "Handle graph data structures in R")
1440 (description
1441 "This package implements some simple graph handling capabilities for R.")
1442 (license license:artistic2.0)))
1443
1444 (define-public r-codedepends
1445 (package
1446 (name "r-codedepends")
1447 (version "0.6.5")
1448 (source
1449 (origin
1450 (method url-fetch)
1451 (uri (cran-uri "CodeDepends" version))
1452 (sha256
1453 (base32
1454 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
1455 (properties `((upstream-name . "CodeDepends")))
1456 (build-system r-build-system)
1457 (propagated-inputs
1458 `(("r-codetools" ,r-codetools)
1459 ("r-graph" ,r-graph)
1460 ("r-xml" ,r-xml)))
1461 (home-page "http://cran.r-project.org/web/packages/CodeDepends")
1462 (synopsis "Analysis of R code for reproducible research and code comprehension")
1463 (description
1464 "This package provides tools for analyzing R expressions or blocks of
1465 code and determining the dependencies between them. It focuses on R scripts,
1466 but can be used on the bodies of functions. There are many facilities
1467 including the ability to summarize or get a high-level view of code,
1468 determining dependencies between variables, code improvement suggestions.")
1469 ;; Any version of the GPL
1470 (license (list license:gpl2+ license:gpl3+))))
1471
1472 (define-public r-chippeakanno
1473 (package
1474 (name "r-chippeakanno")
1475 (version "3.20.0")
1476 (source
1477 (origin
1478 (method url-fetch)
1479 (uri (bioconductor-uri "ChIPpeakAnno" version))
1480 (sha256
1481 (base32
1482 "0hp3s3shnrb55cxvx9wrdl67wqw9f55gdgx7262s4mahpxjswfsa"))))
1483 (properties `((upstream-name . "ChIPpeakAnno")))
1484 (build-system r-build-system)
1485 (propagated-inputs
1486 `(("r-annotationdbi" ,r-annotationdbi)
1487 ("r-biobase" ,r-biobase)
1488 ("r-biocgenerics" ,r-biocgenerics)
1489 ("r-biocmanager" ,r-biocmanager)
1490 ("r-biomart" ,r-biomart)
1491 ("r-biostrings" ,r-biostrings)
1492 ("r-bsgenome" ,r-bsgenome)
1493 ("r-dbi" ,r-dbi)
1494 ("r-delayedarray" ,r-delayedarray)
1495 ("r-ensembldb" ,r-ensembldb)
1496 ("r-genomeinfodb" ,r-genomeinfodb)
1497 ("r-genomicalignments" ,r-genomicalignments)
1498 ("r-genomicfeatures" ,r-genomicfeatures)
1499 ("r-genomicranges" ,r-genomicranges)
1500 ("r-go-db" ,r-go-db)
1501 ("r-graph" ,r-graph)
1502 ("r-idr" ,r-idr)
1503 ("r-iranges" ,r-iranges)
1504 ("r-limma" ,r-limma)
1505 ("r-matrixstats" ,r-matrixstats)
1506 ("r-multtest" ,r-multtest)
1507 ("r-rbgl" ,r-rbgl)
1508 ("r-regioner" ,r-regioner)
1509 ("r-rsamtools" ,r-rsamtools)
1510 ("r-rtracklayer" ,r-rtracklayer)
1511 ("r-s4vectors" ,r-s4vectors)
1512 ("r-seqinr" ,r-seqinr)
1513 ("r-summarizedexperiment" ,r-summarizedexperiment)
1514 ("r-venndiagram" ,r-venndiagram)))
1515 (home-page "http://bioconductor.org/packages/ChIPpeakAnno")
1516 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
1517 (description
1518 "The package includes functions to retrieve the sequences around the peak,
1519 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
1520 custom features such as most conserved elements and other transcription factor
1521 binding sites supplied by users. Starting 2.0.5, new functions have been added
1522 for finding the peaks with bi-directional promoters with summary statistics
1523 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
1524 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
1525 enrichedGO (addGeneIDs).")
1526 (license license:gpl2+)))
1527
1528 (define-public r-marray
1529 (package
1530 (name "r-marray")
1531 (version "1.64.0")
1532 (source (origin
1533 (method url-fetch)
1534 (uri (bioconductor-uri "marray" version))
1535 (sha256
1536 (base32 "1mbs9rk279hnm9yz34za3xz3hb88ll1d0abw4m2pgjgbh4kkhdrl"))))
1537 (build-system r-build-system)
1538 (propagated-inputs
1539 `(("r-limma" ,r-limma)))
1540 (home-page "http://bioconductor.org/packages/marray")
1541 (synopsis "Exploratory analysis for two-color spotted microarray data")
1542 (description "This package contains class definitions for two-color spotted
1543 microarray data. It also includes functions for data input, diagnostic plots,
1544 normalization and quality checking.")
1545 (license license:lgpl2.0+)))
1546
1547 (define-public r-cghbase
1548 (package
1549 (name "r-cghbase")
1550 (version "1.46.0")
1551 (source (origin
1552 (method url-fetch)
1553 (uri (bioconductor-uri "CGHbase" version))
1554 (sha256
1555 (base32 "0136pk6pfwpiiy9vca4pgg4wh74jfb5ssglpdszzhamljpvg765x"))))
1556 (properties `((upstream-name . "CGHbase")))
1557 (build-system r-build-system)
1558 (propagated-inputs
1559 `(("r-biobase" ,r-biobase)
1560 ("r-marray" ,r-marray)))
1561 (home-page "http://bioconductor.org/packages/CGHbase")
1562 (synopsis "Base functions and classes for arrayCGH data analysis")
1563 (description "This package contains functions and classes that are needed by
1564 the @code{arrayCGH} packages.")
1565 (license license:gpl2+)))
1566
1567 (define-public r-cghcall
1568 (package
1569 (name "r-cghcall")
1570 (version "2.48.0")
1571 (source (origin
1572 (method url-fetch)
1573 (uri (bioconductor-uri "CGHcall" version))
1574 (sha256
1575 (base32 "1x8pz7zhw2nabik1vgdhlivndqvil3s7vnl5070k493v6gza0p3s"))))
1576 (properties `((upstream-name . "CGHcall")))
1577 (build-system r-build-system)
1578 (propagated-inputs
1579 `(("r-biobase" ,r-biobase)
1580 ("r-cghbase" ,r-cghbase)
1581 ("r-impute" ,r-impute)
1582 ("r-dnacopy" ,r-dnacopy)
1583 ("r-snowfall" ,r-snowfall)))
1584 (home-page "http://bioconductor.org/packages/CGHcall")
1585 (synopsis "Base functions and classes for arrayCGH data analysis")
1586 (description "This package contains functions and classes that are needed by
1587 @code{arrayCGH} packages.")
1588 (license license:gpl2+)))
1589
1590 (define-public r-qdnaseq
1591 (package
1592 (name "r-qdnaseq")
1593 (version "1.22.0")
1594 (source (origin
1595 (method url-fetch)
1596 (uri (bioconductor-uri "QDNAseq" version))
1597 (sha256
1598 (base32 "0xcqdpv9a47zpxx0q9sif5y4s1yzx3pig0kywy961kh5xgl5bcrq"))))
1599 (properties `((upstream-name . "QDNAseq")))
1600 (build-system r-build-system)
1601 (propagated-inputs
1602 `(("r-biobase" ,r-biobase)
1603 ("r-cghbase" ,r-cghbase)
1604 ("r-cghcall" ,r-cghcall)
1605 ("r-dnacopy" ,r-dnacopy)
1606 ("r-future" ,r-future)
1607 ("r-future-apply" ,r-future-apply)
1608 ("r-genomicranges" ,r-genomicranges)
1609 ("r-iranges" ,r-iranges)
1610 ("r-matrixstats" ,r-matrixstats)
1611 ("r-r-utils" ,r-r-utils)
1612 ("r-rsamtools" ,r-rsamtools)))
1613 (home-page "http://bioconductor.org/packages/QDNAseq")
1614 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
1615 (description "The genome is divided into non-overlapping fixed-sized bins,
1616 number of sequence reads in each counted, adjusted with a simultaneous
1617 two-dimensional loess correction for sequence mappability and GC content, and
1618 filtered to remove spurious regions in the genome. Downstream steps of
1619 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
1620 respectively.")
1621 (license license:gpl2+)))
1622
1623 (define-public r-bayseq
1624 (package
1625 (name "r-bayseq")
1626 (version "2.20.0")
1627 (source
1628 (origin
1629 (method url-fetch)
1630 (uri (bioconductor-uri "baySeq" version))
1631 (sha256
1632 (base32
1633 "040s1d3756spyzblkyx2vcy7bn3vf87mhsp3is35yxkj55n3myjk"))))
1634 (properties `((upstream-name . "baySeq")))
1635 (build-system r-build-system)
1636 (propagated-inputs
1637 `(("r-abind" ,r-abind)
1638 ("r-edger" ,r-edger)
1639 ("r-genomicranges" ,r-genomicranges)))
1640 (home-page "https://bioconductor.org/packages/baySeq/")
1641 (synopsis "Bayesian analysis of differential expression patterns in count data")
1642 (description
1643 "This package identifies differential expression in high-throughput count
1644 data, such as that derived from next-generation sequencing machines,
1645 calculating estimated posterior likelihoods of differential expression (or
1646 more complex hypotheses) via empirical Bayesian methods.")
1647 (license license:gpl3)))
1648
1649 (define-public r-chipcomp
1650 (package
1651 (name "r-chipcomp")
1652 (version "1.16.0")
1653 (source
1654 (origin
1655 (method url-fetch)
1656 (uri (bioconductor-uri "ChIPComp" version))
1657 (sha256
1658 (base32
1659 "0wk0vvg6dk9wk60lzbadrnqar75dppvyr4hiwrhv9rhhah2mg2mg"))))
1660 (properties `((upstream-name . "ChIPComp")))
1661 (build-system r-build-system)
1662 (propagated-inputs
1663 `(("r-biocgenerics" ,r-biocgenerics)
1664 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1665 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
1666 ("r-genomeinfodb" ,r-genomeinfodb)
1667 ("r-genomicranges" ,r-genomicranges)
1668 ("r-iranges" ,r-iranges)
1669 ("r-limma" ,r-limma)
1670 ("r-rsamtools" ,r-rsamtools)
1671 ("r-rtracklayer" ,r-rtracklayer)
1672 ("r-s4vectors" ,r-s4vectors)))
1673 (home-page "https://bioconductor.org/packages/ChIPComp")
1674 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
1675 (description
1676 "ChIPComp implements a statistical method for quantitative comparison of
1677 multiple ChIP-seq datasets. It detects differentially bound sharp binding
1678 sites across multiple conditions considering matching control in ChIP-seq
1679 datasets.")
1680 ;; Any version of the GPL.
1681 (license license:gpl3+)))
1682
1683 (define-public r-riboprofiling
1684 (package
1685 (name "r-riboprofiling")
1686 (version "1.16.0")
1687 (source
1688 (origin
1689 (method url-fetch)
1690 (uri (bioconductor-uri "RiboProfiling" version))
1691 (sha256
1692 (base32
1693 "0nfzyiq7cd6fs5agzl1zyfg8s631wi7kjngiyvd3vxlhi8wsjicx"))))
1694 (properties `((upstream-name . "RiboProfiling")))
1695 (build-system r-build-system)
1696 (propagated-inputs
1697 `(("r-biocgenerics" ,r-biocgenerics)
1698 ("r-biostrings" ,r-biostrings)
1699 ("r-data-table" ,r-data-table)
1700 ("r-genomeinfodb" ,r-genomeinfodb)
1701 ("r-genomicalignments" ,r-genomicalignments)
1702 ("r-genomicfeatures" ,r-genomicfeatures)
1703 ("r-genomicranges" ,r-genomicranges)
1704 ("r-ggbio" ,r-ggbio)
1705 ("r-ggplot2" ,r-ggplot2)
1706 ("r-iranges" ,r-iranges)
1707 ("r-plyr" ,r-plyr)
1708 ("r-reshape2" ,r-reshape2)
1709 ("r-rsamtools" ,r-rsamtools)
1710 ("r-rtracklayer" ,r-rtracklayer)
1711 ("r-s4vectors" ,r-s4vectors)
1712 ("r-sqldf" ,r-sqldf)))
1713 (home-page "https://bioconductor.org/packages/RiboProfiling/")
1714 (synopsis "Ribosome profiling data analysis")
1715 (description "Starting with a BAM file, this package provides the
1716 necessary functions for quality assessment, read start position recalibration,
1717 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
1718 of count data: pairs, log fold-change, codon frequency and coverage
1719 assessment, principal component analysis on codon coverage.")
1720 (license license:gpl3)))
1721
1722 (define-public r-riboseqr
1723 (package
1724 (name "r-riboseqr")
1725 (version "1.20.0")
1726 (source
1727 (origin
1728 (method url-fetch)
1729 (uri (bioconductor-uri "riboSeqR" version))
1730 (sha256
1731 (base32
1732 "1jr7h64hyhyf9gf15lah6iqwyljfc8mraf9kya4lql6lcjjkjiqm"))))
1733 (properties `((upstream-name . "riboSeqR")))
1734 (build-system r-build-system)
1735 (propagated-inputs
1736 `(("r-abind" ,r-abind)
1737 ("r-bayseq" ,r-bayseq)
1738 ("r-genomeinfodb" ,r-genomeinfodb)
1739 ("r-genomicranges" ,r-genomicranges)
1740 ("r-iranges" ,r-iranges)
1741 ("r-rsamtools" ,r-rsamtools)
1742 ("r-seqlogo" ,r-seqlogo)))
1743 (home-page "https://bioconductor.org/packages/riboSeqR/")
1744 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
1745 (description
1746 "This package provides plotting functions, frameshift detection and
1747 parsing of genetic sequencing data from ribosome profiling experiments.")
1748 (license license:gpl3)))
1749
1750 (define-public r-interactionset
1751 (package
1752 (name "r-interactionset")
1753 (version "1.14.0")
1754 (source
1755 (origin
1756 (method url-fetch)
1757 (uri (bioconductor-uri "InteractionSet" version))
1758 (sha256
1759 (base32
1760 "0n2l95h56x5g68p10cap8p4x3a6vaph2hjlk09vmi3j48lrzb2kh"))))
1761 (properties
1762 `((upstream-name . "InteractionSet")))
1763 (build-system r-build-system)
1764 (propagated-inputs
1765 `(("r-biocgenerics" ,r-biocgenerics)
1766 ("r-genomeinfodb" ,r-genomeinfodb)
1767 ("r-genomicranges" ,r-genomicranges)
1768 ("r-iranges" ,r-iranges)
1769 ("r-matrix" ,r-matrix)
1770 ("r-rcpp" ,r-rcpp)
1771 ("r-s4vectors" ,r-s4vectors)
1772 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1773 (home-page "https://bioconductor.org/packages/InteractionSet")
1774 (synopsis "Base classes for storing genomic interaction data")
1775 (description
1776 "This package provides the @code{GInteractions},
1777 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
1778 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
1779 experiments.")
1780 (license license:gpl3)))
1781
1782 (define-public r-genomicinteractions
1783 (package
1784 (name "r-genomicinteractions")
1785 (version "1.20.0")
1786 (source
1787 (origin
1788 (method url-fetch)
1789 (uri (bioconductor-uri "GenomicInteractions" version))
1790 (sha256
1791 (base32
1792 "10kwb70c9aq0bfqpq48h186lsbwgrg18m14r9z8x6n8l7cds5azc"))))
1793 (properties
1794 `((upstream-name . "GenomicInteractions")))
1795 (build-system r-build-system)
1796 (propagated-inputs
1797 `(("r-biobase" ,r-biobase)
1798 ("r-biocgenerics" ,r-biocgenerics)
1799 ("r-data-table" ,r-data-table)
1800 ("r-dplyr" ,r-dplyr)
1801 ("r-genomeinfodb" ,r-genomeinfodb)
1802 ("r-genomicranges" ,r-genomicranges)
1803 ("r-ggplot2" ,r-ggplot2)
1804 ("r-gridextra" ,r-gridextra)
1805 ("r-gviz" ,r-gviz)
1806 ("r-igraph" ,r-igraph)
1807 ("r-interactionset" ,r-interactionset)
1808 ("r-iranges" ,r-iranges)
1809 ("r-rsamtools" ,r-rsamtools)
1810 ("r-rtracklayer" ,r-rtracklayer)
1811 ("r-s4vectors" ,r-s4vectors)
1812 ("r-stringr" ,r-stringr)))
1813 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
1814 (synopsis "R package for handling genomic interaction data")
1815 (description
1816 "This R package provides tools for handling genomic interaction data,
1817 such as ChIA-PET/Hi-C, annotating genomic features with interaction
1818 information and producing various plots and statistics.")
1819 (license license:gpl3)))
1820
1821 (define-public r-ctc
1822 (package
1823 (name "r-ctc")
1824 (version "1.60.0")
1825 (source
1826 (origin
1827 (method url-fetch)
1828 (uri (bioconductor-uri "ctc" version))
1829 (sha256
1830 (base32
1831 "0wh27izkyr1j26nznisw654mb5c94xpwjjkx7r6bhwg9ihxxcl6d"))))
1832 (build-system r-build-system)
1833 (propagated-inputs `(("r-amap" ,r-amap)))
1834 (home-page "https://bioconductor.org/packages/ctc/")
1835 (synopsis "Cluster and tree conversion")
1836 (description
1837 "This package provides tools for exporting and importing classification
1838 trees and clusters to other programs.")
1839 (license license:gpl2)))
1840
1841 (define-public r-goseq
1842 (package
1843 (name "r-goseq")
1844 (version "1.38.0")
1845 (source
1846 (origin
1847 (method url-fetch)
1848 (uri (bioconductor-uri "goseq" version))
1849 (sha256
1850 (base32
1851 "11ypa41qv1nx3cncxlwlbhdxqlwq95rb9byv2z3crrf9nfp24byv"))))
1852 (build-system r-build-system)
1853 (propagated-inputs
1854 `(("r-annotationdbi" ,r-annotationdbi)
1855 ("r-biasedurn" ,r-biasedurn)
1856 ("r-biocgenerics" ,r-biocgenerics)
1857 ("r-genelendatabase" ,r-genelendatabase)
1858 ("r-go-db" ,r-go-db)
1859 ("r-mgcv" ,r-mgcv)))
1860 (home-page "https://bioconductor.org/packages/goseq/")
1861 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
1862 (description
1863 "This package provides tools to detect Gene Ontology and/or other user
1864 defined categories which are over/under represented in RNA-seq data.")
1865 (license license:lgpl2.0+)))
1866
1867 (define-public r-glimma
1868 (package
1869 (name "r-glimma")
1870 (version "1.14.0")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (bioconductor-uri "Glimma" version))
1875 (sha256
1876 (base32
1877 "1rjrqgl96iz4b3xqpc174wgz7bqmc8gbm9ljag0y27kz29fwng8r"))))
1878 (properties `((upstream-name . "Glimma")))
1879 (build-system r-build-system)
1880 (propagated-inputs
1881 `(("r-edger" ,r-edger)
1882 ("r-jsonlite" ,r-jsonlite)
1883 ("r-s4vectors" ,r-s4vectors)))
1884 (home-page "https://github.com/Shians/Glimma")
1885 (synopsis "Interactive HTML graphics")
1886 (description
1887 "This package generates interactive visualisations for analysis of
1888 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
1889 HTML page. The interactions are built on top of the popular static
1890 representations of analysis results in order to provide additional
1891 information.")
1892 (license license:lgpl3)))
1893
1894 (define-public r-rots
1895 (package
1896 (name "r-rots")
1897 (version "1.14.0")
1898 (source
1899 (origin
1900 (method url-fetch)
1901 (uri (bioconductor-uri "ROTS" version))
1902 (sha256
1903 (base32
1904 "08mwlb0lpprys2b7vif8aj5bnprmn09mm79zz158gbhrv9j9d1qm"))))
1905 (properties `((upstream-name . "ROTS")))
1906 (build-system r-build-system)
1907 (propagated-inputs
1908 `(("r-biobase" ,r-biobase)
1909 ("r-rcpp" ,r-rcpp)))
1910 (home-page "https://bioconductor.org/packages/ROTS/")
1911 (synopsis "Reproducibility-Optimized Test Statistic")
1912 (description
1913 "This package provides tools for calculating the
1914 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
1915 in omics data.")
1916 (license license:gpl2+)))
1917
1918 (define-public r-plgem
1919 (package
1920 (name "r-plgem")
1921 (version "1.58.0")
1922 (source
1923 (origin
1924 (method url-fetch)
1925 (uri (bioconductor-uri "plgem" version))
1926 (sha256
1927 (base32
1928 "0fkyvcw2qxp4g527s9rzia45yapi0r6gbij7svisil8rbgfdp45v"))))
1929 (build-system r-build-system)
1930 (propagated-inputs
1931 `(("r-biobase" ,r-biobase)
1932 ("r-mass" ,r-mass)))
1933 (home-page "http://www.genopolis.it")
1934 (synopsis "Detect differential expression in microarray and proteomics datasets")
1935 (description
1936 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
1937 model the variance-versus-mean dependence that exists in a variety of
1938 genome-wide datasets, including microarray and proteomics data. The use of
1939 PLGEM has been shown to improve the detection of differentially expressed
1940 genes or proteins in these datasets.")
1941 (license license:gpl2)))
1942
1943 (define-public r-inspect
1944 (package
1945 (name "r-inspect")
1946 (version "1.16.0")
1947 (source
1948 (origin
1949 (method url-fetch)
1950 (uri (bioconductor-uri "INSPEcT" version))
1951 (sha256
1952 (base32
1953 "043066zygf2y2jp6dvfwl56hkzcdvkmymhjx3gh4mhi48l71zqv9"))))
1954 (properties `((upstream-name . "INSPEcT")))
1955 (build-system r-build-system)
1956 (propagated-inputs
1957 `(("r-biobase" ,r-biobase)
1958 ("r-biocgenerics" ,r-biocgenerics)
1959 ("r-biocparallel" ,r-biocparallel)
1960 ("r-deseq2" ,r-deseq2)
1961 ("r-desolve" ,r-desolve)
1962 ("r-genomeinfodb" ,r-genomeinfodb)
1963 ("r-genomicalignments" ,r-genomicalignments)
1964 ("r-genomicfeatures" ,r-genomicfeatures)
1965 ("r-genomicranges" ,r-genomicranges)
1966 ("r-iranges" ,r-iranges)
1967 ("r-kernsmooth" ,r-kernsmooth)
1968 ("r-plgem" ,r-plgem)
1969 ("r-proc" ,r-proc)
1970 ("r-rootsolve" ,r-rootsolve)
1971 ("r-rsamtools" ,r-rsamtools)
1972 ("r-s4vectors" ,r-s4vectors)
1973 ("r-shiny" ,r-shiny)
1974 ("r-summarizedexperiment" ,r-summarizedexperiment)
1975 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
1976 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
1977 (home-page "https://bioconductor.org/packages/INSPEcT")
1978 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
1979 (description
1980 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
1981 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
1982 order to evaluate synthesis, processing and degradation rates and assess via
1983 modeling the rates that determines changes in mature mRNA levels.")
1984 (license license:gpl2)))
1985
1986 (define-public r-dnabarcodes
1987 (package
1988 (name "r-dnabarcodes")
1989 (version "1.16.0")
1990 (source
1991 (origin
1992 (method url-fetch)
1993 (uri (bioconductor-uri "DNABarcodes" version))
1994 (sha256
1995 (base32
1996 "0r2r9qc2qvf7rfl1h5ynvv3xd7n444zbc697s85qxqdpr4sxqmfd"))))
1997 (properties `((upstream-name . "DNABarcodes")))
1998 (build-system r-build-system)
1999 (propagated-inputs
2000 `(("r-bh" ,r-bh)
2001 ("r-matrix" ,r-matrix)
2002 ("r-rcpp" ,r-rcpp)))
2003 (home-page "https://bioconductor.org/packages/DNABarcodes")
2004 (synopsis "Create and analyze DNA barcodes")
2005 (description
2006 "This package offers tools to create DNA barcode sets capable of
2007 correcting insertion, deletion, and substitution errors. Existing barcodes
2008 can be analyzed regarding their minimal, maximal and average distances between
2009 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
2010 demultiplexed, i.e. assigned to their original reference barcode.")
2011 (license license:gpl2)))
2012
2013 (define-public r-ruvseq
2014 (package
2015 (name "r-ruvseq")
2016 (version "1.20.0")
2017 (source
2018 (origin
2019 (method url-fetch)
2020 (uri (bioconductor-uri "RUVSeq" version))
2021 (sha256
2022 (base32
2023 "1ipbbzpngx988lsmwqv7vbmqm65m43xvsmipayfppkrr6jipzxrj"))))
2024 (properties `((upstream-name . "RUVSeq")))
2025 (build-system r-build-system)
2026 (propagated-inputs
2027 `(("r-biobase" ,r-biobase)
2028 ("r-edaseq" ,r-edaseq)
2029 ("r-edger" ,r-edger)
2030 ("r-mass" ,r-mass)))
2031 (home-page "https://github.com/drisso/RUVSeq")
2032 (synopsis "Remove unwanted variation from RNA-Seq data")
2033 (description
2034 "This package implements methods to @dfn{remove unwanted variation} (RUV)
2035 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
2036 samples.")
2037 (license license:artistic2.0)))
2038
2039 (define-public r-biocneighbors
2040 (package
2041 (name "r-biocneighbors")
2042 (version "1.4.1")
2043 (source
2044 (origin
2045 (method url-fetch)
2046 (uri (bioconductor-uri "BiocNeighbors" version))
2047 (sha256
2048 (base32
2049 "05vi1cij37s8wgj92k3l6a3f3dwldj8jvijdp4695zczka6kypdf"))))
2050 (properties `((upstream-name . "BiocNeighbors")))
2051 (build-system r-build-system)
2052 (propagated-inputs
2053 `(("r-biocparallel" ,r-biocparallel)
2054 ("r-matrix" ,r-matrix)
2055 ("r-rcpp" ,r-rcpp)
2056 ("r-rcppannoy" ,r-rcppannoy)
2057 ("r-rcpphnsw" ,r-rcpphnsw)
2058 ("r-s4vectors" ,r-s4vectors)))
2059 (home-page "https://bioconductor.org/packages/BiocNeighbors")
2060 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
2061 (description
2062 "This package implements exact and approximate methods for nearest
2063 neighbor detection, in a framework that allows them to be easily switched
2064 within Bioconductor packages or workflows. The exact algorithm is implemented
2065 using pre-clustering with the k-means algorithm. Functions are also provided
2066 to search for all neighbors within a given distance. Parallelization is
2067 achieved for all methods using the BiocParallel framework.")
2068 (license license:gpl3)))
2069
2070 (define-public r-biocsingular
2071 (package
2072 (name "r-biocsingular")
2073 (version "1.2.0")
2074 (source
2075 (origin
2076 (method url-fetch)
2077 (uri (bioconductor-uri "BiocSingular" version))
2078 (sha256
2079 (base32
2080 "0qd7r2k56ym7ivjgapxbk7fyj2d7396f1ad1hkgnicgyw1an5q1r"))))
2081 (properties `((upstream-name . "BiocSingular")))
2082 (build-system r-build-system)
2083 (propagated-inputs
2084 `(("r-beachmat" ,r-beachmat)
2085 ("r-biocgenerics" ,r-biocgenerics)
2086 ("r-biocparallel" ,r-biocparallel)
2087 ("r-delayedarray" ,r-delayedarray)
2088 ("r-irlba" ,r-irlba)
2089 ("r-matrix" ,r-matrix)
2090 ("r-rcpp" ,r-rcpp)
2091 ("r-rsvd" ,r-rsvd)
2092 ("r-s4vectors" ,r-s4vectors)))
2093 (home-page "https://github.com/LTLA/BiocSingular")
2094 (synopsis "Singular value decomposition for Bioconductor packages")
2095 (description
2096 "This package implements exact and approximate methods for singular value
2097 decomposition and principal components analysis, in a framework that allows
2098 them to be easily switched within Bioconductor packages or workflows. Where
2099 possible, parallelization is achieved using the BiocParallel framework.")
2100 (license license:gpl3)))
2101
2102 (define-public r-destiny
2103 (package
2104 (name "r-destiny")
2105 (version "3.0.0")
2106 (source
2107 (origin
2108 (method url-fetch)
2109 (uri (bioconductor-uri "destiny" version))
2110 (sha256
2111 (base32
2112 "0vj9nk8g6i4vzm6cnzvbsqcvyk6fhmx0a0nxxrciarffyhqk81yz"))))
2113 (build-system r-build-system)
2114 (propagated-inputs
2115 `(("r-biobase" ,r-biobase)
2116 ("r-biocgenerics" ,r-biocgenerics)
2117 ("r-ggplot-multistats" ,r-ggplot-multistats)
2118 ("r-ggplot2" ,r-ggplot2)
2119 ("r-ggthemes" ,r-ggthemes)
2120 ("r-irlba" ,r-irlba)
2121 ("r-knn-covertree" ,r-knn-covertree)
2122 ("r-matrix" ,r-matrix)
2123 ("r-pcamethods" ,r-pcamethods)
2124 ("r-proxy" ,r-proxy)
2125 ("r-rcpp" ,r-rcpp)
2126 ("r-rcppeigen" ,r-rcppeigen)
2127 ("r-rcpphnsw" ,r-rcpphnsw)
2128 ("r-rspectra" ,r-rspectra)
2129 ("r-scales" ,r-scales)
2130 ("r-scatterplot3d" ,r-scatterplot3d)
2131 ("r-singlecellexperiment" ,r-singlecellexperiment)
2132 ("r-smoother" ,r-smoother)
2133 ("r-summarizedexperiment" ,r-summarizedexperiment)
2134 ("r-tidyr" ,r-tidyr)
2135 ("r-tidyselect" ,r-tidyselect)
2136 ("r-vim" ,r-vim)))
2137 (home-page "https://bioconductor.org/packages/destiny/")
2138 (synopsis "Create and plot diffusion maps")
2139 (description "This package provides tools to create and plot diffusion
2140 maps.")
2141 ;; Any version of the GPL
2142 (license license:gpl3+)))
2143
2144 (define-public r-savr
2145 (package
2146 (name "r-savr")
2147 (version "1.24.0")
2148 (source
2149 (origin
2150 (method url-fetch)
2151 (uri (bioconductor-uri "savR" version))
2152 (sha256
2153 (base32
2154 "1lsnqjl6qxbj0wai05qb2wrxrhxq5iarv2livmvwiwv70iigqygf"))))
2155 (properties `((upstream-name . "savR")))
2156 (build-system r-build-system)
2157 (propagated-inputs
2158 `(("r-ggplot2" ,r-ggplot2)
2159 ("r-gridextra" ,r-gridextra)
2160 ("r-reshape2" ,r-reshape2)
2161 ("r-scales" ,r-scales)
2162 ("r-xml" ,r-xml)))
2163 (home-page "https://github.com/bcalder/savR")
2164 (synopsis "Parse and analyze Illumina SAV files")
2165 (description
2166 "This package provides tools to parse Illumina Sequence Analysis
2167 Viewer (SAV) files, access data, and generate QC plots.")
2168 (license license:agpl3+)))
2169
2170 (define-public r-chipexoqual
2171 (package
2172 (name "r-chipexoqual")
2173 (version "1.10.0")
2174 (source
2175 (origin
2176 (method url-fetch)
2177 (uri (bioconductor-uri "ChIPexoQual" version))
2178 (sha256
2179 (base32
2180 "044n6kn16qczpdhp0w0z5x8xpr0rfs9s8q70rafgnvj7a2q1xdd0"))))
2181 (properties `((upstream-name . "ChIPexoQual")))
2182 (build-system r-build-system)
2183 (propagated-inputs
2184 `(("r-biocparallel" ,r-biocparallel)
2185 ("r-biovizbase" ,r-biovizbase)
2186 ("r-broom" ,r-broom)
2187 ("r-data-table" ,r-data-table)
2188 ("r-dplyr" ,r-dplyr)
2189 ("r-genomeinfodb" ,r-genomeinfodb)
2190 ("r-genomicalignments" ,r-genomicalignments)
2191 ("r-genomicranges" ,r-genomicranges)
2192 ("r-ggplot2" ,r-ggplot2)
2193 ("r-hexbin" ,r-hexbin)
2194 ("r-iranges" ,r-iranges)
2195 ("r-rcolorbrewer" ,r-rcolorbrewer)
2196 ("r-rmarkdown" ,r-rmarkdown)
2197 ("r-rsamtools" ,r-rsamtools)
2198 ("r-s4vectors" ,r-s4vectors)
2199 ("r-scales" ,r-scales)
2200 ("r-viridis" ,r-viridis)))
2201 (home-page "https://github.com/keleslab/ChIPexoQual")
2202 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
2203 (description
2204 "This package provides a quality control pipeline for ChIP-exo/nexus
2205 sequencing data.")
2206 (license license:gpl2+)))
2207
2208 (define-public r-copynumber
2209 (package
2210 (name "r-copynumber")
2211 (version "1.26.0")
2212 (source (origin
2213 (method url-fetch)
2214 (uri (bioconductor-uri "copynumber" version))
2215 (sha256
2216 (base32
2217 "0r6r1adj20x3ckm0dlipxlf1rzngr92xsxxpy81mqxf4jpmyr8gj"))))
2218 (build-system r-build-system)
2219 (propagated-inputs
2220 `(("r-s4vectors" ,r-s4vectors)
2221 ("r-iranges" ,r-iranges)
2222 ("r-genomicranges" ,r-genomicranges)
2223 ("r-biocgenerics" ,r-biocgenerics)))
2224 (home-page "https://bioconductor.org/packages/copynumber")
2225 (synopsis "Segmentation of single- and multi-track copy number data")
2226 (description
2227 "This package segments single- and multi-track copy number data by a
2228 penalized least squares regression method.")
2229 (license license:artistic2.0)))
2230
2231 (define-public r-dnacopy
2232 (package
2233 (name "r-dnacopy")
2234 (version "1.60.0")
2235 (source
2236 (origin
2237 (method url-fetch)
2238 (uri (bioconductor-uri "DNAcopy" version))
2239 (sha256
2240 (base32
2241 "119z5lqhhw9ppg6s4dvbxk1kxf3wc55ibpm9b88c91s04yd7m9yw"))))
2242 (properties `((upstream-name . "DNAcopy")))
2243 (build-system r-build-system)
2244 (native-inputs `(("gfortran" ,gfortran)))
2245 (home-page "https://bioconductor.org/packages/DNAcopy")
2246 (synopsis "DNA copy number data analysis")
2247 (description
2248 "This package implements the @dfn{circular binary segmentation} (CBS)
2249 algorithm to segment DNA copy number data and identify genomic regions with
2250 abnormal copy number.")
2251 (license license:gpl2+)))
2252
2253 ;; This is a CRAN package, but it uncharacteristically depends on a
2254 ;; Bioconductor package.
2255 (define-public r-htscluster
2256 (package
2257 (name "r-htscluster")
2258 (version "2.0.8")
2259 (source
2260 (origin
2261 (method url-fetch)
2262 (uri (cran-uri "HTSCluster" version))
2263 (sha256
2264 (base32
2265 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
2266 (properties `((upstream-name . "HTSCluster")))
2267 (build-system r-build-system)
2268 (propagated-inputs
2269 `(("r-capushe" ,r-capushe)
2270 ("r-edger" ,r-edger)
2271 ("r-plotrix" ,r-plotrix)))
2272 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
2273 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
2274 (description
2275 "This package provides a Poisson mixture model is implemented to cluster
2276 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
2277 estimation is performed using either the EM or CEM algorithm, and the slope
2278 heuristics are used for model selection (i.e., to choose the number of
2279 clusters).")
2280 (license license:gpl3+)))
2281
2282 (define-public r-deds
2283 (package
2284 (name "r-deds")
2285 (version "1.60.0")
2286 (source
2287 (origin
2288 (method url-fetch)
2289 (uri (bioconductor-uri "DEDS" version))
2290 (sha256
2291 (base32
2292 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
2293 (properties `((upstream-name . "DEDS")))
2294 (build-system r-build-system)
2295 (home-page "https://bioconductor.org/packages/DEDS/")
2296 (synopsis "Differential expression via distance summary for microarray data")
2297 (description
2298 "This library contains functions that calculate various statistics of
2299 differential expression for microarray data, including t statistics, fold
2300 change, F statistics, SAM, moderated t and F statistics and B statistics. It
2301 also implements a new methodology called DEDS (Differential Expression via
2302 Distance Summary), which selects differentially expressed genes by integrating
2303 and summarizing a set of statistics using a weighted distance approach.")
2304 ;; Any version of the LGPL.
2305 (license license:lgpl3+)))
2306
2307 ;; This is a CRAN package, but since it depends on a Bioconductor package we
2308 ;; put it here.
2309 (define-public r-nbpseq
2310 (package
2311 (name "r-nbpseq")
2312 (version "0.3.0")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (cran-uri "NBPSeq" version))
2317 (sha256
2318 (base32
2319 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
2320 (properties `((upstream-name . "NBPSeq")))
2321 (build-system r-build-system)
2322 (propagated-inputs
2323 `(("r-qvalue" ,r-qvalue)))
2324 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
2325 (synopsis "Negative binomial models for RNA-Seq data")
2326 (description
2327 "This package provides negative binomial models for two-group comparisons
2328 and regression inferences from RNA-sequencing data.")
2329 (license license:gpl2)))
2330
2331 (define-public r-ebseq
2332 (package
2333 (name "r-ebseq")
2334 (version "1.26.0")
2335 (source
2336 (origin
2337 (method url-fetch)
2338 (uri (bioconductor-uri "EBSeq" version))
2339 (sha256
2340 (base32
2341 "0ay1vcccpc29r3vinlnwp9256345bfb346kg2y11kib4bnrabjb6"))))
2342 (properties `((upstream-name . "EBSeq")))
2343 (build-system r-build-system)
2344 (propagated-inputs
2345 `(("r-blockmodeling" ,r-blockmodeling)
2346 ("r-gplots" ,r-gplots)
2347 ("r-testthat" ,r-testthat)))
2348 (home-page "https://bioconductor.org/packages/EBSeq")
2349 (synopsis "Differential expression analysis of RNA-seq data")
2350 (description
2351 "This package provides tools for differential expression analysis at both
2352 gene and isoform level using RNA-seq data")
2353 (license license:artistic2.0)))
2354
2355 (define-public r-lpsymphony
2356 (package
2357 (name "r-lpsymphony")
2358 (version "1.14.0")
2359 (source
2360 (origin
2361 (method url-fetch)
2362 (uri (bioconductor-uri "lpsymphony" version))
2363 (sha256
2364 (base32
2365 "0j5j9kggh3l61vp6hpnqf45d5kzifksaj0sqhvs1zahmx2c1gfdv"))))
2366 (build-system r-build-system)
2367 (inputs
2368 `(("gfortran" ,gfortran)
2369 ("zlib" ,zlib)))
2370 (native-inputs
2371 `(("pkg-config" ,pkg-config)))
2372 (home-page "http://r-forge.r-project.org/projects/rsymphony")
2373 (synopsis "Symphony integer linear programming solver in R")
2374 (description
2375 "This package was derived from Rsymphony. The package provides an R
2376 interface to SYMPHONY, a linear programming solver written in C++. The main
2377 difference between this package and Rsymphony is that it includes the solver
2378 source code, while Rsymphony expects to find header and library files on the
2379 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
2380 to install interface to SYMPHONY.")
2381 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
2382 ;; lpsimphony is released under the same terms.
2383 (license license:epl1.0)))
2384
2385 (define-public r-ihw
2386 (package
2387 (name "r-ihw")
2388 (version "1.14.0")
2389 (source
2390 (origin
2391 (method url-fetch)
2392 (uri (bioconductor-uri "IHW" version))
2393 (sha256
2394 (base32
2395 "0rnw7r9pylpj3a5graavcpiqv2v67rv2a4dlcynkf4ihpxs4bg8x"))))
2396 (properties `((upstream-name . "IHW")))
2397 (build-system r-build-system)
2398 (propagated-inputs
2399 `(("r-biocgenerics" ,r-biocgenerics)
2400 ("r-fdrtool" ,r-fdrtool)
2401 ("r-lpsymphony" ,r-lpsymphony)
2402 ("r-slam" ,r-slam)))
2403 (home-page "https://bioconductor.org/packages/IHW")
2404 (synopsis "Independent hypothesis weighting")
2405 (description
2406 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
2407 procedure that increases power compared to the method of Benjamini and
2408 Hochberg by assigning data-driven weights to each hypothesis. The input to
2409 IHW is a two-column table of p-values and covariates. The covariate can be
2410 any continuous-valued or categorical variable that is thought to be
2411 informative on the statistical properties of each hypothesis test, while it is
2412 independent of the p-value under the null hypothesis.")
2413 (license license:artistic2.0)))
2414
2415 (define-public r-icobra
2416 (package
2417 (name "r-icobra")
2418 (version "1.14.0")
2419 (source
2420 (origin
2421 (method url-fetch)
2422 (uri (bioconductor-uri "iCOBRA" version))
2423 (sha256
2424 (base32
2425 "1l0yr2grpwmr3pc5h50p1j4nxyb1ddmc55l7rhxpp4igh4fq1avz"))))
2426 (properties `((upstream-name . "iCOBRA")))
2427 (build-system r-build-system)
2428 (propagated-inputs
2429 `(("r-dplyr" ,r-dplyr)
2430 ("r-dt" ,r-dt)
2431 ("r-ggplot2" ,r-ggplot2)
2432 ("r-limma" ,r-limma)
2433 ("r-reshape2" ,r-reshape2)
2434 ("r-rocr" ,r-rocr)
2435 ("r-scales" ,r-scales)
2436 ("r-shiny" ,r-shiny)
2437 ("r-shinybs" ,r-shinybs)
2438 ("r-shinydashboard" ,r-shinydashboard)
2439 ("r-upsetr" ,r-upsetr)))
2440 (home-page "https://bioconductor.org/packages/iCOBRA")
2441 (synopsis "Comparison and visualization of ranking and assignment methods")
2442 (description
2443 "This package provides functions for calculation and visualization of
2444 performance metrics for evaluation of ranking and binary
2445 classification (assignment) methods. It also contains a Shiny application for
2446 interactive exploration of results.")
2447 (license license:gpl2+)))
2448
2449 (define-public r-mast
2450 (package
2451 (name "r-mast")
2452 (version "1.12.0")
2453 (source
2454 (origin
2455 (method url-fetch)
2456 (uri (bioconductor-uri "MAST" version))
2457 (sha256
2458 (base32
2459 "1l78rrwkzyswpj6pgc9z8290fqrk4akba76invkkazpyh91r8gga"))))
2460 (properties `((upstream-name . "MAST")))
2461 (build-system r-build-system)
2462 (propagated-inputs
2463 `(("r-abind" ,r-abind)
2464 ("r-biobase" ,r-biobase)
2465 ("r-biocgenerics" ,r-biocgenerics)
2466 ("r-data-table" ,r-data-table)
2467 ("r-ggplot2" ,r-ggplot2)
2468 ("r-plyr" ,r-plyr)
2469 ("r-progress" ,r-progress)
2470 ("r-reshape2" ,r-reshape2)
2471 ("r-s4vectors" ,r-s4vectors)
2472 ("r-singlecellexperiment" ,r-singlecellexperiment)
2473 ("r-stringr" ,r-stringr)
2474 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2475 (home-page "https://github.com/RGLab/MAST/")
2476 (synopsis "Model-based analysis of single cell transcriptomics")
2477 (description
2478 "This package provides methods and models for handling zero-inflated
2479 single cell assay data.")
2480 (license license:gpl2+)))
2481
2482 (define-public r-monocle
2483 (package
2484 (name "r-monocle")
2485 (version "2.14.0")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (bioconductor-uri "monocle" version))
2490 (sha256
2491 (base32
2492 "18b9y592q48mbcp5w095qs1kaklq64v6dcnlpqhv3rwxvywygsz2"))))
2493 (build-system r-build-system)
2494 (propagated-inputs
2495 `(("r-biobase" ,r-biobase)
2496 ("r-biocgenerics" ,r-biocgenerics)
2497 ("r-biocviews" ,r-biocviews)
2498 ("r-cluster" ,r-cluster)
2499 ("r-combinat" ,r-combinat)
2500 ("r-ddrtree" ,r-ddrtree)
2501 ("r-densityclust" ,r-densityclust)
2502 ("r-dplyr" ,r-dplyr)
2503 ("r-fastica" ,r-fastica)
2504 ("r-ggplot2" ,r-ggplot2)
2505 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
2506 ("r-igraph" ,r-igraph)
2507 ("r-irlba" ,r-irlba)
2508 ("r-limma" ,r-limma)
2509 ("r-mass" ,r-mass)
2510 ("r-matrix" ,r-matrix)
2511 ("r-matrixstats" ,r-matrixstats)
2512 ("r-pheatmap" ,r-pheatmap)
2513 ("r-plyr" ,r-plyr)
2514 ("r-proxy" ,r-proxy)
2515 ("r-qlcmatrix" ,r-qlcmatrix)
2516 ("r-rann" ,r-rann)
2517 ("r-rcpp" ,r-rcpp)
2518 ("r-reshape2" ,r-reshape2)
2519 ("r-rtsne" ,r-rtsne)
2520 ("r-slam" ,r-slam)
2521 ("r-stringr" ,r-stringr)
2522 ("r-tibble" ,r-tibble)
2523 ("r-vgam" ,r-vgam)
2524 ("r-viridis" ,r-viridis)))
2525 (home-page "https://bioconductor.org/packages/monocle")
2526 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
2527 (description
2528 "Monocle performs differential expression and time-series analysis for
2529 single-cell expression experiments. It orders individual cells according to
2530 progress through a biological process, without knowing ahead of time which
2531 genes define progress through that process. Monocle also performs
2532 differential expression analysis, clustering, visualization, and other useful
2533 tasks on single cell expression data. It is designed to work with RNA-Seq and
2534 qPCR data, but could be used with other types as well.")
2535 (license license:artistic2.0)))
2536
2537 (define-public r-monocle3
2538 (package
2539 (name "r-monocle3")
2540 (version "0.1.2")
2541 (source
2542 (origin
2543 (method git-fetch)
2544 (uri (git-reference
2545 (url "https://github.com/cole-trapnell-lab/monocle3.git")
2546 (commit version)))
2547 (file-name (git-file-name name version))
2548 (sha256
2549 (base32
2550 "1cjxqfw3qvy269hsf5v80d4kshl932wrl949iayas02saj6f70ls"))))
2551 (build-system r-build-system)
2552 (propagated-inputs
2553 `(("r-biobase" ,r-biobase)
2554 ("r-biocgenerics" ,r-biocgenerics)
2555 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
2556 ("r-dplyr" ,r-dplyr)
2557 ("r-ggplot2" ,r-ggplot2)
2558 ("r-ggrepel" ,r-ggrepel)
2559 ("r-grr" ,r-grr)
2560 ("r-htmlwidgets" ,r-htmlwidgets)
2561 ("r-igraph" ,r-igraph)
2562 ("r-irlba" ,r-irlba)
2563 ("r-limma" ,r-limma)
2564 ("r-lmtest" ,r-lmtest)
2565 ("r-mass" ,r-mass)
2566 ("r-matrix" ,r-matrix)
2567 ("r-matrix-utils" ,r-matrix-utils)
2568 ("r-pbapply" ,r-pbapply)
2569 ("r-pbmcapply" ,r-pbmcapply)
2570 ("r-pheatmap" ,r-pheatmap)
2571 ("r-plotly" ,r-plotly)
2572 ("r-pryr" ,r-pryr)
2573 ("r-proxy" ,r-proxy)
2574 ("r-pscl" ,r-pscl)
2575 ("r-purrr" ,r-purrr)
2576 ("r-rann" ,r-rann)
2577 ("r-rcpp" ,r-rcpp)
2578 ("r-rcppparallel" ,r-rcppparallel)
2579 ("r-reshape2" ,r-reshape2)
2580 ("r-reticulate" ,r-reticulate)
2581 ("r-rhpcblasctl" ,r-rhpcblasctl)
2582 ("r-rtsne" ,r-rtsne)
2583 ("r-shiny" ,r-shiny)
2584 ("r-slam" ,r-slam)
2585 ("r-spdep" ,r-spdep)
2586 ("r-speedglm" ,r-speedglm)
2587 ("r-stringr" ,r-stringr)
2588 ("r-singlecellexperiment" ,r-singlecellexperiment)
2589 ("r-tibble" ,r-tibble)
2590 ("r-tidyr" ,r-tidyr)
2591 ("r-uwot" ,r-uwot)
2592 ("r-viridis" ,r-viridis)))
2593 (home-page "https://github.com/cole-trapnell-lab/monocle3")
2594 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
2595 (description
2596 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
2597 (license license:expat)))
2598
2599 (define-public r-noiseq
2600 (package
2601 (name "r-noiseq")
2602 (version "2.30.0")
2603 (source
2604 (origin
2605 (method url-fetch)
2606 (uri (bioconductor-uri "NOISeq" version))
2607 (sha256
2608 (base32
2609 "1a8p66hhnwmay0rjabwq7356wr93yn33nqgr9rr7whpp9nls1hg4"))))
2610 (properties `((upstream-name . "NOISeq")))
2611 (build-system r-build-system)
2612 (propagated-inputs
2613 `(("r-biobase" ,r-biobase)
2614 ("r-matrix" ,r-matrix)))
2615 (home-page "https://bioconductor.org/packages/NOISeq")
2616 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
2617 (description
2618 "This package provides tools to support the analysis of RNA-seq
2619 expression data or other similar kind of data. It provides exploratory plots
2620 to evaluate saturation, count distribution, expression per chromosome, type of
2621 detected features, features length, etc. It also supports the analysis of
2622 differential expression between two experimental conditions with no parametric
2623 assumptions.")
2624 (license license:artistic2.0)))
2625
2626 (define-public r-scdd
2627 (package
2628 (name "r-scdd")
2629 (version "1.10.0")
2630 (source
2631 (origin
2632 (method url-fetch)
2633 (uri (bioconductor-uri "scDD" version))
2634 (sha256
2635 (base32
2636 "0nk0qq664zs7dnlcamdkrrhvll01p7f96jj3igbxxlzj3dvr58w4"))))
2637 (properties `((upstream-name . "scDD")))
2638 (build-system r-build-system)
2639 (propagated-inputs
2640 `(("r-arm" ,r-arm)
2641 ("r-biocparallel" ,r-biocparallel)
2642 ("r-ebseq" ,r-ebseq)
2643 ("r-fields" ,r-fields)
2644 ("r-ggplot2" ,r-ggplot2)
2645 ("r-mclust" ,r-mclust)
2646 ("r-outliers" ,r-outliers)
2647 ("r-s4vectors" ,r-s4vectors)
2648 ("r-scran" ,r-scran)
2649 ("r-singlecellexperiment" ,r-singlecellexperiment)
2650 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2651 (home-page "https://github.com/kdkorthauer/scDD")
2652 (synopsis "Mixture modeling of single-cell RNA-seq data")
2653 (description
2654 "This package implements a method to analyze single-cell RNA-seq data
2655 utilizing flexible Dirichlet Process mixture models. Genes with differential
2656 distributions of expression are classified into several interesting patterns
2657 of differences between two conditions. The package also includes functions
2658 for simulating data with these patterns from negative binomial
2659 distributions.")
2660 (license license:gpl2)))
2661
2662 (define-public r-scone
2663 (package
2664 (name "r-scone")
2665 (version "1.10.0")
2666 (source
2667 (origin
2668 (method url-fetch)
2669 (uri (bioconductor-uri "scone" version))
2670 (sha256
2671 (base32
2672 "1hfsbnix0y9ad6bj0d8q2aw13pb3vjcaa0dfwxxapzl90zwbsjhp"))))
2673 (build-system r-build-system)
2674 (propagated-inputs
2675 `(("r-aroma-light" ,r-aroma-light)
2676 ("r-biocparallel" ,r-biocparallel)
2677 ("r-boot" ,r-boot)
2678 ("r-class" ,r-class)
2679 ("r-cluster" ,r-cluster)
2680 ("r-compositions" ,r-compositions)
2681 ("r-diptest" ,r-diptest)
2682 ("r-edger" ,r-edger)
2683 ("r-fpc" ,r-fpc)
2684 ("r-gplots" ,r-gplots)
2685 ("r-hexbin" ,r-hexbin)
2686 ("r-limma" ,r-limma)
2687 ("r-matrixstats" ,r-matrixstats)
2688 ("r-mixtools" ,r-mixtools)
2689 ("r-rarpack" ,r-rarpack)
2690 ("r-rcolorbrewer" ,r-rcolorbrewer)
2691 ("r-rhdf5" ,r-rhdf5)
2692 ("r-ruvseq" ,r-ruvseq)
2693 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2694 (home-page "https://bioconductor.org/packages/scone")
2695 (synopsis "Single cell overview of normalized expression data")
2696 (description
2697 "SCONE is an R package for comparing and ranking the performance of
2698 different normalization schemes for single-cell RNA-seq and other
2699 high-throughput analyses.")
2700 (license license:artistic2.0)))
2701
2702 (define-public r-geoquery
2703 (package
2704 (name "r-geoquery")
2705 (version "2.54.1")
2706 (source
2707 (origin
2708 (method url-fetch)
2709 (uri (bioconductor-uri "GEOquery" version))
2710 (sha256
2711 (base32
2712 "0j8mlldy7dc38fx5zwj6z6l4b9bhvrn8sil3z8asnd4ic7w9ifx5"))))
2713 (properties `((upstream-name . "GEOquery")))
2714 (build-system r-build-system)
2715 (propagated-inputs
2716 `(("r-biobase" ,r-biobase)
2717 ("r-dplyr" ,r-dplyr)
2718 ("r-httr" ,r-httr)
2719 ("r-limma" ,r-limma)
2720 ("r-magrittr" ,r-magrittr)
2721 ("r-readr" ,r-readr)
2722 ("r-tidyr" ,r-tidyr)
2723 ("r-xml2" ,r-xml2)))
2724 (home-page "https://github.com/seandavi/GEOquery/")
2725 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
2726 (description
2727 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
2728 microarray data. Given the rich and varied nature of this resource, it is
2729 only natural to want to apply BioConductor tools to these data. GEOquery is
2730 the bridge between GEO and BioConductor.")
2731 (license license:gpl2)))
2732
2733 (define-public r-illuminaio
2734 (package
2735 (name "r-illuminaio")
2736 (version "0.28.0")
2737 (source
2738 (origin
2739 (method url-fetch)
2740 (uri (bioconductor-uri "illuminaio" version))
2741 (sha256
2742 (base32
2743 "1psza8jq6h8fv2rm91ah67dgjlnj1l80yracwgdl1agd0ycv90sh"))))
2744 (build-system r-build-system)
2745 (propagated-inputs
2746 `(("r-base64" ,r-base64)))
2747 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
2748 (synopsis "Parse Illumina microarray output files")
2749 (description
2750 "This package provides tools for parsing Illumina's microarray output
2751 files, including IDAT.")
2752 (license license:gpl2)))
2753
2754 (define-public r-siggenes
2755 (package
2756 (name "r-siggenes")
2757 (version "1.60.0")
2758 (source
2759 (origin
2760 (method url-fetch)
2761 (uri (bioconductor-uri "siggenes" version))
2762 (sha256
2763 (base32
2764 "03lmq3hqprwps4miynl2vhqi3v4als5vqmz4lb19lk5a4zja72b4"))))
2765 (build-system r-build-system)
2766 (propagated-inputs
2767 `(("r-biobase" ,r-biobase)
2768 ("r-multtest" ,r-multtest)
2769 ("r-scrime" ,r-scrime)))
2770 (home-page "https://bioconductor.org/packages/siggenes/")
2771 (synopsis
2772 "Multiple testing using SAM and Efron's empirical Bayes approaches")
2773 (description
2774 "This package provides tools for the identification of differentially
2775 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
2776 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
2777 Bayes Analyses of Microarrays} (EBAM).")
2778 (license license:lgpl2.0+)))
2779
2780 (define-public r-bumphunter
2781 (package
2782 (name "r-bumphunter")
2783 (version "1.28.0")
2784 (source
2785 (origin
2786 (method url-fetch)
2787 (uri (bioconductor-uri "bumphunter" version))
2788 (sha256
2789 (base32
2790 "1p3gwb954zns61d1pwgkplxnvgk2lixrl93kkkf439wa3vlgsnjv"))))
2791 (build-system r-build-system)
2792 (propagated-inputs
2793 `(("r-annotationdbi" ,r-annotationdbi)
2794 ("r-biocgenerics" ,r-biocgenerics)
2795 ("r-dorng" ,r-dorng)
2796 ("r-foreach" ,r-foreach)
2797 ("r-genomeinfodb" ,r-genomeinfodb)
2798 ("r-genomicfeatures" ,r-genomicfeatures)
2799 ("r-genomicranges" ,r-genomicranges)
2800 ("r-iranges" ,r-iranges)
2801 ("r-iterators" ,r-iterators)
2802 ("r-limma" ,r-limma)
2803 ("r-locfit" ,r-locfit)
2804 ("r-matrixstats" ,r-matrixstats)
2805 ("r-s4vectors" ,r-s4vectors)))
2806 (home-page "https://github.com/ririzarr/bumphunter")
2807 (synopsis "Find bumps in genomic data")
2808 (description
2809 "This package provides tools for finding bumps in genomic data in order
2810 to identify differentially methylated regions in epigenetic epidemiology
2811 studies.")
2812 (license license:artistic2.0)))
2813
2814 (define-public r-minfi
2815 (package
2816 (name "r-minfi")
2817 (version "1.32.0")
2818 (source
2819 (origin
2820 (method url-fetch)
2821 (uri (bioconductor-uri "minfi" version))
2822 (sha256
2823 (base32
2824 "177isdvcq2476xybvfbh7x11qsj5nzckgh3b6p156wlx9ap9dvl3"))))
2825 (build-system r-build-system)
2826 (propagated-inputs
2827 `(("r-beanplot" ,r-beanplot)
2828 ("r-biobase" ,r-biobase)
2829 ("r-biocgenerics" ,r-biocgenerics)
2830 ("r-biocparallel" ,r-biocparallel)
2831 ("r-biostrings" ,r-biostrings)
2832 ("r-bumphunter" ,r-bumphunter)
2833 ("r-data-table" ,r-data-table)
2834 ("r-delayedarray" ,r-delayedarray)
2835 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
2836 ("r-genefilter" ,r-genefilter)
2837 ("r-genomeinfodb" ,r-genomeinfodb)
2838 ("r-genomicranges" ,r-genomicranges)
2839 ("r-geoquery" ,r-geoquery)
2840 ("r-hdf5array" ,r-hdf5array)
2841 ("r-illuminaio" ,r-illuminaio)
2842 ("r-iranges" ,r-iranges)
2843 ("r-lattice" ,r-lattice)
2844 ("r-limma" ,r-limma)
2845 ("r-mass" ,r-mass)
2846 ("r-mclust" ,r-mclust)
2847 ("r-nlme" ,r-nlme)
2848 ("r-nor1mix" ,r-nor1mix)
2849 ("r-preprocesscore" ,r-preprocesscore)
2850 ("r-quadprog" ,r-quadprog)
2851 ("r-rcolorbrewer" ,r-rcolorbrewer)
2852 ("r-reshape" ,r-reshape)
2853 ("r-s4vectors" ,r-s4vectors)
2854 ("r-siggenes" ,r-siggenes)
2855 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2856 (home-page "https://github.com/hansenlab/minfi")
2857 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
2858 (description
2859 "This package provides tools to analyze and visualize Illumina Infinium
2860 methylation arrays.")
2861 (license license:artistic2.0)))
2862
2863 (define-public r-methylumi
2864 (package
2865 (name "r-methylumi")
2866 (version "2.32.0")
2867 (source
2868 (origin
2869 (method url-fetch)
2870 (uri (bioconductor-uri "methylumi" version))
2871 (sha256
2872 (base32
2873 "0zd4h6n37v3z0mas69z2xsf5s0naih828987m8v0g9hhq4f6hf5w"))))
2874 (build-system r-build-system)
2875 (propagated-inputs
2876 `(("r-annotate" ,r-annotate)
2877 ("r-annotationdbi" ,r-annotationdbi)
2878 ("r-biobase" ,r-biobase)
2879 ("r-biocgenerics" ,r-biocgenerics)
2880 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
2881 ("r-genefilter" ,r-genefilter)
2882 ("r-genomeinfodb" ,r-genomeinfodb)
2883 ("r-genomicranges" ,r-genomicranges)
2884 ("r-ggplot2" ,r-ggplot2)
2885 ("r-illuminaio" ,r-illuminaio)
2886 ("r-iranges" ,r-iranges)
2887 ("r-lattice" ,r-lattice)
2888 ("r-matrixstats" ,r-matrixstats)
2889 ("r-minfi" ,r-minfi)
2890 ("r-reshape2" ,r-reshape2)
2891 ("r-s4vectors" ,r-s4vectors)
2892 ("r-scales" ,r-scales)
2893 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2894 (home-page "https://bioconductor.org/packages/methylumi")
2895 (synopsis "Handle Illumina methylation data")
2896 (description
2897 "This package provides classes for holding and manipulating Illumina
2898 methylation data. Based on eSet, it can contain MIAME information, sample
2899 information, feature information, and multiple matrices of data. An
2900 \"intelligent\" import function, methylumiR can read the Illumina text files
2901 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
2902 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
2903 background correction, and quality control features for GoldenGate, Infinium,
2904 and Infinium HD arrays are also included.")
2905 (license license:gpl2)))
2906
2907 (define-public r-lumi
2908 (package
2909 (name "r-lumi")
2910 (version "2.38.0")
2911 (source
2912 (origin
2913 (method url-fetch)
2914 (uri (bioconductor-uri "lumi" version))
2915 (sha256
2916 (base32
2917 "0lgrqbdvp7ykcafc0bpnbcsf396na3jj5c35x9ysf5bpcas23nmm"))))
2918 (build-system r-build-system)
2919 (propagated-inputs
2920 `(("r-affy" ,r-affy)
2921 ("r-annotate" ,r-annotate)
2922 ("r-annotationdbi" ,r-annotationdbi)
2923 ("r-biobase" ,r-biobase)
2924 ("r-dbi" ,r-dbi)
2925 ("r-genomicfeatures" ,r-genomicfeatures)
2926 ("r-genomicranges" ,r-genomicranges)
2927 ("r-kernsmooth" ,r-kernsmooth)
2928 ("r-lattice" ,r-lattice)
2929 ("r-mass" ,r-mass)
2930 ("r-methylumi" ,r-methylumi)
2931 ("r-mgcv" ,r-mgcv)
2932 ("r-nleqslv" ,r-nleqslv)
2933 ("r-preprocesscore" ,r-preprocesscore)
2934 ("r-rsqlite" ,r-rsqlite)))
2935 (home-page "https://bioconductor.org/packages/lumi")
2936 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
2937 (description
2938 "The lumi package provides an integrated solution for the Illumina
2939 microarray data analysis. It includes functions of Illumina
2940 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
2941 variance stabilization, normalization and gene annotation at the probe level.
2942 It also includes the functions of processing Illumina methylation microarrays,
2943 especially Illumina Infinium methylation microarrays.")
2944 (license license:lgpl2.0+)))
2945
2946 (define-public r-linnorm
2947 (package
2948 (name "r-linnorm")
2949 (version "2.10.0")
2950 (source
2951 (origin
2952 (method url-fetch)
2953 (uri (bioconductor-uri "Linnorm" version))
2954 (sha256
2955 (base32
2956 "15mhwiqmp9m65zvrdbr2hhy3x81lf4jbwgjsf75g41if2v2g8x67"))))
2957 (properties `((upstream-name . "Linnorm")))
2958 (build-system r-build-system)
2959 (propagated-inputs
2960 `(("r-amap" ,r-amap)
2961 ("r-apcluster" ,r-apcluster)
2962 ("r-ellipse" ,r-ellipse)
2963 ("r-fastcluster" ,r-fastcluster)
2964 ("r-fpc" ,r-fpc)
2965 ("r-ggdendro" ,r-ggdendro)
2966 ("r-ggplot2" ,r-ggplot2)
2967 ("r-gmodels" ,r-gmodels)
2968 ("r-igraph" ,r-igraph)
2969 ("r-limma" ,r-limma)
2970 ("r-mass" ,r-mass)
2971 ("r-mclust" ,r-mclust)
2972 ("r-rcpp" ,r-rcpp)
2973 ("r-rcpparmadillo" ,r-rcpparmadillo)
2974 ("r-rtsne" ,r-rtsne)
2975 ("r-statmod" ,r-statmod)
2976 ("r-vegan" ,r-vegan)
2977 ("r-zoo" ,r-zoo)))
2978 (home-page "http://www.jjwanglab.org/Linnorm/")
2979 (synopsis "Linear model and normality based transformation method")
2980 (description
2981 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
2982 count data or any large scale count data. It transforms such datasets for
2983 parametric tests. In addition to the transformtion function (@code{Linnorm}),
2984 the following pipelines are implemented:
2985
2986 @enumerate
2987 @item Library size/batch effect normalization (@code{Linnorm.Norm})
2988 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
2989 clustering or hierarchical clustering (@code{Linnorm.tSNE},
2990 @code{Linnorm.PCA}, @code{Linnorm.HClust})
2991 @item Differential expression analysis or differential peak detection using
2992 limma (@code{Linnorm.limma})
2993 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
2994 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
2995 @item Stable gene selection for scRNA-seq data; for users without or who do
2996 not want to rely on spike-in genes (@code{Linnorm.SGenes})
2997 @item Data imputation (@code{Linnorm.DataImput}).
2998 @end enumerate
2999
3000 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
3001 @code{RnaXSim} function is included for simulating RNA-seq data for the
3002 evaluation of DEG analysis methods.")
3003 (license license:expat)))
3004
3005 (define-public r-ioniser
3006 (package
3007 (name "r-ioniser")
3008 (version "2.10.0")
3009 (source
3010 (origin
3011 (method url-fetch)
3012 (uri (bioconductor-uri "IONiseR" version))
3013 (sha256
3014 (base32
3015 "1c265bzh923i9mw83mjpj0bzbkixbs6sg1h1z51y9xjkakdgg90f"))))
3016 (properties `((upstream-name . "IONiseR")))
3017 (build-system r-build-system)
3018 (propagated-inputs
3019 `(("r-biocgenerics" ,r-biocgenerics)
3020 ("r-biocparallel" ,r-biocparallel)
3021 ("r-biostrings" ,r-biostrings)
3022 ("r-bit64" ,r-bit64)
3023 ("r-dplyr" ,r-dplyr)
3024 ("r-ggplot2" ,r-ggplot2)
3025 ("r-magrittr" ,r-magrittr)
3026 ("r-rhdf5" ,r-rhdf5)
3027 ("r-shortread" ,r-shortread)
3028 ("r-stringr" ,r-stringr)
3029 ("r-tibble" ,r-tibble)
3030 ("r-tidyr" ,r-tidyr)
3031 ("r-xvector" ,r-xvector)))
3032 (home-page "https://bioconductor.org/packages/IONiseR/")
3033 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
3034 (description
3035 "IONiseR provides tools for the quality assessment of Oxford Nanopore
3036 MinION data. It extracts summary statistics from a set of fast5 files and can
3037 be used either before or after base calling. In addition to standard
3038 summaries of the read-types produced, it provides a number of plots for
3039 visualising metrics relative to experiment run time or spatially over the
3040 surface of a flowcell.")
3041 (license license:expat)))
3042
3043 ;; This is a CRAN package, but it depends on packages from Bioconductor.
3044 (define-public r-gkmsvm
3045 (package
3046 (name "r-gkmsvm")
3047 (version "0.79.0")
3048 (source
3049 (origin
3050 (method url-fetch)
3051 (uri (cran-uri "gkmSVM" version))
3052 (sha256
3053 (base32
3054 "04dakbgfvfalz4rm4fvvybp506dn5fbj5g86ybfhrc6wywjllsz3"))))
3055 (properties `((upstream-name . "gkmSVM")))
3056 (build-system r-build-system)
3057 (propagated-inputs
3058 `(("r-biocgenerics" ,r-biocgenerics)
3059 ("r-biostrings" ,r-biostrings)
3060 ("r-genomeinfodb" ,r-genomeinfodb)
3061 ("r-genomicranges" ,r-genomicranges)
3062 ("r-iranges" ,r-iranges)
3063 ("r-kernlab" ,r-kernlab)
3064 ("r-rcpp" ,r-rcpp)
3065 ("r-rocr" ,r-rocr)
3066 ("r-rtracklayer" ,r-rtracklayer)
3067 ("r-s4vectors" ,r-s4vectors)
3068 ("r-seqinr" ,r-seqinr)))
3069 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
3070 (synopsis "Gapped-kmer support vector machine")
3071 (description
3072 "This R package provides tools for training gapped-kmer SVM classifiers
3073 for DNA and protein sequences. This package supports several sequence
3074 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
3075 (license license:gpl2+)))
3076
3077 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
3078 (define-public r-mutoss
3079 (package
3080 (name "r-mutoss")
3081 (version "0.1-12")
3082 (source
3083 (origin
3084 (method url-fetch)
3085 (uri (cran-uri "mutoss" version))
3086 (sha256
3087 (base32
3088 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
3089 (properties `((upstream-name . "mutoss")))
3090 (build-system r-build-system)
3091 (propagated-inputs
3092 `(("r-multcomp" ,r-multcomp)
3093 ("r-multtest" ,r-multtest)
3094 ("r-mvtnorm" ,r-mvtnorm)
3095 ("r-plotrix" ,r-plotrix)))
3096 (home-page "https://github.com/kornl/mutoss/")
3097 (synopsis "Unified multiple testing procedures")
3098 (description
3099 "This package is designed to ease the application and comparison of
3100 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
3101 are standardized and usable by the accompanying mutossGUI package.")
3102 ;; Any version of the GPL.
3103 (license (list license:gpl2+ license:gpl3+))))
3104
3105 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
3106 ;; from Bioconductor, so we put it here.
3107 (define-public r-metap
3108 (package
3109 (name "r-metap")
3110 (version "1.2")
3111 (source
3112 (origin
3113 (method url-fetch)
3114 (uri (cran-uri "metap" version))
3115 (sha256
3116 (base32
3117 "0pfbcixjrzx81l9wqhlp55khg9k63zf8pvg2n39c19akr4ppzhvf"))))
3118 (build-system r-build-system)
3119 (propagated-inputs
3120 `(("r-lattice" ,r-lattice)
3121 ("r-mutoss" ,r-mutoss)
3122 ("r-rdpack" ,r-rdpack)
3123 ("r-tfisher" ,r-tfisher)))
3124 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3125 (synopsis "Meta-analysis of significance values")
3126 (description
3127 "The canonical way to perform meta-analysis involves using effect sizes.
3128 When they are not available this package provides a number of methods for
3129 meta-analysis of significance values including the methods of Edgington,
3130 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3131 published results; and a routine for graphical display.")
3132 (license license:gpl2)))
3133
3134 (define-public r-triform
3135 (package
3136 (name "r-triform")
3137 (version "1.28.0")
3138 (source
3139 (origin
3140 (method url-fetch)
3141 (uri (bioconductor-uri "triform" version))
3142 (sha256
3143 (base32
3144 "12qdyrcw2mcawqdw65v0hjaghzlwa10xl6j8458izcrm5k6dlvz9"))))
3145 (build-system r-build-system)
3146 (propagated-inputs
3147 `(("r-biocgenerics" ,r-biocgenerics)
3148 ("r-iranges" ,r-iranges)
3149 ("r-yaml" ,r-yaml)))
3150 (home-page "https://bioconductor.org/packages/triform/")
3151 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
3152 (description
3153 "The Triform algorithm uses model-free statistics to identify peak-like
3154 distributions of TF ChIP sequencing reads, taking advantage of an improved
3155 peak definition in combination with known profile characteristics.")
3156 (license license:gpl2)))
3157
3158 (define-public r-varianttools
3159 (package
3160 (name "r-varianttools")
3161 (version "1.28.0")
3162 (source
3163 (origin
3164 (method url-fetch)
3165 (uri (bioconductor-uri "VariantTools" version))
3166 (sha256
3167 (base32
3168 "0aafcprsqbn1xl8jqnxfl8r2d0lmzhssqpr26lam2cprh3yk0xiv"))))
3169 (properties `((upstream-name . "VariantTools")))
3170 (build-system r-build-system)
3171 (propagated-inputs
3172 `(("r-biobase" ,r-biobase)
3173 ("r-biocgenerics" ,r-biocgenerics)
3174 ("r-biocparallel" ,r-biocparallel)
3175 ("r-biostrings" ,r-biostrings)
3176 ("r-bsgenome" ,r-bsgenome)
3177 ("r-genomeinfodb" ,r-genomeinfodb)
3178 ("r-genomicfeatures" ,r-genomicfeatures)
3179 ("r-genomicranges" ,r-genomicranges)
3180 ("r-iranges" ,r-iranges)
3181 ("r-matrix" ,r-matrix)
3182 ("r-rsamtools" ,r-rsamtools)
3183 ("r-rtracklayer" ,r-rtracklayer)
3184 ("r-s4vectors" ,r-s4vectors)
3185 ("r-variantannotation" ,r-variantannotation)))
3186 (home-page "https://bioconductor.org/packages/VariantTools/")
3187 (synopsis "Tools for exploratory analysis of variant calls")
3188 (description
3189 "Explore, diagnose, and compare variant calls using filters. The
3190 VariantTools package supports a workflow for loading data, calling single
3191 sample variants and tumor-specific somatic mutations or other sample-specific
3192 variant types (e.g., RNA editing). Most of the functions operate on
3193 alignments (BAM files) or datasets of called variants. The user is expected
3194 to have already aligned the reads with a separate tool, e.g., GSNAP via
3195 gmapR.")
3196 (license license:artistic2.0)))
3197
3198 (define-public r-heatplus
3199 (package
3200 (name "r-heatplus")
3201 (version "2.32.0")
3202 (source
3203 (origin
3204 (method url-fetch)
3205 (uri (bioconductor-uri "Heatplus" version))
3206 (sha256
3207 (base32
3208 "0hx5gqgh4xrkx37ccprq7azj9jziff137bdk0gvrixcx52ws6h89"))))
3209 (properties `((upstream-name . "Heatplus")))
3210 (build-system r-build-system)
3211 (propagated-inputs
3212 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
3213 (home-page "https://github.com/alexploner/Heatplus")
3214 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
3215 (description
3216 "This package provides tools to display a rectangular heatmap (intensity
3217 plot) of a data matrix. By default, both samples (columns) and features (row)
3218 of the matrix are sorted according to a hierarchical clustering, and the
3219 corresponding dendrogram is plotted. Optionally, panels with additional
3220 information about samples and features can be added to the plot.")
3221 (license license:gpl2+)))
3222
3223 (define-public r-gosemsim
3224 (package
3225 (name "r-gosemsim")
3226 (version "2.12.0")
3227 (source
3228 (origin
3229 (method url-fetch)
3230 (uri (bioconductor-uri "GOSemSim" version))
3231 (sha256
3232 (base32
3233 "0pqnlgdvh5szjhwc1mw1snjgpj9lrsnk44bn164cl3zwvdayccya"))))
3234 (properties `((upstream-name . "GOSemSim")))
3235 (build-system r-build-system)
3236 (propagated-inputs
3237 `(("r-annotationdbi" ,r-annotationdbi)
3238 ("r-go-db" ,r-go-db)
3239 ("r-rcpp" ,r-rcpp)))
3240 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
3241 (synopsis "GO-terms semantic similarity measures")
3242 (description
3243 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
3244 quantitative ways to compute similarities between genes and gene groups, and
3245 have became important basis for many bioinformatics analysis approaches.
3246 GOSemSim is an R package for semantic similarity computation among GO terms,
3247 sets of GO terms, gene products and gene clusters.")
3248 (license license:artistic2.0)))
3249
3250 (define-public r-anota
3251 (package
3252 (name "r-anota")
3253 (version "1.34.0")
3254 (source
3255 (origin
3256 (method url-fetch)
3257 (uri (bioconductor-uri "anota" version))
3258 (sha256
3259 (base32
3260 "1bkavzrxy1bjz0bwapwa9i3ysln7gljgziwd8c05fmg2f46j1z6m"))))
3261 (build-system r-build-system)
3262 (propagated-inputs
3263 `(("r-multtest" ,r-multtest)
3264 ("r-qvalue" ,r-qvalue)))
3265 (home-page "https://bioconductor.org/packages/anota/")
3266 (synopsis "Analysis of translational activity")
3267 (description
3268 "Genome wide studies of translational control is emerging as a tool to
3269 study various biological conditions. The output from such analysis is both
3270 the mRNA level (e.g. cytosolic mRNA level) and the levl of mRNA actively
3271 involved in translation (the actively translating mRNA level) for each mRNA.
3272 The standard analysis of such data strives towards identifying differential
3273 translational between two or more sample classes - i.e. differences in
3274 actively translated mRNA levels that are independent of underlying differences
3275 in cytosolic mRNA levels. This package allows for such analysis using partial
3276 variances and the random variance model. As 10s of thousands of mRNAs are
3277 analyzed in parallel the library performs a number of tests to assure that
3278 the data set is suitable for such analysis.")
3279 (license license:gpl3)))
3280
3281 (define-public r-sigpathway
3282 (package
3283 (name "r-sigpathway")
3284 (version "1.54.0")
3285 (source
3286 (origin
3287 (method url-fetch)
3288 (uri (bioconductor-uri "sigPathway" version))
3289 (sha256
3290 (base32
3291 "057qdkbfldpy6hsysk9mrs1vvsqgyl9yx2s6c2f26jz1pardkbqb"))))
3292 (properties `((upstream-name . "sigPathway")))
3293 (build-system r-build-system)
3294 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
3295 (synopsis "Pathway analysis")
3296 (description
3297 "This package is used to conduct pathway analysis by calculating the NT_k
3298 and NE_k statistics in a statistical framework for determining whether a
3299 specified group of genes for a pathway has a coordinated association with a
3300 phenotype of interest.")
3301 (license license:gpl2)))
3302
3303 (define-public r-fgsea
3304 (package
3305 (name "r-fgsea")
3306 (version "1.12.0")
3307 (source
3308 (origin
3309 (method url-fetch)
3310 (uri (bioconductor-uri "fgsea" version))
3311 (sha256
3312 (base32
3313 "0pbq3g515kcbi4wvfx8m09p01h2f8vwsi1qqsyahxz4r1fasz4c1"))))
3314 (build-system r-build-system)
3315 (propagated-inputs
3316 `(("r-bh" ,r-bh)
3317 ("r-biocparallel" ,r-biocparallel)
3318 ("r-data-table" ,r-data-table)
3319 ("r-fastmatch" ,r-fastmatch)
3320 ("r-ggplot2" ,r-ggplot2)
3321 ("r-gridextra" ,r-gridextra)
3322 ("r-matrix" ,r-matrix)
3323 ("r-rcpp" ,r-rcpp)))
3324 (home-page "https://github.com/ctlab/fgsea/")
3325 (synopsis "Fast gene set enrichment analysis")
3326 (description
3327 "The package implements an algorithm for fast gene set enrichment
3328 analysis. Using the fast algorithm allows to make more permutations and get
3329 more fine grained p-values, which allows to use accurate stantard approaches
3330 to multiple hypothesis correction.")
3331 (license license:expat)))
3332
3333 (define-public r-dose
3334 (package
3335 (name "r-dose")
3336 (version "3.12.0")
3337 (source
3338 (origin
3339 (method url-fetch)
3340 (uri (bioconductor-uri "DOSE" version))
3341 (sha256
3342 (base32
3343 "0ss8mr28q0vswxjmhcas0aqag5nl099jbyn5w3ypbbxqwfvf9jj5"))))
3344 (properties `((upstream-name . "DOSE")))
3345 (build-system r-build-system)
3346 (propagated-inputs
3347 `(("r-annotationdbi" ,r-annotationdbi)
3348 ("r-biocparallel" ,r-biocparallel)
3349 ("r-do-db" ,r-do-db)
3350 ("r-fgsea" ,r-fgsea)
3351 ("r-ggplot2" ,r-ggplot2)
3352 ("r-gosemsim" ,r-gosemsim)
3353 ("r-qvalue" ,r-qvalue)
3354 ("r-reshape2" ,r-reshape2)
3355 ("r-s4vectors" ,r-s4vectors)))
3356 (home-page "https://guangchuangyu.github.io/software/DOSE/")
3357 (synopsis "Disease ontology semantic and enrichment analysis")
3358 (description
3359 "This package implements five methods proposed by Resnik, Schlicker,
3360 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
3361 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
3362 including hypergeometric model and gene set enrichment analysis are also
3363 implemented for discovering disease associations of high-throughput biological
3364 data.")
3365 (license license:artistic2.0)))
3366
3367 (define-public r-enrichplot
3368 (package
3369 (name "r-enrichplot")
3370 (version "1.6.0")
3371 (source
3372 (origin
3373 (method url-fetch)
3374 (uri (bioconductor-uri "enrichplot" version))
3375 (sha256
3376 (base32
3377 "1jblx00b869xhx1c4n9m2g1hqr00rm9ywr1hrlx42bdd8k5ax1xh"))))
3378 (build-system r-build-system)
3379 (propagated-inputs
3380 `(("r-annotationdbi" ,r-annotationdbi)
3381 ("r-cowplot" ,r-cowplot)
3382 ("r-dose" ,r-dose)
3383 ("r-europepmc" ,r-europepmc)
3384 ("r-ggplot2" ,r-ggplot2)
3385 ("r-ggplotify" ,r-ggplotify)
3386 ("r-ggraph" ,r-ggraph)
3387 ("r-ggridges" ,r-ggridges)
3388 ("r-gosemsim" ,r-gosemsim)
3389 ("r-gridextra" ,r-gridextra)
3390 ("r-igraph" ,r-igraph)
3391 ("r-purrr" ,r-purrr)
3392 ("r-rcolorbrewer" ,r-rcolorbrewer)
3393 ("r-reshape2" ,r-reshape2)))
3394 (home-page "https://github.com/GuangchuangYu/enrichplot")
3395 (synopsis "Visualization of functional enrichment result")
3396 (description
3397 "The enrichplot package implements several visualization methods for
3398 interpreting functional enrichment results obtained from ORA or GSEA analyses.
3399 All the visualization methods are developed based on ggplot2 graphics.")
3400 (license license:artistic2.0)))
3401
3402 (define-public r-clusterprofiler
3403 (package
3404 (name "r-clusterprofiler")
3405 (version "3.14.0")
3406 (source
3407 (origin
3408 (method url-fetch)
3409 (uri (bioconductor-uri "clusterProfiler" version))
3410 (sha256
3411 (base32
3412 "0mm9iafrsjb8sj27k9mg40ab13vq4rmrzhaajm6g1wdkb2jqikjk"))))
3413 (properties
3414 `((upstream-name . "clusterProfiler")))
3415 (build-system r-build-system)
3416 (propagated-inputs
3417 `(("r-annotationdbi" ,r-annotationdbi)
3418 ("r-dose" ,r-dose)
3419 ("r-enrichplot" ,r-enrichplot)
3420 ("r-ggplot2" ,r-ggplot2)
3421 ("r-go-db" ,r-go-db)
3422 ("r-gosemsim" ,r-gosemsim)
3423 ("r-magrittr" ,r-magrittr)
3424 ("r-plyr" ,r-plyr)
3425 ("r-qvalue" ,r-qvalue)
3426 ("r-rvcheck" ,r-rvcheck)
3427 ("r-tidyr" ,r-tidyr)))
3428 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
3429 (synopsis "Analysis and visualization of functional profiles for gene clusters")
3430 (description
3431 "This package implements methods to analyze and visualize functional
3432 profiles (GO and KEGG) of gene and gene clusters.")
3433 (license license:artistic2.0)))
3434
3435 (define-public r-mlinterfaces
3436 (package
3437 (name "r-mlinterfaces")
3438 (version "1.66.0")
3439 (source
3440 (origin
3441 (method url-fetch)
3442 (uri (bioconductor-uri "MLInterfaces" version))
3443 (sha256
3444 (base32
3445 "1vnzqd3y3jk1wgxybckzrcgwk0ly7zgcz5ki1ib0bk1jwv6xk5x8"))))
3446 (properties `((upstream-name . "MLInterfaces")))
3447 (build-system r-build-system)
3448 (propagated-inputs
3449 `(("r-annotate" ,r-annotate)
3450 ("r-biobase" ,r-biobase)
3451 ("r-biocgenerics" ,r-biocgenerics)
3452 ("r-cluster" ,r-cluster)
3453 ("r-fpc" ,r-fpc)
3454 ("r-gbm" ,r-gbm)
3455 ("r-gdata" ,r-gdata)
3456 ("r-genefilter" ,r-genefilter)
3457 ("r-ggvis" ,r-ggvis)
3458 ("r-hwriter" ,r-hwriter)
3459 ("r-mass" ,r-mass)
3460 ("r-mlbench" ,r-mlbench)
3461 ("r-pls" ,r-pls)
3462 ("r-rcolorbrewer" ,r-rcolorbrewer)
3463 ("r-rda" ,r-rda)
3464 ("r-rpart" ,r-rpart)
3465 ("r-sfsmisc" ,r-sfsmisc)
3466 ("r-shiny" ,r-shiny)
3467 ("r-threejs" ,r-threejs)))
3468 (home-page "https://bioconductor.org/packages/MLInterfaces/")
3469 (synopsis "Interfaces to R machine learning procedures")
3470 (description
3471 "This package provides uniform interfaces to machine learning code for
3472 data in R and Bioconductor containers.")
3473 ;; Any version of the LGPL.
3474 (license license:lgpl2.1+)))
3475
3476 (define-public r-annaffy
3477 (package
3478 (name "r-annaffy")
3479 (version "1.58.0")
3480 (source
3481 (origin
3482 (method url-fetch)
3483 (uri (bioconductor-uri "annaffy" version))
3484 (sha256
3485 (base32
3486 "1jrf4bq2wky4ay1jrcy60si6hxdcn4j05w5vgs38yfb92gq77i16"))))
3487 (build-system r-build-system)
3488 (arguments
3489 `(#:phases
3490 (modify-phases %standard-phases
3491 (add-after 'unpack 'remove-reference-to-non-free-data
3492 (lambda _
3493 (substitute* "DESCRIPTION"
3494 ((", KEGG.db") ""))
3495 #t)))))
3496 (propagated-inputs
3497 `(("r-annotationdbi" ,r-annotationdbi)
3498 ("r-biobase" ,r-biobase)
3499 ("r-dbi" ,r-dbi)
3500 ("r-go-db" ,r-go-db)))
3501 (home-page "https://bioconductor.org/packages/annaffy/")
3502 (synopsis "Annotation tools for Affymetrix biological metadata")
3503 (description
3504 "This package provides functions for handling data from Bioconductor
3505 Affymetrix annotation data packages. It produces compact HTML and text
3506 reports including experimental data and URL links to many online databases.
3507 It allows searching of biological metadata using various criteria.")
3508 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
3509 ;; the LGPL 2.1 is included.
3510 (license license:lgpl2.1+)))
3511
3512 (define-public r-a4core
3513 (package
3514 (name "r-a4core")
3515 (version "1.34.0")
3516 (source
3517 (origin
3518 (method url-fetch)
3519 (uri (bioconductor-uri "a4Core" version))
3520 (sha256
3521 (base32
3522 "0xcs9wl2yrprl4yc0z5s4zrkil3752k9xc1fi8fcx7zab1mm80df"))))
3523 (properties `((upstream-name . "a4Core")))
3524 (build-system r-build-system)
3525 (propagated-inputs
3526 `(("r-biobase" ,r-biobase)
3527 ("r-glmnet" ,r-glmnet)))
3528 (home-page "https://bioconductor.org/packages/a4Core")
3529 (synopsis "Automated Affymetrix array analysis core package")
3530 (description
3531 "This is the core package for the automated analysis of Affymetrix
3532 arrays.")
3533 (license license:gpl3)))
3534
3535 (define-public r-a4classif
3536 (package
3537 (name "r-a4classif")
3538 (version "1.34.0")
3539 (source
3540 (origin
3541 (method url-fetch)
3542 (uri (bioconductor-uri "a4Classif" version))
3543 (sha256
3544 (base32
3545 "0gj3hdflfs1ybc2kshl9w1dzy0rfzppfj08hx3wa2chjsm0m9brn"))))
3546 (properties `((upstream-name . "a4Classif")))
3547 (build-system r-build-system)
3548 (propagated-inputs
3549 `(("r-a4core" ,r-a4core)
3550 ("r-a4preproc" ,r-a4preproc)
3551 ("r-glmnet" ,r-glmnet)
3552 ("r-mlinterfaces" ,r-mlinterfaces)
3553 ("r-pamr" ,r-pamr)
3554 ("r-rocr" ,r-rocr)
3555 ("r-varselrf" ,r-varselrf)))
3556 (home-page "https://bioconductor.org/packages/a4Classif/")
3557 (synopsis "Automated Affymetrix array analysis classification package")
3558 (description
3559 "This is the classification package for the automated analysis of
3560 Affymetrix arrays.")
3561 (license license:gpl3)))
3562
3563 (define-public r-a4preproc
3564 (package
3565 (name "r-a4preproc")
3566 (version "1.34.0")
3567 (source
3568 (origin
3569 (method url-fetch)
3570 (uri (bioconductor-uri "a4Preproc" version))
3571 (sha256
3572 (base32
3573 "11j5nc33gd6yis1fyagr0y39g21bzkc59kq8b8sd6b3pfc84zrjd"))))
3574 (properties `((upstream-name . "a4Preproc")))
3575 (build-system r-build-system)
3576 (propagated-inputs
3577 `(("r-annotationdbi" ,r-annotationdbi)))
3578 (home-page "https://bioconductor.org/packages/a4Preproc/")
3579 (synopsis "Automated Affymetrix array analysis preprocessing package")
3580 (description
3581 "This is a package for the automated analysis of Affymetrix arrays. It
3582 is used for preprocessing the arrays.")
3583 (license license:gpl3)))
3584
3585 (define-public r-a4reporting
3586 (package
3587 (name "r-a4reporting")
3588 (version "1.34.0")
3589 (source
3590 (origin
3591 (method url-fetch)
3592 (uri (bioconductor-uri "a4Reporting" version))
3593 (sha256
3594 (base32
3595 "15nd4pa5hkdzkhinvqw5ijdqb7k5gk37v2hmk3jsg2d6m0jqphi5"))))
3596 (properties `((upstream-name . "a4Reporting")))
3597 (build-system r-build-system)
3598 (propagated-inputs
3599 `(("r-annaffy" ,r-annaffy)
3600 ("r-xtable" ,r-xtable)))
3601 (home-page "https://bioconductor.org/packages/a4Reporting/")
3602 (synopsis "Automated Affymetrix array analysis reporting package")
3603 (description
3604 "This is a package for the automated analysis of Affymetrix arrays. It
3605 provides reporting features.")
3606 (license license:gpl3)))
3607
3608 (define-public r-a4base
3609 (package
3610 (name "r-a4base")
3611 (version "1.34.0")
3612 (source
3613 (origin
3614 (method url-fetch)
3615 (uri (bioconductor-uri "a4Base" version))
3616 (sha256
3617 (base32
3618 "0dgqyq4dnlcik5qqygnhxlhfr98sh6kmdcj2qllhrwyk0lmsfk01"))))
3619 (properties `((upstream-name . "a4Base")))
3620 (build-system r-build-system)
3621 (propagated-inputs
3622 `(("r-a4core" ,r-a4core)
3623 ("r-a4preproc" ,r-a4preproc)
3624 ("r-annaffy" ,r-annaffy)
3625 ("r-annotationdbi" ,r-annotationdbi)
3626 ("r-biobase" ,r-biobase)
3627 ("r-genefilter" ,r-genefilter)
3628 ("r-glmnet" ,r-glmnet)
3629 ("r-gplots" ,r-gplots)
3630 ("r-limma" ,r-limma)
3631 ("r-mpm" ,r-mpm)
3632 ("r-multtest" ,r-multtest)))
3633 (home-page "https://bioconductor.org/packages/a4Base/")
3634 (synopsis "Automated Affymetrix array analysis base package")
3635 (description
3636 "This package provides basic features for the automated analysis of
3637 Affymetrix arrays.")
3638 (license license:gpl3)))
3639
3640 (define-public r-a4
3641 (package
3642 (name "r-a4")
3643 (version "1.34.0")
3644 (source
3645 (origin
3646 (method url-fetch)
3647 (uri (bioconductor-uri "a4" version))
3648 (sha256
3649 (base32
3650 "14yipy6s2wqr9q0yp09x1mm17npknrhs6yd34i3wrb5id64ywnq4"))))
3651 (build-system r-build-system)
3652 (propagated-inputs
3653 `(("r-a4base" ,r-a4base)
3654 ("r-a4classif" ,r-a4classif)
3655 ("r-a4core" ,r-a4core)
3656 ("r-a4preproc" ,r-a4preproc)
3657 ("r-a4reporting" ,r-a4reporting)))
3658 (home-page "https://bioconductor.org/packages/a4/")
3659 (synopsis "Automated Affymetrix array analysis umbrella package")
3660 (description
3661 "This package provides a software suite for the automated analysis of
3662 Affymetrix arrays.")
3663 (license license:gpl3)))
3664
3665 (define-public r-abseqr
3666 (package
3667 (name "r-abseqr")
3668 (version "1.4.0")
3669 (source
3670 (origin
3671 (method url-fetch)
3672 (uri (bioconductor-uri "abseqR" version))
3673 (sha256
3674 (base32
3675 "1n9h5qkj4njr1f8fvhg9sj9wxcd7hljnnk8m80zwswzs2n9ivppa"))))
3676 (properties `((upstream-name . "abseqR")))
3677 (build-system r-build-system)
3678 (inputs
3679 `(("pandoc" ,ghc-pandoc)))
3680 (propagated-inputs
3681 `(("r-biocparallel" ,r-biocparallel)
3682 ("r-biocstyle" ,r-biocstyle)
3683 ("r-circlize" ,r-circlize)
3684 ("r-flexdashboard" ,r-flexdashboard)
3685 ("r-ggcorrplot" ,r-ggcorrplot)
3686 ("r-ggdendro" ,r-ggdendro)
3687 ("r-ggplot2" ,r-ggplot2)
3688 ("r-gridextra" ,r-gridextra)
3689 ("r-knitr" ,r-knitr)
3690 ("r-plotly" ,r-plotly)
3691 ("r-plyr" ,r-plyr)
3692 ("r-png" ,r-png)
3693 ("r-rcolorbrewer" ,r-rcolorbrewer)
3694 ("r-reshape2" ,r-reshape2)
3695 ("r-rmarkdown" ,r-rmarkdown)
3696 ("r-stringr" ,r-stringr)
3697 ("r-vegan" ,r-vegan)
3698 ("r-venndiagram" ,r-venndiagram)))
3699 (home-page "https://github.com/malhamdoosh/abseqR")
3700 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
3701 (description
3702 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
3703 sequencing datasets generated from antibody libraries and abseqR is one of its
3704 packages. AbseqR empowers the users of abseqPy with plotting and reporting
3705 capabilities and allows them to generate interactive HTML reports for the
3706 convenience of viewing and sharing with other researchers. Additionally,
3707 abseqR extends abseqPy to compare multiple repertoire analyses and perform
3708 further downstream analysis on its output.")
3709 (license license:gpl3)))
3710
3711 (define-public r-bacon
3712 (package
3713 (name "r-bacon")
3714 (version "1.14.0")
3715 (source
3716 (origin
3717 (method url-fetch)
3718 (uri (bioconductor-uri "bacon" version))
3719 (sha256
3720 (base32
3721 "1q18vm4znl47v56cnvx9y5ygrial2mdjpl8x1043jq00kyygrc86"))))
3722 (build-system r-build-system)
3723 (propagated-inputs
3724 `(("r-biocparallel" ,r-biocparallel)
3725 ("r-ellipse" ,r-ellipse)
3726 ("r-ggplot2" ,r-ggplot2)))
3727 (home-page "https://bioconductor.org/packages/bacon/")
3728 (synopsis "Controlling bias and inflation in association studies")
3729 (description
3730 "Bacon can be used to remove inflation and bias often observed in
3731 epigenome- and transcriptome-wide association studies. To this end bacon
3732 constructs an empirical null distribution using a Gibbs Sampling algorithm by
3733 fitting a three-component normal mixture on z-scores.")
3734 (license license:gpl2+)))
3735
3736 (define-public r-rgadem
3737 (package
3738 (name "r-rgadem")
3739 (version "2.34.0")
3740 (source
3741 (origin
3742 (method url-fetch)
3743 (uri (bioconductor-uri "rGADEM" version))
3744 (sha256
3745 (base32
3746 "14ylbrzb9haqwfdd9g813mzhll6gwvqf2r7cmbaxz5lkl0j0nglx"))))
3747 (properties `((upstream-name . "rGADEM")))
3748 (build-system r-build-system)
3749 (propagated-inputs
3750 `(("r-biostrings" ,r-biostrings)
3751 ("r-bsgenome" ,r-bsgenome)
3752 ("r-iranges" ,r-iranges)
3753 ("r-seqlogo" ,r-seqlogo)))
3754 (home-page "https://bioconductor.org/packages/rGADEM/")
3755 (synopsis "De novo sequence motif discovery")
3756 (description
3757 "rGADEM is an efficient de novo motif discovery tool for large-scale
3758 genomic sequence data.")
3759 (license license:artistic2.0)))
3760
3761 (define-public r-motiv
3762 (package
3763 (name "r-motiv")
3764 (version "1.42.0")
3765 (source
3766 (origin
3767 (method url-fetch)
3768 (uri (bioconductor-uri "MotIV" version))
3769 (sha256
3770 (base32
3771 "07k4rw4nhcn4sg43psv1h7qr064gws22m2yyr7x8sy3f1i1c954k"))))
3772 (properties `((upstream-name . "MotIV")))
3773 (build-system r-build-system)
3774 (inputs
3775 `(("gsl" ,gsl)))
3776 (propagated-inputs
3777 `(("r-biocgenerics" ,r-biocgenerics)
3778 ("r-biostrings" ,r-biostrings)
3779 ("r-genomicranges" ,r-genomicranges)
3780 ("r-iranges" ,r-iranges)
3781 ("r-lattice" ,r-lattice)
3782 ("r-rgadem" ,r-rgadem)
3783 ("r-s4vectors" ,r-s4vectors)))
3784 (home-page "https://bioconductor.org/packages/MotIV/")
3785 (synopsis "Motif identification and validation")
3786 (description
3787 "This package is used for the identification and validation of sequence
3788 motifs. It makes use of STAMP for comparing a set of motifs to a given
3789 database (e.g. JASPAR). It can also be used to visualize motifs, motif
3790 distributions, modules and filter motifs.")
3791 (license license:gpl2)))
3792
3793 (define-public r-motifstack
3794 (package
3795 (name "r-motifstack")
3796 (version "1.30.0")
3797 (source
3798 (origin
3799 (method url-fetch)
3800 (uri (bioconductor-uri "motifStack" version))
3801 (sha256
3802 (base32
3803 "00rafqs1gqlcxlbsdn9qnq9xb7wjphiksb3hsx76viqjbjzi14wg"))))
3804 (properties `((upstream-name . "motifStack")))
3805 (build-system r-build-system)
3806 (propagated-inputs
3807 `(("r-ade4" ,r-ade4)
3808 ("r-biostrings" ,r-biostrings)
3809 ("r-ggplot2" ,r-ggplot2)
3810 ("r-grimport2" ,r-grimport2)
3811 ("r-htmlwidgets" ,r-htmlwidgets)
3812 ("r-motiv" ,r-motiv)
3813 ("r-scales" ,r-scales)
3814 ("r-xml" ,r-xml)))
3815 (home-page "https://bioconductor.org/packages/motifStack/")
3816 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
3817 (description
3818 "The motifStack package is designed for graphic representation of
3819 multiple motifs with different similarity scores. It works with both DNA/RNA
3820 sequence motifs and amino acid sequence motifs. In addition, it provides the
3821 flexibility for users to customize the graphic parameters such as the font
3822 type and symbol colors.")
3823 (license license:gpl2+)))
3824
3825 (define-public r-genomicscores
3826 (package
3827 (name "r-genomicscores")
3828 (version "1.10.0")
3829 (source
3830 (origin
3831 (method url-fetch)
3832 (uri (bioconductor-uri "GenomicScores" version))
3833 (sha256
3834 (base32
3835 "175iaqv7npa11yw48vmqpgx0qqs3g44c3dsya7ccwd1lg97fznkj"))))
3836 (properties `((upstream-name . "GenomicScores")))
3837 (build-system r-build-system)
3838 (propagated-inputs
3839 `(("r-annotationhub" ,r-annotationhub)
3840 ("r-biobase" ,r-biobase)
3841 ("r-biocgenerics" ,r-biocgenerics)
3842 ("r-biostrings" ,r-biostrings)
3843 ("r-bsgenome" ,r-bsgenome)
3844 ("r-genomeinfodb" ,r-genomeinfodb)
3845 ("r-genomicranges" ,r-genomicranges)
3846 ("r-iranges" ,r-iranges)
3847 ("r-s4vectors" ,r-s4vectors)
3848 ("r-xml" ,r-xml)))
3849 (home-page "https://github.com/rcastelo/GenomicScores/")
3850 (synopsis "Work with genome-wide position-specific scores")
3851 (description
3852 "This package provides infrastructure to store and access genome-wide
3853 position-specific scores within R and Bioconductor.")
3854 (license license:artistic2.0)))
3855
3856 (define-public r-atacseqqc
3857 (package
3858 (name "r-atacseqqc")
3859 (version "1.10.1")
3860 (source
3861 (origin
3862 (method url-fetch)
3863 (uri (bioconductor-uri "ATACseqQC" version))
3864 (sha256
3865 (base32
3866 "12ix0bvwk50d48z85f3453k7szm1j27gk4qgw56az4fxra472rlh"))))
3867 (properties `((upstream-name . "ATACseqQC")))
3868 (build-system r-build-system)
3869 (propagated-inputs
3870 `(("r-biocgenerics" ,r-biocgenerics)
3871 ("r-biostrings" ,r-biostrings)
3872 ("r-bsgenome" ,r-bsgenome)
3873 ("r-chippeakanno" ,r-chippeakanno)
3874 ("r-edger" ,r-edger)
3875 ("r-genomeinfodb" ,r-genomeinfodb)
3876 ("r-genomicalignments" ,r-genomicalignments)
3877 ("r-genomicranges" ,r-genomicranges)
3878 ("r-genomicscores" ,r-genomicscores)
3879 ("r-iranges" ,r-iranges)
3880 ("r-kernsmooth" ,r-kernsmooth)
3881 ("r-limma" ,r-limma)
3882 ("r-motifstack" ,r-motifstack)
3883 ("r-preseqr" ,r-preseqr)
3884 ("r-randomforest" ,r-randomforest)
3885 ("r-rsamtools" ,r-rsamtools)
3886 ("r-rtracklayer" ,r-rtracklayer)
3887 ("r-s4vectors" ,r-s4vectors)))
3888 (home-page "https://bioconductor.org/packages/ATACseqQC/")
3889 (synopsis "ATAC-seq quality control")
3890 (description
3891 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
3892 sequencing, is a rapid and sensitive method for chromatin accessibility
3893 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
3894 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
3895 assess whether their ATAC-seq experiment is successful. It includes
3896 diagnostic plots of fragment size distribution, proportion of mitochondria
3897 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
3898 footprints.")
3899 (license license:gpl2+)))
3900
3901 (define-public r-gofuncr
3902 (package
3903 (name "r-gofuncr")
3904 (version "1.6.0")
3905 (source
3906 (origin
3907 (method url-fetch)
3908 (uri (bioconductor-uri "GOfuncR" version))
3909 (sha256
3910 (base32
3911 "0hmi13pz923fm95asys615rih63b1i2nvynfczr1zcsc9fzn4h35"))))
3912 (properties `((upstream-name . "GOfuncR")))
3913 (build-system r-build-system)
3914 (propagated-inputs
3915 `(("r-annotationdbi" ,r-annotationdbi)
3916 ("r-genomicranges" ,r-genomicranges)
3917 ("r-gtools" ,r-gtools)
3918 ("r-iranges" ,r-iranges)
3919 ("r-mapplots" ,r-mapplots)
3920 ("r-rcpp" ,r-rcpp)
3921 ("r-vioplot" ,r-vioplot)))
3922 (home-page "https://bioconductor.org/packages/GOfuncR/")
3923 (synopsis "Gene ontology enrichment using FUNC")
3924 (description
3925 "GOfuncR performs a gene ontology enrichment analysis based on the
3926 ontology enrichment software FUNC. GO-annotations are obtained from
3927 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
3928 included in the package and updated regularly. GOfuncR provides the standard
3929 candidate vs background enrichment analysis using the hypergeometric test, as
3930 well as three additional tests:
3931
3932 @enumerate
3933 @item the Wilcoxon rank-sum test that is used when genes are ranked,
3934 @item a binomial test that is used when genes are associated with two counts,
3935 and
3936 @item a Chi-square or Fisher's exact test that is used in cases when genes are
3937 associated with four counts.
3938 @end enumerate
3939
3940 To correct for multiple testing and interdependency of the tests, family-wise
3941 error rates are computed based on random permutations of the gene-associated
3942 variables. GOfuncR also provides tools for exploring the ontology graph and
3943 the annotations, and options to take gene-length or spatial clustering of
3944 genes into account. It is also possible to provide custom gene coordinates,
3945 annotations and ontologies.")
3946 (license license:gpl2+)))
3947
3948 (define-public r-abaenrichment
3949 (package
3950 (name "r-abaenrichment")
3951 (version "1.16.0")
3952 (source
3953 (origin
3954 (method url-fetch)
3955 (uri (bioconductor-uri "ABAEnrichment" version))
3956 (sha256
3957 (base32
3958 "128ik28j8kmdkycffhxajv5h174zdq9sfn2gz6ai90wgkdadbzwp"))))
3959 (properties `((upstream-name . "ABAEnrichment")))
3960 (build-system r-build-system)
3961 (propagated-inputs
3962 `(("r-abadata" ,r-abadata)
3963 ("r-data-table" ,r-data-table)
3964 ("r-gofuncr" ,r-gofuncr)
3965 ("r-gplots" ,r-gplots)
3966 ("r-gtools" ,r-gtools)
3967 ("r-rcpp" ,r-rcpp)))
3968 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
3969 (synopsis "Gene expression enrichment in human brain regions")
3970 (description
3971 "The package ABAEnrichment is designed to test for enrichment of user
3972 defined candidate genes in the set of expressed genes in different human brain
3973 regions. The core function @code{aba_enrich} integrates the expression of the
3974 candidate gene set (averaged across donors) and the structural information of
3975 the brain using an ontology, both provided by the Allen Brain Atlas project.")
3976 (license license:gpl2+)))
3977
3978 (define-public r-annotationfuncs
3979 (package
3980 (name "r-annotationfuncs")
3981 (version "1.36.0")
3982 (source
3983 (origin
3984 (method url-fetch)
3985 (uri (bioconductor-uri "AnnotationFuncs" version))
3986 (sha256
3987 (base32
3988 "0ws14b1ibqml7w8kj0gi7wdp6wd8dcdpnrmcxldjzsyawf17q0yq"))))
3989 (properties
3990 `((upstream-name . "AnnotationFuncs")))
3991 (build-system r-build-system)
3992 (propagated-inputs
3993 `(("r-annotationdbi" ,r-annotationdbi)
3994 ("r-dbi" ,r-dbi)))
3995 (home-page "https://www.iysik.com/r/annotationfuncs")
3996 (synopsis "Annotation translation functions")
3997 (description
3998 "This package provides functions for handling translating between
3999 different identifieres using the Biocore Data Team data-packages (e.g.
4000 @code{org.Bt.eg.db}).")
4001 (license license:gpl2)))
4002
4003 (define-public r-annotationtools
4004 (package
4005 (name "r-annotationtools")
4006 (version "1.60.0")
4007 (source
4008 (origin
4009 (method url-fetch)
4010 (uri (bioconductor-uri "annotationTools" version))
4011 (sha256
4012 (base32
4013 "1cq7ayq2swp2ahlphz74nh5mb869rgyyr0kkqy1mxyilk8k2g44i"))))
4014 (properties
4015 `((upstream-name . "annotationTools")))
4016 (build-system r-build-system)
4017 (propagated-inputs `(("r-biobase" ,r-biobase)))
4018 (home-page "https://bioconductor.org/packages/annotationTools/")
4019 (synopsis "Annotate microarrays and perform gene expression analyses")
4020 (description
4021 "This package provides functions to annotate microarrays, find orthologs,
4022 and integrate heterogeneous gene expression profiles using annotation and
4023 other molecular biology information available as flat file database (plain
4024 text files).")
4025 ;; Any version of the GPL.
4026 (license (list license:gpl2+))))
4027
4028 (define-public r-allelicimbalance
4029 (package
4030 (name "r-allelicimbalance")
4031 (version "1.24.0")
4032 (source
4033 (origin
4034 (method url-fetch)
4035 (uri (bioconductor-uri "AllelicImbalance" version))
4036 (sha256
4037 (base32
4038 "0vy8w7ii2qljsmq8lr21lygkcrsshc7syyqhadlbxyj3scgi7kyc"))))
4039 (properties
4040 `((upstream-name . "AllelicImbalance")))
4041 (build-system r-build-system)
4042 (propagated-inputs
4043 `(("r-annotationdbi" ,r-annotationdbi)
4044 ("r-biocgenerics" ,r-biocgenerics)
4045 ("r-biostrings" ,r-biostrings)
4046 ("r-bsgenome" ,r-bsgenome)
4047 ("r-genomeinfodb" ,r-genomeinfodb)
4048 ("r-genomicalignments" ,r-genomicalignments)
4049 ("r-genomicfeatures" ,r-genomicfeatures)
4050 ("r-genomicranges" ,r-genomicranges)
4051 ("r-gridextra" ,r-gridextra)
4052 ("r-gviz" ,r-gviz)
4053 ("r-iranges" ,r-iranges)
4054 ("r-lattice" ,r-lattice)
4055 ("r-latticeextra" ,r-latticeextra)
4056 ("r-nlme" ,r-nlme)
4057 ("r-rsamtools" ,r-rsamtools)
4058 ("r-s4vectors" ,r-s4vectors)
4059 ("r-seqinr" ,r-seqinr)
4060 ("r-summarizedexperiment" ,r-summarizedexperiment)
4061 ("r-variantannotation" ,r-variantannotation)))
4062 (home-page "https://github.com/pappewaio/AllelicImbalance")
4063 (synopsis "Investigate allele-specific expression")
4064 (description
4065 "This package provides a framework for allele-specific expression
4066 investigation using RNA-seq data.")
4067 (license license:gpl3)))
4068
4069 (define-public r-aucell
4070 (package
4071 (name "r-aucell")
4072 (version "1.8.0")
4073 (source
4074 (origin
4075 (method url-fetch)
4076 (uri (bioconductor-uri "AUCell" version))
4077 (sha256
4078 (base32
4079 "1g4mdq8z29fjxrfjng0fb3cvbph49mwds4ijsa2bn2k6f75dnzky"))))
4080 (properties `((upstream-name . "AUCell")))
4081 (build-system r-build-system)
4082 (propagated-inputs
4083 `(("r-biocgenerics" ,r-biocgenerics)
4084 ("r-data-table" ,r-data-table)
4085 ("r-gseabase" ,r-gseabase)
4086 ("r-mixtools" ,r-mixtools)
4087 ("r-r-utils" ,r-r-utils)
4088 ("r-s4vectors" ,r-s4vectors)
4089 ("r-shiny" ,r-shiny)
4090 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4091 (home-page "https://bioconductor.org/packages/AUCell/")
4092 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
4093 (description
4094 "AUCell allows to identify cells with active gene sets (e.g. signatures,
4095 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
4096 Under the Curve} (AUC) to calculate whether a critical subset of the input
4097 gene set is enriched within the expressed genes for each cell. The
4098 distribution of AUC scores across all the cells allows exploring the relative
4099 expression of the signature. Since the scoring method is ranking-based,
4100 AUCell is independent of the gene expression units and the normalization
4101 procedure. In addition, since the cells are evaluated individually, it can
4102 easily be applied to bigger datasets, subsetting the expression matrix if
4103 needed.")
4104 (license license:gpl3)))
4105
4106 (define-public r-ebimage
4107 (package
4108 (name "r-ebimage")
4109 (version "4.28.1")
4110 (source
4111 (origin
4112 (method url-fetch)
4113 (uri (bioconductor-uri "EBImage" version))
4114 (sha256
4115 (base32
4116 "0q54q2nw6p1s4nrj1l8qz78m67xcysj2x82zs43my8iv2g9iifgs"))))
4117 (properties `((upstream-name . "EBImage")))
4118 (build-system r-build-system)
4119 (propagated-inputs
4120 `(("r-abind" ,r-abind)
4121 ("r-biocgenerics" ,r-biocgenerics)
4122 ("r-fftwtools" ,r-fftwtools)
4123 ("r-htmltools" ,r-htmltools)
4124 ("r-htmlwidgets" ,r-htmlwidgets)
4125 ("r-jpeg" ,r-jpeg)
4126 ("r-locfit" ,r-locfit)
4127 ("r-png" ,r-png)
4128 ("r-rcurl" ,r-rcurl)
4129 ("r-tiff" ,r-tiff)))
4130 (native-inputs
4131 `(("r-knitr" ,r-knitr))) ; for vignettes
4132 (home-page "https://github.com/aoles/EBImage")
4133 (synopsis "Image processing and analysis toolbox for R")
4134 (description
4135 "EBImage provides general purpose functionality for image processing and
4136 analysis. In the context of (high-throughput) microscopy-based cellular
4137 assays, EBImage offers tools to segment cells and extract quantitative
4138 cellular descriptors. This allows the automation of such tasks using the R
4139 programming language and facilitates the use of other tools in the R
4140 environment for signal processing, statistical modeling, machine learning and
4141 visualization with image data.")
4142 ;; Any version of the LGPL.
4143 (license license:lgpl2.1+)))
4144
4145 (define-public r-yamss
4146 (package
4147 (name "r-yamss")
4148 (version "1.12.0")
4149 (source
4150 (origin
4151 (method url-fetch)
4152 (uri (bioconductor-uri "yamss" version))
4153 (sha256
4154 (base32
4155 "1n49a2vg1667wycrjww29xfafngllvpb5nq5wy6pgn0akva91nky"))))
4156 (build-system r-build-system)
4157 (propagated-inputs
4158 `(("r-biocgenerics" ,r-biocgenerics)
4159 ("r-data-table" ,r-data-table)
4160 ("r-ebimage" ,r-ebimage)
4161 ("r-iranges" ,r-iranges)
4162 ("r-limma" ,r-limma)
4163 ("r-matrix" ,r-matrix)
4164 ("r-mzr" ,r-mzr)
4165 ("r-s4vectors" ,r-s4vectors)
4166 ("r-summarizedexperiment"
4167 ,r-summarizedexperiment)))
4168 (home-page "https://github.com/hansenlab/yamss")
4169 (synopsis "Tools for high-throughput metabolomics")
4170 (description
4171 "This package provides tools to analyze and visualize high-throughput
4172 metabolomics data acquired using chromatography-mass spectrometry. These tools
4173 preprocess data in a way that enables reliable and powerful differential
4174 analysis.")
4175 (license license:artistic2.0)))
4176
4177 (define-public r-gtrellis
4178 (package
4179 (name "r-gtrellis")
4180 (version "1.18.0")
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (bioconductor-uri "gtrellis" version))
4185 (sha256
4186 (base32
4187 "0mgspmv6p1a2k98jyy2dfl0wpa2vh7bhnjfm2xaqmcsxzmbjhh9z"))))
4188 (build-system r-build-system)
4189 (propagated-inputs
4190 `(("r-circlize" ,r-circlize)
4191 ("r-genomicranges" ,r-genomicranges)
4192 ("r-getoptlong" ,r-getoptlong)
4193 ("r-iranges" ,r-iranges)))
4194 (home-page "https://github.com/jokergoo/gtrellis")
4195 (synopsis "Genome level Trellis layout")
4196 (description
4197 "Genome level Trellis graph visualizes genomic data conditioned by
4198 genomic categories (e.g. chromosomes). For each genomic category, multiple
4199 dimensional data which are represented as tracks describe different features
4200 from different aspects. This package provides high flexibility to arrange
4201 genomic categories and to add self-defined graphics in the plot.")
4202 (license license:expat)))
4203
4204 (define-public r-somaticsignatures
4205 (package
4206 (name "r-somaticsignatures")
4207 (version "2.22.0")
4208 (source
4209 (origin
4210 (method url-fetch)
4211 (uri (bioconductor-uri "SomaticSignatures" version))
4212 (sha256
4213 (base32
4214 "1gvrkahllwz38g3hn9pjlikhfqz19a4qglcqmyrxk7h9ybx5zy5z"))))
4215 (properties
4216 `((upstream-name . "SomaticSignatures")))
4217 (build-system r-build-system)
4218 (propagated-inputs
4219 `(("r-biobase" ,r-biobase)
4220 ("r-biostrings" ,r-biostrings)
4221 ("r-genomeinfodb" ,r-genomeinfodb)
4222 ("r-genomicranges" ,r-genomicranges)
4223 ("r-ggbio" ,r-ggbio)
4224 ("r-ggplot2" ,r-ggplot2)
4225 ("r-iranges" ,r-iranges)
4226 ("r-nmf" ,r-nmf)
4227 ("r-pcamethods" ,r-pcamethods)
4228 ("r-proxy" ,r-proxy)
4229 ("r-reshape2" ,r-reshape2)
4230 ("r-s4vectors" ,r-s4vectors)
4231 ("r-variantannotation" ,r-variantannotation)))
4232 (home-page "https://github.com/juliangehring/SomaticSignatures")
4233 (synopsis "Somatic signatures")
4234 (description
4235 "This package identifies mutational signatures of @dfn{single nucleotide
4236 variants} (SNVs). It provides a infrastructure related to the methodology
4237 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
4238 decomposition algorithms.")
4239 (license license:expat)))
4240
4241 (define-public r-yapsa
4242 (package
4243 (name "r-yapsa")
4244 (version "1.12.0")
4245 (source
4246 (origin
4247 (method url-fetch)
4248 (uri (bioconductor-uri "YAPSA" version))
4249 (sha256
4250 (base32
4251 "132x51f8k8zyx6j8jk05x4lr9q1hlblgvr69wkhn0q3f8mhaj926"))))
4252 (properties `((upstream-name . "YAPSA")))
4253 (build-system r-build-system)
4254 (propagated-inputs
4255 `(("r-circlize" ,r-circlize)
4256 ("r-complexheatmap" ,r-complexheatmap)
4257 ("r-corrplot" ,r-corrplot)
4258 ("r-dendextend" ,r-dendextend)
4259 ("r-genomeinfodb" ,r-genomeinfodb)
4260 ("r-genomicranges" ,r-genomicranges)
4261 ("r-getoptlong" ,r-getoptlong)
4262 ("r-ggplot2" ,r-ggplot2)
4263 ("r-gridextra" ,r-gridextra)
4264 ("r-gtrellis" ,r-gtrellis)
4265 ("r-keggrest" ,r-keggrest)
4266 ("r-lsei" ,r-lsei)
4267 ("r-pmcmr" ,r-pmcmr)
4268 ("r-reshape2" ,r-reshape2)
4269 ("r-somaticsignatures" ,r-somaticsignatures)
4270 ("r-variantannotation" ,r-variantannotation)))
4271 (home-page "https://bioconductor.org/packages/YAPSA/")
4272 (synopsis "Yet another package for signature analysis")
4273 (description
4274 "This package provides functions and routines useful in the analysis of
4275 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
4276 functions to perform a signature analysis with known signatures and a
4277 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
4278 provided.")
4279 (license license:gpl3)))
4280
4281 (define-public r-gcrma
4282 (package
4283 (name "r-gcrma")
4284 (version "2.58.0")
4285 (source
4286 (origin
4287 (method url-fetch)
4288 (uri (bioconductor-uri "gcrma" version))
4289 (sha256
4290 (base32
4291 "0c9sa9ldlcpdcjdan8m4ndnyaisr6wbarq486sl44ikh7wf1csfx"))))
4292 (build-system r-build-system)
4293 (propagated-inputs
4294 `(("r-affy" ,r-affy)
4295 ("r-affyio" ,r-affyio)
4296 ("r-biobase" ,r-biobase)
4297 ("r-biocmanager" ,r-biocmanager)
4298 ("r-biostrings" ,r-biostrings)
4299 ("r-xvector" ,r-xvector)))
4300 (home-page "https://bioconductor.org/packages/gcrma/")
4301 (synopsis "Background adjustment using sequence information")
4302 (description
4303 "Gcrma adjusts for background intensities in Affymetrix array data which
4304 include optical noise and @dfn{non-specific binding} (NSB). The main function
4305 @code{gcrma} converts background adjusted probe intensities to expression
4306 measures using the same normalization and summarization methods as a
4307 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
4308 to estimate probe affinity to NSB. The sequence information is summarized in
4309 a more complex way than the simple GC content. Instead, the base types (A, T,
4310 G or C) at each position along the probe determine the affinity of each probe.
4311 The parameters of the position-specific base contributions to the probe
4312 affinity is estimated in an NSB experiment in which only NSB but no
4313 gene-specific bidning is expected.")
4314 ;; Any version of the LGPL
4315 (license license:lgpl2.1+)))
4316
4317 (define-public r-simpleaffy
4318 (package
4319 (name "r-simpleaffy")
4320 (version "2.62.0")
4321 (source
4322 (origin
4323 (method url-fetch)
4324 (uri (bioconductor-uri "simpleaffy" version))
4325 (sha256
4326 (base32
4327 "18bz3pfgp0f7906flrljx97ann8s71pnb8gpw7nah46n8vqc0xcs"))))
4328 (build-system r-build-system)
4329 (propagated-inputs
4330 `(("r-affy" ,r-affy)
4331 ("r-biobase" ,r-biobase)
4332 ("r-biocgenerics" ,r-biocgenerics)
4333 ("r-gcrma" ,r-gcrma)
4334 ("r-genefilter" ,r-genefilter)))
4335 (home-page "https://bioconductor.org/packages/simpleaffy/")
4336 (synopsis "Very simple high level analysis of Affymetrix data")
4337 (description
4338 "This package provides high level functions for reading Affy @file{.CEL}
4339 files, phenotypic data, and then computing simple things with it, such as
4340 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
4341 library. It also has some basic scatter plot functions and mechanisms for
4342 generating high resolution journal figures.")
4343 (license license:gpl2+)))
4344
4345 (define-public r-yaqcaffy
4346 (package
4347 (name "r-yaqcaffy")
4348 (version "1.46.0")
4349 (source
4350 (origin
4351 (method url-fetch)
4352 (uri (bioconductor-uri "yaqcaffy" version))
4353 (sha256
4354 (base32
4355 "0kzzqsf1lfbcmy95w2z0c9qrvp7mbwm50k2l9wvz3xa5wz6xa7gz"))))
4356 (build-system r-build-system)
4357 (propagated-inputs
4358 `(("r-simpleaffy" ,r-simpleaffy)))
4359 (home-page "https://bioconductor.org/packages/yaqcaffy/")
4360 (synopsis "Affymetrix quality control and reproducibility analysis")
4361 (description
4362 "This is a package that can be used for quality control of Affymetrix
4363 GeneChip expression data and reproducibility analysis of human whole genome
4364 chips with the MAQC reference datasets.")
4365 (license license:artistic2.0)))
4366
4367 (define-public r-quantro
4368 (package
4369 (name "r-quantro")
4370 (version "1.20.0")
4371 (source
4372 (origin
4373 (method url-fetch)
4374 (uri (bioconductor-uri "quantro" version))
4375 (sha256
4376 (base32
4377 "09f3x1j50ll5hhn3qwys5x06mii3fqsrk6dkvsxai0kdxv9cjz9m"))))
4378 (build-system r-build-system)
4379 (propagated-inputs
4380 `(("r-biobase" ,r-biobase)
4381 ("r-doparallel" ,r-doparallel)
4382 ("r-foreach" ,r-foreach)
4383 ("r-ggplot2" ,r-ggplot2)
4384 ("r-iterators" ,r-iterators)
4385 ("r-minfi" ,r-minfi)
4386 ("r-rcolorbrewer" ,r-rcolorbrewer)))
4387 (home-page "https://bioconductor.org/packages/quantro/")
4388 (synopsis "Test for when to use quantile normalization")
4389 (description
4390 "This package provides a data-driven test for the assumptions of quantile
4391 normalization using raw data such as objects that inherit eSets (e.g.
4392 ExpressionSet, MethylSet). Group level information about each sample (such as
4393 Tumor / Normal status) must also be provided because the test assesses if
4394 there are global differences in the distributions between the user-defined
4395 groups.")
4396 (license license:gpl3+)))
4397
4398 (define-public r-yarn
4399 (package
4400 (name "r-yarn")
4401 (version "1.12.0")
4402 (source
4403 (origin
4404 (method url-fetch)
4405 (uri (bioconductor-uri "yarn" version))
4406 (sha256
4407 (base32
4408 "0891a10adkhm1zpm7fpcxc2xfxjf9yrpckaz87b2wdjdiwivc4cp"))))
4409 (build-system r-build-system)
4410 (propagated-inputs
4411 `(("r-biobase" ,r-biobase)
4412 ("r-biomart" ,r-biomart)
4413 ("r-downloader" ,r-downloader)
4414 ("r-edger" ,r-edger)
4415 ("r-gplots" ,r-gplots)
4416 ("r-limma" ,r-limma)
4417 ("r-matrixstats" ,r-matrixstats)
4418 ("r-preprocesscore" ,r-preprocesscore)
4419 ("r-quantro" ,r-quantro)
4420 ("r-rcolorbrewer" ,r-rcolorbrewer)
4421 ("r-readr" ,r-readr)))
4422 (home-page "https://bioconductor.org/packages/yarn/")
4423 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
4424 (description
4425 "Expedite large RNA-Seq analyses using a combination of previously
4426 developed tools. YARN is meant to make it easier for the user in performing
4427 basic mis-annotation quality control, filtering, and condition-aware
4428 normalization. YARN leverages many Bioconductor tools and statistical
4429 techniques to account for the large heterogeneity and sparsity found in very
4430 large RNA-seq experiments.")
4431 (license license:artistic2.0)))
4432
4433 (define-public r-roar
4434 (package
4435 (name "r-roar")
4436 (version "1.22.0")
4437 (source
4438 (origin
4439 (method url-fetch)
4440 (uri (bioconductor-uri "roar" version))
4441 (sha256
4442 (base32
4443 "1nqw0agx9x8ycdf0gw17fdlnmzpw9x3zig1wcy10xpyhyjdbbi06"))))
4444 (build-system r-build-system)
4445 (propagated-inputs
4446 `(("r-biocgenerics" ,r-biocgenerics)
4447 ("r-genomeinfodb" ,r-genomeinfodb)
4448 ("r-genomicalignments" ,r-genomicalignments)
4449 ("r-genomicranges" ,r-genomicranges)
4450 ("r-iranges" ,r-iranges)
4451 ("r-rtracklayer" ,r-rtracklayer)
4452 ("r-s4vectors" ,r-s4vectors)
4453 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4454 (home-page "https://github.com/vodkatad/roar/")
4455 (synopsis "Identify differential APA usage from RNA-seq alignments")
4456 (description
4457 "This package provides tools for identifying preferential usage of APA
4458 sites, comparing two biological conditions, starting from known alternative
4459 sites and alignments obtained from standard RNA-seq experiments.")
4460 (license license:gpl3)))
4461
4462 (define-public r-xbseq
4463 (package
4464 (name "r-xbseq")
4465 (version "1.18.0")
4466 (source
4467 (origin
4468 (method url-fetch)
4469 (uri (bioconductor-uri "XBSeq" version))
4470 (sha256
4471 (base32
4472 "1qr5gvf8jcx6r0ac7d2wmnikswmp3k71lirnw7dyr6fndzrdz9lp"))))
4473 (properties `((upstream-name . "XBSeq")))
4474 (build-system r-build-system)
4475 (propagated-inputs
4476 `(("r-biobase" ,r-biobase)
4477 ("r-deseq2" ,r-deseq2)
4478 ("r-dplyr" ,r-dplyr)
4479 ("r-ggplot2" ,r-ggplot2)
4480 ("r-locfit" ,r-locfit)
4481 ("r-magrittr" ,r-magrittr)
4482 ("r-matrixstats" ,r-matrixstats)
4483 ("r-pracma" ,r-pracma)
4484 ("r-roar" ,r-roar)))
4485 (home-page "https://github.com/Liuy12/XBSeq")
4486 (synopsis "Test for differential expression for RNA-seq data")
4487 (description
4488 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
4489 expression} (DE), where a statistical model was established based on the
4490 assumption that observed signals are the convolution of true expression
4491 signals and sequencing noises. The mapped reads in non-exonic regions are
4492 considered as sequencing noises, which follows a Poisson distribution. Given
4493 measurable observed signal and background noise from RNA-seq data, true
4494 expression signals, assuming governed by the negative binomial distribution,
4495 can be delineated and thus the accurate detection of differential expressed
4496 genes.")
4497 (license license:gpl3+)))
4498
4499 (define-public r-massspecwavelet
4500 (package
4501 (name "r-massspecwavelet")
4502 (version "1.52.0")
4503 (source
4504 (origin
4505 (method url-fetch)
4506 (uri (bioconductor-uri "MassSpecWavelet" version))
4507 (sha256
4508 (base32
4509 "0xnj3ncrwvr2b8msi3g77mgzj0zaksn3lgqdn1abh0ww5wgk83v7"))))
4510 (properties
4511 `((upstream-name . "MassSpecWavelet")))
4512 (build-system r-build-system)
4513 (propagated-inputs
4514 `(("r-waveslim" ,r-waveslim)))
4515 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
4516 (synopsis "Mass spectrum processing by wavelet-based algorithms")
4517 (description
4518 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
4519 data mainly through the use of wavelet transforms. It supports peak detection
4520 based on @dfn{Continuous Wavelet Transform} (CWT).")
4521 (license license:lgpl2.0+)))
4522
4523 (define-public r-xcms
4524 (package
4525 (name "r-xcms")
4526 (version "3.8.1")
4527 (source
4528 (origin
4529 (method url-fetch)
4530 (uri (bioconductor-uri "xcms" version))
4531 (sha256
4532 (base32
4533 "18iglvlvlxrdwn2apdvihj9jxmx0kwm5z37rml67xcj9sfdi3bjb"))))
4534 (build-system r-build-system)
4535 (propagated-inputs
4536 `(("r-biobase" ,r-biobase)
4537 ("r-biocgenerics" ,r-biocgenerics)
4538 ("r-biocparallel" ,r-biocparallel)
4539 ("r-iranges" ,r-iranges)
4540 ("r-lattice" ,r-lattice)
4541 ("r-massspecwavelet" ,r-massspecwavelet)
4542 ("r-msnbase" ,r-msnbase)
4543 ("r-multtest" ,r-multtest)
4544 ("r-mzr" ,r-mzr)
4545 ("r-plyr" ,r-plyr)
4546 ("r-protgenerics" ,r-protgenerics)
4547 ("r-rann" ,r-rann)
4548 ("r-rcolorbrewer" ,r-rcolorbrewer)
4549 ("r-robustbase" ,r-robustbase)
4550 ("r-s4vectors" ,r-s4vectors)))
4551 (home-page "https://bioconductor.org/packages/xcms/")
4552 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
4553 (description
4554 "This package provides a framework for processing and visualization of
4555 chromatographically separated and single-spectra mass spectral data. It
4556 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
4557 data for high-throughput, untargeted analyte profiling.")
4558 (license license:gpl2+)))
4559
4560 (define-public r-wrench
4561 (package
4562 (name "r-wrench")
4563 (version "1.4.0")
4564 (source
4565 (origin
4566 (method url-fetch)
4567 (uri (bioconductor-uri "Wrench" version))
4568 (sha256
4569 (base32
4570 "1s8d7jn0dk5zk2fhvsd4sgicypz4c41nzf19nqzcwb9bd6asgrwm"))))
4571 (properties `((upstream-name . "Wrench")))
4572 (build-system r-build-system)
4573 (propagated-inputs
4574 `(("r-limma" ,r-limma)
4575 ("r-locfit" ,r-locfit)
4576 ("r-matrixstats" ,r-matrixstats)))
4577 (home-page "https://github.com/HCBravoLab/Wrench")
4578 (synopsis "Wrench normalization for sparse count data")
4579 (description
4580 "Wrench is a package for normalization sparse genomic count data, like
4581 that arising from 16s metagenomic surveys.")
4582 (license license:artistic2.0)))
4583
4584 (define-public r-wiggleplotr
4585 (package
4586 (name "r-wiggleplotr")
4587 (version "1.10.1")
4588 (source
4589 (origin
4590 (method url-fetch)
4591 (uri (bioconductor-uri "wiggleplotr" version))
4592 (sha256
4593 (base32
4594 "1pj2bsn5azs18mp5hr4g7c6rnds2y2rjjnak2785kaj7xi8jly4m"))))
4595 (build-system r-build-system)
4596 (propagated-inputs
4597 `(("r-assertthat" ,r-assertthat)
4598 ("r-cowplot" ,r-cowplot)
4599 ("r-dplyr" ,r-dplyr)
4600 ("r-genomeinfodb" ,r-genomeinfodb)
4601 ("r-genomicranges" ,r-genomicranges)
4602 ("r-ggplot2" ,r-ggplot2)
4603 ("r-iranges" ,r-iranges)
4604 ("r-purrr" ,r-purrr)
4605 ("r-rtracklayer" ,r-rtracklayer)
4606 ("r-s4vectors" ,r-s4vectors)))
4607 (home-page "https://bioconductor.org/packages/wiggleplotr/")
4608 (synopsis "Make read coverage plots from BigWig files")
4609 (description
4610 "This package provides tools to visualize read coverage from sequencing
4611 experiments together with genomic annotations (genes, transcripts, peaks).
4612 Introns of long transcripts can be rescaled to a fixed length for better
4613 visualization of exonic read coverage.")
4614 (license license:asl2.0)))
4615
4616 (define-public r-widgettools
4617 (package
4618 (name "r-widgettools")
4619 (version "1.64.0")
4620 (source
4621 (origin
4622 (method url-fetch)
4623 (uri (bioconductor-uri "widgetTools" version))
4624 (sha256
4625 (base32
4626 "1nqy3icayacv5mlv5s5xgfli0dqzancs6zpffrl5p237c994nyr5"))))
4627 (properties `((upstream-name . "widgetTools")))
4628 (build-system r-build-system)
4629 (home-page "https://bioconductor.org/packages/widgetTools/")
4630 (synopsis "Tools for creating interactive tcltk widgets")
4631 (description
4632 "This package contains tools to support the construction of tcltk
4633 widgets in R.")
4634 ;; Any version of the LGPL.
4635 (license license:lgpl3+)))
4636
4637 (define-public r-webbioc
4638 (package
4639 (name "r-webbioc")
4640 (version "1.58.0")
4641 (source
4642 (origin
4643 (method url-fetch)
4644 (uri (bioconductor-uri "webbioc" version))
4645 (sha256
4646 (base32
4647 "1cwrmvh1l603k6j1r425c4vrqp0zf0x7bgx7y1wnbq4r7yc5sp62"))))
4648 (build-system r-build-system)
4649 (inputs
4650 `(("netpbm" ,netpbm)
4651 ("perl" ,perl)))
4652 (propagated-inputs
4653 `(("r-affy" ,r-affy)
4654 ("r-annaffy" ,r-annaffy)
4655 ("r-biobase" ,r-biobase)
4656 ("r-biocmanager" ,r-biocmanager)
4657 ("r-gcrma" ,r-gcrma)
4658 ("r-multtest" ,r-multtest)
4659 ("r-qvalue" ,r-qvalue)
4660 ("r-vsn" ,r-vsn)))
4661 (home-page "https://www.bioconductor.org/")
4662 (synopsis "Bioconductor web interface")
4663 (description
4664 "This package provides an integrated web interface for doing microarray
4665 analysis using several of the Bioconductor packages. It is intended to be
4666 deployed as a centralized bioinformatics resource for use by many users.
4667 Currently only Affymetrix oligonucleotide analysis is supported.")
4668 (license license:gpl2+)))
4669
4670 (define-public r-zfpkm
4671 (package
4672 (name "r-zfpkm")
4673 (version "1.8.0")
4674 (source
4675 (origin
4676 (method url-fetch)
4677 (uri (bioconductor-uri "zFPKM" version))
4678 (sha256
4679 (base32
4680 "1hg0vc0ns8d4jpddn1v5a5m13a033b0wf1al01pb1lvmx5mzzr2n"))))
4681 (properties `((upstream-name . "zFPKM")))
4682 (build-system r-build-system)
4683 (propagated-inputs
4684 `(("r-checkmate" ,r-checkmate)
4685 ("r-dplyr" ,r-dplyr)
4686 ("r-ggplot2" ,r-ggplot2)
4687 ("r-summarizedexperiment" ,r-summarizedexperiment)
4688 ("r-tidyr" ,r-tidyr)))
4689 (home-page "https://github.com/ronammar/zFPKM/")
4690 (synopsis "Functions to facilitate zFPKM transformations")
4691 (description
4692 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
4693 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
4694 24215113).")
4695 (license license:gpl3)))
4696
4697 (define-public r-rbowtie2
4698 (package
4699 (name "r-rbowtie2")
4700 (version "1.8.0")
4701 (source
4702 (origin
4703 (method url-fetch)
4704 (uri (bioconductor-uri "Rbowtie2" version))
4705 (sha256
4706 (base32
4707 "1b7x42n9zisi2w2wwfc0c39j8s9868imyr0ysqgswf6l5mv9ivc5"))))
4708 (properties `((upstream-name . "Rbowtie2")))
4709 (build-system r-build-system)
4710 (inputs
4711 `(("zlib" ,zlib)))
4712 (home-page "https://bioconductor.org/packages/Rbowtie2/")
4713 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
4714 (description
4715 "This package provides an R wrapper of the popular @code{bowtie2}
4716 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
4717 rapid adapter trimming, identification, and read merging.")
4718 (license license:gpl3+)))
4719
4720 (define-public r-progeny
4721 (package
4722 (name "r-progeny")
4723 (version "1.8.0")
4724 (source
4725 (origin
4726 (method url-fetch)
4727 (uri (bioconductor-uri "progeny" version))
4728 (sha256
4729 (base32
4730 "0j3kxjj7xmmwb29p87n3bw7bl38gcb94jrpw32126a578rf1pfrq"))))
4731 (build-system r-build-system)
4732 (propagated-inputs `(("r-biobase" ,r-biobase)))
4733 (home-page "https://github.com/saezlab/progeny")
4734 (synopsis "Pathway responsive gene activity inference")
4735 (description
4736 "This package provides a function to infer pathway activity from gene
4737 expression. It contains the linear model inferred in the publication
4738 \"Perturbation-response genes reveal signaling footprints in cancer gene
4739 expression\".")
4740 (license license:asl2.0)))
4741
4742 (define-public r-arrmnormalization
4743 (package
4744 (name "r-arrmnormalization")
4745 (version "1.26.0")
4746 (source
4747 (origin
4748 (method url-fetch)
4749 (uri (bioconductor-uri "ARRmNormalization" version))
4750 (sha256
4751 (base32
4752 "0jj81q454nyh4hr5c56q1hv7i4ynx3rwnvpv08w34a6m77122bi1"))))
4753 (properties
4754 `((upstream-name . "ARRmNormalization")))
4755 (build-system r-build-system)
4756 (propagated-inputs `(("r-arrmdata" ,r-arrmdata)))
4757 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
4758 (synopsis "Adaptive robust regression normalization for methylation data")
4759 (description
4760 "This is a package to perform the @dfn{Adaptive Robust Regression
4761 method} (ARRm) for the normalization of methylation data from the Illumina
4762 Infinium HumanMethylation 450k assay.")
4763 (license license:artistic2.0)))
4764
4765 (define-public r-biocfilecache
4766 (package
4767 (name "r-biocfilecache")
4768 (version "1.10.2")
4769 (source
4770 (origin
4771 (method url-fetch)
4772 (uri (bioconductor-uri "BiocFileCache" version))
4773 (sha256
4774 (base32
4775 "0jivhn95y6zv5ryamqk6nyd4l8nlskq64j362l9ml9qw746v0ja6"))))
4776 (properties `((upstream-name . "BiocFileCache")))
4777 (build-system r-build-system)
4778 (propagated-inputs
4779 `(("r-curl" ,r-curl)
4780 ("r-dbi" ,r-dbi)
4781 ("r-dbplyr" ,r-dbplyr)
4782 ("r-dplyr" ,r-dplyr)
4783 ("r-httr" ,r-httr)
4784 ("r-rappdirs" ,r-rappdirs)
4785 ("r-rsqlite" ,r-rsqlite)))
4786 (home-page "https://bioconductor.org/packages/BiocFileCache/")
4787 (synopsis "Manage files across sessions")
4788 (description
4789 "This package creates a persistent on-disk cache of files that the user
4790 can add, update, and retrieve. It is useful for managing resources (such as
4791 custom Txdb objects) that are costly or difficult to create, web resources,
4792 and data files used across sessions.")
4793 (license license:artistic2.0)))
4794
4795 (define-public r-iclusterplus
4796 (package
4797 (name "r-iclusterplus")
4798 (version "1.22.0")
4799 (source
4800 (origin
4801 (method url-fetch)
4802 (uri (bioconductor-uri "iClusterPlus" version))
4803 (sha256
4804 (base32
4805 "1dzgfzf2x8m62hssvsn1zzag7m444kyxj2vpdxl9nk859dr5pf37"))))
4806 (properties `((upstream-name . "iClusterPlus")))
4807 (build-system r-build-system)
4808 (native-inputs `(("gfortran" ,gfortran)))
4809 (home-page "https://bioconductor.org/packages/iClusterPlus/")
4810 (synopsis "Integrative clustering of multi-type genomic data")
4811 (description
4812 "iClusterPlus is developed for integrative clustering analysis of
4813 multi-type genomic data and is an enhanced version of iCluster proposed and
4814 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
4815 from the experiments where biological samples (e.g. tumor samples) are
4816 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
4817 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
4818 on. In the iClusterPlus model, binary observations such as somatic mutation
4819 are modeled as Binomial processes; categorical observations such as copy
4820 number states are realizations of Multinomial random variables; counts are
4821 modeled as Poisson random processes; and continuous measures are modeled by
4822 Gaussian distributions.")
4823 (license license:gpl2+)))
4824
4825 (define-public r-rbowtie
4826 (package
4827 (name "r-rbowtie")
4828 (version "1.26.0")
4829 (source
4830 (origin
4831 (method url-fetch)
4832 (uri (bioconductor-uri "Rbowtie" version))
4833 (sha256
4834 (base32
4835 "0yy31xhdmf6xb21wlhmxxwfqpm0nil39pb2cs3pq5ia758lb88z4"))))
4836 (properties `((upstream-name . "Rbowtie")))
4837 (build-system r-build-system)
4838 (inputs
4839 `(("zlib" ,zlib)))
4840 (home-page "https://bioconductor.org/packages/Rbowtie/")
4841 (synopsis "R bowtie wrapper")
4842 (description
4843 "This package provides an R wrapper around the popular bowtie short read
4844 aligner and around SpliceMap, a de novo splice junction discovery and
4845 alignment tool.")
4846 (license license:artistic2.0)))
4847
4848 (define-public r-sgseq
4849 (package
4850 (name "r-sgseq")
4851 (version "1.20.0")
4852 (source
4853 (origin
4854 (method url-fetch)
4855 (uri (bioconductor-uri "SGSeq" version))
4856 (sha256
4857 (base32
4858 "0950iv08wd0kjaw55rjn7m6syklvrabwr2zqq74wzyc5afyk2mrw"))))
4859 (properties `((upstream-name . "SGSeq")))
4860 (build-system r-build-system)
4861 (propagated-inputs
4862 `(("r-annotationdbi" ,r-annotationdbi)
4863 ("r-biocgenerics" ,r-biocgenerics)
4864 ("r-biostrings" ,r-biostrings)
4865 ("r-genomeinfodb" ,r-genomeinfodb)
4866 ("r-genomicalignments" ,r-genomicalignments)
4867 ("r-genomicfeatures" ,r-genomicfeatures)
4868 ("r-genomicranges" ,r-genomicranges)
4869 ("r-igraph" ,r-igraph)
4870 ("r-iranges" ,r-iranges)
4871 ("r-rsamtools" ,r-rsamtools)
4872 ("r-rtracklayer" ,r-rtracklayer)
4873 ("r-runit" ,r-runit)
4874 ("r-s4vectors" ,r-s4vectors)
4875 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4876 (home-page "https://bioconductor.org/packages/SGSeq/")
4877 (synopsis "Splice event prediction and quantification from RNA-seq data")
4878 (description
4879 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
4880 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
4881 represented as a splice graph, which can be obtained from existing annotation
4882 or predicted from the mapped sequence reads. Splice events are identified
4883 from the graph and are quantified locally using structurally compatible reads
4884 at the start or end of each splice variant. The software includes functions
4885 for splice event prediction, quantification, visualization and
4886 interpretation.")
4887 (license license:artistic2.0)))
4888
4889 (define-public r-rhisat2
4890 (package
4891 (name "r-rhisat2")
4892 (version "1.2.0")
4893 (source
4894 (origin
4895 (method url-fetch)
4896 (uri (bioconductor-uri "Rhisat2" version))
4897 (sha256
4898 (base32
4899 "02fn5cm8sj2s9x00505y3iyipn1r3lpvpwpjy2pdxdbpmhb5hy49"))))
4900 (properties `((upstream-name . "Rhisat2")))
4901 (build-system r-build-system)
4902 (arguments
4903 `(#:phases
4904 (modify-phases %standard-phases
4905 (add-after 'unpack 'make-reproducible
4906 (lambda _
4907 (substitute* "src/Makefile"
4908 (("`hostname`") "guix")
4909 (("`date`") "0")
4910 ;; Avoid shelling out to "which".
4911 (("^CC =.*") (which "gcc"))
4912 (("^CPP =.*") (which "g++")))
4913 #t)))))
4914 (propagated-inputs
4915 `(("r-genomicfeatures" ,r-genomicfeatures)
4916 ("r-genomicranges" ,r-genomicranges)
4917 ("r-sgseq" ,r-sgseq)))
4918 (home-page "https://github.com/fmicompbio/Rhisat2")
4919 (synopsis "R Wrapper for HISAT2 sequence aligner")
4920 (description
4921 "This package provides an R interface to the HISAT2 spliced short-read
4922 aligner by Kim et al. (2015). The package contains wrapper functions to
4923 create a genome index and to perform the read alignment to the generated
4924 index.")
4925 (license license:gpl3)))
4926
4927 (define-public r-quasr
4928 (package
4929 (name "r-quasr")
4930 (version "1.26.0")
4931 (source
4932 (origin
4933 (method url-fetch)
4934 (uri (bioconductor-uri "QuasR" version))
4935 (sha256
4936 (base32
4937 "07m5q7wasapj2984kwy897510flbhvz7x0fgs7q2vm5wjhfzdrgv"))))
4938 (properties `((upstream-name . "QuasR")))
4939 (build-system r-build-system)
4940 (inputs
4941 `(("zlib" ,zlib)))
4942 (propagated-inputs
4943 `(("r-annotationdbi" ,r-annotationdbi)
4944 ("r-biobase" ,r-biobase)
4945 ("r-biocgenerics" ,r-biocgenerics)
4946 ("r-biocmanager" ,r-biocmanager)
4947 ("r-biocparallel" ,r-biocparallel)
4948 ("r-biostrings" ,r-biostrings)
4949 ("r-bsgenome" ,r-bsgenome)
4950 ("r-genomeinfodb" ,r-genomeinfodb)
4951 ("r-genomicalignments" ,r-genomicalignments)
4952 ("r-genomicfeatures" ,r-genomicfeatures)
4953 ("r-genomicfiles" ,r-genomicfiles)
4954 ("r-genomicranges" ,r-genomicranges)
4955 ("r-iranges" ,r-iranges)
4956 ("r-rbowtie" ,r-rbowtie)
4957 ("r-rhisat2" ,r-rhisat2)
4958 ("r-rhtslib" ,r-rhtslib)
4959 ("r-rsamtools" ,r-rsamtools)
4960 ("r-rtracklayer" ,r-rtracklayer)
4961 ("r-s4vectors" ,r-s4vectors)
4962 ("r-shortread" ,r-shortread)))
4963 (home-page "https://bioconductor.org/packages/QuasR/")
4964 (synopsis "Quantify and annotate short reads in R")
4965 (description
4966 "This package provides a framework for the quantification and analysis of
4967 short genomic reads. It covers a complete workflow starting from raw sequence
4968 reads, over creation of alignments and quality control plots, to the
4969 quantification of genomic regions of interest.")
4970 (license license:gpl2)))
4971
4972 (define-public r-rqc
4973 (package
4974 (name "r-rqc")
4975 (version "1.20.0")
4976 (source
4977 (origin
4978 (method url-fetch)
4979 (uri (bioconductor-uri "Rqc" version))
4980 (sha256
4981 (base32
4982 "1nxkrb9kx41g050yz935yrl9pjkakhr8v6whxcvr72gg4r9m2x3m"))))
4983 (properties `((upstream-name . "Rqc")))
4984 (build-system r-build-system)
4985 (propagated-inputs
4986 `(("r-biocgenerics" ,r-biocgenerics)
4987 ("r-biocparallel" ,r-biocparallel)
4988 ("r-biocstyle" ,r-biocstyle)
4989 ("r-biostrings" ,r-biostrings)
4990 ("r-biovizbase" ,r-biovizbase)
4991 ("r-genomicalignments" ,r-genomicalignments)
4992 ("r-genomicfiles" ,r-genomicfiles)
4993 ("r-ggplot2" ,r-ggplot2)
4994 ("r-iranges" ,r-iranges)
4995 ("r-knitr" ,r-knitr)
4996 ("r-markdown" ,r-markdown)
4997 ("r-plyr" ,r-plyr)
4998 ("r-rcpp" ,r-rcpp)
4999 ("r-reshape2" ,r-reshape2)
5000 ("r-rsamtools" ,r-rsamtools)
5001 ("r-s4vectors" ,r-s4vectors)
5002 ("r-shiny" ,r-shiny)
5003 ("r-shortread" ,r-shortread)))
5004 (home-page "https://github.com/labbcb/Rqc")
5005 (synopsis "Quality control tool for high-throughput sequencing data")
5006 (description
5007 "Rqc is an optimized tool designed for quality control and assessment of
5008 high-throughput sequencing data. It performs parallel processing of entire
5009 files and produces a report which contains a set of high-resolution
5010 graphics.")
5011 (license license:gpl2+)))
5012
5013 (define-public r-birewire
5014 (package
5015 (name "r-birewire")
5016 (version "3.18.0")
5017 (source
5018 (origin
5019 (method url-fetch)
5020 (uri (bioconductor-uri "BiRewire" version))
5021 (sha256
5022 (base32
5023 "1074cp422ail72yajn8p0bg26h6zzz07nzypnwfyv86qrpvpdw9q"))))
5024 (properties `((upstream-name . "BiRewire")))
5025 (build-system r-build-system)
5026 (propagated-inputs
5027 `(("r-igraph" ,r-igraph)
5028 ("r-matrix" ,r-matrix)
5029 ("r-slam" ,r-slam)
5030 ("r-tsne" ,r-tsne)))
5031 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
5032 (synopsis "Tools for randomization of bipartite graphs")
5033 (description
5034 "This package provides functions for bipartite network rewiring through N
5035 consecutive switching steps and for the computation of the minimal number of
5036 switching steps to be performed in order to maximise the dissimilarity with
5037 respect to the original network. It includes functions for the analysis of
5038 the introduced randomness across the switching steps and several other
5039 routines to analyse the resulting networks and their natural projections.")
5040 (license license:gpl3)))
5041
5042 (define-public r-birta
5043 (package
5044 (name "r-birta")
5045 (version "1.30.0")
5046 (source
5047 (origin
5048 (method url-fetch)
5049 (uri (bioconductor-uri "birta" version))
5050 (sha256
5051 (base32
5052 "1zhlwapdgkz0fpv5bqfxh9aw6ymnmxnnm1r0n0kfzn5izyjavslg"))))
5053 (build-system r-build-system)
5054 (propagated-inputs
5055 `(("r-biobase" ,r-biobase)
5056 ("r-limma" ,r-limma)
5057 ("r-mass" ,r-mass)))
5058 (home-page "https://bioconductor.org/packages/birta")
5059 (synopsis "Bayesian inference of regulation of transcriptional activity")
5060 (description
5061 "Expression levels of mRNA molecules are regulated by different
5062 processes, comprising inhibition or activation by transcription factors and
5063 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
5064 Inference of Regulation of Transcriptional Activity) uses the regulatory
5065 networks of transcription factors and miRNAs together with mRNA and miRNA
5066 expression data to predict switches in regulatory activity between two
5067 conditions. A Bayesian network is used to model the regulatory structure and
5068 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
5069 (license license:gpl2+)))
5070
5071 (define-public r-multidataset
5072 (package
5073 (name "r-multidataset")
5074 (version "1.14.0")
5075 (source
5076 (origin
5077 (method url-fetch)
5078 (uri (bioconductor-uri "MultiDataSet" version))
5079 (sha256
5080 (base32
5081 "0iw99ymrv3ls023mpmgyagmb5simgsgadpj0k4bnssfaqnklywlj"))))
5082 (properties `((upstream-name . "MultiDataSet")))
5083 (build-system r-build-system)
5084 (propagated-inputs
5085 `(("r-biobase" ,r-biobase)
5086 ("r-biocgenerics" ,r-biocgenerics)
5087 ("r-genomicranges" ,r-genomicranges)
5088 ("r-ggplot2" ,r-ggplot2)
5089 ("r-ggrepel" ,r-ggrepel)
5090 ("r-iranges" ,r-iranges)
5091 ("r-limma" ,r-limma)
5092 ("r-qqman" ,r-qqman)
5093 ("r-s4vectors" ,r-s4vectors)
5094 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5095 (home-page "https://bioconductor.org/packages/MultiDataSet/")
5096 (synopsis "Implementation of MultiDataSet and ResultSet")
5097 (description
5098 "This package provides an implementation of the BRGE's (Bioinformatic
5099 Research Group in Epidemiology from Center for Research in Environmental
5100 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
5101 integrating multi omics data sets and ResultSet is a container for omics
5102 results. This package contains base classes for MEAL and rexposome
5103 packages.")
5104 (license license:expat)))
5105
5106 (define-public r-ropls
5107 (package
5108 (name "r-ropls")
5109 (version "1.18.0")
5110 (source
5111 (origin
5112 (method url-fetch)
5113 (uri (bioconductor-uri "ropls" version))
5114 (sha256
5115 (base32
5116 "05w1zrq92w3jfwq5sdyj27m5qjg4zv7acywia8vd6y5fbgcnyzlp"))))
5117 (build-system r-build-system)
5118 (propagated-inputs
5119 `(("r-biobase" ,r-biobase)
5120 ("r-multidataset" ,r-multidataset)))
5121 (native-inputs
5122 `(("r-knitr" ,r-knitr))) ; for vignettes
5123 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
5124 (synopsis "Multivariate analysis and feature selection of omics data")
5125 (description
5126 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
5127 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
5128 regression, classification, and feature selection of omics data where the
5129 number of variables exceeds the number of samples and with multicollinearity
5130 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
5131 separately model the variation correlated (predictive) to the factor of
5132 interest and the uncorrelated (orthogonal) variation. While performing
5133 similarly to PLS, OPLS facilitates interpretation.
5134
5135 This package provides imlementations of PCA, PLS, and OPLS for multivariate
5136 analysis and feature selection of omics data. In addition to scores, loadings
5137 and weights plots, the package provides metrics and graphics to determine the
5138 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
5139 validity of the model by permutation testing, detect outliers, and perform
5140 feature selection (e.g. with Variable Importance in Projection or regression
5141 coefficients).")
5142 (license license:cecill)))
5143
5144 (define-public r-biosigner
5145 (package
5146 (name "r-biosigner")
5147 (version "1.14.0")
5148 (source
5149 (origin
5150 (method url-fetch)
5151 (uri (bioconductor-uri "biosigner" version))
5152 (sha256
5153 (base32
5154 "1kdfhw629qczrfms0jmphqz0ksjzi8js00xj92h1lnv092npfk0j"))))
5155 (build-system r-build-system)
5156 (propagated-inputs
5157 `(("r-biobase" ,r-biobase)
5158 ("r-e1071" ,r-e1071)
5159 ("r-multidataset" ,r-multidataset)
5160 ("r-randomforest" ,r-randomforest)
5161 ("r-ropls" ,r-ropls)))
5162 (native-inputs
5163 `(("r-knitr" ,r-knitr)
5164 ("r-rmarkdown" ,r-rmarkdown)
5165 ("pandoc" ,ghc-pandoc)
5166 ("pandoc-citeproc" ,ghc-pandoc-citeproc))) ; all for vignettes
5167 (home-page "https://bioconductor.org/packages/biosigner/")
5168 (synopsis "Signature discovery from omics data")
5169 (description
5170 "Feature selection is critical in omics data analysis to extract
5171 restricted and meaningful molecular signatures from complex and high-dimension
5172 data, and to build robust classifiers. This package implements a method to
5173 assess the relevance of the variables for the prediction performances of the
5174 classifier. The approach can be run in parallel with the PLS-DA, Random
5175 Forest, and SVM binary classifiers. The signatures and the corresponding
5176 'restricted' models are returned, enabling future predictions on new
5177 datasets.")
5178 (license license:cecill)))
5179
5180 (define-public r-annotatr
5181 (package
5182 (name "r-annotatr")
5183 (version "1.12.1")
5184 (source
5185 (origin
5186 (method url-fetch)
5187 (uri (bioconductor-uri "annotatr" version))
5188 (sha256
5189 (base32
5190 "1bibk3p1q4cavqy11xs6rqqhqdjsq2dd7lf7blwcr27s5ajcd6dj"))))
5191 (build-system r-build-system)
5192 (propagated-inputs
5193 `(("r-annotationdbi" ,r-annotationdbi)
5194 ("r-annotationhub" ,r-annotationhub)
5195 ("r-dplyr" ,r-dplyr)
5196 ("r-genomeinfodb" ,r-genomeinfodb)
5197 ("r-genomicfeatures" ,r-genomicfeatures)
5198 ("r-genomicranges" ,r-genomicranges)
5199 ("r-ggplot2" ,r-ggplot2)
5200 ("r-iranges" ,r-iranges)
5201 ("r-readr" ,r-readr)
5202 ("r-regioner" ,r-regioner)
5203 ("r-reshape2" ,r-reshape2)
5204 ("r-rtracklayer" ,r-rtracklayer)
5205 ("r-s4vectors" ,r-s4vectors)))
5206 (home-page "https://bioconductor.org/packages/annotatr/")
5207 (synopsis "Annotation of genomic regions to genomic annotations")
5208 (description
5209 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
5210 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
5211 to investigate the intersecting genomic annotations. Such annotations include
5212 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
5213 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
5214 enhancers. The annotatr package provides an easy way to summarize and
5215 visualize the intersection of genomic sites/regions with genomic
5216 annotations.")
5217 (license license:gpl3)))
5218
5219 (define-public r-rsubread
5220 (package
5221 (name "r-rsubread")
5222 (version "2.0.0")
5223 (source
5224 (origin
5225 (method url-fetch)
5226 (uri (bioconductor-uri "Rsubread" version))
5227 (sha256
5228 (base32
5229 "0l8q9y2a4m1di0w5nlxhq9jgliinhgr2fwjpm5ixnqx5j3iprlwd"))))
5230 (properties `((upstream-name . "Rsubread")))
5231 (build-system r-build-system)
5232 (inputs `(("zlib" ,zlib)))
5233 (home-page "https://bioconductor.org/packages/Rsubread/")
5234 (synopsis "Subread sequence alignment and counting for R")
5235 (description
5236 "This package provides tools for alignment, quantification and analysis
5237 of second and third generation sequencing data. It includes functionality for
5238 read mapping, read counting, SNP calling, structural variant detection and
5239 gene fusion discovery. It can be applied to all major sequencing techologies
5240 and to both short and long sequence reads.")
5241 (license license:gpl3)))
5242
5243 (define-public r-flowutils
5244 (package
5245 (name "r-flowutils")
5246 (version "1.50.0")
5247 (source
5248 (origin
5249 (method url-fetch)
5250 (uri (bioconductor-uri "flowUtils" version))
5251 (sha256
5252 (base32
5253 "1xcs19j9p3izvksyy5wzsbicwby0dsa9g2w7gjzwynzgj5dpfr81"))))
5254 (properties `((upstream-name . "flowUtils")))
5255 (build-system r-build-system)
5256 (propagated-inputs
5257 `(("r-biobase" ,r-biobase)
5258 ("r-corpcor" ,r-corpcor)
5259 ("r-flowcore" ,r-flowcore)
5260 ("r-graph" ,r-graph)
5261 ("r-runit" ,r-runit)
5262 ("r-xml" ,r-xml)))
5263 (home-page "https://github.com/jspidlen/flowUtils")
5264 (synopsis "Utilities for flow cytometry")
5265 (description
5266 "This package provides utilities for flow cytometry data.")
5267 (license license:artistic2.0)))
5268
5269 (define-public r-consensusclusterplus
5270 (package
5271 (name "r-consensusclusterplus")
5272 (version "1.50.0")
5273 (source
5274 (origin
5275 (method url-fetch)
5276 (uri (bioconductor-uri "ConsensusClusterPlus" version))
5277 (sha256
5278 (base32
5279 "0pnh5zy6d3c364xxjdn5zp3kf5afhsxv6yzkdn1qspny0pmqlrp4"))))
5280 (properties
5281 `((upstream-name . "ConsensusClusterPlus")))
5282 (build-system r-build-system)
5283 (propagated-inputs
5284 `(("r-all" ,r-all)
5285 ("r-biobase" ,r-biobase)
5286 ("r-cluster" ,r-cluster)))
5287 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
5288 (synopsis "Clustering algorithm")
5289 (description
5290 "This package provides an implementation of an algorithm for determining
5291 cluster count and membership by stability evidence in unsupervised analysis.")
5292 (license license:gpl2)))
5293
5294 (define-public r-cytolib
5295 (package
5296 (name "r-cytolib")
5297 (version "1.8.0")
5298 (source
5299 (origin
5300 (method url-fetch)
5301 (uri (bioconductor-uri "cytolib" version))
5302 (sha256
5303 (base32
5304 "1zk5i09k782lw6297gl3rh0g4fxswr2ang8dgqj7p0814l7h15k9"))))
5305 (properties `((upstream-name . "cytolib")))
5306 (build-system r-build-system)
5307 (home-page "https://bioconductor.org/packages/cytolib/")
5308 (synopsis "C++ infrastructure for working with gated cytometry")
5309 (description
5310 "This package provides the core data structure and API to represent and
5311 interact with gated cytometry data.")
5312 (license license:artistic2.0)))
5313
5314 (define-public r-flowcore
5315 (package
5316 (name "r-flowcore")
5317 (version "1.52.1")
5318 (source
5319 (origin
5320 (method url-fetch)
5321 (uri (bioconductor-uri "flowCore" version))
5322 (sha256
5323 (base32
5324 "08kvxc187iwlixibx1860jcp5g9bsw8abkv06x2qv1w83fas4pp2"))))
5325 (properties `((upstream-name . "flowCore")))
5326 (build-system r-build-system)
5327 (propagated-inputs
5328 `(("r-bh" ,r-bh)
5329 ("r-biobase" ,r-biobase)
5330 ("r-biocgenerics" ,r-biocgenerics)
5331 ("r-cytolib" ,r-cytolib)
5332 ("r-matrixstats" ,r-matrixstats)
5333 ("r-rcpp" ,r-rcpp)))
5334 (home-page "https://bioconductor.org/packages/flowCore")
5335 (synopsis "Basic structures for flow cytometry data")
5336 (description
5337 "This package provides S4 data structures and basic functions to deal
5338 with flow cytometry data.")
5339 (license license:artistic2.0)))
5340
5341 (define-public r-flowmeans
5342 (package
5343 (name "r-flowmeans")
5344 (version "1.46.0")
5345 (source
5346 (origin
5347 (method url-fetch)
5348 (uri (bioconductor-uri "flowMeans" version))
5349 (sha256
5350 (base32
5351 "1yisrikaafmpb4sig2c5l0wcz4idrs4as7i9x90v6z2v94iq0m8h"))))
5352 (properties `((upstream-name . "flowMeans")))
5353 (build-system r-build-system)
5354 (propagated-inputs
5355 `(("r-biobase" ,r-biobase)
5356 ("r-feature" ,r-feature)
5357 ("r-flowcore" ,r-flowcore)
5358 ("r-rrcov" ,r-rrcov)))
5359 (home-page "https://bioconductor.org/packages/flowMeans")
5360 (synopsis "Non-parametric flow cytometry data gating")
5361 (description
5362 "This package provides tools to identify cell populations in Flow
5363 Cytometry data using non-parametric clustering and segmented-regression-based
5364 change point detection.")
5365 (license license:artistic2.0)))
5366
5367 (define-public r-ncdfflow
5368 (package
5369 (name "r-ncdfflow")
5370 (version "2.32.0")
5371 (source
5372 (origin
5373 (method url-fetch)
5374 (uri (bioconductor-uri "ncdfFlow" version))
5375 (sha256
5376 (base32
5377 "06lscx6h4rg80ifi90rj7z2497b8w1fjipm3l8s3230rkizhh02i"))))
5378 (properties `((upstream-name . "ncdfFlow")))
5379 (build-system r-build-system)
5380 (inputs
5381 `(("zlib" ,zlib)))
5382 (propagated-inputs
5383 `(("r-bh" ,r-bh)
5384 ("r-biobase" ,r-biobase)
5385 ("r-biocgenerics" ,r-biocgenerics)
5386 ("r-flowcore" ,r-flowcore)
5387 ("r-rcpp" ,r-rcpp)
5388 ("r-rcpparmadillo" ,r-rcpparmadillo)
5389 ("r-rhdf5lib" ,r-rhdf5lib)
5390 ("r-zlibbioc" ,r-zlibbioc)))
5391 (home-page "https://bioconductor.org/packages/ncdfFlow/")
5392 (synopsis "HDF5 based storage for flow cytometry data")
5393 (description
5394 "This package provides HDF5 storage based methods and functions for
5395 manipulation of flow cytometry data.")
5396 (license license:artistic2.0)))
5397
5398 (define-public r-ggcyto
5399 (package
5400 (name "r-ggcyto")
5401 (version "1.14.0")
5402 (source
5403 (origin
5404 (method url-fetch)
5405 (uri (bioconductor-uri "ggcyto" version))
5406 (sha256
5407 (base32
5408 "165qszvy5z176h1l3dnjb5dcm279b6bjl5n5gzz8wfn4xpn8anc8"))))
5409 (properties `((upstream-name . "ggcyto")))
5410 (build-system r-build-system)
5411 (propagated-inputs
5412 `(("r-data-table" ,r-data-table)
5413 ("r-flowcore" ,r-flowcore)
5414 ("r-flowworkspace" ,r-flowworkspace)
5415 ("r-ggplot2" ,r-ggplot2)
5416 ("r-gridextra" ,r-gridextra)
5417 ("r-ncdfflow" ,r-ncdfflow)
5418 ("r-plyr" ,r-plyr)
5419 ("r-rcolorbrewer" ,r-rcolorbrewer)
5420 ("r-rlang" ,r-rlang)
5421 ("r-scales" ,r-scales)))
5422 (home-page "https://github.com/RGLab/ggcyto/issues")
5423 (synopsis "Visualize Cytometry data with ggplot")
5424 (description
5425 "With the dedicated fortify method implemented for @code{flowSet},
5426 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
5427 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
5428 and some custom layers also make it easy to add gates and population
5429 statistics to the plot.")
5430 (license license:artistic2.0)))
5431
5432 (define-public r-flowviz
5433 (package
5434 (name "r-flowviz")
5435 (version "1.50.0")
5436 (source
5437 (origin
5438 (method url-fetch)
5439 (uri (bioconductor-uri "flowViz" version))
5440 (sha256
5441 (base32
5442 "0ik16bxcfcg3q26ra3055718kskid64aaazcbqsxalca9ppdm4k7"))))
5443 (properties `((upstream-name . "flowViz")))
5444 (build-system r-build-system)
5445 (propagated-inputs
5446 `(("r-biobase" ,r-biobase)
5447 ("r-flowcore" ,r-flowcore)
5448 ("r-hexbin" ,r-hexbin)
5449 ("r-idpmisc" ,r-idpmisc)
5450 ("r-kernsmooth" ,r-kernsmooth)
5451 ("r-lattice" ,r-lattice)
5452 ("r-latticeextra" ,r-latticeextra)
5453 ("r-mass" ,r-mass)
5454 ("r-rcolorbrewer" ,r-rcolorbrewer)))
5455 (home-page "https://bioconductor.org/packages/flowViz/")
5456 (synopsis "Visualization for flow cytometry")
5457 (description
5458 "This package provides visualization tools for flow cytometry data.")
5459 (license license:artistic2.0)))
5460
5461 (define-public r-flowclust
5462 (package
5463 (name "r-flowclust")
5464 (version "3.24.0")
5465 (source
5466 (origin
5467 (method url-fetch)
5468 (uri (bioconductor-uri "flowClust" version))
5469 (sha256
5470 (base32
5471 "0k4bgc4mf512njfdfg5ld9l7slgfxyfh766jab87j96zrrgcnj8s"))))
5472 (properties `((upstream-name . "flowClust")))
5473 (build-system r-build-system)
5474 (arguments
5475 `(#:configure-flags
5476 (list "--configure-args=--enable-bundled-gsl=no")))
5477 (propagated-inputs
5478 `(("r-biobase" ,r-biobase)
5479 ("r-biocgenerics" ,r-biocgenerics)
5480 ("r-clue" ,r-clue)
5481 ("r-corpcor" ,r-corpcor)
5482 ("r-ellipse" ,r-ellipse)
5483 ("r-flowcore" ,r-flowcore)
5484 ("r-flowviz" ,r-flowviz)
5485 ("r-graph" ,r-graph)
5486 ("r-mnormt" ,r-mnormt)))
5487 (inputs
5488 `(("gsl" ,gsl)))
5489 (native-inputs
5490 `(("pkg-config" ,pkg-config)))
5491 (home-page "https://bioconductor.org/packages/flowClust")
5492 (synopsis "Clustering for flow cytometry")
5493 (description
5494 "This package provides robust model-based clustering using a t-mixture
5495 model with Box-Cox transformation.")
5496 (license license:artistic2.0)))
5497
5498 ;; TODO: this package bundles an old version of protobuf. It's not easy to
5499 ;; make it use our protobuf package instead.
5500 (define-public r-rprotobuflib
5501 (package
5502 (name "r-rprotobuflib")
5503 (version "1.8.0")
5504 (source
5505 (origin
5506 (method url-fetch)
5507 (uri (bioconductor-uri "RProtoBufLib" version))
5508 (sha256
5509 (base32
5510 "0dlgki21a37bxqh3cf83vl5zqxm86472g8a9plvhrjzzsn3mwnrm"))))
5511 (properties `((upstream-name . "RProtoBufLib")))
5512 (build-system r-build-system)
5513 (arguments
5514 `(#:phases
5515 (modify-phases %standard-phases
5516 (add-after 'unpack 'unpack-bundled-sources
5517 (lambda _
5518 (with-directory-excursion "src"
5519 (invoke "tar" "xf" "protobuf-2.6.0.tgz"))
5520 #t)))))
5521 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
5522 (synopsis "C++ headers and static libraries of Protocol buffers")
5523 (description
5524 "This package provides the headers and static library of Protocol buffers
5525 for other R packages to compile and link against.")
5526 (license license:bsd-3)))
5527
5528 (define-public r-flowworkspace
5529 (package
5530 (name "r-flowworkspace")
5531 (version "3.34.0")
5532 (source
5533 (origin
5534 (method url-fetch)
5535 (uri (bioconductor-uri "flowWorkspace" version))
5536 (sha256
5537 (base32
5538 "0hvbkxyylsygra31l1lxyvbsr5hc50lqy1y7gwrfgrfil4a2m762"))))
5539 (properties `((upstream-name . "flowWorkspace")))
5540 (build-system r-build-system)
5541 (propagated-inputs
5542 `(("r-bh" ,r-bh)
5543 ("r-biobase" ,r-biobase)
5544 ("r-biocgenerics" ,r-biocgenerics)
5545 ("r-cytolib" ,r-cytolib)
5546 ("r-data-table" ,r-data-table)
5547 ("r-digest" ,r-digest)
5548 ("r-dplyr" ,r-dplyr)
5549 ("r-flowcore" ,r-flowcore)
5550 ("r-flowviz" ,r-flowviz)
5551 ("r-graph" ,r-graph)
5552 ("r-gridextra" ,r-gridextra)
5553 ("r-lattice" ,r-lattice)
5554 ("r-latticeextra" ,r-latticeextra)
5555 ("r-matrixstats" ,r-matrixstats)
5556 ("r-ncdfflow" ,r-ncdfflow)
5557 ("r-rbgl" ,r-rbgl)
5558 ("r-rcolorbrewer" ,r-rcolorbrewer)
5559 ("r-rcpp" ,r-rcpp)
5560 ("r-rcppparallel" ,r-rcppparallel)
5561 ("r-rgraphviz" ,r-rgraphviz)
5562 ("r-rprotobuflib" ,r-rprotobuflib)
5563 ("r-scales" ,r-scales)
5564 ("r-stringr" ,r-stringr)))
5565 (home-page "https://bioconductor.org/packages/flowWorkspace/")
5566 (synopsis "Infrastructure for working with cytometry data")
5567 (description
5568 "This package is designed to facilitate comparison of automated gating
5569 methods against manual gating done in flowJo. This package allows you to
5570 import basic flowJo workspaces into BioConductor and replicate the gating from
5571 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
5572 samples, compensation, and transformation are performed so that the output
5573 matches the flowJo analysis.")
5574 (license license:artistic2.0)))
5575
5576 (define-public r-flowstats
5577 (package
5578 (name "r-flowstats")
5579 (version "3.44.0")
5580 (source
5581 (origin
5582 (method url-fetch)
5583 (uri (bioconductor-uri "flowStats" version))
5584 (sha256
5585 (base32
5586 "0pql0lpf90nra7w6z6nd8l9cgjlsg2pxysfravnbzfhl3pjvd96w"))))
5587 (properties `((upstream-name . "flowStats")))
5588 (build-system r-build-system)
5589 (propagated-inputs
5590 `(("r-biobase" ,r-biobase)
5591 ("r-biocgenerics" ,r-biocgenerics)
5592 ("r-cluster" ,r-cluster)
5593 ("r-fda" ,r-fda)
5594 ("r-flowcore" ,r-flowcore)
5595 ("r-flowviz" ,r-flowviz)
5596 ("r-flowworkspace" ,r-flowworkspace)
5597 ("r-kernsmooth" ,r-kernsmooth)
5598 ("r-ks" ,r-ks)
5599 ("r-lattice" ,r-lattice)
5600 ("r-mass" ,r-mass)
5601 ("r-ncdfflow" ,r-ncdfflow)
5602 ("r-rcolorbrewer" ,r-rcolorbrewer)
5603 ("r-rrcov" ,r-rrcov)))
5604 (home-page "http://www.github.com/RGLab/flowStats")
5605 (synopsis "Statistical methods for the analysis of flow cytometry data")
5606 (description
5607 "This package provides methods and functionality to analyze flow data
5608 that is beyond the basic infrastructure provided by the @code{flowCore}
5609 package.")
5610 (license license:artistic2.0)))
5611
5612 (define-public r-opencyto
5613 (package
5614 (name "r-opencyto")
5615 (version "1.24.0")
5616 (source
5617 (origin
5618 (method url-fetch)
5619 (uri (bioconductor-uri "openCyto" version))
5620 (sha256
5621 (base32
5622 "0h25nhvq1zq624wsgb55wjcgri9rcd2fnqkb31h9jdakr01dw2sb"))))
5623 (properties `((upstream-name . "openCyto")))
5624 (build-system r-build-system)
5625 (propagated-inputs
5626 `(("r-biobase" ,r-biobase)
5627 ("r-biocgenerics" ,r-biocgenerics)
5628 ("r-clue" ,r-clue)
5629 ("r-data-table" ,r-data-table)
5630 ("r-flowclust" ,r-flowclust)
5631 ("r-flowcore" ,r-flowcore)
5632 ("r-flowstats" ,r-flowstats)
5633 ("r-flowviz" ,r-flowviz)
5634 ("r-flowworkspace" ,r-flowworkspace)
5635 ("r-graph" ,r-graph)
5636 ("r-gtools" ,r-gtools)
5637 ("r-ks" ,r-ks)
5638 ("r-lattice" ,r-lattice)
5639 ("r-mass" ,r-mass)
5640 ("r-ncdfflow" ,r-ncdfflow)
5641 ("r-plyr" ,r-plyr)
5642 ("r-r-utils" ,r-r-utils)
5643 ("r-rbgl" ,r-rbgl)
5644 ("r-rcolorbrewer" ,r-rcolorbrewer)
5645 ("r-rcpp" ,r-rcpp)
5646 ("r-rrcov" ,r-rrcov)))
5647 (home-page "https://bioconductor.org/packages/openCyto")
5648 (synopsis "Hierarchical gating pipeline for flow cytometry data")
5649 (description
5650 "This package is designed to facilitate the automated gating methods in a
5651 sequential way to mimic the manual gating strategy.")
5652 (license license:artistic2.0)))
5653
5654 (define-public r-cytoml
5655 (package
5656 (name "r-cytoml")
5657 (version "1.12.0")
5658 (source
5659 (origin
5660 (method url-fetch)
5661 (uri (bioconductor-uri "CytoML" version))
5662 (sha256
5663 (base32
5664 "0m8x18wkvis85cawv7j07pk59w76wnzy93ia99gd24j82z4h97p1"))))
5665 (properties `((upstream-name . "CytoML")))
5666 (build-system r-build-system)
5667 (inputs
5668 `(("libxml2" ,libxml2)))
5669 (propagated-inputs
5670 `(("r-base64enc" ,r-base64enc)
5671 ("r-bh" ,r-bh)
5672 ("r-biobase" ,r-biobase)
5673 ("r-corpcor" ,r-corpcor)
5674 ("r-cytolib" ,r-cytolib)
5675 ("r-data-table" ,r-data-table)
5676 ("r-dplyr" ,r-dplyr)
5677 ("r-flowcore" ,r-flowcore)
5678 ("r-flowworkspace" ,r-flowworkspace)
5679 ("r-ggcyto" ,r-ggcyto)
5680 ("r-graph" ,r-graph)
5681 ("r-jsonlite" ,r-jsonlite)
5682 ("r-lattice" ,r-lattice)
5683 ("r-ncdfflow" ,r-ncdfflow)
5684 ("r-opencyto" ,r-opencyto)
5685 ("r-plyr" ,r-plyr)
5686 ("r-rbgl" ,r-rbgl)
5687 ("r-rcpp" ,r-rcpp)
5688 ("r-rcppparallel" ,r-rcppparallel)
5689 ("r-rgraphviz" ,r-rgraphviz)
5690 ("r-rprotobuflib" ,r-rprotobuflib)
5691 ("r-runit" ,r-runit)
5692 ("r-xml" ,r-xml)
5693 ("r-yaml" ,r-yaml)))
5694 (home-page "https://github.com/RGLab/CytoML")
5695 (synopsis "GatingML interface for cross platform cytometry data sharing")
5696 (description
5697 "This package provides an interface to implementations of the GatingML2.0
5698 standard to exchange gated cytometry data with other software platforms.")
5699 (license license:artistic2.0)))
5700
5701 (define-public r-flowsom
5702 (package
5703 (name "r-flowsom")
5704 (version "1.18.0")
5705 (source
5706 (origin
5707 (method url-fetch)
5708 (uri (bioconductor-uri "FlowSOM" version))
5709 (sha256
5710 (base32
5711 "0265sq4zvj6d6h5ghqj9xzm4b0z9v65kgyl88cgdcpdkzfnfcvd5"))))
5712 (properties `((upstream-name . "FlowSOM")))
5713 (build-system r-build-system)
5714 (propagated-inputs
5715 `(("r-biocgenerics" ,r-biocgenerics)
5716 ("r-consensusclusterplus" ,r-consensusclusterplus)
5717 ("r-cytoml" ,r-cytoml)
5718 ("r-flowcore" ,r-flowcore)
5719 ("r-flowworkspace" ,r-flowworkspace)
5720 ("r-igraph" ,r-igraph)
5721 ("r-rcolorbrewer" ,r-rcolorbrewer)
5722 ("r-tsne" ,r-tsne)
5723 ("r-xml" ,r-xml)))
5724 (home-page "https://bioconductor.org/packages/FlowSOM/")
5725 (synopsis "Visualize and interpret cytometry data")
5726 (description
5727 "FlowSOM offers visualization options for cytometry data, by using
5728 self-organizing map clustering and minimal spanning trees.")
5729 (license license:gpl2+)))
5730
5731 (define-public r-mixomics
5732 (package
5733 (name "r-mixomics")
5734 (version "6.10.6")
5735 (source
5736 (origin
5737 (method url-fetch)
5738 (uri (bioconductor-uri "mixOmics" version))
5739 (sha256
5740 (base32
5741 "18jwrdyc4pnx917y1kskxz3fqvlrkyy4ny0xqrfcidz0j7p0b7wr"))))
5742 (properties `((upstream-name . "mixOmics")))
5743 (build-system r-build-system)
5744 (propagated-inputs
5745 `(("r-corpcor" ,r-corpcor)
5746 ("r-dplyr" ,r-dplyr)
5747 ("r-ellipse" ,r-ellipse)
5748 ("r-ggplot2" ,r-ggplot2)
5749 ("r-gridextra" ,r-gridextra)
5750 ("r-igraph" ,r-igraph)
5751 ("r-lattice" ,r-lattice)
5752 ("r-mass" ,r-mass)
5753 ("r-matrixstats" ,r-matrixstats)
5754 ("r-rarpack" ,r-rarpack)
5755 ("r-rcolorbrewer" ,r-rcolorbrewer)
5756 ("r-reshape2" ,r-reshape2)
5757 ("r-tidyr" ,r-tidyr)))
5758 (home-page "http://www.mixOmics.org")
5759 (synopsis "Multivariate methods for exploration of biological datasets")
5760 (description
5761 "mixOmics offers a wide range of multivariate methods for the exploration
5762 and integration of biological datasets with a particular focus on variable
5763 selection. The package proposes several sparse multivariate models we have
5764 developed to identify the key variables that are highly correlated, and/or
5765 explain the biological outcome of interest. The data that can be analysed
5766 with mixOmics may come from high throughput sequencing technologies, such as
5767 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
5768 also beyond the realm of omics (e.g. spectral imaging). The methods
5769 implemented in mixOmics can also handle missing values without having to
5770 delete entire rows with missing data.")
5771 (license license:gpl2+)))
5772
5773 (define-public r-depecher
5774 (package
5775 (name "r-depecher")
5776 (version "1.2.0")
5777 (source
5778 (origin
5779 (method url-fetch)
5780 (uri (bioconductor-uri "DepecheR" version))
5781 (sha256
5782 (base32
5783 "1f6zbc0fq7xjflh3mkjx1n83mpppw663dj22rlpxzwp1kpmf6wm5"))))
5784 (properties `((upstream-name . "DepecheR")))
5785 (build-system r-build-system)
5786 (propagated-inputs
5787 `(("r-beanplot" ,r-beanplot)
5788 ("r-dosnow" ,r-dosnow)
5789 ("r-dplyr" ,r-dplyr)
5790 ("r-fnn" ,r-fnn)
5791 ("r-foreach" ,r-foreach)
5792 ("r-ggplot2" ,r-ggplot2)
5793 ("r-gplots" ,r-gplots)
5794 ("r-mass" ,r-mass)
5795 ("r-matrixstats" ,r-matrixstats)
5796 ("r-mixomics" ,r-mixomics)
5797 ("r-moments" ,r-moments)
5798 ("r-rcpp" ,r-rcpp)
5799 ("r-rcppeigen" ,r-rcppeigen)
5800 ("r-reshape2" ,r-reshape2)
5801 ("r-robustbase" ,r-robustbase)
5802 ("r-viridis" ,r-viridis)))
5803 (home-page "https://bioconductor.org/packages/DepecheR/")
5804 (synopsis "Identify traits of clusters in high-dimensional entities")
5805 (description
5806 "The purpose of this package is to identify traits in a dataset that can
5807 separate groups. This is done on two levels. First, clustering is performed,
5808 using an implementation of sparse K-means. Secondly, the generated clusters
5809 are used to predict outcomes of groups of individuals based on their
5810 distribution of observations in the different clusters. As certain clusters
5811 with separating information will be identified, and these clusters are defined
5812 by a sparse number of variables, this method can reduce the complexity of
5813 data, to only emphasize the data that actually matters.")
5814 (license license:expat)))
5815
5816 (define-public r-rcistarget
5817 (package
5818 (name "r-rcistarget")
5819 (version "1.6.0")
5820 (source
5821 (origin
5822 (method url-fetch)
5823 (uri (bioconductor-uri "RcisTarget" version))
5824 (sha256
5825 (base32
5826 "1nnah7s0jd24fpfyxsf76jas8dm23c3266aps124wdlqsp9q5qjw"))))
5827 (properties `((upstream-name . "RcisTarget")))
5828 (build-system r-build-system)
5829 (propagated-inputs
5830 `(("r-aucell" ,r-aucell)
5831 ("r-biocgenerics" ,r-biocgenerics)
5832 ("r-data-table" ,r-data-table)
5833 ("r-feather" ,r-feather)
5834 ("r-gseabase" ,r-gseabase)
5835 ("r-r-utils" ,r-r-utils)
5836 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5837 (home-page "https://aertslab.org/#scenic")
5838 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
5839 (description
5840 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
5841 over-represented on a gene list. In a first step, RcisTarget selects DNA
5842 motifs that are significantly over-represented in the surroundings of the
5843 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
5844 achieved by using a database that contains genome-wide cross-species rankings
5845 for each motif. The motifs that are then annotated to TFs and those that have
5846 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
5847 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
5848 genes in the gene-set that are ranked above the leading edge).")
5849 (license license:gpl3)))
5850
5851 (define-public r-cicero
5852 (package
5853 (name "r-cicero")
5854 (version "1.4.0")
5855 (source
5856 (origin
5857 (method url-fetch)
5858 (uri (bioconductor-uri "cicero" version))
5859 (sha256
5860 (base32
5861 "0mmm7vvzq50b5fayid0bw82b5lar3xm9fwl2ya30q0p4db2y6wnz"))))
5862 (build-system r-build-system)
5863 (propagated-inputs
5864 `(("r-assertthat" ,r-assertthat)
5865 ("r-biobase" ,r-biobase)
5866 ("r-biocgenerics" ,r-biocgenerics)
5867 ("r-data-table" ,r-data-table)
5868 ("r-dplyr" ,r-dplyr)
5869 ("r-fnn" ,r-fnn)
5870 ("r-genomicranges" ,r-genomicranges)
5871 ("r-ggplot2" ,r-ggplot2)
5872 ("r-glasso" ,r-glasso)
5873 ("r-gviz" ,r-gviz)
5874 ("r-igraph" ,r-igraph)
5875 ("r-iranges" ,r-iranges)
5876 ("r-matrix" ,r-matrix)
5877 ("r-monocle" ,r-monocle)
5878 ("r-plyr" ,r-plyr)
5879 ("r-reshape2" ,r-reshape2)
5880 ("r-s4vectors" ,r-s4vectors)
5881 ("r-stringr" ,r-stringr)
5882 ("r-tibble" ,r-tibble)
5883 ("r-vgam" ,r-vgam)))
5884 (home-page "https://bioconductor.org/packages/cicero/")
5885 (synopsis "Predict cis-co-accessibility from single-cell data")
5886 (description
5887 "Cicero computes putative cis-regulatory maps from single-cell chromatin
5888 accessibility data. It also extends the monocle package for use in chromatin
5889 accessibility data.")
5890 (license license:expat)))
5891
5892 ;; This is the latest commit on the "monocle3" branch.
5893 (define-public r-cicero-monocle3
5894 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
5895 (revision "1"))
5896 (package (inherit r-cicero)
5897 (name "r-cicero-monocle3")
5898 (version (git-version "1.3.2" revision commit))
5899 (source
5900 (origin
5901 (method git-fetch)
5902 (uri (git-reference
5903 (url "https://github.com/cole-trapnell-lab/cicero-release.git")
5904 (commit commit)))
5905 (file-name (git-file-name name version))
5906 (sha256
5907 (base32
5908 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
5909 (propagated-inputs
5910 `(("r-monocle3" ,r-monocle3)
5911 ,@(alist-delete "r-monocle"
5912 (package-propagated-inputs r-cicero)))))))
5913
5914 (define-public r-cistopic
5915 (let ((commit "29abd8df9afb60ff27ac3f0a590930debe926950")
5916 (revision "0"))
5917 (package
5918 (name "r-cistopic")
5919 (version (git-version "0.2.1" revision commit))
5920 (source
5921 (origin
5922 (method git-fetch)
5923 (uri (git-reference
5924 (url "https://github.com/aertslab/cisTopic.git")
5925 (commit commit)))
5926 (file-name (git-file-name name version))
5927 (sha256
5928 (base32
5929 "0s8irpsv5d2zcv4ihanvsf1vrpignzliscxnvs4519af3jmx78h8"))))
5930 (build-system r-build-system)
5931 (propagated-inputs
5932 `(("r-aucell" ,r-aucell)
5933 ("r-data-table" ,r-data-table)
5934 ("r-dplyr" ,r-dplyr)
5935 ("r-dosnow" ,r-dosnow)
5936 ("r-dt" ,r-dt)
5937 ("r-feather" ,r-feather)
5938 ("r-fitdistrplus" ,r-fitdistrplus)
5939 ("r-genomicranges" ,r-genomicranges)
5940 ("r-ggplot2" ,r-ggplot2)
5941 ("r-lda" ,r-lda)
5942 ("r-matrix" ,r-matrix)
5943 ("r-plyr" ,r-plyr)
5944 ("r-rcistarget" ,r-rcistarget)
5945 ("r-rtracklayer" ,r-rtracklayer)
5946 ("r-s4vectors" ,r-s4vectors)))
5947 (home-page "https://github.com/aertslab/cisTopic")
5948 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
5949 (description
5950 "The sparse nature of single cell epigenomics data can be overruled using
5951 probabilistic modelling methods such as @dfn{Latent Dirichlet
5952 Allocation} (LDA). This package allows the probabilistic modelling of
5953 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
5954 includes functionalities to identify cell states based on the contribution of
5955 cisTopics and explore the nature and regulatory proteins driving them.")
5956 (license license:gpl3))))
5957
5958 (define-public r-genie3
5959 (package
5960 (name "r-genie3")
5961 (version "1.8.0")
5962 (source
5963 (origin
5964 (method url-fetch)
5965 (uri (bioconductor-uri "GENIE3" version))
5966 (sha256
5967 (base32
5968 "0p67lhgy3lb4nc958s51hx7rvgwhzwfic9xhpsrask40k43spv7l"))))
5969 (properties `((upstream-name . "GENIE3")))
5970 (build-system r-build-system)
5971 (propagated-inputs `(("r-reshape2" ,r-reshape2)))
5972 (home-page "https://bioconductor.org/packages/GENIE3")
5973 (synopsis "Gene network inference with ensemble of trees")
5974 (description
5975 "This package implements the GENIE3 algorithm for inferring gene
5976 regulatory networks from expression data.")
5977 (license license:gpl2+)))
5978
5979 (define-public r-roc
5980 (package
5981 (name "r-roc")
5982 (version "1.62.0")
5983 (source
5984 (origin
5985 (method url-fetch)
5986 (uri (bioconductor-uri "ROC" version))
5987 (sha256
5988 (base32
5989 "1aqpyc28czagg3nbybh55vf152nbar61jjw79w04326d97mc3j3y"))))
5990 (properties `((upstream-name . "ROC")))
5991 (build-system r-build-system)
5992 (propagated-inputs
5993 `(("r-knitr" ,r-knitr)))
5994 (home-page "https://www.bioconductor.org/packages/ROC/")
5995 (synopsis "Utilities for ROC curves")
5996 (description
5997 "This package provides utilities for @dfn{Receiver Operating
5998 Characteristic} (ROC) curves, with a focus on micro arrays.")
5999 (license license:artistic2.0)))
6000
6001 (define-public r-illuminahumanmethylation450kanno-ilmn12-hg19
6002 (package
6003 (name "r-illuminahumanmethylation450kanno-ilmn12-hg19")
6004 (version "0.6.0")
6005 (source
6006 (origin
6007 (method url-fetch)
6008 (uri (bioconductor-uri
6009 "IlluminaHumanMethylation450kanno.ilmn12.hg19"
6010 version 'annotation))
6011 (sha256
6012 (base32
6013 "059vlxsx3p3fcnywwirahsc6mlk813zpqnbv0jsrag6x5bb8z6r4"))))
6014 (properties
6015 `((upstream-name
6016 . "IlluminaHumanMethylation450kanno.ilmn12.hg19")))
6017 (build-system r-build-system)
6018 (propagated-inputs `(("r-minfi" ,r-minfi)))
6019 (home-page
6020 "https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19/")
6021 (synopsis "Annotation for Illumina's 450k methylation arrays")
6022 (description
6023 "This package provides manifests and annotation for Illumina's 450k array
6024 data.")
6025 (license license:artistic2.0)))
6026
6027 (define-public r-watermelon
6028 (package
6029 (name "r-watermelon")
6030 (version "1.30.0")
6031 (source
6032 (origin
6033 (method url-fetch)
6034 (uri (bioconductor-uri "wateRmelon" version))
6035 (sha256
6036 (base32
6037 "0a66fq04yph9dis91lzjk9kh134zy6fj98yklrwf24r1080qngx0"))))
6038 (properties `((upstream-name . "wateRmelon")))
6039 (build-system r-build-system)
6040 (propagated-inputs
6041 `(("r-biobase" ,r-biobase)
6042 ("r-illuminahumanmethylation450kanno-ilmn12-hg19"
6043 ,r-illuminahumanmethylation450kanno-ilmn12-hg19)
6044 ("r-illuminaio" ,r-illuminaio)
6045 ("r-limma" ,r-limma)
6046 ("r-lumi" ,r-lumi)
6047 ("r-matrixstats" ,r-matrixstats)
6048 ("r-methylumi" ,r-methylumi)
6049 ("r-roc" ,r-roc)))
6050 (home-page "https://bioconductor.org/packages/wateRmelon/")
6051 (synopsis "Illumina 450 methylation array normalization and metrics")
6052 (description
6053 "The standard index of DNA methylation (beta) is computed from methylated
6054 and unmethylated signal intensities. Betas calculated from raw signal
6055 intensities perform well, but using 11 methylomic datasets we demonstrate that
6056 quantile normalization methods produce marked improvement. The commonly used
6057 procedure of normalizing betas is inferior to the separate normalization of M
6058 and U, and it is also advantageous to normalize Type I and Type II assays
6059 separately. This package provides 15 flavours of betas and three performance
6060 metrics, with methods for objects produced by the @code{methylumi} and
6061 @code{minfi} packages.")
6062 (license license:gpl3)))
6063
6064 (define-public r-gdsfmt
6065 (package
6066 (name "r-gdsfmt")
6067 (version "1.22.0")
6068 (source
6069 (origin
6070 (method url-fetch)
6071 (uri (bioconductor-uri "gdsfmt" version))
6072 (sha256
6073 (base32
6074 "0zc9v62imd0ykz4h30pxa64q0y45qijmkwdk2pd4ncsg8fc2jlz9"))
6075 (modules '((guix build utils)))
6076 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
6077 ;; them and link with system libraries instead.
6078 (snippet
6079 '(begin
6080 (for-each delete-file-recursively
6081 '("src/LZ4"
6082 "src/XZ"
6083 "src/ZLIB"))
6084 (substitute* "src/Makevars"
6085 (("all: \\$\\(SHLIB\\)") "all:")
6086 (("\\$\\(SHLIB\\): liblzma.a") "")
6087 (("(ZLIB|LZ4)/.*") "")
6088 (("CoreArray/dVLIntGDS.cpp.*")
6089 "CoreArray/dVLIntGDS.cpp")
6090 (("CoreArray/dVLIntGDS.o.*")
6091 "CoreArray/dVLIntGDS.o")
6092 (("PKG_LIBS = ./liblzma.a")
6093 "PKG_LIBS = -llz4"))
6094 (substitute* "src/CoreArray/dStream.h"
6095 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
6096 (string-append "include <" header ">")))
6097 #t))))
6098 (properties `((upstream-name . "gdsfmt")))
6099 (build-system r-build-system)
6100 (inputs
6101 `(("lz4" ,lz4)
6102 ("xz" ,xz)
6103 ("zlib" ,zlib)))
6104 (home-page "http://corearray.sourceforge.net/")
6105 (synopsis
6106 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
6107 (description
6108 "This package provides a high-level R interface to CoreArray @dfn{Genomic
6109 Data Structure} (GDS) data files, which are portable across platforms with
6110 hierarchical structure to store multiple scalable array-oriented data sets
6111 with metadata information. It is suited for large-scale datasets, especially
6112 for data which are much larger than the available random-access memory. The
6113 @code{gdsfmt} package offers efficient operations specifically designed for
6114 integers of less than 8 bits, since a diploid genotype, like
6115 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
6116 byte. Data compression and decompression are available with relatively
6117 efficient random access. It is also allowed to read a GDS file in parallel
6118 with multiple R processes supported by the package @code{parallel}.")
6119 (license license:lgpl3)))
6120
6121 (define-public r-bigmelon
6122 (package
6123 (name "r-bigmelon")
6124 (version "1.12.0")
6125 (source
6126 (origin
6127 (method url-fetch)
6128 (uri (bioconductor-uri "bigmelon" version))
6129 (sha256
6130 (base32
6131 "0sw7rp4p03m1s72b4j06jfb7as3v1n2w2z4ppk8s4f80fb05bcls"))))
6132 (properties `((upstream-name . "bigmelon")))
6133 (build-system r-build-system)
6134 (propagated-inputs
6135 `(("r-biobase" ,r-biobase)
6136 ("r-biocgenerics" ,r-biocgenerics)
6137 ("r-gdsfmt" ,r-gdsfmt)
6138 ("r-geoquery" ,r-geoquery)
6139 ("r-methylumi" ,r-methylumi)
6140 ("r-minfi" ,r-minfi)
6141 ("r-watermelon" ,r-watermelon)))
6142 (home-page "https://bioconductor.org/packages/bigmelon/")
6143 (synopsis "Illumina methylation array analysis for large experiments")
6144 (description
6145 "This package provides methods for working with Illumina arrays using the
6146 @code{gdsfmt} package.")
6147 (license license:gpl3)))
6148
6149 (define-public r-seqbias
6150 (package
6151 (name "r-seqbias")
6152 (version "1.34.0")
6153 (source
6154 (origin
6155 (method url-fetch)
6156 (uri (bioconductor-uri "seqbias" version))
6157 (sha256
6158 (base32
6159 "19vbdyjblij2533ibmrw1n0rkqfrbflma6cg5b79ghks0mg7z8hq"))))
6160 (properties `((upstream-name . "seqbias")))
6161 (build-system r-build-system)
6162 (propagated-inputs
6163 `(("r-biostrings" ,r-biostrings)
6164 ("r-genomicranges" ,r-genomicranges)
6165 ("r-rhtslib" ,r-rhtslib)))
6166 (inputs
6167 `(("zlib" ,zlib))) ; This comes from rhtslib.
6168 (home-page "https://bioconductor.org/packages/seqbias/")
6169 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
6170 (description
6171 "This package implements a model of per-position sequencing bias in
6172 high-throughput sequencing data using a simple Bayesian network, the structure
6173 and parameters of which are trained on a set of aligned reads and a reference
6174 genome sequence.")
6175 (license license:lgpl3)))
6176
6177 (define-public r-reqon
6178 (package
6179 (name "r-reqon")
6180 (version "1.32.0")
6181 (source
6182 (origin
6183 (method url-fetch)
6184 (uri (bioconductor-uri "ReQON" version))
6185 (sha256
6186 (base32
6187 "10p6l2zxijqyypdm970jyfqyrnfhaq3nf7cg2q6mgd1srggfa0cx"))))
6188 (properties `((upstream-name . "ReQON")))
6189 (build-system r-build-system)
6190 (propagated-inputs
6191 `(("r-rjava" ,r-rjava)
6192 ("r-rsamtools" ,r-rsamtools)
6193 ("r-seqbias" ,r-seqbias)))
6194 (home-page "https://bioconductor.org/packages/ReQON/")
6195 (synopsis "Recalibrating quality of nucleotides")
6196 (description
6197 "This package provides an implementation of an algorithm for
6198 recalibrating the base quality scores for aligned sequencing data in BAM
6199 format.")
6200 (license license:gpl2)))
6201
6202 (define-public r-wavcluster
6203 (package
6204 (name "r-wavcluster")
6205 (version "2.20.0")
6206 (source
6207 (origin
6208 (method url-fetch)
6209 (uri (bioconductor-uri "wavClusteR" version))
6210 (sha256
6211 (base32
6212 "0vq3xxsvwq86rlya7xc92sc4i6b48sib0pcina3xivg3ky2j3z7y"))))
6213 (properties `((upstream-name . "wavClusteR")))
6214 (build-system r-build-system)
6215 (propagated-inputs
6216 `(("r-biocgenerics" ,r-biocgenerics)
6217 ("r-biostrings" ,r-biostrings)
6218 ("r-foreach" ,r-foreach)
6219 ("r-genomicfeatures" ,r-genomicfeatures)
6220 ("r-genomicranges" ,r-genomicranges)
6221 ("r-ggplot2" ,r-ggplot2)
6222 ("r-hmisc" ,r-hmisc)
6223 ("r-iranges" ,r-iranges)
6224 ("r-mclust" ,r-mclust)
6225 ("r-rsamtools" ,r-rsamtools)
6226 ("r-rtracklayer" ,r-rtracklayer)
6227 ("r-s4vectors" ,r-s4vectors)
6228 ("r-seqinr" ,r-seqinr)
6229 ("r-stringr" ,r-stringr)
6230 ("r-wmtsa" ,r-wmtsa)))
6231 (home-page "https://bioconductor.org/packages/wavClusteR/")
6232 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
6233 (description
6234 "This package provides an integrated pipeline for the analysis of
6235 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
6236 sequencing errors, SNPs and additional non-experimental sources by a non-
6237 parametric mixture model. The protein binding sites (clusters) are then
6238 resolved at high resolution and cluster statistics are estimated using a
6239 rigorous Bayesian framework. Post-processing of the results, data export for
6240 UCSC genome browser visualization and motif search analysis are provided. In
6241 addition, the package allows to integrate RNA-Seq data to estimate the False
6242 Discovery Rate of cluster detection. Key functions support parallel multicore
6243 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
6244 be applied to the analysis of other NGS data obtained from experimental
6245 procedures that induce nucleotide substitutions (e.g. BisSeq).")
6246 (license license:gpl2)))
6247
6248 (define-public r-timeseriesexperiment
6249 (package
6250 (name "r-timeseriesexperiment")
6251 (version "1.4.0")
6252 (source
6253 (origin
6254 (method url-fetch)
6255 (uri (bioconductor-uri "TimeSeriesExperiment" version))
6256 (sha256
6257 (base32
6258 "0xqa6hzknnci20zx2f6mw5cpqx8pq0v6fzf053hh51p1l2ikvgqm"))))
6259 (properties
6260 `((upstream-name . "TimeSeriesExperiment")))
6261 (build-system r-build-system)
6262 (propagated-inputs
6263 `(("r-deseq2" ,r-deseq2)
6264 ("r-dplyr" ,r-dplyr)
6265 ("r-dynamictreecut" ,r-dynamictreecut)
6266 ("r-edger" ,r-edger)
6267 ("r-ggplot2" ,r-ggplot2)
6268 ("r-hmisc" ,r-hmisc)
6269 ("r-limma" ,r-limma)
6270 ("r-magrittr" ,r-magrittr)
6271 ("r-proxy" ,r-proxy)
6272 ("r-s4vectors" ,r-s4vectors)
6273 ("r-summarizedexperiment" ,r-summarizedexperiment)
6274 ("r-tibble" ,r-tibble)
6275 ("r-tidyr" ,r-tidyr)
6276 ("r-vegan" ,r-vegan)
6277 ("r-viridis" ,r-viridis)))
6278 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
6279 (synopsis "Analysis for short time-series data")
6280 (description
6281 "This package is a visualization and analysis toolbox for short time
6282 course data which includes dimensionality reduction, clustering, two-sample
6283 differential expression testing and gene ranking techniques. The package also
6284 provides methods for retrieving enriched pathways.")
6285 (license license:lgpl3+)))
6286
6287 (define-public r-variantfiltering
6288 (package
6289 (name "r-variantfiltering")
6290 (version "1.22.0")
6291 (source
6292 (origin
6293 (method url-fetch)
6294 (uri (bioconductor-uri "VariantFiltering" version))
6295 (sha256
6296 (base32
6297 "13pgfk2mbffd9smmxnwz7g0jrwng78711053wfzadr107zbyn4r8"))))
6298 (properties
6299 `((upstream-name . "VariantFiltering")))
6300 (build-system r-build-system)
6301 (propagated-inputs
6302 `(("r-annotationdbi" ,r-annotationdbi)
6303 ("r-biobase" ,r-biobase)
6304 ("r-biocgenerics" ,r-biocgenerics)
6305 ("r-biocparallel" ,r-biocparallel)
6306 ("r-biostrings" ,r-biostrings)
6307 ("r-bsgenome" ,r-bsgenome)
6308 ("r-dt" ,r-dt)
6309 ("r-genomeinfodb" ,r-genomeinfodb)
6310 ("r-genomicfeatures" ,r-genomicfeatures)
6311 ("r-genomicranges" ,r-genomicranges)
6312 ("r-genomicscores" ,r-genomicscores)
6313 ("r-graph" ,r-graph)
6314 ("r-gviz" ,r-gviz)
6315 ("r-iranges" ,r-iranges)
6316 ("r-rbgl" ,r-rbgl)
6317 ("r-rsamtools" ,r-rsamtools)
6318 ("r-s4vectors" ,r-s4vectors)
6319 ("r-shiny" ,r-shiny)
6320 ("r-shinyjs" ,r-shinyjs)
6321 ("r-shinythemes" ,r-shinythemes)
6322 ("r-shinytree" ,r-shinytree)
6323 ("r-summarizedexperiment" ,r-summarizedexperiment)
6324 ("r-variantannotation" ,r-variantannotation)
6325 ("r-xvector" ,r-xvector)))
6326 (home-page "https://github.com/rcastelo/VariantFiltering")
6327 (synopsis "Filtering of coding and non-coding genetic variants")
6328 (description
6329 "Filter genetic variants using different criteria such as inheritance
6330 model, amino acid change consequence, minor allele frequencies across human
6331 populations, splice site strength, conservation, etc.")
6332 (license license:artistic2.0)))
6333
6334 (define-public r-genomegraphs
6335 (package
6336 (name "r-genomegraphs")
6337 (version "1.46.0")
6338 (source
6339 (origin
6340 (method url-fetch)
6341 (uri (bioconductor-uri "GenomeGraphs" version))
6342 (sha256
6343 (base32
6344 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
6345 (properties `((upstream-name . "GenomeGraphs")))
6346 (build-system r-build-system)
6347 (propagated-inputs
6348 `(("r-biomart" ,r-biomart)))
6349 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
6350 (synopsis "Plotting genomic information from Ensembl")
6351 (description
6352 "Genomic data analyses requires integrated visualization of known genomic
6353 information and new experimental data. GenomeGraphs uses the biomaRt package
6354 to perform live annotation queries to Ensembl and translates this to e.g.
6355 gene/transcript structures in viewports of the grid graphics package. This
6356 results in genomic information plotted together with your data. Another
6357 strength of GenomeGraphs is to plot different data types such as array CGH,
6358 gene expression, sequencing and other data, together in one plot using the
6359 same genome coordinate system.")
6360 (license license:artistic2.0)))
6361
6362 (define-public r-wavetiling
6363 (package
6364 (name "r-wavetiling")
6365 (version "1.28.0")
6366 (source
6367 (origin
6368 (method url-fetch)
6369 (uri (bioconductor-uri "waveTiling" version))
6370 (sha256
6371 (base32
6372 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
6373 (properties `((upstream-name . "waveTiling")))
6374 (build-system r-build-system)
6375 (propagated-inputs
6376 `(("r-affy" ,r-affy)
6377 ("r-biobase" ,r-biobase)
6378 ("r-biostrings" ,r-biostrings)
6379 ("r-genomegraphs" ,r-genomegraphs)
6380 ("r-genomicranges" ,r-genomicranges)
6381 ("r-iranges" ,r-iranges)
6382 ("r-oligo" ,r-oligo)
6383 ("r-oligoclasses" ,r-oligoclasses)
6384 ("r-preprocesscore" ,r-preprocesscore)
6385 ("r-waveslim" ,r-waveslim)))
6386 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
6387 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
6388 (description
6389 "This package is designed to conduct transcriptome analysis for tiling
6390 arrays based on fast wavelet-based functional models.")
6391 (license license:gpl2+)))
6392
6393 (define-public r-variancepartition
6394 (package
6395 (name "r-variancepartition")
6396 (version "1.16.0")
6397 (source
6398 (origin
6399 (method url-fetch)
6400 (uri (bioconductor-uri "variancePartition" version))
6401 (sha256
6402 (base32
6403 "1ygx7f2sp4b7ilgspm6vqcbjxs7br9s6g3gwcdb978kx03ymp4i8"))))
6404 (properties
6405 `((upstream-name . "variancePartition")))
6406 (build-system r-build-system)
6407 (propagated-inputs
6408 `(("r-biobase" ,r-biobase)
6409 ("r-biocparallel" ,r-biocparallel)
6410 ("r-colorramps" ,r-colorramps)
6411 ("r-doparallel" ,r-doparallel)
6412 ("r-foreach" ,r-foreach)
6413 ("r-ggplot2" ,r-ggplot2)
6414 ("r-gplots" ,r-gplots)
6415 ("r-iterators" ,r-iterators)
6416 ("r-limma" ,r-limma)
6417 ("r-lme4" ,r-lme4)
6418 ("r-lmertest" ,r-lmertest)
6419 ("r-mass" ,r-mass)
6420 ("r-pbkrtest" ,r-pbkrtest)
6421 ("r-progress" ,r-progress)
6422 ("r-reshape2" ,r-reshape2)
6423 ("r-scales" ,r-scales)))
6424 (home-page "https://bioconductor.org/packages/variancePartition/")
6425 (synopsis "Analyze variation in gene expression experiments")
6426 (description
6427 "This is a package providing tools to quantify and interpret multiple
6428 sources of biological and technical variation in gene expression experiments.
6429 It uses a linear mixed model to quantify variation in gene expression
6430 attributable to individual, tissue, time point, or technical variables. The
6431 package includes dream differential expression analysis for repeated
6432 measures.")
6433 (license license:gpl2+)))
6434
6435 (define-public r-htqpcr
6436 (package
6437 (name "r-htqpcr")
6438 (version "1.40.0")
6439 (source
6440 (origin
6441 (method url-fetch)
6442 (uri (bioconductor-uri "HTqPCR" version))
6443 (sha256
6444 (base32
6445 "008iczqaa0wn5nw144vfg3qylg7qa1q963nq9mqhgj3sxlg4rmjx"))))
6446 (properties `((upstream-name . "HTqPCR")))
6447 (build-system r-build-system)
6448 (propagated-inputs
6449 `(("r-affy" ,r-affy)
6450 ("r-biobase" ,r-biobase)
6451 ("r-gplots" ,r-gplots)
6452 ("r-limma" ,r-limma)
6453 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6454 (home-page "http://www.ebi.ac.uk/bertone/software")
6455 (synopsis "Automated analysis of high-throughput qPCR data")
6456 (description
6457 "Analysis of Ct values from high throughput quantitative real-time
6458 PCR (qPCR) assays across multiple conditions or replicates. The input data
6459 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
6460 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
6461 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
6462 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
6463 loading, quality assessment, normalization, visualization and parametric or
6464 non-parametric testing for statistical significance in Ct values between
6465 features (e.g. genes, microRNAs).")
6466 (license license:artistic2.0)))
6467
6468 (define-public r-unifiedwmwqpcr
6469 (package
6470 (name "r-unifiedwmwqpcr")
6471 (version "1.22.0")
6472 (source
6473 (origin
6474 (method url-fetch)
6475 (uri (bioconductor-uri "unifiedWMWqPCR" version))
6476 (sha256
6477 (base32
6478 "1l6rf7scxxyz4x0m4li54y6905sqj4jrx481zb9h3vqhcfcmn8lj"))))
6479 (properties
6480 `((upstream-name . "unifiedWMWqPCR")))
6481 (build-system r-build-system)
6482 (propagated-inputs
6483 `(("r-biocgenerics" ,r-biocgenerics)
6484 ("r-htqpcr" ,r-htqpcr)))
6485 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
6486 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
6487 (description
6488 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
6489 data. This modified test allows for testing differential expression in qPCR
6490 data.")
6491 (license license:gpl2+)))
6492
6493 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
6494 ;; it here.
6495 (define-public r-activedriverwgs
6496 (package
6497 (name "r-activedriverwgs")
6498 (version "1.0.1")
6499 (source
6500 (origin
6501 (method url-fetch)
6502 (uri (cran-uri "ActiveDriverWGS" version))
6503 (sha256
6504 (base32
6505 "08l9dj8d3cd74z1dqn8n4yqykwvqjxsfa067wnxyh7xnfvvnm5v1"))))
6506 (properties
6507 `((upstream-name . "ActiveDriverWGS")))
6508 (build-system r-build-system)
6509 (propagated-inputs
6510 `(("r-biostrings" ,r-biostrings)
6511 ("r-bsgenome" ,r-bsgenome)
6512 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
6513 ("r-genomeinfodb" ,r-genomeinfodb)
6514 ("r-genomicranges" ,r-genomicranges)
6515 ("r-iranges" ,r-iranges)
6516 ("r-plyr" ,r-plyr)
6517 ("r-s4vectors" ,r-s4vectors)))
6518 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
6519 (synopsis "Driver discovery tool for cancer whole genomes")
6520 (description
6521 "This package provides a method for finding an enrichment of cancer
6522 simple somatic mutations (SNVs and Indels) in functional elements across the
6523 human genome. ActiveDriverWGS detects coding and noncoding driver elements
6524 using whole genome sequencing data.")
6525 (license license:gpl3)))
6526
6527 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
6528 ;; it here.
6529 (define-public r-activepathways
6530 (package
6531 (name "r-activepathways")
6532 (version "1.0.1")
6533 (source
6534 (origin
6535 (method url-fetch)
6536 (uri (cran-uri "ActivePathways" version))
6537 (sha256
6538 (base32
6539 "1xb0d1svmzw404pv8ja6wr4773k7x2lxkrzrayilvzqbfzj1wx20"))))
6540 (properties
6541 `((upstream-name . "ActivePathways")))
6542 (build-system r-build-system)
6543 (propagated-inputs
6544 `(("r-data-table" ,r-data-table)
6545 ("r-ggplot2" ,r-ggplot2)
6546 ("r-metap" ,r-metap)))
6547 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
6548 (synopsis "Multivariate pathway enrichment analysis")
6549 (description
6550 "This package represents an integrative method of analyzing multi omics
6551 data that conducts enrichment analysis of annotated gene sets. ActivePathways
6552 uses a statistical data fusion approach, rationalizes contributing evidence
6553 and highlights associated genes, improving systems-level understanding of
6554 cellular organization in health and disease.")
6555 (license license:gpl3)))
6556
6557 (define-public r-bgmix
6558 (package
6559 (name "r-bgmix")
6560 (version "1.46.0")
6561 (source
6562 (origin
6563 (method url-fetch)
6564 (uri (bioconductor-uri "BGmix" version))
6565 (sha256
6566 (base32
6567 "1bwqqhkh4m3hhpd71grwjrg7n07lzvys4y7aghmw2gw5ibnk5683"))))
6568 (properties `((upstream-name . "BGmix")))
6569 (build-system r-build-system)
6570 (propagated-inputs
6571 `(("r-kernsmooth" ,r-kernsmooth)))
6572 (home-page "https://bioconductor.org/packages/BGmix/")
6573 (synopsis "Bayesian models for differential gene expression")
6574 (description
6575 "This package provides fully Bayesian mixture models for differential
6576 gene expression.")
6577 (license license:gpl2)))
6578
6579 (define-public r-bgx
6580 (package
6581 (name "r-bgx")
6582 (version "1.52.0")
6583 (source
6584 (origin
6585 (method url-fetch)
6586 (uri (bioconductor-uri "bgx" version))
6587 (sha256
6588 (base32
6589 "0fiqqv6pin0zhxaw67hzfjccq2qkl9qfqjf10nx2zmpxm2licavm"))))
6590 (properties `((upstream-name . "bgx")))
6591 (build-system r-build-system)
6592 (propagated-inputs
6593 `(("r-affy" ,r-affy)
6594 ("r-biobase" ,r-biobase)
6595 ("r-gcrma" ,r-gcrma)
6596 ("r-rcpp" ,r-rcpp)))
6597 (home-page "https://bioconductor.org/packages/bgx/")
6598 (synopsis "Bayesian gene expression")
6599 (description
6600 "This package provides tools for Bayesian integrated analysis of
6601 Affymetrix GeneChips.")
6602 (license license:gpl2)))
6603
6604 (define-public r-bhc
6605 (package
6606 (name "r-bhc")
6607 (version "1.38.0")
6608 (source
6609 (origin
6610 (method url-fetch)
6611 (uri (bioconductor-uri "BHC" version))
6612 (sha256
6613 (base32
6614 "1bxx3jak8mgvay3j1xd59bb9j86pzl6hh5abxww9x1b7rswmy1jh"))))
6615 (properties `((upstream-name . "BHC")))
6616 (build-system r-build-system)
6617 (home-page "https://bioconductor.org/packages/BHC/")
6618 (synopsis "Bayesian hierarchical clustering")
6619 (description
6620 "The method implemented in this package performs bottom-up hierarchical
6621 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
6622 in the data and Bayesian model selection to decide at each step which clusters
6623 to merge. This avoids several limitations of traditional methods, for example
6624 how many clusters there should be and how to choose a principled distance
6625 metric. This implementation accepts multinomial (i.e. discrete, with 2+
6626 categories) or time-series data. This version also includes a randomised
6627 algorithm which is more efficient for larger data sets.")
6628 (license license:gpl3)))