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