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