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