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