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