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