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