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