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