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