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