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