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