gnu: Add cl-ana.statistical-learning.
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
CommitLineData
fa596599 1;;; GNU Guix --- Functional package management for GNU
6aa896d8
RW
2;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
61242625 4;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
16e2e4f2 5;;; Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com>
fa596599
RW
6;;;
7;;; This file is part of GNU Guix.
8;;;
9;;; GNU Guix is free software; you can redistribute it and/or modify it
10;;; under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 3 of the License, or (at
12;;; your option) any later version.
13;;;
14;;; GNU Guix is distributed in the hope that it will be useful, but
15;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22(define-module (gnu packages bioconductor)
23 #:use-module ((guix licenses) #:prefix license:)
24 #:use-module (guix packages)
25 #:use-module (guix download)
b2dce6b5 26 #:use-module (guix git-download)
fa596599 27 #:use-module (guix build-system r)
183ce988 28 #:use-module (gnu packages)
58656064 29 #:use-module (gnu packages base)
cf9a29b2 30 #:use-module (gnu packages bioinformatics)
a5b56a53
RJ
31 #:use-module (gnu packages cran)
32 #:use-module (gnu packages compression)
c18dccff 33 #:use-module (gnu packages gcc)
cf9a29b2 34 #:use-module (gnu packages graph)
5aef09bd 35 #:use-module (gnu packages graphviz)
dddbc90c 36 #:use-module (gnu packages haskell-xyz)
5cfa4bff 37 #:use-module (gnu packages image)
b64ce4b7 38 #:use-module (gnu packages maths)
6b12f213
RW
39 #:use-module (gnu packages netpbm)
40 #:use-module (gnu packages perl)
2cb71d81 41 #:use-module (gnu packages pkg-config)
f4235c0e 42 #:use-module (gnu packages statistics)
14bb1c48 43 #:use-module (gnu packages web)
7a62d5e0 44 #:use-module (gnu packages xml)
14bb1c48 45 #:use-module (srfi srfi-1))
fa596599 46
557a1089
RW
47\f
48;;; Annotations
49
6f15ea24
RW
50(define-public r-reactome-db
51 (package
52 (name "r-reactome-db")
53 (version "1.70.0")
54 (source
55 (origin
56 (method url-fetch)
57 (uri (bioconductor-uri "reactome.db" version 'annotation))
58 (sha256
59 (base32
60 "05wc4fp0faq6h3kq5rwafnips043as31yq11mrjngfxvf5i10srg"))))
61 (properties `((upstream-name . "reactome.db")))
62 (build-system r-build-system)
63 (propagated-inputs
64 `(("r-annotationdbi" ,r-annotationdbi)))
65 (home-page "https://bioconductor.org/packages/reactome.db/")
66 (synopsis "Annotation maps for reactome")
67 (description
68 "This package provides a set of annotation maps for the REACTOME
69database, assembled using data from REACTOME.")
70 (license license:cc-by4.0)))
71
b7d93cf5
RW
72(define-public r-bsgenome-celegans-ucsc-ce6
73 (package
74 (name "r-bsgenome-celegans-ucsc-ce6")
75 (version "1.4.0")
76 (source (origin
77 (method url-fetch)
86ced7b2
RW
78 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
79 version 'annotation))
b7d93cf5
RW
80 (sha256
81 (base32
82 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
83 (properties
84 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
85 (build-system r-build-system)
b7d93cf5
RW
86 (propagated-inputs
87 `(("r-bsgenome" ,r-bsgenome)))
88 (home-page
89 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
90 (synopsis "Full genome sequences for Worm")
91 (description
92 "This package provides full genome sequences for Caenorhabditis
93elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
0c792ffb
RW
94objects.")
95 (license license:artistic2.0)))
96
97(define-public r-bsgenome-celegans-ucsc-ce10
98 (package
99 (name "r-bsgenome-celegans-ucsc-ce10")
100 (version "1.4.0")
101 (source (origin
102 (method url-fetch)
6998ecba
RW
103 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
104 version 'annotation))
0c792ffb
RW
105 (sha256
106 (base32
107 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
108 (properties
109 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
110 (build-system r-build-system)
0c792ffb
RW
111 (propagated-inputs
112 `(("r-bsgenome" ,r-bsgenome)))
113 (home-page
114 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
115 (synopsis "Full genome sequences for Worm")
116 (description
117 "This package provides full genome sequences for Caenorhabditis
118elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
b7d93cf5
RW
119objects.")
120 (license license:artistic2.0)))
121
183db725
RW
122(define-public r-bsgenome-dmelanogaster-ucsc-dm6
123 (package
124 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
125 (version "1.4.1")
126 (source (origin
127 (method url-fetch)
149f351f
RW
128 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
129 version 'annotation))
183db725
RW
130 (sha256
131 (base32
132 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
133 (properties
134 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
135 (build-system r-build-system)
183db725
RW
136 (propagated-inputs
137 `(("r-bsgenome" ,r-bsgenome)))
138 (home-page
139 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
140 (synopsis "Full genome sequences for Fly")
141 (description
142 "This package provides full genome sequences for Drosophila
143melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
144objects.")
145 (license license:artistic2.0)))
146
13dabd69
RW
147(define-public r-bsgenome-dmelanogaster-ucsc-dm3
148 (package
149 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
150 (version "1.4.0")
151 (source (origin
152 (method url-fetch)
87073b7e
RW
153 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
154 version 'annotation))
13dabd69
RW
155 (sha256
156 (base32
157 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
158 (properties
159 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
160 (build-system r-build-system)
13dabd69
RW
161 (propagated-inputs
162 `(("r-bsgenome" ,r-bsgenome)))
163 (home-page
164 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
165 (synopsis "Full genome sequences for Fly")
166 (description
167 "This package provides full genome sequences for Drosophila
168melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
169Biostrings objects.")
170 (license license:artistic2.0)))
171
dfac7eb9
RW
172(define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
173 (package
174 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
175 (version "1.3.99")
176 (source (origin
177 (method url-fetch)
bf05ece1
RW
178 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
179 version 'annotation))
dfac7eb9
RW
180 (sha256
181 (base32
182 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
183 (properties
184 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
185 (build-system r-build-system)
186 (propagated-inputs
187 `(("r-bsgenome" ,r-bsgenome)
188 ("r-bsgenome-dmelanogaster-ucsc-dm3"
189 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
190 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
191 (synopsis "Full masked genome sequences for Fly")
192 (description
193 "This package provides full masked genome sequences for Drosophila
194melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
195Biostrings objects. The sequences are the same as in
196BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
197masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
198intra-contig ambiguities (AMB mask), (3) the mask of repeats from
199RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
200Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
201 (license license:artistic2.0)))
202
40a65057
RW
203(define-public r-bsgenome-hsapiens-1000genomes-hs37d5
204 (package
205 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
206 (version "0.99.1")
207 (source (origin
208 (method url-fetch)
88e7c7db
RW
209 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
210 version 'annotation))
40a65057
RW
211 (sha256
212 (base32
213 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
214 (properties
215 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
216 (build-system r-build-system)
40a65057
RW
217 (propagated-inputs
218 `(("r-bsgenome" ,r-bsgenome)))
219 (home-page
220 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
221 (synopsis "Full genome sequences for Homo sapiens")
222 (description
223 "This package provides full genome sequences for Homo sapiens from
2241000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
225 (license license:artistic2.0)))
226
6fbd759b
RW
227(define-public r-bsgenome-hsapiens-ucsc-hg19-masked
228 (package
229 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
230 (version "1.3.99")
231 (source (origin
232 (method url-fetch)
a47646bd
RW
233 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
234 version 'annotation))
6fbd759b
RW
235 (sha256
236 (base32
237 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
238 (properties
239 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
240 (build-system r-build-system)
241 (propagated-inputs
242 `(("r-bsgenome" ,r-bsgenome)
243 ("r-bsgenome-hsapiens-ucsc-hg19"
244 ,r-bsgenome-hsapiens-ucsc-hg19)))
245 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
246 (synopsis "Full masked genome sequences for Homo sapiens")
247 (description
248 "This package provides full genome sequences for Homo sapiens (Human) as
249provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
250sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
251them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
252mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
253repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
254Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
255default.")
256 (license license:artistic2.0)))
257
5acb9052
RW
258(define-public r-bsgenome-mmusculus-ucsc-mm9
259 (package
260 (name "r-bsgenome-mmusculus-ucsc-mm9")
261 (version "1.4.0")
262 (source (origin
263 (method url-fetch)
21f6dae7
RW
264 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
265 version 'annotation))
5acb9052
RW
266 (sha256
267 (base32
268 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
269 (properties
270 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
271 (build-system r-build-system)
5acb9052
RW
272 (propagated-inputs
273 `(("r-bsgenome" ,r-bsgenome)))
274 (home-page
275 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
276 (synopsis "Full genome sequences for Mouse")
277 (description
278 "This package provides full genome sequences for Mus musculus (Mouse) as
279provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
280 (license license:artistic2.0)))
281
2bece692
RW
282(define-public r-bsgenome-mmusculus-ucsc-mm9-masked
283 (package
284 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
285 (version "1.3.99")
286 (source (origin
287 (method url-fetch)
51dc4a2d
RW
288 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
289 version 'annotation))
2bece692
RW
290 (sha256
291 (base32
292 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
293 (properties
294 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
295 (build-system r-build-system)
296 (propagated-inputs
297 `(("r-bsgenome" ,r-bsgenome)
298 ("r-bsgenome-mmusculus-ucsc-mm9"
299 ,r-bsgenome-mmusculus-ucsc-mm9)))
300 (home-page "http://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
301 (synopsis "Full masked genome sequences for Mouse")
302 (description
303 "This package provides full genome sequences for Mus musculus (Mouse) as
304provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
305sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
306them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
307mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
308repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
309Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
310default." )
311 (license license:artistic2.0)))
312
c3adc830
RW
313(define-public r-bsgenome-mmusculus-ucsc-mm10
314 (package
315 (name "r-bsgenome-mmusculus-ucsc-mm10")
316 (version "1.4.0")
317 (source (origin
318 (method url-fetch)
f83404bc
RW
319 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
320 version 'annotation))
c3adc830
RW
321 (sha256
322 (base32
323 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
324 (properties
325 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
326 (build-system r-build-system)
c3adc830
RW
327 (propagated-inputs
328 `(("r-bsgenome" ,r-bsgenome)))
329 (home-page
330 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
331 (synopsis "Full genome sequences for Mouse")
332 (description
333 "This package provides full genome sequences for Mus
334musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
335in Biostrings objects.")
336 (license license:artistic2.0)))
337
3a08940e
RW
338(define-public r-org-ce-eg-db
339 (package
340 (name "r-org-ce-eg-db")
341 (version "3.7.0")
342 (source (origin
343 (method url-fetch)
1c05e637 344 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
3a08940e
RW
345 (sha256
346 (base32
347 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
348 (properties
349 `((upstream-name . "org.Ce.eg.db")))
350 (build-system r-build-system)
351 (propagated-inputs
352 `(("r-annotationdbi" ,r-annotationdbi)))
353 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
354 (synopsis "Genome wide annotation for Worm")
355 (description
356 "This package provides mappings from Entrez gene identifiers to various
357annotations for the genome of the model worm Caenorhabditis elegans.")
358 (license license:artistic2.0)))
359
f8780e96
RW
360(define-public r-org-dm-eg-db
361 (package
362 (name "r-org-dm-eg-db")
363 (version "3.7.0")
364 (source (origin
365 (method url-fetch)
b0dfc79b 366 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
f8780e96
RW
367 (sha256
368 (base32
369 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
370 (properties
371 `((upstream-name . "org.Dm.eg.db")))
372 (build-system r-build-system)
373 (propagated-inputs
374 `(("r-annotationdbi" ,r-annotationdbi)))
375 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
376 (synopsis "Genome wide annotation for Fly")
377 (description
378 "This package provides mappings from Entrez gene identifiers to various
379annotations for the genome of the model fruit fly Drosophila melanogaster.")
380 (license license:artistic2.0)))
381
3dad6087
RW
382(define-public r-org-dr-eg-db
383 (package
384 (name "r-org-dr-eg-db")
385 (version "3.7.0")
386 (source (origin
387 (method url-fetch)
7bb65a22 388 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
3dad6087
RW
389 (sha256
390 (base32
391 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
392 (properties
393 `((upstream-name . "org.Dr.eg.db")))
394 (build-system r-build-system)
395 (propagated-inputs
396 `(("r-annotationdbi" ,r-annotationdbi)))
397 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
398 (synopsis "Annotation for Zebrafish")
399 (description
400 "This package provides genome wide annotations for Zebrafish, primarily
401based on mapping using Entrez Gene identifiers.")
402 (license license:artistic2.0)))
403
d56df35a
RW
404(define-public r-org-hs-eg-db
405 (package
406 (name "r-org-hs-eg-db")
407 (version "3.7.0")
408 (source (origin
409 (method url-fetch)
f53becc6 410 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
d56df35a
RW
411 (sha256
412 (base32
413 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
414 (properties
415 `((upstream-name . "org.Hs.eg.db")))
416 (build-system r-build-system)
417 (propagated-inputs
418 `(("r-annotationdbi" ,r-annotationdbi)))
419 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
420 (synopsis "Genome wide annotation for Human")
421 (description
422 "This package contains genome-wide annotations for Human, primarily based
423on mapping using Entrez Gene identifiers.")
424 (license license:artistic2.0)))
425
8035819f
RW
426(define-public r-org-mm-eg-db
427 (package
428 (name "r-org-mm-eg-db")
429 (version "3.7.0")
430 (source (origin
431 (method url-fetch)
411be88b 432 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
8035819f
RW
433 (sha256
434 (base32
435 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
436 (properties
437 `((upstream-name . "org.Mm.eg.db")))
438 (build-system r-build-system)
439 (propagated-inputs
440 `(("r-annotationdbi" ,r-annotationdbi)))
441 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
442 (synopsis "Genome wide annotation for Mouse")
443 (description
444 "This package provides mappings from Entrez gene identifiers to various
445annotations for the genome of the model mouse Mus musculus.")
446 (license license:artistic2.0)))
447
fe0b76e2
RW
448(define-public r-bsgenome-hsapiens-ucsc-hg19
449 (package
450 (name "r-bsgenome-hsapiens-ucsc-hg19")
451 (version "1.4.0")
452 (source (origin
453 (method url-fetch)
e7a8cf2e
RW
454 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
455 version 'annotation))
fe0b76e2
RW
456 (sha256
457 (base32
458 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
459 (properties
460 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
461 (build-system r-build-system)
fe0b76e2
RW
462 (propagated-inputs
463 `(("r-bsgenome" ,r-bsgenome)))
464 (home-page
465 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
466 (synopsis "Full genome sequences for Homo sapiens")
467 (description
468 "This package provides full genome sequences for Homo sapiens as provided
469by UCSC (hg19, February 2009) and stored in Biostrings objects.")
470 (license license:artistic2.0)))
471
8324e64c
RW
472(define-public r-ensdb-hsapiens-v75
473 (package
474 (name "r-ensdb-hsapiens-v75")
475 (version "2.99.0")
476 (source
477 (origin
478 (method url-fetch)
479 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
480 (sha256
481 (base32
482 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
483 (properties
484 `((upstream-name . "EnsDb.Hsapiens.v75")))
485 (build-system r-build-system)
486 (propagated-inputs
487 `(("r-ensembldb" ,r-ensembldb)))
488 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
489 (synopsis "Ensembl based annotation package")
490 (description
491 "This package exposes an annotation database generated from Ensembl.")
492 (license license:artistic2.0)))
493
2cc51108
RW
494(define-public r-genelendatabase
495 (package
496 (name "r-genelendatabase")
daeb3cd9 497 (version "1.18.0")
2cc51108
RW
498 (source
499 (origin
500 (method url-fetch)
717d7cda 501 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
2cc51108
RW
502 (sha256
503 (base32
daeb3cd9 504 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
2cc51108
RW
505 (properties
506 `((upstream-name . "geneLenDataBase")))
507 (build-system r-build-system)
508 (propagated-inputs
509 `(("r-rtracklayer" ,r-rtracklayer)
510 ("r-genomicfeatures" ,r-genomicfeatures)))
511 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
512 (synopsis "Lengths of mRNA transcripts for a number of genomes")
513 (description
514 "This package provides the lengths of mRNA transcripts for a number of
515genomes and gene ID formats, largely based on the UCSC table browser.")
516 (license license:lgpl2.0+)))
517
66e35ce6
RW
518(define-public r-txdb-hsapiens-ucsc-hg19-knowngene
519 (package
520 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
521 (version "3.2.2")
522 (source (origin
523 (method url-fetch)
f2580a13
RW
524 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
525 version 'annotation))
66e35ce6
RW
526 (sha256
527 (base32
528 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
529 (properties
530 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
531 (build-system r-build-system)
66e35ce6
RW
532 (propagated-inputs
533 `(("r-genomicfeatures" ,r-genomicfeatures)))
534 (home-page
535 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
536 (synopsis "Annotation package for human genome in TxDb format")
537 (description
538 "This package provides an annotation database of Homo sapiens genome
539data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
798b80ce
RW
540track. The database is exposed as a @code{TxDb} object.")
541 (license license:artistic2.0)))
542
543(define-public r-txdb-hsapiens-ucsc-hg38-knowngene
544 (package
545 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
546 (version "3.4.6")
547 (source (origin
548 (method url-fetch)
d78db088
RW
549 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
550 version 'annotation))
798b80ce
RW
551 (sha256
552 (base32
553 "12j7rri9r129v9w1yiqadg952dx462dh092sxif3r5kk8l7bxkn9"))))
554 (properties
555 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
556 (build-system r-build-system)
557 (propagated-inputs
558 `(("r-genomicfeatures" ,r-genomicfeatures)))
559 (home-page
560 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
561 (synopsis "Annotation package for human genome in TxDb format")
562 (description
563 "This package provides an annotation database of Homo sapiens genome
564data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
66e35ce6
RW
565track. The database is exposed as a @code{TxDb} object.")
566 (license license:artistic2.0)))
567
d220babf
RW
568(define-public r-txdb-mmusculus-ucsc-mm9-knowngene
569 (package
570 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
571 (version "3.2.2")
572 (source (origin
573 (method url-fetch)
1afdf41b
RW
574 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
575 version 'annotation))
d220babf
RW
576 (sha256
577 (base32
578 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
579 (properties
580 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
581 (build-system r-build-system)
582 (propagated-inputs
583 `(("r-genomicfeatures" ,r-genomicfeatures)
584 ("r-annotationdbi" ,r-annotationdbi)))
585 (home-page
586 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
587 (synopsis "Annotation package for mouse genome in TxDb format")
588 (description
589 "This package provides an annotation database of Mouse genome data. It
590is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
591database is exposed as a @code{TxDb} object.")
592 (license license:artistic2.0)))
593
7bc5d1b0
RW
594(define-public r-txdb-mmusculus-ucsc-mm10-knowngene
595 (package
596 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
61242625 597 (version "3.4.7")
7bc5d1b0
RW
598 (source (origin
599 (method url-fetch)
c271d990
RW
600 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
601 version 'annotation))
7bc5d1b0
RW
602 (sha256
603 (base32
61242625 604 "04impkl8zh1gpwwrpbf19jqznsjrq2306yyhm6cmx6hr1401bd6b"))))
7bc5d1b0
RW
605 (properties
606 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
607 (build-system r-build-system)
7bc5d1b0
RW
608 (propagated-inputs
609 `(("r-bsgenome" ,r-bsgenome)
610 ("r-genomicfeatures" ,r-genomicfeatures)
611 ("r-annotationdbi" ,r-annotationdbi)))
612 (home-page
613 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
614 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
615 (description
616 "This package loads a TxDb object, which is an R interface to
617prefabricated databases contained in this package. This package provides
618the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
619based on the knownGene track.")
620 (license license:artistic2.0)))
621
7cd446fd
RW
622(define-public r-txdb-celegans-ucsc-ce6-ensgene
623 (package
624 (name "r-txdb-celegans-ucsc-ce6-ensgene")
625 (version "3.2.2")
626 (source
627 (origin
628 (method url-fetch)
629 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
630 version 'annotation))
631 (sha256
632 (base32
633 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
634 (properties
635 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
636 (build-system r-build-system)
637 (propagated-inputs
638 `(("r-annotationdbi" ,r-annotationdbi)
639 ("r-genomicfeatures" ,r-genomicfeatures)))
640 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
641 (synopsis "Annotation package for C elegans TxDb objects")
642 (description
643 "This package exposes a C elegans annotation database generated from UCSC
644by exposing these as TxDb objects.")
645 (license license:artistic2.0)))
646
0f5c9cec
RW
647(define-public r-fdb-infiniummethylation-hg19
648 (package
649 (name "r-fdb-infiniummethylation-hg19")
650 (version "2.2.0")
651 (source (origin
652 (method url-fetch)
6aca4054
RW
653 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
654 version 'annotation))
0f5c9cec
RW
655 (sha256
656 (base32
657 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
658 (properties
659 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
660 (build-system r-build-system)
661 (propagated-inputs
662 `(("r-biostrings" ,r-biostrings)
663 ("r-genomicfeatures" ,r-genomicfeatures)
664 ("r-annotationdbi" ,r-annotationdbi)
665 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
666 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
667 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
668 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
669 (description
670 "This is an annotation package for Illumina Infinium DNA methylation
671probes. It contains the compiled HumanMethylation27 and HumanMethylation450
672annotations.")
673 (license license:artistic2.0)))
674
9475a248
RW
675(define-public r-illuminahumanmethylationepicmanifest
676 (package
677 (name "r-illuminahumanmethylationepicmanifest")
678 (version "0.3.0")
679 (source (origin
680 (method url-fetch)
25f567a8
RW
681 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
682 version 'annotation))
9475a248
RW
683 (sha256
684 (base32
685 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
686 (properties
687 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
688 (build-system r-build-system)
689 (propagated-inputs
690 `(("r-minfi" ,r-minfi)))
691 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
692 (synopsis "Manifest for Illumina's EPIC methylation arrays")
693 (description
694 "This is a manifest package for Illumina's EPIC methylation arrays.")
695 (license license:artistic2.0)))
696
f8a5af46
RW
697(define-public r-do-db
698 (package
699 (name "r-do-db")
700 (version "2.9")
701 (source (origin
702 (method url-fetch)
eed2766a 703 (uri (bioconductor-uri "DO.db" version 'annotation))
f8a5af46
RW
704 (sha256
705 (base32
706 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
707 (properties
708 `((upstream-name . "DO.db")))
709 (build-system r-build-system)
710 (propagated-inputs
711 `(("r-annotationdbi" ,r-annotationdbi)))
712 (home-page "https://www.bioconductor.org/packages/DO.db/")
713 (synopsis "Annotation maps describing the entire Disease Ontology")
714 (description
715 "This package provides a set of annotation maps describing the entire
716Disease Ontology.")
717 (license license:artistic2.0)))
718
83b42091
RW
719(define-public r-pfam-db
720 (package
721 (name "r-pfam-db")
722 (version "3.8.2")
723 (source
724 (origin
725 (method url-fetch)
726 (uri (bioconductor-uri "PFAM.db" version 'annotation))
727 (sha256
728 (base32
729 "0rn1arzzcniy3yyc4yc44vn40g0cqss37dhwnvsgxpfayqq1k59s"))))
730 (properties `((upstream-name . "PFAM.db")))
731 (build-system r-build-system)
732 (propagated-inputs
733 `(("r-annotationdbi" ,r-annotationdbi)))
734 (home-page "https://bioconductor.org/packages/PFAM.db")
735 (synopsis "Set of protein ID mappings for PFAM")
736 (description
737 "This package provides a set of protein ID mappings for PFAM, assembled
738using data from public repositories.")
739 (license license:artistic2.0)))
740
40be965e
RW
741(define-public r-phastcons100way-ucsc-hg19
742 (package
743 (name "r-phastcons100way-ucsc-hg19")
744 (version "3.7.2")
745 (source
746 (origin
747 (method url-fetch)
748 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
749 version 'annotation))
750 (sha256
751 (base32
752 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
753 (properties
754 `((upstream-name . "phastCons100way.UCSC.hg19")))
755 (build-system r-build-system)
756 (propagated-inputs
757 `(("r-bsgenome" ,r-bsgenome)
758 ("r-genomeinfodb" ,r-genomeinfodb)
759 ("r-genomicranges" ,r-genomicranges)
760 ("r-genomicscores" ,r-genomicscores)
761 ("r-iranges" ,r-iranges)
762 ("r-s4vectors" ,r-s4vectors)))
763 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
764 (synopsis "UCSC phastCons conservation scores for hg19")
765 (description
766 "This package provides UCSC phastCons conservation scores for the human
767genome (hg19) calculated from multiple alignments with other 99 vertebrate
768species.")
769 (license license:artistic2.0)))
770
2cc51108 771\f
557a1089
RW
772;;; Experiment data
773
692bce15
RW
774(define-public r-abadata
775 (package
776 (name "r-abadata")
777 (version "1.12.0")
778 (source (origin
779 (method url-fetch)
ced61edf 780 (uri (bioconductor-uri "ABAData" version 'experiment))
692bce15
RW
781 (sha256
782 (base32
783 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
784 (properties
785 `((upstream-name . "ABAData")))
786 (build-system r-build-system)
787 (propagated-inputs
788 `(("r-annotationdbi" ,r-annotationdbi)))
789 (home-page "https://www.bioconductor.org/packages/ABAData/")
790 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
791 (description
792 "This package provides the data for the gene expression enrichment
793analysis conducted in the package ABAEnrichment. The package includes three
794datasets which are derived from the Allen Brain Atlas:
795
796@enumerate
797@item Gene expression data from Human Brain (adults) averaged across donors,
798@item Gene expression data from the Developing Human Brain pooled into five
799 age categories and averaged across donors, and
800@item a developmental effect score based on the Developing Human Brain
801 expression data.
802@end enumerate
803
804All datasets are restricted to protein coding genes.")
805 (license license:gpl2+)))
806
b50c9660
RW
807(define-public r-arrmdata
808 (package
809 (name "r-arrmdata")
810 (version "1.18.0")
811 (source (origin
812 (method url-fetch)
b86f7746 813 (uri (bioconductor-uri "ARRmData" version 'experiment))
b50c9660
RW
814 (sha256
815 (base32
816 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
817 (properties
818 `((upstream-name . "ARRmData")))
819 (build-system r-build-system)
820 (home-page "https://www.bioconductor.org/packages/ARRmData/")
821 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
822 (description
823 "This package provides raw beta values from 36 samples across 3 groups
824from Illumina 450k methylation arrays.")
825 (license license:artistic2.0)))
826
557a1089
RW
827(define-public r-hsmmsinglecell
828 (package
829 (name "r-hsmmsinglecell")
830 (version "1.2.0")
831 (source (origin
832 (method url-fetch)
545e67ac 833 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
557a1089
RW
834 (sha256
835 (base32
836 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
837 (properties
838 `((upstream-name . "HSMMSingleCell")))
839 (build-system r-build-system)
840 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
841 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
842 (description
843 "Skeletal myoblasts undergo a well-characterized sequence of
844morphological and transcriptional changes during differentiation. In this
845experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
846under high mitogen conditions (GM) and then differentiated by switching to
847low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
848hundred cells taken over a time-course of serum-induced differentiation.
849Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
85072 hours) following serum switch using the Fluidigm C1 microfluidic system.
851RNA from each cell was isolated and used to construct mRNA-Seq libraries,
852which were then sequenced to a depth of ~4 million reads per library,
853resulting in a complete gene expression profile for each cell.")
854 (license license:artistic2.0)))
ad8f46c6 855
856(define-public r-all
857 (package
858 (name "r-all")
859 (version "1.26.0")
860 (source (origin
861 (method url-fetch)
41728d23 862 (uri (bioconductor-uri "ALL" version 'experiment))
ad8f46c6 863 (sha256
864 (base32
865 "1z7kpjw4ndj6fkxwvhqf3gawhrn26ksrlns7j2c78qzxqmjndik9"))))
866 (properties `((upstream-name . "ALL")))
867 (build-system r-build-system)
868 (propagated-inputs
869 `(("r-biobase" ,r-biobase)))
870 (home-page "https://bioconductor.org/packages/ALL")
871 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
872 (description
873 "The data consist of microarrays from 128 different individuals with
874@dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
875are available. The data have been normalized (using rma) and it is the
876jointly normalized data that are available here. The data are presented in
877the form of an @code{exprSet} object.")
878 (license license:artistic2.0)))
557a1089 879
53b1e10f
RW
880(define-public r-affydata
881 (package
882 (name "r-affydata")
883 (version "1.32.0")
884 (source
885 (origin
886 (method url-fetch)
887 (uri (bioconductor-uri "affydata" version 'experiment))
888 (sha256
889 (base32
890 "1l9qhmjqgbrdl9cmd74rlnvmvr6mslbmckb83n0211whp2i0b7h5"))))
891 (properties `((upstream-name . "affydata")))
892 (build-system r-build-system)
893 (propagated-inputs
894 `(("r-affy" ,r-affy)))
895 (home-page "https://bioconductor.org/packages/affydata/")
896 (synopsis "Affymetrix data for demonstration purposes")
897 (description
898 "This package provides example datasets that represent 'real world
899examples' of Affymetrix data, unlike the artificial examples included in the
900package @code{affy}.")
901 (license license:gpl2+)))
902
ff1146b9
RW
903(define-public r-curatedtcgadata
904 (package
905 (name "r-curatedtcgadata")
906 (version "1.8.0")
907 (source
908 (origin
909 (method url-fetch)
910 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
911 (sha256
912 (base32
913 "02y6cgihmsl9b4a9mmcdjjgjp06lpz04biyvxd3n5lk5gnqd9r3y"))))
914 (properties
915 `((upstream-name . "curatedTCGAData")))
916 (build-system r-build-system)
917 (propagated-inputs
918 `(("r-annotationhub" ,r-annotationhub)
919 ("r-experimenthub" ,r-experimenthub)
920 ("r-hdf5array" ,r-hdf5array)
921 ("r-multiassayexperiment" ,r-multiassayexperiment)
922 ("r-s4vectors" ,r-s4vectors)
923 ("r-summarizedexperiment" ,r-summarizedexperiment)))
924 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
925 (synopsis "Curated data from The Cancer Genome Atlas")
926 (description
927 "This package provides publicly available data from The Cancer Genome
928Atlas (TCGA) as @code{MultiAssayExperiment} objects.
929@code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
930number, mutation, microRNA, protein, and others) with clinical / pathological
931data. It also links assay barcodes with patient identifiers, enabling
932harmonized subsetting of rows (features) and columns (patients / samples)
933across the entire multi-'omics experiment.")
934 (license license:artistic2.0)))
935
557a1089
RW
936\f
937;;; Packages
938
e5d722fb
RW
939(define-public r-biocversion
940 (package
941 (name "r-biocversion")
942 (version "3.10.1")
943 (source
944 (origin
945 (method url-fetch)
946 (uri (bioconductor-uri "BiocVersion" version))
947 (sha256
948 (base32
949 "0mfqjqfvrwwglldq3g7nbic5hf3nwzv02nbfxnl2cfvf9gznlh5f"))))
950 (properties `((upstream-name . "BiocVersion")))
951 (build-system r-build-system)
952 (home-page "https://bioconductor.org/packages/BiocVersion/")
953 (synopsis "Set the appropriate version of Bioconductor packages")
954 (description
955 "This package provides repository information for the appropriate version
956of Bioconductor.")
957 (license license:artistic2.0)))
958
14bba460
RW
959(define-public r-biocgenerics
960 (package
961 (name "r-biocgenerics")
be5e4e96 962 (version "0.32.0")
14bba460
RW
963 (source (origin
964 (method url-fetch)
965 (uri (bioconductor-uri "BiocGenerics" version))
966 (sha256
967 (base32
be5e4e96 968 "1np8y442zyakm4axpinbw1qsgc6wd3zjsnirbhc8lcii4ky9j0rn"))))
14bba460
RW
969 (properties
970 `((upstream-name . "BiocGenerics")))
971 (build-system r-build-system)
972 (home-page "https://bioconductor.org/packages/BiocGenerics")
973 (synopsis "S4 generic functions for Bioconductor")
974 (description
975 "This package provides S4 generic functions needed by many Bioconductor
976packages.")
977 (license license:artistic2.0)))
978
5cf940de
RW
979(define-public r-affycomp
980 (package
981 (name "r-affycomp")
5d87f126 982 (version "1.62.0")
5cf940de
RW
983 (source
984 (origin
985 (method url-fetch)
986 (uri (bioconductor-uri "affycomp" version))
987 (sha256
988 (base32
5d87f126 989 "0cl7c3m2lz2w8g2k7z7wjd0dyj0dkssvms99qpg8a1v3hx1xs6js"))))
5cf940de
RW
990 (properties `((upstream-name . "affycomp")))
991 (build-system r-build-system)
992 (propagated-inputs `(("r-biobase" ,r-biobase)))
993 (home-page "https://bioconductor.org/packages/affycomp/")
994 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
995 (description
996 "The package contains functions that can be used to compare expression
997measures for Affymetrix Oligonucleotide Arrays.")
998 (license license:gpl2+)))
999
5094aa94
RW
1000(define-public r-affycompatible
1001 (package
1002 (name "r-affycompatible")
c2fa63e9 1003 (version "1.46.0")
5094aa94
RW
1004 (source
1005 (origin
1006 (method url-fetch)
1007 (uri (bioconductor-uri "AffyCompatible" version))
1008 (sha256
1009 (base32
c2fa63e9 1010 "10ahrdlifp1i7rd58zb10w75y5bnigs7xp5gv4fhb5y7p7dvb0ks"))))
5094aa94
RW
1011 (properties
1012 `((upstream-name . "AffyCompatible")))
1013 (build-system r-build-system)
1014 (propagated-inputs
1015 `(("r-biostrings" ,r-biostrings)
1016 ("r-rcurl" ,r-rcurl)
1017 ("r-xml" ,r-xml)))
1018 (home-page "https://bioconductor.org/packages/AffyCompatible/")
1019 (synopsis "Work with Affymetrix GeneChip files")
1020 (description
1021 "This package provides an interface to Affymetrix chip annotation and
1022sample attribute files. The package allows an easy way for users to download
1023and manage local data bases of Affynmetrix NetAffx annotation files. It also
1024provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
1025Command Console} (AGCC)-compatible sample annotation files.")
1026 (license license:artistic2.0)))
1027
4ca2d6c1
RW
1028(define-public r-affycontam
1029 (package
1030 (name "r-affycontam")
f561421d 1031 (version "1.44.0")
4ca2d6c1
RW
1032 (source
1033 (origin
1034 (method url-fetch)
1035 (uri (bioconductor-uri "affyContam" version))
1036 (sha256
1037 (base32
f561421d 1038 "0yd1prgv5zfkg22ski73mvg96qknwz8v6ji6s4qy8p4wrqyj7b7l"))))
4ca2d6c1
RW
1039 (properties `((upstream-name . "affyContam")))
1040 (build-system r-build-system)
1041 (propagated-inputs
1042 `(("r-affy" ,r-affy)
1043 ("r-affydata" ,r-affydata)
1044 ("r-biobase" ,r-biobase)))
1045 (home-page "https://bioconductor.org/packages/affyContam/")
1046 (synopsis "Structured corruption of Affymetrix CEL file data")
1047 (description
1048 "Microarray quality assessment is a major concern of microarray analysts.
1049This package provides some simple approaches to in silico creation of quality
1050problems in CEL-level data to help evaluate performance of quality metrics.")
1051 (license license:artistic2.0)))
1052
12105c6c
RW
1053(define-public r-affycoretools
1054 (package
1055 (name "r-affycoretools")
be94400c 1056 (version "1.58.3")
12105c6c
RW
1057 (source
1058 (origin
1059 (method url-fetch)
1060 (uri (bioconductor-uri "affycoretools" version))
1061 (sha256
1062 (base32
be94400c 1063 "12r9ljkp3xix0xq8d1488c8wb3a4whb805v48ynmv985bs3phc71"))))
12105c6c
RW
1064 (properties `((upstream-name . "affycoretools")))
1065 (build-system r-build-system)
1066 (propagated-inputs
1067 `(("r-affy" ,r-affy)
1068 ("r-annotationdbi" ,r-annotationdbi)
1069 ("r-biobase" ,r-biobase)
1070 ("r-biocgenerics" ,r-biocgenerics)
1071 ("r-dbi" ,r-dbi)
1072 ("r-edger" ,r-edger)
1073 ("r-gcrma" ,r-gcrma)
1074 ("r-ggplot2" ,r-ggplot2)
1075 ("r-gostats" ,r-gostats)
1076 ("r-gplots" ,r-gplots)
1077 ("r-hwriter" ,r-hwriter)
1078 ("r-lattice" ,r-lattice)
1079 ("r-limma" ,r-limma)
1080 ("r-oligoclasses" ,r-oligoclasses)
1081 ("r-reportingtools" ,r-reportingtools)
1082 ("r-rsqlite" ,r-rsqlite)
1083 ("r-s4vectors" ,r-s4vectors)
1084 ("r-xtable" ,r-xtable)))
1085 (home-page "https://bioconductor.org/packages/affycoretools/")
1086 (synopsis "Functions for analyses with Affymetrix GeneChips")
1087 (description
1088 "This package provides various wrapper functions that have been written
1089to streamline the more common analyses that a Biostatistician might see.")
1090 (license license:artistic2.0)))
1091
d6a5d9b2
RW
1092(define-public r-affxparser
1093 (package
1094 (name "r-affxparser")
ce5162d0 1095 (version "1.58.0")
d6a5d9b2
RW
1096 (source
1097 (origin
1098 (method url-fetch)
1099 (uri (bioconductor-uri "affxparser" version))
1100 (sha256
1101 (base32
ce5162d0 1102 "03h4lxr48p84f6i7zb2rm10ma3k4d1nmvdw5yhxcmzqbmd12lk40"))))
d6a5d9b2
RW
1103 (properties `((upstream-name . "affxparser")))
1104 (build-system r-build-system)
1105 (home-page "https://github.com/HenrikBengtsson/affxparser")
1106 (synopsis "Affymetrix File Parsing SDK")
1107 (description
1108 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
1109BAR). It provides methods for fast and memory efficient parsing of Affymetrix
1110files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
1111are supported. Currently, there are methods for reading @dfn{chip definition
1112file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
1113either in full or in part. For example, probe signals from a few probesets
1114can be extracted very quickly from a set of CEL files into a convenient list
1115structure.")
1116 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
1117 ;; under LGPLv2+.
1118 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
1119
7097c700
RW
1120(define-public r-annotate
1121 (package
1122 (name "r-annotate")
7a111924 1123 (version "1.64.0")
7097c700
RW
1124 (source
1125 (origin
1126 (method url-fetch)
1127 (uri (bioconductor-uri "annotate" version))
1128 (sha256
1129 (base32
7a111924 1130 "0rcmdy6hs6m4d6wxgi52c0bhdsbf2sm9f155qbcb05sn0nh8pxwy"))))
7097c700
RW
1131 (build-system r-build-system)
1132 (propagated-inputs
1133 `(("r-annotationdbi" ,r-annotationdbi)
1134 ("r-biobase" ,r-biobase)
1135 ("r-biocgenerics" ,r-biocgenerics)
1136 ("r-dbi" ,r-dbi)
1137 ("r-rcurl" ,r-rcurl)
1138 ("r-xml" ,r-xml)
1139 ("r-xtable" ,r-xtable)))
1140 (home-page
1141 "https://bioconductor.org/packages/annotate")
1142 (synopsis "Annotation for microarrays")
1143 (description "This package provides R environments for the annotation of
1144microarrays.")
1145 (license license:artistic2.0)))
1146
fa596599
RW
1147(define-public r-hpar
1148 (package
1149 (name "r-hpar")
ddd36739 1150 (version "1.28.0")
fa596599
RW
1151 (source
1152 (origin
1153 (method url-fetch)
1154 (uri (bioconductor-uri "hpar" version))
1155 (sha256
1156 (base32
ddd36739 1157 "1yhay1ryrgj9cqa1x136cw40ca93afyvg0sarm30jsbj8nc1rm5m"))))
fa596599
RW
1158 (build-system r-build-system)
1159 (home-page "https://bioconductor.org/packages/hpar/")
1160 (synopsis "Human Protein Atlas in R")
1161 (description "This package provides a simple interface to and data from
1162the Human Protein Atlas project.")
1163 (license license:artistic2.0)))
183ce988
RJ
1164
1165(define-public r-regioner
1166 (package
1167 (name "r-regioner")
2e73ea95 1168 (version "1.18.0")
183ce988
RJ
1169 (source
1170 (origin
1171 (method url-fetch)
1172 (uri (bioconductor-uri "regioneR" version))
1173 (sha256
1174 (base32
2e73ea95 1175 "0m073hrqp62zpd2blnqm5ka539hcilir05m8av14vdhzhjzp13ya"))))
183ce988
RJ
1176 (properties `((upstream-name . "regioneR")))
1177 (build-system r-build-system)
1178 (propagated-inputs
d639d888 1179 `(("r-biostrings" ,r-biostrings)
183ce988 1180 ("r-bsgenome" ,r-bsgenome)
183ce988 1181 ("r-genomeinfodb" ,r-genomeinfodb)
d639d888 1182 ("r-genomicranges" ,r-genomicranges)
72427c72 1183 ("r-iranges" ,r-iranges)
d639d888
RW
1184 ("r-memoise" ,r-memoise)
1185 ("r-rtracklayer" ,r-rtracklayer)
72427c72 1186 ("r-s4vectors" ,r-s4vectors)))
183ce988
RJ
1187 (home-page "https://bioconductor.org/packages/regioneR/")
1188 (synopsis "Association analysis of genomic regions")
1189 (description "This package offers a statistical framework based on
1190customizable permutation tests to assess the association between genomic
1191region sets and other genomic features.")
1192 (license license:artistic2.0)))
a5b56a53 1193
15184fb3
RW
1194(define-public r-reportingtools
1195 (package
1196 (name "r-reportingtools")
7ccbaf1b 1197 (version "2.26.0")
15184fb3
RW
1198 (source
1199 (origin
1200 (method url-fetch)
1201 (uri (bioconductor-uri "ReportingTools" version))
1202 (sha256
1203 (base32
7ccbaf1b 1204 "0wmi2219wydyzc07rz3azsrksa7wiacfh9pr5x2fsmj9f0w3n15w"))))
15184fb3
RW
1205 (properties
1206 `((upstream-name . "ReportingTools")))
1207 (build-system r-build-system)
1208 (propagated-inputs
1209 `(("r-annotate" ,r-annotate)
1210 ("r-annotationdbi" ,r-annotationdbi)
1211 ("r-biobase" ,r-biobase)
1212 ("r-biocgenerics" ,r-biocgenerics)
1213 ("r-category" ,r-category)
1214 ("r-deseq2" ,r-deseq2)
1215 ("r-edger" ,r-edger)
1216 ("r-ggbio" ,r-ggbio)
1217 ("r-ggplot2" ,r-ggplot2)
1218 ("r-gostats" ,r-gostats)
1219 ("r-gseabase" ,r-gseabase)
1220 ("r-hwriter" ,r-hwriter)
1221 ("r-iranges" ,r-iranges)
1222 ("r-knitr" ,r-knitr)
1223 ("r-lattice" ,r-lattice)
1224 ("r-limma" ,r-limma)
1225 ("r-pfam-db" ,r-pfam-db)
1226 ("r-r-utils" ,r-r-utils)
1227 ("r-xml" ,r-xml)))
1228 (home-page "https://bioconductor.org/packages/ReportingTools/")
1229 (synopsis "Tools for making reports in various formats")
1230 (description
1231 "The ReportingTools package enables users to easily display reports of
1232analysis results generated from sources such as microarray and sequencing
1233data. The package allows users to create HTML pages that may be viewed on a
1234web browser, or in other formats. Users can generate tables with sortable and
1235filterable columns, make and display plots, and link table entries to other
1236data sources such as NCBI or larger plots within the HTML page. Using the
1237package, users can also produce a table of contents page to link various
1238reports together for a particular project that can be viewed in a web
1239browser.")
1240 (license license:artistic2.0)))
1241
bfb93b48
RW
1242(define-public r-geneplotter
1243 (package
1244 (name "r-geneplotter")
7778e91a 1245 (version "1.64.0")
bfb93b48
RW
1246 (source
1247 (origin
1248 (method url-fetch)
1249 (uri (bioconductor-uri "geneplotter" version))
1250 (sha256
1251 (base32
7778e91a 1252 "1k6780fn1kkghpm1prhhsyw621441a3bmnqfl9ns0zbc1zdq39nx"))))
bfb93b48
RW
1253 (build-system r-build-system)
1254 (propagated-inputs
1255 `(("r-annotate" ,r-annotate)
1256 ("r-annotationdbi" ,r-annotationdbi)
1257 ("r-biobase" ,r-biobase)
1258 ("r-biocgenerics" ,r-biocgenerics)
1259 ("r-lattice" ,r-lattice)
1260 ("r-rcolorbrewer" ,r-rcolorbrewer)))
1261 (home-page "https://bioconductor.org/packages/geneplotter")
1262 (synopsis "Graphics functions for genomic data")
1263 (description
1264 "This package provides functions for plotting genomic data.")
1265 (license license:artistic2.0)))
1266
01c7ba99
RW
1267(define-public r-oligoclasses
1268 (package
1269 (name "r-oligoclasses")
79820b9f 1270 (version "1.48.0")
01c7ba99
RW
1271 (source
1272 (origin
1273 (method url-fetch)
1274 (uri (bioconductor-uri "oligoClasses" version))
1275 (sha256
1276 (base32
79820b9f 1277 "02m1m3dkiyywalphw3i5n6y3bs8zp24xh59v9cz6jgjpah811skf"))))
01c7ba99
RW
1278 (properties `((upstream-name . "oligoClasses")))
1279 (build-system r-build-system)
1280 (propagated-inputs
1281 `(("r-affyio" ,r-affyio)
1282 ("r-biobase" ,r-biobase)
1283 ("r-biocgenerics" ,r-biocgenerics)
1284 ("r-biocmanager" ,r-biocmanager)
1285 ("r-biostrings" ,r-biostrings)
1286 ("r-dbi" ,r-dbi)
1287 ("r-ff" ,r-ff)
1288 ("r-foreach" ,r-foreach)
1289 ("r-genomicranges" ,r-genomicranges)
1290 ("r-iranges" ,r-iranges)
1291 ("r-rsqlite" ,r-rsqlite)
1292 ("r-s4vectors" ,r-s4vectors)
1293 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1294 (home-page "https://bioconductor.org/packages/oligoClasses/")
1295 (synopsis "Classes for high-throughput arrays")
1296 (description
1297 "This package contains class definitions, validity checks, and
1298initialization methods for classes used by the @code{oligo} and @code{crlmm}
1299packages.")
1300 (license license:gpl2+)))
1301
4c63eeb8
RW
1302(define-public r-oligo
1303 (package
1304 (name "r-oligo")
084c651c 1305 (version "1.50.0")
4c63eeb8
RW
1306 (source
1307 (origin
1308 (method url-fetch)
1309 (uri (bioconductor-uri "oligo" version))
1310 (sha256
1311 (base32
084c651c 1312 "01icfyy82f9k0m7ngrppz1ckq3wpq7zp6kgf8ppc55j6582c5jh3"))))
4c63eeb8
RW
1313 (properties `((upstream-name . "oligo")))
1314 (build-system r-build-system)
1315 (inputs `(("zlib" ,zlib)))
1316 (propagated-inputs
1317 `(("r-affxparser" ,r-affxparser)
1318 ("r-affyio" ,r-affyio)
1319 ("r-biobase" ,r-biobase)
1320 ("r-biocgenerics" ,r-biocgenerics)
1321 ("r-biostrings" ,r-biostrings)
1322 ("r-dbi" ,r-dbi)
1323 ("r-ff" ,r-ff)
1324 ("r-oligoclasses" ,r-oligoclasses)
1325 ("r-preprocesscore" ,r-preprocesscore)
1326 ("r-rsqlite" ,r-rsqlite)
1327 ("r-zlibbioc" ,r-zlibbioc)))
1328 (home-page "https://bioconductor.org/packages/oligo/")
1329 (synopsis "Preprocessing tools for oligonucleotide arrays")
1330 (description
1331 "This package provides a package to analyze oligonucleotide
1332arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
1333Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
1334 (license license:lgpl2.0+)))
1335
4dc2ecc2
RW
1336(define-public r-qvalue
1337 (package
1338 (name "r-qvalue")
bcf711b5 1339 (version "2.18.0")
4dc2ecc2
RW
1340 (source
1341 (origin
1342 (method url-fetch)
1343 (uri (bioconductor-uri "qvalue" version))
1344 (sha256
1345 (base32
bcf711b5 1346 "0njnidyncm3g3712mnp77cs4kghn596ss1pz6fhp1cr0wxcayp6j"))))
4dc2ecc2
RW
1347 (build-system r-build-system)
1348 (propagated-inputs
1349 `(("r-ggplot2" ,r-ggplot2)
1350 ("r-reshape2" ,r-reshape2)))
1351 (home-page "http://github.com/jdstorey/qvalue")
1352 (synopsis "Q-value estimation for false discovery rate control")
1353 (description
1354 "This package takes a list of p-values resulting from the simultaneous
1355testing of many hypotheses and estimates their q-values and local @dfn{false
1356discovery rate} (FDR) values. The q-value of a test measures the proportion
1357of false positives incurred when that particular test is called significant.
1358The local FDR measures the posterior probability the null hypothesis is true
1359given the test's p-value. Various plots are automatically generated, allowing
1360one to make sensible significance cut-offs. The software can be applied to
1361problems in genomics, brain imaging, astrophysics, and data mining.")
1362 ;; Any version of the LGPL.
1363 (license license:lgpl3+)))
1364
a5b56a53
RJ
1365(define-public r-diffbind
1366 (package
1367 (name "r-diffbind")
73883f0f 1368 (version "2.14.0")
a5b56a53
RJ
1369 (source
1370 (origin
1371 (method url-fetch)
1372 (uri (bioconductor-uri "DiffBind" version))
1373 (sha256
1374 (base32
73883f0f 1375 "1729wyi2l4480yrkp5wg3ryirrmlk0j3njqs1qyckq3c8bjk12h2"))))
a5b56a53
RJ
1376 (properties `((upstream-name . "DiffBind")))
1377 (build-system r-build-system)
1378 (inputs
1379 `(("zlib" ,zlib)))
1380 (propagated-inputs
1381 `(("r-amap" ,r-amap)
1382 ("r-biocparallel" ,r-biocparallel)
1383 ("r-deseq2" ,r-deseq2)
1384 ("r-dplyr" ,r-dplyr)
1385 ("r-edger" ,r-edger)
1386 ("r-genomicalignments" ,r-genomicalignments)
45bbccf4
RW
1387 ("r-genomicranges" ,r-genomicranges)
1388 ("r-ggplot2" ,r-ggplot2)
a5b56a53
RJ
1389 ("r-ggrepel" ,r-ggrepel)
1390 ("r-gplots" ,r-gplots)
1391 ("r-iranges" ,r-iranges)
1392 ("r-lattice" ,r-lattice)
1393 ("r-limma" ,r-limma)
1394 ("r-locfit" ,r-locfit)
1395 ("r-rcolorbrewer" , r-rcolorbrewer)
1396 ("r-rcpp" ,r-rcpp)
4c221b3b 1397 ("r-rhtslib" ,r-rhtslib)
a5b56a53
RJ
1398 ("r-rsamtools" ,r-rsamtools)
1399 ("r-s4vectors" ,r-s4vectors)
45bbccf4 1400 ("r-summarizedexperiment" ,r-summarizedexperiment)
4c221b3b 1401 ("r-systempiper" ,r-systempiper)))
a5b56a53
RJ
1402 (home-page "http://bioconductor.org/packages/DiffBind")
1403 (synopsis "Differential binding analysis of ChIP-Seq peak data")
1404 (description
1405 "This package computes differentially bound sites from multiple
1406ChIP-seq experiments using affinity (quantitative) data. Also enables
1407occupancy (overlap) analysis and plotting functions.")
1408 (license license:artistic2.0)))
6d94bf6b
RJ
1409
1410(define-public r-ripseeker
1411 (package
1412 (name "r-ripseeker")
ba74434f 1413 (version "1.26.0")
6d94bf6b
RJ
1414 (source
1415 (origin
1416 (method url-fetch)
1417 (uri (bioconductor-uri "RIPSeeker" version))
1418 (sha256
1419 (base32
ba74434f 1420 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
6d94bf6b
RJ
1421 (properties `((upstream-name . "RIPSeeker")))
1422 (build-system r-build-system)
1423 (propagated-inputs
1424 `(("r-s4vectors" ,r-s4vectors)
1425 ("r-iranges" ,r-iranges)
1426 ("r-genomicranges" ,r-genomicranges)
1427 ("r-summarizedexperiment" ,r-summarizedexperiment)
1428 ("r-rsamtools" ,r-rsamtools)
1429 ("r-genomicalignments" ,r-genomicalignments)
1430 ("r-rtracklayer" ,r-rtracklayer)))
1431 (home-page "http://bioconductor.org/packages/RIPSeeker")
1432 (synopsis
1433 "Identifying protein-associated transcripts from RIP-seq experiments")
1434 (description
1435 "This package infers and discriminates RIP peaks from RIP-seq alignments
1436using two-state HMM with negative binomial emission probability. While
1437RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
1438a suite of bioinformatics tools integrated within this self-contained software
1439package comprehensively addressing issues ranging from post-alignments
1440processing to visualization and annotation.")
1441 (license license:gpl2)))
a6ae9ffd
RJ
1442
1443(define-public r-multtest
1444 (package
1445 (name "r-multtest")
16d49c2a 1446 (version "2.42.0")
a6ae9ffd
RJ
1447 (source
1448 (origin
1449 (method url-fetch)
1450 (uri (bioconductor-uri "multtest" version))
1451 (sha256
1452 (base32
16d49c2a 1453 "0qna9lx76ldsfy8qf5xmhl4ymqfkj29m1gdqhph06s470c8mwari"))))
a6ae9ffd
RJ
1454 (build-system r-build-system)
1455 (propagated-inputs
1456 `(("r-survival" ,r-survival)
1457 ("r-biocgenerics" ,r-biocgenerics)
1458 ("r-biobase" ,r-biobase)
1459 ("r-mass" ,r-mass)))
1460 (home-page "http://bioconductor.org/packages/multtest")
1461 (synopsis "Resampling-based multiple hypothesis testing")
1462 (description
1463 "This package can do non-parametric bootstrap and permutation
1464resampling-based multiple testing procedures (including empirical Bayes
1465methods) for controlling the family-wise error rate (FWER), generalized
1466family-wise error rate (gFWER), tail probability of the proportion of
1467false positives (TPPFP), and false discovery rate (FDR). Several choices
1468of bootstrap-based null distribution are implemented (centered, centered
1469and scaled, quantile-transformed). Single-step and step-wise methods are
1470available. Tests based on a variety of T- and F-statistics (including
1471T-statistics based on regression parameters from linear and survival models
1472as well as those based on correlation parameters) are included. When probing
1473hypotheses with T-statistics, users may also select a potentially faster null
1474distribution which is multivariate normal with mean zero and variance
1475covariance matrix derived from the vector influence function. Results are
1476reported in terms of adjusted P-values, confidence regions and test statistic
1477cutoffs. The procedures are directly applicable to identifying differentially
1478expressed genes in DNA microarray experiments.")
1479 (license license:lgpl3)))
793f83ef 1480
5dfe4912
RW
1481(define-public r-graph
1482 (package
1483 (name "r-graph")
70eb483a 1484 (version "1.64.0")
5dfe4912
RW
1485 (source (origin
1486 (method url-fetch)
1487 (uri (bioconductor-uri "graph" version))
1488 (sha256
1489 (base32
70eb483a 1490 "1ivf59k7k552m7zd8g3wwazd71dq3xmgmhcq435738i02h0fqnyc"))))
5dfe4912
RW
1491 (build-system r-build-system)
1492 (propagated-inputs
1493 `(("r-biocgenerics" ,r-biocgenerics)))
1494 (home-page "https://bioconductor.org/packages/graph")
1495 (synopsis "Handle graph data structures in R")
1496 (description
1497 "This package implements some simple graph handling capabilities for R.")
1498 (license license:artistic2.0)))
1499
a207bca2
RW
1500(define-public r-codedepends
1501 (package
1502 (name "r-codedepends")
1503 (version "0.6.5")
1504 (source
1505 (origin
1506 (method url-fetch)
1507 (uri (cran-uri "CodeDepends" version))
1508 (sha256
1509 (base32
1510 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
1511 (properties `((upstream-name . "CodeDepends")))
1512 (build-system r-build-system)
1513 (propagated-inputs
1514 `(("r-codetools" ,r-codetools)
1515 ("r-graph" ,r-graph)
1516 ("r-xml" ,r-xml)))
1517 (home-page "http://cran.r-project.org/web/packages/CodeDepends")
1518 (synopsis "Analysis of R code for reproducible research and code comprehension")
1519 (description
1520 "This package provides tools for analyzing R expressions or blocks of
1521code and determining the dependencies between them. It focuses on R scripts,
1522but can be used on the bodies of functions. There are many facilities
1523including the ability to summarize or get a high-level view of code,
1524determining dependencies between variables, code improvement suggestions.")
1525 ;; Any version of the GPL
1526 (license (list license:gpl2+ license:gpl3+))))
1527
793f83ef
RJ
1528(define-public r-chippeakanno
1529 (package
1530 (name "r-chippeakanno")
cf8968d7 1531 (version "3.20.0")
793f83ef
RJ
1532 (source
1533 (origin
1534 (method url-fetch)
1535 (uri (bioconductor-uri "ChIPpeakAnno" version))
1536 (sha256
1537 (base32
cf8968d7 1538 "0hp3s3shnrb55cxvx9wrdl67wqw9f55gdgx7262s4mahpxjswfsa"))))
793f83ef
RJ
1539 (properties `((upstream-name . "ChIPpeakAnno")))
1540 (build-system r-build-system)
1541 (propagated-inputs
85c1d20f
RW
1542 `(("r-annotationdbi" ,r-annotationdbi)
1543 ("r-biobase" ,r-biobase)
1544 ("r-biocgenerics" ,r-biocgenerics)
57d2fcd9 1545 ("r-biocmanager" ,r-biocmanager)
793f83ef 1546 ("r-biomart" ,r-biomart)
85c1d20f 1547 ("r-biostrings" ,r-biostrings)
793f83ef 1548 ("r-bsgenome" ,r-bsgenome)
85c1d20f
RW
1549 ("r-dbi" ,r-dbi)
1550 ("r-delayedarray" ,r-delayedarray)
1551 ("r-ensembldb" ,r-ensembldb)
1552 ("r-genomeinfodb" ,r-genomeinfodb)
1553 ("r-genomicalignments" ,r-genomicalignments)
793f83ef 1554 ("r-genomicfeatures" ,r-genomicfeatures)
f794e85d 1555 ("r-genomicranges" ,r-genomicranges)
85c1d20f
RW
1556 ("r-go-db" ,r-go-db)
1557 ("r-graph" ,r-graph)
1558 ("r-idr" ,r-idr)
f794e85d 1559 ("r-iranges" ,r-iranges)
793f83ef 1560 ("r-limma" ,r-limma)
85c1d20f 1561 ("r-matrixstats" ,r-matrixstats)
793f83ef
RJ
1562 ("r-multtest" ,r-multtest)
1563 ("r-rbgl" ,r-rbgl)
793f83ef 1564 ("r-regioner" ,r-regioner)
85c1d20f
RW
1565 ("r-rsamtools" ,r-rsamtools)
1566 ("r-rtracklayer" ,r-rtracklayer)
f794e85d 1567 ("r-s4vectors" ,r-s4vectors)
793f83ef 1568 ("r-seqinr" ,r-seqinr)
793f83ef 1569 ("r-summarizedexperiment" ,r-summarizedexperiment)
793f83ef
RJ
1570 ("r-venndiagram" ,r-venndiagram)))
1571 (home-page "http://bioconductor.org/packages/ChIPpeakAnno")
1572 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
1573 (description
1574 "The package includes functions to retrieve the sequences around the peak,
1575obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
1576custom features such as most conserved elements and other transcription factor
1577binding sites supplied by users. Starting 2.0.5, new functions have been added
1578for finding the peaks with bi-directional promoters with summary statistics
1579(peaksNearBDP), for summarizing the occurrence of motifs in peaks
1580(summarizePatternInPeaks) and for adding other IDs to annotated peaks or
1581enrichedGO (addGeneIDs).")
1582 (license license:gpl2+)))
164502d8
RJ
1583
1584(define-public r-marray
1585 (package
1586 (name "r-marray")
b6c2f098 1587 (version "1.64.0")
164502d8
RJ
1588 (source (origin
1589 (method url-fetch)
1590 (uri (bioconductor-uri "marray" version))
1591 (sha256
b6c2f098 1592 (base32 "1mbs9rk279hnm9yz34za3xz3hb88ll1d0abw4m2pgjgbh4kkhdrl"))))
164502d8
RJ
1593 (build-system r-build-system)
1594 (propagated-inputs
67487088 1595 `(("r-limma" ,r-limma)))
164502d8
RJ
1596 (home-page "http://bioconductor.org/packages/marray")
1597 (synopsis "Exploratory analysis for two-color spotted microarray data")
1598 (description "This package contains class definitions for two-color spotted
ab8979fc 1599microarray data. It also includes functions for data input, diagnostic plots,
164502d8
RJ
1600normalization and quality checking.")
1601 (license license:lgpl2.0+)))
0416a0d4
RJ
1602
1603(define-public r-cghbase
1604 (package
1605 (name "r-cghbase")
8341f706 1606 (version "1.46.0")
0416a0d4
RJ
1607 (source (origin
1608 (method url-fetch)
1609 (uri (bioconductor-uri "CGHbase" version))
1610 (sha256
8341f706 1611 (base32 "0136pk6pfwpiiy9vca4pgg4wh74jfb5ssglpdszzhamljpvg765x"))))
0416a0d4
RJ
1612 (properties `((upstream-name . "CGHbase")))
1613 (build-system r-build-system)
1614 (propagated-inputs
1615 `(("r-biobase" ,r-biobase)
1616 ("r-marray" ,r-marray)))
1617 (home-page "http://bioconductor.org/packages/CGHbase")
1618 (synopsis "Base functions and classes for arrayCGH data analysis")
1619 (description "This package contains functions and classes that are needed by
1620the @code{arrayCGH} packages.")
1621 (license license:gpl2+)))
67ee83d6
RJ
1622
1623(define-public r-cghcall
1624 (package
1625 (name "r-cghcall")
8f2a4ea1 1626 (version "2.48.0")
67ee83d6
RJ
1627 (source (origin
1628 (method url-fetch)
1629 (uri (bioconductor-uri "CGHcall" version))
1630 (sha256
8f2a4ea1 1631 (base32 "1x8pz7zhw2nabik1vgdhlivndqvil3s7vnl5070k493v6gza0p3s"))))
67ee83d6
RJ
1632 (properties `((upstream-name . "CGHcall")))
1633 (build-system r-build-system)
1634 (propagated-inputs
1635 `(("r-biobase" ,r-biobase)
1636 ("r-cghbase" ,r-cghbase)
1637 ("r-impute" ,r-impute)
1638 ("r-dnacopy" ,r-dnacopy)
1639 ("r-snowfall" ,r-snowfall)))
1640 (home-page "http://bioconductor.org/packages/CGHcall")
1641 (synopsis "Base functions and classes for arrayCGH data analysis")
1642 (description "This package contains functions and classes that are needed by
1643@code{arrayCGH} packages.")
1644 (license license:gpl2+)))
0ef8cc9c
RJ
1645
1646(define-public r-qdnaseq
1647 (package
1648 (name "r-qdnaseq")
23ce5ad1 1649 (version "1.22.0")
0ef8cc9c
RJ
1650 (source (origin
1651 (method url-fetch)
1652 (uri (bioconductor-uri "QDNAseq" version))
1653 (sha256
23ce5ad1 1654 (base32 "0xcqdpv9a47zpxx0q9sif5y4s1yzx3pig0kywy961kh5xgl5bcrq"))))
0ef8cc9c
RJ
1655 (properties `((upstream-name . "QDNAseq")))
1656 (build-system r-build-system)
1657 (propagated-inputs
1658 `(("r-biobase" ,r-biobase)
1659 ("r-cghbase" ,r-cghbase)
1660 ("r-cghcall" ,r-cghcall)
1661 ("r-dnacopy" ,r-dnacopy)
23ce5ad1
RW
1662 ("r-future" ,r-future)
1663 ("r-future-apply" ,r-future-apply)
0ef8cc9c
RJ
1664 ("r-genomicranges" ,r-genomicranges)
1665 ("r-iranges" ,r-iranges)
1666 ("r-matrixstats" ,r-matrixstats)
1667 ("r-r-utils" ,r-r-utils)
1668 ("r-rsamtools" ,r-rsamtools)))
1669 (home-page "http://bioconductor.org/packages/QDNAseq")
1670 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
1671 (description "The genome is divided into non-overlapping fixed-sized bins,
1672number of sequence reads in each counted, adjusted with a simultaneous
1673two-dimensional loess correction for sequence mappability and GC content, and
1674filtered to remove spurious regions in the genome. Downstream steps of
1675segmentation and calling are also implemented via packages DNAcopy and CGHcall,
1676respectively.")
1677 (license license:gpl2+)))
bb15b581
RW
1678
1679(define-public r-bayseq
1680 (package
1681 (name "r-bayseq")
d7722823 1682 (version "2.20.0")
bb15b581
RW
1683 (source
1684 (origin
1685 (method url-fetch)
1686 (uri (bioconductor-uri "baySeq" version))
1687 (sha256
1688 (base32
d7722823 1689 "040s1d3756spyzblkyx2vcy7bn3vf87mhsp3is35yxkj55n3myjk"))))
bb15b581
RW
1690 (properties `((upstream-name . "baySeq")))
1691 (build-system r-build-system)
1692 (propagated-inputs
1693 `(("r-abind" ,r-abind)
1694 ("r-edger" ,r-edger)
1695 ("r-genomicranges" ,r-genomicranges)))
1696 (home-page "https://bioconductor.org/packages/baySeq/")
1697 (synopsis "Bayesian analysis of differential expression patterns in count data")
1698 (description
1699 "This package identifies differential expression in high-throughput count
1700data, such as that derived from next-generation sequencing machines,
1701calculating estimated posterior likelihoods of differential expression (or
1702more complex hypotheses) via empirical Bayesian methods.")
1703 (license license:gpl3)))
609f4ad1
RW
1704
1705(define-public r-chipcomp
1706 (package
1707 (name "r-chipcomp")
b0897fbf 1708 (version "1.16.0")
609f4ad1
RW
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (bioconductor-uri "ChIPComp" version))
1713 (sha256
1714 (base32
b0897fbf 1715 "0wk0vvg6dk9wk60lzbadrnqar75dppvyr4hiwrhv9rhhah2mg2mg"))))
609f4ad1
RW
1716 (properties `((upstream-name . "ChIPComp")))
1717 (build-system r-build-system)
1718 (propagated-inputs
1719 `(("r-biocgenerics" ,r-biocgenerics)
1720 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1721 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
1722 ("r-genomeinfodb" ,r-genomeinfodb)
1723 ("r-genomicranges" ,r-genomicranges)
1724 ("r-iranges" ,r-iranges)
1725 ("r-limma" ,r-limma)
1726 ("r-rsamtools" ,r-rsamtools)
1727 ("r-rtracklayer" ,r-rtracklayer)
1728 ("r-s4vectors" ,r-s4vectors)))
1729 (home-page "https://bioconductor.org/packages/ChIPComp")
1730 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
1731 (description
1732 "ChIPComp implements a statistical method for quantitative comparison of
1733multiple ChIP-seq datasets. It detects differentially bound sharp binding
1734sites across multiple conditions considering matching control in ChIP-seq
1735datasets.")
1736 ;; Any version of the GPL.
1737 (license license:gpl3+)))
0490f9de
RW
1738
1739(define-public r-riboprofiling
1740 (package
1741 (name "r-riboprofiling")
88af7049 1742 (version "1.16.0")
0490f9de
RW
1743 (source
1744 (origin
1745 (method url-fetch)
1746 (uri (bioconductor-uri "RiboProfiling" version))
1747 (sha256
1748 (base32
88af7049 1749 "0nfzyiq7cd6fs5agzl1zyfg8s631wi7kjngiyvd3vxlhi8wsjicx"))))
0490f9de
RW
1750 (properties `((upstream-name . "RiboProfiling")))
1751 (build-system r-build-system)
1752 (propagated-inputs
1753 `(("r-biocgenerics" ,r-biocgenerics)
1754 ("r-biostrings" ,r-biostrings)
1755 ("r-data-table" ,r-data-table)
1756 ("r-genomeinfodb" ,r-genomeinfodb)
1757 ("r-genomicalignments" ,r-genomicalignments)
1758 ("r-genomicfeatures" ,r-genomicfeatures)
1759 ("r-genomicranges" ,r-genomicranges)
1760 ("r-ggbio" ,r-ggbio)
1761 ("r-ggplot2" ,r-ggplot2)
1762 ("r-iranges" ,r-iranges)
1763 ("r-plyr" ,r-plyr)
1764 ("r-reshape2" ,r-reshape2)
1765 ("r-rsamtools" ,r-rsamtools)
1766 ("r-rtracklayer" ,r-rtracklayer)
1767 ("r-s4vectors" ,r-s4vectors)
1768 ("r-sqldf" ,r-sqldf)))
1769 (home-page "https://bioconductor.org/packages/RiboProfiling/")
1770 (synopsis "Ribosome profiling data analysis")
1771 (description "Starting with a BAM file, this package provides the
1772necessary functions for quality assessment, read start position recalibration,
1773the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
1774of count data: pairs, log fold-change, codon frequency and coverage
1775assessment, principal component analysis on codon coverage.")
1776 (license license:gpl3)))
6ffdfe6a
RW
1777
1778(define-public r-riboseqr
1779 (package
1780 (name "r-riboseqr")
595b6c9a 1781 (version "1.20.0")
6ffdfe6a
RW
1782 (source
1783 (origin
1784 (method url-fetch)
1785 (uri (bioconductor-uri "riboSeqR" version))
1786 (sha256
1787 (base32
595b6c9a 1788 "1jr7h64hyhyf9gf15lah6iqwyljfc8mraf9kya4lql6lcjjkjiqm"))))
6ffdfe6a
RW
1789 (properties `((upstream-name . "riboSeqR")))
1790 (build-system r-build-system)
1791 (propagated-inputs
1792 `(("r-abind" ,r-abind)
1793 ("r-bayseq" ,r-bayseq)
1794 ("r-genomeinfodb" ,r-genomeinfodb)
1795 ("r-genomicranges" ,r-genomicranges)
1796 ("r-iranges" ,r-iranges)
1797 ("r-rsamtools" ,r-rsamtools)
1798 ("r-seqlogo" ,r-seqlogo)))
1799 (home-page "https://bioconductor.org/packages/riboSeqR/")
1800 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
1801 (description
1802 "This package provides plotting functions, frameshift detection and
1803parsing of genetic sequencing data from ribosome profiling experiments.")
1804 (license license:gpl3)))
a32279ff
RW
1805
1806(define-public r-interactionset
1807 (package
1808 (name "r-interactionset")
bb841742 1809 (version "1.14.0")
a32279ff
RW
1810 (source
1811 (origin
1812 (method url-fetch)
1813 (uri (bioconductor-uri "InteractionSet" version))
1814 (sha256
1815 (base32
bb841742 1816 "0n2l95h56x5g68p10cap8p4x3a6vaph2hjlk09vmi3j48lrzb2kh"))))
a32279ff
RW
1817 (properties
1818 `((upstream-name . "InteractionSet")))
1819 (build-system r-build-system)
1820 (propagated-inputs
1821 `(("r-biocgenerics" ,r-biocgenerics)
1822 ("r-genomeinfodb" ,r-genomeinfodb)
1823 ("r-genomicranges" ,r-genomicranges)
1824 ("r-iranges" ,r-iranges)
1825 ("r-matrix" ,r-matrix)
1826 ("r-rcpp" ,r-rcpp)
1827 ("r-s4vectors" ,r-s4vectors)
1828 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1829 (home-page "https://bioconductor.org/packages/InteractionSet")
1830 (synopsis "Base classes for storing genomic interaction data")
1831 (description
02fe0976 1832 "This package provides the @code{GInteractions},
a32279ff
RW
1833@code{InteractionSet} and @code{ContactMatrix} objects and associated methods
1834for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
1835experiments.")
1836 (license license:gpl3)))
cf9a29b2
RW
1837
1838(define-public r-genomicinteractions
1839 (package
1840 (name "r-genomicinteractions")
b701ed6e 1841 (version "1.20.0")
cf9a29b2
RW
1842 (source
1843 (origin
1844 (method url-fetch)
1845 (uri (bioconductor-uri "GenomicInteractions" version))
1846 (sha256
1847 (base32
b701ed6e 1848 "10kwb70c9aq0bfqpq48h186lsbwgrg18m14r9z8x6n8l7cds5azc"))))
cf9a29b2
RW
1849 (properties
1850 `((upstream-name . "GenomicInteractions")))
1851 (build-system r-build-system)
1852 (propagated-inputs
1853 `(("r-biobase" ,r-biobase)
1854 ("r-biocgenerics" ,r-biocgenerics)
1855 ("r-data-table" ,r-data-table)
1856 ("r-dplyr" ,r-dplyr)
1857 ("r-genomeinfodb" ,r-genomeinfodb)
1858 ("r-genomicranges" ,r-genomicranges)
1859 ("r-ggplot2" ,r-ggplot2)
1860 ("r-gridextra" ,r-gridextra)
1861 ("r-gviz" ,r-gviz)
1862 ("r-igraph" ,r-igraph)
1863 ("r-interactionset" ,r-interactionset)
1864 ("r-iranges" ,r-iranges)
1865 ("r-rsamtools" ,r-rsamtools)
1866 ("r-rtracklayer" ,r-rtracklayer)
1867 ("r-s4vectors" ,r-s4vectors)
1868 ("r-stringr" ,r-stringr)))
1869 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
1870 (synopsis "R package for handling genomic interaction data")
1871 (description
1872 "This R package provides tools for handling genomic interaction data,
1873such as ChIA-PET/Hi-C, annotating genomic features with interaction
1874information and producing various plots and statistics.")
1875 (license license:gpl3)))
27c51606
RW
1876
1877(define-public r-ctc
1878 (package
1879 (name "r-ctc")
b2b5b031 1880 (version "1.60.0")
27c51606
RW
1881 (source
1882 (origin
1883 (method url-fetch)
1884 (uri (bioconductor-uri "ctc" version))
1885 (sha256
1886 (base32
b2b5b031 1887 "0wh27izkyr1j26nznisw654mb5c94xpwjjkx7r6bhwg9ihxxcl6d"))))
27c51606
RW
1888 (build-system r-build-system)
1889 (propagated-inputs `(("r-amap" ,r-amap)))
1890 (home-page "https://bioconductor.org/packages/ctc/")
1891 (synopsis "Cluster and tree conversion")
1892 (description
1893 "This package provides tools for exporting and importing classification
1894trees and clusters to other programs.")
1895 (license license:gpl2)))
5da0e142
RW
1896
1897(define-public r-goseq
1898 (package
1899 (name "r-goseq")
ab7f3cbb 1900 (version "1.38.0")
5da0e142
RW
1901 (source
1902 (origin
1903 (method url-fetch)
1904 (uri (bioconductor-uri "goseq" version))
1905 (sha256
1906 (base32
ab7f3cbb 1907 "11ypa41qv1nx3cncxlwlbhdxqlwq95rb9byv2z3crrf9nfp24byv"))))
5da0e142
RW
1908 (build-system r-build-system)
1909 (propagated-inputs
1910 `(("r-annotationdbi" ,r-annotationdbi)
1911 ("r-biasedurn" ,r-biasedurn)
1912 ("r-biocgenerics" ,r-biocgenerics)
1913 ("r-genelendatabase" ,r-genelendatabase)
1914 ("r-go-db" ,r-go-db)
1915 ("r-mgcv" ,r-mgcv)))
1916 (home-page "https://bioconductor.org/packages/goseq/")
1917 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
1918 (description
1919 "This package provides tools to detect Gene Ontology and/or other user
1920defined categories which are over/under represented in RNA-seq data.")
1921 (license license:lgpl2.0+)))
f4235c0e
RW
1922
1923(define-public r-glimma
1924 (package
1925 (name "r-glimma")
728571fb 1926 (version "1.14.0")
f4235c0e
RW
1927 (source
1928 (origin
1929 (method url-fetch)
1930 (uri (bioconductor-uri "Glimma" version))
1931 (sha256
1932 (base32
728571fb 1933 "1rjrqgl96iz4b3xqpc174wgz7bqmc8gbm9ljag0y27kz29fwng8r"))))
f4235c0e
RW
1934 (properties `((upstream-name . "Glimma")))
1935 (build-system r-build-system)
1936 (propagated-inputs
1937 `(("r-edger" ,r-edger)
1938 ("r-jsonlite" ,r-jsonlite)
1939 ("r-s4vectors" ,r-s4vectors)))
1940 (home-page "https://github.com/Shians/Glimma")
1941 (synopsis "Interactive HTML graphics")
1942 (description
1943 "This package generates interactive visualisations for analysis of
1944RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
1945HTML page. The interactions are built on top of the popular static
1946representations of analysis results in order to provide additional
1947information.")
1948 (license license:lgpl3)))
aa388dc7
RW
1949
1950(define-public r-rots
1951 (package
1952 (name "r-rots")
9c071144 1953 (version "1.14.0")
aa388dc7
RW
1954 (source
1955 (origin
1956 (method url-fetch)
1957 (uri (bioconductor-uri "ROTS" version))
1958 (sha256
1959 (base32
9c071144 1960 "08mwlb0lpprys2b7vif8aj5bnprmn09mm79zz158gbhrv9j9d1qm"))))
aa388dc7
RW
1961 (properties `((upstream-name . "ROTS")))
1962 (build-system r-build-system)
1963 (propagated-inputs
1964 `(("r-biobase" ,r-biobase)
1965 ("r-rcpp" ,r-rcpp)))
1966 (home-page "https://bioconductor.org/packages/ROTS/")
1967 (synopsis "Reproducibility-Optimized Test Statistic")
1968 (description
1969 "This package provides tools for calculating the
1970@dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
1971in omics data.")
1972 (license license:gpl2+)))
b64ce4b7 1973
cad6fb2d
RW
1974(define-public r-plgem
1975 (package
1976 (name "r-plgem")
565bb84b 1977 (version "1.58.0")
cad6fb2d
RW
1978 (source
1979 (origin
1980 (method url-fetch)
1981 (uri (bioconductor-uri "plgem" version))
1982 (sha256
1983 (base32
565bb84b 1984 "0fkyvcw2qxp4g527s9rzia45yapi0r6gbij7svisil8rbgfdp45v"))))
cad6fb2d
RW
1985 (build-system r-build-system)
1986 (propagated-inputs
1987 `(("r-biobase" ,r-biobase)
1988 ("r-mass" ,r-mass)))
1989 (home-page "http://www.genopolis.it")
1990 (synopsis "Detect differential expression in microarray and proteomics datasets")
1991 (description
1992 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
1993model the variance-versus-mean dependence that exists in a variety of
1994genome-wide datasets, including microarray and proteomics data. The use of
1995PLGEM has been shown to improve the detection of differentially expressed
1996genes or proteins in these datasets.")
1997 (license license:gpl2)))
1998
b64ce4b7
RW
1999(define-public r-inspect
2000 (package
2001 (name "r-inspect")
bd824de3 2002 (version "1.16.1")
b64ce4b7
RW
2003 (source
2004 (origin
2005 (method url-fetch)
2006 (uri (bioconductor-uri "INSPEcT" version))
2007 (sha256
2008 (base32
bd824de3 2009 "03cf9c94ra4f847ndlf8sn2cq1kl1055514wjq0lqbvlbfdj1dq3"))))
b64ce4b7
RW
2010 (properties `((upstream-name . "INSPEcT")))
2011 (build-system r-build-system)
2012 (propagated-inputs
2013 `(("r-biobase" ,r-biobase)
2014 ("r-biocgenerics" ,r-biocgenerics)
2015 ("r-biocparallel" ,r-biocparallel)
c86fc969 2016 ("r-deseq2" ,r-deseq2)
b64ce4b7 2017 ("r-desolve" ,r-desolve)
bd824de3 2018 ("r-gdata" ,r-gdata)
74bb4cdf 2019 ("r-genomeinfodb" ,r-genomeinfodb)
b64ce4b7
RW
2020 ("r-genomicalignments" ,r-genomicalignments)
2021 ("r-genomicfeatures" ,r-genomicfeatures)
2022 ("r-genomicranges" ,r-genomicranges)
2023 ("r-iranges" ,r-iranges)
74bb4cdf 2024 ("r-kernsmooth" ,r-kernsmooth)
c86fc969 2025 ("r-plgem" ,r-plgem)
b64ce4b7
RW
2026 ("r-proc" ,r-proc)
2027 ("r-rootsolve" ,r-rootsolve)
2028 ("r-rsamtools" ,r-rsamtools)
c86fc969
RW
2029 ("r-s4vectors" ,r-s4vectors)
2030 ("r-shiny" ,r-shiny)
2031 ("r-summarizedexperiment" ,r-summarizedexperiment)
2032 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
2033 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
b64ce4b7
RW
2034 (home-page "https://bioconductor.org/packages/INSPEcT")
2035 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
2036 (description
2037 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
2038Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
2039order to evaluate synthesis, processing and degradation rates and assess via
2040modeling the rates that determines changes in mature mRNA levels.")
2041 (license license:gpl2)))
f6e99763
RW
2042
2043(define-public r-dnabarcodes
2044 (package
2045 (name "r-dnabarcodes")
2d86dc20 2046 (version "1.16.0")
f6e99763
RW
2047 (source
2048 (origin
2049 (method url-fetch)
2050 (uri (bioconductor-uri "DNABarcodes" version))
2051 (sha256
2052 (base32
2d86dc20 2053 "0r2r9qc2qvf7rfl1h5ynvv3xd7n444zbc697s85qxqdpr4sxqmfd"))))
f6e99763
RW
2054 (properties `((upstream-name . "DNABarcodes")))
2055 (build-system r-build-system)
2056 (propagated-inputs
2057 `(("r-bh" ,r-bh)
2058 ("r-matrix" ,r-matrix)
2059 ("r-rcpp" ,r-rcpp)))
2060 (home-page "https://bioconductor.org/packages/DNABarcodes")
2061 (synopsis "Create and analyze DNA barcodes")
2062 (description
2063 "This package offers tools to create DNA barcode sets capable of
2064correcting insertion, deletion, and substitution errors. Existing barcodes
2065can be analyzed regarding their minimal, maximal and average distances between
2066barcodes. Finally, reads that start with a (possibly mutated) barcode can be
2067demultiplexed, i.e. assigned to their original reference barcode.")
2068 (license license:gpl2)))
09aa3d06
RW
2069
2070(define-public r-ruvseq
2071 (package
2072 (name "r-ruvseq")
efd09347 2073 (version "1.20.0")
09aa3d06
RW
2074 (source
2075 (origin
2076 (method url-fetch)
2077 (uri (bioconductor-uri "RUVSeq" version))
2078 (sha256
2079 (base32
efd09347 2080 "1ipbbzpngx988lsmwqv7vbmqm65m43xvsmipayfppkrr6jipzxrj"))))
09aa3d06
RW
2081 (properties `((upstream-name . "RUVSeq")))
2082 (build-system r-build-system)
2083 (propagated-inputs
2084 `(("r-biobase" ,r-biobase)
2085 ("r-edaseq" ,r-edaseq)
2086 ("r-edger" ,r-edger)
2087 ("r-mass" ,r-mass)))
2088 (home-page "https://github.com/drisso/RUVSeq")
2089 (synopsis "Remove unwanted variation from RNA-Seq data")
2090 (description
2091 "This package implements methods to @dfn{remove unwanted variation} (RUV)
2092of Risso et al. (2014) for the normalization of RNA-Seq read counts between
2093samples.")
2094 (license license:artistic2.0)))
286157dc
RW
2095
2096(define-public r-biocneighbors
2097 (package
2098 (name "r-biocneighbors")
12e2aa96 2099 (version "1.4.1")
286157dc
RW
2100 (source
2101 (origin
2102 (method url-fetch)
2103 (uri (bioconductor-uri "BiocNeighbors" version))
2104 (sha256
2105 (base32
12e2aa96 2106 "05vi1cij37s8wgj92k3l6a3f3dwldj8jvijdp4695zczka6kypdf"))))
286157dc
RW
2107 (properties `((upstream-name . "BiocNeighbors")))
2108 (build-system r-build-system)
2109 (propagated-inputs
12e2aa96
RW
2110 `(("r-biocparallel" ,r-biocparallel)
2111 ("r-matrix" ,r-matrix)
286157dc
RW
2112 ("r-rcpp" ,r-rcpp)
2113 ("r-rcppannoy" ,r-rcppannoy)
6fc161fc 2114 ("r-rcpphnsw" ,r-rcpphnsw)
286157dc
RW
2115 ("r-s4vectors" ,r-s4vectors)))
2116 (home-page "https://bioconductor.org/packages/BiocNeighbors")
2117 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
2118 (description
2119 "This package implements exact and approximate methods for nearest
2120neighbor detection, in a framework that allows them to be easily switched
2121within Bioconductor packages or workflows. The exact algorithm is implemented
2122using pre-clustering with the k-means algorithm. Functions are also provided
2123to search for all neighbors within a given distance. Parallelization is
2124achieved for all methods using the BiocParallel framework.")
2125 (license license:gpl3)))
8a587c89 2126
99391290
RW
2127(define-public r-biocsingular
2128 (package
2129 (name "r-biocsingular")
eb6d1adf 2130 (version "1.2.1")
99391290
RW
2131 (source
2132 (origin
2133 (method url-fetch)
2134 (uri (bioconductor-uri "BiocSingular" version))
2135 (sha256
2136 (base32
eb6d1adf 2137 "0fjfmmpda7pszsck2hm7bp4509pl3xaz02q2q03d5vla62h1h81k"))))
99391290
RW
2138 (properties `((upstream-name . "BiocSingular")))
2139 (build-system r-build-system)
2140 (propagated-inputs
2141 `(("r-beachmat" ,r-beachmat)
2142 ("r-biocgenerics" ,r-biocgenerics)
2143 ("r-biocparallel" ,r-biocparallel)
2144 ("r-delayedarray" ,r-delayedarray)
2145 ("r-irlba" ,r-irlba)
2146 ("r-matrix" ,r-matrix)
2147 ("r-rcpp" ,r-rcpp)
2148 ("r-rsvd" ,r-rsvd)
2149 ("r-s4vectors" ,r-s4vectors)))
2150 (home-page "https://github.com/LTLA/BiocSingular")
2151 (synopsis "Singular value decomposition for Bioconductor packages")
2152 (description
2153 "This package implements exact and approximate methods for singular value
2154decomposition and principal components analysis, in a framework that allows
2155them to be easily switched within Bioconductor packages or workflows. Where
2156possible, parallelization is achieved using the BiocParallel framework.")
2157 (license license:gpl3)))
2158
a961ae46
RW
2159(define-public r-destiny
2160 (package
2161 (name "r-destiny")
6e10ac07 2162 (version "3.0.0")
a961ae46
RW
2163 (source
2164 (origin
2165 (method url-fetch)
2166 (uri (bioconductor-uri "destiny" version))
2167 (sha256
2168 (base32
6e10ac07 2169 "0vj9nk8g6i4vzm6cnzvbsqcvyk6fhmx0a0nxxrciarffyhqk81yz"))))
a961ae46
RW
2170 (build-system r-build-system)
2171 (propagated-inputs
2172 `(("r-biobase" ,r-biobase)
2173 ("r-biocgenerics" ,r-biocgenerics)
6e10ac07 2174 ("r-ggplot-multistats" ,r-ggplot-multistats)
0aa72f2d 2175 ("r-ggplot2" ,r-ggplot2)
a961ae46 2176 ("r-ggthemes" ,r-ggthemes)
6e10ac07
RW
2177 ("r-irlba" ,r-irlba)
2178 ("r-knn-covertree" ,r-knn-covertree)
a961ae46 2179 ("r-matrix" ,r-matrix)
6e10ac07 2180 ("r-pcamethods" ,r-pcamethods)
a961ae46
RW
2181 ("r-proxy" ,r-proxy)
2182 ("r-rcpp" ,r-rcpp)
2183 ("r-rcppeigen" ,r-rcppeigen)
6e10ac07
RW
2184 ("r-rcpphnsw" ,r-rcpphnsw)
2185 ("r-rspectra" ,r-rspectra)
a961ae46
RW
2186 ("r-scales" ,r-scales)
2187 ("r-scatterplot3d" ,r-scatterplot3d)
6e10ac07 2188 ("r-singlecellexperiment" ,r-singlecellexperiment)
a961ae46
RW
2189 ("r-smoother" ,r-smoother)
2190 ("r-summarizedexperiment" ,r-summarizedexperiment)
6e10ac07
RW
2191 ("r-tidyr" ,r-tidyr)
2192 ("r-tidyselect" ,r-tidyselect)
a961ae46
RW
2193 ("r-vim" ,r-vim)))
2194 (home-page "https://bioconductor.org/packages/destiny/")
2195 (synopsis "Create and plot diffusion maps")
2196 (description "This package provides tools to create and plot diffusion
2197maps.")
2198 ;; Any version of the GPL
2199 (license license:gpl3+)))
2200
8a587c89
RW
2201(define-public r-savr
2202 (package
2203 (name "r-savr")
2e17cbd7 2204 (version "1.24.0")
8a587c89
RW
2205 (source
2206 (origin
2207 (method url-fetch)
2208 (uri (bioconductor-uri "savR" version))
2209 (sha256
2210 (base32
2e17cbd7 2211 "1lsnqjl6qxbj0wai05qb2wrxrhxq5iarv2livmvwiwv70iigqygf"))))
8a587c89
RW
2212 (properties `((upstream-name . "savR")))
2213 (build-system r-build-system)
2214 (propagated-inputs
2215 `(("r-ggplot2" ,r-ggplot2)
2216 ("r-gridextra" ,r-gridextra)
2217 ("r-reshape2" ,r-reshape2)
2218 ("r-scales" ,r-scales)
2219 ("r-xml" ,r-xml)))
2220 (home-page "https://github.com/bcalder/savR")
2221 (synopsis "Parse and analyze Illumina SAV files")
2222 (description
2223 "This package provides tools to parse Illumina Sequence Analysis
2224Viewer (SAV) files, access data, and generate QC plots.")
2225 (license license:agpl3+)))
41ffc214
RW
2226
2227(define-public r-chipexoqual
2228 (package
2229 (name "r-chipexoqual")
84825e55 2230 (version "1.10.0")
41ffc214
RW
2231 (source
2232 (origin
2233 (method url-fetch)
2234 (uri (bioconductor-uri "ChIPexoQual" version))
2235 (sha256
2236 (base32
84825e55 2237 "044n6kn16qczpdhp0w0z5x8xpr0rfs9s8q70rafgnvj7a2q1xdd0"))))
41ffc214
RW
2238 (properties `((upstream-name . "ChIPexoQual")))
2239 (build-system r-build-system)
2240 (propagated-inputs
2241 `(("r-biocparallel" ,r-biocparallel)
2242 ("r-biovizbase" ,r-biovizbase)
2243 ("r-broom" ,r-broom)
2244 ("r-data-table" ,r-data-table)
2245 ("r-dplyr" ,r-dplyr)
2246 ("r-genomeinfodb" ,r-genomeinfodb)
2247 ("r-genomicalignments" ,r-genomicalignments)
2248 ("r-genomicranges" ,r-genomicranges)
2249 ("r-ggplot2" ,r-ggplot2)
2250 ("r-hexbin" ,r-hexbin)
2251 ("r-iranges" ,r-iranges)
2252 ("r-rcolorbrewer" ,r-rcolorbrewer)
2253 ("r-rmarkdown" ,r-rmarkdown)
2254 ("r-rsamtools" ,r-rsamtools)
2255 ("r-s4vectors" ,r-s4vectors)
2256 ("r-scales" ,r-scales)
2257 ("r-viridis" ,r-viridis)))
2258 (home-page "https://github.com/keleslab/ChIPexoQual")
2259 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
2260 (description
2261 "This package provides a quality control pipeline for ChIP-exo/nexus
2262sequencing data.")
2263 (license license:gpl2+)))
c18dccff 2264
3d13b448
RW
2265(define-public r-copynumber
2266 (package
2267 (name "r-copynumber")
eb3fd382 2268 (version "1.26.0")
3d13b448
RW
2269 (source (origin
2270 (method url-fetch)
2271 (uri (bioconductor-uri "copynumber" version))
2272 (sha256
2273 (base32
eb3fd382 2274 "0r6r1adj20x3ckm0dlipxlf1rzngr92xsxxpy81mqxf4jpmyr8gj"))))
3d13b448
RW
2275 (build-system r-build-system)
2276 (propagated-inputs
2277 `(("r-s4vectors" ,r-s4vectors)
2278 ("r-iranges" ,r-iranges)
2279 ("r-genomicranges" ,r-genomicranges)
2280 ("r-biocgenerics" ,r-biocgenerics)))
2281 (home-page "https://bioconductor.org/packages/copynumber")
2282 (synopsis "Segmentation of single- and multi-track copy number data")
2283 (description
2284 "This package segments single- and multi-track copy number data by a
2285penalized least squares regression method.")
2286 (license license:artistic2.0)))
2287
c18dccff
RW
2288(define-public r-dnacopy
2289 (package
2290 (name "r-dnacopy")
bba70cda 2291 (version "1.60.0")
c18dccff
RW
2292 (source
2293 (origin
2294 (method url-fetch)
2295 (uri (bioconductor-uri "DNAcopy" version))
2296 (sha256
2297 (base32
bba70cda 2298 "119z5lqhhw9ppg6s4dvbxk1kxf3wc55ibpm9b88c91s04yd7m9yw"))))
c18dccff
RW
2299 (properties `((upstream-name . "DNAcopy")))
2300 (build-system r-build-system)
2301 (native-inputs `(("gfortran" ,gfortran)))
2302 (home-page "https://bioconductor.org/packages/DNAcopy")
2303 (synopsis "DNA copy number data analysis")
2304 (description
2305 "This package implements the @dfn{circular binary segmentation} (CBS)
2306algorithm to segment DNA copy number data and identify genomic regions with
2307abnormal copy number.")
2308 (license license:gpl2+)))
3a0babac
RW
2309
2310;; This is a CRAN package, but it uncharacteristically depends on a
2311;; Bioconductor package.
2312(define-public r-htscluster
2313 (package
2314 (name "r-htscluster")
2315 (version "2.0.8")
2316 (source
2317 (origin
2318 (method url-fetch)
2319 (uri (cran-uri "HTSCluster" version))
2320 (sha256
2321 (base32
2322 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
2323 (properties `((upstream-name . "HTSCluster")))
2324 (build-system r-build-system)
2325 (propagated-inputs
2326 `(("r-capushe" ,r-capushe)
2327 ("r-edger" ,r-edger)
2328 ("r-plotrix" ,r-plotrix)))
2329 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
2330 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
2331 (description
2332 "This package provides a Poisson mixture model is implemented to cluster
2333genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
2334estimation is performed using either the EM or CEM algorithm, and the slope
2335heuristics are used for model selection (i.e., to choose the number of
2336clusters).")
2337 (license license:gpl3+)))
173c9960
RW
2338
2339(define-public r-deds
2340 (package
2341 (name "r-deds")
96030bf7 2342 (version "1.60.0")
173c9960
RW
2343 (source
2344 (origin
2345 (method url-fetch)
2346 (uri (bioconductor-uri "DEDS" version))
2347 (sha256
2348 (base32
96030bf7 2349 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
173c9960
RW
2350 (properties `((upstream-name . "DEDS")))
2351 (build-system r-build-system)
2352 (home-page "https://bioconductor.org/packages/DEDS/")
2353 (synopsis "Differential expression via distance summary for microarray data")
2354 (description
2355 "This library contains functions that calculate various statistics of
2356differential expression for microarray data, including t statistics, fold
2357change, F statistics, SAM, moderated t and F statistics and B statistics. It
2358also implements a new methodology called DEDS (Differential Expression via
2359Distance Summary), which selects differentially expressed genes by integrating
2360and summarizing a set of statistics using a weighted distance approach.")
2361 ;; Any version of the LGPL.
2362 (license license:lgpl3+)))
7ed869f7
RW
2363
2364;; This is a CRAN package, but since it depends on a Bioconductor package we
2365;; put it here.
2366(define-public r-nbpseq
2367 (package
2368 (name "r-nbpseq")
2369 (version "0.3.0")
2370 (source
2371 (origin
2372 (method url-fetch)
2373 (uri (cran-uri "NBPSeq" version))
2374 (sha256
2375 (base32
2376 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
2377 (properties `((upstream-name . "NBPSeq")))
2378 (build-system r-build-system)
2379 (propagated-inputs
2380 `(("r-qvalue" ,r-qvalue)))
2381 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
2382 (synopsis "Negative binomial models for RNA-Seq data")
2383 (description
2384 "This package provides negative binomial models for two-group comparisons
2385and regression inferences from RNA-sequencing data.")
2386 (license license:gpl2)))
3087a2f3
RW
2387
2388(define-public r-ebseq
2389 (package
2390 (name "r-ebseq")
a9649c41 2391 (version "1.26.0")
3087a2f3
RW
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (bioconductor-uri "EBSeq" version))
2396 (sha256
2397 (base32
a9649c41 2398 "0ay1vcccpc29r3vinlnwp9256345bfb346kg2y11kib4bnrabjb6"))))
3087a2f3
RW
2399 (properties `((upstream-name . "EBSeq")))
2400 (build-system r-build-system)
2401 (propagated-inputs
2402 `(("r-blockmodeling" ,r-blockmodeling)
2403 ("r-gplots" ,r-gplots)
2404 ("r-testthat" ,r-testthat)))
2405 (home-page "https://bioconductor.org/packages/EBSeq")
2406 (synopsis "Differential expression analysis of RNA-seq data")
2407 (description
2408 "This package provides tools for differential expression analysis at both
2409gene and isoform level using RNA-seq data")
2410 (license license:artistic2.0)))
2cb71d81
RW
2411
2412(define-public r-lpsymphony
2413 (package
2414 (name "r-lpsymphony")
153dc51b 2415 (version "1.14.0")
2cb71d81
RW
2416 (source
2417 (origin
2418 (method url-fetch)
2419 (uri (bioconductor-uri "lpsymphony" version))
2420 (sha256
2421 (base32
153dc51b 2422 "0j5j9kggh3l61vp6hpnqf45d5kzifksaj0sqhvs1zahmx2c1gfdv"))))
2cb71d81
RW
2423 (build-system r-build-system)
2424 (inputs
2425 `(("gfortran" ,gfortran)
2426 ("zlib" ,zlib)))
2427 (native-inputs
2428 `(("pkg-config" ,pkg-config)))
2429 (home-page "http://r-forge.r-project.org/projects/rsymphony")
2430 (synopsis "Symphony integer linear programming solver in R")
2431 (description
2432 "This package was derived from Rsymphony. The package provides an R
2433interface to SYMPHONY, a linear programming solver written in C++. The main
2434difference between this package and Rsymphony is that it includes the solver
2435source code, while Rsymphony expects to find header and library files on the
2436users' system. Thus the intention of @code{lpsymphony} is to provide an easy
2437to install interface to SYMPHONY.")
2438 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
2439 ;; lpsimphony is released under the same terms.
2440 (license license:epl1.0)))
704de8f5
RW
2441
2442(define-public r-ihw
2443 (package
2444 (name "r-ihw")
0383bd05 2445 (version "1.14.0")
704de8f5
RW
2446 (source
2447 (origin
2448 (method url-fetch)
2449 (uri (bioconductor-uri "IHW" version))
2450 (sha256
2451 (base32
0383bd05 2452 "0rnw7r9pylpj3a5graavcpiqv2v67rv2a4dlcynkf4ihpxs4bg8x"))))
704de8f5
RW
2453 (properties `((upstream-name . "IHW")))
2454 (build-system r-build-system)
2455 (propagated-inputs
2456 `(("r-biocgenerics" ,r-biocgenerics)
2457 ("r-fdrtool" ,r-fdrtool)
2458 ("r-lpsymphony" ,r-lpsymphony)
2459 ("r-slam" ,r-slam)))
2460 (home-page "https://bioconductor.org/packages/IHW")
2461 (synopsis "Independent hypothesis weighting")
2462 (description
2463 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
2464procedure that increases power compared to the method of Benjamini and
2465Hochberg by assigning data-driven weights to each hypothesis. The input to
2466IHW is a two-column table of p-values and covariates. The covariate can be
2467any continuous-valued or categorical variable that is thought to be
2468informative on the statistical properties of each hypothesis test, while it is
2469independent of the p-value under the null hypothesis.")
2470 (license license:artistic2.0)))
251e0830
RW
2471
2472(define-public r-icobra
2473 (package
2474 (name "r-icobra")
a5cc1f10 2475 (version "1.14.0")
251e0830
RW
2476 (source
2477 (origin
2478 (method url-fetch)
2479 (uri (bioconductor-uri "iCOBRA" version))
2480 (sha256
2481 (base32
a5cc1f10 2482 "1l0yr2grpwmr3pc5h50p1j4nxyb1ddmc55l7rhxpp4igh4fq1avz"))))
251e0830
RW
2483 (properties `((upstream-name . "iCOBRA")))
2484 (build-system r-build-system)
2485 (propagated-inputs
2486 `(("r-dplyr" ,r-dplyr)
2487 ("r-dt" ,r-dt)
2488 ("r-ggplot2" ,r-ggplot2)
2489 ("r-limma" ,r-limma)
2490 ("r-reshape2" ,r-reshape2)
2491 ("r-rocr" ,r-rocr)
2492 ("r-scales" ,r-scales)
2493 ("r-shiny" ,r-shiny)
2494 ("r-shinybs" ,r-shinybs)
2495 ("r-shinydashboard" ,r-shinydashboard)
2496 ("r-upsetr" ,r-upsetr)))
2497 (home-page "https://bioconductor.org/packages/iCOBRA")
2498 (synopsis "Comparison and visualization of ranking and assignment methods")
2499 (description
2500 "This package provides functions for calculation and visualization of
2501performance metrics for evaluation of ranking and binary
2502classification (assignment) methods. It also contains a Shiny application for
2503interactive exploration of results.")
2504 (license license:gpl2+)))
925fcdbb
RW
2505
2506(define-public r-mast
2507 (package
2508 (name "r-mast")
dc5237f8 2509 (version "1.12.0")
925fcdbb
RW
2510 (source
2511 (origin
2512 (method url-fetch)
2513 (uri (bioconductor-uri "MAST" version))
2514 (sha256
2515 (base32
dc5237f8 2516 "1l78rrwkzyswpj6pgc9z8290fqrk4akba76invkkazpyh91r8gga"))))
925fcdbb
RW
2517 (properties `((upstream-name . "MAST")))
2518 (build-system r-build-system)
2519 (propagated-inputs
2520 `(("r-abind" ,r-abind)
2521 ("r-biobase" ,r-biobase)
2522 ("r-biocgenerics" ,r-biocgenerics)
2523 ("r-data-table" ,r-data-table)
2524 ("r-ggplot2" ,r-ggplot2)
2525 ("r-plyr" ,r-plyr)
2526 ("r-progress" ,r-progress)
2527 ("r-reshape2" ,r-reshape2)
2528 ("r-s4vectors" ,r-s4vectors)
2529 ("r-singlecellexperiment" ,r-singlecellexperiment)
2530 ("r-stringr" ,r-stringr)
2531 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2532 (home-page "https://github.com/RGLab/MAST/")
2533 (synopsis "Model-based analysis of single cell transcriptomics")
2534 (description
2535 "This package provides methods and models for handling zero-inflated
2536single cell assay data.")
2537 (license license:gpl2+)))
2d7627cf
RW
2538
2539(define-public r-monocle
2540 (package
2541 (name "r-monocle")
9732e690 2542 (version "2.14.0")
2d7627cf
RW
2543 (source
2544 (origin
2545 (method url-fetch)
2546 (uri (bioconductor-uri "monocle" version))
2547 (sha256
2548 (base32
9732e690 2549 "18b9y592q48mbcp5w095qs1kaklq64v6dcnlpqhv3rwxvywygsz2"))))
2d7627cf
RW
2550 (build-system r-build-system)
2551 (propagated-inputs
2552 `(("r-biobase" ,r-biobase)
2553 ("r-biocgenerics" ,r-biocgenerics)
2554 ("r-biocviews" ,r-biocviews)
2555 ("r-cluster" ,r-cluster)
2556 ("r-combinat" ,r-combinat)
2557 ("r-ddrtree" ,r-ddrtree)
2558 ("r-densityclust" ,r-densityclust)
2559 ("r-dplyr" ,r-dplyr)
2560 ("r-fastica" ,r-fastica)
2561 ("r-ggplot2" ,r-ggplot2)
2562 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
2563 ("r-igraph" ,r-igraph)
2564 ("r-irlba" ,r-irlba)
2565 ("r-limma" ,r-limma)
2566 ("r-mass" ,r-mass)
2567 ("r-matrix" ,r-matrix)
2568 ("r-matrixstats" ,r-matrixstats)
2569 ("r-pheatmap" ,r-pheatmap)
2570 ("r-plyr" ,r-plyr)
2571 ("r-proxy" ,r-proxy)
2572 ("r-qlcmatrix" ,r-qlcmatrix)
2573 ("r-rann" ,r-rann)
2574 ("r-rcpp" ,r-rcpp)
2575 ("r-reshape2" ,r-reshape2)
2576 ("r-rtsne" ,r-rtsne)
2577 ("r-slam" ,r-slam)
2578 ("r-stringr" ,r-stringr)
2579 ("r-tibble" ,r-tibble)
2580 ("r-vgam" ,r-vgam)
2581 ("r-viridis" ,r-viridis)))
2582 (home-page "https://bioconductor.org/packages/monocle")
2583 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
2584 (description
2585 "Monocle performs differential expression and time-series analysis for
2586single-cell expression experiments. It orders individual cells according to
2587progress through a biological process, without knowing ahead of time which
2588genes define progress through that process. Monocle also performs
2589differential expression analysis, clustering, visualization, and other useful
2590tasks on single cell expression data. It is designed to work with RNA-Seq and
2591qPCR data, but could be used with other types as well.")
2592 (license license:artistic2.0)))
6213e441 2593
b2dce6b5
RW
2594(define-public r-monocle3
2595 (package
2596 (name "r-monocle3")
2597 (version "0.1.2")
2598 (source
2599 (origin
2600 (method git-fetch)
2601 (uri (git-reference
2602 (url "https://github.com/cole-trapnell-lab/monocle3.git")
2603 (commit version)))
2604 (file-name (git-file-name name version))
2605 (sha256
2606 (base32
2607 "1cjxqfw3qvy269hsf5v80d4kshl932wrl949iayas02saj6f70ls"))))
2608 (build-system r-build-system)
2609 (propagated-inputs
2610 `(("r-biobase" ,r-biobase)
2611 ("r-biocgenerics" ,r-biocgenerics)
2612 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
2613 ("r-dplyr" ,r-dplyr)
2614 ("r-ggplot2" ,r-ggplot2)
2615 ("r-ggrepel" ,r-ggrepel)
2616 ("r-grr" ,r-grr)
2617 ("r-htmlwidgets" ,r-htmlwidgets)
2618 ("r-igraph" ,r-igraph)
2619 ("r-irlba" ,r-irlba)
2620 ("r-limma" ,r-limma)
2621 ("r-lmtest" ,r-lmtest)
2622 ("r-mass" ,r-mass)
2623 ("r-matrix" ,r-matrix)
2624 ("r-matrix-utils" ,r-matrix-utils)
2625 ("r-pbapply" ,r-pbapply)
2626 ("r-pbmcapply" ,r-pbmcapply)
2627 ("r-pheatmap" ,r-pheatmap)
2628 ("r-plotly" ,r-plotly)
2629 ("r-pryr" ,r-pryr)
2630 ("r-proxy" ,r-proxy)
2631 ("r-pscl" ,r-pscl)
2632 ("r-purrr" ,r-purrr)
2633 ("r-rann" ,r-rann)
2634 ("r-rcpp" ,r-rcpp)
2635 ("r-rcppparallel" ,r-rcppparallel)
2636 ("r-reshape2" ,r-reshape2)
2637 ("r-reticulate" ,r-reticulate)
2638 ("r-rhpcblasctl" ,r-rhpcblasctl)
2639 ("r-rtsne" ,r-rtsne)
2640 ("r-shiny" ,r-shiny)
2641 ("r-slam" ,r-slam)
2642 ("r-spdep" ,r-spdep)
2643 ("r-speedglm" ,r-speedglm)
2644 ("r-stringr" ,r-stringr)
2645 ("r-singlecellexperiment" ,r-singlecellexperiment)
2646 ("r-tibble" ,r-tibble)
2647 ("r-tidyr" ,r-tidyr)
2648 ("r-uwot" ,r-uwot)
2649 ("r-viridis" ,r-viridis)))
2650 (home-page "https://github.com/cole-trapnell-lab/monocle3")
2651 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
2652 (description
2653 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
2654 (license license:expat)))
2655
6213e441
RW
2656(define-public r-noiseq
2657 (package
2658 (name "r-noiseq")
81a125cd 2659 (version "2.30.0")
6213e441
RW
2660 (source
2661 (origin
2662 (method url-fetch)
2663 (uri (bioconductor-uri "NOISeq" version))
2664 (sha256
2665 (base32
81a125cd 2666 "1a8p66hhnwmay0rjabwq7356wr93yn33nqgr9rr7whpp9nls1hg4"))))
6213e441
RW
2667 (properties `((upstream-name . "NOISeq")))
2668 (build-system r-build-system)
2669 (propagated-inputs
2670 `(("r-biobase" ,r-biobase)
2671 ("r-matrix" ,r-matrix)))
2672 (home-page "https://bioconductor.org/packages/NOISeq")
2673 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
2674 (description
2675 "This package provides tools to support the analysis of RNA-seq
2676expression data or other similar kind of data. It provides exploratory plots
2677to evaluate saturation, count distribution, expression per chromosome, type of
2678detected features, features length, etc. It also supports the analysis of
2679differential expression between two experimental conditions with no parametric
2680assumptions.")
2681 (license license:artistic2.0)))
b409c357
RW
2682
2683(define-public r-scdd
2684 (package
2685 (name "r-scdd")
2f223b21 2686 (version "1.10.0")
b409c357
RW
2687 (source
2688 (origin
2689 (method url-fetch)
2690 (uri (bioconductor-uri "scDD" version))
2691 (sha256
2692 (base32
2f223b21 2693 "0nk0qq664zs7dnlcamdkrrhvll01p7f96jj3igbxxlzj3dvr58w4"))))
b409c357
RW
2694 (properties `((upstream-name . "scDD")))
2695 (build-system r-build-system)
2696 (propagated-inputs
2697 `(("r-arm" ,r-arm)
2698 ("r-biocparallel" ,r-biocparallel)
2699 ("r-ebseq" ,r-ebseq)
2700 ("r-fields" ,r-fields)
2701 ("r-ggplot2" ,r-ggplot2)
2702 ("r-mclust" ,r-mclust)
2703 ("r-outliers" ,r-outliers)
2704 ("r-s4vectors" ,r-s4vectors)
2705 ("r-scran" ,r-scran)
2706 ("r-singlecellexperiment" ,r-singlecellexperiment)
2707 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2708 (home-page "https://github.com/kdkorthauer/scDD")
2709 (synopsis "Mixture modeling of single-cell RNA-seq data")
2710 (description
2711 "This package implements a method to analyze single-cell RNA-seq data
2712utilizing flexible Dirichlet Process mixture models. Genes with differential
2713distributions of expression are classified into several interesting patterns
2714of differences between two conditions. The package also includes functions
2715for simulating data with these patterns from negative binomial
2716distributions.")
2717 (license license:gpl2)))
f0887757
RW
2718
2719(define-public r-scone
2720 (package
2721 (name "r-scone")
048a43d6 2722 (version "1.10.0")
f0887757
RW
2723 (source
2724 (origin
2725 (method url-fetch)
2726 (uri (bioconductor-uri "scone" version))
2727 (sha256
2728 (base32
048a43d6 2729 "1hfsbnix0y9ad6bj0d8q2aw13pb3vjcaa0dfwxxapzl90zwbsjhp"))))
f0887757
RW
2730 (build-system r-build-system)
2731 (propagated-inputs
2732 `(("r-aroma-light" ,r-aroma-light)
2733 ("r-biocparallel" ,r-biocparallel)
2734 ("r-boot" ,r-boot)
2735 ("r-class" ,r-class)
2736 ("r-cluster" ,r-cluster)
2737 ("r-compositions" ,r-compositions)
2738 ("r-diptest" ,r-diptest)
2739 ("r-edger" ,r-edger)
2740 ("r-fpc" ,r-fpc)
2741 ("r-gplots" ,r-gplots)
2742 ("r-hexbin" ,r-hexbin)
2743 ("r-limma" ,r-limma)
2744 ("r-matrixstats" ,r-matrixstats)
2745 ("r-mixtools" ,r-mixtools)
2746 ("r-rarpack" ,r-rarpack)
2747 ("r-rcolorbrewer" ,r-rcolorbrewer)
2748 ("r-rhdf5" ,r-rhdf5)
2749 ("r-ruvseq" ,r-ruvseq)
2750 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2751 (home-page "https://bioconductor.org/packages/scone")
2752 (synopsis "Single cell overview of normalized expression data")
2753 (description
2754 "SCONE is an R package for comparing and ranking the performance of
2755different normalization schemes for single-cell RNA-seq and other
2756high-throughput analyses.")
2757 (license license:artistic2.0)))
f9201d67
RW
2758
2759(define-public r-geoquery
2760 (package
2761 (name "r-geoquery")
db85744e 2762 (version "2.54.1")
f9201d67
RW
2763 (source
2764 (origin
2765 (method url-fetch)
2766 (uri (bioconductor-uri "GEOquery" version))
2767 (sha256
2768 (base32
db85744e 2769 "0j8mlldy7dc38fx5zwj6z6l4b9bhvrn8sil3z8asnd4ic7w9ifx5"))))
f9201d67
RW
2770 (properties `((upstream-name . "GEOquery")))
2771 (build-system r-build-system)
2772 (propagated-inputs
2773 `(("r-biobase" ,r-biobase)
2774 ("r-dplyr" ,r-dplyr)
2775 ("r-httr" ,r-httr)
2776 ("r-limma" ,r-limma)
2777 ("r-magrittr" ,r-magrittr)
2778 ("r-readr" ,r-readr)
2779 ("r-tidyr" ,r-tidyr)
2780 ("r-xml2" ,r-xml2)))
2781 (home-page "https://github.com/seandavi/GEOquery/")
2782 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
2783 (description
2784 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
2785microarray data. Given the rich and varied nature of this resource, it is
2786only natural to want to apply BioConductor tools to these data. GEOquery is
2787the bridge between GEO and BioConductor.")
2788 (license license:gpl2)))
eed6ff03
RW
2789
2790(define-public r-illuminaio
2791 (package
2792 (name "r-illuminaio")
418d7214 2793 (version "0.28.0")
eed6ff03
RW
2794 (source
2795 (origin
2796 (method url-fetch)
2797 (uri (bioconductor-uri "illuminaio" version))
2798 (sha256
2799 (base32
418d7214 2800 "1psza8jq6h8fv2rm91ah67dgjlnj1l80yracwgdl1agd0ycv90sh"))))
eed6ff03
RW
2801 (build-system r-build-system)
2802 (propagated-inputs
2803 `(("r-base64" ,r-base64)))
2804 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
2805 (synopsis "Parse Illumina microarray output files")
2806 (description
2807 "This package provides tools for parsing Illumina's microarray output
2808files, including IDAT.")
2809 (license license:gpl2)))
f4eac096
RW
2810
2811(define-public r-siggenes
2812 (package
2813 (name "r-siggenes")
b4ee4148 2814 (version "1.60.0")
f4eac096
RW
2815 (source
2816 (origin
2817 (method url-fetch)
2818 (uri (bioconductor-uri "siggenes" version))
2819 (sha256
2820 (base32
b4ee4148 2821 "03lmq3hqprwps4miynl2vhqi3v4als5vqmz4lb19lk5a4zja72b4"))))
f4eac096
RW
2822 (build-system r-build-system)
2823 (propagated-inputs
2824 `(("r-biobase" ,r-biobase)
409f4dd6
RW
2825 ("r-multtest" ,r-multtest)
2826 ("r-scrime" ,r-scrime)))
f4eac096
RW
2827 (home-page "https://bioconductor.org/packages/siggenes/")
2828 (synopsis
2829 "Multiple testing using SAM and Efron's empirical Bayes approaches")
2830 (description
2831 "This package provides tools for the identification of differentially
2832expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
2833both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
2834Bayes Analyses of Microarrays} (EBAM).")
2835 (license license:lgpl2.0+)))
34a24f95
RW
2836
2837(define-public r-bumphunter
2838 (package
2839 (name "r-bumphunter")
4efdac56 2840 (version "1.28.0")
34a24f95
RW
2841 (source
2842 (origin
2843 (method url-fetch)
2844 (uri (bioconductor-uri "bumphunter" version))
2845 (sha256
2846 (base32
4efdac56 2847 "1p3gwb954zns61d1pwgkplxnvgk2lixrl93kkkf439wa3vlgsnjv"))))
34a24f95
RW
2848 (build-system r-build-system)
2849 (propagated-inputs
2850 `(("r-annotationdbi" ,r-annotationdbi)
2851 ("r-biocgenerics" ,r-biocgenerics)
2852 ("r-dorng" ,r-dorng)
2853 ("r-foreach" ,r-foreach)
2854 ("r-genomeinfodb" ,r-genomeinfodb)
2855 ("r-genomicfeatures" ,r-genomicfeatures)
2856 ("r-genomicranges" ,r-genomicranges)
2857 ("r-iranges" ,r-iranges)
2858 ("r-iterators" ,r-iterators)
2859 ("r-limma" ,r-limma)
2860 ("r-locfit" ,r-locfit)
2861 ("r-matrixstats" ,r-matrixstats)
2862 ("r-s4vectors" ,r-s4vectors)))
2863 (home-page "https://github.com/ririzarr/bumphunter")
2864 (synopsis "Find bumps in genomic data")
2865 (description
2866 "This package provides tools for finding bumps in genomic data in order
2867to identify differentially methylated regions in epigenetic epidemiology
2868studies.")
2869 (license license:artistic2.0)))
0fbaf195
RW
2870
2871(define-public r-minfi
2872 (package
2873 (name "r-minfi")
dfd4287c 2874 (version "1.32.0")
0fbaf195
RW
2875 (source
2876 (origin
2877 (method url-fetch)
2878 (uri (bioconductor-uri "minfi" version))
2879 (sha256
2880 (base32
dfd4287c 2881 "177isdvcq2476xybvfbh7x11qsj5nzckgh3b6p156wlx9ap9dvl3"))))
0fbaf195
RW
2882 (build-system r-build-system)
2883 (propagated-inputs
2884 `(("r-beanplot" ,r-beanplot)
2885 ("r-biobase" ,r-biobase)
2886 ("r-biocgenerics" ,r-biocgenerics)
2887 ("r-biocparallel" ,r-biocparallel)
2888 ("r-biostrings" ,r-biostrings)
2889 ("r-bumphunter" ,r-bumphunter)
2890 ("r-data-table" ,r-data-table)
2891 ("r-delayedarray" ,r-delayedarray)
2892 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
2893 ("r-genefilter" ,r-genefilter)
2894 ("r-genomeinfodb" ,r-genomeinfodb)
2895 ("r-genomicranges" ,r-genomicranges)
2896 ("r-geoquery" ,r-geoquery)
2897 ("r-hdf5array" ,r-hdf5array)
2898 ("r-illuminaio" ,r-illuminaio)
2899 ("r-iranges" ,r-iranges)
2900 ("r-lattice" ,r-lattice)
2901 ("r-limma" ,r-limma)
2902 ("r-mass" ,r-mass)
2903 ("r-mclust" ,r-mclust)
2904 ("r-nlme" ,r-nlme)
2905 ("r-nor1mix" ,r-nor1mix)
2906 ("r-preprocesscore" ,r-preprocesscore)
2907 ("r-quadprog" ,r-quadprog)
2908 ("r-rcolorbrewer" ,r-rcolorbrewer)
2909 ("r-reshape" ,r-reshape)
2910 ("r-s4vectors" ,r-s4vectors)
2911 ("r-siggenes" ,r-siggenes)
2912 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2913 (home-page "https://github.com/hansenlab/minfi")
2914 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
2915 (description
2916 "This package provides tools to analyze and visualize Illumina Infinium
2917methylation arrays.")
2918 (license license:artistic2.0)))
5ec5ba02
RW
2919
2920(define-public r-methylumi
2921 (package
2922 (name "r-methylumi")
b57cffb9 2923 (version "2.32.0")
5ec5ba02
RW
2924 (source
2925 (origin
2926 (method url-fetch)
2927 (uri (bioconductor-uri "methylumi" version))
2928 (sha256
2929 (base32
b57cffb9 2930 "0zd4h6n37v3z0mas69z2xsf5s0naih828987m8v0g9hhq4f6hf5w"))))
5ec5ba02
RW
2931 (build-system r-build-system)
2932 (propagated-inputs
2933 `(("r-annotate" ,r-annotate)
2934 ("r-annotationdbi" ,r-annotationdbi)
2935 ("r-biobase" ,r-biobase)
2936 ("r-biocgenerics" ,r-biocgenerics)
2937 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
2938 ("r-genefilter" ,r-genefilter)
2939 ("r-genomeinfodb" ,r-genomeinfodb)
2940 ("r-genomicranges" ,r-genomicranges)
2941 ("r-ggplot2" ,r-ggplot2)
2942 ("r-illuminaio" ,r-illuminaio)
2943 ("r-iranges" ,r-iranges)
2944 ("r-lattice" ,r-lattice)
2945 ("r-matrixstats" ,r-matrixstats)
2946 ("r-minfi" ,r-minfi)
2947 ("r-reshape2" ,r-reshape2)
2948 ("r-s4vectors" ,r-s4vectors)
2949 ("r-scales" ,r-scales)
2950 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2951 (home-page "https://bioconductor.org/packages/methylumi")
2952 (synopsis "Handle Illumina methylation data")
2953 (description
2954 "This package provides classes for holding and manipulating Illumina
2955methylation data. Based on eSet, it can contain MIAME information, sample
2956information, feature information, and multiple matrices of data. An
2957\"intelligent\" import function, methylumiR can read the Illumina text files
2958and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
2959HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
2960background correction, and quality control features for GoldenGate, Infinium,
2961and Infinium HD arrays are also included.")
2962 (license license:gpl2)))
09605cb2
RW
2963
2964(define-public r-lumi
2965 (package
2966 (name "r-lumi")
8f7bc872 2967 (version "2.38.0")
09605cb2
RW
2968 (source
2969 (origin
2970 (method url-fetch)
2971 (uri (bioconductor-uri "lumi" version))
2972 (sha256
2973 (base32
8f7bc872 2974 "0lgrqbdvp7ykcafc0bpnbcsf396na3jj5c35x9ysf5bpcas23nmm"))))
09605cb2
RW
2975 (build-system r-build-system)
2976 (propagated-inputs
2977 `(("r-affy" ,r-affy)
2978 ("r-annotate" ,r-annotate)
2979 ("r-annotationdbi" ,r-annotationdbi)
2980 ("r-biobase" ,r-biobase)
2981 ("r-dbi" ,r-dbi)
2982 ("r-genomicfeatures" ,r-genomicfeatures)
2983 ("r-genomicranges" ,r-genomicranges)
2984 ("r-kernsmooth" ,r-kernsmooth)
2985 ("r-lattice" ,r-lattice)
2986 ("r-mass" ,r-mass)
2987 ("r-methylumi" ,r-methylumi)
2988 ("r-mgcv" ,r-mgcv)
2989 ("r-nleqslv" ,r-nleqslv)
2990 ("r-preprocesscore" ,r-preprocesscore)
2991 ("r-rsqlite" ,r-rsqlite)))
2992 (home-page "https://bioconductor.org/packages/lumi")
2993 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
2994 (description
2995 "The lumi package provides an integrated solution for the Illumina
2996microarray data analysis. It includes functions of Illumina
2997BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
2998variance stabilization, normalization and gene annotation at the probe level.
2999It also includes the functions of processing Illumina methylation microarrays,
3000especially Illumina Infinium methylation microarrays.")
3001 (license license:lgpl2.0+)))
4291f36a
RW
3002
3003(define-public r-linnorm
3004 (package
3005 (name "r-linnorm")
a2877d69 3006 (version "2.10.0")
4291f36a
RW
3007 (source
3008 (origin
3009 (method url-fetch)
3010 (uri (bioconductor-uri "Linnorm" version))
3011 (sha256
3012 (base32
a2877d69 3013 "15mhwiqmp9m65zvrdbr2hhy3x81lf4jbwgjsf75g41if2v2g8x67"))))
4291f36a
RW
3014 (properties `((upstream-name . "Linnorm")))
3015 (build-system r-build-system)
3016 (propagated-inputs
3017 `(("r-amap" ,r-amap)
3018 ("r-apcluster" ,r-apcluster)
3019 ("r-ellipse" ,r-ellipse)
3020 ("r-fastcluster" ,r-fastcluster)
3021 ("r-fpc" ,r-fpc)
3022 ("r-ggdendro" ,r-ggdendro)
3023 ("r-ggplot2" ,r-ggplot2)
3024 ("r-gmodels" ,r-gmodels)
3025 ("r-igraph" ,r-igraph)
3026 ("r-limma" ,r-limma)
3027 ("r-mass" ,r-mass)
3028 ("r-mclust" ,r-mclust)
3029 ("r-rcpp" ,r-rcpp)
3030 ("r-rcpparmadillo" ,r-rcpparmadillo)
3031 ("r-rtsne" ,r-rtsne)
3032 ("r-statmod" ,r-statmod)
3033 ("r-vegan" ,r-vegan)
3034 ("r-zoo" ,r-zoo)))
3035 (home-page "http://www.jjwanglab.org/Linnorm/")
3036 (synopsis "Linear model and normality based transformation method")
3037 (description
3038 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
3039count data or any large scale count data. It transforms such datasets for
3040parametric tests. In addition to the transformtion function (@code{Linnorm}),
3041the following pipelines are implemented:
3042
3043@enumerate
3044@item Library size/batch effect normalization (@code{Linnorm.Norm})
3045@item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
3046 clustering or hierarchical clustering (@code{Linnorm.tSNE},
3047 @code{Linnorm.PCA}, @code{Linnorm.HClust})
3048@item Differential expression analysis or differential peak detection using
3049 limma (@code{Linnorm.limma})
3050@item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
3051@item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
3052@item Stable gene selection for scRNA-seq data; for users without or who do
3053 not want to rely on spike-in genes (@code{Linnorm.SGenes})
3054@item Data imputation (@code{Linnorm.DataImput}).
3055@end enumerate
3056
3057Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
3058@code{RnaXSim} function is included for simulating RNA-seq data for the
3059evaluation of DEG analysis methods.")
3060 (license license:expat)))
e4a17532
RW
3061
3062(define-public r-ioniser
3063 (package
3064 (name "r-ioniser")
1b890c32 3065 (version "2.10.0")
e4a17532
RW
3066 (source
3067 (origin
3068 (method url-fetch)
3069 (uri (bioconductor-uri "IONiseR" version))
3070 (sha256
3071 (base32
1b890c32 3072 "1c265bzh923i9mw83mjpj0bzbkixbs6sg1h1z51y9xjkakdgg90f"))))
e4a17532
RW
3073 (properties `((upstream-name . "IONiseR")))
3074 (build-system r-build-system)
3075 (propagated-inputs
3076 `(("r-biocgenerics" ,r-biocgenerics)
3077 ("r-biocparallel" ,r-biocparallel)
3078 ("r-biostrings" ,r-biostrings)
3079 ("r-bit64" ,r-bit64)
3080 ("r-dplyr" ,r-dplyr)
3081 ("r-ggplot2" ,r-ggplot2)
3082 ("r-magrittr" ,r-magrittr)
3083 ("r-rhdf5" ,r-rhdf5)
3084 ("r-shortread" ,r-shortread)
3085 ("r-stringr" ,r-stringr)
3086 ("r-tibble" ,r-tibble)
3087 ("r-tidyr" ,r-tidyr)
3088 ("r-xvector" ,r-xvector)))
3089 (home-page "https://bioconductor.org/packages/IONiseR/")
3090 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
3091 (description
3092 "IONiseR provides tools for the quality assessment of Oxford Nanopore
3093MinION data. It extracts summary statistics from a set of fast5 files and can
3094be used either before or after base calling. In addition to standard
3095summaries of the read-types produced, it provides a number of plots for
3096visualising metrics relative to experiment run time or spatially over the
3097surface of a flowcell.")
3098 (license license:expat)))
80eb01c7
RW
3099
3100;; This is a CRAN package, but it depends on packages from Bioconductor.
3101(define-public r-gkmsvm
3102 (package
3103 (name "r-gkmsvm")
3104 (version "0.79.0")
3105 (source
3106 (origin
3107 (method url-fetch)
3108 (uri (cran-uri "gkmSVM" version))
3109 (sha256
3110 (base32
3111 "04dakbgfvfalz4rm4fvvybp506dn5fbj5g86ybfhrc6wywjllsz3"))))
3112 (properties `((upstream-name . "gkmSVM")))
3113 (build-system r-build-system)
3114 (propagated-inputs
3115 `(("r-biocgenerics" ,r-biocgenerics)
3116 ("r-biostrings" ,r-biostrings)
3117 ("r-genomeinfodb" ,r-genomeinfodb)
3118 ("r-genomicranges" ,r-genomicranges)
3119 ("r-iranges" ,r-iranges)
3120 ("r-kernlab" ,r-kernlab)
3121 ("r-rcpp" ,r-rcpp)
3122 ("r-rocr" ,r-rocr)
3123 ("r-rtracklayer" ,r-rtracklayer)
3124 ("r-s4vectors" ,r-s4vectors)
3125 ("r-seqinr" ,r-seqinr)))
3126 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
3127 (synopsis "Gapped-kmer support vector machine")
3128 (description
3129 "This R package provides tools for training gapped-kmer SVM classifiers
3130for DNA and protein sequences. This package supports several sequence
3131kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
3132 (license license:gpl2+)))
8a5460b4 3133
f2114762
RW
3134;; This is a CRAN package, but it depends on multtest from Bioconductor.
3135(define-public r-mutoss
3136 (package
3137 (name "r-mutoss")
3138 (version "0.1-12")
3139 (source
3140 (origin
3141 (method url-fetch)
3142 (uri (cran-uri "mutoss" version))
3143 (sha256
3144 (base32
3145 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
3146 (properties `((upstream-name . "mutoss")))
3147 (build-system r-build-system)
3148 (propagated-inputs
3149 `(("r-multcomp" ,r-multcomp)
3150 ("r-multtest" ,r-multtest)
3151 ("r-mvtnorm" ,r-mvtnorm)
3152 ("r-plotrix" ,r-plotrix)))
3153 (home-page "https://github.com/kornl/mutoss/")
3154 (synopsis "Unified multiple testing procedures")
3155 (description
3156 "This package is designed to ease the application and comparison of
3157multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
3158are standardized and usable by the accompanying mutossGUI package.")
3159 ;; Any version of the GPL.
3160 (license (list license:gpl2+ license:gpl3+))))
3161
bf770d92
RW
3162;; This is a CRAN package, but it depends on mutoss, which depends on multtest
3163;; from Bioconductor, so we put it here.
3164(define-public r-metap
3165 (package
3166 (name "r-metap")
3167 (version "1.2")
3168 (source
3169 (origin
3170 (method url-fetch)
3171 (uri (cran-uri "metap" version))
3172 (sha256
3173 (base32
3174 "0pfbcixjrzx81l9wqhlp55khg9k63zf8pvg2n39c19akr4ppzhvf"))))
3175 (build-system r-build-system)
3176 (propagated-inputs
3177 `(("r-lattice" ,r-lattice)
3178 ("r-mutoss" ,r-mutoss)
3179 ("r-rdpack" ,r-rdpack)
3180 ("r-tfisher" ,r-tfisher)))
3181 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3182 (synopsis "Meta-analysis of significance values")
3183 (description
3184 "The canonical way to perform meta-analysis involves using effect sizes.
3185When they are not available this package provides a number of methods for
3186meta-analysis of significance values including the methods of Edgington,
3187Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3188published results; and a routine for graphical display.")
3189 (license license:gpl2)))
3190
8a5460b4
RW
3191(define-public r-triform
3192 (package
3193 (name "r-triform")
a18f325e 3194 (version "1.28.0")
8a5460b4
RW
3195 (source
3196 (origin
3197 (method url-fetch)
3198 (uri (bioconductor-uri "triform" version))
3199 (sha256
3200 (base32
a18f325e 3201 "12qdyrcw2mcawqdw65v0hjaghzlwa10xl6j8458izcrm5k6dlvz9"))))
8a5460b4
RW
3202 (build-system r-build-system)
3203 (propagated-inputs
3204 `(("r-biocgenerics" ,r-biocgenerics)
3205 ("r-iranges" ,r-iranges)
3206 ("r-yaml" ,r-yaml)))
3207 (home-page "https://bioconductor.org/packages/triform/")
3208 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
3209 (description
3210 "The Triform algorithm uses model-free statistics to identify peak-like
3211distributions of TF ChIP sequencing reads, taking advantage of an improved
3212peak definition in combination with known profile characteristics.")
3213 (license license:gpl2)))
c538bcdd
RW
3214
3215(define-public r-varianttools
3216 (package
3217 (name "r-varianttools")
9b72bbf7 3218 (version "1.28.0")
c538bcdd
RW
3219 (source
3220 (origin
3221 (method url-fetch)
3222 (uri (bioconductor-uri "VariantTools" version))
3223 (sha256
3224 (base32
9b72bbf7 3225 "0aafcprsqbn1xl8jqnxfl8r2d0lmzhssqpr26lam2cprh3yk0xiv"))))
c538bcdd
RW
3226 (properties `((upstream-name . "VariantTools")))
3227 (build-system r-build-system)
3228 (propagated-inputs
3229 `(("r-biobase" ,r-biobase)
3230 ("r-biocgenerics" ,r-biocgenerics)
3231 ("r-biocparallel" ,r-biocparallel)
3232 ("r-biostrings" ,r-biostrings)
3233 ("r-bsgenome" ,r-bsgenome)
3234 ("r-genomeinfodb" ,r-genomeinfodb)
3235 ("r-genomicfeatures" ,r-genomicfeatures)
3236 ("r-genomicranges" ,r-genomicranges)
3237 ("r-iranges" ,r-iranges)
3238 ("r-matrix" ,r-matrix)
3239 ("r-rsamtools" ,r-rsamtools)
3240 ("r-rtracklayer" ,r-rtracklayer)
3241 ("r-s4vectors" ,r-s4vectors)
3242 ("r-variantannotation" ,r-variantannotation)))
3243 (home-page "https://bioconductor.org/packages/VariantTools/")
3244 (synopsis "Tools for exploratory analysis of variant calls")
3245 (description
3246 "Explore, diagnose, and compare variant calls using filters. The
3247VariantTools package supports a workflow for loading data, calling single
3248sample variants and tumor-specific somatic mutations or other sample-specific
3249variant types (e.g., RNA editing). Most of the functions operate on
3250alignments (BAM files) or datasets of called variants. The user is expected
3251to have already aligned the reads with a separate tool, e.g., GSNAP via
3252gmapR.")
3253 (license license:artistic2.0)))
3e41919d
RW
3254
3255(define-public r-heatplus
3256 (package
3257 (name "r-heatplus")
9f218627 3258 (version "2.32.0")
3e41919d
RW
3259 (source
3260 (origin
3261 (method url-fetch)
3262 (uri (bioconductor-uri "Heatplus" version))
3263 (sha256
3264 (base32
9f218627 3265 "0hx5gqgh4xrkx37ccprq7azj9jziff137bdk0gvrixcx52ws6h89"))))
3e41919d
RW
3266 (properties `((upstream-name . "Heatplus")))
3267 (build-system r-build-system)
3268 (propagated-inputs
3269 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
3270 (home-page "https://github.com/alexploner/Heatplus")
3271 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
3272 (description
3273 "This package provides tools to display a rectangular heatmap (intensity
3274plot) of a data matrix. By default, both samples (columns) and features (row)
3275of the matrix are sorted according to a hierarchical clustering, and the
3276corresponding dendrogram is plotted. Optionally, panels with additional
3277information about samples and features can be added to the plot.")
3278 (license license:gpl2+)))
c04f230e
RW
3279
3280(define-public r-gosemsim
3281 (package
3282 (name "r-gosemsim")
c245ec3d 3283 (version "2.12.0")
c04f230e
RW
3284 (source
3285 (origin
3286 (method url-fetch)
3287 (uri (bioconductor-uri "GOSemSim" version))
3288 (sha256
3289 (base32
c245ec3d 3290 "0pqnlgdvh5szjhwc1mw1snjgpj9lrsnk44bn164cl3zwvdayccya"))))
c04f230e
RW
3291 (properties `((upstream-name . "GOSemSim")))
3292 (build-system r-build-system)
3293 (propagated-inputs
3294 `(("r-annotationdbi" ,r-annotationdbi)
3295 ("r-go-db" ,r-go-db)
3296 ("r-rcpp" ,r-rcpp)))
3297 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
3298 (synopsis "GO-terms semantic similarity measures")
3299 (description
3300 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
3301quantitative ways to compute similarities between genes and gene groups, and
3302have became important basis for many bioinformatics analysis approaches.
3303GOSemSim is an R package for semantic similarity computation among GO terms,
3304sets of GO terms, gene products and gene clusters.")
3305 (license license:artistic2.0)))
9d0f7942
RW
3306
3307(define-public r-anota
3308 (package
3309 (name "r-anota")
5ed76752 3310 (version "1.34.0")
9d0f7942
RW
3311 (source
3312 (origin
3313 (method url-fetch)
3314 (uri (bioconductor-uri "anota" version))
3315 (sha256
3316 (base32
5ed76752 3317 "1bkavzrxy1bjz0bwapwa9i3ysln7gljgziwd8c05fmg2f46j1z6m"))))
9d0f7942
RW
3318 (build-system r-build-system)
3319 (propagated-inputs
3320 `(("r-multtest" ,r-multtest)
3321 ("r-qvalue" ,r-qvalue)))
3322 (home-page "https://bioconductor.org/packages/anota/")
3323 (synopsis "Analysis of translational activity")
3324 (description
3325 "Genome wide studies of translational control is emerging as a tool to
0cea26bd 3326study various biological conditions. The output from such analysis is both
9d0f7942
RW
3327the mRNA level (e.g. cytosolic mRNA level) and the levl of mRNA actively
3328involved in translation (the actively translating mRNA level) for each mRNA.
3329The standard analysis of such data strives towards identifying differential
3330translational between two or more sample classes - i.e. differences in
3331actively translated mRNA levels that are independent of underlying differences
3332in cytosolic mRNA levels. This package allows for such analysis using partial
3333variances and the random variance model. As 10s of thousands of mRNAs are
4f664004 3334analyzed in parallel the library performs a number of tests to assure that
9d0f7942
RW
3335the data set is suitable for such analysis.")
3336 (license license:gpl3)))
a6d867fe
RW
3337
3338(define-public r-sigpathway
3339 (package
3340 (name "r-sigpathway")
869965df 3341 (version "1.54.0")
a6d867fe
RW
3342 (source
3343 (origin
3344 (method url-fetch)
3345 (uri (bioconductor-uri "sigPathway" version))
3346 (sha256
3347 (base32
869965df 3348 "057qdkbfldpy6hsysk9mrs1vvsqgyl9yx2s6c2f26jz1pardkbqb"))))
a6d867fe
RW
3349 (properties `((upstream-name . "sigPathway")))
3350 (build-system r-build-system)
3351 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
3352 (synopsis "Pathway analysis")
3353 (description
3354 "This package is used to conduct pathway analysis by calculating the NT_k
3355and NE_k statistics in a statistical framework for determining whether a
3356specified group of genes for a pathway has a coordinated association with a
3357phenotype of interest.")
3358 (license license:gpl2)))
af26c7ae
RW
3359
3360(define-public r-fgsea
3361 (package
3362 (name "r-fgsea")
b4e1268c 3363 (version "1.12.0")
af26c7ae
RW
3364 (source
3365 (origin
3366 (method url-fetch)
3367 (uri (bioconductor-uri "fgsea" version))
3368 (sha256
3369 (base32
b4e1268c 3370 "0pbq3g515kcbi4wvfx8m09p01h2f8vwsi1qqsyahxz4r1fasz4c1"))))
af26c7ae
RW
3371 (build-system r-build-system)
3372 (propagated-inputs
ebffd24c
RW
3373 `(("r-bh" ,r-bh)
3374 ("r-biocparallel" ,r-biocparallel)
af26c7ae
RW
3375 ("r-data-table" ,r-data-table)
3376 ("r-fastmatch" ,r-fastmatch)
3377 ("r-ggplot2" ,r-ggplot2)
3378 ("r-gridextra" ,r-gridextra)
3379 ("r-matrix" ,r-matrix)
3380 ("r-rcpp" ,r-rcpp)))
3381 (home-page "https://github.com/ctlab/fgsea/")
3382 (synopsis "Fast gene set enrichment analysis")
3383 (description
3384 "The package implements an algorithm for fast gene set enrichment
3385analysis. Using the fast algorithm allows to make more permutations and get
3386more fine grained p-values, which allows to use accurate stantard approaches
3387to multiple hypothesis correction.")
3388 (license license:expat)))
305050b5
RW
3389
3390(define-public r-dose
3391 (package
3392 (name "r-dose")
166b3c2d 3393 (version "3.12.0")
305050b5
RW
3394 (source
3395 (origin
3396 (method url-fetch)
3397 (uri (bioconductor-uri "DOSE" version))
3398 (sha256
3399 (base32
166b3c2d 3400 "0ss8mr28q0vswxjmhcas0aqag5nl099jbyn5w3ypbbxqwfvf9jj5"))))
305050b5
RW
3401 (properties `((upstream-name . "DOSE")))
3402 (build-system r-build-system)
3403 (propagated-inputs
3404 `(("r-annotationdbi" ,r-annotationdbi)
3405 ("r-biocparallel" ,r-biocparallel)
3406 ("r-do-db" ,r-do-db)
3407 ("r-fgsea" ,r-fgsea)
3408 ("r-ggplot2" ,r-ggplot2)
3409 ("r-gosemsim" ,r-gosemsim)
3410 ("r-qvalue" ,r-qvalue)
3411 ("r-reshape2" ,r-reshape2)
3412 ("r-s4vectors" ,r-s4vectors)))
3413 (home-page "https://guangchuangyu.github.io/software/DOSE/")
3414 (synopsis "Disease ontology semantic and enrichment analysis")
3415 (description
3416 "This package implements five methods proposed by Resnik, Schlicker,
3417Jiang, Lin and Wang, respectively, for measuring semantic similarities among
3418@dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
3419including hypergeometric model and gene set enrichment analysis are also
3420implemented for discovering disease associations of high-throughput biological
3421data.")
3422 (license license:artistic2.0)))
9c30cf65
RW
3423
3424(define-public r-enrichplot
3425 (package
3426 (name "r-enrichplot")
7621bf2d 3427 (version "1.6.1")
9c30cf65
RW
3428 (source
3429 (origin
3430 (method url-fetch)
3431 (uri (bioconductor-uri "enrichplot" version))
3432 (sha256
3433 (base32
7621bf2d 3434 "0707f5ll58psh7pr001cmmk5di7dprnbry1cy2mw20vn8p24nf3x"))))
9c30cf65
RW
3435 (build-system r-build-system)
3436 (propagated-inputs
3437 `(("r-annotationdbi" ,r-annotationdbi)
3438 ("r-cowplot" ,r-cowplot)
3439 ("r-dose" ,r-dose)
3440 ("r-europepmc" ,r-europepmc)
3441 ("r-ggplot2" ,r-ggplot2)
3442 ("r-ggplotify" ,r-ggplotify)
3443 ("r-ggraph" ,r-ggraph)
3444 ("r-ggridges" ,r-ggridges)
3445 ("r-gosemsim" ,r-gosemsim)
3446 ("r-gridextra" ,r-gridextra)
3447 ("r-igraph" ,r-igraph)
3448 ("r-purrr" ,r-purrr)
3449 ("r-rcolorbrewer" ,r-rcolorbrewer)
0654a9bc 3450 ("r-reshape2" ,r-reshape2)))
9c30cf65
RW
3451 (home-page "https://github.com/GuangchuangYu/enrichplot")
3452 (synopsis "Visualization of functional enrichment result")
3453 (description
3454 "The enrichplot package implements several visualization methods for
3455interpreting functional enrichment results obtained from ORA or GSEA analyses.
3456All the visualization methods are developed based on ggplot2 graphics.")
3457 (license license:artistic2.0)))
f8295ee6
RW
3458
3459(define-public r-clusterprofiler
3460 (package
3461 (name "r-clusterprofiler")
0be4d7de 3462 (version "3.14.2")
f8295ee6
RW
3463 (source
3464 (origin
3465 (method url-fetch)
3466 (uri (bioconductor-uri "clusterProfiler" version))
3467 (sha256
3468 (base32
0be4d7de 3469 "1y1l3yf1r1ykl9ngipvyzl5hbxxsfz7z5q5rcywkyss2b2b6gsg8"))))
f8295ee6
RW
3470 (properties
3471 `((upstream-name . "clusterProfiler")))
3472 (build-system r-build-system)
3473 (propagated-inputs
3474 `(("r-annotationdbi" ,r-annotationdbi)
3475 ("r-dose" ,r-dose)
3476 ("r-enrichplot" ,r-enrichplot)
3477 ("r-ggplot2" ,r-ggplot2)
3478 ("r-go-db" ,r-go-db)
3479 ("r-gosemsim" ,r-gosemsim)
3480 ("r-magrittr" ,r-magrittr)
3481 ("r-plyr" ,r-plyr)
3482 ("r-qvalue" ,r-qvalue)
3483 ("r-rvcheck" ,r-rvcheck)
3484 ("r-tidyr" ,r-tidyr)))
3485 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
3486 (synopsis "Analysis and visualization of functional profiles for gene clusters")
3487 (description
3488 "This package implements methods to analyze and visualize functional
3489profiles (GO and KEGG) of gene and gene clusters.")
3490 (license license:artistic2.0)))
ce77562a
RW
3491
3492(define-public r-mlinterfaces
3493 (package
3494 (name "r-mlinterfaces")
6374984a 3495 (version "1.66.0")
ce77562a
RW
3496 (source
3497 (origin
3498 (method url-fetch)
3499 (uri (bioconductor-uri "MLInterfaces" version))
3500 (sha256
3501 (base32
6374984a 3502 "1vnzqd3y3jk1wgxybckzrcgwk0ly7zgcz5ki1ib0bk1jwv6xk5x8"))))
ce77562a
RW
3503 (properties `((upstream-name . "MLInterfaces")))
3504 (build-system r-build-system)
3505 (propagated-inputs
3506 `(("r-annotate" ,r-annotate)
3507 ("r-biobase" ,r-biobase)
3508 ("r-biocgenerics" ,r-biocgenerics)
3509 ("r-cluster" ,r-cluster)
3510 ("r-fpc" ,r-fpc)
3511 ("r-gbm" ,r-gbm)
3512 ("r-gdata" ,r-gdata)
3513 ("r-genefilter" ,r-genefilter)
3514 ("r-ggvis" ,r-ggvis)
3515 ("r-hwriter" ,r-hwriter)
3516 ("r-mass" ,r-mass)
3517 ("r-mlbench" ,r-mlbench)
3518 ("r-pls" ,r-pls)
3519 ("r-rcolorbrewer" ,r-rcolorbrewer)
3520 ("r-rda" ,r-rda)
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")
643aaf7e 5167 (version "1.18.0")
a9fac3f4
RW
5168 (source
5169 (origin
5170 (method url-fetch)
5171 (uri (bioconductor-uri "ropls" version))
5172 (sha256
5173 (base32
643aaf7e 5174 "05w1zrq92w3jfwq5sdyj27m5qjg4zv7acywia8vd6y5fbgcnyzlp"))))
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")
5589 (version "3.34.0")
5590 (source
5591 (origin
5592 (method url-fetch)
5593 (uri (bioconductor-uri "flowWorkspace" version))
5594 (sha256
5595 (base32
5596 "0hvbkxyylsygra31l1lxyvbsr5hc50lqy1y7gwrfgrfil4a2m762"))))
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)))