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