868828aaecaaf8c7ee328525f4bf0d5bb0e4da06
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017, 2018, 2020, 2021 Roel Janssen <roel@gnu.org>
4 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
5 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
6 ;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
7 ;;; Copyright © 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
8 ;;; Copyright © 2019, 2020, 2021 Simon Tournier <zimon.toutoune@gmail.com>
9 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
10 ;;; Copyright © 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
11 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
12 ;;; Copyright © 2021 Hong Li <hli@mdc-berlin.de>
13 ;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
14 ;;;
15 ;;; This file is part of GNU Guix.
16 ;;;
17 ;;; GNU Guix is free software; you can redistribute it and/or modify it
18 ;;; under the terms of the GNU General Public License as published by
19 ;;; the Free Software Foundation; either version 3 of the License, or (at
20 ;;; your option) any later version.
21 ;;;
22 ;;; GNU Guix is distributed in the hope that it will be useful, but
23 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;;; GNU General Public License for more details.
26 ;;;
27 ;;; You should have received a copy of the GNU General Public License
28 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
29
30 (define-module (gnu packages bioconductor)
31 #:use-module ((guix licenses) #:prefix license:)
32 #:use-module (guix packages)
33 #:use-module (guix download)
34 #:use-module (guix git-download)
35 #:use-module (guix build-system r)
36 #:use-module (gnu packages)
37 #:use-module (gnu packages base)
38 #:use-module (gnu packages bioinformatics)
39 #:use-module (gnu packages boost)
40 #:use-module (gnu packages cran)
41 #:use-module (gnu packages compression)
42 #:use-module (gnu packages curl)
43 #:use-module (gnu packages gcc)
44 #:use-module (gnu packages graph)
45 #:use-module (gnu packages graphviz)
46 #:use-module (gnu packages haskell-xyz)
47 #:use-module (gnu packages image)
48 #:use-module (gnu packages maths)
49 #:use-module (gnu packages netpbm)
50 #:use-module (gnu packages perl)
51 #:use-module (gnu packages pkg-config)
52 #:use-module (gnu packages statistics)
53 #:use-module (gnu packages web)
54 #:use-module (gnu packages xml)
55 #:use-module (srfi srfi-1))
56
57 \f
58 ;;; Annotations
59
60 (define-public r-org-eck12-eg-db
61 (package
62 (name "r-org-eck12-eg-db")
63 (version "3.12.0")
64 (source
65 (origin
66 (method url-fetch)
67 (uri (bioconductor-uri "org.EcK12.eg.db" version 'annotation))
68 (sha256
69 (base32 "0c4p6jr83k0gm6pvn760yr8xf33wggrfcr6fg7a42a96bcf817gs"))))
70 (properties
71 `((upstream-name . "org.EcK12.eg.db")))
72 (build-system r-build-system)
73 (propagated-inputs
74 `(("r-annotationdbi" ,r-annotationdbi)))
75 (home-page "https://bioconductor.org/packages/org.EcK12.eg.db")
76 (synopsis "Genome wide annotation for E coli strain K12")
77 (description
78 "This package provides genome wide annotation for E coli strain K12,
79 primarily based on mapping using Entrez Gene identifiers. Entrez Gene is
80 National Center for Biotechnology Information (NCBI)’s database for
81 gene-specific information. Entrez Gene maintains records from genomes which
82 have been completely sequenced, which have an active research community to
83 submit gene-specific information, or which are scheduled for intense sequence
84 analysis.")
85 (license license:artistic2.0)))
86
87 (define-public r-reactome-db
88 (package
89 (name "r-reactome-db")
90 (version "1.70.0")
91 (source
92 (origin
93 (method url-fetch)
94 (uri (bioconductor-uri "reactome.db" version 'annotation))
95 (sha256
96 (base32
97 "05wc4fp0faq6h3kq5rwafnips043as31yq11mrjngfxvf5i10srg"))))
98 (properties `((upstream-name . "reactome.db")))
99 (build-system r-build-system)
100 (propagated-inputs
101 `(("r-annotationdbi" ,r-annotationdbi)))
102 (home-page "https://bioconductor.org/packages/reactome.db/")
103 (synopsis "Annotation maps for reactome")
104 (description
105 "This package provides a set of annotation maps for the REACTOME
106 database, assembled using data from REACTOME.")
107 (license license:cc-by4.0)))
108
109 (define-public r-bsgenome-btaurus-ucsc-bostau8
110 (package
111 (name "r-bsgenome-btaurus-ucsc-bostau8")
112 (version "1.4.2")
113 (source (origin
114 (method url-fetch)
115 (uri (bioconductor-uri "BSgenome.Btaurus.UCSC.bosTau8"
116 version 'annotation))
117 (sha256
118 (base32
119 "16wjy1aw9nvx03r7w8yh5w7sw3pn8i9nczd0n0728l6nnyqxlsz6"))))
120 (properties
121 `((upstream-name . "BSgenome.Btaurus.UCSC.bosTau8")))
122 (build-system r-build-system)
123 (propagated-inputs
124 `(("r-bsgenome" ,r-bsgenome)))
125 (home-page
126 "https://www.bioconductor.org/packages/BSgenome.Btaurus.UCSC.bosTau8/")
127 (synopsis "Full genome sequences for Bos taurus (UCSC version bosTau8)")
128 (description "This package provides the full genome sequences for Bos
129 taurus (UCSC version bosTau8).")
130 (license license:artistic2.0)))
131
132 (define-public r-bsgenome-celegans-ucsc-ce6
133 (package
134 (name "r-bsgenome-celegans-ucsc-ce6")
135 (version "1.4.0")
136 (source (origin
137 (method url-fetch)
138 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
139 version 'annotation))
140 (sha256
141 (base32
142 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
143 (properties
144 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
145 (build-system r-build-system)
146 (propagated-inputs
147 `(("r-bsgenome" ,r-bsgenome)))
148 (home-page
149 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
150 (synopsis "Full genome sequences for Worm")
151 (description
152 "This package provides full genome sequences for Caenorhabditis
153 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
154 objects.")
155 (license license:artistic2.0)))
156
157 (define-public r-bsgenome-celegans-ucsc-ce10
158 (package
159 (name "r-bsgenome-celegans-ucsc-ce10")
160 (version "1.4.0")
161 (source (origin
162 (method url-fetch)
163 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
164 version 'annotation))
165 (sha256
166 (base32
167 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
168 (properties
169 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
170 (build-system r-build-system)
171 (propagated-inputs
172 `(("r-bsgenome" ,r-bsgenome)))
173 (home-page
174 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
175 (synopsis "Full genome sequences for Worm")
176 (description
177 "This package provides full genome sequences for Caenorhabditis
178 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
179 objects.")
180 (license license:artistic2.0)))
181
182 (define-public r-bsgenome-dmelanogaster-ucsc-dm6
183 (package
184 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
185 (version "1.4.1")
186 (source (origin
187 (method url-fetch)
188 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
189 version 'annotation))
190 (sha256
191 (base32
192 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
193 (properties
194 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
195 (build-system r-build-system)
196 (propagated-inputs
197 `(("r-bsgenome" ,r-bsgenome)))
198 (home-page
199 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
200 (synopsis "Full genome sequences for Fly")
201 (description
202 "This package provides full genome sequences for Drosophila
203 melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
204 objects.")
205 (license license:artistic2.0)))
206
207 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
208 (package
209 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
210 (version "1.4.0")
211 (source (origin
212 (method url-fetch)
213 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
214 version 'annotation))
215 (sha256
216 (base32
217 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
218 (properties
219 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
220 (build-system r-build-system)
221 (propagated-inputs
222 `(("r-bsgenome" ,r-bsgenome)))
223 (home-page
224 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
225 (synopsis "Full genome sequences for Fly")
226 (description
227 "This package provides full genome sequences for Drosophila
228 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
229 Biostrings objects.")
230 (license license:artistic2.0)))
231
232 (define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
233 (package
234 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
235 (version "1.3.99")
236 (source (origin
237 (method url-fetch)
238 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
239 version 'annotation))
240 (sha256
241 (base32
242 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
243 (properties
244 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
245 (build-system r-build-system)
246 (propagated-inputs
247 `(("r-bsgenome" ,r-bsgenome)
248 ("r-bsgenome-dmelanogaster-ucsc-dm3"
249 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
250 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
251 (synopsis "Full masked genome sequences for Fly")
252 (description
253 "This package provides full masked genome sequences for Drosophila
254 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
255 Biostrings objects. The sequences are the same as in
256 BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
257 masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
258 intra-contig ambiguities (AMB mask), (3) the mask of repeats from
259 RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
260 Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
261 (license license:artistic2.0)))
262
263 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
264 (package
265 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
266 (version "0.99.1")
267 (source (origin
268 (method url-fetch)
269 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
270 version 'annotation))
271 (sha256
272 (base32
273 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
274 (properties
275 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
276 (build-system r-build-system)
277 (propagated-inputs
278 `(("r-bsgenome" ,r-bsgenome)))
279 (home-page
280 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
281 (synopsis "Full genome sequences for Homo sapiens")
282 (description
283 "This package provides full genome sequences for Homo sapiens from
284 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
285 (license license:artistic2.0)))
286
287 (define-public r-bsgenome-hsapiens-ncbi-grch38
288 (package
289 (name "r-bsgenome-hsapiens-ncbi-grch38")
290 (version "1.3.1000")
291 (source
292 (origin
293 (method url-fetch)
294 (uri (bioconductor-uri "BSgenome.Hsapiens.NCBI.GRCh38"
295 version 'annotation))
296 (sha256
297 (base32
298 "0y75qdq578fh6420vbvsbwmdw8jvr3g06qli2h3vj3pxmjykh9c1"))))
299 (properties `((upstream-name . "BSgenome.Hsapiens.NCBI.GRCh38")))
300 (build-system r-build-system)
301 (propagated-inputs `(("r-bsgenome" ,r-bsgenome)))
302 (home-page
303 "https://bioconductor.org/packages/release/data/annotation/html/\
304 BSgenome.Hsapiens.NCBI.GRCh38.html")
305 (synopsis "Full genome sequences for Homo sapiens (GRCh38)")
306 (description
307 "This package provides full genome sequences for Homo sapiens (Human) as
308 provided by NCBI (GRCh38, 2013-12-17) and stored in Biostrings objects.")
309 (license license:artistic2.0)))
310
311 (define-public r-bsgenome-hsapiens-ucsc-hg19-masked
312 (package
313 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
314 (version "1.3.99")
315 (source (origin
316 (method url-fetch)
317 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
318 version 'annotation))
319 (sha256
320 (base32
321 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
322 (properties
323 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
324 (build-system r-build-system)
325 (propagated-inputs
326 `(("r-bsgenome" ,r-bsgenome)
327 ("r-bsgenome-hsapiens-ucsc-hg19"
328 ,r-bsgenome-hsapiens-ucsc-hg19)))
329 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
330 (synopsis "Full masked genome sequences for Homo sapiens")
331 (description
332 "This package provides full genome sequences for Homo sapiens (Human) as
333 provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
334 sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
335 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
336 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
337 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
338 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
339 default.")
340 (license license:artistic2.0)))
341
342 (define-public r-bsgenome-mmusculus-ucsc-mm9
343 (package
344 (name "r-bsgenome-mmusculus-ucsc-mm9")
345 (version "1.4.0")
346 (source (origin
347 (method url-fetch)
348 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
349 version 'annotation))
350 (sha256
351 (base32
352 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
353 (properties
354 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
355 (build-system r-build-system)
356 (propagated-inputs
357 `(("r-bsgenome" ,r-bsgenome)))
358 (home-page
359 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
360 (synopsis "Full genome sequences for Mouse")
361 (description
362 "This package provides full genome sequences for Mus musculus (Mouse) as
363 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
364 (license license:artistic2.0)))
365
366 (define-public r-bsgenome-mmusculus-ucsc-mm9-masked
367 (package
368 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
369 (version "1.3.99")
370 (source (origin
371 (method url-fetch)
372 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
373 version 'annotation))
374 (sha256
375 (base32
376 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
377 (properties
378 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
379 (build-system r-build-system)
380 (propagated-inputs
381 `(("r-bsgenome" ,r-bsgenome)
382 ("r-bsgenome-mmusculus-ucsc-mm9"
383 ,r-bsgenome-mmusculus-ucsc-mm9)))
384 (home-page "https://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
385 (synopsis "Full masked genome sequences for Mouse")
386 (description
387 "This package provides full genome sequences for Mus musculus (Mouse) as
388 provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
389 sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
390 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
391 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
392 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
393 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
394 default." )
395 (license license:artistic2.0)))
396
397 (define-public r-bsgenome-mmusculus-ucsc-mm10
398 (package
399 (name "r-bsgenome-mmusculus-ucsc-mm10")
400 (version "1.4.0")
401 (source (origin
402 (method url-fetch)
403 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
404 version 'annotation))
405 (sha256
406 (base32
407 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
408 (properties
409 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
410 (build-system r-build-system)
411 (propagated-inputs
412 `(("r-bsgenome" ,r-bsgenome)))
413 (home-page
414 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
415 (synopsis "Full genome sequences for Mouse")
416 (description
417 "This package provides full genome sequences for Mus
418 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
419 in Biostrings objects.")
420 (license license:artistic2.0)))
421
422 (define-public r-genomeinfodbdata
423 (package
424 (name "r-genomeinfodbdata")
425 (version "1.2.0")
426 (source (origin
427 (method url-fetch)
428 (uri (bioconductor-uri "GenomeInfoDbData" version 'annotation))
429 (sha256
430 (base32
431 "0di6nlqpsyqf693k2na65ayqldih563x3zfrczpqc5q2hl5kg35c"))))
432 (properties
433 `((upstream-name . "GenomeInfoDbData")))
434 (build-system r-build-system)
435 (home-page "https://bioconductor.org/packages/GenomeInfoDbData")
436 (synopsis "Species and taxonomy ID look up tables for GenomeInfoDb")
437 (description "This package contains data for mapping between NCBI taxonomy
438 ID and species. It is used by functions in the GenomeInfoDb package.")
439 (license license:artistic2.0)))
440
441 (define-public r-go-db
442 (package
443 (name "r-go-db")
444 (version "3.7.0")
445 (source (origin
446 (method url-fetch)
447 (uri (bioconductor-uri "GO.db" version 'annotation))
448 (sha256
449 (base32
450 "0i3wcf5h3n0dawzc1hy0kv74f06j80c47n4p3g3fmrcxlhi3jpa5"))))
451 (properties
452 `((upstream-name . "GO.db")))
453 (build-system r-build-system)
454 (propagated-inputs
455 `(("r-annotationdbi" ,r-annotationdbi)))
456 (home-page "https://bioconductor.org/packages/GO.db")
457 (synopsis "Annotation maps describing the entire Gene Ontology")
458 (description
459 "The purpose of this GO.db annotation package is to provide detailed
460 information about the latest version of the Gene Ontologies.")
461 (license license:artistic2.0)))
462
463 (define-public r-homo-sapiens
464 (package
465 (name "r-homo-sapiens")
466 (version "1.3.1")
467 (source (origin
468 (method url-fetch)
469 (uri (bioconductor-uri "Homo.sapiens" version 'annotation))
470 (sha256
471 (base32
472 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
473 (properties
474 `((upstream-name . "Homo.sapiens")))
475 (build-system r-build-system)
476 (propagated-inputs
477 `(("r-genomicfeatures" ,r-genomicfeatures)
478 ("r-go-db" ,r-go-db)
479 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
480 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
481 ("r-organismdbi" ,r-organismdbi)
482 ("r-annotationdbi" ,r-annotationdbi)))
483 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
484 (synopsis "Annotation package for the Homo.sapiens object")
485 (description
486 "This package contains the Homo.sapiens object to access data from
487 several related annotation packages.")
488 (license license:artistic2.0)))
489
490 (define-public r-org-ce-eg-db
491 (package
492 (name "r-org-ce-eg-db")
493 (version "3.7.0")
494 (source (origin
495 (method url-fetch)
496 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
497 (sha256
498 (base32
499 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
500 (properties
501 `((upstream-name . "org.Ce.eg.db")))
502 (build-system r-build-system)
503 (propagated-inputs
504 `(("r-annotationdbi" ,r-annotationdbi)))
505 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
506 (synopsis "Genome wide annotation for Worm")
507 (description
508 "This package provides mappings from Entrez gene identifiers to various
509 annotations for the genome of the model worm Caenorhabditis elegans.")
510 (license license:artistic2.0)))
511
512 (define-public r-org-dm-eg-db
513 (package
514 (name "r-org-dm-eg-db")
515 (version "3.7.0")
516 (source (origin
517 (method url-fetch)
518 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
519 (sha256
520 (base32
521 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
522 (properties
523 `((upstream-name . "org.Dm.eg.db")))
524 (build-system r-build-system)
525 (propagated-inputs
526 `(("r-annotationdbi" ,r-annotationdbi)))
527 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
528 (synopsis "Genome wide annotation for Fly")
529 (description
530 "This package provides mappings from Entrez gene identifiers to various
531 annotations for the genome of the model fruit fly Drosophila melanogaster.")
532 (license license:artistic2.0)))
533
534 (define-public r-org-dr-eg-db
535 (package
536 (name "r-org-dr-eg-db")
537 (version "3.7.0")
538 (source (origin
539 (method url-fetch)
540 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
541 (sha256
542 (base32
543 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
544 (properties
545 `((upstream-name . "org.Dr.eg.db")))
546 (build-system r-build-system)
547 (propagated-inputs
548 `(("r-annotationdbi" ,r-annotationdbi)))
549 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
550 (synopsis "Annotation for Zebrafish")
551 (description
552 "This package provides genome wide annotations for Zebrafish, primarily
553 based on mapping using Entrez Gene identifiers.")
554 (license license:artistic2.0)))
555
556 (define-public r-org-hs-eg-db
557 (package
558 (name "r-org-hs-eg-db")
559 (version "3.7.0")
560 (source (origin
561 (method url-fetch)
562 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
563 (sha256
564 (base32
565 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
566 (properties
567 `((upstream-name . "org.Hs.eg.db")))
568 (build-system r-build-system)
569 (propagated-inputs
570 `(("r-annotationdbi" ,r-annotationdbi)))
571 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
572 (synopsis "Genome wide annotation for Human")
573 (description
574 "This package contains genome-wide annotations for Human, primarily based
575 on mapping using Entrez Gene identifiers.")
576 (license license:artistic2.0)))
577
578 (define-public r-org-mm-eg-db
579 (package
580 (name "r-org-mm-eg-db")
581 (version "3.7.0")
582 (source (origin
583 (method url-fetch)
584 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
585 (sha256
586 (base32
587 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
588 (properties
589 `((upstream-name . "org.Mm.eg.db")))
590 (build-system r-build-system)
591 (propagated-inputs
592 `(("r-annotationdbi" ,r-annotationdbi)))
593 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
594 (synopsis "Genome wide annotation for Mouse")
595 (description
596 "This package provides mappings from Entrez gene identifiers to various
597 annotations for the genome of the model mouse Mus musculus.")
598 (license license:artistic2.0)))
599
600 (define-public r-bsgenome-hsapiens-ucsc-hg19
601 (package
602 (name "r-bsgenome-hsapiens-ucsc-hg19")
603 (version "1.4.0")
604 (source (origin
605 (method url-fetch)
606 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
607 version 'annotation))
608 (sha256
609 (base32
610 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
611 (properties
612 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
613 (build-system r-build-system)
614 (propagated-inputs
615 `(("r-bsgenome" ,r-bsgenome)))
616 (home-page
617 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
618 (synopsis "Full genome sequences for Homo sapiens")
619 (description
620 "This package provides full genome sequences for Homo sapiens as provided
621 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
622 (license license:artistic2.0)))
623
624 (define-public r-bsgenome-hsapiens-ucsc-hg38
625 (package
626 (name "r-bsgenome-hsapiens-ucsc-hg38")
627 (version "1.4.1")
628 (source (origin
629 (method url-fetch)
630 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg38"
631 version 'annotation))
632 (sha256
633 (base32
634 "1ql08pvi4vv0ynvg4qs9kysw1c7s3crkgin6zxvgzqk6fray9mvi"))))
635 (properties
636 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg38")))
637 (build-system r-build-system)
638 (propagated-inputs
639 `(("r-bsgenome" ,r-bsgenome)))
640 (home-page
641 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg38/")
642 (synopsis "Full genome sequences for Homo sapiens")
643 (description
644 "This package provides full genome sequences for Homo sapiens (Human)
645 as provided by UCSC (hg38, Dec. 2013) and stored in Biostrings objects.")
646 (license license:artistic2.0)))
647
648 (define-public r-ensdb-hsapiens-v75
649 (package
650 (name "r-ensdb-hsapiens-v75")
651 (version "2.99.0")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
656 (sha256
657 (base32
658 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
659 (properties
660 `((upstream-name . "EnsDb.Hsapiens.v75")))
661 (build-system r-build-system)
662 (propagated-inputs
663 `(("r-ensembldb" ,r-ensembldb)))
664 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
665 (synopsis "Ensembl based annotation package")
666 (description
667 "This package exposes an annotation database generated from Ensembl.")
668 (license license:artistic2.0)))
669
670 (define-public r-txdb-dmelanogaster-ucsc-dm6-ensgene
671 (package
672 (name "r-txdb-dmelanogaster-ucsc-dm6-ensgene")
673 (version "3.12.0")
674 (source
675 (origin
676 (method url-fetch)
677 (uri (bioconductor-uri "TxDb.Dmelanogaster.UCSC.dm6.ensGene"
678 version 'annotation))
679 (sha256
680 (base32
681 "0yij7zyqkmmr13389rs2gfa5anvvw648nnl1kjbsgvyxkggif8q4"))))
682 (properties
683 `((upstream-name . "TxDb.Dmelanogaster.UCSC.dm6.ensGene")))
684 (build-system r-build-system)
685 (propagated-inputs
686 `(("r-annotationdbi" ,r-annotationdbi)
687 ("r-genomicfeatures" ,r-genomicfeatures)))
688 (home-page
689 "https://bioconductor.org/packages/TxDb.Dmelanogaster.UCSC.dm6.ensGene")
690 (synopsis "Annotation package for TxDb object(s)")
691 (description
692 "This package exposes an annotation databases generated from UCSC by
693 exposing these as TxDb objects.")
694 (license license:artistic2.0)))
695
696 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
697 (package
698 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
699 (version "3.2.2")
700 (source (origin
701 (method url-fetch)
702 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
703 version 'annotation))
704 (sha256
705 (base32
706 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
707 (properties
708 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
709 (build-system r-build-system)
710 (propagated-inputs
711 `(("r-genomicfeatures" ,r-genomicfeatures)))
712 (home-page
713 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
714 (synopsis "Annotation package for human genome in TxDb format")
715 (description
716 "This package provides an annotation database of Homo sapiens genome
717 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
718 track. The database is exposed as a @code{TxDb} object.")
719 (license license:artistic2.0)))
720
721 (define-public r-txdb-hsapiens-ucsc-hg38-knowngene
722 (package
723 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
724 (version "3.4.6")
725 (source (origin
726 (method url-fetch)
727 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
728 version 'annotation))
729 (sha256
730 (base32
731 "12j7rri9r129v9w1yiqadg952dx462dh092sxif3r5kk8l7bxkn9"))))
732 (properties
733 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
734 (build-system r-build-system)
735 (propagated-inputs
736 `(("r-genomicfeatures" ,r-genomicfeatures)))
737 (home-page
738 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
739 (synopsis "Annotation package for human genome in TxDb format")
740 (description
741 "This package provides an annotation database of Homo sapiens genome
742 data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
743 track. The database is exposed as a @code{TxDb} object.")
744 (license license:artistic2.0)))
745
746 (define-public r-txdb-mmusculus-ucsc-mm9-knowngene
747 (package
748 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
749 (version "3.2.2")
750 (source (origin
751 (method url-fetch)
752 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
753 version 'annotation))
754 (sha256
755 (base32
756 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
757 (properties
758 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
759 (build-system r-build-system)
760 (propagated-inputs
761 `(("r-genomicfeatures" ,r-genomicfeatures)
762 ("r-annotationdbi" ,r-annotationdbi)))
763 (home-page
764 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
765 (synopsis "Annotation package for mouse genome in TxDb format")
766 (description
767 "This package provides an annotation database of Mouse genome data. It
768 is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
769 database is exposed as a @code{TxDb} object.")
770 (license license:artistic2.0)))
771
772 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
773 (package
774 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
775 (version "3.10.0")
776 (source (origin
777 (method url-fetch)
778 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
779 version 'annotation))
780 (sha256
781 (base32
782 "0xs9npnhbwll7p62hibs02y4ac23jchdcr25i6a7qwq1kms82qk9"))))
783 (properties
784 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
785 (build-system r-build-system)
786 (propagated-inputs
787 `(("r-bsgenome" ,r-bsgenome)
788 ("r-genomicfeatures" ,r-genomicfeatures)
789 ("r-annotationdbi" ,r-annotationdbi)))
790 (home-page
791 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
792 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
793 (description
794 "This package loads a TxDb object, which is an R interface to
795 prefabricated databases contained in this package. This package provides
796 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
797 based on the knownGene track.")
798 (license license:artistic2.0)))
799
800 (define-public r-txdb-celegans-ucsc-ce6-ensgene
801 (package
802 (name "r-txdb-celegans-ucsc-ce6-ensgene")
803 (version "3.2.2")
804 (source
805 (origin
806 (method url-fetch)
807 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
808 version 'annotation))
809 (sha256
810 (base32
811 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
812 (properties
813 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
814 (build-system r-build-system)
815 (propagated-inputs
816 `(("r-annotationdbi" ,r-annotationdbi)
817 ("r-genomicfeatures" ,r-genomicfeatures)))
818 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
819 (synopsis "Annotation package for C elegans TxDb objects")
820 (description
821 "This package exposes a C elegans annotation database generated from UCSC
822 by exposing these as TxDb objects.")
823 (license license:artistic2.0)))
824
825 (define-public r-fdb-infiniummethylation-hg19
826 (package
827 (name "r-fdb-infiniummethylation-hg19")
828 (version "2.2.0")
829 (source (origin
830 (method url-fetch)
831 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
832 version 'annotation))
833 (sha256
834 (base32
835 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
836 (properties
837 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
838 (build-system r-build-system)
839 (propagated-inputs
840 `(("r-biostrings" ,r-biostrings)
841 ("r-genomicfeatures" ,r-genomicfeatures)
842 ("r-annotationdbi" ,r-annotationdbi)
843 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
844 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
845 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
846 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
847 (description
848 "This is an annotation package for Illumina Infinium DNA methylation
849 probes. It contains the compiled HumanMethylation27 and HumanMethylation450
850 annotations.")
851 (license license:artistic2.0)))
852
853 (define-public r-illuminahumanmethylationepicmanifest
854 (package
855 (name "r-illuminahumanmethylationepicmanifest")
856 (version "0.3.0")
857 (source (origin
858 (method url-fetch)
859 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
860 version 'annotation))
861 (sha256
862 (base32
863 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
864 (properties
865 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
866 (build-system r-build-system)
867 (propagated-inputs
868 `(("r-minfi" ,r-minfi)))
869 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
870 (synopsis "Manifest for Illumina's EPIC methylation arrays")
871 (description
872 "This is a manifest package for Illumina's EPIC methylation arrays.")
873 (license license:artistic2.0)))
874
875 (define-public r-do-db
876 (package
877 (name "r-do-db")
878 (version "2.9")
879 (source (origin
880 (method url-fetch)
881 (uri (bioconductor-uri "DO.db" version 'annotation))
882 (sha256
883 (base32
884 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
885 (properties
886 `((upstream-name . "DO.db")))
887 (build-system r-build-system)
888 (propagated-inputs
889 `(("r-annotationdbi" ,r-annotationdbi)))
890 (home-page "https://www.bioconductor.org/packages/DO.db/")
891 (synopsis "Annotation maps describing the entire Disease Ontology")
892 (description
893 "This package provides a set of annotation maps describing the entire
894 Disease Ontology.")
895 (license license:artistic2.0)))
896
897 (define-public r-pfam-db
898 (package
899 (name "r-pfam-db")
900 (version "3.8.2")
901 (source
902 (origin
903 (method url-fetch)
904 (uri (bioconductor-uri "PFAM.db" version 'annotation))
905 (sha256
906 (base32
907 "0rn1arzzcniy3yyc4yc44vn40g0cqss37dhwnvsgxpfayqq1k59s"))))
908 (properties `((upstream-name . "PFAM.db")))
909 (build-system r-build-system)
910 (propagated-inputs
911 `(("r-annotationdbi" ,r-annotationdbi)))
912 (home-page "https://bioconductor.org/packages/PFAM.db")
913 (synopsis "Set of protein ID mappings for PFAM")
914 (description
915 "This package provides a set of protein ID mappings for PFAM, assembled
916 using data from public repositories.")
917 (license license:artistic2.0)))
918
919 (define-public r-phastcons100way-ucsc-hg19
920 (package
921 (name "r-phastcons100way-ucsc-hg19")
922 (version "3.7.2")
923 (source
924 (origin
925 (method url-fetch)
926 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
927 version 'annotation))
928 (sha256
929 (base32
930 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
931 (properties
932 `((upstream-name . "phastCons100way.UCSC.hg19")))
933 (build-system r-build-system)
934 (propagated-inputs
935 `(("r-bsgenome" ,r-bsgenome)
936 ("r-genomeinfodb" ,r-genomeinfodb)
937 ("r-genomicranges" ,r-genomicranges)
938 ("r-genomicscores" ,r-genomicscores)
939 ("r-iranges" ,r-iranges)
940 ("r-s4vectors" ,r-s4vectors)))
941 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
942 (synopsis "UCSC phastCons conservation scores for hg19")
943 (description
944 "This package provides UCSC phastCons conservation scores for the human
945 genome (hg19) calculated from multiple alignments with other 99 vertebrate
946 species.")
947 (license license:artistic2.0)))
948
949 \f
950 ;;; Experiment data
951
952 (define-public r-abadata
953 (package
954 (name "r-abadata")
955 (version "1.12.0")
956 (source (origin
957 (method url-fetch)
958 (uri (bioconductor-uri "ABAData" version 'experiment))
959 (sha256
960 (base32
961 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
962 (properties
963 `((upstream-name . "ABAData")))
964 (build-system r-build-system)
965 (propagated-inputs
966 `(("r-annotationdbi" ,r-annotationdbi)))
967 (home-page "https://www.bioconductor.org/packages/ABAData/")
968 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
969 (description
970 "This package provides the data for the gene expression enrichment
971 analysis conducted in the package ABAEnrichment. The package includes three
972 datasets which are derived from the Allen Brain Atlas:
973
974 @enumerate
975 @item Gene expression data from Human Brain (adults) averaged across donors,
976 @item Gene expression data from the Developing Human Brain pooled into five
977 age categories and averaged across donors, and
978 @item a developmental effect score based on the Developing Human Brain
979 expression data.
980 @end enumerate
981
982 All datasets are restricted to protein coding genes.")
983 (license license:gpl2+)))
984
985 (define-public r-aneufinderdata
986 (package
987 (name "r-aneufinderdata")
988 (version "1.18.0")
989 (source (origin
990 (method url-fetch)
991 (uri (bioconductor-uri "AneuFinderData" version 'experiment))
992 (sha256
993 (base32
994 "02vb3kmza5hv8bc424fdmfif608xvpdb759w8882kac8izpv29ks"))))
995 (build-system r-build-system)
996 (home-page "https://bioconductor.org/packages/AneuFinderData/")
997 (synopsis "Data package for @code{AneuFinder}")
998 (description "This package contains data used by @code{AneuFinder}.")
999 (license license:artistic2.0)))
1000
1001 (define-public r-aneufinder
1002 (package
1003 (name "r-aneufinder")
1004 (version "1.20.0")
1005 (source (origin
1006 (method url-fetch)
1007 (uri (bioconductor-uri "AneuFinder" version))
1008 (sha256
1009 (base32
1010 "0m6wphlriq7y21ih1p2kzml5jzcic79jc52kkk59dkjj8j88yllk"))))
1011 (build-system r-build-system)
1012 (native-inputs
1013 `(("r-knitr" ,r-knitr)))
1014 (propagated-inputs
1015 `(("r-genomicranges" ,r-genomicranges)
1016 ("r-aneufinderdata" ,r-aneufinderdata)
1017 ("r-ecp" ,r-ecp)
1018 ("r-foreach" ,r-foreach)
1019 ("r-doparallel" ,r-doparallel)
1020 ("r-biocgenerics" ,r-biocgenerics)
1021 ("r-s4vectors" ,r-s4vectors)
1022 ("r-genomeinfodb" ,r-genomeinfodb)
1023 ("r-iranges" ,r-iranges)
1024 ("r-rsamtools" ,r-rsamtools)
1025 ("r-bamsignals" ,r-bamsignals)
1026 ("r-dnacopy" ,r-dnacopy)
1027 ("r-biostrings" ,r-biostrings)
1028 ("r-genomicalignments" ,r-genomicalignments)
1029 ("r-ggplot2" ,r-ggplot2)
1030 ("r-reshape2" ,r-reshape2)
1031 ("r-ggdendro" ,r-ggdendro)
1032 ("r-ggrepel" ,r-ggrepel)
1033 ("r-reordercluster" ,r-reordercluster)
1034 ("r-mclust" ,r-mclust)
1035 ("r-cowplot" ,r-cowplot)))
1036 (home-page "https://bioconductor.org/packages/AneuFinder/")
1037 (synopsis "Copy number variation analysis in single-cell-sequencing data")
1038 (description "This package implements functions for copy number variant
1039 calling, plotting, export and analysis from whole-genome single cell
1040 sequencing data.")
1041 (license license:artistic2.0)))
1042
1043 (define-public r-arrmdata
1044 (package
1045 (name "r-arrmdata")
1046 (version "1.18.0")
1047 (source (origin
1048 (method url-fetch)
1049 (uri (bioconductor-uri "ARRmData" version 'experiment))
1050 (sha256
1051 (base32
1052 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
1053 (properties
1054 `((upstream-name . "ARRmData")))
1055 (build-system r-build-system)
1056 (home-page "https://www.bioconductor.org/packages/ARRmData/")
1057 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
1058 (description
1059 "This package provides raw beta values from 36 samples across 3 groups
1060 from Illumina 450k methylation arrays.")
1061 (license license:artistic2.0)))
1062
1063 (define-public r-chromstardata
1064 (package
1065 (name "r-chromstardata")
1066 (version "1.16.0")
1067 (source
1068 (origin
1069 (method url-fetch)
1070 (uri (bioconductor-uri "chromstaRData" version 'experiment))
1071 (sha256
1072 (base32
1073 "0ph80d53598635bb8g61acg5rqwnj8644a0gh297r4hgbvwlflab"))))
1074 (properties `((upstream-name . "chromstaRData")))
1075 (build-system r-build-system)
1076 (home-page "https://bioconductor.org/packages/chromstaRData/")
1077 (synopsis "ChIP-seq data for demonstration purposes")
1078 (description
1079 "This package provides ChIP-seq data for demonstration purposes in the
1080 chromstaR package.")
1081 (license license:gpl3)))
1082
1083 (define-public r-copyhelper
1084 (package
1085 (name "r-copyhelper")
1086 (version "1.6.0")
1087 (source
1088 (origin
1089 (method url-fetch)
1090 (uri (bioconductor-uri "CopyhelpeR" version 'experiment))
1091 (sha256
1092 (base32
1093 "0x7cyynjmxls9as2gg0iyp9x5fpalxmdjq914ss7i84i9zyk5bhq"))))
1094 (properties `((upstream-name . "CopyhelpeR")))
1095 (build-system r-build-system)
1096 (home-page "https://bioconductor.org/packages/CopyhelpeR/")
1097 (synopsis "Helper files for CopywriteR")
1098 (description
1099 "This package contains the helper files that are required to run the
1100 Bioconductor package CopywriteR. It contains pre-assembled 1kb bin GC-content
1101 and mappability files for the reference genomes hg18, hg19, hg38, mm9 and
1102 mm10. In addition, it contains a blacklist filter to remove regions that
1103 display copy number variation. Files are stored as GRanges objects from the
1104 GenomicRanges Bioconductor package.")
1105 (license license:gpl2)))
1106
1107 (define-public r-genelendatabase
1108 (package
1109 (name "r-genelendatabase")
1110 (version "1.18.0")
1111 (source
1112 (origin
1113 (method url-fetch)
1114 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
1115 (sha256
1116 (base32
1117 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
1118 (properties
1119 `((upstream-name . "geneLenDataBase")))
1120 (build-system r-build-system)
1121 (propagated-inputs
1122 `(("r-rtracklayer" ,r-rtracklayer)
1123 ("r-genomicfeatures" ,r-genomicfeatures)))
1124 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
1125 (synopsis "Lengths of mRNA transcripts for a number of genomes")
1126 (description
1127 "This package provides the lengths of mRNA transcripts for a number of
1128 genomes and gene ID formats, largely based on the UCSC table browser.")
1129 (license license:lgpl2.0+)))
1130
1131 (define-public r-genomationdata
1132 (package
1133 (name "r-genomationdata")
1134 (version "1.22.0")
1135 (source (origin
1136 (method url-fetch)
1137 (uri (bioconductor-uri "genomationData" version 'experiment))
1138 (sha256
1139 (base32
1140 "0igjsvfnws3498j65ifniw0kbxfqpfr59rcjddqvq4zsj453fx1g"))))
1141 (properties
1142 `((upstream-name . "genomationData")))
1143 (build-system r-build-system)
1144 ;; As this package provides little more than large data files, it doesn't
1145 ;; make sense to build substitutes.
1146 (arguments `(#:substitutable? #f))
1147 (native-inputs
1148 `(("r-knitr" ,r-knitr)))
1149 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
1150 (synopsis "Experimental data for use with the genomation package")
1151 (description
1152 "This package contains experimental genetic data for use with the
1153 genomation package. Included are Chip Seq, Methylation and Cage data,
1154 downloaded from Encode.")
1155 (license license:gpl3+)))
1156
1157 (define-public r-pasilla
1158 (package
1159 (name "r-pasilla")
1160 (version "1.14.0")
1161 (source (origin
1162 (method url-fetch)
1163 (uri (string-append
1164 "http://bioconductor.org/packages/release/data/experiment"
1165 "/src/contrib/pasilla_" version ".tar.gz"))
1166 (sha256
1167 (base32
1168 "0h124i2fb2lbj2k48zzf1n7ldqa471bs26fbd9vw50299aqx28x0"))))
1169 (build-system r-build-system)
1170 (propagated-inputs
1171 `(("r-biocstyle" ,r-biocstyle)
1172 ("r-dexseq" ,r-dexseq)
1173 ("r-knitr" ,r-knitr)
1174 ("r-rmarkdown" ,r-rmarkdown)))
1175 (home-page "https://www.bioconductor.org/packages/pasilla/")
1176 (synopsis "Data package with per-exon and per-gene read counts")
1177 (description "This package provides per-exon and per-gene read counts
1178 computed for selected genes from RNA-seq data that were presented in the
1179 article 'Conservation of an RNA regulatory map between Drosophila and mammals'
1180 by Brooks et al., Genome Research 2011.")
1181 (license license:lgpl2.1+)))
1182
1183 (define-public r-hsmmsinglecell
1184 (package
1185 (name "r-hsmmsinglecell")
1186 (version "1.2.0")
1187 (source (origin
1188 (method url-fetch)
1189 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
1190 (sha256
1191 (base32
1192 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
1193 (properties
1194 `((upstream-name . "HSMMSingleCell")))
1195 (build-system r-build-system)
1196 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
1197 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
1198 (description
1199 "Skeletal myoblasts undergo a well-characterized sequence of
1200 morphological and transcriptional changes during differentiation. In this
1201 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
1202 under high mitogen conditions (GM) and then differentiated by switching to
1203 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
1204 hundred cells taken over a time-course of serum-induced differentiation.
1205 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
1206 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
1207 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
1208 which were then sequenced to a depth of ~4 million reads per library,
1209 resulting in a complete gene expression profile for each cell.")
1210 (license license:artistic2.0)))
1211
1212 (define-public r-all
1213 (package
1214 (name "r-all")
1215 (version "1.26.0")
1216 (source (origin
1217 (method url-fetch)
1218 (uri (bioconductor-uri "ALL" version 'experiment))
1219 (sha256
1220 (base32
1221 "1z7kpjw4ndj6fkxwvhqf3gawhrn26ksrlns7j2c78qzxqmjndik9"))))
1222 (properties `((upstream-name . "ALL")))
1223 (build-system r-build-system)
1224 (propagated-inputs
1225 `(("r-biobase" ,r-biobase)))
1226 (home-page "https://bioconductor.org/packages/ALL")
1227 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
1228 (description
1229 "The data consist of microarrays from 128 different individuals with
1230 @dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
1231 are available. The data have been normalized (using rma) and it is the
1232 jointly normalized data that are available here. The data are presented in
1233 the form of an @code{exprSet} object.")
1234 (license license:artistic2.0)))
1235
1236 (define-public r-affydata
1237 (package
1238 (name "r-affydata")
1239 (version "1.32.0")
1240 (source
1241 (origin
1242 (method url-fetch)
1243 (uri (bioconductor-uri "affydata" version 'experiment))
1244 (sha256
1245 (base32
1246 "1l9qhmjqgbrdl9cmd74rlnvmvr6mslbmckb83n0211whp2i0b7h5"))))
1247 (properties `((upstream-name . "affydata")))
1248 (build-system r-build-system)
1249 (propagated-inputs
1250 `(("r-affy" ,r-affy)))
1251 (home-page "https://bioconductor.org/packages/affydata/")
1252 (synopsis "Affymetrix data for demonstration purposes")
1253 (description
1254 "This package provides example datasets that represent 'real world
1255 examples' of Affymetrix data, unlike the artificial examples included in the
1256 package @code{affy}.")
1257 (license license:gpl2+)))
1258
1259 (define-public r-gagedata
1260 (package
1261 (name "r-gagedata")
1262 (version "2.28.0")
1263 (source
1264 (origin
1265 (method url-fetch)
1266 (uri (bioconductor-uri "gageData" version 'experiment))
1267 (sha256
1268 (base32 "16lmnvmbykvbdgwyx7r2jc217gb9nidn81860v5kri99g97j4jdn"))))
1269 (properties `((upstream-name . "gageData")))
1270 (build-system r-build-system)
1271 (home-page "https://bioconductor.org/packages/gageData")
1272 (synopsis "Auxiliary data for the gage package")
1273 (description
1274 "This is a supportive data package for the software package @code{gage}.
1275 However, the data supplied here are also useful for gene set or pathway
1276 analysis or microarray data analysis in general. In this package, we provide
1277 two demo microarray dataset: GSE16873 (a breast cancer dataset from GEO) and
1278 BMP6 (originally published as an demo dataset for GAGE, also registered as
1279 GSE13604 in GEO). This package also includes commonly used gene set data based
1280 on KEGG pathways and GO terms for major research species, including human,
1281 mouse, rat and budding yeast. Mapping data between common gene IDs for budding
1282 yeast are also included.")
1283 (license license:gpl2+)))
1284
1285 (define-public r-curatedtcgadata
1286 (package
1287 (name "r-curatedtcgadata")
1288 (version "1.8.0")
1289 (source
1290 (origin
1291 (method url-fetch)
1292 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
1293 (sha256
1294 (base32
1295 "02y6cgihmsl9b4a9mmcdjjgjp06lpz04biyvxd3n5lk5gnqd9r3y"))))
1296 (properties
1297 `((upstream-name . "curatedTCGAData")))
1298 (build-system r-build-system)
1299 (propagated-inputs
1300 `(("r-annotationhub" ,r-annotationhub)
1301 ("r-experimenthub" ,r-experimenthub)
1302 ("r-hdf5array" ,r-hdf5array)
1303 ("r-multiassayexperiment" ,r-multiassayexperiment)
1304 ("r-s4vectors" ,r-s4vectors)
1305 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1306 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
1307 (synopsis "Curated data from The Cancer Genome Atlas")
1308 (description
1309 "This package provides publicly available data from The Cancer Genome
1310 Atlas (TCGA) as @code{MultiAssayExperiment} objects.
1311 @code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
1312 number, mutation, microRNA, protein, and others) with clinical / pathological
1313 data. It also links assay barcodes with patient identifiers, enabling
1314 harmonized subsetting of rows (features) and columns (patients / samples)
1315 across the entire multi-'omics experiment.")
1316 (license license:artistic2.0)))
1317
1318 \f
1319 ;;; Packages
1320
1321 (define-public r-biocversion
1322 (package
1323 (name "r-biocversion")
1324 (version "3.13.1")
1325 (source
1326 (origin
1327 (method url-fetch)
1328 (uri (bioconductor-uri "BiocVersion" version))
1329 (sha256
1330 (base32
1331 "0rsw8g4g1pcjw1zbx8x17yd3drhxqk4sx3cy3ddzy5731hl6mbfi"))))
1332 (properties `((upstream-name . "BiocVersion")))
1333 (build-system r-build-system)
1334 (home-page "https://bioconductor.org/packages/BiocVersion/")
1335 (synopsis "Set the appropriate version of Bioconductor packages")
1336 (description
1337 "This package provides repository information for the appropriate version
1338 of Bioconductor.")
1339 (license license:artistic2.0)))
1340
1341 (define-public r-biocgenerics
1342 (package
1343 (name "r-biocgenerics")
1344 (version "0.38.0")
1345 (source (origin
1346 (method url-fetch)
1347 (uri (bioconductor-uri "BiocGenerics" version))
1348 (sha256
1349 (base32
1350 "1kv7lzmyki3hi771v01nml1v1hzz8pyhqqv0xcdzqy354mlgx4m6"))))
1351 (properties
1352 `((upstream-name . "BiocGenerics")))
1353 (build-system r-build-system)
1354 (home-page "https://bioconductor.org/packages/BiocGenerics")
1355 (synopsis "S4 generic functions for Bioconductor")
1356 (description
1357 "This package provides S4 generic functions needed by many Bioconductor
1358 packages.")
1359 (license license:artistic2.0)))
1360
1361 (define-public r-coverageview
1362 (package
1363 (name "r-coverageview")
1364 (version "1.30.0")
1365 (source (origin
1366 (method url-fetch)
1367 (uri (bioconductor-uri "CoverageView" version))
1368 (sha256
1369 (base32
1370 "1xhirbjdw09cqm4xvysxqicvqjbahavwvs7shg4cb05gwyd2ha8g"))))
1371 (build-system r-build-system)
1372 (propagated-inputs
1373 `(("r-s4vectors" ,r-s4vectors)
1374 ("r-iranges" ,r-iranges)
1375 ("r-genomicranges" ,r-genomicranges)
1376 ("r-genomicalignments" ,r-genomicalignments)
1377 ("r-rtracklayer" ,r-rtracklayer)
1378 ("r-rsamtools" ,r-rsamtools)))
1379 (home-page "https://bioconductor.org/packages/CoverageView/")
1380 (synopsis "Coverage visualization package for R")
1381 (description "This package provides a framework for the visualization of
1382 genome coverage profiles. It can be used for ChIP-seq experiments, but it can
1383 be also used for genome-wide nucleosome positioning experiments or other
1384 experiment types where it is important to have a framework in order to inspect
1385 how the coverage distributed across the genome.")
1386 (license license:artistic2.0)))
1387
1388 (define-public r-cummerbund
1389 (package
1390 (name "r-cummerbund")
1391 (version "2.34.0")
1392 (source (origin
1393 (method url-fetch)
1394 (uri (bioconductor-uri "cummeRbund" version))
1395 (sha256
1396 (base32
1397 "1avvmvrmldbscc7xd6a6k22xjykbzafvqf87wh5z9rx3qlzswsjx"))))
1398 (build-system r-build-system)
1399 (propagated-inputs
1400 `(("r-biobase" ,r-biobase)
1401 ("r-biocgenerics" ,r-biocgenerics)
1402 ("r-fastcluster" ,r-fastcluster)
1403 ("r-ggplot2" ,r-ggplot2)
1404 ("r-gviz" ,r-gviz)
1405 ("r-plyr" ,r-plyr)
1406 ("r-reshape2" ,r-reshape2)
1407 ("r-rsqlite" ,r-rsqlite)
1408 ("r-rtracklayer" ,r-rtracklayer)
1409 ("r-s4vectors" ,r-s4vectors)))
1410 (home-page "https://bioconductor.org/packages/cummeRbund/")
1411 (synopsis "Analyze Cufflinks high-throughput sequencing data")
1412 (description "This package allows for persistent storage, access,
1413 exploration, and manipulation of Cufflinks high-throughput sequencing
1414 data. In addition, provides numerous plotting functions for commonly
1415 used visualizations.")
1416 (license license:artistic2.0)))
1417
1418 (define-public r-decipher
1419 (package
1420 (name "r-decipher")
1421 (version "2.20.0")
1422 (source (origin
1423 (method url-fetch)
1424 (uri (bioconductor-uri "DECIPHER" version))
1425 (sha256
1426 (base32
1427 "0mr7glkx2d37l9nszs52m0kycpm14vxl5gdp3z7i5j7yig1sw2nk"))))
1428 (build-system r-build-system)
1429 (propagated-inputs
1430 `(("r-biostrings" ,r-biostrings)
1431 ("r-dbi" ,r-dbi)
1432 ("r-iranges" ,r-iranges)
1433 ("r-rsqlite" ,r-rsqlite)
1434 ("r-s4vectors" ,r-s4vectors)
1435 ("r-xvector" ,r-xvector)))
1436 (home-page "https://www.bioconductor.org/packages/DECIPHER/")
1437 (synopsis "Tools for deciphering and managing biological sequences")
1438 (description "This package provides a toolset for deciphering and managing
1439 biological sequences.")
1440 (license license:gpl3)))
1441
1442 (define-public r-deepsnv
1443 (package
1444 (name "r-deepsnv")
1445 (version "1.38.0")
1446 (source (origin
1447 (method url-fetch)
1448 (uri (bioconductor-uri "deepSNV" version))
1449 (sha256
1450 (base32
1451 "0zz56hf417m7bgg2g2wpbaik30pi6h2nam1n5bviqgdn4mv8n0bs"))))
1452 (properties `((upstream-name . "deepSNV")))
1453 (build-system r-build-system)
1454 (propagated-inputs
1455 `(("r-biostrings" ,r-biostrings)
1456 ("r-genomicranges" ,r-genomicranges)
1457 ("r-iranges" ,r-iranges)
1458 ("r-rhtslib" ,r-rhtslib)
1459 ("r-summarizedexperiment" ,r-summarizedexperiment)
1460 ("r-variantannotation" ,r-variantannotation)
1461 ("r-vgam" ,r-vgam)))
1462 (native-inputs
1463 `(("r-knitr" ,r-knitr)))
1464 (home-page "https://github.com/gerstung-lab/deepSNV/")
1465 (synopsis "Detection of subclonal SNVs in deep sequencing data")
1466 (description
1467 "This package provides quantitative variant callers for detecting
1468 subclonal mutations in ultra-deep (>=100x coverage) sequencing experiments.
1469 The deepSNV algorithm is used for a comparative setup with a control experiment
1470 of the same loci and uses a beta-binomial model and a likelihood ratio test to
1471 discriminate sequencing errors and subclonal SNVs. The shearwater algorithm
1472 computes a Bayes classifier based on a beta-binomial model for variant calling
1473 with multiple samples for precisely estimating model parameters - such as local
1474 error rates and dispersion - and prior knowledge, e.g. from variation data
1475 bases such as COSMIC.")
1476 (license license:gpl3)))
1477
1478 (define-public r-delayedarray
1479 (package
1480 (name "r-delayedarray")
1481 (version "0.18.0")
1482 (source (origin
1483 (method url-fetch)
1484 (uri (bioconductor-uri "DelayedArray" version))
1485 (sha256
1486 (base32
1487 "0w632262dqzcnvq9s6jvc7naz93dayx51fsv05s0zb6cjwygbqjr"))))
1488 (properties
1489 `((upstream-name . "DelayedArray")))
1490 (build-system r-build-system)
1491 (propagated-inputs
1492 `(("r-biocgenerics" ,r-biocgenerics)
1493 ("r-s4vectors" ,r-s4vectors)
1494 ("r-iranges" ,r-iranges)
1495 ("r-matrix" ,r-matrix)
1496 ("r-matrixgenerics" ,r-matrixgenerics)))
1497 (native-inputs
1498 `(("r-knitr" ,r-knitr)))
1499 (home-page "https://bioconductor.org/packages/DelayedArray")
1500 (synopsis "Delayed operations on array-like objects")
1501 (description
1502 "Wrapping an array-like object (typically an on-disk object) in a
1503 @code{DelayedArray} object allows one to perform common array operations on it
1504 without loading the object in memory. In order to reduce memory usage and
1505 optimize performance, operations on the object are either delayed or executed
1506 using a block processing mechanism. Note that this also works on in-memory
1507 array-like objects like @code{DataFrame} objects (typically with Rle columns),
1508 @code{Matrix} objects, and ordinary arrays and data frames.")
1509 (license license:artistic2.0)))
1510
1511 (define-public r-bluster
1512 (package
1513 (name "r-bluster")
1514 (version "1.2.1")
1515 (source (origin
1516 (method url-fetch)
1517 (uri (bioconductor-uri "bluster" version))
1518 (sha256
1519 (base32
1520 "128zd5vwlhmrkq0bpp1dxnkrcqfz1mjmdjlla4wqbjv7v6yyn6lg"))))
1521 (properties `((upstream-name . "bluster")))
1522 (build-system r-build-system)
1523 (propagated-inputs
1524 `(("r-biocneighbors" ,r-biocneighbors)
1525 ("r-biocparallel" ,r-biocparallel)
1526 ("r-cluster" ,r-cluster)
1527 ("r-igraph" ,r-igraph)
1528 ("r-matrix" ,r-matrix)
1529 ("r-rcpp" ,r-rcpp)
1530 ("r-s4vectors" ,r-s4vectors)))
1531 (native-inputs
1532 `(("r-knitr" ,r-knitr)))
1533 (home-page "https://bioconductor.org/packages/bluster")
1534 (synopsis "Clustering algorithms for Bioconductor")
1535 (description"This package wraps common clustering algorithms in an easily
1536 extended S4 framework. Backends are implemented for hierarchical, k-means
1537 and graph-based clustering. Several utilities are also provided to compare
1538 and evaluate clustering results.")
1539 (license license:gpl3)))
1540
1541 (define-public r-ideoviz
1542 (package
1543 (name "r-ideoviz")
1544 (version "1.28.0")
1545 (source (origin
1546 (method url-fetch)
1547 (uri (bioconductor-uri "IdeoViz" version))
1548 (sha256
1549 (base32
1550 "17sx0v5lq2zmg098ps4ksj1h0yla3vlh6s2w1ahqsq0nvm193scm"))))
1551 (build-system r-build-system)
1552 (propagated-inputs
1553 `(("r-biobase" ,r-biobase)
1554 ("r-iranges" ,r-iranges)
1555 ("r-genomicranges" ,r-genomicranges)
1556 ("r-rcolorbrewer" ,r-rcolorbrewer)
1557 ("r-rtracklayer" ,r-rtracklayer)
1558 ("r-genomeinfodb" ,r-genomeinfodb)))
1559 (home-page "https://bioconductor.org/packages/IdeoViz/")
1560 (synopsis "Plots data along a chromosomal ideogram")
1561 (description "This package provides functions to plot data associated with
1562 arbitrary genomic intervals along chromosomal ideogram.")
1563 (license license:gpl2)))
1564
1565 (define-public r-iranges
1566 (package
1567 (name "r-iranges")
1568 (version "2.26.0")
1569 (source (origin
1570 (method url-fetch)
1571 (uri (bioconductor-uri "IRanges" version))
1572 (sha256
1573 (base32
1574 "0dzj8wqbjzilh2dsaj3ylx958xqrv0c688ayfq2r1z7rs75qy7kx"))))
1575 (properties
1576 `((upstream-name . "IRanges")))
1577 (build-system r-build-system)
1578 (propagated-inputs
1579 `(("r-biocgenerics" ,r-biocgenerics)
1580 ("r-s4vectors" ,r-s4vectors)))
1581 (home-page "https://bioconductor.org/packages/IRanges")
1582 (synopsis "Infrastructure for manipulating intervals on sequences")
1583 (description
1584 "This package provides efficient low-level and highly reusable S4 classes
1585 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
1586 generally, data that can be organized sequentially (formally defined as
1587 @code{Vector} objects), as well as views on these @code{Vector} objects.
1588 Efficient list-like classes are also provided for storing big collections of
1589 instances of the basic classes. All classes in the package use consistent
1590 naming and share the same rich and consistent \"Vector API\" as much as
1591 possible.")
1592 (license license:artistic2.0)))
1593
1594 ;; This is a CRAN package, but it depends on r-biobase and r-limma from Bioconductor.
1595 (define-public r-absfiltergsea
1596 (package
1597 (name "r-absfiltergsea")
1598 (version "1.5.1")
1599 (source
1600 (origin
1601 (method url-fetch)
1602 (uri (cran-uri "AbsFilterGSEA" version))
1603 (sha256
1604 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
1605 (properties `((upstream-name . "AbsFilterGSEA")))
1606 (build-system r-build-system)
1607 (propagated-inputs
1608 `(("r-biobase" ,r-biobase)
1609 ("r-deseq" ,r-deseq)
1610 ("r-limma" ,r-limma)
1611 ("r-rcpp" ,r-rcpp)
1612 ("r-rcpparmadillo" ,r-rcpparmadillo)))
1613 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
1614 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
1615 (description
1616 "This package provides a function that performs gene-permuting of a gene-set
1617 enrichment analysis (GSEA) calculation with or without the absolute filtering.
1618 Without filtering, users can perform (original) two-tailed or one-tailed
1619 absolute GSEA.")
1620 (license license:gpl2)))
1621
1622 ;; This is a CRAN package, but it depends on r-biobase from Bioconductor.
1623 (define-public r-bisquerna
1624 (package
1625 (name "r-bisquerna")
1626 (version "1.0.5")
1627 (source (origin
1628 (method url-fetch)
1629 (uri (cran-uri "BisqueRNA" version))
1630 (sha256
1631 (base32
1632 "0p3p5lp69gri7vs6qfpm7br4ksbs4l7clm4nj8ki99wpqiqni23n"))))
1633 (properties `((upstream-name . "BisqueRNA")))
1634 (build-system r-build-system)
1635 (propagated-inputs
1636 `(("r-biobase" ,r-biobase)
1637 ("r-limsolve" ,r-limsolve)))
1638 (native-inputs
1639 `(("r-knitr" ,r-knitr)))
1640 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
1641 (synopsis "Decomposition of bulk expression with single-cell sequencing")
1642 (description "This package provides tools to accurately estimate cell type
1643 abundances from heterogeneous bulk expression. A reference-based method
1644 utilizes single-cell information to generate a signature matrix and
1645 transformation of bulk expression for accurate regression based estimates.
1646 A marker-based method utilizes known cell-specific marker genes to measure
1647 relative abundances across samples.")
1648 (license license:gpl3)))
1649
1650 ;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
1651 ;; from Bioconductor.
1652 (define-public r-deconstructsigs
1653 (package
1654 (name "r-deconstructsigs")
1655 (version "1.8.0")
1656 (source (origin
1657 (method url-fetch)
1658 (uri (cran-uri "deconstructSigs" version))
1659 (sha256
1660 (base32
1661 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
1662 (properties
1663 `((upstream-name . "deconstructSigs")))
1664 (build-system r-build-system)
1665 (propagated-inputs
1666 `(("r-bsgenome" ,r-bsgenome)
1667 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1668 ("r-genomeinfodb" ,r-genomeinfodb)
1669 ("r-reshape2" ,r-reshape2)))
1670 (home-page "https://github.com/raerose01/deconstructSigs")
1671 (synopsis "Identifies signatures present in a tumor sample")
1672 (description "This package takes sample information in the form of the
1673 fraction of mutations in each of 96 trinucleotide contexts and identifies
1674 the weighted combination of published signatures that, when summed, most
1675 closely reconstructs the mutational profile.")
1676 (license license:gpl2+)))
1677
1678 ;; This is a CRAN package, but it depends on Bioconductor packages.
1679 (define-public r-nmf
1680 (package
1681 (name "r-nmf")
1682 (version "0.23.0")
1683 (source
1684 (origin
1685 (method url-fetch)
1686 (uri (cran-uri "NMF" version))
1687 (sha256
1688 (base32
1689 "0ls7q9yc9l1z10jphq5a11wkfgcxc3gm3sfjj376zx3vnc0wl30g"))))
1690 (properties `((upstream-name . "NMF")))
1691 (build-system r-build-system)
1692 (propagated-inputs
1693 `(("r-cluster" ,r-cluster)
1694 ("r-biobase" ,r-biobase)
1695 ("r-biocmanager" ,r-biocmanager)
1696 ("r-bigmemory" ,r-bigmemory) ; suggested
1697 ("r-synchronicity" ,r-synchronicity) ; suggested
1698 ("r-colorspace" ,r-colorspace)
1699 ("r-digest" ,r-digest)
1700 ("r-doparallel" ,r-doparallel)
1701 ("r-foreach" ,r-foreach)
1702 ("r-ggplot2" ,r-ggplot2)
1703 ("r-gridbase" ,r-gridbase)
1704 ("r-pkgmaker" ,r-pkgmaker)
1705 ("r-rcolorbrewer" ,r-rcolorbrewer)
1706 ("r-registry" ,r-registry)
1707 ("r-reshape2" ,r-reshape2)
1708 ("r-rngtools" ,r-rngtools)
1709 ("r-stringr" ,r-stringr)))
1710 (native-inputs
1711 `(("r-knitr" ,r-knitr)))
1712 (home-page "http://renozao.github.io/NMF")
1713 (synopsis "Algorithms and framework for nonnegative matrix factorization")
1714 (description
1715 "This package provides a framework to perform Non-negative Matrix
1716 Factorization (NMF). The package implements a set of already published
1717 algorithms and seeding methods, and provides a framework to test, develop and
1718 plug new or custom algorithms. Most of the built-in algorithms have been
1719 optimized in C++, and the main interface function provides an easy way of
1720 performing parallel computations on multicore machines.")
1721 (license license:gpl2+)))
1722
1723 (define-public r-affy
1724 (package
1725 (name "r-affy")
1726 (version "1.70.0")
1727 (source
1728 (origin
1729 (method url-fetch)
1730 (uri (bioconductor-uri "affy" version))
1731 (sha256
1732 (base32
1733 "0vz5y92gqcm0qk57qlba85bk683lzdr7vkmxv109rq6i17vdkkrm"))))
1734 (build-system r-build-system)
1735 (propagated-inputs
1736 `(("r-affyio" ,r-affyio)
1737 ("r-biobase" ,r-biobase)
1738 ("r-biocgenerics" ,r-biocgenerics)
1739 ("r-biocmanager" ,r-biocmanager)
1740 ("r-preprocesscore" ,r-preprocesscore)
1741 ("r-zlibbioc" ,r-zlibbioc)))
1742 (inputs
1743 `(("zlib" ,zlib)))
1744 (home-page "https://bioconductor.org/packages/affy")
1745 (synopsis "Methods for affymetrix oligonucleotide arrays")
1746 (description
1747 "This package contains functions for exploratory oligonucleotide array
1748 analysis.")
1749 (license license:lgpl2.0+)))
1750
1751 (define-public r-affycomp
1752 (package
1753 (name "r-affycomp")
1754 (version "1.68.0")
1755 (source
1756 (origin
1757 (method url-fetch)
1758 (uri (bioconductor-uri "affycomp" version))
1759 (sha256
1760 (base32
1761 "07my5scdh6h0y1bx1h9y5m4fa8bnmw389f83gkb7cf19w4vp36b2"))))
1762 (properties `((upstream-name . "affycomp")))
1763 (build-system r-build-system)
1764 (propagated-inputs `(("r-biobase" ,r-biobase)))
1765 (home-page "https://bioconductor.org/packages/affycomp/")
1766 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
1767 (description
1768 "The package contains functions that can be used to compare expression
1769 measures for Affymetrix Oligonucleotide Arrays.")
1770 (license license:gpl2+)))
1771
1772 (define-public r-affycompatible
1773 (package
1774 (name "r-affycompatible")
1775 (version "1.52.0")
1776 (source
1777 (origin
1778 (method url-fetch)
1779 (uri (bioconductor-uri "AffyCompatible" version))
1780 (sha256
1781 (base32
1782 "1xwz22wf2smsvmd0d5lfadbsgscnl3fl9msypy2mml38k048p6vj"))))
1783 (properties
1784 `((upstream-name . "AffyCompatible")))
1785 (build-system r-build-system)
1786 (propagated-inputs
1787 `(("r-biostrings" ,r-biostrings)
1788 ("r-rcurl" ,r-rcurl)
1789 ("r-xml" ,r-xml)))
1790 (home-page "https://bioconductor.org/packages/AffyCompatible/")
1791 (synopsis "Work with Affymetrix GeneChip files")
1792 (description
1793 "This package provides an interface to Affymetrix chip annotation and
1794 sample attribute files. The package allows an easy way for users to download
1795 and manage local data bases of Affynmetrix NetAffx annotation files. It also
1796 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
1797 Command Console} (AGCC)-compatible sample annotation files.")
1798 (license license:artistic2.0)))
1799
1800 (define-public r-affycontam
1801 (package
1802 (name "r-affycontam")
1803 (version "1.50.0")
1804 (source
1805 (origin
1806 (method url-fetch)
1807 (uri (bioconductor-uri "affyContam" version))
1808 (sha256
1809 (base32
1810 "0242ga68wrdk1kcmxfdbq73a0d3zhrzdlzkzphfg3q0zjbvg49jj"))))
1811 (properties `((upstream-name . "affyContam")))
1812 (build-system r-build-system)
1813 (propagated-inputs
1814 `(("r-affy" ,r-affy)
1815 ("r-affydata" ,r-affydata)
1816 ("r-biobase" ,r-biobase)))
1817 (home-page "https://bioconductor.org/packages/affyContam/")
1818 (synopsis "Structured corruption of Affymetrix CEL file data")
1819 (description
1820 "Microarray quality assessment is a major concern of microarray analysts.
1821 This package provides some simple approaches to in silico creation of quality
1822 problems in CEL-level data to help evaluate performance of quality metrics.")
1823 (license license:artistic2.0)))
1824
1825 (define-public r-affycoretools
1826 (package
1827 (name "r-affycoretools")
1828 (version "1.64.0")
1829 (source
1830 (origin
1831 (method url-fetch)
1832 (uri (bioconductor-uri "affycoretools" version))
1833 (sha256
1834 (base32
1835 "1dx861spr3kn1dxwhf43s5l1r7bmrq0h6538l3q64iiwzzc6krdh"))))
1836 (properties `((upstream-name . "affycoretools")))
1837 (build-system r-build-system)
1838 (propagated-inputs
1839 `(("r-affy" ,r-affy)
1840 ("r-annotationdbi" ,r-annotationdbi)
1841 ("r-biobase" ,r-biobase)
1842 ("r-biocgenerics" ,r-biocgenerics)
1843 ("r-dbi" ,r-dbi)
1844 ("r-edger" ,r-edger)
1845 ("r-gcrma" ,r-gcrma)
1846 ("r-glimma" ,r-glimma)
1847 ("r-ggplot2" ,r-ggplot2)
1848 ("r-gostats" ,r-gostats)
1849 ("r-gplots" ,r-gplots)
1850 ("r-hwriter" ,r-hwriter)
1851 ("r-lattice" ,r-lattice)
1852 ("r-limma" ,r-limma)
1853 ("r-oligoclasses" ,r-oligoclasses)
1854 ("r-reportingtools" ,r-reportingtools)
1855 ("r-rsqlite" ,r-rsqlite)
1856 ("r-s4vectors" ,r-s4vectors)
1857 ("r-xtable" ,r-xtable)))
1858 (native-inputs
1859 `(("r-knitr" ,r-knitr)))
1860 (home-page "https://bioconductor.org/packages/affycoretools/")
1861 (synopsis "Functions for analyses with Affymetrix GeneChips")
1862 (description
1863 "This package provides various wrapper functions that have been written
1864 to streamline the more common analyses that a Biostatistician might see.")
1865 (license license:artistic2.0)))
1866
1867 (define-public r-affyio
1868 (package
1869 (name "r-affyio")
1870 (version "1.62.0")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (bioconductor-uri "affyio" version))
1875 (sha256
1876 (base32
1877 "07kibqsm888g06qqqa4648ph877kriy74kprbri8nyx83y8aspjr"))))
1878 (build-system r-build-system)
1879 (propagated-inputs
1880 `(("r-zlibbioc" ,r-zlibbioc)))
1881 (inputs
1882 `(("zlib" ,zlib)))
1883 (home-page "https://github.com/bmbolstad/affyio")
1884 (synopsis "Tools for parsing Affymetrix data files")
1885 (description
1886 "This package provides routines for parsing Affymetrix data files based
1887 upon file format information. The primary focus is on accessing the CEL and
1888 CDF file formats.")
1889 (license license:lgpl2.0+)))
1890
1891 (define-public r-affxparser
1892 (package
1893 (name "r-affxparser")
1894 (version "1.64.0")
1895 (source
1896 (origin
1897 (method url-fetch)
1898 (uri (bioconductor-uri "affxparser" version))
1899 (sha256
1900 (base32
1901 "0n3yyrglzqzw0wqxl9igqvkj8qslw6yjkym3vcq0c93kkg7vk01l"))))
1902 (properties `((upstream-name . "affxparser")))
1903 (build-system r-build-system)
1904 (home-page "https://github.com/HenrikBengtsson/affxparser")
1905 (synopsis "Affymetrix File Parsing SDK")
1906 (description
1907 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
1908 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
1909 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
1910 are supported. Currently, there are methods for reading @dfn{chip definition
1911 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
1912 either in full or in part. For example, probe signals from a few probesets
1913 can be extracted very quickly from a set of CEL files into a convenient list
1914 structure.")
1915 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
1916 ;; under LGPLv2+.
1917 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
1918
1919 (define-public r-annotate
1920 (package
1921 (name "r-annotate")
1922 (version "1.70.0")
1923 (source
1924 (origin
1925 (method url-fetch)
1926 (uri (bioconductor-uri "annotate" version))
1927 (sha256
1928 (base32
1929 "13ny596wh65sw7dbw0zd4h84d6k1w99g91c4sqy83mdzgpv73sz7"))))
1930 (build-system r-build-system)
1931 (propagated-inputs
1932 `(("r-annotationdbi" ,r-annotationdbi)
1933 ("r-biobase" ,r-biobase)
1934 ("r-biocgenerics" ,r-biocgenerics)
1935 ("r-dbi" ,r-dbi)
1936 ("r-httr" ,r-httr)
1937 ("r-xml" ,r-xml)
1938 ("r-xtable" ,r-xtable)))
1939 (home-page
1940 "https://bioconductor.org/packages/annotate")
1941 (synopsis "Annotation for microarrays")
1942 (description "This package provides R environments for the annotation of
1943 microarrays.")
1944 (license license:artistic2.0)))
1945
1946 (define-public r-annotationdbi
1947 (package
1948 (name "r-annotationdbi")
1949 (version "1.54.0")
1950 (source (origin
1951 (method url-fetch)
1952 (uri (bioconductor-uri "AnnotationDbi" version))
1953 (sha256
1954 (base32
1955 "117zh7iqa6phsrxrkv45kxraamm3vbfz5i1a8vkhyalhdbs5ssph"))))
1956 (properties
1957 `((upstream-name . "AnnotationDbi")))
1958 (build-system r-build-system)
1959 (propagated-inputs
1960 `(("r-biobase" ,r-biobase)
1961 ("r-biocgenerics" ,r-biocgenerics)
1962 ("r-dbi" ,r-dbi)
1963 ("r-keggrest" ,r-keggrest)
1964 ("r-iranges" ,r-iranges)
1965 ("r-rsqlite" ,r-rsqlite)
1966 ("r-s4vectors" ,r-s4vectors)))
1967 (native-inputs
1968 `(("r-knitr" ,r-knitr)))
1969 (home-page "https://bioconductor.org/packages/AnnotationDbi")
1970 (synopsis "Annotation database interface")
1971 (description
1972 "This package provides user interface and database connection code for
1973 annotation data packages using SQLite data storage.")
1974 (license license:artistic2.0)))
1975
1976 (define-public r-annotationfilter
1977 (package
1978 (name "r-annotationfilter")
1979 (version "1.16.0")
1980 (source (origin
1981 (method url-fetch)
1982 (uri (bioconductor-uri "AnnotationFilter" version))
1983 (sha256
1984 (base32
1985 "0799jja6v7l3jsi26wbjalkr5lriaxid05xb5g36iq93myhaj0sa"))))
1986 (properties
1987 `((upstream-name . "AnnotationFilter")))
1988 (build-system r-build-system)
1989 (propagated-inputs
1990 `(("r-genomicranges" ,r-genomicranges)
1991 ("r-lazyeval" ,r-lazyeval)))
1992 (native-inputs
1993 `(("r-knitr" ,r-knitr)))
1994 (home-page "https://github.com/Bioconductor/AnnotationFilter")
1995 (synopsis "Facilities for filtering Bioconductor annotation resources")
1996 (description
1997 "This package provides classes and other infrastructure to implement
1998 filters for manipulating Bioconductor annotation resources. The filters are
1999 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
2000 (license license:artistic2.0)))
2001
2002 (define-public r-annotationforge
2003 (package
2004 (name "r-annotationforge")
2005 (version "1.34.0")
2006 (source
2007 (origin
2008 (method url-fetch)
2009 (uri (bioconductor-uri "AnnotationForge" version))
2010 (sha256
2011 (base32
2012 "1by3diy0y4809k97cw97mp4j177gn1dzhqil8myij1r7b8sk7hax"))))
2013 (properties
2014 `((upstream-name . "AnnotationForge")))
2015 (build-system r-build-system)
2016 (propagated-inputs
2017 `(("r-annotationdbi" ,r-annotationdbi)
2018 ("r-biobase" ,r-biobase)
2019 ("r-biocgenerics" ,r-biocgenerics)
2020 ("r-dbi" ,r-dbi)
2021 ("r-rcurl" ,r-rcurl)
2022 ("r-rsqlite" ,r-rsqlite)
2023 ("r-s4vectors" ,r-s4vectors)
2024 ("r-xml" ,r-xml)))
2025 (native-inputs
2026 `(("r-knitr" ,r-knitr)))
2027 (home-page "https://bioconductor.org/packages/AnnotationForge")
2028 (synopsis "Code for building annotation database packages")
2029 (description
2030 "This package provides code for generating Annotation packages and their
2031 databases. Packages produced are intended to be used with AnnotationDbi.")
2032 (license license:artistic2.0)))
2033
2034 (define-public r-annotationhub
2035 (package
2036 (name "r-annotationhub")
2037 (version "3.0.0")
2038 (source
2039 (origin
2040 (method url-fetch)
2041 (uri (bioconductor-uri "AnnotationHub" version))
2042 (sha256
2043 (base32
2044 "1p9773fv7j7q4x1sjqqaw32qy9lqn2gf6gkynh1d8n1kd7v7sclp"))))
2045 (properties `((upstream-name . "AnnotationHub")))
2046 (build-system r-build-system)
2047 (propagated-inputs
2048 `(("r-annotationdbi" ,r-annotationdbi)
2049 ("r-biocfilecache" ,r-biocfilecache)
2050 ("r-biocgenerics" ,r-biocgenerics)
2051 ("r-biocmanager" ,r-biocmanager)
2052 ("r-biocversion" ,r-biocversion)
2053 ("r-curl" ,r-curl)
2054 ("r-dplyr" ,r-dplyr)
2055 ("r-httr" ,r-httr)
2056 ("r-interactivedisplaybase" ,r-interactivedisplaybase)
2057 ("r-rappdirs" ,r-rappdirs)
2058 ("r-rsqlite" ,r-rsqlite)
2059 ("r-s4vectors" ,r-s4vectors)
2060 ("r-yaml" ,r-yaml)))
2061 (native-inputs
2062 `(("r-knitr" ,r-knitr)))
2063 (home-page "https://bioconductor.org/packages/AnnotationHub")
2064 (synopsis "Client to access AnnotationHub resources")
2065 (description
2066 "This package provides a client for the Bioconductor AnnotationHub web
2067 resource. The AnnotationHub web resource provides a central location where
2068 genomic files (e.g. VCF, bed, wig) and other resources from standard
2069 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
2070 metadata about each resource, e.g., a textual description, tags, and date of
2071 modification. The client creates and manages a local cache of files retrieved
2072 by the user, helping with quick and reproducible access.")
2073 (license license:artistic2.0)))
2074
2075 (define-public r-aroma-light
2076 (package
2077 (name "r-aroma-light")
2078 (version "3.22.0")
2079 (source
2080 (origin
2081 (method url-fetch)
2082 (uri (bioconductor-uri "aroma.light" version))
2083 (sha256
2084 (base32
2085 "1yvq6l1p8cpijvlib4fn9y88ihn0gaalrmgx82jgrfmnszkqn3y5"))))
2086 (properties `((upstream-name . "aroma.light")))
2087 (build-system r-build-system)
2088 (propagated-inputs
2089 `(("r-matrixstats" ,r-matrixstats)
2090 ("r-r-methodss3" ,r-r-methodss3)
2091 ("r-r-oo" ,r-r-oo)
2092 ("r-r-utils" ,r-r-utils)))
2093 (home-page "https://github.com/HenrikBengtsson/aroma.light")
2094 (synopsis "Methods for normalization and visualization of microarray data")
2095 (description
2096 "This package provides methods for microarray analysis that take basic
2097 data types such as matrices and lists of vectors. These methods can be used
2098 standalone, be utilized in other packages, or be wrapped up in higher-level
2099 classes.")
2100 (license license:gpl2+)))
2101
2102 (define-public r-bamsignals
2103 (package
2104 (name "r-bamsignals")
2105 (version "1.24.0")
2106 (source
2107 (origin
2108 (method url-fetch)
2109 (uri (bioconductor-uri "bamsignals" version))
2110 (sha256
2111 (base32
2112 "1ljrip0jlxjcljqac7vzvwqbcqil5v4f4s4bhpq4akvdkshas6mn"))))
2113 (build-system r-build-system)
2114 (propagated-inputs
2115 `(("r-biocgenerics" ,r-biocgenerics)
2116 ("r-genomicranges" ,r-genomicranges)
2117 ("r-iranges" ,r-iranges)
2118 ("r-rcpp" ,r-rcpp)
2119 ("r-rhtslib" ,r-rhtslib)
2120 ("r-zlibbioc" ,r-zlibbioc)))
2121 (native-inputs
2122 `(("r-knitr" ,r-knitr)))
2123 (home-page "https://bioconductor.org/packages/bamsignals")
2124 (synopsis "Extract read count signals from bam files")
2125 (description
2126 "This package efficiently obtains count vectors from indexed bam
2127 files. It counts the number of nucleotide sequence reads in given genomic
2128 ranges and it computes reads profiles and coverage profiles. It also handles
2129 paired-end data.")
2130 (license license:gpl2+)))
2131
2132 (define-public r-biobase
2133 (package
2134 (name "r-biobase")
2135 (version "2.52.0")
2136 (source (origin
2137 (method url-fetch)
2138 (uri (bioconductor-uri "Biobase" version))
2139 (sha256
2140 (base32
2141 "1sg8w8860zhlz9s1pf75xa8asd2hyqsj13fh5xc37hf5yqdfkavr"))))
2142 (properties
2143 `((upstream-name . "Biobase")))
2144 (build-system r-build-system)
2145 (propagated-inputs
2146 `(("r-biocgenerics" ,r-biocgenerics)))
2147 (home-page "https://bioconductor.org/packages/Biobase")
2148 (synopsis "Base functions for Bioconductor")
2149 (description
2150 "This package provides functions that are needed by many other packages
2151 on Bioconductor or which replace R functions.")
2152 (license license:artistic2.0)))
2153
2154 (define-public r-biomart
2155 (package
2156 (name "r-biomart")
2157 (version "2.48.0")
2158 (source (origin
2159 (method url-fetch)
2160 (uri (bioconductor-uri "biomaRt" version))
2161 (sha256
2162 (base32
2163 "1h8lzd63qvy1y75nlnhazpkyhl6g1hz80baqg20gpxbv38wkyf55"))))
2164 (properties
2165 `((upstream-name . "biomaRt")))
2166 (build-system r-build-system)
2167 (propagated-inputs
2168 `(("r-annotationdbi" ,r-annotationdbi)
2169 ("r-biocfilecache" ,r-biocfilecache)
2170 ("r-digest" ,r-digest)
2171 ("r-httr" ,r-httr)
2172 ("r-progress" ,r-progress)
2173 ("r-rappdirs" ,r-rappdirs)
2174 ("r-stringr" ,r-stringr)
2175 ("r-xml" ,r-xml)))
2176 (native-inputs
2177 `(("r-knitr" ,r-knitr)))
2178 (home-page "https://bioconductor.org/packages/biomaRt")
2179 (synopsis "Interface to BioMart databases")
2180 (description
2181 "biomaRt provides an interface to a growing collection of databases
2182 implementing the @url{BioMart software suite, http://www.biomart.org}. The
2183 package enables retrieval of large amounts of data in a uniform way without
2184 the need to know the underlying database schemas or write complex SQL queries.
2185 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
2186 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
2187 users direct access to a diverse set of data and enable a wide range of
2188 powerful online queries from gene annotation to database mining.")
2189 (license license:artistic2.0)))
2190
2191 (define-public r-biocparallel
2192 (package
2193 (name "r-biocparallel")
2194 (version "1.26.0")
2195 (source (origin
2196 (method url-fetch)
2197 (uri (bioconductor-uri "BiocParallel" version))
2198 (sha256
2199 (base32
2200 "17w4gdajxxmsfgiwycp1d7rbxdqhc5jnngcb58ky0fv5xbv9f4j0"))))
2201 (properties
2202 `((upstream-name . "BiocParallel")))
2203 (build-system r-build-system)
2204 (arguments
2205 `(#:phases
2206 (modify-phases %standard-phases
2207 (add-after 'unpack 'make-reproducible
2208 (lambda _
2209 ;; Remove generated documentation.
2210 (for-each delete-file
2211 '("inst/doc/BiocParallel_BatchtoolsParam.pdf"
2212 "inst/doc/Introduction_To_BiocParallel.pdf"
2213 "inst/doc/Errors_Logs_And_Debugging.pdf"
2214 "inst/doc/BiocParallel_BatchtoolsParam.R"
2215 "inst/doc/Introduction_To_BiocParallel.R"
2216 "inst/doc/Errors_Logs_And_Debugging.R"))
2217
2218 ;; Remove time-dependent macro
2219 (substitute* '("inst/doc/BiocParallel_BatchtoolsParam.Rnw"
2220 "inst/doc/Introduction_To_BiocParallel.Rnw"
2221 "inst/doc/Errors_Logs_And_Debugging.Rnw"
2222 "vignettes/BiocParallel_BatchtoolsParam.Rnw"
2223 "vignettes/Introduction_To_BiocParallel.Rnw"
2224 "vignettes/Errors_Logs_And_Debugging.Rnw")
2225 (("\\today") "later"))
2226
2227 ;; Initialize the random number generator seed when building.
2228 (substitute* "R/internal_rng_stream.R"
2229 (("\"L'Ecuyer-CMRG\"\\)" m)
2230 (string-append
2231 m "; if (!is.na(Sys.getenv(\"SOURCE_DATE_EPOCH\"))) {set.seed(100)}\n"))))))))
2232 (propagated-inputs
2233 `(("r-futile-logger" ,r-futile-logger)
2234 ("r-snow" ,r-snow)
2235 ("r-bh" ,r-bh)))
2236 (native-inputs
2237 `(("r-knitr" ,r-knitr)))
2238 (home-page "https://bioconductor.org/packages/BiocParallel")
2239 (synopsis "Bioconductor facilities for parallel evaluation")
2240 (description
2241 "This package provides modified versions and novel implementation of
2242 functions for parallel evaluation, tailored to use with Bioconductor
2243 objects.")
2244 (license (list license:gpl2+ license:gpl3+))))
2245
2246 (define-public r-biostrings
2247 (package
2248 (name "r-biostrings")
2249 (version "2.60.0")
2250 (source (origin
2251 (method url-fetch)
2252 (uri (bioconductor-uri "Biostrings" version))
2253 (sha256
2254 (base32
2255 "0xidh6wp0l47g1j9x8d4fs91ky6pi5nzf85ry801gqd2gqajh2zy"))))
2256 (properties
2257 `((upstream-name . "Biostrings")))
2258 (build-system r-build-system)
2259 (propagated-inputs
2260 `(("r-biocgenerics" ,r-biocgenerics)
2261 ("r-crayon" ,r-crayon)
2262 ("r-genomeinfodb" ,r-genomeinfodb)
2263 ("r-iranges" ,r-iranges)
2264 ("r-s4vectors" ,r-s4vectors)
2265 ("r-xvector" ,r-xvector)))
2266 (home-page "https://bioconductor.org/packages/Biostrings")
2267 (synopsis "String objects and algorithms for biological sequences")
2268 (description
2269 "This package provides memory efficient string containers, string
2270 matching algorithms, and other utilities, for fast manipulation of large
2271 biological sequences or sets of sequences.")
2272 (license license:artistic2.0)))
2273
2274 (define-public r-biovizbase
2275 (package
2276 (name "r-biovizbase")
2277 (version "1.40.0")
2278 (source
2279 (origin
2280 (method url-fetch)
2281 (uri (bioconductor-uri "biovizBase" version))
2282 (sha256
2283 (base32
2284 "14jyyg3ggdhaqhp0j4qf6dapykh76fygbaa4lr7czqbc5mr0iw23"))))
2285 (properties `((upstream-name . "biovizBase")))
2286 (build-system r-build-system)
2287 (propagated-inputs
2288 `(("r-annotationdbi" ,r-annotationdbi)
2289 ("r-annotationfilter" ,r-annotationfilter)
2290 ("r-biocgenerics" ,r-biocgenerics)
2291 ("r-biostrings" ,r-biostrings)
2292 ("r-dichromat" ,r-dichromat)
2293 ("r-ensembldb" ,r-ensembldb)
2294 ("r-genomeinfodb" ,r-genomeinfodb)
2295 ("r-genomicalignments" ,r-genomicalignments)
2296 ("r-genomicfeatures" ,r-genomicfeatures)
2297 ("r-genomicranges" ,r-genomicranges)
2298 ("r-hmisc" ,r-hmisc)
2299 ("r-iranges" ,r-iranges)
2300 ("r-rcolorbrewer" ,r-rcolorbrewer)
2301 ("r-rlang" ,r-rlang)
2302 ("r-rsamtools" ,r-rsamtools)
2303 ("r-s4vectors" ,r-s4vectors)
2304 ("r-scales" ,r-scales)
2305 ("r-summarizedexperiment" ,r-summarizedexperiment)
2306 ("r-variantannotation" ,r-variantannotation)))
2307 (home-page "https://bioconductor.org/packages/biovizBase")
2308 (synopsis "Basic graphic utilities for visualization of genomic data")
2309 (description
2310 "The biovizBase package is designed to provide a set of utilities, color
2311 schemes and conventions for genomic data. It serves as the base for various
2312 high-level packages for biological data visualization. This saves development
2313 effort and encourages consistency.")
2314 (license license:artistic2.0)))
2315
2316 (define-public r-bsgenome
2317 (package
2318 (name "r-bsgenome")
2319 (version "1.60.0")
2320 (source (origin
2321 (method url-fetch)
2322 (uri (bioconductor-uri "BSgenome" version))
2323 (sha256
2324 (base32
2325 "1jhissp9ad1rn2p0bzr3yslbn84yqbaqgnn5p9hyacwr7mr091cn"))))
2326 (properties
2327 `((upstream-name . "BSgenome")))
2328 (build-system r-build-system)
2329 (propagated-inputs
2330 `(("r-biocgenerics" ,r-biocgenerics)
2331 ("r-biostrings" ,r-biostrings)
2332 ("r-genomeinfodb" ,r-genomeinfodb)
2333 ("r-genomicranges" ,r-genomicranges)
2334 ("r-iranges" ,r-iranges)
2335 ("r-matrixstats" ,r-matrixstats)
2336 ("r-rsamtools" ,r-rsamtools)
2337 ("r-rtracklayer" ,r-rtracklayer)
2338 ("r-s4vectors" ,r-s4vectors)
2339 ("r-xvector" ,r-xvector)))
2340 (home-page "https://bioconductor.org/packages/BSgenome")
2341 (synopsis "Infrastructure for Biostrings-based genome data packages")
2342 (description
2343 "This package provides infrastructure shared by all Biostrings-based
2344 genome data packages and support for efficient SNP representation.")
2345 (license license:artistic2.0)))
2346
2347 (define-public r-category
2348 (package
2349 (name "r-category")
2350 (version "2.58.0")
2351 (source
2352 (origin
2353 (method url-fetch)
2354 (uri (bioconductor-uri "Category" version))
2355 (sha256
2356 (base32
2357 "0f76pb7h8qc51mca5pq00m9p02sbkcj6ywfzli20qai2ykpfr71x"))))
2358 (properties `((upstream-name . "Category")))
2359 (build-system r-build-system)
2360 (propagated-inputs
2361 `(("r-annotate" ,r-annotate)
2362 ("r-annotationdbi" ,r-annotationdbi)
2363 ("r-biobase" ,r-biobase)
2364 ("r-biocgenerics" ,r-biocgenerics)
2365 ("r-genefilter" ,r-genefilter)
2366 ("r-graph" ,r-graph)
2367 ("r-gseabase" ,r-gseabase)
2368 ("r-matrix" ,r-matrix)
2369 ("r-rbgl" ,r-rbgl)
2370 ("r-dbi" ,r-dbi)))
2371 (home-page "https://bioconductor.org/packages/Category")
2372 (synopsis "Category analysis")
2373 (description
2374 "This package provides a collection of tools for performing category
2375 analysis.")
2376 (license license:artistic2.0)))
2377
2378 (define-public r-chipseeker
2379 (package
2380 (name "r-chipseeker")
2381 (version "1.28.3")
2382 (source (origin
2383 (method url-fetch)
2384 (uri (bioconductor-uri "ChIPseeker" version))
2385 (sha256
2386 (base32
2387 "18hdgml80770c0xgd06zrl8px1ql9fa65rirfkq07z7rzpnd23rw"))))
2388 (build-system r-build-system)
2389 (native-inputs
2390 `(("r-knitr" ,r-knitr)))
2391 (propagated-inputs
2392 `(("r-annotationdbi" ,r-annotationdbi)
2393 ("r-biocgenerics" ,r-biocgenerics)
2394 ("r-boot" ,r-boot)
2395 ("r-enrichplot" ,r-enrichplot)
2396 ("r-iranges" ,r-iranges)
2397 ("r-genomeinfodb" ,r-genomeinfodb)
2398 ("r-genomicranges" ,r-genomicranges)
2399 ("r-genomicfeatures" ,r-genomicfeatures)
2400 ("r-ggplot2" ,r-ggplot2)
2401 ("r-gplots" ,r-gplots)
2402 ("r-gtools" ,r-gtools)
2403 ("r-dplyr" ,r-dplyr)
2404 ("r-plotrix" ,r-plotrix)
2405 ("r-dplyr" ,r-dplyr)
2406 ("r-magrittr" ,r-magrittr)
2407 ("r-rcolorbrewer" ,r-rcolorbrewer)
2408 ("r-rtracklayer" ,r-rtracklayer)
2409 ("r-s4vectors" ,r-s4vectors)
2410 ("r-txdb-hsapiens-ucsc-hg19-knowngene"
2411 ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
2412 (home-page "https://www.bioconductor.org/packages/ChIPseeker/")
2413 (synopsis "ChIPseeker for ChIP peak annotation, comparison, and visualization")
2414 (description "This package implements functions to retrieve the nearest
2415 genes around the peak, annotate genomic region of the peak, statstical methods
2416 for estimate the significance of overlap among ChIP peak data sets, and
2417 incorporate GEO database for user to compare the own dataset with those
2418 deposited in database. The comparison can be used to infer cooperative
2419 regulation and thus can be used to generate hypotheses. Several visualization
2420 functions are implemented to summarize the coverage of the peak experiment,
2421 average profile and heatmap of peaks binding to TSS regions, genomic
2422 annotation, distance to TSS, and overlap of peaks or genes.")
2423 (license license:artistic2.0)))
2424
2425 (define-public r-chipseq
2426 (package
2427 (name "r-chipseq")
2428 (version "1.42.0")
2429 (source
2430 (origin
2431 (method url-fetch)
2432 (uri (bioconductor-uri "chipseq" version))
2433 (sha256
2434 (base32
2435 "078p9h0zghlhpd6cr54nww1mk7q97imx8yqfayw5m2yq4097ivbi"))))
2436 (build-system r-build-system)
2437 (propagated-inputs
2438 `(("r-biocgenerics" ,r-biocgenerics)
2439 ("r-genomicranges" ,r-genomicranges)
2440 ("r-iranges" ,r-iranges)
2441 ("r-lattice" ,r-lattice)
2442 ("r-s4vectors" ,r-s4vectors)
2443 ("r-shortread" ,r-shortread)))
2444 (home-page "https://bioconductor.org/packages/chipseq")
2445 (synopsis "Package for analyzing ChIPseq data")
2446 (description
2447 "This package provides tools for processing short read data from ChIPseq
2448 experiments.")
2449 (license license:artistic2.0)))
2450
2451 (define-public r-complexheatmap
2452 (package
2453 (name "r-complexheatmap")
2454 (version "2.8.0")
2455 (source
2456 (origin
2457 (method url-fetch)
2458 (uri (bioconductor-uri "ComplexHeatmap" version))
2459 (sha256
2460 (base32
2461 "0jl96msj1njdrvngg68s50vmphvhi2lfwlv34x07pcdzgkjjs41f"))))
2462 (properties
2463 `((upstream-name . "ComplexHeatmap")))
2464 (build-system r-build-system)
2465 (propagated-inputs
2466 `(("r-cairo" ,r-cairo)
2467 ("r-circlize" ,r-circlize)
2468 ("r-clue" ,r-clue)
2469 ("r-colorspace" ,r-colorspace)
2470 ("r-digest" ,r-digest)
2471 ("r-doparallel" ,r-doparallel)
2472 ("r-foreach" ,r-foreach)
2473 ("r-getoptlong" ,r-getoptlong)
2474 ("r-globaloptions" ,r-globaloptions)
2475 ("r-iranges" ,r-iranges)
2476 ("r-matrixstats" ,r-matrixstats)
2477 ("r-png" ,r-png)
2478 ("r-rcolorbrewer" ,r-rcolorbrewer)))
2479 (native-inputs
2480 `(("r-knitr" ,r-knitr)))
2481 (home-page
2482 "https://github.com/jokergoo/ComplexHeatmap")
2483 (synopsis "Making Complex Heatmaps")
2484 (description
2485 "Complex heatmaps are efficient to visualize associations between
2486 different sources of data sets and reveal potential structures. This package
2487 provides a highly flexible way to arrange multiple heatmaps and supports
2488 self-defined annotation graphics.")
2489 (license license:gpl2+)))
2490
2491 (define-public r-copywriter
2492 (package
2493 (name "r-copywriter")
2494 (version "2.24.0")
2495 (source
2496 (origin
2497 (method url-fetch)
2498 (uri (bioconductor-uri "CopywriteR" version))
2499 (sha256
2500 (base32
2501 "0pacs714d9b1fdz68pp9ca0x77d376s19lxb82np4l9fgx0rgkxp"))))
2502 (properties `((upstream-name . "CopywriteR")))
2503 (build-system r-build-system)
2504 (propagated-inputs
2505 `(("r-biocparallel" ,r-biocparallel)
2506 ("r-chipseq" ,r-chipseq)
2507 ("r-copyhelper" ,r-copyhelper)
2508 ("r-data-table" ,r-data-table)
2509 ("r-dnacopy" ,r-dnacopy)
2510 ("r-futile-logger" ,r-futile-logger)
2511 ("r-genomeinfodb" ,r-genomeinfodb)
2512 ("r-genomicalignments" ,r-genomicalignments)
2513 ("r-genomicranges" ,r-genomicranges)
2514 ("r-gtools" ,r-gtools)
2515 ("r-iranges" ,r-iranges)
2516 ("r-matrixstats" ,r-matrixstats)
2517 ("r-rsamtools" ,r-rsamtools)
2518 ("r-s4vectors" ,r-s4vectors)))
2519 (home-page "https://github.com/PeeperLab/CopywriteR")
2520 (synopsis "Copy number information from targeted sequencing")
2521 (description
2522 "CopywriteR extracts DNA copy number information from targeted sequencing
2523 by utilizing off-target reads. It allows for extracting uniformly distributed
2524 copy number information, can be used without reference, and can be applied to
2525 sequencing data obtained from various techniques including chromatin
2526 immunoprecipitation and target enrichment on small gene panels. Thereby,
2527 CopywriteR constitutes a widely applicable alternative to available copy
2528 number detection tools.")
2529 (license license:gpl2)))
2530
2531 (define-public r-deseq
2532 (package
2533 (name "r-deseq")
2534 (version "1.39.0")
2535 (source
2536 (origin
2537 (method url-fetch)
2538 (uri (bioconductor-uri "DESeq" version))
2539 (sha256
2540 (base32
2541 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
2542 (properties `((upstream-name . "DESeq")))
2543 (build-system r-build-system)
2544 (propagated-inputs
2545 `(("r-biobase" ,r-biobase)
2546 ("r-biocgenerics" ,r-biocgenerics)
2547 ("r-genefilter" ,r-genefilter)
2548 ("r-geneplotter" ,r-geneplotter)
2549 ("r-lattice" ,r-lattice)
2550 ("r-locfit" ,r-locfit)
2551 ("r-mass" ,r-mass)
2552 ("r-rcolorbrewer" ,r-rcolorbrewer)))
2553 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
2554 (synopsis "Differential gene expression analysis")
2555 (description
2556 "This package provides tools for estimating variance-mean dependence in
2557 count data from high-throughput genetic sequencing assays and for testing for
2558 differential expression based on a model using the negative binomial
2559 distribution.")
2560 (license license:gpl3+)))
2561
2562 (define-public r-deseq2
2563 (package
2564 (name "r-deseq2")
2565 (version "1.32.0")
2566 (source
2567 (origin
2568 (method url-fetch)
2569 (uri (bioconductor-uri "DESeq2" version))
2570 (sha256
2571 (base32
2572 "0r1brwmj7av0bj72jajn27vx3zs1bgg8qfbhf02fln6kf7im4kaz"))))
2573 (properties `((upstream-name . "DESeq2")))
2574 (build-system r-build-system)
2575 (propagated-inputs
2576 `(("r-biobase" ,r-biobase)
2577 ("r-biocgenerics" ,r-biocgenerics)
2578 ("r-biocparallel" ,r-biocparallel)
2579 ("r-genefilter" ,r-genefilter)
2580 ("r-geneplotter" ,r-geneplotter)
2581 ("r-genomicranges" ,r-genomicranges)
2582 ("r-ggplot2" ,r-ggplot2)
2583 ("r-iranges" ,r-iranges)
2584 ("r-locfit" ,r-locfit)
2585 ("r-rcpp" ,r-rcpp)
2586 ("r-rcpparmadillo" ,r-rcpparmadillo)
2587 ("r-s4vectors" ,r-s4vectors)
2588 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2589 (native-inputs
2590 `(("r-knitr" ,r-knitr)))
2591 (home-page "https://bioconductor.org/packages/DESeq2")
2592 (synopsis "Differential gene expression analysis")
2593 (description
2594 "This package provides functions to estimate variance-mean dependence in
2595 count data from high-throughput nucleotide sequencing assays and test for
2596 differential expression based on a model using the negative binomial
2597 distribution.")
2598 (license license:lgpl3+)))
2599
2600 (define-public r-dexseq
2601 (package
2602 (name "r-dexseq")
2603 (version "1.38.0")
2604 (source
2605 (origin
2606 (method url-fetch)
2607 (uri (bioconductor-uri "DEXSeq" version))
2608 (sha256
2609 (base32
2610 "1zywh30f4j4rj0f9w6yk5xr9mvdbg8gicy3wsb8yxdnamadyr7x4"))))
2611 (properties `((upstream-name . "DEXSeq")))
2612 (build-system r-build-system)
2613 (propagated-inputs
2614 `(("r-annotationdbi" ,r-annotationdbi)
2615 ("r-biobase" ,r-biobase)
2616 ("r-biocgenerics" ,r-biocgenerics)
2617 ("r-biocparallel" ,r-biocparallel)
2618 ("r-biomart" ,r-biomart)
2619 ("r-deseq2" ,r-deseq2)
2620 ("r-genefilter" ,r-genefilter)
2621 ("r-geneplotter" ,r-geneplotter)
2622 ("r-genomicranges" ,r-genomicranges)
2623 ("r-hwriter" ,r-hwriter)
2624 ("r-iranges" ,r-iranges)
2625 ("r-rcolorbrewer" ,r-rcolorbrewer)
2626 ("r-rsamtools" ,r-rsamtools)
2627 ("r-s4vectors" ,r-s4vectors)
2628 ("r-statmod" ,r-statmod)
2629 ("r-stringr" ,r-stringr)
2630 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2631 (native-inputs
2632 `(("r-knitr" ,r-knitr)))
2633 (home-page "https://bioconductor.org/packages/DEXSeq")
2634 (synopsis "Inference of differential exon usage in RNA-Seq")
2635 (description
2636 "This package is focused on finding differential exon usage using RNA-seq
2637 exon counts between samples with different experimental designs. It provides
2638 functions that allows the user to make the necessary statistical tests based
2639 on a model that uses the negative binomial distribution to estimate the
2640 variance between biological replicates and generalized linear models for
2641 testing. The package also provides functions for the visualization and
2642 exploration of the results.")
2643 (license license:gpl3+)))
2644
2645 (define-public r-dirichletmultinomial
2646 (package
2647 (name "r-dirichletmultinomial")
2648 (version "1.34.0")
2649 (source
2650 (origin
2651 (method url-fetch)
2652 (uri (bioconductor-uri "DirichletMultinomial" version))
2653 (sha256
2654 (base32
2655 "0ikmj0300lfzj6q1vyahfyx5kwi5h59mds7ym4f2j1bbxqzy6ssl"))))
2656 (properties
2657 `((upstream-name . "DirichletMultinomial")))
2658 (build-system r-build-system)
2659 (inputs
2660 `(("gsl" ,gsl)))
2661 (propagated-inputs
2662 `(("r-biocgenerics" ,r-biocgenerics)
2663 ("r-iranges" ,r-iranges)
2664 ("r-s4vectors" ,r-s4vectors)))
2665 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
2666 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
2667 (description
2668 "Dirichlet-multinomial mixture models can be used to describe variability
2669 in microbial metagenomic data. This package is an interface to code
2670 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
2671 1-15.")
2672 (license license:lgpl3)))
2673
2674 (define-public r-edaseq
2675 (package
2676 (name "r-edaseq")
2677 (version "2.26.0")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (bioconductor-uri "EDASeq" version))
2682 (sha256
2683 (base32
2684 "1mqpi2iz4azr31b3ajsqb4n9izjh85dx642844n059c8s2pfmivh"))))
2685 (properties `((upstream-name . "EDASeq")))
2686 (build-system r-build-system)
2687 (propagated-inputs
2688 `(("r-annotationdbi" ,r-annotationdbi)
2689 ("r-aroma-light" ,r-aroma-light)
2690 ("r-biobase" ,r-biobase)
2691 ("r-biocgenerics" ,r-biocgenerics)
2692 ("r-biocmanager" ,r-biocmanager)
2693 ("r-biomart" ,r-biomart)
2694 ("r-biostrings" ,r-biostrings)
2695 ("r-genomicfeatures" ,r-genomicfeatures)
2696 ("r-genomicranges" ,r-genomicranges)
2697 ("r-iranges" ,r-iranges)
2698 ("r-rsamtools" ,r-rsamtools)
2699 ("r-shortread" ,r-shortread)))
2700 (native-inputs
2701 `(("r-knitr" ,r-knitr)))
2702 (home-page "https://github.com/drisso/EDASeq")
2703 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
2704 (description
2705 "This package provides support for numerical and graphical summaries of
2706 RNA-Seq genomic read data. Provided within-lane normalization procedures to
2707 adjust for GC-content effect (or other gene-level effects) on read counts:
2708 loess robust local regression, global-scaling, and full-quantile
2709 normalization. Between-lane normalization procedures to adjust for
2710 distributional differences between lanes (e.g., sequencing depth):
2711 global-scaling and full-quantile normalization.")
2712 (license license:artistic2.0)))
2713
2714 (define-public r-edger
2715 (package
2716 (name "r-edger")
2717 (version "3.34.0")
2718 (source (origin
2719 (method url-fetch)
2720 (uri (bioconductor-uri "edgeR" version))
2721 (sha256
2722 (base32
2723 "1ikl9y6hj2p92nrb1ydxy2410b3wrax83rfy2imaj0vgfmhsgx6g"))))
2724 (properties `((upstream-name . "edgeR")))
2725 (build-system r-build-system)
2726 (propagated-inputs
2727 `(("r-limma" ,r-limma)
2728 ("r-locfit" ,r-locfit)
2729 ("r-rcpp" ,r-rcpp)
2730 ("r-statmod" ,r-statmod))) ;for estimateDisp
2731 (home-page "http://bioinf.wehi.edu.au/edgeR")
2732 (synopsis "EdgeR does empirical analysis of digital gene expression data")
2733 (description "This package can do differential expression analysis of
2734 RNA-seq expression profiles with biological replication. It implements a range
2735 of statistical methodology based on the negative binomial distributions,
2736 including empirical Bayes estimation, exact tests, generalized linear models
2737 and quasi-likelihood tests. It be applied to differential signal analysis of
2738 other types of genomic data that produce counts, including ChIP-seq, SAGE and
2739 CAGE.")
2740 (license license:gpl2+)))
2741
2742 (define-public r-ensembldb
2743 (package
2744 (name "r-ensembldb")
2745 (version "2.16.0")
2746 (source
2747 (origin
2748 (method url-fetch)
2749 (uri (bioconductor-uri "ensembldb" version))
2750 (sha256
2751 (base32
2752 "100m2mzxl4pmldqixzfdznnd4nqbykk2l7n4xazqjpnlpcldy2dj"))))
2753 (build-system r-build-system)
2754 (propagated-inputs
2755 `(("r-annotationdbi" ,r-annotationdbi)
2756 ("r-annotationfilter" ,r-annotationfilter)
2757 ("r-biobase" ,r-biobase)
2758 ("r-biocgenerics" ,r-biocgenerics)
2759 ("r-biostrings" ,r-biostrings)
2760 ("r-curl" ,r-curl)
2761 ("r-dbi" ,r-dbi)
2762 ("r-genomeinfodb" ,r-genomeinfodb)
2763 ("r-genomicfeatures" ,r-genomicfeatures)
2764 ("r-genomicranges" ,r-genomicranges)
2765 ("r-iranges" ,r-iranges)
2766 ("r-protgenerics" ,r-protgenerics)
2767 ("r-rsamtools" ,r-rsamtools)
2768 ("r-rsqlite" ,r-rsqlite)
2769 ("r-rtracklayer" ,r-rtracklayer)
2770 ("r-s4vectors" ,r-s4vectors)))
2771 (native-inputs
2772 `(("r-knitr" ,r-knitr)))
2773 (home-page "https://github.com/jotsetung/ensembldb")
2774 (synopsis "Utilities to create and use Ensembl-based annotation databases")
2775 (description
2776 "The package provides functions to create and use transcript-centric
2777 annotation databases/packages. The annotation for the databases are directly
2778 fetched from Ensembl using their Perl API. The functionality and data is
2779 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
2780 but, in addition to retrieve all gene/transcript models and annotations from
2781 the database, the @code{ensembldb} package also provides a filter framework
2782 allowing to retrieve annotations for specific entries like genes encoded on a
2783 chromosome region or transcript models of lincRNA genes.")
2784 ;; No version specified
2785 (license license:lgpl3+)))
2786
2787 (define-public r-fastseg
2788 (package
2789 (name "r-fastseg")
2790 (version "1.38.0")
2791 (source
2792 (origin
2793 (method url-fetch)
2794 (uri (bioconductor-uri "fastseg" version))
2795 (sha256
2796 (base32
2797 "006v7qs707xmnr35b7rw135pyvacrmhv55a3c53birkpsrjgkps0"))))
2798 (build-system r-build-system)
2799 (propagated-inputs
2800 `(("r-biobase" ,r-biobase)
2801 ("r-biocgenerics" ,r-biocgenerics)
2802 ("r-genomicranges" ,r-genomicranges)
2803 ("r-iranges" ,r-iranges)
2804 ("r-s4vectors" ,r-s4vectors)))
2805 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
2806 (synopsis "Fast segmentation algorithm for genetic sequencing data")
2807 (description
2808 "Fastseg implements a very fast and efficient segmentation algorithm.
2809 It can segment data from DNA microarrays and data from next generation
2810 sequencing for example to detect copy number segments. Further it can segment
2811 data from RNA microarrays like tiling arrays to identify transcripts. Most
2812 generally, it can segment data given as a matrix or as a vector. Various data
2813 formats can be used as input to fastseg like expression set objects for
2814 microarrays or GRanges for sequencing data.")
2815 (license license:lgpl2.0+)))
2816
2817 (define-public r-gage
2818 (package
2819 (name "r-gage")
2820 (version "2.42.0")
2821 (source
2822 (origin
2823 (method url-fetch)
2824 (uri (bioconductor-uri "gage" version))
2825 (sha256
2826 (base32
2827 "0z7hrwdm6my6p7z04bcpfhqk72pd0s1bdzvsiiym59qj79fbvb83"))))
2828 (build-system r-build-system)
2829 (propagated-inputs
2830 `(("r-annotationdbi" ,r-annotationdbi)
2831 ("r-go-db" ,r-go-db)
2832 ("r-graph" ,r-graph)
2833 ("r-keggrest" ,r-keggrest)))
2834 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
2835 "articles/10.1186/1471-2105-10-161"))
2836 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
2837 (description
2838 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
2839 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
2840 data attributes including sample sizes, experimental designs, assay platforms,
2841 and other types of heterogeneity. The gage package provides functions for
2842 basic GAGE analysis, result processing and presentation. In addition, it
2843 provides demo microarray data and commonly used gene set data based on KEGG
2844 pathways and GO terms. These functions and data are also useful for gene set
2845 analysis using other methods.")
2846 (license license:gpl2+)))
2847
2848 (define-public r-genefilter
2849 (package
2850 (name "r-genefilter")
2851 (version "1.74.0")
2852 (source
2853 (origin
2854 (method url-fetch)
2855 (uri (bioconductor-uri "genefilter" version))
2856 (sha256
2857 (base32
2858 "0dy9pmlb0pc9b4ks5fb9zgnmhc9f2mkqmsdlb7f5z88xmj68y4qk"))))
2859 (build-system r-build-system)
2860 (native-inputs
2861 `(("gfortran" ,gfortran)
2862 ("r-knitr" ,r-knitr)))
2863 (propagated-inputs
2864 `(("r-annotate" ,r-annotate)
2865 ("r-annotationdbi" ,r-annotationdbi)
2866 ("r-biobase" ,r-biobase)
2867 ("r-biocgenerics" ,r-biocgenerics)
2868 ("r-survival" ,r-survival)))
2869 (home-page "https://bioconductor.org/packages/genefilter")
2870 (synopsis "Filter genes from high-throughput experiments")
2871 (description
2872 "This package provides basic functions for filtering genes from
2873 high-throughput sequencing experiments.")
2874 (license license:artistic2.0)))
2875
2876 (define-public r-geneoverlap
2877 (package
2878 (name "r-geneoverlap")
2879 (version "1.28.0")
2880 (source (origin
2881 (method url-fetch)
2882 (uri (bioconductor-uri "GeneOverlap" version))
2883 (sha256
2884 (base32
2885 "1kfw3h68rvbafhklds6sfmviwv91nms8wk0ywzkjg5h3mmgxbsv9"))))
2886 (build-system r-build-system)
2887 (propagated-inputs
2888 `(("r-rcolorbrewer" ,r-rcolorbrewer)
2889 ("r-gplots" ,r-gplots)))
2890 (home-page "https://www.bioconductor.org/packages/GeneOverlap/")
2891 (synopsis "Test and visualize gene overlaps")
2892 (description "This package can be used to test two sets of gene lists
2893 and visualize the results.")
2894 (license license:gpl3)))
2895
2896 (define-public r-genomation
2897 (package
2898 (name "r-genomation")
2899 (version "1.24.0")
2900 (source (origin
2901 (method url-fetch)
2902 (uri (bioconductor-uri "genomation" version))
2903 (sha256
2904 (base32
2905 "0qa3b4mfd7l1sy4pw64zr2d90y5apah900krxjl4x39acygg0i2r"))))
2906 (build-system r-build-system)
2907 (propagated-inputs
2908 `(("r-biostrings" ,r-biostrings)
2909 ("r-bsgenome" ,r-bsgenome)
2910 ("r-data-table" ,r-data-table)
2911 ("r-genomeinfodb" ,r-genomeinfodb)
2912 ("r-genomicalignments" ,r-genomicalignments)
2913 ("r-genomicranges" ,r-genomicranges)
2914 ("r-ggplot2" ,r-ggplot2)
2915 ("r-gridbase" ,r-gridbase)
2916 ("r-impute" ,r-impute)
2917 ("r-iranges" ,r-iranges)
2918 ("r-matrixstats" ,r-matrixstats)
2919 ("r-plotrix" ,r-plotrix)
2920 ("r-plyr" ,r-plyr)
2921 ("r-rcpp" ,r-rcpp)
2922 ("r-readr" ,r-readr)
2923 ("r-reshape2" ,r-reshape2)
2924 ("r-rsamtools" ,r-rsamtools)
2925 ("r-rtracklayer" ,r-rtracklayer)
2926 ("r-s4vectors" ,r-s4vectors)
2927 ("r-seqpattern" ,r-seqpattern)))
2928 (native-inputs
2929 `(("r-knitr" ,r-knitr)))
2930 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
2931 (synopsis "Summary, annotation and visualization of genomic data")
2932 (description
2933 "This package provides a package for summary and annotation of genomic
2934 intervals. Users can visualize and quantify genomic intervals over
2935 pre-defined functional regions, such as promoters, exons, introns, etc. The
2936 genomic intervals represent regions with a defined chromosome position, which
2937 may be associated with a score, such as aligned reads from HT-seq experiments,
2938 TF binding sites, methylation scores, etc. The package can use any tabular
2939 genomic feature data as long as it has minimal information on the locations of
2940 genomic intervals. In addition, it can use BAM or BigWig files as input.")
2941 (license license:artistic2.0)))
2942
2943 (define-public r-genomeinfodb
2944 (package
2945 (name "r-genomeinfodb")
2946 (version "1.28.0")
2947 (source (origin
2948 (method url-fetch)
2949 (uri (bioconductor-uri "GenomeInfoDb" version))
2950 (sha256
2951 (base32
2952 "0wjd7sh7kr9lfcdbzm5jdynl84nfsl7nqvly92qqrdcxd2sjfr63"))))
2953 (properties
2954 `((upstream-name . "GenomeInfoDb")))
2955 (build-system r-build-system)
2956 (propagated-inputs
2957 `(("r-biocgenerics" ,r-biocgenerics)
2958 ("r-genomeinfodbdata" ,r-genomeinfodbdata)
2959 ("r-iranges" ,r-iranges)
2960 ("r-rcurl" ,r-rcurl)
2961 ("r-s4vectors" ,r-s4vectors)))
2962 (native-inputs
2963 `(("r-knitr" ,r-knitr)))
2964 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
2965 (synopsis "Utilities for manipulating chromosome identifiers")
2966 (description
2967 "This package contains data and functions that define and allow
2968 translation between different chromosome sequence naming conventions (e.g.,
2969 \"chr1\" versus \"1\"), including a function that attempts to place sequence
2970 names in their natural, rather than lexicographic, order.")
2971 (license license:artistic2.0)))
2972
2973 (define-public r-genomicalignments
2974 (package
2975 (name "r-genomicalignments")
2976 (version "1.28.0")
2977 (source (origin
2978 (method url-fetch)
2979 (uri (bioconductor-uri "GenomicAlignments" version))
2980 (sha256
2981 (base32
2982 "00rq110jkh89nxgk05zh8kssxk8mb4dq0wjg3n7ivfmmm9wdwhp2"))))
2983 (properties
2984 `((upstream-name . "GenomicAlignments")))
2985 (build-system r-build-system)
2986 (propagated-inputs
2987 `(("r-biocgenerics" ,r-biocgenerics)
2988 ("r-biocparallel" ,r-biocparallel)
2989 ("r-biostrings" ,r-biostrings)
2990 ("r-genomeinfodb" ,r-genomeinfodb)
2991 ("r-genomicranges" ,r-genomicranges)
2992 ("r-iranges" ,r-iranges)
2993 ("r-rsamtools" ,r-rsamtools)
2994 ("r-s4vectors" ,r-s4vectors)
2995 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2996 (home-page "https://bioconductor.org/packages/GenomicAlignments")
2997 (synopsis "Representation and manipulation of short genomic alignments")
2998 (description
2999 "This package provides efficient containers for storing and manipulating
3000 short genomic alignments (typically obtained by aligning short reads to a
3001 reference genome). This includes read counting, computing the coverage,
3002 junction detection, and working with the nucleotide content of the
3003 alignments.")
3004 (license license:artistic2.0)))
3005
3006 (define-public r-genomicfeatures
3007 (package
3008 (name "r-genomicfeatures")
3009 (version "1.44.0")
3010 (source (origin
3011 (method url-fetch)
3012 (uri (bioconductor-uri "GenomicFeatures" version))
3013 (sha256
3014 (base32
3015 "0y7lnvfcfrs72xbkn67xcqyz9csl5696mr2zl425fkhmnmimm4fg"))))
3016 (properties
3017 `((upstream-name . "GenomicFeatures")))
3018 (build-system r-build-system)
3019 (propagated-inputs
3020 `(("r-annotationdbi" ,r-annotationdbi)
3021 ("r-biobase" ,r-biobase)
3022 ("r-biocgenerics" ,r-biocgenerics)
3023 ("r-biocio" ,r-biocio)
3024 ("r-biomart" ,r-biomart)
3025 ("r-biostrings" ,r-biostrings)
3026 ("r-dbi" ,r-dbi)
3027 ("r-genomeinfodb" ,r-genomeinfodb)
3028 ("r-genomicranges" ,r-genomicranges)
3029 ("r-iranges" ,r-iranges)
3030 ("r-rcurl" ,r-rcurl)
3031 ("r-rsqlite" ,r-rsqlite)
3032 ("r-rtracklayer" ,r-rtracklayer)
3033 ("r-s4vectors" ,r-s4vectors)
3034 ("r-xvector" ,r-xvector)))
3035 (native-inputs
3036 `(("r-knitr" ,r-knitr)))
3037 (home-page "https://bioconductor.org/packages/GenomicFeatures")
3038 (synopsis "Tools for working with transcript centric annotations")
3039 (description
3040 "This package provides a set of tools and methods for making and
3041 manipulating transcript centric annotations. With these tools the user can
3042 easily download the genomic locations of the transcripts, exons and cds of a
3043 given organism, from either the UCSC Genome Browser or a BioMart
3044 database (more sources will be supported in the future). This information is
3045 then stored in a local database that keeps track of the relationship between
3046 transcripts, exons, cds and genes. Flexible methods are provided for
3047 extracting the desired features in a convenient format.")
3048 (license license:artistic2.0)))
3049
3050 (define-public r-genomicfiles
3051 (package
3052 (name "r-genomicfiles")
3053 (version "1.28.0")
3054 (source
3055 (origin
3056 (method url-fetch)
3057 (uri (bioconductor-uri "GenomicFiles" version))
3058 (sha256
3059 (base32
3060 "1plh14m7w6calw5yxcxp7g4bg8q00ax85m517wap78bni975k13y"))))
3061 (properties `((upstream-name . "GenomicFiles")))
3062 (build-system r-build-system)
3063 (propagated-inputs
3064 `(("r-biocgenerics" ,r-biocgenerics)
3065 ("r-biocparallel" ,r-biocparallel)
3066 ("r-genomeinfodb" ,r-genomeinfodb)
3067 ("r-genomicalignments" ,r-genomicalignments)
3068 ("r-genomicranges" ,r-genomicranges)
3069 ("r-iranges" ,r-iranges)
3070 ("r-matrixgenerics" ,r-matrixgenerics)
3071 ("r-rsamtools" ,r-rsamtools)
3072 ("r-rtracklayer" ,r-rtracklayer)
3073 ("r-s4vectors" ,r-s4vectors)
3074 ("r-summarizedexperiment" ,r-summarizedexperiment)
3075 ("r-variantannotation" ,r-variantannotation)))
3076 (home-page "https://bioconductor.org/packages/GenomicFiles")
3077 (synopsis "Distributed computing by file or by range")
3078 (description
3079 "This package provides infrastructure for parallel computations
3080 distributed by file or by range. User defined mapper and reducer functions
3081 provide added flexibility for data combination and manipulation.")
3082 (license license:artistic2.0)))
3083
3084 (define-public r-genomicranges
3085 (package
3086 (name "r-genomicranges")
3087 (version "1.44.0")
3088 (source (origin
3089 (method url-fetch)
3090 (uri (bioconductor-uri "GenomicRanges" version))
3091 (sha256
3092 (base32
3093 "1qxc6dcwdlkan3hg0j9yfhz7gyi9qg671yj6zizsk6mzl7qqva0x"))))
3094 (properties
3095 `((upstream-name . "GenomicRanges")))
3096 (build-system r-build-system)
3097 (propagated-inputs
3098 `(("r-biocgenerics" ,r-biocgenerics)
3099 ("r-genomeinfodb" ,r-genomeinfodb)
3100 ("r-iranges" ,r-iranges)
3101 ("r-s4vectors" ,r-s4vectors)
3102 ("r-xvector" ,r-xvector)))
3103 (native-inputs
3104 `(("r-knitr" ,r-knitr)))
3105 (home-page "https://bioconductor.org/packages/GenomicRanges")
3106 (synopsis "Representation and manipulation of genomic intervals")
3107 (description
3108 "This package provides tools to efficiently represent and manipulate
3109 genomic annotations and alignments is playing a central role when it comes to
3110 analyzing high-throughput sequencing data (a.k.a. NGS data). The
3111 GenomicRanges package defines general purpose containers for storing and
3112 manipulating genomic intervals and variables defined along a genome.")
3113 (license license:artistic2.0)))
3114
3115 (define-public r-gostats
3116 (package
3117 (name "r-gostats")
3118 (version "2.58.0")
3119 (source
3120 (origin
3121 (method url-fetch)
3122 (uri (bioconductor-uri "GOstats" version))
3123 (sha256
3124 (base32
3125 "0jjswy6qmfgr2f6vk3y9pdvs9x91gn31h55qllgh0qb2cb26g9wa"))))
3126 (properties `((upstream-name . "GOstats")))
3127 (build-system r-build-system)
3128 (propagated-inputs
3129 `(("r-annotate" ,r-annotate)
3130 ("r-annotationdbi" ,r-annotationdbi)
3131 ("r-annotationforge" ,r-annotationforge)
3132 ("r-biobase" ,r-biobase)
3133 ("r-category" ,r-category)
3134 ("r-go-db" ,r-go-db)
3135 ("r-graph" ,r-graph)
3136 ("r-rgraphviz" ,r-rgraphviz)
3137 ("r-rbgl" ,r-rbgl)))
3138 (home-page "https://bioconductor.org/packages/GOstats")
3139 (synopsis "Tools for manipulating GO and microarrays")
3140 (description
3141 "This package provides a set of tools for interacting with GO and
3142 microarray data. A variety of basic manipulation tools for graphs, hypothesis
3143 testing and other simple calculations.")
3144 (license license:artistic2.0)))
3145
3146 (define-public r-gseabase
3147 (package
3148 (name "r-gseabase")
3149 (version "1.54.0")
3150 (source
3151 (origin
3152 (method url-fetch)
3153 (uri (bioconductor-uri "GSEABase" version))
3154 (sha256
3155 (base32
3156 "0946kkykms79mqnx262q20xzrrhv7cv723xh378335ff41qyf63n"))))
3157 (properties `((upstream-name . "GSEABase")))
3158 (build-system r-build-system)
3159 (propagated-inputs
3160 `(("r-annotate" ,r-annotate)
3161 ("r-annotationdbi" ,r-annotationdbi)
3162 ("r-biobase" ,r-biobase)
3163 ("r-biocgenerics" ,r-biocgenerics)
3164 ("r-graph" ,r-graph)
3165 ("r-xml" ,r-xml)))
3166 (native-inputs
3167 `(("r-knitr" ,r-knitr)))
3168 (home-page "https://bioconductor.org/packages/GSEABase")
3169 (synopsis "Gene set enrichment data structures and methods")
3170 (description
3171 "This package provides classes and methods to support @dfn{Gene Set
3172 Enrichment Analysis} (GSEA).")
3173 (license license:artistic2.0)))
3174
3175 (define-public r-hpar
3176 (package
3177 (name "r-hpar")
3178 (version "1.34.0")
3179 (source
3180 (origin
3181 (method url-fetch)
3182 (uri (bioconductor-uri "hpar" version))
3183 (sha256
3184 (base32
3185 "0q5pp04rq2gsh1kibvp8bvjkqc1kb46qpnj6agqp2vyqhrrfrm99"))))
3186 (build-system r-build-system)
3187 (native-inputs
3188 `(("r-knitr" ,r-knitr)))
3189 (home-page "https://bioconductor.org/packages/hpar/")
3190 (synopsis "Human Protein Atlas in R")
3191 (description "This package provides a simple interface to and data from
3192 the Human Protein Atlas project.")
3193 (license license:artistic2.0)))
3194
3195 (define-public r-rhtslib
3196 (package
3197 (name "r-rhtslib")
3198 (version "1.24.0")
3199 (source
3200 (origin
3201 (method url-fetch)
3202 (uri (bioconductor-uri "Rhtslib" version))
3203 (sha256
3204 (base32
3205 "0acpgv98529ic2i2k03knz05akb6h51wbz7sr5zgi8gk4nmawrlf"))))
3206 (properties `((upstream-name . "Rhtslib")))
3207 (build-system r-build-system)
3208 ;; Without this a temporary directory ends up in the Rhtslib.so binary,
3209 ;; which makes R abort the build.
3210 (arguments '(#:configure-flags '("--no-staged-install")))
3211 (propagated-inputs
3212 `(("curl" ,curl)
3213 ("zlib" ,zlib) ; packages using rhtslib need to link with zlib
3214 ("r-zlibbioc" ,r-zlibbioc)))
3215 (native-inputs
3216 `(("pkg-config" ,pkg-config)
3217 ("r-knitr" ,r-knitr)))
3218 (home-page "https://github.com/nhayden/Rhtslib")
3219 (synopsis "High-throughput sequencing library as an R package")
3220 (description
3221 "This package provides the HTSlib C library for high-throughput
3222 nucleotide sequence analysis. The package is primarily useful to developers
3223 of other R packages who wish to make use of HTSlib.")
3224 (license license:lgpl2.0+)))
3225
3226 (define-public r-impute
3227 (package
3228 (name "r-impute")
3229 (version "1.66.0")
3230 (source (origin
3231 (method url-fetch)
3232 (uri (bioconductor-uri "impute" version))
3233 (sha256
3234 (base32
3235 "0pprkv25avxhllddcssvqvy3nibmqkfwaq4xnlhka7858gyiyd1k"))))
3236 (native-inputs
3237 `(("gfortran" ,gfortran)))
3238 (build-system r-build-system)
3239 (home-page "https://bioconductor.org/packages/impute")
3240 (synopsis "Imputation for microarray data")
3241 (description
3242 "This package provides a function to impute missing gene expression
3243 microarray data, using nearest neighbor averaging.")
3244 (license license:gpl2+)))
3245
3246 (define-public r-interactivedisplaybase
3247 (package
3248 (name "r-interactivedisplaybase")
3249 (version "1.30.0")
3250 (source
3251 (origin
3252 (method url-fetch)
3253 (uri (bioconductor-uri "interactiveDisplayBase" version))
3254 (sha256
3255 (base32
3256 "00rgrrmglslgb6j7whp0m5dlyl4436r647br05rrpv8cxrmbs2iv"))))
3257 (properties
3258 `((upstream-name . "interactiveDisplayBase")))
3259 (build-system r-build-system)
3260 (propagated-inputs
3261 `(("r-biocgenerics" ,r-biocgenerics)
3262 ("r-dt" ,r-dt)
3263 ("r-shiny" ,r-shiny)))
3264 (native-inputs
3265 `(("r-knitr" ,r-knitr)))
3266 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
3267 (synopsis "Base package for web displays of Bioconductor objects")
3268 (description
3269 "This package contains the basic methods needed to generate interactive
3270 Shiny-based display methods for Bioconductor objects.")
3271 (license license:artistic2.0)))
3272
3273 (define-public r-keggrest
3274 (package
3275 (name "r-keggrest")
3276 (version "1.32.0")
3277 (source
3278 (origin
3279 (method url-fetch)
3280 (uri (bioconductor-uri "KEGGREST" version))
3281 (sha256
3282 (base32
3283 "15313d20v3ziyn52fhc6fbzcy1kxjkdx18124bxhdfd14f4aypcd"))))
3284 (properties `((upstream-name . "KEGGREST")))
3285 (build-system r-build-system)
3286 (propagated-inputs
3287 `(("r-biostrings" ,r-biostrings)
3288 ("r-httr" ,r-httr)
3289 ("r-png" ,r-png)))
3290 (native-inputs
3291 `(("r-knitr" ,r-knitr)))
3292 (home-page "https://bioconductor.org/packages/KEGGREST")
3293 (synopsis "Client-side REST access to KEGG")
3294 (description
3295 "This package provides a package that provides a client interface to the
3296 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
3297 (license license:artistic2.0)))
3298
3299 (define-public r-limma
3300 (package
3301 (name "r-limma")
3302 (version "3.48.0")
3303 (source (origin
3304 (method url-fetch)
3305 (uri (bioconductor-uri "limma" version))
3306 (sha256
3307 (base32
3308 "1mkpl2b1ksylc6dih4a6kgjjia8advikzmqmv762j4r7gya950pf"))))
3309 (build-system r-build-system)
3310 (home-page "http://bioinf.wehi.edu.au/limma")
3311 (synopsis "Package for linear models for microarray and RNA-seq data")
3312 (description "This package can be used for the analysis of gene expression
3313 studies, especially the use of linear models for analysing designed experiments
3314 and the assessment of differential expression. The analysis methods apply to
3315 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
3316 (license license:gpl2+)))
3317
3318 (define-public r-methylkit
3319 (package
3320 (name "r-methylkit")
3321 (version "1.18.0")
3322 (source (origin
3323 (method url-fetch)
3324 (uri (bioconductor-uri "methylKit" version))
3325 (sha256
3326 (base32
3327 "147nag4rz2xpjkkf8rmhja9k4ixjj1hsb0lq3lw7mw6q67zxsvf3"))))
3328 (properties `((upstream-name . "methylKit")))
3329 (build-system r-build-system)
3330 (propagated-inputs
3331 `(("r-data-table" ,r-data-table)
3332 ("r-emdbook" ,r-emdbook)
3333 ("r-fastseg" ,r-fastseg)
3334 ("r-genomeinfodb" ,r-genomeinfodb)
3335 ("r-genomicranges" ,r-genomicranges)
3336 ("r-gtools" ,r-gtools)
3337 ("r-iranges" ,r-iranges)
3338 ("r-kernsmooth" ,r-kernsmooth)
3339 ("r-limma" ,r-limma)
3340 ("r-mclust" ,r-mclust)
3341 ("r-mgcv" ,r-mgcv)
3342 ("r-qvalue" ,r-qvalue)
3343 ("r-r-utils" ,r-r-utils)
3344 ("r-rcpp" ,r-rcpp)
3345 ("r-rhtslib" ,r-rhtslib)
3346 ("r-rsamtools" ,r-rsamtools)
3347 ("r-rtracklayer" ,r-rtracklayer)
3348 ("r-s4vectors" ,r-s4vectors)
3349 ("r-zlibbioc" ,r-zlibbioc)))
3350 (native-inputs
3351 `(("r-knitr" ,r-knitr))) ; for vignettes
3352 (home-page "https://github.com/al2na/methylKit")
3353 (synopsis
3354 "DNA methylation analysis from high-throughput bisulfite sequencing results")
3355 (description
3356 "MethylKit is an R package for DNA methylation analysis and annotation
3357 from high-throughput bisulfite sequencing. The package is designed to deal
3358 with sequencing data from @dfn{Reduced representation bisulfite
3359 sequencing} (RRBS) and its variants, but also target-capture methods and whole
3360 genome bisulfite sequencing. It also has functions to analyze base-pair
3361 resolution 5hmC data from experimental protocols such as oxBS-Seq and
3362 TAB-Seq.")
3363 (license license:artistic2.0)))
3364
3365 (define-public r-motifrg
3366 (package
3367 (name "r-motifrg")
3368 (version "1.31.0")
3369 (source
3370 (origin
3371 (method url-fetch)
3372 (uri (bioconductor-uri "motifRG" version))
3373 (sha256
3374 (base32
3375 "1ml6zyzlk8yjbnfhga2qnw8nl43rankvka0kc1yljxr2b66aqbhn"))))
3376 (properties `((upstream-name . "motifRG")))
3377 (build-system r-build-system)
3378 (propagated-inputs
3379 `(("r-biostrings" ,r-biostrings)
3380 ("r-bsgenome" ,r-bsgenome)
3381 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
3382 ("r-iranges" ,r-iranges)
3383 ("r-seqlogo" ,r-seqlogo)
3384 ("r-xvector" ,r-xvector)))
3385 (home-page "https://bioconductor.org/packages/motifRG")
3386 (synopsis "Discover motifs in high throughput sequencing data")
3387 (description
3388 "This package provides tools for discriminative motif discovery in high
3389 throughput genetic sequencing data sets using regression methods.")
3390 (license license:artistic2.0)))
3391
3392 (define-public r-mutationalpatterns
3393 (package
3394 (name "r-mutationalpatterns")
3395 (version "3.2.0")
3396 (source
3397 (origin
3398 (method url-fetch)
3399 (uri (bioconductor-uri "MutationalPatterns" version))
3400 (sha256
3401 (base32
3402 "0433i4xbz8hrfaj8fxgzps3x8dqrl5vgwzg7qmp4cy5sb1lw5wvs"))))
3403 (build-system r-build-system)
3404 (native-inputs
3405 `(("r-knitr" ,r-knitr)))
3406 (propagated-inputs
3407 `(("r-biocgenerics" ,r-biocgenerics)
3408 ("r-biostrings" ,r-biostrings)
3409 ("r-bsgenome" ,r-bsgenome)
3410 ;; These two packages are suggested packages
3411 ("r-bsgenome-hsapiens-1000g" ,r-bsgenome-hsapiens-1000genomes-hs37d5)
3412 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
3413 ("r-cowplot" ,r-cowplot)
3414 ("r-dplyr" ,r-dplyr)
3415 ("r-genomeinfodb" ,r-genomeinfodb)
3416 ("r-genomicranges" ,r-genomicranges)
3417 ("r-ggalluvial" ,r-ggalluvial)
3418 ("r-ggdendro" ,r-ggdendro)
3419 ("r-ggplot2" ,r-ggplot2)
3420 ("r-iranges" ,r-iranges)
3421 ("r-magrittr" ,r-magrittr)
3422 ("r-nmf" ,r-nmf)
3423 ("r-pracma" ,r-pracma)
3424 ("r-purrr" ,r-purrr)
3425 ("r-s4vectors" ,r-s4vectors)
3426 ("r-stringr" ,r-stringr)
3427 ("r-tibble" ,r-tibble)
3428 ("r-tidyr" ,r-tidyr)
3429 ("r-variantannotation" ,r-variantannotation)))
3430 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
3431 (synopsis "Extract and visualize mutational patterns in genomic data")
3432 (description "This package provides an extensive toolset for the
3433 characterization and visualization of a wide range of mutational patterns
3434 in SNV base substitution data.")
3435 (license license:expat)))
3436
3437 (define-public r-msnbase
3438 (package
3439 (name "r-msnbase")
3440 (version "2.18.0")
3441 (source
3442 (origin
3443 (method url-fetch)
3444 (uri (bioconductor-uri "MSnbase" version))
3445 (sha256
3446 (base32
3447 "1z7s17j6zgb70m0khyf9icqlnbnzlivca7vw7j0vxyw417ld9lkr"))))
3448 (properties `((upstream-name . "MSnbase")))
3449 (build-system r-build-system)
3450 (propagated-inputs
3451 `(("r-affy" ,r-affy)
3452 ("r-biobase" ,r-biobase)
3453 ("r-biocgenerics" ,r-biocgenerics)
3454 ("r-biocparallel" ,r-biocparallel)
3455 ("r-digest" ,r-digest)
3456 ("r-ggplot2" ,r-ggplot2)
3457 ("r-impute" ,r-impute)
3458 ("r-iranges" ,r-iranges)
3459 ("r-lattice" ,r-lattice)
3460 ("r-maldiquant" ,r-maldiquant)
3461 ("r-mass" ,r-mass)
3462 ("r-mscoreutils" ,r-mscoreutils)
3463 ("r-mzid" ,r-mzid)
3464 ("r-mzr" ,r-mzr)
3465 ("r-pcamethods" ,r-pcamethods)
3466 ("r-plyr" ,r-plyr)
3467 ("r-protgenerics" ,r-protgenerics)
3468 ("r-rcpp" ,r-rcpp)
3469 ("r-s4vectors" ,r-s4vectors)
3470 ("r-scales" ,r-scales)
3471 ("r-vsn" ,r-vsn)
3472 ("r-xml" ,r-xml)))
3473 (native-inputs
3474 `(("r-knitr" ,r-knitr)))
3475 (home-page "https://github.com/lgatto/MSnbase")
3476 (synopsis "Base functions and classes for MS-based proteomics")
3477 (description
3478 "This package provides basic plotting, data manipulation and processing
3479 of mass spectrometry based proteomics data.")
3480 (license license:artistic2.0)))
3481
3482 (define-public r-msnid
3483 (package
3484 (name "r-msnid")
3485 (version "1.26.0")
3486 (source
3487 (origin
3488 (method url-fetch)
3489 (uri (bioconductor-uri "MSnID" version))
3490 (sha256
3491 (base32
3492 "0r3vgigf4fk0xzfg8gcvad01jdh0fysh6x22m9qy77x6glyrxcj2"))))
3493 (properties `((upstream-name . "MSnID")))
3494 (build-system r-build-system)
3495 (arguments
3496 `(#:phases
3497 (modify-phases %standard-phases
3498 (add-after 'unpack 'set-HOME
3499 (lambda _ (setenv "HOME" "/tmp"))))))
3500 (propagated-inputs
3501 `(("r-annotationdbi" ,r-annotationdbi)
3502 ("r-annotationhub" ,r-annotationhub)
3503 ("r-biobase" ,r-biobase)
3504 ("r-biocgenerics" ,r-biocgenerics)
3505 ("r-biocstyle" ,r-biocstyle)
3506 ("r-biostrings" ,r-biostrings)
3507 ("r-data-table" ,r-data-table)
3508 ("r-doparallel" ,r-doparallel)
3509 ("r-dplyr" ,r-dplyr)
3510 ("r-foreach" ,r-foreach)
3511 ("r-ggplot2" ,r-ggplot2)
3512 ("r-iterators" ,r-iterators)
3513 ("r-msnbase" ,r-msnbase)
3514 ("r-msmstests" ,r-msmstests)
3515 ("r-mzid" ,r-mzid)
3516 ("r-mzr" ,r-mzr)
3517 ("r-protgenerics" ,r-protgenerics)
3518 ("r-purrr" ,r-purrr)
3519 ("r-r-cache" ,r-r-cache)
3520 ("r-rcpp" ,r-rcpp)
3521 ("r-reshape2" ,r-reshape2)
3522 ("r-rlang" ,r-rlang)
3523 ("r-runit" ,r-runit)
3524 ("r-stringr" ,r-stringr)
3525 ("r-tibble" ,r-tibble)
3526 ("r-xtable" ,r-xtable)))
3527 (home-page "https://bioconductor.org/packages/MSnID")
3528 (synopsis "Utilities for LC-MSn proteomics identifications")
3529 (description
3530 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
3531 from mzIdentML (leveraging the mzID package) or text files. After collating
3532 the search results from multiple datasets it assesses their identification
3533 quality and optimize filtering criteria to achieve the maximum number of
3534 identifications while not exceeding a specified false discovery rate. It also
3535 contains a number of utilities to explore the MS/MS results and assess missed
3536 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
3537 (license license:artistic2.0)))
3538
3539 (define-public r-mzid
3540 (package
3541 (name "r-mzid")
3542 (version "1.30.0")
3543 (source
3544 (origin
3545 (method url-fetch)
3546 (uri (bioconductor-uri "mzID" version))
3547 (sha256
3548 (base32
3549 "1wsy6frxa5602jqb1nlqv39mzgpid8wfyvb9m2jb6srv7p59rgys"))))
3550 (properties `((upstream-name . "mzID")))
3551 (build-system r-build-system)
3552 (propagated-inputs
3553 `(("r-doparallel" ,r-doparallel)
3554 ("r-foreach" ,r-foreach)
3555 ("r-iterators" ,r-iterators)
3556 ("r-plyr" ,r-plyr)
3557 ("r-protgenerics" ,r-protgenerics)
3558 ("r-xml" ,r-xml)))
3559 (native-inputs
3560 `(("r-knitr" ,r-knitr)))
3561 (home-page "https://bioconductor.org/packages/mzID")
3562 (synopsis "Parser for mzIdentML files")
3563 (description
3564 "This package provides a parser for mzIdentML files implemented using the
3565 XML package. The parser tries to be general and able to handle all types of
3566 mzIdentML files with the drawback of having less pretty output than a vendor
3567 specific parser.")
3568 (license license:gpl2+)))
3569
3570 (define-public r-mzr
3571 (package
3572 (name "r-mzr")
3573 (version "2.26.0")
3574 (source
3575 (origin
3576 (method url-fetch)
3577 (uri (bioconductor-uri "mzR" version))
3578 (sha256
3579 (base32
3580 "1m5xvnv0rxyrfri4jwyyryr13d55nyhqvfc5xxg5mpskw2v029kp"))
3581 (modules '((guix build utils)))
3582 (snippet
3583 '(begin
3584 (delete-file-recursively "src/boost")
3585 #t))))
3586 (properties `((upstream-name . "mzR")))
3587 (build-system r-build-system)
3588 (arguments
3589 `(#:phases
3590 (modify-phases %standard-phases
3591 (add-after 'unpack 'use-system-boost
3592 (lambda _
3593 (substitute* "src/Makevars"
3594 (("\\./boost/libs.*") "")
3595 (("PKG_LIBS=") "PKG_LIBS=$(BOOST_LIBS) ")
3596 (("\\ARCH_OBJS=" line)
3597 (string-append line
3598 "\nBOOST_LIBS=-lboost_system -lboost_regex \
3599 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n")))
3600 #t)))))
3601 (inputs
3602 `(;; Our default boost package won't work here, unfortunately, even with
3603 ;; mzR version 2.26.0.
3604 ("boost" ,boost-for-mysql) ; use this instead of the bundled boost sources
3605 ("zlib" ,zlib)))
3606 (propagated-inputs
3607 `(("r-biobase" ,r-biobase)
3608 ("r-biocgenerics" ,r-biocgenerics)
3609 ("r-ncdf4" ,r-ncdf4)
3610 ("r-protgenerics" ,r-protgenerics)
3611 ("r-rcpp" ,r-rcpp)
3612 ("r-rhdf5lib" ,r-rhdf5lib)
3613 ("r-zlibbioc" ,r-zlibbioc)))
3614 (native-inputs
3615 `(("r-knitr" ,r-knitr)))
3616 (home-page "https://github.com/sneumann/mzR/")
3617 (synopsis "Parser for mass spectrometry data files")
3618 (description
3619 "The mzR package provides a unified API to the common file formats and
3620 parsers available for mass spectrometry data. It comes with a wrapper for the
3621 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
3622 The package contains the original code written by the ISB, and a subset of the
3623 proteowizard library for mzML and mzIdentML. The netCDF reading code has
3624 previously been used in XCMS.")
3625 (license license:artistic2.0)))
3626
3627 (define-public r-organismdbi
3628 (package
3629 (name "r-organismdbi")
3630 (version "1.34.0")
3631 (source
3632 (origin
3633 (method url-fetch)
3634 (uri (bioconductor-uri "OrganismDbi" version))
3635 (sha256
3636 (base32
3637 "0p8ccpdchdwci4kv9y07wdadzgms8nipvg6rm1rll35jcflnnkxi"))))
3638 (properties `((upstream-name . "OrganismDbi")))
3639 (build-system r-build-system)
3640 (propagated-inputs
3641 `(("r-annotationdbi" ,r-annotationdbi)
3642 ("r-biobase" ,r-biobase)
3643 ("r-biocgenerics" ,r-biocgenerics)
3644 ("r-biocmanager" ,r-biocmanager)
3645 ("r-dbi" ,r-dbi)
3646 ("r-genomicfeatures" ,r-genomicfeatures)
3647 ("r-genomicranges" ,r-genomicranges)
3648 ("r-graph" ,r-graph)
3649 ("r-iranges" ,r-iranges)
3650 ("r-rbgl" ,r-rbgl)
3651 ("r-s4vectors" ,r-s4vectors)))
3652 (home-page "https://bioconductor.org/packages/OrganismDbi")
3653 (synopsis "Software to enable the smooth interfacing of database packages")
3654 (description "The package enables a simple unified interface to several
3655 annotation packages each of which has its own schema by taking advantage of
3656 the fact that each of these packages implements a select methods.")
3657 (license license:artistic2.0)))
3658
3659 (define-public r-pcamethods
3660 (package
3661 (name "r-pcamethods")
3662 (version "1.84.0")
3663 (source
3664 (origin
3665 (method url-fetch)
3666 (uri (bioconductor-uri "pcaMethods" version))
3667 (sha256
3668 (base32
3669 "1ccqsxn487dy92c2d1iffh9917z4zq5ia92zv2h6pi00jjc6ymb5"))))
3670 (properties `((upstream-name . "pcaMethods")))
3671 (build-system r-build-system)
3672 (propagated-inputs
3673 `(("r-biobase" ,r-biobase)
3674 ("r-biocgenerics" ,r-biocgenerics)
3675 ("r-mass" ,r-mass)
3676 ("r-rcpp" ,r-rcpp)))
3677 (home-page "https://github.com/hredestig/pcamethods")
3678 (synopsis "Collection of PCA methods")
3679 (description
3680 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
3681 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
3682 for missing value estimation is included for comparison. BPCA, PPCA and
3683 NipalsPCA may be used to perform PCA on incomplete data as well as for
3684 accurate missing value estimation. A set of methods for printing and plotting
3685 the results is also provided. All PCA methods make use of the same data
3686 structure (pcaRes) to provide a common interface to the PCA results.")
3687 (license license:gpl3+)))
3688
3689 (define-public r-protgenerics
3690 (package
3691 (name "r-protgenerics")
3692 (version "1.24.0")
3693 (source
3694 (origin
3695 (method url-fetch)
3696 (uri (bioconductor-uri "ProtGenerics" version))
3697 (sha256
3698 (base32
3699 "1c79k8nc28782w5gxi7pkm8jmddq1hdw6khs9kgsp8dyk60ak6fq"))))
3700 (properties `((upstream-name . "ProtGenerics")))
3701 (build-system r-build-system)
3702 (home-page "https://github.com/lgatto/ProtGenerics")
3703 (synopsis "S4 generic functions for proteomics infrastructure")
3704 (description
3705 "This package provides S4 generic functions needed by Bioconductor
3706 proteomics packages.")
3707 (license license:artistic2.0)))
3708
3709 (define-public r-rbgl
3710 (package
3711 (name "r-rbgl")
3712 (version "1.68.0")
3713 (source
3714 (origin
3715 (method url-fetch)
3716 (uri (bioconductor-uri "RBGL" version))
3717 (sha256
3718 (base32
3719 "0l40ibf8g5s4ay83s92l198jjqc5l09hcmxqcjrpifvp5pjf9yy5"))))
3720 (properties `((upstream-name . "RBGL")))
3721 (build-system r-build-system)
3722 (propagated-inputs
3723 `(("r-bh" ,r-bh)
3724 ("r-graph" ,r-graph)))
3725 (home-page "https://www.bioconductor.org/packages/RBGL")
3726 (synopsis "Interface to the Boost graph library")
3727 (description
3728 "This package provides a fairly extensive and comprehensive interface to
3729 the graph algorithms contained in the Boost library.")
3730 (license license:artistic2.0)))
3731
3732 (define-public r-rcas
3733 (package
3734 (name "r-rcas")
3735 (version "1.18.0")
3736 (source (origin
3737 (method url-fetch)
3738 (uri (bioconductor-uri "RCAS" version))
3739 (sha256
3740 (base32
3741 "0l92v870ndna8zjqwzf22fb9vyhkh6942v4gaiqr1yc4qr521p5p"))))
3742 (properties `((upstream-name . "RCAS")))
3743 (build-system r-build-system)
3744 (propagated-inputs
3745 `(("r-biocgenerics" ,r-biocgenerics)
3746 ("r-biostrings" ,r-biostrings)
3747 ("r-bsgenome" ,r-bsgenome)
3748 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
3749 ("r-cowplot" ,r-cowplot)
3750 ("r-data-table" ,r-data-table)
3751 ("r-dt" ,r-dt)
3752 ("r-genomation" ,r-genomation)
3753 ("r-genomeinfodb" ,r-genomeinfodb)
3754 ("r-genomicfeatures" ,r-genomicfeatures)
3755 ("r-genomicranges" ,r-genomicranges)
3756 ("r-ggplot2" ,r-ggplot2)
3757 ("r-ggseqlogo" ,r-ggseqlogo)
3758 ("r-gprofiler2" ,r-gprofiler2)
3759 ("r-iranges" ,r-iranges)
3760 ("r-knitr" ,r-knitr)
3761 ("r-pbapply" ,r-pbapply)
3762 ("r-pheatmap" ,r-pheatmap)
3763 ("r-plotly" ,r-plotly)
3764 ("r-plotrix" ,r-plotrix)
3765 ("r-proxy" ,r-proxy)
3766 ("r-ranger" ,r-ranger)
3767 ("r-rsqlite" ,r-rsqlite)
3768 ("r-rtracklayer" ,r-rtracklayer)
3769 ("r-rmarkdown" ,r-rmarkdown)
3770 ("r-s4vectors" ,r-s4vectors)
3771 ("pandoc" ,pandoc)))
3772 (native-inputs
3773 `(("r-knitr" ,r-knitr)))
3774 (synopsis "RNA-centric annotation system")
3775 (description
3776 "RCAS aims to be a standalone RNA-centric annotation system that provides
3777 intuitive reports and publication-ready graphics. This package provides the R
3778 library implementing most of the pipeline's features.")
3779 (home-page "https://github.com/BIMSBbioinfo/RCAS")
3780 (license license:artistic2.0)))
3781
3782 (define-public r-regioner
3783 (package
3784 (name "r-regioner")
3785 (version "1.24.0")
3786 (source
3787 (origin
3788 (method url-fetch)
3789 (uri (bioconductor-uri "regioneR" version))
3790 (sha256
3791 (base32
3792 "0xzzaz3cl6pyxfsg0d931v8k15wbd05s5mnsb7igxldc5qqg3nsl"))))
3793 (properties `((upstream-name . "regioneR")))
3794 (build-system r-build-system)
3795 (propagated-inputs
3796 `(("r-biostrings" ,r-biostrings)
3797 ("r-bsgenome" ,r-bsgenome)
3798 ("r-genomeinfodb" ,r-genomeinfodb)
3799 ("r-genomicranges" ,r-genomicranges)
3800 ("r-iranges" ,r-iranges)
3801 ("r-memoise" ,r-memoise)
3802 ("r-rtracklayer" ,r-rtracklayer)
3803 ("r-s4vectors" ,r-s4vectors)))
3804 (native-inputs
3805 `(("r-knitr" ,r-knitr)))
3806 (home-page "https://bioconductor.org/packages/regioneR/")
3807 (synopsis "Association analysis of genomic regions")
3808 (description "This package offers a statistical framework based on
3809 customizable permutation tests to assess the association between genomic
3810 region sets and other genomic features.")
3811 (license license:artistic2.0)))
3812
3813 (define-public r-reportingtools
3814 (package
3815 (name "r-reportingtools")
3816 (version "2.32.0")
3817 (source
3818 (origin
3819 (method url-fetch)
3820 (uri (bioconductor-uri "ReportingTools" version))
3821 (sha256
3822 (base32
3823 "0v6wzfswwcd1xdxgwa9gzlkmavr4p55jy11k84anh0rs0xx3dmmj"))))
3824 (properties
3825 `((upstream-name . "ReportingTools")))
3826 (build-system r-build-system)
3827 (propagated-inputs
3828 `(("r-annotate" ,r-annotate)
3829 ("r-annotationdbi" ,r-annotationdbi)
3830 ("r-biobase" ,r-biobase)
3831 ("r-biocgenerics" ,r-biocgenerics)
3832 ("r-category" ,r-category)
3833 ("r-deseq2" ,r-deseq2)
3834 ("r-edger" ,r-edger)
3835 ("r-ggbio" ,r-ggbio)
3836 ("r-ggplot2" ,r-ggplot2)
3837 ("r-gostats" ,r-gostats)
3838 ("r-gseabase" ,r-gseabase)
3839 ("r-hwriter" ,r-hwriter)
3840 ("r-iranges" ,r-iranges)
3841 ("r-knitr" ,r-knitr)
3842 ("r-lattice" ,r-lattice)
3843 ("r-limma" ,r-limma)
3844 ("r-pfam-db" ,r-pfam-db)
3845 ("r-r-utils" ,r-r-utils)
3846 ("r-xml" ,r-xml)))
3847 (native-inputs
3848 `(("r-knitr" ,r-knitr)))
3849 (home-page "https://bioconductor.org/packages/ReportingTools/")
3850 (synopsis "Tools for making reports in various formats")
3851 (description
3852 "The ReportingTools package enables users to easily display reports of
3853 analysis results generated from sources such as microarray and sequencing
3854 data. The package allows users to create HTML pages that may be viewed on a
3855 web browser, or in other formats. Users can generate tables with sortable and
3856 filterable columns, make and display plots, and link table entries to other
3857 data sources such as NCBI or larger plots within the HTML page. Using the
3858 package, users can also produce a table of contents page to link various
3859 reports together for a particular project that can be viewed in a web
3860 browser.")
3861 (license license:artistic2.0)))
3862
3863 (define-public r-rhdf5
3864 (package
3865 (name "r-rhdf5")
3866 (version "2.36.0")
3867 (source (origin
3868 (method url-fetch)
3869 (uri (bioconductor-uri "rhdf5" version))
3870 (sha256
3871 (base32
3872 "1a5kw9ry9cr258al0x3q0ss5xn1ymscdypx51vzzgzamhy7dqakz"))))
3873 (build-system r-build-system)
3874 (propagated-inputs
3875 `(("r-rhdf5filters" ,r-rhdf5filters)
3876 ("r-rhdf5lib" ,r-rhdf5lib)))
3877 (native-inputs
3878 `(("r-knitr" ,r-knitr)))
3879 (home-page "https://bioconductor.org/packages/rhdf5")
3880 (synopsis "HDF5 interface to R")
3881 (description
3882 "This R/Bioconductor package provides an interface between HDF5 and R.
3883 HDF5's main features are the ability to store and access very large and/or
3884 complex datasets and a wide variety of metadata on mass storage (disk) through
3885 a completely portable file format. The rhdf5 package is thus suited for the
3886 exchange of large and/or complex datasets between R and other software
3887 package, and for letting R applications work on datasets that are larger than
3888 the available RAM.")
3889 (license license:artistic2.0)))
3890
3891 (define-public r-rhdf5filters
3892 (package
3893 (name "r-rhdf5filters")
3894 (version "1.4.0")
3895 (source
3896 (origin
3897 (method url-fetch)
3898 (uri (bioconductor-uri "rhdf5filters" version))
3899 (sha256
3900 (base32
3901 "133v0s452acspi4dbf6gsa2xrr0qza86jdjjbpwhdv6zfd1djbgc"))))
3902 (properties `((upstream-name . "rhdf5filters")))
3903 (build-system r-build-system)
3904 (propagated-inputs
3905 `(("r-rhdf5lib" ,r-rhdf5lib)))
3906 (inputs
3907 `(("zlib" ,zlib)))
3908 (native-inputs
3909 `(("r-knitr" ,r-knitr)))
3910 (home-page "https://github.com/grimbough/rhdf5filters")
3911 (synopsis "HDF5 compression filters")
3912 (description
3913 "This package provides a collection of compression filters for use with
3914 HDF5 datasets.")
3915 (license license:bsd-2)))
3916
3917 (define-public r-rsamtools
3918 (package
3919 (name "r-rsamtools")
3920 (version "2.8.0")
3921 (source (origin
3922 (method url-fetch)
3923 (uri (bioconductor-uri "Rsamtools" version))
3924 (sha256
3925 (base32
3926 "0arhh5bbx3pmxmkh5sjgczcswqy83d35r7cjhd2knpczdvrixaq5"))))
3927 (properties
3928 `((upstream-name . "Rsamtools")))
3929 (build-system r-build-system)
3930 (arguments
3931 `(#:phases
3932 (modify-phases %standard-phases
3933 (add-after 'unpack 'use-system-zlib
3934 (lambda _
3935 (substitute* "DESCRIPTION"
3936 (("zlibbioc, ") ""))
3937 (substitute* "NAMESPACE"
3938 (("import\\(zlibbioc\\)") "")))))))
3939 (propagated-inputs
3940 `(("r-biocgenerics" ,r-biocgenerics)
3941 ("r-biocparallel" ,r-biocparallel)
3942 ("r-biostrings" ,r-biostrings)
3943 ("r-bitops" ,r-bitops)
3944 ("r-genomeinfodb" ,r-genomeinfodb)
3945 ("r-genomicranges" ,r-genomicranges)
3946 ("r-iranges" ,r-iranges)
3947 ("r-rhtslib" ,r-rhtslib)
3948 ("r-s4vectors" ,r-s4vectors)
3949 ("r-xvector" ,r-xvector)))
3950 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
3951 (synopsis "Interface to samtools, bcftools, and tabix")
3952 (description
3953 "This package provides an interface to the @code{samtools},
3954 @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence
3955 Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
3956 tab-delimited (tabix) files.")
3957 (license license:expat)))
3958
3959 ;; This is a CRAN package, but it depends on a Bioconductor package:
3960 ;; s4vectors.
3961 (define-public r-restfulr
3962 (package
3963 (name "r-restfulr")
3964 (version "0.0.13")
3965 (source
3966 (origin
3967 (method url-fetch)
3968 (uri (cran-uri "restfulr" version))
3969 (sha256
3970 (base32
3971 "1dk45mzrr6ka92yjz7hfhkj12kpx1wg4szv1h1mg80mgga4ganbv"))))
3972 (properties `((upstream-name . "restfulr")))
3973 (build-system r-build-system)
3974 (propagated-inputs
3975 `(("r-rcurl" ,r-rcurl)
3976 ("r-rjson" ,r-rjson)
3977 ("r-s4vectors" ,r-s4vectors)
3978 ("r-xml" ,r-xml)
3979 ("r-yaml" ,r-yaml)))
3980 (home-page "https://cran.r-project.org/package=restfulr")
3981 (synopsis "R interface to RESTful web services")
3982 (description
3983 "This package models a RESTful service as if it were a nested R list.")
3984 (license license:artistic2.0)))
3985
3986 (define-public r-rtracklayer
3987 (package
3988 (name "r-rtracklayer")
3989 (version "1.52.0")
3990 (source (origin
3991 (method url-fetch)
3992 (uri (bioconductor-uri "rtracklayer" version))
3993 (sha256
3994 (base32
3995 "0iic0g0clsjd9ypdmfs6k52hrnmfszhxzg0xx89nszpasf69wghv"))))
3996 (build-system r-build-system)
3997 (arguments
3998 `(#:phases
3999 (modify-phases %standard-phases
4000 (add-after 'unpack 'use-system-zlib
4001 (lambda _
4002 (substitute* "DESCRIPTION"
4003 ((" zlibbioc,") ""))
4004 (substitute* "NAMESPACE"
4005 (("import\\(zlibbioc\\)") "")))))))
4006 (native-inputs
4007 `(("pkg-config" ,pkg-config)))
4008 (inputs
4009 `(("zlib" ,zlib)))
4010 (propagated-inputs
4011 `(("r-biocgenerics" ,r-biocgenerics)
4012 ("r-biocio" ,r-biocio)
4013 ("r-biostrings" ,r-biostrings)
4014 ("r-genomeinfodb" ,r-genomeinfodb)
4015 ("r-genomicalignments" ,r-genomicalignments)
4016 ("r-genomicranges" ,r-genomicranges)
4017 ("r-iranges" ,r-iranges)
4018 ("r-rcurl" ,r-rcurl)
4019 ("r-restfulr" ,r-restfulr)
4020 ("r-rsamtools" ,r-rsamtools)
4021 ("r-s4vectors" ,r-s4vectors)
4022 ("r-xml" ,r-xml)
4023 ("r-xvector" ,r-xvector)
4024 ("r-zlibbioc" ,r-zlibbioc)))
4025 (home-page "https://bioconductor.org/packages/rtracklayer")
4026 (synopsis "R interface to genome browsers and their annotation tracks")
4027 (description
4028 "rtracklayer is an extensible framework for interacting with multiple
4029 genome browsers (currently UCSC built-in) and manipulating annotation tracks
4030 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
4031 built-in). The user may export/import tracks to/from the supported browsers,
4032 as well as query and modify the browser state, such as the current viewport.")
4033 (license license:artistic2.0)))
4034
4035 ;; This is a CRAN package, but it depends on a Bioconductor package.
4036 (define-public r-samr
4037 (package
4038 (name "r-samr")
4039 (version "3.0")
4040 (source
4041 (origin
4042 (method url-fetch)
4043 (uri (cran-uri "samr" version))
4044 (sha256
4045 (base32
4046 "01km0f7qgm73x19vbvsxl083hs1dq4dj8qm5h64cxbf20b08my15"))))
4047 (properties `((upstream-name . "samr")))
4048 (build-system r-build-system)
4049 (propagated-inputs
4050 `(("r-gsa" ,r-gsa)
4051 ("r-impute" ,r-impute)
4052 ("r-matrixstats" ,r-matrixstats)
4053 ("r-openxlsx" ,r-openxlsx)
4054 ("r-shiny" ,r-shiny)
4055 ("r-shinyfiles" ,r-shinyfiles)))
4056 (native-inputs `(("gfortran" ,gfortran)))
4057 (home-page "https://statweb.stanford.edu/~tibs/SAM/")
4058 (synopsis "Significance analysis of Microarrays")
4059 (description
4060 "This is a package for significance analysis of Microarrays for
4061 differential expression analysis, RNAseq data and related problems.")
4062 ;; Any version of the LGPL
4063 (license license:lgpl3+)))
4064
4065 (define-public r-seqlogo
4066 (package
4067 (name "r-seqlogo")
4068 (version "1.58.0")
4069 (source
4070 (origin
4071 (method url-fetch)
4072 (uri (bioconductor-uri "seqLogo" version))
4073 (sha256
4074 (base32
4075 "1253sj1hc6bbrff0iv5xa3v9znqvisll0fy6fdjka9c778fn4mcp"))))
4076 (properties `((upstream-name . "seqLogo")))
4077 (build-system r-build-system)
4078 (native-inputs
4079 `(("r-knitr" ,r-knitr)))
4080 (home-page "https://bioconductor.org/packages/seqLogo")
4081 (synopsis "Sequence logos for DNA sequence alignments")
4082 (description
4083 "seqLogo takes the position weight matrix of a DNA sequence motif and
4084 plots the corresponding sequence logo as introduced by Schneider and
4085 Stephens (1990).")
4086 (license license:lgpl2.0+)))
4087
4088 (define-public r-seqpattern
4089 (package
4090 (name "r-seqpattern")
4091 (version "1.24.0")
4092 (source (origin
4093 (method url-fetch)
4094 (uri (bioconductor-uri "seqPattern" version))
4095 (sha256
4096 (base32
4097 "0h74z84zyvfzclsm0g13b95hirn99185wc6lp53jkzah9yyi59ay"))))
4098 (properties
4099 `((upstream-name . "seqPattern")))
4100 (build-system r-build-system)
4101 (propagated-inputs
4102 `(("r-biostrings" ,r-biostrings)
4103 ("r-genomicranges" ,r-genomicranges)
4104 ("r-iranges" ,r-iranges)
4105 ("r-kernsmooth" ,r-kernsmooth)
4106 ("r-plotrix" ,r-plotrix)))
4107 (home-page "https://bioconductor.org/packages/seqPattern")
4108 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
4109 (description
4110 "This package provides tools to visualize oligonucleotide patterns and
4111 sequence motif occurrences across a large set of sequences centred at a common
4112 reference point and sorted by a user defined feature.")
4113 (license license:gpl3+)))
4114
4115 (define-public r-shortread
4116 (package
4117 (name "r-shortread")
4118 (version "1.50.0")
4119 (source
4120 (origin
4121 (method url-fetch)
4122 (uri (bioconductor-uri "ShortRead" version))
4123 (sha256
4124 (base32
4125 "0zqinw3c6h5v1c5nhzkiziirws16nbviccgw8nj2d22r33dbqwp3"))))
4126 (properties `((upstream-name . "ShortRead")))
4127 (build-system r-build-system)
4128 (inputs
4129 `(("zlib" ,zlib)))
4130 (propagated-inputs
4131 `(("r-biobase" ,r-biobase)
4132 ("r-biocgenerics" ,r-biocgenerics)
4133 ("r-biocparallel" ,r-biocparallel)
4134 ("r-biostrings" ,r-biostrings)
4135 ("r-genomeinfodb" ,r-genomeinfodb)
4136 ("r-genomicalignments" ,r-genomicalignments)
4137 ("r-genomicranges" ,r-genomicranges)
4138 ("r-rhtslib" ,r-rhtslib)
4139 ("r-hwriter" ,r-hwriter)
4140 ("r-iranges" ,r-iranges)
4141 ("r-lattice" ,r-lattice)
4142 ("r-latticeextra" ,r-latticeextra)
4143 ("r-rsamtools" ,r-rsamtools)
4144 ("r-s4vectors" ,r-s4vectors)
4145 ("r-xvector" ,r-xvector)
4146 ("r-zlibbioc" ,r-zlibbioc)))
4147 (home-page "https://bioconductor.org/packages/ShortRead")
4148 (synopsis "FASTQ input and manipulation tools")
4149 (description
4150 "This package implements sampling, iteration, and input of FASTQ files.
4151 It includes functions for filtering and trimming reads, and for generating a
4152 quality assessment report. Data are represented as
4153 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
4154 purposes. The package also contains legacy support for early single-end,
4155 ungapped alignment formats.")
4156 (license license:artistic2.0)))
4157
4158 (define-public r-trajectoryutils
4159 (package
4160 (name "r-trajectoryutils")
4161 (version "1.0.0")
4162 (source
4163 (origin
4164 (method url-fetch)
4165 (uri (bioconductor-uri "TrajectoryUtils" version))
4166 (sha256
4167 (base32
4168 "1b7mg3ypp1ay98cav47h9vn692lx0n9b5b0hpansgnkr5prb823b"))))
4169 (properties
4170 `((upstream-name . "TrajectoryUtils")))
4171 (build-system r-build-system)
4172 (propagated-inputs
4173 `(("r-igraph" ,r-igraph)
4174 ("r-matrix" ,r-matrix)
4175 ("r-s4vectors" ,r-s4vectors)
4176 ("r-singlecellexperiment" ,r-singlecellexperiment)
4177 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4178 (native-inputs `(("r-knitr" ,r-knitr)))
4179 (home-page "https://bioconductor.org/packages/TrajectoryUtils")
4180 (synopsis "Single-cell trajectory analysis utilities")
4181 (description
4182 "This package implements low-level utilities for single-cell trajectory
4183 analysis, primarily intended for re-use inside higher-level packages. It
4184 includes a function to create a cluster-level minimum spanning tree and data
4185 structures to hold pseudotime inference results.")
4186 (license license:gpl3)))
4187
4188 (define-public r-slingshot
4189 (package
4190 (name "r-slingshot")
4191 (version "2.0.0")
4192 (source (origin
4193 (method url-fetch)
4194 (uri (bioconductor-uri "slingshot" version))
4195 (sha256
4196 (base32
4197 "1aqsz2kxwax8d8d5iv3zk5hlyk5aya1wbxs1wky2rgccw4d35whx"))))
4198 (build-system r-build-system)
4199 (propagated-inputs
4200 `(("r-igraph" ,r-igraph)
4201 ("r-matrixstats" ,r-matrixstats)
4202 ("r-princurve" ,r-princurve)
4203 ("r-s4vectors" ,r-s4vectors)
4204 ("r-singlecellexperiment" ,r-singlecellexperiment)
4205 ("r-summarizedexperiment" ,r-summarizedexperiment)
4206 ("r-trajectoryutils" ,r-trajectoryutils)))
4207 (native-inputs
4208 `(("r-knitr" ,r-knitr)))
4209 (home-page "https://bioconductor.org/packages/slingshot")
4210 (synopsis "Tools for ordering single-cell sequencing")
4211 (description "This package provides functions for inferring continuous,
4212 branching lineage structures in low-dimensional data. Slingshot was designed
4213 to model developmental trajectories in single-cell RNA sequencing data and
4214 serve as a component in an analysis pipeline after dimensionality reduction
4215 and clustering. It is flexible enough to handle arbitrarily many branching
4216 events and allows for the incorporation of prior knowledge through supervised
4217 graph construction.")
4218 (license license:artistic2.0)))
4219
4220 (define-public r-structuralvariantannotation
4221 (package
4222 (name "r-structuralvariantannotation")
4223 (version "1.8.0")
4224 (source
4225 (origin
4226 (method url-fetch)
4227 (uri (bioconductor-uri "StructuralVariantAnnotation" version))
4228 (sha256
4229 (base32
4230 "10h63h1v87nvm3bfyr6dsjlbmzxf1vks30d0xz6q4hssqq9xlzgv"))))
4231 (build-system r-build-system)
4232 (propagated-inputs
4233 `(("r-assertthat" ,r-assertthat)
4234 ("r-biocgenerics" ,r-biocgenerics)
4235 ("r-biostrings" ,r-biostrings)
4236 ("r-dplyr" ,r-dplyr)
4237 ("r-genomicranges" ,r-genomicranges)
4238 ("r-rlang" ,r-rlang)
4239 ("r-rtracklayer" ,r-rtracklayer)
4240 ("r-stringr" ,r-stringr)
4241 ("r-variantannotation" ,r-variantannotation)))
4242 (native-inputs
4243 `(("r-knitr" ,r-knitr)))
4244 (home-page "https://bioconductor.org/packages/StructuralVariantAnnotation/")
4245 (synopsis "R package designed to simplify structural variant analysis")
4246 (description
4247 "This package contains useful helper functions for dealing with structural
4248 variants in VCF format. The packages contains functions for parsing VCFs from
4249 a number of popular callers as well as functions for dealing with breakpoints
4250 involving two separate genomic loci encoded as GRanges objects.")
4251 (license license:gpl3)))
4252
4253 (define-public r-summarizedexperiment
4254 (package
4255 (name "r-summarizedexperiment")
4256 (version "1.22.0")
4257 (source (origin
4258 (method url-fetch)
4259 (uri (bioconductor-uri "SummarizedExperiment" version))
4260 (sha256
4261 (base32
4262 "16np5ik6jgbi68mhlib6yskywwbaa50mlr7m3sh1hqk889whfn1g"))))
4263 (properties
4264 `((upstream-name . "SummarizedExperiment")))
4265 (build-system r-build-system)
4266 (propagated-inputs
4267 `(("r-biobase" ,r-biobase)
4268 ("r-biocgenerics" ,r-biocgenerics)
4269 ("r-delayedarray" ,r-delayedarray)
4270 ("r-genomeinfodb" ,r-genomeinfodb)
4271 ("r-genomicranges" ,r-genomicranges)
4272 ("r-iranges" ,r-iranges)
4273 ("r-matrix" ,r-matrix)
4274 ("r-matrixgenerics" ,r-matrixgenerics)
4275 ("r-s4vectors" ,r-s4vectors)))
4276 (native-inputs
4277 `(("r-knitr" ,r-knitr)))
4278 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
4279 (synopsis "Container for representing genomic ranges by sample")
4280 (description
4281 "The SummarizedExperiment container contains one or more assays, each
4282 represented by a matrix-like object of numeric or other mode. The rows
4283 typically represent genomic ranges of interest and the columns represent
4284 samples.")
4285 (license license:artistic2.0)))
4286
4287 (define-public r-sva
4288 (package
4289 (name "r-sva")
4290 (version "3.40.0")
4291 (source
4292 (origin
4293 (method url-fetch)
4294 (uri (bioconductor-uri "sva" version))
4295 (sha256
4296 (base32
4297 "12jkcybdfspabh7x124d44l9fj1hwwg3gvcqxvz5wpkiflc2vkji"))))
4298 (build-system r-build-system)
4299 (propagated-inputs
4300 `(("r-edger" ,r-edger)
4301 ("r-genefilter" ,r-genefilter)
4302 ("r-mgcv" ,r-mgcv)
4303 ("r-biocparallel" ,r-biocparallel)
4304 ("r-matrixstats" ,r-matrixstats)
4305 ("r-limma" ,r-limma)))
4306 (home-page "https://bioconductor.org/packages/sva")
4307 (synopsis "Surrogate variable analysis")
4308 (description
4309 "This package contains functions for removing batch effects and other
4310 unwanted variation in high-throughput experiment. It also contains functions
4311 for identifying and building surrogate variables for high-dimensional data
4312 sets. Surrogate variables are covariates constructed directly from
4313 high-dimensional data like gene expression/RNA sequencing/methylation/brain
4314 imaging data that can be used in subsequent analyses to adjust for unknown,
4315 unmodeled, or latent sources of noise.")
4316 (license license:artistic2.0)))
4317
4318 (define-public r-systempiper
4319 (package
4320 (name "r-systempiper")
4321 (version "1.26.2")
4322 (source
4323 (origin
4324 (method url-fetch)
4325 (uri (bioconductor-uri "systemPipeR" version))
4326 (sha256
4327 (base32
4328 "1apqi5ih06s37v7wpp13ybksiinrwj0ii6mx6vvvfkb6ix0wljws"))))
4329 (properties `((upstream-name . "systemPipeR")))
4330 (build-system r-build-system)
4331 (propagated-inputs
4332 `(("r-annotate" ,r-annotate)
4333 ("r-assertthat" ,r-assertthat)
4334 ("r-batchtools" ,r-batchtools)
4335 ("r-biostrings" ,r-biostrings)
4336 ("r-deseq2" ,r-deseq2)
4337 ("r-dot" ,r-dot)
4338 ("r-edger" ,r-edger)
4339 ("r-genomicfeatures" ,r-genomicfeatures)
4340 ("r-genomicranges" ,r-genomicranges)
4341 ("r-ggplot2" ,r-ggplot2)
4342 ("r-go-db" ,r-go-db)
4343 ("r-gostats" ,r-gostats)
4344 ("r-iranges" ,r-iranges)
4345 ("r-limma" ,r-limma)
4346 ("r-magrittr" ,r-magrittr)
4347 ("r-pheatmap" ,r-pheatmap)
4348 ("r-rjson" ,r-rjson)
4349 ("r-rsamtools" ,r-rsamtools)
4350 ("r-rsvg" ,r-rsvg)
4351 ("r-shortread" ,r-shortread)
4352 ("r-stringr" ,r-stringr)
4353 ("r-summarizedexperiment" ,r-summarizedexperiment)
4354 ("r-testthat" ,r-testthat)
4355 ("r-yaml" ,r-yaml)
4356 ("r-variantannotation" ,r-variantannotation)))
4357 (native-inputs
4358 `(("r-knitr" ,r-knitr)))
4359 (home-page "https://github.com/tgirke/systemPipeR")
4360 (synopsis "Next generation sequencing workflow and reporting environment")
4361 (description
4362 "This R package provides tools for building and running automated
4363 end-to-end analysis workflows for a wide range of @dfn{next generation
4364 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
4365 Important features include a uniform workflow interface across different NGS
4366 applications, automated report generation, and support for running both R and
4367 command-line software, such as NGS aligners or peak/variant callers, on local
4368 computers or compute clusters. Efficient handling of complex sample sets and
4369 experimental designs is facilitated by a consistently implemented sample
4370 annotation infrastructure.")
4371 (license license:artistic2.0)))
4372
4373 (define-public r-topgo
4374 (package
4375 (name "r-topgo")
4376 (version "2.44.0")
4377 (source (origin
4378 (method url-fetch)
4379 (uri (bioconductor-uri "topGO" version))
4380 (sha256
4381 (base32
4382 "1ggi7yrhkyi85p3sfj3yd95n9mzq1xpff28ixa4dl9yzasks1v5a"))))
4383 (properties
4384 `((upstream-name . "topGO")))
4385 (build-system r-build-system)
4386 (propagated-inputs
4387 `(("r-annotationdbi" ,r-annotationdbi)
4388 ("r-dbi" ,r-dbi)
4389 ("r-biobase" ,r-biobase)
4390 ("r-biocgenerics" ,r-biocgenerics)
4391 ("r-go-db" ,r-go-db)
4392 ("r-graph" ,r-graph)
4393 ("r-lattice" ,r-lattice)
4394 ("r-matrixstats" ,r-matrixstats)
4395 ("r-sparsem" ,r-sparsem)))
4396 (home-page "https://bioconductor.org/packages/topGO")
4397 (synopsis "Enrichment analysis for gene ontology")
4398 (description
4399 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
4400 terms while accounting for the topology of the GO graph. Different test
4401 statistics and different methods for eliminating local similarities and
4402 dependencies between GO terms can be implemented and applied.")
4403 ;; Any version of the LGPL applies.
4404 (license license:lgpl2.1+)))
4405
4406 (define-public r-tximport
4407 (package
4408 (name "r-tximport")
4409 (version "1.20.0")
4410 (source (origin
4411 (method url-fetch)
4412 (uri (bioconductor-uri "tximport" version))
4413 (sha256
4414 (base32
4415 "0ip2yr0zspf2aagskxl4dwncr48dw5qb90an3sswnnh2dqdb82if"))))
4416 (build-system r-build-system)
4417 (native-inputs
4418 `(("r-knitr" ,r-knitr)))
4419 (home-page "https://bioconductor.org/packages/tximport")
4420 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
4421 (description
4422 "This package provides tools to import transcript-level abundance,
4423 estimated counts and transcript lengths, and to summarize them into matrices
4424 for use with downstream gene-level analysis packages. Average transcript
4425 length, weighted by sample-specific transcript abundance estimates, is
4426 provided as a matrix which can be used as an offset for different expression
4427 of gene-level counts.")
4428 (license license:gpl2+)))
4429
4430 (define-public r-variantannotation
4431 (package
4432 (name "r-variantannotation")
4433 (version "1.38.0")
4434 (source (origin
4435 (method url-fetch)
4436 (uri (bioconductor-uri "VariantAnnotation" version))
4437 (sha256
4438 (base32
4439 "0c9r00j8a3bs6n0dv4wi17jc1ljzvr3r2bi4h9axhcsf2ip906rh"))))
4440 (properties
4441 `((upstream-name . "VariantAnnotation")))
4442 (propagated-inputs
4443 `(("r-annotationdbi" ,r-annotationdbi)
4444 ("r-biobase" ,r-biobase)
4445 ("r-biocgenerics" ,r-biocgenerics)
4446 ("r-biostrings" ,r-biostrings)
4447 ("r-bsgenome" ,r-bsgenome)
4448 ("r-dbi" ,r-dbi)
4449 ("r-genomeinfodb" ,r-genomeinfodb)
4450 ("r-genomicfeatures" ,r-genomicfeatures)
4451 ("r-genomicranges" ,r-genomicranges)
4452 ("r-iranges" ,r-iranges)
4453 ("r-matrixgenerics" ,r-matrixgenerics)
4454 ("r-summarizedexperiment" ,r-summarizedexperiment)
4455 ("r-rhtslib" ,r-rhtslib)
4456 ("r-rsamtools" ,r-rsamtools)
4457 ("r-rtracklayer" ,r-rtracklayer)
4458 ("r-s4vectors" ,r-s4vectors)
4459 ("r-xvector" ,r-xvector)
4460 ("r-zlibbioc" ,r-zlibbioc)))
4461 (build-system r-build-system)
4462 (home-page "https://bioconductor.org/packages/VariantAnnotation")
4463 (synopsis "Package for annotation of genetic variants")
4464 (description "This R package can annotate variants, compute amino acid
4465 coding changes and predict coding outcomes.")
4466 (license license:artistic2.0)))
4467
4468 (define-public r-vsn
4469 (package
4470 (name "r-vsn")
4471 (version "3.60.0")
4472 (source
4473 (origin
4474 (method url-fetch)
4475 (uri (bioconductor-uri "vsn" version))
4476 (sha256
4477 (base32
4478 "0nppph3kv8z83368snb8s3n4vcqj829yyi1kh4q09qvq18rhvssv"))))
4479 (build-system r-build-system)
4480 (propagated-inputs
4481 `(("r-affy" ,r-affy)
4482 ("r-biobase" ,r-biobase)
4483 ("r-ggplot2" ,r-ggplot2)
4484 ("r-lattice" ,r-lattice)
4485 ("r-limma" ,r-limma)))
4486 (native-inputs
4487 `(("r-knitr" ,r-knitr))) ; for vignettes
4488 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
4489 (synopsis "Variance stabilization and calibration for microarray data")
4490 (description
4491 "The package implements a method for normalising microarray intensities,
4492 and works for single- and multiple-color arrays. It can also be used for data
4493 from other technologies, as long as they have similar format. The method uses
4494 a robust variant of the maximum-likelihood estimator for an
4495 additive-multiplicative error model and affine calibration. The model
4496 incorporates data calibration step (a.k.a. normalization), a model for the
4497 dependence of the variance on the mean intensity and a variance stabilizing
4498 data transformation. Differences between transformed intensities are
4499 analogous to \"normalized log-ratios\". However, in contrast to the latter,
4500 their variance is independent of the mean, and they are usually more sensitive
4501 and specific in detecting differential transcription.")
4502 (license license:artistic2.0)))
4503
4504 (define-public r-xvector
4505 (package
4506 (name "r-xvector")
4507 (version "0.32.0")
4508 (source (origin
4509 (method url-fetch)
4510 (uri (bioconductor-uri "XVector" version))
4511 (sha256
4512 (base32
4513 "1cw34gd9iaspl0v737xl7rngq63zrj03a5ngai15ggrnv1sq2aqr"))))
4514 (properties
4515 `((upstream-name . "XVector")))
4516 (build-system r-build-system)
4517 (arguments
4518 `(#:phases
4519 (modify-phases %standard-phases
4520 (add-after 'unpack 'use-system-zlib
4521 (lambda _
4522 (substitute* "DESCRIPTION"
4523 (("zlibbioc, ") ""))
4524 (substitute* "NAMESPACE"
4525 (("import\\(zlibbioc\\)") ""))
4526 #t)))))
4527 (inputs
4528 `(("zlib" ,zlib)))
4529 (propagated-inputs
4530 `(("r-biocgenerics" ,r-biocgenerics)
4531 ("r-iranges" ,r-iranges)
4532 ("r-s4vectors" ,r-s4vectors)))
4533 (home-page "https://bioconductor.org/packages/XVector")
4534 (synopsis "Representation and manpulation of external sequences")
4535 (description
4536 "This package provides memory efficient S4 classes for storing sequences
4537 \"externally\" (behind an R external pointer, or on disk).")
4538 (license license:artistic2.0)))
4539
4540 (define-public r-zlibbioc
4541 (package
4542 (name "r-zlibbioc")
4543 (version "1.38.0")
4544 (source (origin
4545 (method url-fetch)
4546 (uri (bioconductor-uri "zlibbioc" version))
4547 (sha256
4548 (base32
4549 "1dv5bf12kzk1yzyfs3g5syim16sbi44kalvzj2i2xcnxnl6x60ip"))))
4550 (properties
4551 `((upstream-name . "zlibbioc")))
4552 (build-system r-build-system)
4553 (home-page "https://bioconductor.org/packages/zlibbioc")
4554 (synopsis "Provider for zlib-1.2.5 to R packages")
4555 (description "This package uses the source code of zlib-1.2.5 to create
4556 libraries for systems that do not have these available via other means.")
4557 (license license:artistic2.0)))
4558
4559 (define-public r-geneplotter
4560 (package
4561 (name "r-geneplotter")
4562 (version "1.70.0")
4563 (source
4564 (origin
4565 (method url-fetch)
4566 (uri (bioconductor-uri "geneplotter" version))
4567 (sha256
4568 (base32
4569 "1d085lfa3yif5wkys1fb0zzgg0cqwd1y18vasgqqdr6rva075d4z"))))
4570 (build-system r-build-system)
4571 (propagated-inputs
4572 `(("r-annotate" ,r-annotate)
4573 ("r-annotationdbi" ,r-annotationdbi)
4574 ("r-biobase" ,r-biobase)
4575 ("r-biocgenerics" ,r-biocgenerics)
4576 ("r-lattice" ,r-lattice)
4577 ("r-rcolorbrewer" ,r-rcolorbrewer)))
4578 (home-page "https://bioconductor.org/packages/geneplotter")
4579 (synopsis "Graphics functions for genomic data")
4580 (description
4581 "This package provides functions for plotting genomic data.")
4582 (license license:artistic2.0)))
4583
4584 (define-public r-oligoclasses
4585 (package
4586 (name "r-oligoclasses")
4587 (version "1.54.0")
4588 (source
4589 (origin
4590 (method url-fetch)
4591 (uri (bioconductor-uri "oligoClasses" version))
4592 (sha256
4593 (base32
4594 "1nsfyfpj264h6y322pzz0i001b0m862j3skbq5rjwlrj1p8j2gi7"))))
4595 (properties `((upstream-name . "oligoClasses")))
4596 (build-system r-build-system)
4597 (propagated-inputs
4598 `(("r-affyio" ,r-affyio)
4599 ("r-biobase" ,r-biobase)
4600 ("r-biocgenerics" ,r-biocgenerics)
4601 ("r-biocmanager" ,r-biocmanager)
4602 ("r-biostrings" ,r-biostrings)
4603 ("r-dbi" ,r-dbi)
4604 ("r-ff" ,r-ff)
4605 ("r-foreach" ,r-foreach)
4606 ("r-genomicranges" ,r-genomicranges)
4607 ("r-iranges" ,r-iranges)
4608 ("r-rsqlite" ,r-rsqlite)
4609 ("r-s4vectors" ,r-s4vectors)
4610 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4611 (home-page "https://bioconductor.org/packages/oligoClasses/")
4612 (synopsis "Classes for high-throughput arrays")
4613 (description
4614 "This package contains class definitions, validity checks, and
4615 initialization methods for classes used by the @code{oligo} and @code{crlmm}
4616 packages.")
4617 (license license:gpl2+)))
4618
4619 (define-public r-oligo
4620 (package
4621 (name "r-oligo")
4622 (version "1.56.0")
4623 (source
4624 (origin
4625 (method url-fetch)
4626 (uri (bioconductor-uri "oligo" version))
4627 (sha256
4628 (base32
4629 "0fyq77im6s79havjwbchhqhnllxs134jsi98g6msxz66h16lj3al"))))
4630 (properties `((upstream-name . "oligo")))
4631 (build-system r-build-system)
4632 (inputs `(("zlib" ,zlib)))
4633 (propagated-inputs
4634 `(("r-affxparser" ,r-affxparser)
4635 ("r-affyio" ,r-affyio)
4636 ("r-biobase" ,r-biobase)
4637 ("r-biocgenerics" ,r-biocgenerics)
4638 ("r-biostrings" ,r-biostrings)
4639 ("r-dbi" ,r-dbi)
4640 ("r-ff" ,r-ff)
4641 ("r-oligoclasses" ,r-oligoclasses)
4642 ("r-preprocesscore" ,r-preprocesscore)
4643 ("r-rsqlite" ,r-rsqlite)
4644 ("r-zlibbioc" ,r-zlibbioc)))
4645 (native-inputs
4646 `(("r-knitr" ,r-knitr)))
4647 (home-page "https://bioconductor.org/packages/oligo/")
4648 (synopsis "Preprocessing tools for oligonucleotide arrays")
4649 (description
4650 "This package provides a package to analyze oligonucleotide
4651 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
4652 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
4653 (license license:lgpl2.0+)))
4654
4655 (define-public r-qvalue
4656 (package
4657 (name "r-qvalue")
4658 (version "2.24.0")
4659 (source
4660 (origin
4661 (method url-fetch)
4662 (uri (bioconductor-uri "qvalue" version))
4663 (sha256
4664 (base32
4665 "0xssanffh1hr7f48mnazcpwi25rdp7mxlyb9nbf4q2mp7m40jnpm"))))
4666 (build-system r-build-system)
4667 (propagated-inputs
4668 `(("r-ggplot2" ,r-ggplot2)
4669 ("r-reshape2" ,r-reshape2)))
4670 (native-inputs
4671 `(("r-knitr" ,r-knitr)))
4672 (home-page "https://github.com/StoreyLab/qvalue")
4673 (synopsis "Q-value estimation for false discovery rate control")
4674 (description
4675 "This package takes a list of p-values resulting from the simultaneous
4676 testing of many hypotheses and estimates their q-values and local @dfn{false
4677 discovery rate} (FDR) values. The q-value of a test measures the proportion
4678 of false positives incurred when that particular test is called significant.
4679 The local FDR measures the posterior probability the null hypothesis is true
4680 given the test's p-value. Various plots are automatically generated, allowing
4681 one to make sensible significance cut-offs. The software can be applied to
4682 problems in genomics, brain imaging, astrophysics, and data mining.")
4683 ;; Any version of the LGPL.
4684 (license license:lgpl3+)))
4685
4686 (define r-rcppnumerical
4687 (package
4688 (name "r-rcppnumerical")
4689 (version "0.4-0")
4690 (source (origin
4691 (method url-fetch)
4692 (uri (cran-uri "RcppNumerical" version))
4693 (sha256
4694 (base32
4695 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
4696 (properties `((upstream-name . "RcppNumerical")))
4697 (build-system r-build-system)
4698 (propagated-inputs
4699 `(("r-rcpp" ,r-rcpp)
4700 ("r-rcppeigen" ,r-rcppeigen)))
4701 (native-inputs
4702 `(("r-knitr" ,r-knitr)))
4703 (home-page "https://github.com/yixuan/RcppNumerical")
4704 (synopsis "Rcpp integration for numerical computing libraries")
4705 (description "This package provides a collection of open source libraries
4706 for numerical computing (numerical integration, optimization, etc.) and their
4707 integration with @code{Rcpp}.")
4708 (license license:gpl2+)))
4709
4710 (define-public r-apeglm
4711 (package
4712 (name "r-apeglm")
4713 (version "1.14.0")
4714 (source (origin
4715 (method url-fetch)
4716 (uri (bioconductor-uri "apeglm" version))
4717 (sha256
4718 (base32
4719 "1xld6ar440achik4dbd7vhiw6jfj0sb96jm52n7hav5bv4gag3mh"))))
4720 (properties `((upstream-name . "apeglm")))
4721 (build-system r-build-system)
4722 (propagated-inputs
4723 `(("r-emdbook" ,r-emdbook)
4724 ("r-genomicranges" ,r-genomicranges)
4725 ("r-rcpp" ,r-rcpp)
4726 ("r-rcppeigen" ,r-rcppeigen)
4727 ("r-rcppnumerical" ,r-rcppnumerical)
4728 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4729 (native-inputs `(("r-knitr" ,r-knitr)))
4730 (home-page "https://bioconductor.org/packages/apeglm")
4731 (synopsis "Approximate posterior estimation for GLM coefficients")
4732 (description "This package provides Bayesian shrinkage estimators for
4733 effect sizes for a variety of GLM models, using approximation of the
4734 posterior for individual coefficients.")
4735 (license license:gpl2)))
4736
4737 (define-public r-greylistchip
4738 (package
4739 (name "r-greylistchip")
4740 (version "1.24.0")
4741 (source (origin
4742 (method url-fetch)
4743 (uri (bioconductor-uri "GreyListChIP" version))
4744 (sha256
4745 (base32
4746 "1g9ja8p90czx83ar0l9ran7m6aggvszdbqm714fq7z4rxq9b4hs3"))))
4747 (properties `((upstream-name . "GreyListChIP")))
4748 (build-system r-build-system)
4749 (propagated-inputs
4750 `(("r-bsgenome" ,r-bsgenome)
4751 ("r-genomeinfodb" ,r-genomeinfodb)
4752 ("r-genomicalignments" ,r-genomicalignments)
4753 ("r-genomicranges" ,r-genomicranges)
4754 ("r-mass" ,r-mass)
4755 ("r-rsamtools" ,r-rsamtools)
4756 ("r-rtracklayer" ,r-rtracklayer)
4757 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4758 (home-page "https://bioconductor.org/packages/GreyListChIP")
4759 (synopsis "Greylist artefact regions based on ChIP inputs")
4760 (description "This package identifies regions of ChIP experiments with high
4761 signal in the input, that lead to spurious peaks during peak calling.")
4762 (license license:artistic2.0)))
4763
4764 (define-public r-diffbind
4765 (package
4766 (name "r-diffbind")
4767 (version "3.2.1")
4768 (source
4769 (origin
4770 (method url-fetch)
4771 (uri (bioconductor-uri "DiffBind" version))
4772 (sha256
4773 (base32
4774 "12x80z1a8gihqrlaxmzk80nc5700la72lival58s4wjv4k2lhyf3"))))
4775 (properties `((upstream-name . "DiffBind")))
4776 (build-system r-build-system)
4777 (propagated-inputs
4778 `(("r-amap" ,r-amap)
4779 ("r-apeglm" ,r-apeglm)
4780 ("r-ashr" ,r-ashr)
4781 ("r-biocparallel" ,r-biocparallel)
4782 ("r-deseq2" ,r-deseq2)
4783 ("r-dplyr" ,r-dplyr)
4784 ("r-genomicalignments" ,r-genomicalignments)
4785 ("r-genomicranges" ,r-genomicranges)
4786 ("r-ggplot2" ,r-ggplot2)
4787 ("r-ggrepel" ,r-ggrepel)
4788 ("r-gplots" ,r-gplots)
4789 ("r-greylistchip" ,r-greylistchip)
4790 ("r-iranges" ,r-iranges)
4791 ("r-lattice" ,r-lattice)
4792 ("r-limma" ,r-limma)
4793 ("r-locfit" ,r-locfit)
4794 ("r-rcolorbrewer" , r-rcolorbrewer)
4795 ("r-rcpp" ,r-rcpp)
4796 ("r-rhtslib" ,r-rhtslib)
4797 ("r-rsamtools" ,r-rsamtools)
4798 ("r-s4vectors" ,r-s4vectors)
4799 ("r-summarizedexperiment" ,r-summarizedexperiment)
4800 ("r-systempiper" ,r-systempiper)))
4801 (home-page "https://bioconductor.org/packages/DiffBind")
4802 (synopsis "Differential binding analysis of ChIP-Seq peak data")
4803 (description
4804 "This package computes differentially bound sites from multiple
4805 ChIP-seq experiments using affinity (quantitative) data. Also enables
4806 occupancy (overlap) analysis and plotting functions.")
4807 (license license:artistic2.0)))
4808
4809 (define-public r-ripseeker
4810 (package
4811 (name "r-ripseeker")
4812 (version "1.26.0")
4813 (source
4814 (origin
4815 (method url-fetch)
4816 (uri (bioconductor-uri "RIPSeeker" version))
4817 (sha256
4818 (base32
4819 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
4820 (properties `((upstream-name . "RIPSeeker")))
4821 (build-system r-build-system)
4822 (propagated-inputs
4823 `(("r-s4vectors" ,r-s4vectors)
4824 ("r-iranges" ,r-iranges)
4825 ("r-genomicranges" ,r-genomicranges)
4826 ("r-summarizedexperiment" ,r-summarizedexperiment)
4827 ("r-rsamtools" ,r-rsamtools)
4828 ("r-genomicalignments" ,r-genomicalignments)
4829 ("r-rtracklayer" ,r-rtracklayer)))
4830 (home-page "https://bioconductor.org/packages/RIPSeeker")
4831 (synopsis
4832 "Identifying protein-associated transcripts from RIP-seq experiments")
4833 (description
4834 "This package infers and discriminates RIP peaks from RIP-seq alignments
4835 using two-state HMM with negative binomial emission probability. While
4836 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
4837 a suite of bioinformatics tools integrated within this self-contained software
4838 package comprehensively addressing issues ranging from post-alignments
4839 processing to visualization and annotation.")
4840 (license license:gpl2)))
4841
4842 (define-public r-mbkmeans
4843 (package
4844 (name "r-mbkmeans")
4845 (version "1.8.0")
4846 (source (origin
4847 (method url-fetch)
4848 (uri (bioconductor-uri "mbkmeans" version))
4849 (sha256
4850 (base32
4851 "1k7ngpx4s50jplrsv19zzjr7izpdl9wwppb218ih5cp0ki1gcc2n"))))
4852 (build-system r-build-system)
4853 (native-inputs
4854 `(("r-knitr" ,r-knitr)))
4855 (propagated-inputs
4856 `(("r-beachmat" ,r-beachmat)
4857 ("r-benchmarkme" ,r-benchmarkme)
4858 ("r-biocparallel" ,r-biocparallel)
4859 ("r-clusterr" ,r-clusterr)
4860 ("r-delayedarray" ,r-delayedarray)
4861 ("r-matrix" ,r-matrix)
4862 ("r-rcpp" ,r-rcpp)
4863 ("r-rcpparmadillo" ,r-rcpparmadillo)
4864 ("r-rhdf5lib" ,r-rhdf5lib)
4865 ("r-s4vectors" ,r-s4vectors)
4866 ("r-singlecellexperiment" ,r-singlecellexperiment)
4867 ("r-summarizedexperiment" ,r-summarizedexperiment)))
4868 (home-page "https://bioconductor.org/packages/mbkmeans")
4869 (synopsis "Mini-batch k-means clustering for single-cell RNA-seq")
4870 (description "This package implements the mini-batch k-means algorithm for
4871 large datasets, including support for on-disk data representation.")
4872 (license license:expat)))
4873
4874 (define-public r-multtest
4875 (package
4876 (name "r-multtest")
4877 (version "2.48.0")
4878 (source
4879 (origin
4880 (method url-fetch)
4881 (uri (bioconductor-uri "multtest" version))
4882 (sha256
4883 (base32
4884 "1wi15v4llgv11hpb2j9h4a35nrnawnmvbz5d5dvgy8lhqrlq8w9a"))))
4885 (build-system r-build-system)
4886 (propagated-inputs
4887 `(("r-survival" ,r-survival)
4888 ("r-biocgenerics" ,r-biocgenerics)
4889 ("r-biobase" ,r-biobase)
4890 ("r-mass" ,r-mass)))
4891 (home-page "https://bioconductor.org/packages/multtest")
4892 (synopsis "Resampling-based multiple hypothesis testing")
4893 (description
4894 "This package can do non-parametric bootstrap and permutation
4895 resampling-based multiple testing procedures (including empirical Bayes
4896 methods) for controlling the family-wise error rate (FWER), generalized
4897 family-wise error rate (gFWER), tail probability of the proportion of
4898 false positives (TPPFP), and false discovery rate (FDR). Several choices
4899 of bootstrap-based null distribution are implemented (centered, centered
4900 and scaled, quantile-transformed). Single-step and step-wise methods are
4901 available. Tests based on a variety of T- and F-statistics (including
4902 T-statistics based on regression parameters from linear and survival models
4903 as well as those based on correlation parameters) are included. When probing
4904 hypotheses with T-statistics, users may also select a potentially faster null
4905 distribution which is multivariate normal with mean zero and variance
4906 covariance matrix derived from the vector influence function. Results are
4907 reported in terms of adjusted P-values, confidence regions and test statistic
4908 cutoffs. The procedures are directly applicable to identifying differentially
4909 expressed genes in DNA microarray experiments.")
4910 (license license:lgpl3)))
4911
4912 (define-public r-graph
4913 (package
4914 (name "r-graph")
4915 (version "1.70.0")
4916 (source (origin
4917 (method url-fetch)
4918 (uri (bioconductor-uri "graph" version))
4919 (sha256
4920 (base32
4921 "1i7s198d5kw4gk6nqqsd3vqaknj4493p822f2za8q95gv6x02rxa"))))
4922 (build-system r-build-system)
4923 (propagated-inputs
4924 `(("r-biocgenerics" ,r-biocgenerics)))
4925 (home-page "https://bioconductor.org/packages/graph")
4926 (synopsis "Handle graph data structures in R")
4927 (description
4928 "This package implements some simple graph handling capabilities for R.")
4929 (license license:artistic2.0)))
4930
4931 ;; This is a CRAN package, but it depends on a Bioconductor package.
4932 (define-public r-ggm
4933 (package
4934 (name "r-ggm")
4935 (version "2.5")
4936 (source
4937 (origin
4938 (method url-fetch)
4939 (uri (cran-uri "ggm" version))
4940 (sha256
4941 (base32
4942 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
4943 (properties `((upstream-name . "ggm")))
4944 (build-system r-build-system)
4945 (propagated-inputs
4946 `(("r-graph" ,r-graph)
4947 ("r-igraph" ,r-igraph)))
4948 (home-page "https://cran.r-project.org/package=ggm")
4949 (synopsis "Functions for graphical Markov models")
4950 (description
4951 "This package provides functions and datasets for maximum likelihood
4952 fitting of some classes of graphical Markov models.")
4953 (license license:gpl2+)))
4954
4955 ;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
4956 (define-public r-perfmeas
4957 (package
4958 (name "r-perfmeas")
4959 (version "1.2.1")
4960 (source
4961 (origin
4962 (method url-fetch)
4963 (uri (cran-uri "PerfMeas" version))
4964 (sha256
4965 (base32
4966 "1x7ancmb41zd1js24rx94plgbssyc71z2bvpic6mg34xjkwdjw93"))))
4967 (properties `((upstream-name . "PerfMeas")))
4968 (build-system r-build-system)
4969 (propagated-inputs
4970 `(("r-graph" ,r-graph)
4971 ("r-limma" ,r-limma)
4972 ("r-rbgl" ,r-rbgl)))
4973 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
4974 (synopsis "Performance measures for ranking and classification tasks")
4975 (description
4976 "This package implements different performance measures for
4977 classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
4978 a given recall, F-score for single and multiple classes are available.")
4979 (license license:gpl2+)))
4980
4981 ;; This is a CRAN package, but it depends on a Bioconductor package.
4982 (define-public r-codedepends
4983 (package
4984 (name "r-codedepends")
4985 (version "0.6.5")
4986 (source
4987 (origin
4988 (method url-fetch)
4989 (uri (cran-uri "CodeDepends" version))
4990 (sha256
4991 (base32
4992 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
4993 (properties `((upstream-name . "CodeDepends")))
4994 (build-system r-build-system)
4995 (propagated-inputs
4996 `(("r-codetools" ,r-codetools)
4997 ("r-graph" ,r-graph)
4998 ("r-xml" ,r-xml)))
4999 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
5000 (synopsis "Analysis of R code for reproducible research and code comprehension")
5001 (description
5002 "This package provides tools for analyzing R expressions or blocks of
5003 code and determining the dependencies between them. It focuses on R scripts,
5004 but can be used on the bodies of functions. There are many facilities
5005 including the ability to summarize or get a high-level view of code,
5006 determining dependencies between variables, code improvement suggestions.")
5007 ;; Any version of the GPL
5008 (license (list license:gpl2+ license:gpl3+))))
5009
5010 (define-public r-chippeakanno
5011 (package
5012 (name "r-chippeakanno")
5013 (version "3.26.0")
5014 (source
5015 (origin
5016 (method url-fetch)
5017 (uri (bioconductor-uri "ChIPpeakAnno" version))
5018 (sha256
5019 (base32
5020 "1wnmsdrb4wz2qprj5mnd3h0wx32y2mpy3xg7mjbgwlqn9bzpw3gk"))))
5021 (properties `((upstream-name . "ChIPpeakAnno")))
5022 (build-system r-build-system)
5023 (propagated-inputs
5024 `(("r-annotationdbi" ,r-annotationdbi)
5025 ("r-biocgenerics" ,r-biocgenerics)
5026 ("r-biomart" ,r-biomart)
5027 ("r-biostrings" ,r-biostrings)
5028 ("r-dbi" ,r-dbi)
5029 ("r-dplyr" ,r-dplyr)
5030 ("r-ensembldb" ,r-ensembldb)
5031 ("r-genomeinfodb" ,r-genomeinfodb)
5032 ("r-genomicalignments" ,r-genomicalignments)
5033 ("r-genomicfeatures" ,r-genomicfeatures)
5034 ("r-genomicranges" ,r-genomicranges)
5035 ("r-ggplot2" ,r-ggplot2)
5036 ("r-graph" ,r-graph)
5037 ("r-interactionset" ,r-interactionset)
5038 ("r-iranges" ,r-iranges)
5039 ("r-keggrest" ,r-keggrest)
5040 ("r-matrixstats" ,r-matrixstats)
5041 ("r-multtest" ,r-multtest)
5042 ("r-rbgl" ,r-rbgl)
5043 ("r-regioner" ,r-regioner)
5044 ("r-rsamtools" ,r-rsamtools)
5045 ("r-rtracklayer" ,r-rtracklayer)
5046 ("r-s4vectors" ,r-s4vectors)
5047 ("r-summarizedexperiment" ,r-summarizedexperiment)
5048 ("r-venndiagram" ,r-venndiagram)))
5049 (native-inputs
5050 `(("r-knitr" ,r-knitr)))
5051 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
5052 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
5053 (description
5054 "The package includes functions to retrieve the sequences around the peak,
5055 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
5056 custom features such as most conserved elements and other transcription factor
5057 binding sites supplied by users. Starting 2.0.5, new functions have been added
5058 for finding the peaks with bi-directional promoters with summary statistics
5059 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
5060 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
5061 enrichedGO (addGeneIDs).")
5062 (license license:gpl2+)))
5063
5064 (define-public r-matrixgenerics
5065 (package
5066 (name "r-matrixgenerics")
5067 (version "1.4.0")
5068 (source (origin
5069 (method url-fetch)
5070 (uri (bioconductor-uri "MatrixGenerics" version))
5071 (sha256
5072 (base32
5073 "1xq3a9ls125wfnhn13rdbsxzq3f6klsspx7h0znd6l67f5j5k25s"))))
5074 (properties
5075 `((upstream-name . "MatrixGenerics")))
5076 (build-system r-build-system)
5077 (propagated-inputs
5078 `(("r-matrixstats" ,r-matrixstats)))
5079 (home-page "https://bioconductor.org/packages/MatrixGenerics")
5080 (synopsis "S4 generic summary statistic functions for matrix-like objects")
5081 (description
5082 "This package provides S4 generic functions modeled after the
5083 @code{matrixStats} API for alternative matrix implementations. Packages with
5084 alternative matrix implementation can depend on this package and implement the
5085 generic functions that are defined here for a useful set of row and column
5086 summary statistics. Other package developers can import this package and
5087 handle a different matrix implementations without worrying about
5088 incompatibilities.")
5089 (license license:artistic2.0)))
5090
5091 (define-public r-marray
5092 (package
5093 (name "r-marray")
5094 (version "1.70.0")
5095 (source (origin
5096 (method url-fetch)
5097 (uri (bioconductor-uri "marray" version))
5098 (sha256
5099 (base32 "0wpmrhqpyv27h1hn31hzz21r74r7yqx79ljv8i8gn6ix8lf5ca56"))))
5100 (build-system r-build-system)
5101 (propagated-inputs
5102 `(("r-limma" ,r-limma)))
5103 (home-page "https://bioconductor.org/packages/marray")
5104 (synopsis "Exploratory analysis for two-color spotted microarray data")
5105 (description "This package contains class definitions for two-color spotted
5106 microarray data. It also includes functions for data input, diagnostic plots,
5107 normalization and quality checking.")
5108 (license license:lgpl2.0+)))
5109
5110 (define-public r-cghbase
5111 (package
5112 (name "r-cghbase")
5113 (version "1.52.0")
5114 (source (origin
5115 (method url-fetch)
5116 (uri (bioconductor-uri "CGHbase" version))
5117 (sha256
5118 (base32 "1p87k4vw981k97d9bckmprrfg55jwd91658rgxzjj8hnschf28a4"))))
5119 (properties `((upstream-name . "CGHbase")))
5120 (build-system r-build-system)
5121 (propagated-inputs
5122 `(("r-biobase" ,r-biobase)
5123 ("r-marray" ,r-marray)))
5124 (home-page "https://bioconductor.org/packages/CGHbase")
5125 (synopsis "Base functions and classes for arrayCGH data analysis")
5126 (description "This package contains functions and classes that are needed by
5127 the @code{arrayCGH} packages.")
5128 (license license:gpl2+)))
5129
5130 (define-public r-cghcall
5131 (package
5132 (name "r-cghcall")
5133 (version "2.54.0")
5134 (source (origin
5135 (method url-fetch)
5136 (uri (bioconductor-uri "CGHcall" version))
5137 (sha256
5138 (base32 "1zik04y2q0anzy85l0b4ryzkxpfx2fnmpwp5s7akyk1jfl2r8gw7"))))
5139 (properties `((upstream-name . "CGHcall")))
5140 (build-system r-build-system)
5141 (propagated-inputs
5142 `(("r-biobase" ,r-biobase)
5143 ("r-cghbase" ,r-cghbase)
5144 ("r-impute" ,r-impute)
5145 ("r-dnacopy" ,r-dnacopy)
5146 ("r-snowfall" ,r-snowfall)))
5147 (home-page "https://bioconductor.org/packages/CGHcall")
5148 (synopsis "Base functions and classes for arrayCGH data analysis")
5149 (description "This package contains functions and classes that are needed by
5150 @code{arrayCGH} packages.")
5151 (license license:gpl2+)))
5152
5153 (define-public r-qdnaseq
5154 (package
5155 (name "r-qdnaseq")
5156 (version "1.28.0")
5157 (source (origin
5158 (method url-fetch)
5159 (uri (bioconductor-uri "QDNAseq" version))
5160 (sha256
5161 (base32 "1p4544xlarkbgs9kybrrawq3v7qr6ix62nrc6l7dcksh2ka69yzf"))))
5162 (properties `((upstream-name . "QDNAseq")))
5163 (build-system r-build-system)
5164 (propagated-inputs
5165 `(("r-biobase" ,r-biobase)
5166 ("r-cghbase" ,r-cghbase)
5167 ("r-cghcall" ,r-cghcall)
5168 ("r-dnacopy" ,r-dnacopy)
5169 ("r-future" ,r-future)
5170 ("r-future-apply" ,r-future-apply)
5171 ("r-genomicranges" ,r-genomicranges)
5172 ("r-iranges" ,r-iranges)
5173 ("r-matrixstats" ,r-matrixstats)
5174 ("r-r-utils" ,r-r-utils)
5175 ("r-rsamtools" ,r-rsamtools)))
5176 (home-page "https://bioconductor.org/packages/QDNAseq")
5177 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
5178 (description "The genome is divided into non-overlapping fixed-sized bins,
5179 number of sequence reads in each counted, adjusted with a simultaneous
5180 two-dimensional loess correction for sequence mappability and GC content, and
5181 filtered to remove spurious regions in the genome. Downstream steps of
5182 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
5183 respectively.")
5184 (license license:gpl2+)))
5185
5186 (define-public r-bayseq
5187 (package
5188 (name "r-bayseq")
5189 (version "2.26.0")
5190 (source
5191 (origin
5192 (method url-fetch)
5193 (uri (bioconductor-uri "baySeq" version))
5194 (sha256
5195 (base32
5196 "0hyc0sl2nf18bz0jxbzim0v41zwh2rnnr7l3p6zkk9wnw5gn7bbc"))))
5197 (properties `((upstream-name . "baySeq")))
5198 (build-system r-build-system)
5199 (propagated-inputs
5200 `(("r-abind" ,r-abind)
5201 ("r-edger" ,r-edger)
5202 ("r-genomicranges" ,r-genomicranges)))
5203 (home-page "https://bioconductor.org/packages/baySeq/")
5204 (synopsis "Bayesian analysis of differential expression patterns in count data")
5205 (description
5206 "This package identifies differential expression in high-throughput count
5207 data, such as that derived from next-generation sequencing machines,
5208 calculating estimated posterior likelihoods of differential expression (or
5209 more complex hypotheses) via empirical Bayesian methods.")
5210 (license license:gpl3)))
5211
5212 (define-public r-chipcomp
5213 (package
5214 (name "r-chipcomp")
5215 (version "1.22.0")
5216 (source
5217 (origin
5218 (method url-fetch)
5219 (uri (bioconductor-uri "ChIPComp" version))
5220 (sha256
5221 (base32
5222 "1kfxjh1mynrgqsy2q6byf03cbymqc8w7l7672iyd0wj5qzlif4h5"))))
5223 (properties `((upstream-name . "ChIPComp")))
5224 (build-system r-build-system)
5225 (propagated-inputs
5226 `(("r-biocgenerics" ,r-biocgenerics)
5227 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
5228 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
5229 ("r-genomeinfodb" ,r-genomeinfodb)
5230 ("r-genomicranges" ,r-genomicranges)
5231 ("r-iranges" ,r-iranges)
5232 ("r-limma" ,r-limma)
5233 ("r-rsamtools" ,r-rsamtools)
5234 ("r-rtracklayer" ,r-rtracklayer)
5235 ("r-s4vectors" ,r-s4vectors)))
5236 (home-page "https://bioconductor.org/packages/ChIPComp")
5237 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
5238 (description
5239 "ChIPComp implements a statistical method for quantitative comparison of
5240 multiple ChIP-seq datasets. It detects differentially bound sharp binding
5241 sites across multiple conditions considering matching control in ChIP-seq
5242 datasets.")
5243 ;; Any version of the GPL.
5244 (license license:gpl3+)))
5245
5246 (define-public r-riboprofiling
5247 (package
5248 (name "r-riboprofiling")
5249 (version "1.22.0")
5250 (source
5251 (origin
5252 (method url-fetch)
5253 (uri (bioconductor-uri "RiboProfiling" version))
5254 (sha256
5255 (base32
5256 "1jmd8yrv7p7hn4gdibg3svmhqxjyrnfp7cgsqg8zv862lgd75zsl"))))
5257 (properties `((upstream-name . "RiboProfiling")))
5258 (build-system r-build-system)
5259 (propagated-inputs
5260 `(("r-biocgenerics" ,r-biocgenerics)
5261 ("r-biostrings" ,r-biostrings)
5262 ("r-data-table" ,r-data-table)
5263 ("r-genomeinfodb" ,r-genomeinfodb)
5264 ("r-genomicalignments" ,r-genomicalignments)
5265 ("r-genomicfeatures" ,r-genomicfeatures)
5266 ("r-genomicranges" ,r-genomicranges)
5267 ("r-ggbio" ,r-ggbio)
5268 ("r-ggplot2" ,r-ggplot2)
5269 ("r-iranges" ,r-iranges)
5270 ("r-plyr" ,r-plyr)
5271 ("r-reshape2" ,r-reshape2)
5272 ("r-rsamtools" ,r-rsamtools)
5273 ("r-rtracklayer" ,r-rtracklayer)
5274 ("r-s4vectors" ,r-s4vectors)
5275 ("r-sqldf" ,r-sqldf)))
5276 (native-inputs
5277 `(("r-knitr" ,r-knitr)))
5278 (home-page "https://bioconductor.org/packages/RiboProfiling/")
5279 (synopsis "Ribosome profiling data analysis")
5280 (description "Starting with a BAM file, this package provides the
5281 necessary functions for quality assessment, read start position recalibration,
5282 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
5283 of count data: pairs, log fold-change, codon frequency and coverage
5284 assessment, principal component analysis on codon coverage.")
5285 (license license:gpl3)))
5286
5287 (define-public r-riboseqr
5288 (package
5289 (name "r-riboseqr")
5290 (version "1.26.0")
5291 (source
5292 (origin
5293 (method url-fetch)
5294 (uri (bioconductor-uri "riboSeqR" version))
5295 (sha256
5296 (base32
5297 "1m5w2j35wr0lzwir4s58z757vrcsj5mglsqrkvs241k0hlmn06qa"))))
5298 (properties `((upstream-name . "riboSeqR")))
5299 (build-system r-build-system)
5300 (propagated-inputs
5301 `(("r-abind" ,r-abind)
5302 ("r-bayseq" ,r-bayseq)
5303 ("r-genomeinfodb" ,r-genomeinfodb)
5304 ("r-genomicranges" ,r-genomicranges)
5305 ("r-iranges" ,r-iranges)
5306 ("r-rsamtools" ,r-rsamtools)
5307 ("r-seqlogo" ,r-seqlogo)))
5308 (home-page "https://bioconductor.org/packages/riboSeqR/")
5309 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
5310 (description
5311 "This package provides plotting functions, frameshift detection and
5312 parsing of genetic sequencing data from ribosome profiling experiments.")
5313 (license license:gpl3)))
5314
5315 (define-public r-interactionset
5316 (package
5317 (name "r-interactionset")
5318 (version "1.20.0")
5319 (source
5320 (origin
5321 (method url-fetch)
5322 (uri (bioconductor-uri "InteractionSet" version))
5323 (sha256
5324 (base32
5325 "034xidjmn67n1471fnpdmz7gjm6p05cj8sp9nssc3gxdzn54a6xb"))))
5326 (properties
5327 `((upstream-name . "InteractionSet")))
5328 (build-system r-build-system)
5329 (propagated-inputs
5330 `(("r-biocgenerics" ,r-biocgenerics)
5331 ("r-genomeinfodb" ,r-genomeinfodb)
5332 ("r-genomicranges" ,r-genomicranges)
5333 ("r-iranges" ,r-iranges)
5334 ("r-matrix" ,r-matrix)
5335 ("r-rcpp" ,r-rcpp)
5336 ("r-s4vectors" ,r-s4vectors)
5337 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5338 (native-inputs
5339 `(("r-knitr" ,r-knitr)))
5340 (home-page "https://bioconductor.org/packages/InteractionSet")
5341 (synopsis "Base classes for storing genomic interaction data")
5342 (description
5343 "This package provides the @code{GInteractions},
5344 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
5345 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
5346 experiments.")
5347 (license license:gpl3)))
5348
5349 (define-public r-genomicinteractions
5350 (package
5351 (name "r-genomicinteractions")
5352 (version "1.26.0")
5353 (source
5354 (origin
5355 (method url-fetch)
5356 (uri (bioconductor-uri "GenomicInteractions" version))
5357 (sha256
5358 (base32
5359 "0zjl7rp5fk14kqsx0bkbpq6hqahbkiyvwa9aggp4kfb8hnmz9qal"))))
5360 (properties
5361 `((upstream-name . "GenomicInteractions")))
5362 (build-system r-build-system)
5363 (propagated-inputs
5364 `(("r-biobase" ,r-biobase)
5365 ("r-biocgenerics" ,r-biocgenerics)
5366 ("r-data-table" ,r-data-table)
5367 ("r-dplyr" ,r-dplyr)
5368 ("r-genomeinfodb" ,r-genomeinfodb)
5369 ("r-genomicranges" ,r-genomicranges)
5370 ("r-ggplot2" ,r-ggplot2)
5371 ("r-gridextra" ,r-gridextra)
5372 ("r-gviz" ,r-gviz)
5373 ("r-igraph" ,r-igraph)
5374 ("r-interactionset" ,r-interactionset)
5375 ("r-iranges" ,r-iranges)
5376 ("r-rsamtools" ,r-rsamtools)
5377 ("r-rtracklayer" ,r-rtracklayer)
5378 ("r-s4vectors" ,r-s4vectors)
5379 ("r-stringr" ,r-stringr)))
5380 (native-inputs
5381 `(("r-knitr" ,r-knitr)))
5382 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
5383 (synopsis "R package for handling genomic interaction data")
5384 (description
5385 "This R package provides tools for handling genomic interaction data,
5386 such as ChIA-PET/Hi-C, annotating genomic features with interaction
5387 information and producing various plots and statistics.")
5388 (license license:gpl3)))
5389
5390 (define-public r-ctc
5391 (package
5392 (name "r-ctc")
5393 (version "1.66.0")
5394 (source
5395 (origin
5396 (method url-fetch)
5397 (uri (bioconductor-uri "ctc" version))
5398 (sha256
5399 (base32
5400 "1v8aysvy6a3r1iafc3xvk885c128kb3pb9zpcdhdjcn0by96k8hh"))))
5401 (build-system r-build-system)
5402 (propagated-inputs `(("r-amap" ,r-amap)))
5403 (home-page "https://bioconductor.org/packages/ctc/")
5404 (synopsis "Cluster and tree conversion")
5405 (description
5406 "This package provides tools for exporting and importing classification
5407 trees and clusters to other programs.")
5408 (license license:gpl2)))
5409
5410 (define-public r-goseq
5411 (package
5412 (name "r-goseq")
5413 (version "1.44.0")
5414 (source
5415 (origin
5416 (method url-fetch)
5417 (uri (bioconductor-uri "goseq" version))
5418 (sha256
5419 (base32
5420 "07qrxssx4rb8r958r1smx8xfpzdxpp55hci3201hcmz3mxz77i0s"))))
5421 (build-system r-build-system)
5422 (propagated-inputs
5423 `(("r-annotationdbi" ,r-annotationdbi)
5424 ("r-biasedurn" ,r-biasedurn)
5425 ("r-biocgenerics" ,r-biocgenerics)
5426 ("r-genelendatabase" ,r-genelendatabase)
5427 ("r-go-db" ,r-go-db)
5428 ("r-mgcv" ,r-mgcv)))
5429 (home-page "https://bioconductor.org/packages/goseq/")
5430 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
5431 (description
5432 "This package provides tools to detect Gene Ontology and/or other user
5433 defined categories which are over/under represented in RNA-seq data.")
5434 (license license:lgpl2.0+)))
5435
5436 (define-public r-glimma
5437 (package
5438 (name "r-glimma")
5439 (version "2.2.0")
5440 (source
5441 (origin
5442 (method url-fetch)
5443 (uri (bioconductor-uri "Glimma" version))
5444 (sha256
5445 (base32
5446 "0dsk8qmwimzmd1x4k4jwg9q11jm1ahn8cw0gzd6s2gmigfls4hsa"))))
5447 (properties `((upstream-name . "Glimma")))
5448 (build-system r-build-system)
5449 (propagated-inputs
5450 `(("r-deseq2" ,r-deseq2)
5451 ("r-edger" ,r-edger)
5452 ("r-htmlwidgets" ,r-htmlwidgets)
5453 ("r-jsonlite" ,r-jsonlite)
5454 ("r-limma" ,r-limma)
5455 ("r-s4vectors" ,r-s4vectors)
5456 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5457 (native-inputs
5458 `(("r-knitr" ,r-knitr)))
5459 (home-page "https://github.com/Shians/Glimma")
5460 (synopsis "Interactive HTML graphics")
5461 (description
5462 "This package generates interactive visualisations for analysis of
5463 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
5464 HTML page. The interactions are built on top of the popular static
5465 representations of analysis results in order to provide additional
5466 information.")
5467 (license license:lgpl3)))
5468
5469 (define-public r-rots
5470 (package
5471 (name "r-rots")
5472 (version "1.20.0")
5473 (source
5474 (origin
5475 (method url-fetch)
5476 (uri (bioconductor-uri "ROTS" version))
5477 (sha256
5478 (base32
5479 "18wyi73l95df182vg3m014sxwdbpggr61vsbazhyw4vyx2fnzmpl"))))
5480 (properties `((upstream-name . "ROTS")))
5481 (build-system r-build-system)
5482 (propagated-inputs
5483 `(("r-biobase" ,r-biobase)
5484 ("r-rcpp" ,r-rcpp)))
5485 (home-page "https://bioconductor.org/packages/ROTS/")
5486 (synopsis "Reproducibility-Optimized Test Statistic")
5487 (description
5488 "This package provides tools for calculating the
5489 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
5490 in omics data.")
5491 (license license:gpl2+)))
5492
5493 (define-public r-plgem
5494 (package
5495 (name "r-plgem")
5496 (version "1.64.0")
5497 (source
5498 (origin
5499 (method url-fetch)
5500 (uri (bioconductor-uri "plgem" version))
5501 (sha256
5502 (base32
5503 "1rz5jk5bgpk7gjknx79jyslahjg46q2f4bx6dgd0vwmarc29a45z"))))
5504 (build-system r-build-system)
5505 (propagated-inputs
5506 `(("r-biobase" ,r-biobase)
5507 ("r-mass" ,r-mass)))
5508 (home-page "http://www.genopolis.it")
5509 (synopsis "Detect differential expression in microarray and proteomics datasets")
5510 (description
5511 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
5512 model the variance-versus-mean dependence that exists in a variety of
5513 genome-wide datasets, including microarray and proteomics data. The use of
5514 PLGEM has been shown to improve the detection of differentially expressed
5515 genes or proteins in these datasets.")
5516 (license license:gpl2)))
5517
5518 (define-public r-inspect
5519 (package
5520 (name "r-inspect")
5521 (version "1.22.0")
5522 (source
5523 (origin
5524 (method url-fetch)
5525 (uri (bioconductor-uri "INSPEcT" version))
5526 (sha256
5527 (base32
5528 "0jh5db9dv5pb6b50sg22x8q55m3h0h0nkmb9mivvvp22dhyrd82z"))))
5529 (properties `((upstream-name . "INSPEcT")))
5530 (build-system r-build-system)
5531 (propagated-inputs
5532 `(("r-biobase" ,r-biobase)
5533 ("r-biocgenerics" ,r-biocgenerics)
5534 ("r-biocparallel" ,r-biocparallel)
5535 ("r-deseq2" ,r-deseq2)
5536 ("r-desolve" ,r-desolve)
5537 ("r-gdata" ,r-gdata)
5538 ("r-genomeinfodb" ,r-genomeinfodb)
5539 ("r-genomicalignments" ,r-genomicalignments)
5540 ("r-genomicfeatures" ,r-genomicfeatures)
5541 ("r-genomicranges" ,r-genomicranges)
5542 ("r-iranges" ,r-iranges)
5543 ("r-kernsmooth" ,r-kernsmooth)
5544 ("r-plgem" ,r-plgem)
5545 ("r-proc" ,r-proc)
5546 ("r-rootsolve" ,r-rootsolve)
5547 ("r-rsamtools" ,r-rsamtools)
5548 ("r-rtracklayer" ,r-rtracklayer)
5549 ("r-s4vectors" ,r-s4vectors)
5550 ("r-shiny" ,r-shiny)
5551 ("r-summarizedexperiment" ,r-summarizedexperiment)
5552 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
5553 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
5554 (native-inputs
5555 `(("r-knitr" ,r-knitr)))
5556 (home-page "https://bioconductor.org/packages/INSPEcT")
5557 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
5558 (description
5559 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
5560 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
5561 order to evaluate synthesis, processing and degradation rates and assess via
5562 modeling the rates that determines changes in mature mRNA levels.")
5563 (license license:gpl2)))
5564
5565 (define-public r-dnabarcodes
5566 (package
5567 (name "r-dnabarcodes")
5568 (version "1.22.0")
5569 (source
5570 (origin
5571 (method url-fetch)
5572 (uri (bioconductor-uri "DNABarcodes" version))
5573 (sha256
5574 (base32
5575 "1wiqmzjcb7flp7ldcgbx91asxxrmm1rg9pcfljniab9xcsldhksp"))))
5576 (properties `((upstream-name . "DNABarcodes")))
5577 (build-system r-build-system)
5578 (propagated-inputs
5579 `(("r-bh" ,r-bh)
5580 ("r-matrix" ,r-matrix)
5581 ("r-rcpp" ,r-rcpp)))
5582 (native-inputs
5583 `(("r-knitr" ,r-knitr)))
5584 (home-page "https://bioconductor.org/packages/DNABarcodes")
5585 (synopsis "Create and analyze DNA barcodes")
5586 (description
5587 "This package offers tools to create DNA barcode sets capable of
5588 correcting insertion, deletion, and substitution errors. Existing barcodes
5589 can be analyzed regarding their minimal, maximal and average distances between
5590 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
5591 demultiplexed, i.e. assigned to their original reference barcode.")
5592 (license license:gpl2)))
5593
5594 (define-public r-ruvseq
5595 (package
5596 (name "r-ruvseq")
5597 (version "1.26.0")
5598 (source
5599 (origin
5600 (method url-fetch)
5601 (uri (bioconductor-uri "RUVSeq" version))
5602 (sha256
5603 (base32
5604 "1fy0k1p0m209lzjpd5jhfnifa22lrn63qq3a3kn5g0xhbbmijzac"))))
5605 (properties `((upstream-name . "RUVSeq")))
5606 (build-system r-build-system)
5607 (propagated-inputs
5608 `(("r-biobase" ,r-biobase)
5609 ("r-edaseq" ,r-edaseq)
5610 ("r-edger" ,r-edger)
5611 ("r-mass" ,r-mass)))
5612 (native-inputs
5613 `(("r-knitr" ,r-knitr)))
5614 (home-page "https://github.com/drisso/RUVSeq")
5615 (synopsis "Remove unwanted variation from RNA-Seq data")
5616 (description
5617 "This package implements methods to @dfn{remove unwanted variation} (RUV)
5618 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
5619 samples.")
5620 (license license:artistic2.0)))
5621
5622 (define-public r-biocneighbors
5623 (package
5624 (name "r-biocneighbors")
5625 (version "1.10.0")
5626 (source
5627 (origin
5628 (method url-fetch)
5629 (uri (bioconductor-uri "BiocNeighbors" version))
5630 (sha256
5631 (base32
5632 "0cjidi18wjip9xzx83890wjk40vvjq06prf1ag4m2kac47w01r7v"))))
5633 (properties `((upstream-name . "BiocNeighbors")))
5634 (build-system r-build-system)
5635 (propagated-inputs
5636 `(("r-biocparallel" ,r-biocparallel)
5637 ("r-matrix" ,r-matrix)
5638 ("r-rcpp" ,r-rcpp)
5639 ("r-rcpphnsw" ,r-rcpphnsw)
5640 ("r-s4vectors" ,r-s4vectors)))
5641 (native-inputs
5642 `(("r-knitr" ,r-knitr)))
5643 (home-page "https://bioconductor.org/packages/BiocNeighbors")
5644 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
5645 (description
5646 "This package implements exact and approximate methods for nearest
5647 neighbor detection, in a framework that allows them to be easily switched
5648 within Bioconductor packages or workflows. The exact algorithm is implemented
5649 using pre-clustering with the k-means algorithm. Functions are also provided
5650 to search for all neighbors within a given distance. Parallelization is
5651 achieved for all methods using the BiocParallel framework.")
5652 (license license:gpl3)))
5653
5654 (define-public r-scaledmatrix
5655 (package
5656 (name "r-scaledmatrix")
5657 (version "1.0.0")
5658 (source
5659 (origin
5660 (method url-fetch)
5661 (uri (bioconductor-uri "ScaledMatrix" version))
5662 (sha256
5663 (base32
5664 "1j96fvw1waqxbv5c8myfmhsidq370z03yz13yqmrs4nn1rpn1a06"))))
5665 (properties `((upstream-name . "ScaledMatrix")))
5666 (build-system r-build-system)
5667 (propagated-inputs
5668 `(("r-delayedarray" ,r-delayedarray)
5669 ("r-matrix" ,r-matrix)
5670 ("r-s4vectors" ,r-s4vectors)))
5671 (native-inputs `(("r-knitr" ,r-knitr)))
5672 (home-page "https://github.com/LTLA/ScaledMatrix")
5673 (synopsis "Create a DelayedMatrix of scaled and centered values")
5674 (description
5675 "This package provides delayed computation of a matrix of scaled and
5676 centered values. The result is equivalent to using the @code{scale} function
5677 but avoids explicit realization of a dense matrix during block processing.
5678 This permits greater efficiency in common operations, most notably matrix
5679 multiplication.")
5680 (license license:gpl3)))
5681
5682 (define-public r-treeio
5683 (package
5684 (name "r-treeio")
5685 (version "1.16.1")
5686 (source
5687 (origin
5688 (method url-fetch)
5689 (uri (bioconductor-uri "treeio" version))
5690 (sha256
5691 (base32
5692 "0ypl4h80m08sf7r4zfvqgvpsz46x15wvcl1idq5pd813bp1w2sws"))))
5693 (properties `((upstream-name . "treeio")))
5694 (build-system r-build-system)
5695 (propagated-inputs
5696 `(("r-ape" ,r-ape)
5697 ("r-dplyr" ,r-dplyr)
5698 ("r-jsonlite" ,r-jsonlite)
5699 ("r-magrittr" ,r-magrittr)
5700 ("r-rlang" ,r-rlang)
5701 ("r-tibble" ,r-tibble)
5702 ("r-tidytree" ,r-tidytree)))
5703 (native-inputs `(("r-knitr" ,r-knitr)))
5704 (home-page "https://github.com/YuLab-SMU/treeio")
5705 (synopsis "Base classes and functions for Phylogenetic tree input and output")
5706 (description
5707 "This is an R package to make it easier to import and store phylogenetic
5708 trees with associated data; and to link external data from different sources
5709 to phylogeny. It also supports exporting phylogenetic trees with
5710 heterogeneous associated data to a single tree file and can be served as a
5711 platform for merging tree with associated data and converting file formats.")
5712 (license license:artistic2.0)))
5713
5714 (define-public r-ggtree
5715 (package
5716 (name "r-ggtree")
5717 (version "3.0.2")
5718 (source
5719 (origin
5720 (method url-fetch)
5721 (uri (bioconductor-uri "ggtree" version))
5722 (sha256
5723 (base32
5724 "0i665b5jxgsv3ncxmczy7n0h911br44dw9f7m4jwv3pjmr5mm6vk"))))
5725 (properties `((upstream-name . "ggtree")))
5726 (build-system r-build-system)
5727 (propagated-inputs
5728 `(("r-ape" ,r-ape)
5729 ("r-aplot" ,r-aplot)
5730 ("r-dplyr" ,r-dplyr)
5731 ("r-ggplot2" ,r-ggplot2)
5732 ("r-magrittr" ,r-magrittr)
5733 ("r-purrr" ,r-purrr)
5734 ("r-rlang" ,r-rlang)
5735 ("r-rvcheck" ,r-rvcheck)
5736 ("r-scales" ,r-scales)
5737 ("r-tidyr" ,r-tidyr)
5738 ("r-tidytree" ,r-tidytree)
5739 ("r-treeio" ,r-treeio)))
5740 (native-inputs `(("r-knitr" ,r-knitr)))
5741 (home-page "https://yulab-smu.top/treedata-book/")
5742 (synopsis "R package for visualization of trees and annotation data")
5743 (description
5744 "This package extends the ggplot2 plotting system which implements a
5745 grammar of graphics. ggtree is designed for visualization and annotation of
5746 phylogenetic trees and other tree-like structures with their annotation
5747 data.")
5748 (license license:artistic2.0)))
5749
5750 (define-public r-metapod
5751 (package
5752 (name "r-metapod")
5753 (version "1.0.0")
5754 (source
5755 (origin
5756 (method url-fetch)
5757 (uri (bioconductor-uri "metapod" version))
5758 (sha256
5759 (base32
5760 "1hbcwr6d8gyrf4azh0gi588xkrg6gz7gsb5hbvzqkhplbsp6shlv"))))
5761 (properties `((upstream-name . "metapod")))
5762 (build-system r-build-system)
5763 (propagated-inputs
5764 `(("r-rcpp" ,r-rcpp)))
5765 (native-inputs
5766 `(("r-knitr" ,r-knitr)))
5767 (home-page "https://bioconductor.org/packages/metapod")
5768 (synopsis "Meta-analyses on p-values of differential analyses")
5769 (description
5770 "This package implements a variety of methods for combining p-values in
5771 differential analyses of genome-scale datasets. Functions can combine
5772 p-values across different tests in the same analysis (e.g., genomic windows in
5773 ChIP-seq, exons in RNA-seq) or for corresponding tests across separate
5774 analyses (e.g., replicated comparisons, effect of different treatment
5775 conditions). Support is provided for handling log-transformed input p-values,
5776 missing values and weighting where appropriate.")
5777 (license license:gpl3)))
5778
5779 (define-public r-biocsingular
5780 (package
5781 (name "r-biocsingular")
5782 (version "1.8.0")
5783 (source
5784 (origin
5785 (method url-fetch)
5786 (uri (bioconductor-uri "BiocSingular" version))
5787 (sha256
5788 (base32
5789 "1l0xgc3z5ci5sid198nsgg0k5i40rh877jybzmy0ify7rzv8carp"))))
5790 (properties `((upstream-name . "BiocSingular")))
5791 (build-system r-build-system)
5792 (propagated-inputs
5793 `(("r-beachmat" ,r-beachmat)
5794 ("r-biocgenerics" ,r-biocgenerics)
5795 ("r-biocparallel" ,r-biocparallel)
5796 ("r-delayedarray" ,r-delayedarray)
5797 ("r-irlba" ,r-irlba)
5798 ("r-matrix" ,r-matrix)
5799 ("r-rcpp" ,r-rcpp)
5800 ("r-rsvd" ,r-rsvd)
5801 ("r-s4vectors" ,r-s4vectors)
5802 ("r-scaledmatrix" ,r-scaledmatrix)))
5803 (native-inputs
5804 `(("r-knitr" ,r-knitr)))
5805 (home-page "https://github.com/LTLA/BiocSingular")
5806 (synopsis "Singular value decomposition for Bioconductor packages")
5807 (description
5808 "This package implements exact and approximate methods for singular value
5809 decomposition and principal components analysis, in a framework that allows
5810 them to be easily switched within Bioconductor packages or workflows. Where
5811 possible, parallelization is achieved using the BiocParallel framework.")
5812 (license license:gpl3)))
5813
5814 (define-public r-destiny
5815 (package
5816 (name "r-destiny")
5817 (version "3.4.0")
5818 (source
5819 (origin
5820 (method url-fetch)
5821 (uri (bioconductor-uri "destiny" version))
5822 (sha256
5823 (base32
5824 "1i7f5q02zvpfaxhd76fbw0h1wfgjphyn5hrmrjpvlnv4ardzsir2"))))
5825 (build-system r-build-system)
5826 (propagated-inputs
5827 `(("r-biobase" ,r-biobase)
5828 ("r-biocgenerics" ,r-biocgenerics)
5829 ("r-ggplot-multistats" ,r-ggplot-multistats)
5830 ("r-ggplot2" ,r-ggplot2)
5831 ("r-ggthemes" ,r-ggthemes)
5832 ("r-irlba" ,r-irlba)
5833 ("r-knn-covertree" ,r-knn-covertree)
5834 ("r-matrix" ,r-matrix)
5835 ("r-pcamethods" ,r-pcamethods)
5836 ("r-proxy" ,r-proxy)
5837 ("r-rcpp" ,r-rcpp)
5838 ("r-rcppeigen" ,r-rcppeigen)
5839 ("r-rcpphnsw" ,r-rcpphnsw)
5840 ("r-rspectra" ,r-rspectra)
5841 ("r-scales" ,r-scales)
5842 ("r-scatterplot3d" ,r-scatterplot3d)
5843 ("r-singlecellexperiment" ,r-singlecellexperiment)
5844 ("r-smoother" ,r-smoother)
5845 ("r-summarizedexperiment" ,r-summarizedexperiment)
5846 ("r-tidyr" ,r-tidyr)
5847 ("r-tidyselect" ,r-tidyselect)
5848 ("r-vim" ,r-vim)))
5849 (native-inputs
5850 `(("r-nbconvertr" ,r-nbconvertr))) ; for vignettes
5851 (home-page "https://bioconductor.org/packages/destiny/")
5852 (synopsis "Create and plot diffusion maps")
5853 (description "This package provides tools to create and plot diffusion
5854 maps.")
5855 ;; Any version of the GPL
5856 (license license:gpl3+)))
5857
5858 (define-public r-savr
5859 (package
5860 (name "r-savr")
5861 (version "1.30.0")
5862 (source
5863 (origin
5864 (method url-fetch)
5865 (uri (bioconductor-uri "savR" version))
5866 (sha256
5867 (base32
5868 "1ynp334hm76zf05j4f6vha6r16s5f2ncxx9yviq4rxidk9r723jq"))))
5869 (properties `((upstream-name . "savR")))
5870 (build-system r-build-system)
5871 (propagated-inputs
5872 `(("r-ggplot2" ,r-ggplot2)
5873 ("r-gridextra" ,r-gridextra)
5874 ("r-reshape2" ,r-reshape2)
5875 ("r-scales" ,r-scales)
5876 ("r-xml" ,r-xml)))
5877 (home-page "https://github.com/bcalder/savR")
5878 (synopsis "Parse and analyze Illumina SAV files")
5879 (description
5880 "This package provides tools to parse Illumina Sequence Analysis
5881 Viewer (SAV) files, access data, and generate QC plots.")
5882 (license license:agpl3+)))
5883
5884 (define-public r-chipexoqual
5885 (package
5886 (name "r-chipexoqual")
5887 (version "1.16.0")
5888 (source
5889 (origin
5890 (method url-fetch)
5891 (uri (bioconductor-uri "ChIPexoQual" version))
5892 (sha256
5893 (base32
5894 "0fbrf5s6pz115djm7xw95k1d0p7svi40aacbb3d52wmx5azwj424"))))
5895 (properties `((upstream-name . "ChIPexoQual")))
5896 (build-system r-build-system)
5897 (propagated-inputs
5898 `(("r-biocparallel" ,r-biocparallel)
5899 ("r-biovizbase" ,r-biovizbase)
5900 ("r-broom" ,r-broom)
5901 ("r-data-table" ,r-data-table)
5902 ("r-dplyr" ,r-dplyr)
5903 ("r-genomeinfodb" ,r-genomeinfodb)
5904 ("r-genomicalignments" ,r-genomicalignments)
5905 ("r-genomicranges" ,r-genomicranges)
5906 ("r-ggplot2" ,r-ggplot2)
5907 ("r-hexbin" ,r-hexbin)
5908 ("r-iranges" ,r-iranges)
5909 ("r-rcolorbrewer" ,r-rcolorbrewer)
5910 ("r-rmarkdown" ,r-rmarkdown)
5911 ("r-rsamtools" ,r-rsamtools)
5912 ("r-s4vectors" ,r-s4vectors)
5913 ("r-scales" ,r-scales)
5914 ("r-viridis" ,r-viridis)))
5915 (native-inputs
5916 `(("r-knitr" ,r-knitr)))
5917 (home-page "https://github.com/keleslab/ChIPexoQual")
5918 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
5919 (description
5920 "This package provides a quality control pipeline for ChIP-exo/nexus
5921 sequencing data.")
5922 (license license:gpl2+)))
5923
5924 (define-public r-copynumber
5925 (package
5926 (name "r-copynumber")
5927 (version "1.32.0")
5928 (source (origin
5929 (method url-fetch)
5930 (uri (bioconductor-uri "copynumber" version))
5931 (sha256
5932 (base32
5933 "03pvjzjrcsbjfw3855s3whfzin45vaipy7cahnj6fywdysvh8hps"))))
5934 (build-system r-build-system)
5935 (propagated-inputs
5936 `(("r-s4vectors" ,r-s4vectors)
5937 ("r-iranges" ,r-iranges)
5938 ("r-genomicranges" ,r-genomicranges)
5939 ("r-biocgenerics" ,r-biocgenerics)))
5940 (home-page "https://bioconductor.org/packages/copynumber")
5941 (synopsis "Segmentation of single- and multi-track copy number data")
5942 (description
5943 "This package segments single- and multi-track copy number data by a
5944 penalized least squares regression method.")
5945 (license license:artistic2.0)))
5946
5947 (define-public r-dnacopy
5948 (package
5949 (name "r-dnacopy")
5950 (version "1.66.0")
5951 (source
5952 (origin
5953 (method url-fetch)
5954 (uri (bioconductor-uri "DNAcopy" version))
5955 (sha256
5956 (base32
5957 "0mgq814f6c2271d2lxg763bsnv3ma4ari5xa4x1rbksv8yvcjc4d"))))
5958 (properties `((upstream-name . "DNAcopy")))
5959 (build-system r-build-system)
5960 (native-inputs `(("gfortran" ,gfortran)))
5961 (home-page "https://bioconductor.org/packages/DNAcopy")
5962 (synopsis "DNA copy number data analysis")
5963 (description
5964 "This package implements the @dfn{circular binary segmentation} (CBS)
5965 algorithm to segment DNA copy number data and identify genomic regions with
5966 abnormal copy number.")
5967 (license license:gpl2+)))
5968
5969 ;; This is a CRAN package, but it uncharacteristically depends on a
5970 ;; Bioconductor package.
5971 (define-public r-htscluster
5972 (package
5973 (name "r-htscluster")
5974 (version "2.0.8")
5975 (source
5976 (origin
5977 (method url-fetch)
5978 (uri (cran-uri "HTSCluster" version))
5979 (sha256
5980 (base32
5981 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
5982 (properties `((upstream-name . "HTSCluster")))
5983 (build-system r-build-system)
5984 (propagated-inputs
5985 `(("r-capushe" ,r-capushe)
5986 ("r-edger" ,r-edger)
5987 ("r-plotrix" ,r-plotrix)))
5988 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
5989 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
5990 (description
5991 "This package provides a Poisson mixture model is implemented to cluster
5992 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
5993 estimation is performed using either the EM or CEM algorithm, and the slope
5994 heuristics are used for model selection (i.e., to choose the number of
5995 clusters).")
5996 (license license:gpl3+)))
5997
5998 (define-public r-deds
5999 (package
6000 (name "r-deds")
6001 (version "1.60.0")
6002 (source
6003 (origin
6004 (method url-fetch)
6005 (uri (bioconductor-uri "DEDS" version))
6006 (sha256
6007 (base32
6008 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
6009 (properties `((upstream-name . "DEDS")))
6010 (build-system r-build-system)
6011 (home-page "https://bioconductor.org/packages/DEDS/")
6012 (synopsis "Differential expression via distance summary for microarray data")
6013 (description
6014 "This library contains functions that calculate various statistics of
6015 differential expression for microarray data, including t statistics, fold
6016 change, F statistics, SAM, moderated t and F statistics and B statistics. It
6017 also implements a new methodology called DEDS (Differential Expression via
6018 Distance Summary), which selects differentially expressed genes by integrating
6019 and summarizing a set of statistics using a weighted distance approach.")
6020 ;; Any version of the LGPL.
6021 (license license:lgpl3+)))
6022
6023 ;; This is a CRAN package, but since it depends on a Bioconductor package we
6024 ;; put it here.
6025 (define-public r-nbpseq
6026 (package
6027 (name "r-nbpseq")
6028 (version "0.3.0")
6029 (source
6030 (origin
6031 (method url-fetch)
6032 (uri (cran-uri "NBPSeq" version))
6033 (sha256
6034 (base32
6035 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
6036 (properties `((upstream-name . "NBPSeq")))
6037 (build-system r-build-system)
6038 (propagated-inputs
6039 `(("r-qvalue" ,r-qvalue)))
6040 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
6041 (synopsis "Negative binomial models for RNA-Seq data")
6042 (description
6043 "This package provides negative binomial models for two-group comparisons
6044 and regression inferences from RNA-sequencing data.")
6045 (license license:gpl2)))
6046
6047 (define-public r-ebseq
6048 (package
6049 (name "r-ebseq")
6050 (version "1.32.0")
6051 (source
6052 (origin
6053 (method url-fetch)
6054 (uri (bioconductor-uri "EBSeq" version))
6055 (sha256
6056 (base32
6057 "0h5v3vrb90zim80bdnr3aw58g3h7zjqa4l9i0jwx5j19ywf54fdz"))))
6058 (properties `((upstream-name . "EBSeq")))
6059 (build-system r-build-system)
6060 (propagated-inputs
6061 `(("r-blockmodeling" ,r-blockmodeling)
6062 ("r-gplots" ,r-gplots)
6063 ("r-testthat" ,r-testthat)))
6064 (home-page "https://bioconductor.org/packages/EBSeq")
6065 (synopsis "Differential expression analysis of RNA-seq data")
6066 (description
6067 "This package provides tools for differential expression analysis at both
6068 gene and isoform level using RNA-seq data")
6069 (license license:artistic2.0)))
6070
6071 (define-public r-karyoploter
6072 (package
6073 (name "r-karyoploter")
6074 (version "1.18.0")
6075 (source (origin
6076 (method url-fetch)
6077 (uri (bioconductor-uri "karyoploteR" version))
6078 (sha256
6079 (base32
6080 "11sgxz2xz685pgm8mf0hzm6aryx4fj5g3dlffjzpqxh3awfqa19p"))))
6081 (build-system r-build-system)
6082 (propagated-inputs
6083 `(("r-annotationdbi" ,r-annotationdbi)
6084 ("r-bamsignals" ,r-bamsignals)
6085 ("r-bezier" ,r-bezier)
6086 ("r-biovizbase" ,r-biovizbase)
6087 ("r-digest" ,r-digest)
6088 ("r-genomeinfodb" ,r-genomeinfodb)
6089 ("r-genomicfeatures" ,r-genomicfeatures)
6090 ("r-genomicranges" ,r-genomicranges)
6091 ("r-iranges" ,r-iranges)
6092 ("r-memoise" ,r-memoise)
6093 ("r-regioner" ,r-regioner)
6094 ("r-rsamtools" ,r-rsamtools)
6095 ("r-rtracklayer" ,r-rtracklayer)
6096 ("r-s4vectors" ,r-s4vectors)
6097 ("r-variantannotation" ,r-variantannotation)))
6098 (native-inputs
6099 `(("r-knitr" ,r-knitr)))
6100 (home-page "https://bioconductor.org/packages/karyoploteR/")
6101 (synopsis "Plot customizable linear genomes displaying arbitrary data")
6102 (description "This package creates karyotype plots of arbitrary genomes and
6103 offers a complete set of functions to plot arbitrary data on them. It mimics
6104 many R base graphics functions coupling them with a coordinate change function
6105 automatically mapping the chromosome and data coordinates into the plot
6106 coordinates.")
6107 (license license:artistic2.0)))
6108
6109 (define-public r-lpsymphony
6110 (package
6111 (name "r-lpsymphony")
6112 (version "1.20.0")
6113 (source
6114 (origin
6115 (method url-fetch)
6116 (uri (bioconductor-uri "lpsymphony" version))
6117 (sha256
6118 (base32
6119 "0aw4b3p5z8ys7zlwy8s3bsqk03xwx42311yxr7q14w3f7sn3shzn"))))
6120 (build-system r-build-system)
6121 (inputs
6122 `(("zlib" ,zlib)))
6123 (native-inputs
6124 `(("pkg-config" ,pkg-config)
6125 ("r-knitr" ,r-knitr)))
6126 (home-page "https://r-forge.r-project.org/projects/rsymphony")
6127 (synopsis "Symphony integer linear programming solver in R")
6128 (description
6129 "This package was derived from Rsymphony. The package provides an R
6130 interface to SYMPHONY, a linear programming solver written in C++. The main
6131 difference between this package and Rsymphony is that it includes the solver
6132 source code, while Rsymphony expects to find header and library files on the
6133 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
6134 to install interface to SYMPHONY.")
6135 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
6136 ;; lpsimphony is released under the same terms.
6137 (license license:epl1.0)))
6138
6139 (define-public r-ihw
6140 (package
6141 (name "r-ihw")
6142 (version "1.20.0")
6143 (source
6144 (origin
6145 (method url-fetch)
6146 (uri (bioconductor-uri "IHW" version))
6147 (sha256
6148 (base32
6149 "0b393a8ayzbnrgkk562w1dj7avacpb3wc7yq7awiki24wi5g2lfw"))))
6150 (properties `((upstream-name . "IHW")))
6151 (build-system r-build-system)
6152 (propagated-inputs
6153 `(("r-biocgenerics" ,r-biocgenerics)
6154 ("r-fdrtool" ,r-fdrtool)
6155 ("r-lpsymphony" ,r-lpsymphony)
6156 ("r-slam" ,r-slam)))
6157 (native-inputs
6158 `(("r-knitr" ,r-knitr)))
6159 (home-page "https://bioconductor.org/packages/IHW")
6160 (synopsis "Independent hypothesis weighting")
6161 (description
6162 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
6163 procedure that increases power compared to the method of Benjamini and
6164 Hochberg by assigning data-driven weights to each hypothesis. The input to
6165 IHW is a two-column table of p-values and covariates. The covariate can be
6166 any continuous-valued or categorical variable that is thought to be
6167 informative on the statistical properties of each hypothesis test, while it is
6168 independent of the p-value under the null hypothesis.")
6169 (license license:artistic2.0)))
6170
6171 (define-public r-icobra
6172 (package
6173 (name "r-icobra")
6174 (version "1.20.0")
6175 (source
6176 (origin
6177 (method url-fetch)
6178 (uri (bioconductor-uri "iCOBRA" version))
6179 (sha256
6180 (base32
6181 "190rkx3sivj68in36hhin5v535yd6fvlvm7l90w1bl38zpb7p6jn"))))
6182 (properties `((upstream-name . "iCOBRA")))
6183 (build-system r-build-system)
6184 (propagated-inputs
6185 `(("r-dplyr" ,r-dplyr)
6186 ("r-dt" ,r-dt)
6187 ("r-ggplot2" ,r-ggplot2)
6188 ("r-limma" ,r-limma)
6189 ("r-reshape2" ,r-reshape2)
6190 ("r-rocr" ,r-rocr)
6191 ("r-scales" ,r-scales)
6192 ("r-shiny" ,r-shiny)
6193 ("r-shinybs" ,r-shinybs)
6194 ("r-shinydashboard" ,r-shinydashboard)
6195 ("r-upsetr" ,r-upsetr)))
6196 (native-inputs
6197 `(("r-knitr" ,r-knitr)))
6198 (home-page "https://bioconductor.org/packages/iCOBRA")
6199 (synopsis "Comparison and visualization of ranking and assignment methods")
6200 (description
6201 "This package provides functions for calculation and visualization of
6202 performance metrics for evaluation of ranking and binary
6203 classification (assignment) methods. It also contains a Shiny application for
6204 interactive exploration of results.")
6205 (license license:gpl2+)))
6206
6207 (define-public r-mast
6208 (package
6209 (name "r-mast")
6210 (version "1.18.0")
6211 (source
6212 (origin
6213 (method url-fetch)
6214 (uri (bioconductor-uri "MAST" version))
6215 (sha256
6216 (base32
6217 "1gkpagam5rap36viyr3n4psa658x9vckrxap1h67jasiiyrcfz2d"))))
6218 (properties `((upstream-name . "MAST")))
6219 (build-system r-build-system)
6220 (propagated-inputs
6221 `(("r-abind" ,r-abind)
6222 ("r-biobase" ,r-biobase)
6223 ("r-biocgenerics" ,r-biocgenerics)
6224 ("r-data-table" ,r-data-table)
6225 ("r-ggplot2" ,r-ggplot2)
6226 ("r-plyr" ,r-plyr)
6227 ("r-progress" ,r-progress)
6228 ("r-reshape2" ,r-reshape2)
6229 ("r-s4vectors" ,r-s4vectors)
6230 ("r-singlecellexperiment" ,r-singlecellexperiment)
6231 ("r-stringr" ,r-stringr)
6232 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6233 (native-inputs
6234 `(("r-knitr" ,r-knitr)))
6235 (home-page "https://github.com/RGLab/MAST/")
6236 (synopsis "Model-based analysis of single cell transcriptomics")
6237 (description
6238 "This package provides methods and models for handling zero-inflated
6239 single cell assay data.")
6240 (license license:gpl2+)))
6241
6242 (define-public r-monocle
6243 (package
6244 (name "r-monocle")
6245 (version "2.20.0")
6246 (source
6247 (origin
6248 (method url-fetch)
6249 (uri (bioconductor-uri "monocle" version))
6250 (sha256
6251 (base32
6252 "05j1vc51f39xalggdq27y7218gkr3zq7fh7jhzsb4jj7fpn837ry"))))
6253 (build-system r-build-system)
6254 (propagated-inputs
6255 `(("r-biobase" ,r-biobase)
6256 ("r-biocgenerics" ,r-biocgenerics)
6257 ("r-biocviews" ,r-biocviews)
6258 ("r-cluster" ,r-cluster)
6259 ("r-combinat" ,r-combinat)
6260 ("r-ddrtree" ,r-ddrtree)
6261 ("r-densityclust" ,r-densityclust)
6262 ("r-dplyr" ,r-dplyr)
6263 ("r-fastica" ,r-fastica)
6264 ("r-ggplot2" ,r-ggplot2)
6265 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
6266 ("r-igraph" ,r-igraph)
6267 ("r-irlba" ,r-irlba)
6268 ("r-limma" ,r-limma)
6269 ("r-mass" ,r-mass)
6270 ("r-matrix" ,r-matrix)
6271 ("r-matrixstats" ,r-matrixstats)
6272 ("r-pheatmap" ,r-pheatmap)
6273 ("r-plyr" ,r-plyr)
6274 ("r-proxy" ,r-proxy)
6275 ("r-qlcmatrix" ,r-qlcmatrix)
6276 ("r-rann" ,r-rann)
6277 ("r-rcpp" ,r-rcpp)
6278 ("r-reshape2" ,r-reshape2)
6279 ("r-rtsne" ,r-rtsne)
6280 ("r-slam" ,r-slam)
6281 ("r-stringr" ,r-stringr)
6282 ("r-tibble" ,r-tibble)
6283 ("r-vgam" ,r-vgam)
6284 ("r-viridis" ,r-viridis)))
6285 (native-inputs
6286 `(("r-knitr" ,r-knitr)))
6287 (home-page "https://bioconductor.org/packages/monocle")
6288 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
6289 (description
6290 "Monocle performs differential expression and time-series analysis for
6291 single-cell expression experiments. It orders individual cells according to
6292 progress through a biological process, without knowing ahead of time which
6293 genes define progress through that process. Monocle also performs
6294 differential expression analysis, clustering, visualization, and other useful
6295 tasks on single cell expression data. It is designed to work with RNA-Seq and
6296 qPCR data, but could be used with other types as well.")
6297 (license license:artistic2.0)))
6298
6299 (define-public r-monocle3
6300 (package
6301 (name "r-monocle3")
6302 (version "0.1.2")
6303 (source
6304 (origin
6305 (method git-fetch)
6306 (uri (git-reference
6307 (url "https://github.com/cole-trapnell-lab/monocle3")
6308 (commit version)))
6309 (file-name (git-file-name name version))
6310 (sha256
6311 (base32
6312 "1cjxqfw3qvy269hsf5v80d4kshl932wrl949iayas02saj6f70ls"))))
6313 (build-system r-build-system)
6314 (propagated-inputs
6315 `(("r-biobase" ,r-biobase)
6316 ("r-biocgenerics" ,r-biocgenerics)
6317 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
6318 ("r-dplyr" ,r-dplyr)
6319 ("r-ggplot2" ,r-ggplot2)
6320 ("r-ggrepel" ,r-ggrepel)
6321 ("r-grr" ,r-grr)
6322 ("r-htmlwidgets" ,r-htmlwidgets)
6323 ("r-igraph" ,r-igraph)
6324 ("r-irlba" ,r-irlba)
6325 ("r-limma" ,r-limma)
6326 ("r-lmtest" ,r-lmtest)
6327 ("r-mass" ,r-mass)
6328 ("r-matrix" ,r-matrix)
6329 ("r-matrix-utils" ,r-matrix-utils)
6330 ("r-pbapply" ,r-pbapply)
6331 ("r-pbmcapply" ,r-pbmcapply)
6332 ("r-pheatmap" ,r-pheatmap)
6333 ("r-plotly" ,r-plotly)
6334 ("r-pryr" ,r-pryr)
6335 ("r-proxy" ,r-proxy)
6336 ("r-pscl" ,r-pscl)
6337 ("r-purrr" ,r-purrr)
6338 ("r-rann" ,r-rann)
6339 ("r-rcpp" ,r-rcpp)
6340 ("r-rcppparallel" ,r-rcppparallel)
6341 ("r-reshape2" ,r-reshape2)
6342 ("r-reticulate" ,r-reticulate)
6343 ("r-rhpcblasctl" ,r-rhpcblasctl)
6344 ("r-rtsne" ,r-rtsne)
6345 ("r-shiny" ,r-shiny)
6346 ("r-slam" ,r-slam)
6347 ("r-spdep" ,r-spdep)
6348 ("r-speedglm" ,r-speedglm)
6349 ("r-stringr" ,r-stringr)
6350 ("r-singlecellexperiment" ,r-singlecellexperiment)
6351 ("r-tibble" ,r-tibble)
6352 ("r-tidyr" ,r-tidyr)
6353 ("r-uwot" ,r-uwot)
6354 ("r-viridis" ,r-viridis)))
6355 (home-page "https://github.com/cole-trapnell-lab/monocle3")
6356 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
6357 (description
6358 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
6359 (license license:expat)))
6360
6361 (define-public r-noiseq
6362 (package
6363 (name "r-noiseq")
6364 (version "2.36.0")
6365 (source
6366 (origin
6367 (method url-fetch)
6368 (uri (bioconductor-uri "NOISeq" version))
6369 (sha256
6370 (base32
6371 "18d51dv2ygsm7kkwal341f1wrwrazyns0045j00vld367kic8jiz"))))
6372 (properties `((upstream-name . "NOISeq")))
6373 (build-system r-build-system)
6374 (propagated-inputs
6375 `(("r-biobase" ,r-biobase)
6376 ("r-matrix" ,r-matrix)))
6377 (home-page "https://bioconductor.org/packages/NOISeq")
6378 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
6379 (description
6380 "This package provides tools to support the analysis of RNA-seq
6381 expression data or other similar kind of data. It provides exploratory plots
6382 to evaluate saturation, count distribution, expression per chromosome, type of
6383 detected features, features length, etc. It also supports the analysis of
6384 differential expression between two experimental conditions with no parametric
6385 assumptions.")
6386 (license license:artistic2.0)))
6387
6388 (define-public r-scdd
6389 (package
6390 (name "r-scdd")
6391 (version "1.16.0")
6392 (source
6393 (origin
6394 (method url-fetch)
6395 (uri (bioconductor-uri "scDD" version))
6396 (sha256
6397 (base32
6398 "1dw9m3m99apmbs32461c6lnmy81n5hxbhz3p8jk419gajkh4v1ji"))))
6399 (properties `((upstream-name . "scDD")))
6400 (build-system r-build-system)
6401 (propagated-inputs
6402 `(("r-arm" ,r-arm)
6403 ("r-biocparallel" ,r-biocparallel)
6404 ("r-ebseq" ,r-ebseq)
6405 ("r-fields" ,r-fields)
6406 ("r-ggplot2" ,r-ggplot2)
6407 ("r-mclust" ,r-mclust)
6408 ("r-outliers" ,r-outliers)
6409 ("r-s4vectors" ,r-s4vectors)
6410 ("r-scran" ,r-scran)
6411 ("r-singlecellexperiment" ,r-singlecellexperiment)
6412 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6413 (native-inputs
6414 `(("r-knitr" ,r-knitr)))
6415 (home-page "https://github.com/kdkorthauer/scDD")
6416 (synopsis "Mixture modeling of single-cell RNA-seq data")
6417 (description
6418 "This package implements a method to analyze single-cell RNA-seq data
6419 utilizing flexible Dirichlet Process mixture models. Genes with differential
6420 distributions of expression are classified into several interesting patterns
6421 of differences between two conditions. The package also includes functions
6422 for simulating data with these patterns from negative binomial
6423 distributions.")
6424 (license license:gpl2)))
6425
6426 (define-public r-scone
6427 (package
6428 (name "r-scone")
6429 (version "1.16.0")
6430 (source
6431 (origin
6432 (method url-fetch)
6433 (uri (bioconductor-uri "scone" version))
6434 (sha256
6435 (base32
6436 "1wlky6nkdpz8fya81l6zaxlxc30wyp2gkyh94y5995jwddll38z5"))))
6437 (build-system r-build-system)
6438 (propagated-inputs
6439 `(("r-aroma-light" ,r-aroma-light)
6440 ("r-biocparallel" ,r-biocparallel)
6441 ("r-boot" ,r-boot)
6442 ("r-class" ,r-class)
6443 ("r-cluster" ,r-cluster)
6444 ("r-compositions" ,r-compositions)
6445 ("r-diptest" ,r-diptest)
6446 ("r-edger" ,r-edger)
6447 ("r-fpc" ,r-fpc)
6448 ("r-gplots" ,r-gplots)
6449 ("r-hexbin" ,r-hexbin)
6450 ("r-limma" ,r-limma)
6451 ("r-matrixgenerics" ,r-matrixgenerics)
6452 ("r-matrixstats" ,r-matrixstats)
6453 ("r-mixtools" ,r-mixtools)
6454 ("r-rarpack" ,r-rarpack)
6455 ("r-rcolorbrewer" ,r-rcolorbrewer)
6456 ("r-rhdf5" ,r-rhdf5)
6457 ("r-ruvseq" ,r-ruvseq)
6458 ("r-singlecellexperiment" ,r-singlecellexperiment)
6459 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6460 (native-inputs
6461 `(("r-knitr" ,r-knitr)))
6462 (home-page "https://bioconductor.org/packages/scone")
6463 (synopsis "Single cell overview of normalized expression data")
6464 (description
6465 "SCONE is an R package for comparing and ranking the performance of
6466 different normalization schemes for single-cell RNA-seq and other
6467 high-throughput analyses.")
6468 (license license:artistic2.0)))
6469
6470 (define-public r-geoquery
6471 (package
6472 (name "r-geoquery")
6473 (version "2.60.0")
6474 (source
6475 (origin
6476 (method url-fetch)
6477 (uri (bioconductor-uri "GEOquery" version))
6478 (sha256
6479 (base32
6480 "0jhkdbcd03d5n8vn3xkad6f21xjkawyxc9rdwcj8vwc8alx730am"))))
6481 (properties `((upstream-name . "GEOquery")))
6482 (build-system r-build-system)
6483 (propagated-inputs
6484 `(("r-biobase" ,r-biobase)
6485 ("r-dplyr" ,r-dplyr)
6486 ("r-httr" ,r-httr)
6487 ("r-limma" ,r-limma)
6488 ("r-magrittr" ,r-magrittr)
6489 ("r-readr" ,r-readr)
6490 ("r-tidyr" ,r-tidyr)
6491 ("r-xml2" ,r-xml2)))
6492 (native-inputs
6493 `(("r-knitr" ,r-knitr)))
6494 (home-page "https://github.com/seandavi/GEOquery/")
6495 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
6496 (description
6497 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
6498 microarray data. Given the rich and varied nature of this resource, it is
6499 only natural to want to apply BioConductor tools to these data. GEOquery is
6500 the bridge between GEO and BioConductor.")
6501 (license license:gpl2)))
6502
6503 (define-public r-illuminaio
6504 (package
6505 (name "r-illuminaio")
6506 (version "0.34.0")
6507 (source
6508 (origin
6509 (method url-fetch)
6510 (uri (bioconductor-uri "illuminaio" version))
6511 (sha256
6512 (base32
6513 "1sy0i3nbzsw4ymdxaiwpyx1vcg9yp3i8xfjcymqwhv95j3kyglv9"))))
6514 (build-system r-build-system)
6515 (propagated-inputs
6516 `(("r-base64" ,r-base64)))
6517 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
6518 (synopsis "Parse Illumina microarray output files")
6519 (description
6520 "This package provides tools for parsing Illumina's microarray output
6521 files, including IDAT.")
6522 (license license:gpl2)))
6523
6524 (define-public r-siggenes
6525 (package
6526 (name "r-siggenes")
6527 (version "1.66.0")
6528 (source
6529 (origin
6530 (method url-fetch)
6531 (uri (bioconductor-uri "siggenes" version))
6532 (sha256
6533 (base32
6534 "0lva0f255fcpy625frvij4n14q7nw4jcx8n2hlkxid4mgkfqwlhf"))))
6535 (build-system r-build-system)
6536 (propagated-inputs
6537 `(("r-biobase" ,r-biobase)
6538 ("r-multtest" ,r-multtest)
6539 ("r-scrime" ,r-scrime)))
6540 (home-page "https://bioconductor.org/packages/siggenes/")
6541 (synopsis
6542 "Multiple testing using SAM and Efron's empirical Bayes approaches")
6543 (description
6544 "This package provides tools for the identification of differentially
6545 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
6546 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
6547 Bayes Analyses of Microarrays} (EBAM).")
6548 (license license:lgpl2.0+)))
6549
6550 (define-public r-bumphunter
6551 (package
6552 (name "r-bumphunter")
6553 (version "1.34.0")
6554 (source
6555 (origin
6556 (method url-fetch)
6557 (uri (bioconductor-uri "bumphunter" version))
6558 (sha256
6559 (base32
6560 "0wi38vwfi8qr10x4xifhylxx7vfc6fqvqs649iq7lf0y7islwq2v"))))
6561 (build-system r-build-system)
6562 (propagated-inputs
6563 `(("r-annotationdbi" ,r-annotationdbi)
6564 ("r-biocgenerics" ,r-biocgenerics)
6565 ("r-dorng" ,r-dorng)
6566 ("r-foreach" ,r-foreach)
6567 ("r-genomeinfodb" ,r-genomeinfodb)
6568 ("r-genomicfeatures" ,r-genomicfeatures)
6569 ("r-genomicranges" ,r-genomicranges)
6570 ("r-iranges" ,r-iranges)
6571 ("r-iterators" ,r-iterators)
6572 ("r-limma" ,r-limma)
6573 ("r-locfit" ,r-locfit)
6574 ("r-matrixstats" ,r-matrixstats)
6575 ("r-s4vectors" ,r-s4vectors)))
6576 (home-page "https://github.com/ririzarr/bumphunter")
6577 (synopsis "Find bumps in genomic data")
6578 (description
6579 "This package provides tools for finding bumps in genomic data in order
6580 to identify differentially methylated regions in epigenetic epidemiology
6581 studies.")
6582 (license license:artistic2.0)))
6583
6584 (define-public r-minfi
6585 (package
6586 (name "r-minfi")
6587 (version "1.38.0")
6588 (source
6589 (origin
6590 (method url-fetch)
6591 (uri (bioconductor-uri "minfi" version))
6592 (sha256
6593 (base32
6594 "189lzppvrz6bw2kpppawgsfjyh2ahyy8bi9z8srpas67qf2r8jmj"))))
6595 (build-system r-build-system)
6596 (propagated-inputs
6597 `(("r-beanplot" ,r-beanplot)
6598 ("r-biobase" ,r-biobase)
6599 ("r-biocgenerics" ,r-biocgenerics)
6600 ("r-biocparallel" ,r-biocparallel)
6601 ("r-biostrings" ,r-biostrings)
6602 ("r-bumphunter" ,r-bumphunter)
6603 ("r-data-table" ,r-data-table)
6604 ("r-delayedarray" ,r-delayedarray)
6605 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
6606 ("r-genefilter" ,r-genefilter)
6607 ("r-genomeinfodb" ,r-genomeinfodb)
6608 ("r-genomicranges" ,r-genomicranges)
6609 ("r-geoquery" ,r-geoquery)
6610 ("r-hdf5array" ,r-hdf5array)
6611 ("r-illuminaio" ,r-illuminaio)
6612 ("r-iranges" ,r-iranges)
6613 ("r-lattice" ,r-lattice)
6614 ("r-limma" ,r-limma)
6615 ("r-mass" ,r-mass)
6616 ("r-mclust" ,r-mclust)
6617 ("r-nlme" ,r-nlme)
6618 ("r-nor1mix" ,r-nor1mix)
6619 ("r-preprocesscore" ,r-preprocesscore)
6620 ("r-quadprog" ,r-quadprog)
6621 ("r-rcolorbrewer" ,r-rcolorbrewer)
6622 ("r-reshape" ,r-reshape)
6623 ("r-s4vectors" ,r-s4vectors)
6624 ("r-siggenes" ,r-siggenes)
6625 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6626 (native-inputs
6627 `(("r-knitr" ,r-knitr)))
6628 (home-page "https://github.com/hansenlab/minfi")
6629 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
6630 (description
6631 "This package provides tools to analyze and visualize Illumina Infinium
6632 methylation arrays.")
6633 (license license:artistic2.0)))
6634
6635 (define-public r-methylumi
6636 (package
6637 (name "r-methylumi")
6638 (version "2.38.0")
6639 (source
6640 (origin
6641 (method url-fetch)
6642 (uri (bioconductor-uri "methylumi" version))
6643 (sha256
6644 (base32
6645 "1941rc524ssx8gwhmwk40mgfrhddfs6hgldvs7bi22r29gm4y7qj"))))
6646 (build-system r-build-system)
6647 (propagated-inputs
6648 `(("r-annotate" ,r-annotate)
6649 ("r-annotationdbi" ,r-annotationdbi)
6650 ("r-biobase" ,r-biobase)
6651 ("r-biocgenerics" ,r-biocgenerics)
6652 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
6653 ("r-genefilter" ,r-genefilter)
6654 ("r-genomeinfodb" ,r-genomeinfodb)
6655 ("r-genomicranges" ,r-genomicranges)
6656 ("r-ggplot2" ,r-ggplot2)
6657 ("r-illuminaio" ,r-illuminaio)
6658 ("r-iranges" ,r-iranges)
6659 ("r-lattice" ,r-lattice)
6660 ("r-matrixstats" ,r-matrixstats)
6661 ("r-minfi" ,r-minfi)
6662 ("r-reshape2" ,r-reshape2)
6663 ("r-s4vectors" ,r-s4vectors)
6664 ("r-scales" ,r-scales)
6665 ("r-summarizedexperiment" ,r-summarizedexperiment)))
6666 (native-inputs
6667 `(("r-knitr" ,r-knitr)))
6668 (home-page "https://bioconductor.org/packages/methylumi")
6669 (synopsis "Handle Illumina methylation data")
6670 (description
6671 "This package provides classes for holding and manipulating Illumina
6672 methylation data. Based on eSet, it can contain MIAME information, sample
6673 information, feature information, and multiple matrices of data. An
6674 \"intelligent\" import function, methylumiR can read the Illumina text files
6675 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
6676 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
6677 background correction, and quality control features for GoldenGate, Infinium,
6678 and Infinium HD arrays are also included.")
6679 (license license:gpl2)))
6680
6681 (define-public r-lumi
6682 (package
6683 (name "r-lumi")
6684 (version "2.44.0")
6685 (source
6686 (origin
6687 (method url-fetch)
6688 (uri (bioconductor-uri "lumi" version))
6689 (sha256
6690 (base32
6691 "0qjdxjdzfnnxcm07bf51v38388s5qf1i03l1sdb9jf3gxdh8yh02"))))
6692 (build-system r-build-system)
6693 (propagated-inputs
6694 `(("r-affy" ,r-affy)
6695 ("r-annotate" ,r-annotate)
6696 ("r-annotationdbi" ,r-annotationdbi)
6697 ("r-biobase" ,r-biobase)
6698 ("r-dbi" ,r-dbi)
6699 ("r-genomicfeatures" ,r-genomicfeatures)
6700 ("r-genomicranges" ,r-genomicranges)
6701 ("r-kernsmooth" ,r-kernsmooth)
6702 ("r-lattice" ,r-lattice)
6703 ("r-mass" ,r-mass)
6704 ("r-methylumi" ,r-methylumi)
6705 ("r-mgcv" ,r-mgcv)
6706 ("r-nleqslv" ,r-nleqslv)
6707 ("r-preprocesscore" ,r-preprocesscore)
6708 ("r-rsqlite" ,r-rsqlite)))
6709 (home-page "https://bioconductor.org/packages/lumi")
6710 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
6711 (description
6712 "The lumi package provides an integrated solution for the Illumina
6713 microarray data analysis. It includes functions of Illumina
6714 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
6715 variance stabilization, normalization and gene annotation at the probe level.
6716 It also includes the functions of processing Illumina methylation microarrays,
6717 especially Illumina Infinium methylation microarrays.")
6718 (license license:lgpl2.0+)))
6719
6720 (define-public r-linnorm
6721 (package
6722 (name "r-linnorm")
6723 (version "2.16.0")
6724 (source
6725 (origin
6726 (method url-fetch)
6727 (uri (bioconductor-uri "Linnorm" version))
6728 (sha256
6729 (base32
6730 "035hrniycqadmkwg8rmzw8szv0amhy31390izy91rfrld31v2yy7"))))
6731 (properties `((upstream-name . "Linnorm")))
6732 (build-system r-build-system)
6733 (propagated-inputs
6734 `(("r-amap" ,r-amap)
6735 ("r-apcluster" ,r-apcluster)
6736 ("r-ellipse" ,r-ellipse)
6737 ("r-fastcluster" ,r-fastcluster)
6738 ("r-fpc" ,r-fpc)
6739 ("r-ggdendro" ,r-ggdendro)
6740 ("r-ggplot2" ,r-ggplot2)
6741 ("r-gmodels" ,r-gmodels)
6742 ("r-igraph" ,r-igraph)
6743 ("r-limma" ,r-limma)
6744 ("r-mass" ,r-mass)
6745 ("r-mclust" ,r-mclust)
6746 ("r-rcpp" ,r-rcpp)
6747 ("r-rcpparmadillo" ,r-rcpparmadillo)
6748 ("r-rtsne" ,r-rtsne)
6749 ("r-statmod" ,r-statmod)
6750 ("r-vegan" ,r-vegan)
6751 ("r-zoo" ,r-zoo)))
6752 (native-inputs
6753 `(("r-knitr" ,r-knitr)))
6754 (home-page "http://www.jjwanglab.org/Linnorm/")
6755 (synopsis "Linear model and normality based transformation method")
6756 (description
6757 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
6758 count data or any large scale count data. It transforms such datasets for
6759 parametric tests. In addition to the transformtion function (@code{Linnorm}),
6760 the following pipelines are implemented:
6761
6762 @enumerate
6763 @item Library size/batch effect normalization (@code{Linnorm.Norm})
6764 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
6765 clustering or hierarchical clustering (@code{Linnorm.tSNE},
6766 @code{Linnorm.PCA}, @code{Linnorm.HClust})
6767 @item Differential expression analysis or differential peak detection using
6768 limma (@code{Linnorm.limma})
6769 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
6770 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
6771 @item Stable gene selection for scRNA-seq data; for users without or who do
6772 not want to rely on spike-in genes (@code{Linnorm.SGenes})
6773 @item Data imputation (@code{Linnorm.DataImput}).
6774 @end enumerate
6775
6776 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
6777 @code{RnaXSim} function is included for simulating RNA-seq data for the
6778 evaluation of DEG analysis methods.")
6779 (license license:expat)))
6780
6781 (define-public r-ioniser
6782 (package
6783 (name "r-ioniser")
6784 (version "2.16.0")
6785 (source
6786 (origin
6787 (method url-fetch)
6788 (uri (bioconductor-uri "IONiseR" version))
6789 (sha256
6790 (base32
6791 "0fknlwdfd49v09zspg0337b0zzc8hqza3563yrw51viw3g35d6q3"))))
6792 (properties `((upstream-name . "IONiseR")))
6793 (build-system r-build-system)
6794 (propagated-inputs
6795 `(("r-biocgenerics" ,r-biocgenerics)
6796 ("r-biocparallel" ,r-biocparallel)
6797 ("r-biostrings" ,r-biostrings)
6798 ("r-bit64" ,r-bit64)
6799 ("r-dplyr" ,r-dplyr)
6800 ("r-ggplot2" ,r-ggplot2)
6801 ("r-magrittr" ,r-magrittr)
6802 ("r-rhdf5" ,r-rhdf5)
6803 ("r-shortread" ,r-shortread)
6804 ("r-stringr" ,r-stringr)
6805 ("r-tibble" ,r-tibble)
6806 ("r-tidyr" ,r-tidyr)
6807 ("r-xvector" ,r-xvector)))
6808 (native-inputs
6809 `(("r-knitr" ,r-knitr)))
6810 (home-page "https://bioconductor.org/packages/IONiseR/")
6811 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
6812 (description
6813 "IONiseR provides tools for the quality assessment of Oxford Nanopore
6814 MinION data. It extracts summary statistics from a set of fast5 files and can
6815 be used either before or after base calling. In addition to standard
6816 summaries of the read-types produced, it provides a number of plots for
6817 visualising metrics relative to experiment run time or spatially over the
6818 surface of a flowcell.")
6819 (license license:expat)))
6820
6821 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
6822 (define-public r-mutoss
6823 (package
6824 (name "r-mutoss")
6825 (version "0.1-12")
6826 (source
6827 (origin
6828 (method url-fetch)
6829 (uri (cran-uri "mutoss" version))
6830 (sha256
6831 (base32
6832 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
6833 (properties `((upstream-name . "mutoss")))
6834 (build-system r-build-system)
6835 (propagated-inputs
6836 `(("r-multcomp" ,r-multcomp)
6837 ("r-multtest" ,r-multtest)
6838 ("r-mvtnorm" ,r-mvtnorm)
6839 ("r-plotrix" ,r-plotrix)))
6840 (home-page "https://github.com/kornl/mutoss/")
6841 (synopsis "Unified multiple testing procedures")
6842 (description
6843 "This package is designed to ease the application and comparison of
6844 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
6845 are standardized and usable by the accompanying mutossGUI package.")
6846 ;; Any version of the GPL.
6847 (license (list license:gpl2+ license:gpl3+))))
6848
6849 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
6850 ;; from Bioconductor, so we put it here.
6851 (define-public r-metap
6852 (package
6853 (name "r-metap")
6854 (version "1.3")
6855 (source
6856 (origin
6857 (method url-fetch)
6858 (uri (cran-uri "metap" version))
6859 (sha256
6860 (base32
6861 "1jmmmmjiklaxfl604hwqil193ydaghvd5jv8xsr4bx3pzn5i9kvz"))))
6862 (build-system r-build-system)
6863 (propagated-inputs
6864 `(("r-lattice" ,r-lattice)
6865 ("r-mutoss" ,r-mutoss)
6866 ("r-rdpack" ,r-rdpack)
6867 ("r-tfisher" ,r-tfisher)))
6868 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
6869 (synopsis "Meta-analysis of significance values")
6870 (description
6871 "The canonical way to perform meta-analysis involves using effect sizes.
6872 When they are not available this package provides a number of methods for
6873 meta-analysis of significance values including the methods of Edgington,
6874 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
6875 published results; and a routine for graphical display.")
6876 (license license:gpl2)))
6877
6878 (define-public r-tradeseq
6879 (package
6880 (name "r-tradeseq")
6881 (version "1.6.0")
6882 (source (origin
6883 (method url-fetch)
6884 (uri (bioconductor-uri "tradeSeq" version))
6885 (sha256
6886 (base32
6887 "0fgmb309pvqf3chdhqgbd4lzhahcj5g71sica33nzn98qhipldx7"))))
6888 (build-system r-build-system)
6889 (propagated-inputs
6890 `(("r-biobase" ,r-biobase)
6891 ("r-biocparallel" ,r-biocparallel)
6892 ("r-edger" ,r-edger)
6893 ("r-ggplot2" ,r-ggplot2)
6894 ("r-igraph" ,r-igraph)
6895 ("r-magrittr" ,r-magrittr)
6896 ("r-matrix" ,r-matrix)
6897 ("r-matrixstats" ,r-matrixstats)
6898 ("r-mgcv" ,r-mgcv)
6899 ("r-monocle" ,r-monocle)
6900 ("r-pbapply" ,r-pbapply)
6901 ("r-princurve" ,r-princurve)
6902 ("r-rcolorbrewer" ,r-rcolorbrewer)
6903 ("r-s4vectors" ,r-s4vectors)
6904 ("r-singlecellexperiment" ,r-singlecellexperiment)
6905 ("r-slingshot" ,r-slingshot)
6906 ("r-summarizedexperiment" ,r-summarizedexperiment)
6907 ("r-tibble" ,r-tibble)
6908 ("r-viridis" ,r-viridis)))
6909 (native-inputs
6910 `(("r-knitr" ,r-knitr)))
6911 (home-page "https://statomics.github.io/tradeSeq/index.html")
6912 (synopsis "Trajectory-based differential expression analysis")
6913 (description
6914 "This package provides a flexible method for fitting regression models that
6915 can be used to find genes that are differentially expressed along one or
6916 multiple lineages in a trajectory. Based on the fitted models, it uses a
6917 variety of tests suited to answer different questions of interest, e.g. the
6918 discovery of genes for which expression is associated with pseudotime, or which
6919 are differentially expressed (in a specific region) along the trajectory. It
6920 fits a negative binomial generalized additive model (GAM) for each gene, and
6921 performs inference on the parameters of the GAM.")
6922 (license license:expat)))
6923
6924 (define-public r-triform
6925 (package
6926 (name "r-triform")
6927 (version "1.29.0")
6928 (source
6929 (origin
6930 (method url-fetch)
6931 (uri (bioconductor-uri "triform" version))
6932 (sha256
6933 (base32
6934 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
6935 (build-system r-build-system)
6936 (propagated-inputs
6937 `(("r-biocgenerics" ,r-biocgenerics)
6938 ("r-iranges" ,r-iranges)
6939 ("r-yaml" ,r-yaml)))
6940 (home-page "https://bioconductor.org/packages/triform/")
6941 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
6942 (description
6943 "The Triform algorithm uses model-free statistics to identify peak-like
6944 distributions of TF ChIP sequencing reads, taking advantage of an improved
6945 peak definition in combination with known profile characteristics.")
6946 (license license:gpl2)))
6947
6948 (define-public r-varianttools
6949 (package
6950 (name "r-varianttools")
6951 (version "1.34.0")
6952 (source
6953 (origin
6954 (method url-fetch)
6955 (uri (bioconductor-uri "VariantTools" version))
6956 (sha256
6957 (base32
6958 "1gpzrln2clfrja8rzxhsis6bi1xqglh3h2lhvqlnrx4lqxhbkv9c"))))
6959 (properties `((upstream-name . "VariantTools")))
6960 (build-system r-build-system)
6961 (propagated-inputs
6962 `(("r-biobase" ,r-biobase)
6963 ("r-biocgenerics" ,r-biocgenerics)
6964 ("r-biocparallel" ,r-biocparallel)
6965 ("r-biostrings" ,r-biostrings)
6966 ("r-bsgenome" ,r-bsgenome)
6967 ("r-genomeinfodb" ,r-genomeinfodb)
6968 ("r-genomicfeatures" ,r-genomicfeatures)
6969 ("r-genomicranges" ,r-genomicranges)
6970 ("r-iranges" ,r-iranges)
6971 ("r-matrix" ,r-matrix)
6972 ("r-rsamtools" ,r-rsamtools)
6973 ("r-rtracklayer" ,r-rtracklayer)
6974 ("r-s4vectors" ,r-s4vectors)
6975 ("r-variantannotation" ,r-variantannotation)))
6976 (home-page "https://bioconductor.org/packages/VariantTools/")
6977 (synopsis "Tools for exploratory analysis of variant calls")
6978 (description
6979 "Explore, diagnose, and compare variant calls using filters. The
6980 VariantTools package supports a workflow for loading data, calling single
6981 sample variants and tumor-specific somatic mutations or other sample-specific
6982 variant types (e.g., RNA editing). Most of the functions operate on
6983 alignments (BAM files) or datasets of called variants. The user is expected
6984 to have already aligned the reads with a separate tool, e.g., GSNAP via
6985 gmapR.")
6986 (license license:artistic2.0)))
6987
6988 (define-public r-heatplus
6989 (package
6990 (name "r-heatplus")
6991 (version "3.0.0")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (bioconductor-uri "Heatplus" version))
6996 (sha256
6997 (base32
6998 "0xwg3sxmihg3p6v3nxgrqy0nrqxi6razg3b3rjh2gcb2vv8gcqng"))))
6999 (properties `((upstream-name . "Heatplus")))
7000 (build-system r-build-system)
7001 (propagated-inputs
7002 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
7003 (home-page "https://github.com/alexploner/Heatplus")
7004 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
7005 (description
7006 "This package provides tools to display a rectangular heatmap (intensity
7007 plot) of a data matrix. By default, both samples (columns) and features (row)
7008 of the matrix are sorted according to a hierarchical clustering, and the
7009 corresponding dendrogram is plotted. Optionally, panels with additional
7010 information about samples and features can be added to the plot.")
7011 (license license:gpl2+)))
7012
7013 (define-public r-gosemsim
7014 (package
7015 (name "r-gosemsim")
7016 (version "2.18.0")
7017 (source
7018 (origin
7019 (method url-fetch)
7020 (uri (bioconductor-uri "GOSemSim" version))
7021 (sha256
7022 (base32
7023 "1fzmaxjzyvq6xj5ny1sjijdwi4krzjgyaz52fczpwrxijq5pnyn1"))))
7024 (properties `((upstream-name . "GOSemSim")))
7025 (build-system r-build-system)
7026 (propagated-inputs
7027 `(("r-annotationdbi" ,r-annotationdbi)
7028 ("r-go-db" ,r-go-db)
7029 ("r-rcpp" ,r-rcpp)))
7030 (native-inputs
7031 `(("r-knitr" ,r-knitr)))
7032 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
7033 (synopsis "GO-terms semantic similarity measures")
7034 (description
7035 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
7036 quantitative ways to compute similarities between genes and gene groups, and
7037 have became important basis for many bioinformatics analysis approaches.
7038 GOSemSim is an R package for semantic similarity computation among GO terms,
7039 sets of GO terms, gene products and gene clusters.")
7040 (license license:artistic2.0)))
7041
7042 (define-public r-anota
7043 (package
7044 (name "r-anota")
7045 (version "1.40.0")
7046 (source
7047 (origin
7048 (method url-fetch)
7049 (uri (bioconductor-uri "anota" version))
7050 (sha256
7051 (base32
7052 "039bmcv5l44gszb6xapbihp3mfqdaaa8mfc05y702p78i7x93g5y"))))
7053 (build-system r-build-system)
7054 (propagated-inputs
7055 `(("r-multtest" ,r-multtest)
7056 ("r-qvalue" ,r-qvalue)))
7057 (home-page "https://bioconductor.org/packages/anota/")
7058 (synopsis "Analysis of translational activity")
7059 (description
7060 "Genome wide studies of translational control is emerging as a tool to
7061 study various biological conditions. The output from such analysis is both
7062 the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
7063 involved in translation (the actively translating mRNA level) for each mRNA.
7064 The standard analysis of such data strives towards identifying differential
7065 translational between two or more sample classes - i.e. differences in
7066 actively translated mRNA levels that are independent of underlying differences
7067 in cytosolic mRNA levels. This package allows for such analysis using partial
7068 variances and the random variance model. As 10s of thousands of mRNAs are
7069 analyzed in parallel the library performs a number of tests to assure that
7070 the data set is suitable for such analysis.")
7071 (license license:gpl3)))
7072
7073 (define-public r-sigpathway
7074 (package
7075 (name "r-sigpathway")
7076 (version "1.60.0")
7077 (source
7078 (origin
7079 (method url-fetch)
7080 (uri (bioconductor-uri "sigPathway" version))
7081 (sha256
7082 (base32
7083 "1xz5nbw5dzyah8az7mpwj8m27fsvpi2jjhfg3n27dsv8rvdncqi8"))))
7084 (properties `((upstream-name . "sigPathway")))
7085 (build-system r-build-system)
7086 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
7087 (synopsis "Pathway analysis")
7088 (description
7089 "This package is used to conduct pathway analysis by calculating the NT_k
7090 and NE_k statistics in a statistical framework for determining whether a
7091 specified group of genes for a pathway has a coordinated association with a
7092 phenotype of interest.")
7093 (license license:gpl2)))
7094
7095 (define-public r-fgsea
7096 (package
7097 (name "r-fgsea")
7098 (version "1.18.0")
7099 (source
7100 (origin
7101 (method url-fetch)
7102 (uri (bioconductor-uri "fgsea" version))
7103 (sha256
7104 (base32
7105 "1mhdgy46nxgv7v54bk9bqfy0vgjzl1law7zy718swdd762xn6g9d"))))
7106 (build-system r-build-system)
7107 (propagated-inputs
7108 `(("r-bh" ,r-bh)
7109 ("r-biocparallel" ,r-biocparallel)
7110 ("r-data-table" ,r-data-table)
7111 ("r-fastmatch" ,r-fastmatch)
7112 ("r-ggplot2" ,r-ggplot2)
7113 ("r-gridextra" ,r-gridextra)
7114 ("r-matrix" ,r-matrix)
7115 ("r-rcpp" ,r-rcpp)))
7116 (native-inputs
7117 `(("r-knitr" ,r-knitr)))
7118 (home-page "https://github.com/ctlab/fgsea/")
7119 (synopsis "Fast gene set enrichment analysis")
7120 (description
7121 "The package implements an algorithm for fast gene set enrichment
7122 analysis. Using the fast algorithm makes more permutations and gets
7123 more fine grained p-values, which allows using accurate standard approaches
7124 to multiple hypothesis correction.")
7125 (license license:expat)))
7126
7127 (define-public r-dose
7128 (package
7129 (name "r-dose")
7130 (version "3.18.0")
7131 (source
7132 (origin
7133 (method url-fetch)
7134 (uri (bioconductor-uri "DOSE" version))
7135 (sha256
7136 (base32
7137 "1x9cg6qlvbcdb965jh01w07ibc4lj30ikq1v312rdih3sn6zsdck"))))
7138 (properties `((upstream-name . "DOSE")))
7139 (build-system r-build-system)
7140 (propagated-inputs
7141 `(("r-annotationdbi" ,r-annotationdbi)
7142 ("r-biocparallel" ,r-biocparallel)
7143 ("r-do-db" ,r-do-db)
7144 ("r-fgsea" ,r-fgsea)
7145 ("r-ggplot2" ,r-ggplot2)
7146 ("r-gosemsim" ,r-gosemsim)
7147 ("r-qvalue" ,r-qvalue)
7148 ("r-reshape2" ,r-reshape2)))
7149 (native-inputs
7150 `(("r-knitr" ,r-knitr)))
7151 (home-page "https://guangchuangyu.github.io/software/DOSE/")
7152 (synopsis "Disease ontology semantic and enrichment analysis")
7153 (description
7154 "This package implements five methods proposed by Resnik, Schlicker,
7155 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
7156 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
7157 including hypergeometric model and gene set enrichment analysis are also
7158 implemented for discovering disease associations of high-throughput biological
7159 data.")
7160 (license license:artistic2.0)))
7161
7162 (define-public r-enrichplot
7163 (package
7164 (name "r-enrichplot")
7165 (version "1.12.0")
7166 (source
7167 (origin
7168 (method url-fetch)
7169 (uri (bioconductor-uri "enrichplot" version))
7170 (sha256
7171 (base32
7172 "0nvjwwzpmhsfkxqrn8v1a1wcrvr3xl1wn5dy89vsrdydyv31gdc6"))))
7173 (build-system r-build-system)
7174 (propagated-inputs
7175 `(("r-cowplot" ,r-cowplot)
7176 ("r-dose" ,r-dose)
7177 ("r-ggplot2" ,r-ggplot2)
7178 ("r-ggraph" ,r-ggraph)
7179 ("r-ggtree" ,r-ggtree)
7180 ("r-gosemsim" ,r-gosemsim)
7181 ("r-igraph" ,r-igraph)
7182 ("r-magrittr" ,r-magrittr)
7183 ("r-plyr" ,r-plyr)
7184 ("r-purrr" ,r-purrr)
7185 ("r-rcolorbrewer" ,r-rcolorbrewer)
7186 ("r-reshape2" ,r-reshape2)
7187 ("r-scatterpie" ,r-scatterpie)
7188 ("r-shadowtext" ,r-shadowtext)))
7189 (native-inputs
7190 `(("r-knitr" ,r-knitr)))
7191 (home-page "https://github.com/GuangchuangYu/enrichplot")
7192 (synopsis "Visualization of functional enrichment result")
7193 (description
7194 "The enrichplot package implements several visualization methods for
7195 interpreting functional enrichment results obtained from ORA or GSEA analyses.
7196 All the visualization methods are developed based on ggplot2 graphics.")
7197 (license license:artistic2.0)))
7198
7199 (define-public r-clusterprofiler
7200 (package
7201 (name "r-clusterprofiler")
7202 (version "4.0.0")
7203 (source
7204 (origin
7205 (method url-fetch)
7206 (uri (bioconductor-uri "clusterProfiler" version))
7207 (sha256
7208 (base32
7209 "1lmrb6ddpx1p3kdrwszhxq6nndmbiqipzrclk64mnp63y7g50q56"))))
7210 (properties
7211 `((upstream-name . "clusterProfiler")))
7212 (build-system r-build-system)
7213 (propagated-inputs
7214 `(("r-annotationdbi" ,r-annotationdbi)
7215 ("r-dose" ,r-dose)
7216 ("r-downloader" ,r-downloader)
7217 ("r-dplyr" ,r-dplyr)
7218 ("r-enrichplot" ,r-enrichplot)
7219 ("r-go-db" ,r-go-db)
7220 ("r-gosemsim" ,r-gosemsim)
7221 ("r-magrittr" ,r-magrittr)
7222 ("r-plyr" ,r-plyr)
7223 ("r-qvalue" ,r-qvalue)
7224 ("r-rlang" ,r-rlang)
7225 ("r-rvcheck" ,r-rvcheck)
7226 ("r-tidyr" ,r-tidyr)))
7227 (native-inputs
7228 `(("r-knitr" ,r-knitr)))
7229 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
7230 (synopsis "Analysis and visualization of functional profiles for gene clusters")
7231 (description
7232 "This package implements methods to analyze and visualize functional
7233 profiles (GO and KEGG) of gene and gene clusters.")
7234 (license license:artistic2.0)))
7235
7236 (define-public r-clusterexperiment
7237 (package
7238 (name "r-clusterexperiment")
7239 (version "2.12.0")
7240 (source (origin
7241 (method url-fetch)
7242 (uri (bioconductor-uri "clusterExperiment" version))
7243 (sha256
7244 (base32
7245 "1fhmayciwn1m124b4dcs3gzbghgk9f7a7qmjnvvxc958cywcwkx5"))))
7246 (build-system r-build-system)
7247 (native-inputs
7248 `(("r-knitr" ,r-knitr)))
7249 (propagated-inputs
7250 `(("r-ape" ,r-ape)
7251 ("r-biocgenerics" ,r-biocgenerics)
7252 ("r-biocsingular" ,r-biocsingular)
7253 ("r-cluster" ,r-cluster)
7254 ("r-delayedarray" ,r-delayedarray)
7255 ("r-edger" ,r-edger)
7256 ("r-hdf5array" ,r-hdf5array)
7257 ("r-howmany" ,r-howmany)
7258 ("r-kernlab" ,r-kernlab)
7259 ("r-limma" ,r-limma)
7260 ("r-locfdr" ,r-locfdr)
7261 ("r-matrix" ,r-matrix)
7262 ("r-matrixstats" ,r-matrixstats)
7263 ("r-mbkmeans" ,r-mbkmeans)
7264 ("r-nmf" ,r-nmf)
7265 ("r-phylobase" ,r-phylobase)
7266 ("r-pracma" ,r-pracma)
7267 ("r-rcolorbrewer" ,r-rcolorbrewer)
7268 ("r-rcpp" ,r-rcpp)
7269 ("r-s4vectors" ,r-s4vectors)
7270 ("r-scales" ,r-scales)
7271 ("r-singlecellexperiment" ,r-singlecellexperiment)
7272 ("r-stringr" ,r-stringr)
7273 ("r-summarizedexperiment" ,r-summarizedexperiment)
7274 ("r-zinbwave" ,r-zinbwave)))
7275 (home-page "https://bioconductor.org/packages/clusterExperiment/")
7276 (synopsis "Compare clusterings for single-cell sequencing")
7277 (description "This package provides functionality for running and comparing
7278 many different clusterings of single-cell sequencing data or other large mRNA
7279 expression data sets.")
7280 (license license:artistic2.0)))
7281
7282 (define-public r-mlinterfaces
7283 (package
7284 (name "r-mlinterfaces")
7285 (version "1.72.0")
7286 (source
7287 (origin
7288 (method url-fetch)
7289 (uri (bioconductor-uri "MLInterfaces" version))
7290 (sha256
7291 (base32
7292 "0ipzv7wdvfqhdyjiak956qq201igsdxm6dr6rh3dj6cssgsrnrpb"))))
7293 (properties `((upstream-name . "MLInterfaces")))
7294 (build-system r-build-system)
7295 (propagated-inputs
7296 `(("r-annotate" ,r-annotate)
7297 ("r-biobase" ,r-biobase)
7298 ("r-biocgenerics" ,r-biocgenerics)
7299 ("r-cluster" ,r-cluster)
7300 ("r-fpc" ,r-fpc)
7301 ("r-gbm" ,r-gbm)
7302 ("r-gdata" ,r-gdata)
7303 ("r-genefilter" ,r-genefilter)
7304 ("r-ggvis" ,r-ggvis)
7305 ("r-hwriter" ,r-hwriter)
7306 ("r-magrittr" ,r-magrittr)
7307 ("r-mass" ,r-mass)
7308 ("r-mlbench" ,r-mlbench)
7309 ("r-pls" ,r-pls)
7310 ("r-rcolorbrewer" ,r-rcolorbrewer)
7311 ("r-rcpp" ,r-rcpp)
7312 ("r-rpart" ,r-rpart)
7313 ("r-sfsmisc" ,r-sfsmisc)
7314 ("r-shiny" ,r-shiny)
7315 ("r-threejs" ,r-threejs)))
7316 (home-page "https://bioconductor.org/packages/MLInterfaces/")
7317 (synopsis "Interfaces to R machine learning procedures")
7318 (description
7319 "This package provides uniform interfaces to machine learning code for
7320 data in R and Bioconductor containers.")
7321 ;; Any version of the LGPL.
7322 (license license:lgpl2.1+)))
7323
7324 (define-public r-annaffy
7325 (package
7326 (name "r-annaffy")
7327 (version "1.63.1")
7328 (source
7329 (origin
7330 (method url-fetch)
7331 (uri (bioconductor-uri "annaffy" version))
7332 (sha256
7333 (base32
7334 "071qr68dn8k3mvwgpllbk2a4g6f6yyv2087q5rmpb22lkfvi4hwv"))))
7335 (build-system r-build-system)
7336 (arguments
7337 `(#:phases
7338 (modify-phases %standard-phases
7339 (add-after 'unpack 'remove-reference-to-non-free-data
7340 (lambda _
7341 (substitute* "DESCRIPTION"
7342 ((", KEGG.db") "")))))))
7343 (propagated-inputs
7344 `(("r-annotationdbi" ,r-annotationdbi)
7345 ("r-biobase" ,r-biobase)
7346 ("r-biocmanager" ,r-biocmanager)
7347 ("r-dbi" ,r-dbi)
7348 ("r-go-db" ,r-go-db)))
7349 (home-page "https://bioconductor.org/packages/annaffy/")
7350 (synopsis "Annotation tools for Affymetrix biological metadata")
7351 (description
7352 "This package provides functions for handling data from Bioconductor
7353 Affymetrix annotation data packages. It produces compact HTML and text
7354 reports including experimental data and URL links to many online databases.
7355 It allows searching of biological metadata using various criteria.")
7356 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
7357 ;; the LGPL 2.1 is included.
7358 (license license:lgpl2.1+)))
7359
7360 (define-public r-a4core
7361 (package
7362 (name "r-a4core")
7363 (version "1.40.0")
7364 (source
7365 (origin
7366 (method url-fetch)
7367 (uri (bioconductor-uri "a4Core" version))
7368 (sha256
7369 (base32
7370 "00fi753nsayv0xspavw8r9ni1sim8ng33hp3d3kj2b8ihygd1s10"))))
7371 (properties `((upstream-name . "a4Core")))
7372 (build-system r-build-system)
7373 (propagated-inputs
7374 `(("r-biobase" ,r-biobase)
7375 ("r-glmnet" ,r-glmnet)))
7376 (native-inputs
7377 `(("r-knitr" ,r-knitr)))
7378 (home-page "https://bioconductor.org/packages/a4Core")
7379 (synopsis "Automated Affymetrix array analysis core package")
7380 (description
7381 "This is the core package for the automated analysis of Affymetrix
7382 arrays.")
7383 (license license:gpl3)))
7384
7385 (define-public r-a4classif
7386 (package
7387 (name "r-a4classif")
7388 (version "1.40.0")
7389 (source
7390 (origin
7391 (method url-fetch)
7392 (uri (bioconductor-uri "a4Classif" version))
7393 (sha256
7394 (base32
7395 "1lz85bys5dp5d1ir9c9c4wy85wkk62s14niyzzxaqrxpsji2p2iw"))))
7396 (properties `((upstream-name . "a4Classif")))
7397 (build-system r-build-system)
7398 (propagated-inputs
7399 `(("r-a4core" ,r-a4core)
7400 ("r-a4preproc" ,r-a4preproc)
7401 ("r-biobase" ,r-biobase)
7402 ("r-glmnet" ,r-glmnet)
7403 ("r-pamr" ,r-pamr)
7404 ("r-rocr" ,r-rocr)
7405 ("r-varselrf" ,r-varselrf)))
7406 (native-inputs
7407 `(("r-knitr" ,r-knitr)))
7408 (home-page "https://bioconductor.org/packages/a4Classif/")
7409 (synopsis "Automated Affymetrix array analysis classification package")
7410 (description
7411 "This is the classification package for the automated analysis of
7412 Affymetrix arrays.")
7413 (license license:gpl3)))
7414
7415 (define-public r-a4preproc
7416 (package
7417 (name "r-a4preproc")
7418 (version "1.40.0")
7419 (source
7420 (origin
7421 (method url-fetch)
7422 (uri (bioconductor-uri "a4Preproc" version))
7423 (sha256
7424 (base32
7425 "1jibm2f5glzsrvl64hxc5sf59d4w6ry0f663p619hfr44mi1mpri"))))
7426 (properties `((upstream-name . "a4Preproc")))
7427 (build-system r-build-system)
7428 (propagated-inputs
7429 `(("r-biobase" ,r-biobase)
7430 ("r-biocgenerics" ,r-biocgenerics)))
7431 (native-inputs
7432 `(("r-knitr" ,r-knitr)))
7433 (home-page "https://bioconductor.org/packages/a4Preproc/")
7434 (synopsis "Automated Affymetrix array analysis preprocessing package")
7435 (description
7436 "This is a package for the automated analysis of Affymetrix arrays. It
7437 is used for preprocessing the arrays.")
7438 (license license:gpl3)))
7439
7440 (define-public r-a4reporting
7441 (package
7442 (name "r-a4reporting")
7443 (version "1.40.0")
7444 (source
7445 (origin
7446 (method url-fetch)
7447 (uri (bioconductor-uri "a4Reporting" version))
7448 (sha256
7449 (base32
7450 "09jjfby5znmg2fdkhpbinx2v21zrfa44qq7cylcn9ipffqx3pk86"))))
7451 (properties `((upstream-name . "a4Reporting")))
7452 (build-system r-build-system)
7453 (propagated-inputs
7454 `(("r-xtable" ,r-xtable)))
7455 (native-inputs
7456 `(("r-knitr" ,r-knitr)))
7457 (home-page "https://bioconductor.org/packages/a4Reporting/")
7458 (synopsis "Automated Affymetrix array analysis reporting package")
7459 (description
7460 "This is a package for the automated analysis of Affymetrix arrays. It
7461 provides reporting features.")
7462 (license license:gpl3)))
7463
7464 (define-public r-a4base
7465 (package
7466 (name "r-a4base")
7467 (version "1.40.0")
7468 (source
7469 (origin
7470 (method url-fetch)
7471 (uri (bioconductor-uri "a4Base" version))
7472 (sha256
7473 (base32
7474 "101w4i0w8n7qhki22qr8l8wk8w6zalzmcywqm2g4238qv7xbnr8p"))))
7475 (properties `((upstream-name . "a4Base")))
7476 (build-system r-build-system)
7477 (propagated-inputs
7478 `(("r-a4core" ,r-a4core)
7479 ("r-a4preproc" ,r-a4preproc)
7480 ("r-annaffy" ,r-annaffy)
7481 ("r-biobase" ,r-biobase)
7482 ("r-genefilter" ,r-genefilter)
7483 ("r-glmnet" ,r-glmnet)
7484 ("r-gplots" ,r-gplots)
7485 ("r-limma" ,r-limma)
7486 ("r-mpm" ,r-mpm)
7487 ("r-multtest" ,r-multtest)))
7488 (home-page "https://bioconductor.org/packages/a4Base/")
7489 (synopsis "Automated Affymetrix array analysis base package")
7490 (description
7491 "This package provides basic features for the automated analysis of
7492 Affymetrix arrays.")
7493 (license license:gpl3)))
7494
7495 (define-public r-a4
7496 (package
7497 (name "r-a4")
7498 (version "1.38.0")
7499 (source
7500 (origin
7501 (method url-fetch)
7502 (uri (bioconductor-uri "a4" version))
7503 (sha256
7504 (base32
7505 "12q09dhxjl7yrd5m2y7a03kv5614dp144ajmskp5q9x2gvz30f79"))))
7506 (build-system r-build-system)
7507 (propagated-inputs
7508 `(("r-a4base" ,r-a4base)
7509 ("r-a4classif" ,r-a4classif)
7510 ("r-a4core" ,r-a4core)
7511 ("r-a4preproc" ,r-a4preproc)
7512 ("r-a4reporting" ,r-a4reporting)))
7513 (home-page "https://bioconductor.org/packages/a4/")
7514 (synopsis "Automated Affymetrix array analysis umbrella package")
7515 (description
7516 "This package provides a software suite for the automated analysis of
7517 Affymetrix arrays.")
7518 (license license:gpl3)))
7519
7520 (define-public r-abseqr
7521 (package
7522 (name "r-abseqr")
7523 (version "1.8.0")
7524 (source
7525 (origin
7526 (method url-fetch)
7527 (uri (bioconductor-uri "abseqR" version))
7528 (sha256
7529 (base32
7530 "0lh7kcsp3yb3s8s8j6w9k1by8i16q7r2a49z8y1xjmkcb2klsi3f"))))
7531 (properties `((upstream-name . "abseqR")))
7532 (build-system r-build-system)
7533 (inputs
7534 `(("pandoc" ,pandoc)))
7535 (propagated-inputs
7536 `(("r-biocparallel" ,r-biocparallel)
7537 ("r-biocstyle" ,r-biocstyle)
7538 ("r-circlize" ,r-circlize)
7539 ("r-flexdashboard" ,r-flexdashboard)
7540 ("r-ggcorrplot" ,r-ggcorrplot)
7541 ("r-ggdendro" ,r-ggdendro)
7542 ("r-ggplot2" ,r-ggplot2)
7543 ("r-gridextra" ,r-gridextra)
7544 ("r-knitr" ,r-knitr)
7545 ("r-plotly" ,r-plotly)
7546 ("r-plyr" ,r-plyr)
7547 ("r-png" ,r-png)
7548 ("r-rcolorbrewer" ,r-rcolorbrewer)
7549 ("r-reshape2" ,r-reshape2)
7550 ("r-rmarkdown" ,r-rmarkdown)
7551 ("r-stringr" ,r-stringr)
7552 ("r-vegan" ,r-vegan)
7553 ("r-venndiagram" ,r-venndiagram)))
7554 (native-inputs
7555 `(("r-knitr" ,r-knitr)))
7556 (home-page "https://github.com/malhamdoosh/abseqR")
7557 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
7558 (description
7559 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
7560 sequencing datasets generated from antibody libraries and abseqR is one of its
7561 packages. AbseqR empowers the users of abseqPy with plotting and reporting
7562 capabilities and allows them to generate interactive HTML reports for the
7563 convenience of viewing and sharing with other researchers. Additionally,
7564 abseqR extends abseqPy to compare multiple repertoire analyses and perform
7565 further downstream analysis on its output.")
7566 (license license:gpl3)))
7567
7568 (define-public r-bacon
7569 (package
7570 (name "r-bacon")
7571 (version "1.18.0")
7572 (source
7573 (origin
7574 (method url-fetch)
7575 (uri (bioconductor-uri "bacon" version))
7576 (sha256
7577 (base32
7578 "0cv4zhs075mz8c5gdwhr45v14fb1lyi3rlwjfqyz15dmmnzlxw47"))))
7579 (build-system r-build-system)
7580 (propagated-inputs
7581 `(("r-biocparallel" ,r-biocparallel)
7582 ("r-ellipse" ,r-ellipse)
7583 ("r-ggplot2" ,r-ggplot2)))
7584 (native-inputs
7585 `(("r-knitr" ,r-knitr)))
7586 (home-page "https://bioconductor.org/packages/bacon/")
7587 (synopsis "Controlling bias and inflation in association studies")
7588 (description
7589 "Bacon can be used to remove inflation and bias often observed in
7590 epigenome- and transcriptome-wide association studies. To this end bacon
7591 constructs an empirical null distribution using a Gibbs Sampling algorithm by
7592 fitting a three-component normal mixture on z-scores.")
7593 (license license:gpl2+)))
7594
7595 (define-public r-rgadem
7596 (package
7597 (name "r-rgadem")
7598 (version "2.38.0")
7599 (source
7600 (origin
7601 (method url-fetch)
7602 (uri (bioconductor-uri "rGADEM" version))
7603 (sha256
7604 (base32
7605 "0x13glgkcnjg4qsn0v0qgzy6bgmghqpvgwfww2ha641p0c5i9qzw"))))
7606 (properties `((upstream-name . "rGADEM")))
7607 (build-system r-build-system)
7608 (propagated-inputs
7609 `(("r-biostrings" ,r-biostrings)
7610 ("r-bsgenome" ,r-bsgenome)
7611 ("r-genomicranges" ,r-genomicranges)
7612 ("r-iranges" ,r-iranges)
7613 ("r-seqlogo" ,r-seqlogo)))
7614 (home-page "https://bioconductor.org/packages/rGADEM/")
7615 (synopsis "De novo sequence motif discovery")
7616 (description
7617 "rGADEM is an efficient de novo motif discovery tool for large-scale
7618 genomic sequence data.")
7619 (license license:artistic2.0)))
7620
7621 (define-public r-motiv
7622 (package
7623 (name "r-motiv")
7624 (version "1.43.0")
7625 (source
7626 (origin
7627 (method url-fetch)
7628 (uri (bioconductor-uri "MotIV" version))
7629 (sha256
7630 (base32
7631 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
7632 (properties `((upstream-name . "MotIV")))
7633 (build-system r-build-system)
7634 (inputs
7635 `(("gsl" ,gsl)))
7636 (propagated-inputs
7637 `(("r-biocgenerics" ,r-biocgenerics)
7638 ("r-biostrings" ,r-biostrings)
7639 ("r-genomicranges" ,r-genomicranges)
7640 ("r-iranges" ,r-iranges)
7641 ("r-lattice" ,r-lattice)
7642 ("r-rgadem" ,r-rgadem)
7643 ("r-s4vectors" ,r-s4vectors)))
7644 (home-page "https://bioconductor.org/packages/MotIV/")
7645 (synopsis "Motif identification and validation")
7646 (description
7647 "This package is used for the identification and validation of sequence
7648 motifs. It makes use of STAMP for comparing a set of motifs to a given
7649 database (e.g. JASPAR). It can also be used to visualize motifs, motif
7650 distributions, modules and filter motifs.")
7651 (license license:gpl2)))
7652
7653 (define-public r-motifdb
7654 (package
7655 (name "r-motifdb")
7656 (version "1.32.0")
7657 (source (origin
7658 (method url-fetch)
7659 (uri (bioconductor-uri "MotifDb" version))
7660 (sha256
7661 (base32 "0gfk1dgw7gd2y4cnmfdzpzjqkvvikcwx20h0fp7aiq8f0zfwlav5"))))
7662 (properties `((upstream-name . "MotifDb")))
7663 (build-system r-build-system)
7664 (propagated-inputs
7665 `(("r-biocgenerics" ,r-biocgenerics)
7666 ("r-biostrings" ,r-biostrings)
7667 ("r-genomicranges" ,r-genomicranges)
7668 ("r-iranges" ,r-iranges)
7669 ("r-rtracklayer" ,r-rtracklayer)
7670 ("r-s4vectors" ,r-s4vectors)
7671 ("r-splitstackshape" ,r-splitstackshape)))
7672 (native-inputs
7673 `(("r-knitr" ,r-knitr)))
7674 (home-page "https://www.bioconductor.org/packages/MotifDb/")
7675 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
7676 (description "This package provides more than 2000 annotated position
7677 frequency matrices from nine public sources, for multiple organisms.")
7678 (license license:artistic2.0)))
7679
7680 (define-public r-motifbreakr
7681 (package
7682 (name "r-motifbreakr")
7683 (version "2.4.0")
7684 (source (origin
7685 (method url-fetch)
7686 (uri (bioconductor-uri "motifbreakR" version))
7687 (sha256
7688 (base32 "0nni6i7h51kz0ch8ls9c9jzd7fjmc9wsavp11hx6w6bmhnh3k4n7"))))
7689 (properties `((upstream-name . "motifbreakR")))
7690 (build-system r-build-system)
7691 (propagated-inputs
7692 `(("r-biocgenerics" ,r-biocgenerics)
7693 ("r-biocparallel" ,r-biocparallel)
7694 ("r-biostrings" ,r-biostrings)
7695 ("r-bsgenome" ,r-bsgenome)
7696 ("r-genomeinfodb" ,r-genomeinfodb)
7697 ("r-genomicranges" ,r-genomicranges)
7698 ("r-grimport" ,r-grimport)
7699 ("r-gviz" ,r-gviz)
7700 ("r-iranges" ,r-iranges)
7701 ("r-matrixstats" ,r-matrixstats)
7702 ("r-motifdb" ,r-motifdb)
7703 ("r-motifstack" ,r-motifstack)
7704 ("r-rtracklayer" ,r-rtracklayer)
7705 ("r-s4vectors" ,r-s4vectors)
7706 ("r-stringr" ,r-stringr)
7707 ("r-summarizedexperiment" ,r-summarizedexperiment)
7708 ("r-tfmpvalue" ,r-tfmpvalue)
7709 ("r-variantannotation" ,r-variantannotation)))
7710 (native-inputs
7711 `(("r-knitr" ,r-knitr)))
7712 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
7713 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
7714 (description "This package allows biologists to judge in the first place
7715 whether the sequence surrounding the polymorphism is a good match, and in
7716 the second place how much information is gained or lost in one allele of
7717 the polymorphism relative to another. This package gives a choice of
7718 algorithms for interrogation of genomes with motifs from public sources:
7719 @enumerate
7720 @item a weighted-sum probability matrix;
7721 @item log-probabilities;
7722 @item weighted by relative entropy.
7723 @end enumerate
7724
7725 This package can predict effects for novel or previously described variants in
7726 public databases, making it suitable for tasks beyond the scope of its original
7727 design. Lastly, it can be used to interrogate any genome curated within
7728 Bioconductor.")
7729 (license license:gpl2+)))
7730
7731 (define-public r-motifstack
7732 (package
7733 (name "r-motifstack")
7734 (version "1.34.0")
7735 (source
7736 (origin
7737 (method url-fetch)
7738 (uri (bioconductor-uri "motifStack" version))
7739 (sha256
7740 (base32
7741 "1psqpdbgbad31bd8hg5bl62qi5s9rl75nzm85igfpxar3zwwxjlb"))))
7742 (properties `((upstream-name . "motifStack")))
7743 (build-system r-build-system)
7744 (propagated-inputs
7745 `(("r-ade4" ,r-ade4)
7746 ("r-biostrings" ,r-biostrings)
7747 ("r-ggplot2" ,r-ggplot2)
7748 ("r-htmlwidgets" ,r-htmlwidgets)
7749 ("r-xml" ,r-xml)))
7750 (native-inputs
7751 `(("r-knitr" ,r-knitr)))
7752 (home-page "https://bioconductor.org/packages/motifStack/")
7753 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
7754 (description
7755 "The motifStack package is designed for graphic representation of
7756 multiple motifs with different similarity scores. It works with both DNA/RNA
7757 sequence motifs and amino acid sequence motifs. In addition, it provides the
7758 flexibility for users to customize the graphic parameters such as the font
7759 type and symbol colors.")
7760 (license license:gpl2+)))
7761
7762 (define-public r-genomicscores
7763 (package
7764 (name "r-genomicscores")
7765 (version "2.2.0")
7766 (source
7767 (origin
7768 (method url-fetch)
7769 (uri (bioconductor-uri "GenomicScores" version))
7770 (sha256
7771 (base32
7772 "1492xirsgag2dsr6ys9wm3a65sq826p9hcdg3b4dm1wbxgdfx6jr"))))
7773 (properties `((upstream-name . "GenomicScores")))
7774 (build-system r-build-system)
7775 (propagated-inputs
7776 `(("r-annotationhub" ,r-annotationhub)
7777 ("r-biobase" ,r-biobase)
7778 ("r-biocfilecache" ,r-biocfilecache)
7779 ("r-biocgenerics" ,r-biocgenerics)
7780 ("r-biocmanager" ,r-biocmanager)
7781 ("r-biostrings" ,r-biostrings)
7782 ("r-delayedarray" ,r-delayedarray)
7783 ("r-genomeinfodb" ,r-genomeinfodb)
7784 ("r-genomicranges" ,r-genomicranges)
7785 ("r-hdf5array" ,r-hdf5array)
7786 ("r-iranges" ,r-iranges)
7787 ("r-rhdf5" ,r-rhdf5)
7788 ("r-s4vectors" ,r-s4vectors)
7789 ("r-xml" ,r-xml)))
7790 (native-inputs
7791 `(("r-knitr" ,r-knitr)))
7792 (home-page "https://github.com/rcastelo/GenomicScores/")
7793 (synopsis "Work with genome-wide position-specific scores")
7794 (description
7795 "This package provides infrastructure to store and access genome-wide
7796 position-specific scores within R and Bioconductor.")
7797 (license license:artistic2.0)))
7798
7799 (define-public r-atacseqqc
7800 (package
7801 (name "r-atacseqqc")
7802 (version "1.14.4")
7803 (source
7804 (origin
7805 (method url-fetch)
7806 (uri (bioconductor-uri "ATACseqQC" version))
7807 (sha256
7808 (base32
7809 "04sn0zl4m60i5jvqz5rmhc4qwcgrhk6rhznrygmm93k9v363mbn9"))))
7810 (properties `((upstream-name . "ATACseqQC")))
7811 (build-system r-build-system)
7812 (propagated-inputs
7813 `(("r-biocgenerics" ,r-biocgenerics)
7814 ("r-biostrings" ,r-biostrings)
7815 ("r-bsgenome" ,r-bsgenome)
7816 ("r-chippeakanno" ,r-chippeakanno)
7817 ("r-edger" ,r-edger)
7818 ("r-genomeinfodb" ,r-genomeinfodb)
7819 ("r-genomicalignments" ,r-genomicalignments)
7820 ("r-genomicranges" ,r-genomicranges)
7821 ("r-genomicscores" ,r-genomicscores)
7822 ("r-iranges" ,r-iranges)
7823 ("r-kernsmooth" ,r-kernsmooth)
7824 ("r-limma" ,r-limma)
7825 ("r-motifstack" ,r-motifstack)
7826 ("r-preseqr" ,r-preseqr)
7827 ("r-randomforest" ,r-randomforest)
7828 ("r-rsamtools" ,r-rsamtools)
7829 ("r-rtracklayer" ,r-rtracklayer)
7830 ("r-s4vectors" ,r-s4vectors)))
7831 (native-inputs
7832 `(("r-knitr" ,r-knitr)))
7833 (home-page "https://bioconductor.org/packages/ATACseqQC/")
7834 (synopsis "ATAC-seq quality control")
7835 (description
7836 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
7837 sequencing, is a rapid and sensitive method for chromatin accessibility
7838 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
7839 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
7840 assess whether their ATAC-seq experiment is successful. It includes
7841 diagnostic plots of fragment size distribution, proportion of mitochondria
7842 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
7843 footprints.")
7844 (license license:gpl2+)))
7845
7846 (define-public r-gofuncr
7847 (package
7848 (name "r-gofuncr")
7849 (version "1.10.0")
7850 (source
7851 (origin
7852 (method url-fetch)
7853 (uri (bioconductor-uri "GOfuncR" version))
7854 (sha256
7855 (base32
7856 "1ah4v2jj508wjsmrncw58wjq2cyris7bnzfw6kr7jp9n4dvn33mq"))))
7857 (properties `((upstream-name . "GOfuncR")))
7858 (build-system r-build-system)
7859 (propagated-inputs
7860 `(("r-annotationdbi" ,r-annotationdbi)
7861 ("r-genomicranges" ,r-genomicranges)
7862 ("r-gtools" ,r-gtools)
7863 ("r-iranges" ,r-iranges)
7864 ("r-mapplots" ,r-mapplots)
7865 ("r-rcpp" ,r-rcpp)
7866 ("r-vioplot" ,r-vioplot)))
7867 (native-inputs
7868 `(("r-knitr" ,r-knitr)))
7869 (home-page "https://bioconductor.org/packages/GOfuncR/")
7870 (synopsis "Gene ontology enrichment using FUNC")
7871 (description
7872 "GOfuncR performs a gene ontology enrichment analysis based on the
7873 ontology enrichment software FUNC. GO-annotations are obtained from
7874 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
7875 included in the package and updated regularly. GOfuncR provides the standard
7876 candidate vs background enrichment analysis using the hypergeometric test, as
7877 well as three additional tests:
7878
7879 @enumerate
7880 @item the Wilcoxon rank-sum test that is used when genes are ranked,
7881 @item a binomial test that is used when genes are associated with two counts,
7882 and
7883 @item a Chi-square or Fisher's exact test that is used in cases when genes are
7884 associated with four counts.
7885 @end enumerate
7886
7887 To correct for multiple testing and interdependency of the tests, family-wise
7888 error rates are computed based on random permutations of the gene-associated
7889 variables. GOfuncR also provides tools for exploring the ontology graph and
7890 the annotations, and options to take gene-length or spatial clustering of
7891 genes into account. It is also possible to provide custom gene coordinates,
7892 annotations and ontologies.")
7893 (license license:gpl2+)))
7894
7895 (define-public r-abaenrichment
7896 (package
7897 (name "r-abaenrichment")
7898 (version "1.20.0")
7899 (source
7900 (origin
7901 (method url-fetch)
7902 (uri (bioconductor-uri "ABAEnrichment" version))
7903 (sha256
7904 (base32
7905 "0i0214ap9f6lnyawdgcdsds6g3g9qqji3wbn6ln6rs698gjs9w9c"))))
7906 (properties `((upstream-name . "ABAEnrichment")))
7907 (build-system r-build-system)
7908 (propagated-inputs
7909 `(("r-abadata" ,r-abadata)
7910 ("r-data-table" ,r-data-table)
7911 ("r-gofuncr" ,r-gofuncr)
7912 ("r-gplots" ,r-gplots)
7913 ("r-gtools" ,r-gtools)
7914 ("r-rcpp" ,r-rcpp)))
7915 (native-inputs
7916 `(("r-knitr" ,r-knitr)))
7917 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
7918 (synopsis "Gene expression enrichment in human brain regions")
7919 (description
7920 "The package ABAEnrichment is designed to test for enrichment of user
7921 defined candidate genes in the set of expressed genes in different human brain
7922 regions. The core function @code{aba_enrich} integrates the expression of the
7923 candidate gene set (averaged across donors) and the structural information of
7924 the brain using an ontology, both provided by the Allen Brain Atlas project.")
7925 (license license:gpl2+)))
7926
7927 (define-public r-annotationfuncs
7928 (package
7929 (name "r-annotationfuncs")
7930 (version "1.40.0")
7931 (source
7932 (origin
7933 (method url-fetch)
7934 (uri (bioconductor-uri "AnnotationFuncs" version))
7935 (sha256
7936 (base32
7937 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
7938 (properties
7939 `((upstream-name . "AnnotationFuncs")))
7940 (build-system r-build-system)
7941 (propagated-inputs
7942 `(("r-annotationdbi" ,r-annotationdbi)
7943 ("r-dbi" ,r-dbi)))
7944 (home-page "https://www.iysik.com/r/annotationfuncs")
7945 (synopsis "Annotation translation functions")
7946 (description
7947 "This package provides functions for handling translating between
7948 different identifieres using the Biocore Data Team data-packages (e.g.
7949 @code{org.Bt.eg.db}).")
7950 (license license:gpl2)))
7951
7952 (define-public r-annotationtools
7953 (package
7954 (name "r-annotationtools")
7955 (version "1.64.0")
7956 (source
7957 (origin
7958 (method url-fetch)
7959 (uri (bioconductor-uri "annotationTools" version))
7960 (sha256
7961 (base32
7962 "1q3c30hqxjgar3gm8d7h4rw3m7cgc11cgv9q0fwv5abj075cj224"))))
7963 (properties
7964 `((upstream-name . "annotationTools")))
7965 (build-system r-build-system)
7966 (propagated-inputs `(("r-biobase" ,r-biobase)))
7967 (home-page "https://bioconductor.org/packages/annotationTools/")
7968 (synopsis "Annotate microarrays and perform gene expression analyses")
7969 (description
7970 "This package provides functions to annotate microarrays, find orthologs,
7971 and integrate heterogeneous gene expression profiles using annotation and
7972 other molecular biology information available as flat file database (plain
7973 text files).")
7974 ;; Any version of the GPL.
7975 (license (list license:gpl2+))))
7976
7977 (define-public r-allelicimbalance
7978 (package
7979 (name "r-allelicimbalance")
7980 (version "1.28.0")
7981 (source
7982 (origin
7983 (method url-fetch)
7984 (uri (bioconductor-uri "AllelicImbalance" version))
7985 (sha256
7986 (base32
7987 "1hk08kwxjlg2jb59bwv9fbc446pyf6knkscfj757nl6yjf11akbl"))))
7988 (properties
7989 `((upstream-name . "AllelicImbalance")))
7990 (build-system r-build-system)
7991 (propagated-inputs
7992 `(("r-annotationdbi" ,r-annotationdbi)
7993 ("r-biocgenerics" ,r-biocgenerics)
7994 ("r-biostrings" ,r-biostrings)
7995 ("r-bsgenome" ,r-bsgenome)
7996 ("r-genomeinfodb" ,r-genomeinfodb)
7997 ("r-genomicalignments" ,r-genomicalignments)
7998 ("r-genomicfeatures" ,r-genomicfeatures)
7999 ("r-genomicranges" ,r-genomicranges)
8000 ("r-gridextra" ,r-gridextra)
8001 ("r-gviz" ,r-gviz)
8002 ("r-iranges" ,r-iranges)
8003 ("r-lattice" ,r-lattice)
8004 ("r-latticeextra" ,r-latticeextra)
8005 ("r-nlme" ,r-nlme)
8006 ("r-rsamtools" ,r-rsamtools)
8007 ("r-s4vectors" ,r-s4vectors)
8008 ("r-seqinr" ,r-seqinr)
8009 ("r-summarizedexperiment" ,r-summarizedexperiment)
8010 ("r-variantannotation" ,r-variantannotation)))
8011 (native-inputs
8012 `(("r-knitr" ,r-knitr)))
8013 (home-page "https://github.com/pappewaio/AllelicImbalance")
8014 (synopsis "Investigate allele-specific expression")
8015 (description
8016 "This package provides a framework for allele-specific expression
8017 investigation using RNA-seq data.")
8018 (license license:gpl3)))
8019
8020 (define-public r-aucell
8021 (package
8022 (name "r-aucell")
8023 (version "1.12.0")
8024 (source
8025 (origin
8026 (method url-fetch)
8027 (uri (bioconductor-uri "AUCell" version))
8028 (sha256
8029 (base32
8030 "0ibsf3nid27hipr03z7phh0yzwfj8bqza6n6g7wfghpls4l12ipx"))))
8031 (properties `((upstream-name . "AUCell")))
8032 (build-system r-build-system)
8033 (propagated-inputs
8034 `(("r-biocgenerics" ,r-biocgenerics)
8035 ("r-data-table" ,r-data-table)
8036 ("r-gseabase" ,r-gseabase)
8037 ("r-mixtools" ,r-mixtools)
8038 ("r-r-utils" ,r-r-utils)
8039 ("r-s4vectors" ,r-s4vectors)
8040 ("r-shiny" ,r-shiny)
8041 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8042 (native-inputs
8043 `(("r-knitr" ,r-knitr)))
8044 (home-page "https://bioconductor.org/packages/AUCell/")
8045 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
8046 (description
8047 "AUCell identifies cells with active gene sets (e.g. signatures,
8048 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
8049 Under the Curve} (AUC) to calculate whether a critical subset of the input
8050 gene set is enriched within the expressed genes for each cell. The
8051 distribution of AUC scores across all the cells allows exploring the relative
8052 expression of the signature. Since the scoring method is ranking-based,
8053 AUCell is independent of the gene expression units and the normalization
8054 procedure. In addition, since the cells are evaluated individually, it can
8055 easily be applied to bigger datasets, subsetting the expression matrix if
8056 needed.")
8057 (license license:gpl3)))
8058
8059 (define-public r-ebimage
8060 (package
8061 (name "r-ebimage")
8062 (version "4.32.0")
8063 (source
8064 (origin
8065 (method url-fetch)
8066 (uri (bioconductor-uri "EBImage" version))
8067 (sha256
8068 (base32
8069 "0qi8bbix5bjahs73ljhfvidlbj8hz5m5j0sb9cjxlngnnldbh4ww"))))
8070 (properties `((upstream-name . "EBImage")))
8071 (build-system r-build-system)
8072 (propagated-inputs
8073 `(("r-abind" ,r-abind)
8074 ("r-biocgenerics" ,r-biocgenerics)
8075 ("r-fftwtools" ,r-fftwtools)
8076 ("r-htmltools" ,r-htmltools)
8077 ("r-htmlwidgets" ,r-htmlwidgets)
8078 ("r-jpeg" ,r-jpeg)
8079 ("r-locfit" ,r-locfit)
8080 ("r-png" ,r-png)
8081 ("r-rcurl" ,r-rcurl)
8082 ("r-tiff" ,r-tiff)))
8083 (native-inputs
8084 `(("r-knitr" ,r-knitr))) ; for vignettes
8085 (home-page "https://github.com/aoles/EBImage")
8086 (synopsis "Image processing and analysis toolbox for R")
8087 (description
8088 "EBImage provides general purpose functionality for image processing and
8089 analysis. In the context of (high-throughput) microscopy-based cellular
8090 assays, EBImage offers tools to segment cells and extract quantitative
8091 cellular descriptors. This allows the automation of such tasks using the R
8092 programming language and facilitates the use of other tools in the R
8093 environment for signal processing, statistical modeling, machine learning and
8094 visualization with image data.")
8095 ;; Any version of the LGPL.
8096 (license license:lgpl2.1+)))
8097
8098 (define-public r-yamss
8099 (package
8100 (name "r-yamss")
8101 (version "1.16.0")
8102 (source
8103 (origin
8104 (method url-fetch)
8105 (uri (bioconductor-uri "yamss" version))
8106 (sha256
8107 (base32
8108 "0cxzn7j9apjcabbvvii16kn4whwd9khcyz867w5ag3zdxwvg7l7w"))))
8109 (build-system r-build-system)
8110 (propagated-inputs
8111 `(("r-biocgenerics" ,r-biocgenerics)
8112 ("r-data-table" ,r-data-table)
8113 ("r-ebimage" ,r-ebimage)
8114 ("r-iranges" ,r-iranges)
8115 ("r-limma" ,r-limma)
8116 ("r-matrix" ,r-matrix)
8117 ("r-mzr" ,r-mzr)
8118 ("r-s4vectors" ,r-s4vectors)
8119 ("r-summarizedexperiment"
8120 ,r-summarizedexperiment)))
8121 (native-inputs
8122 `(("r-knitr" ,r-knitr)))
8123 (home-page "https://github.com/hansenlab/yamss")
8124 (synopsis "Tools for high-throughput metabolomics")
8125 (description
8126 "This package provides tools to analyze and visualize high-throughput
8127 metabolomics data acquired using chromatography-mass spectrometry. These tools
8128 preprocess data in a way that enables reliable and powerful differential
8129 analysis.")
8130 (license license:artistic2.0)))
8131
8132 (define-public r-gtrellis
8133 (package
8134 (name "r-gtrellis")
8135 (version "1.22.0")
8136 (source
8137 (origin
8138 (method url-fetch)
8139 (uri (bioconductor-uri "gtrellis" version))
8140 (sha256
8141 (base32
8142 "14mpavkxlp9d1kccwi4b9hi7x8md5j4s1g17ivqsj38lxqjvg5gw"))))
8143 (build-system r-build-system)
8144 (propagated-inputs
8145 `(("r-circlize" ,r-circlize)
8146 ("r-genomicranges" ,r-genomicranges)
8147 ("r-getoptlong" ,r-getoptlong)
8148 ("r-iranges" ,r-iranges)))
8149 (native-inputs
8150 `(("r-knitr" ,r-knitr)))
8151 (home-page "https://github.com/jokergoo/gtrellis")
8152 (synopsis "Genome level Trellis layout")
8153 (description
8154 "Genome level Trellis graph visualizes genomic data conditioned by
8155 genomic categories (e.g. chromosomes). For each genomic category, multiple
8156 dimensional data which are represented as tracks describe different features
8157 from different aspects. This package provides high flexibility to arrange
8158 genomic categories and to add self-defined graphics in the plot.")
8159 (license license:expat)))
8160
8161 (define-public r-somaticsignatures
8162 (package
8163 (name "r-somaticsignatures")
8164 (version "2.26.0")
8165 (source
8166 (origin
8167 (method url-fetch)
8168 (uri (bioconductor-uri "SomaticSignatures" version))
8169 (sha256
8170 (base32
8171 "1pwf9ws0klcij27w22p0nh924yp5h2jsidp54ppp7mnx08iv0801"))))
8172 (properties
8173 `((upstream-name . "SomaticSignatures")))
8174 (build-system r-build-system)
8175 (propagated-inputs
8176 `(("r-biobase" ,r-biobase)
8177 ("r-biostrings" ,r-biostrings)
8178 ("r-genomeinfodb" ,r-genomeinfodb)
8179 ("r-genomicranges" ,r-genomicranges)
8180 ("r-ggbio" ,r-ggbio)
8181 ("r-ggplot2" ,r-ggplot2)
8182 ("r-iranges" ,r-iranges)
8183 ("r-nmf" ,r-nmf)
8184 ("r-pcamethods" ,r-pcamethods)
8185 ("r-proxy" ,r-proxy)
8186 ("r-reshape2" ,r-reshape2)
8187 ("r-s4vectors" ,r-s4vectors)
8188 ("r-variantannotation" ,r-variantannotation)))
8189 (native-inputs
8190 `(("r-knitr" ,r-knitr)))
8191 (home-page "https://github.com/juliangehring/SomaticSignatures")
8192 (synopsis "Somatic signatures")
8193 (description
8194 "This package identifies mutational signatures of @dfn{single nucleotide
8195 variants} (SNVs). It provides a infrastructure related to the methodology
8196 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
8197 decomposition algorithms.")
8198 (license license:expat)))
8199
8200 (define-public r-yapsa
8201 (package
8202 (name "r-yapsa")
8203 (version "1.16.0")
8204 (source
8205 (origin
8206 (method url-fetch)
8207 (uri (bioconductor-uri "YAPSA" version))
8208 (sha256
8209 (base32
8210 "1vwccrp01p8i42axbaz1bqq173la18ldrzmrjawr5nkjjkvddbpb"))))
8211 (properties `((upstream-name . "YAPSA")))
8212 (build-system r-build-system)
8213 (propagated-inputs
8214 `(("r-biostrings" ,r-biostrings)
8215 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
8216 ("r-circlize" ,r-circlize)
8217 ("r-complexheatmap" ,r-complexheatmap)
8218 ("r-corrplot" ,r-corrplot)
8219 ("r-dendextend" ,r-dendextend)
8220 ("r-doparallel" ,r-doparallel)
8221 ("r-dplyr" ,r-dplyr)
8222 ("r-genomeinfodb" ,r-genomeinfodb)
8223 ("r-genomicranges" ,r-genomicranges)
8224 ("r-getoptlong" ,r-getoptlong)
8225 ("r-ggbeeswarm" ,r-ggbeeswarm)
8226 ("r-ggplot2" ,r-ggplot2)
8227 ("r-gridextra" ,r-gridextra)
8228 ("r-gtrellis" ,r-gtrellis)
8229 ("r-keggrest" ,r-keggrest)
8230 ("r-limsolve" ,r-limsolve)
8231 ("r-magrittr" ,r-magrittr)
8232 ("r-pmcmr" ,r-pmcmr)
8233 ("r-pracma" ,r-pracma)
8234 ("r-reshape2" ,r-reshape2)
8235 ("r-somaticsignatures" ,r-somaticsignatures)
8236 ("r-variantannotation" ,r-variantannotation)))
8237 (native-inputs
8238 `(("r-knitr" ,r-knitr)))
8239 (home-page "https://bioconductor.org/packages/YAPSA/")
8240 (synopsis "Yet another package for signature analysis")
8241 (description
8242 "This package provides functions and routines useful in the analysis of
8243 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
8244 functions to perform a signature analysis with known signatures and a
8245 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
8246 provided.")
8247 (license license:gpl3)))
8248
8249 (define-public r-gcrma
8250 (package
8251 (name "r-gcrma")
8252 (version "2.62.0")
8253 (source
8254 (origin
8255 (method url-fetch)
8256 (uri (bioconductor-uri "gcrma" version))
8257 (sha256
8258 (base32
8259 "1v1x13iwcv6c9x7r1iz2598rwlyzic67jbqcajg24ib6lcfn9f00"))))
8260 (build-system r-build-system)
8261 (propagated-inputs
8262 `(("r-affy" ,r-affy)
8263 ("r-affyio" ,r-affyio)
8264 ("r-biobase" ,r-biobase)
8265 ("r-biocmanager" ,r-biocmanager)
8266 ("r-biostrings" ,r-biostrings)
8267 ("r-xvector" ,r-xvector)))
8268 (home-page "https://bioconductor.org/packages/gcrma/")
8269 (synopsis "Background adjustment using sequence information")
8270 (description
8271 "Gcrma adjusts for background intensities in Affymetrix array data which
8272 include optical noise and @dfn{non-specific binding} (NSB). The main function
8273 @code{gcrma} converts background adjusted probe intensities to expression
8274 measures using the same normalization and summarization methods as a
8275 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
8276 to estimate probe affinity to NSB. The sequence information is summarized in
8277 a more complex way than the simple GC content. Instead, the base types (A, T,
8278 G or C) at each position along the probe determine the affinity of each probe.
8279 The parameters of the position-specific base contributions to the probe
8280 affinity is estimated in an NSB experiment in which only NSB but no
8281 gene-specific binding is expected.")
8282 ;; Any version of the LGPL
8283 (license license:lgpl2.1+)))
8284
8285 (define-public r-simpleaffy
8286 (package
8287 (name "r-simpleaffy")
8288 (version "2.66.0")
8289 (source
8290 (origin
8291 (method url-fetch)
8292 (uri (bioconductor-uri "simpleaffy" version))
8293 (sha256
8294 (base32
8295 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
8296 (build-system r-build-system)
8297 (propagated-inputs
8298 `(("r-affy" ,r-affy)
8299 ("r-biobase" ,r-biobase)
8300 ("r-biocgenerics" ,r-biocgenerics)
8301 ("r-gcrma" ,r-gcrma)
8302 ("r-genefilter" ,r-genefilter)))
8303 (home-page "https://bioconductor.org/packages/simpleaffy/")
8304 (synopsis "Very simple high level analysis of Affymetrix data")
8305 (description
8306 "This package provides high level functions for reading Affy @file{.CEL}
8307 files, phenotypic data, and then computing simple things with it, such as
8308 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
8309 library. It also has some basic scatter plot functions and mechanisms for
8310 generating high resolution journal figures.")
8311 (license license:gpl2+)))
8312
8313 (define-public r-yaqcaffy
8314 (package
8315 (name "r-yaqcaffy")
8316 (version "1.50.0")
8317 (source
8318 (origin
8319 (method url-fetch)
8320 (uri (bioconductor-uri "yaqcaffy" version))
8321 (sha256
8322 (base32
8323 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
8324 (build-system r-build-system)
8325 (propagated-inputs
8326 `(("r-simpleaffy" ,r-simpleaffy)))
8327 (home-page "https://bioconductor.org/packages/yaqcaffy/")
8328 (synopsis "Affymetrix quality control and reproducibility analysis")
8329 (description
8330 "This is a package that can be used for quality control of Affymetrix
8331 GeneChip expression data and reproducibility analysis of human whole genome
8332 chips with the MAQC reference datasets.")
8333 (license license:artistic2.0)))
8334
8335 (define-public r-quantro
8336 (package
8337 (name "r-quantro")
8338 (version "1.24.0")
8339 (source
8340 (origin
8341 (method url-fetch)
8342 (uri (bioconductor-uri "quantro" version))
8343 (sha256
8344 (base32
8345 "1mq4hda73idkq0lkfrhcmiz4kkalfn47dh3i75br5fi33mdgc0k2"))))
8346 (build-system r-build-system)
8347 (propagated-inputs
8348 `(("r-biobase" ,r-biobase)
8349 ("r-doparallel" ,r-doparallel)
8350 ("r-foreach" ,r-foreach)
8351 ("r-ggplot2" ,r-ggplot2)
8352 ("r-iterators" ,r-iterators)
8353 ("r-minfi" ,r-minfi)
8354 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8355 (native-inputs
8356 `(("r-knitr" ,r-knitr)))
8357 (home-page "https://bioconductor.org/packages/quantro/")
8358 (synopsis "Test for when to use quantile normalization")
8359 (description
8360 "This package provides a data-driven test for the assumptions of quantile
8361 normalization using raw data such as objects that inherit eSets (e.g.
8362 ExpressionSet, MethylSet). Group level information about each sample (such as
8363 Tumor / Normal status) must also be provided because the test assesses if
8364 there are global differences in the distributions between the user-defined
8365 groups.")
8366 (license license:gpl3+)))
8367
8368 (define-public r-yarn
8369 (package
8370 (name "r-yarn")
8371 (version "1.16.0")
8372 (source
8373 (origin
8374 (method url-fetch)
8375 (uri (bioconductor-uri "yarn" version))
8376 (sha256
8377 (base32
8378 "0p8wz5jn601vxbbxkm73ps3fx0j1y56nr2qf6y8k80vgrk7bv5gp"))))
8379 (build-system r-build-system)
8380 (propagated-inputs
8381 `(("r-biobase" ,r-biobase)
8382 ("r-biomart" ,r-biomart)
8383 ("r-downloader" ,r-downloader)
8384 ("r-edger" ,r-edger)
8385 ("r-gplots" ,r-gplots)
8386 ("r-limma" ,r-limma)
8387 ("r-matrixstats" ,r-matrixstats)
8388 ("r-preprocesscore" ,r-preprocesscore)
8389 ("r-quantro" ,r-quantro)
8390 ("r-rcolorbrewer" ,r-rcolorbrewer)
8391 ("r-readr" ,r-readr)))
8392 (native-inputs
8393 `(("r-knitr" ,r-knitr)))
8394 (home-page "https://bioconductor.org/packages/yarn/")
8395 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
8396 (description
8397 "Expedite large RNA-Seq analyses using a combination of previously
8398 developed tools. YARN is meant to make it easier for the user in performing
8399 basic mis-annotation quality control, filtering, and condition-aware
8400 normalization. YARN leverages many Bioconductor tools and statistical
8401 techniques to account for the large heterogeneity and sparsity found in very
8402 large RNA-seq experiments.")
8403 (license license:artistic2.0)))
8404
8405 (define-public r-roar
8406 (package
8407 (name "r-roar")
8408 (version "1.26.0")
8409 (source
8410 (origin
8411 (method url-fetch)
8412 (uri (bioconductor-uri "roar" version))
8413 (sha256
8414 (base32
8415 "0spidrcjnrcli0whkf6h8pa1i9dg9arjbm7b1skxbs6dn2k4yyqw"))))
8416 (build-system r-build-system)
8417 (propagated-inputs
8418 `(("r-biocgenerics" ,r-biocgenerics)
8419 ("r-genomeinfodb" ,r-genomeinfodb)
8420 ("r-genomicalignments" ,r-genomicalignments)
8421 ("r-genomicranges" ,r-genomicranges)
8422 ("r-iranges" ,r-iranges)
8423 ("r-rtracklayer" ,r-rtracklayer)
8424 ("r-s4vectors" ,r-s4vectors)
8425 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8426 (home-page "https://github.com/vodkatad/roar/")
8427 (synopsis "Identify differential APA usage from RNA-seq alignments")
8428 (description
8429 "This package provides tools for identifying preferential usage of APA
8430 sites, comparing two biological conditions, starting from known alternative
8431 sites and alignments obtained from standard RNA-seq experiments.")
8432 (license license:gpl3)))
8433
8434 (define-public r-xbseq
8435 (package
8436 (name "r-xbseq")
8437 (version "1.22.0")
8438 (source
8439 (origin
8440 (method url-fetch)
8441 (uri (bioconductor-uri "XBSeq" version))
8442 (sha256
8443 (base32
8444 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
8445 (properties `((upstream-name . "XBSeq")))
8446 (build-system r-build-system)
8447 (propagated-inputs
8448 `(("r-biobase" ,r-biobase)
8449 ("r-deseq2" ,r-deseq2)
8450 ("r-dplyr" ,r-dplyr)
8451 ("r-ggplot2" ,r-ggplot2)
8452 ("r-locfit" ,r-locfit)
8453 ("r-magrittr" ,r-magrittr)
8454 ("r-matrixstats" ,r-matrixstats)
8455 ("r-pracma" ,r-pracma)
8456 ("r-roar" ,r-roar)))
8457 (native-inputs
8458 `(("r-knitr" ,r-knitr)))
8459 (home-page "https://github.com/Liuy12/XBSeq")
8460 (synopsis "Test for differential expression for RNA-seq data")
8461 (description
8462 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
8463 expression} (DE), where a statistical model was established based on the
8464 assumption that observed signals are the convolution of true expression
8465 signals and sequencing noises. The mapped reads in non-exonic regions are
8466 considered as sequencing noises, which follows a Poisson distribution. Given
8467 measurable observed signal and background noise from RNA-seq data, true
8468 expression signals, assuming governed by the negative binomial distribution,
8469 can be delineated and thus the accurate detection of differential expressed
8470 genes.")
8471 (license license:gpl3+)))
8472
8473 (define-public r-massspecwavelet
8474 (package
8475 (name "r-massspecwavelet")
8476 (version "1.56.0")
8477 (source
8478 (origin
8479 (method url-fetch)
8480 (uri (bioconductor-uri "MassSpecWavelet" version))
8481 (sha256
8482 (base32
8483 "1vvxbxc538raqdsy0x9ln41vjhp2aw1nrh4k35y3s9mhb1jlzzv3"))))
8484 (properties
8485 `((upstream-name . "MassSpecWavelet")))
8486 (build-system r-build-system)
8487 (propagated-inputs
8488 `(("r-waveslim" ,r-waveslim)))
8489 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
8490 (synopsis "Mass spectrum processing by wavelet-based algorithms")
8491 (description
8492 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
8493 data mainly through the use of wavelet transforms. It supports peak detection
8494 based on @dfn{Continuous Wavelet Transform} (CWT).")
8495 (license license:lgpl2.0+)))
8496
8497 (define-public r-xcms
8498 (package
8499 (name "r-xcms")
8500 (version "3.12.0")
8501 (source
8502 (origin
8503 (method url-fetch)
8504 (uri (bioconductor-uri "xcms" version))
8505 (sha256
8506 (base32
8507 "17kyybj093mj0g2sbfmjp19mmkww4w025n6zc0hbznqb94vkc8fv"))))
8508 (build-system r-build-system)
8509 (propagated-inputs
8510 `(("r-biobase" ,r-biobase)
8511 ("r-biocgenerics" ,r-biocgenerics)
8512 ("r-biocparallel" ,r-biocparallel)
8513 ("r-iranges" ,r-iranges)
8514 ("r-lattice" ,r-lattice)
8515 ("r-massspecwavelet" ,r-massspecwavelet)
8516 ("r-mscoreutils" ,r-mscoreutils)
8517 ("r-msnbase" ,r-msnbase)
8518 ("r-mzr" ,r-mzr)
8519 ("r-plyr" ,r-plyr)
8520 ("r-protgenerics" ,r-protgenerics)
8521 ("r-rann" ,r-rann)
8522 ("r-rcolorbrewer" ,r-rcolorbrewer)
8523 ("r-robustbase" ,r-robustbase)
8524 ("r-s4vectors" ,r-s4vectors)
8525 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8526 (native-inputs
8527 `(("r-knitr" ,r-knitr)))
8528 (home-page "https://bioconductor.org/packages/xcms/")
8529 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
8530 (description
8531 "This package provides a framework for processing and visualization of
8532 chromatographically separated and single-spectra mass spectral data. It
8533 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
8534 data for high-throughput, untargeted analyte profiling.")
8535 (license license:gpl2+)))
8536
8537 (define-public r-wrench
8538 (package
8539 (name "r-wrench")
8540 (version "1.8.0")
8541 (source
8542 (origin
8543 (method url-fetch)
8544 (uri (bioconductor-uri "Wrench" version))
8545 (sha256
8546 (base32
8547 "01z7rd9fn6cpab3dxgwfpfjlq6vsqb8jhbzvhcqn9v2vqc2pridx"))))
8548 (properties `((upstream-name . "Wrench")))
8549 (build-system r-build-system)
8550 (propagated-inputs
8551 `(("r-limma" ,r-limma)
8552 ("r-locfit" ,r-locfit)
8553 ("r-matrixstats" ,r-matrixstats)))
8554 (native-inputs
8555 `(("r-knitr" ,r-knitr)))
8556 (home-page "https://github.com/HCBravoLab/Wrench")
8557 (synopsis "Wrench normalization for sparse count data")
8558 (description
8559 "Wrench is a package for normalization sparse genomic count data, like
8560 that arising from 16s metagenomic surveys.")
8561 (license license:artistic2.0)))
8562
8563 (define-public r-wiggleplotr
8564 (package
8565 (name "r-wiggleplotr")
8566 (version "1.14.0")
8567 (source
8568 (origin
8569 (method url-fetch)
8570 (uri (bioconductor-uri "wiggleplotr" version))
8571 (sha256
8572 (base32
8573 "1k4wlh5ayb1w4dr6dydqfgm3415qhsfmshmi6zjyyhhkd2626vad"))))
8574 (build-system r-build-system)
8575 (propagated-inputs
8576 `(("r-assertthat" ,r-assertthat)
8577 ("r-cowplot" ,r-cowplot)
8578 ("r-dplyr" ,r-dplyr)
8579 ("r-genomeinfodb" ,r-genomeinfodb)
8580 ("r-genomicranges" ,r-genomicranges)
8581 ("r-ggplot2" ,r-ggplot2)
8582 ("r-iranges" ,r-iranges)
8583 ("r-purrr" ,r-purrr)
8584 ("r-rtracklayer" ,r-rtracklayer)
8585 ("r-s4vectors" ,r-s4vectors)))
8586 (native-inputs
8587 `(("r-knitr" ,r-knitr)))
8588 (home-page "https://bioconductor.org/packages/wiggleplotr/")
8589 (synopsis "Make read coverage plots from BigWig files")
8590 (description
8591 "This package provides tools to visualize read coverage from sequencing
8592 experiments together with genomic annotations (genes, transcripts, peaks).
8593 Introns of long transcripts can be rescaled to a fixed length for better
8594 visualization of exonic read coverage.")
8595 (license license:asl2.0)))
8596
8597 (define-public r-widgettools
8598 (package
8599 (name "r-widgettools")
8600 (version "1.68.0")
8601 (source
8602 (origin
8603 (method url-fetch)
8604 (uri (bioconductor-uri "widgetTools" version))
8605 (sha256
8606 (base32
8607 "172f0pmsspd9lss557cmxzjfsbansimjyhwdiahg8pqrayhwvf2w"))))
8608 (properties `((upstream-name . "widgetTools")))
8609 (build-system r-build-system)
8610 (home-page "https://bioconductor.org/packages/widgetTools/")
8611 (synopsis "Tools for creating interactive tcltk widgets")
8612 (description
8613 "This package contains tools to support the construction of tcltk
8614 widgets in R.")
8615 ;; Any version of the LGPL.
8616 (license license:lgpl3+)))
8617
8618 (define-public r-webbioc
8619 (package
8620 (name "r-webbioc")
8621 (version "1.62.0")
8622 (source
8623 (origin
8624 (method url-fetch)
8625 (uri (bioconductor-uri "webbioc" version))
8626 (sha256
8627 (base32
8628 "1nnmr4ddi07x7sy89fgdn7iwz5k4l8n5ca3xjnlbpwxycza793vj"))))
8629 (build-system r-build-system)
8630 (inputs
8631 `(("netpbm" ,netpbm)
8632 ("perl" ,perl)))
8633 (propagated-inputs
8634 `(("r-affy" ,r-affy)
8635 ("r-annaffy" ,r-annaffy)
8636 ("r-biobase" ,r-biobase)
8637 ("r-biocmanager" ,r-biocmanager)
8638 ("r-gcrma" ,r-gcrma)
8639 ("r-multtest" ,r-multtest)
8640 ("r-qvalue" ,r-qvalue)
8641 ("r-vsn" ,r-vsn)))
8642 (home-page "https://www.bioconductor.org/")
8643 (synopsis "Bioconductor web interface")
8644 (description
8645 "This package provides an integrated web interface for doing microarray
8646 analysis using several of the Bioconductor packages. It is intended to be
8647 deployed as a centralized bioinformatics resource for use by many users.
8648 Currently only Affymetrix oligonucleotide analysis is supported.")
8649 (license license:gpl2+)))
8650
8651 (define-public r-zinbwave
8652 (package
8653 (name "r-zinbwave")
8654 (version "1.12.0")
8655 (source
8656 (origin
8657 (method url-fetch)
8658 (uri (bioconductor-uri "zinbwave" version))
8659 (sha256
8660 (base32
8661 "0m5f0wrk6kg88m41cchjwi4ssi7kr3196m8h9hrhygak964nsd4q"))))
8662 (build-system r-build-system)
8663 (propagated-inputs
8664 `(("r-biocparallel" ,r-biocparallel)
8665 ("r-edger" ,r-edger)
8666 ("r-genefilter" ,r-genefilter)
8667 ("r-matrix" ,r-matrix)
8668 ("r-singlecellexperiment" ,r-singlecellexperiment)
8669 ("r-softimpute" ,r-softimpute)
8670 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8671 (native-inputs
8672 `(("r-knitr" ,r-knitr)))
8673 (home-page "https://bioconductor.org/packages/zinbwave")
8674 (synopsis "Zero-inflated negative binomial model for RNA-seq data")
8675 (description "This package implements a general and flexible zero-inflated
8676 negative binomial model that can be used to provide a low-dimensional
8677 representations of single-cell RNA-seq data. The model accounts for zero
8678 inflation (dropouts), over-dispersion, and the count nature of the data.
8679 The model also accounts for the difference in library sizes and optionally
8680 for batch effects and/or other covariates, avoiding the need for pre-normalize
8681 the data.")
8682 (license license:artistic2.0)))
8683
8684 (define-public r-zfpkm
8685 (package
8686 (name "r-zfpkm")
8687 (version "1.12.0")
8688 (source
8689 (origin
8690 (method url-fetch)
8691 (uri (bioconductor-uri "zFPKM" version))
8692 (sha256
8693 (base32
8694 "1sa7m7mzzr92c9ickial5701414rab233lq1il1sm9yfdkf8s9fm"))))
8695 (properties `((upstream-name . "zFPKM")))
8696 (build-system r-build-system)
8697 (propagated-inputs
8698 `(("r-checkmate" ,r-checkmate)
8699 ("r-dplyr" ,r-dplyr)
8700 ("r-ggplot2" ,r-ggplot2)
8701 ("r-summarizedexperiment" ,r-summarizedexperiment)
8702 ("r-tidyr" ,r-tidyr)))
8703 (native-inputs
8704 `(("r-knitr" ,r-knitr)))
8705 (home-page "https://github.com/ronammar/zFPKM/")
8706 (synopsis "Functions to facilitate zFPKM transformations")
8707 (description
8708 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
8709 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
8710 24215113).")
8711 (license license:gpl3)))
8712
8713 (define-public r-rbowtie2
8714 (package
8715 (name "r-rbowtie2")
8716 (version "1.12.0")
8717 (source
8718 (origin
8719 (method url-fetch)
8720 (uri (bioconductor-uri "Rbowtie2" version))
8721 (sha256
8722 (base32
8723 "1pcdcqn82ray73bajjnx5zgs98m56acviq3adbzga0cfqf6wiqx5"))))
8724 (properties `((upstream-name . "Rbowtie2")))
8725 (build-system r-build-system)
8726 (inputs
8727 `(("zlib" ,zlib)))
8728 (native-inputs
8729 `(("r-knitr" ,r-knitr)))
8730 (home-page "https://bioconductor.org/packages/Rbowtie2/")
8731 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
8732 (description
8733 "This package provides an R wrapper of the popular @code{bowtie2}
8734 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
8735 rapid adapter trimming, identification, and read merging.")
8736 (license license:gpl3+)))
8737
8738 (define-public r-progeny
8739 (package
8740 (name "r-progeny")
8741 (version "1.12.0")
8742 (source
8743 (origin
8744 (method url-fetch)
8745 (uri (bioconductor-uri "progeny" version))
8746 (sha256
8747 (base32
8748 "00lhzz4plmx5128khs298n6zv9204mhqv548lxxdhaw18b16vwm7"))))
8749 (build-system r-build-system)
8750 (propagated-inputs
8751 `(("r-biobase" ,r-biobase)
8752 ("r-dplyr" ,r-dplyr)
8753 ("r-ggplot2" ,r-ggplot2)
8754 ("r-ggrepel" ,r-ggrepel)
8755 ("r-gridextra" ,r-gridextra)
8756 ("r-tidyr" ,r-tidyr)))
8757 (native-inputs
8758 `(("r-knitr" ,r-knitr)))
8759 (home-page "https://github.com/saezlab/progeny")
8760 (synopsis "Pathway responsive gene activity inference")
8761 (description
8762 "This package provides a function to infer pathway activity from gene
8763 expression. It contains the linear model inferred in the publication
8764 \"Perturbation-response genes reveal signaling footprints in cancer gene
8765 expression\".")
8766 (license license:asl2.0)))
8767
8768 (define-public r-arrmnormalization
8769 (package
8770 (name "r-arrmnormalization")
8771 (version "1.30.0")
8772 (source
8773 (origin
8774 (method url-fetch)
8775 (uri (bioconductor-uri "ARRmNormalization" version))
8776 (sha256
8777 (base32
8778 "1ximvi0jbwmymx6iy70qfyr9j26x5arlarra9fzs5hq05jif6q95"))))
8779 (properties
8780 `((upstream-name . "ARRmNormalization")))
8781 (build-system r-build-system)
8782 (propagated-inputs `(("r-arrmdata" ,r-arrmdata)))
8783 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
8784 (synopsis "Adaptive robust regression normalization for methylation data")
8785 (description
8786 "This is a package to perform the @dfn{Adaptive Robust Regression
8787 method} (ARRm) for the normalization of methylation data from the Illumina
8788 Infinium HumanMethylation 450k assay.")
8789 (license license:artistic2.0)))
8790
8791 (define-public r-biocfilecache
8792 (package
8793 (name "r-biocfilecache")
8794 (version "1.14.0")
8795 (source
8796 (origin
8797 (method url-fetch)
8798 (uri (bioconductor-uri "BiocFileCache" version))
8799 (sha256
8800 (base32
8801 "0r032a033636bxap0vvb02jvjqiynzj9npqd8603qnwmhvvfi5z1"))))
8802 (properties `((upstream-name . "BiocFileCache")))
8803 (build-system r-build-system)
8804 (propagated-inputs
8805 `(("r-curl" ,r-curl)
8806 ("r-dbi" ,r-dbi)
8807 ("r-dbplyr" ,r-dbplyr)
8808 ("r-dplyr" ,r-dplyr)
8809 ("r-httr" ,r-httr)
8810 ("r-rappdirs" ,r-rappdirs)
8811 ("r-rsqlite" ,r-rsqlite)))
8812 (native-inputs
8813 `(("r-knitr" ,r-knitr)))
8814 (home-page "https://bioconductor.org/packages/BiocFileCache/")
8815 (synopsis "Manage files across sessions")
8816 (description
8817 "This package creates a persistent on-disk cache of files that the user
8818 can add, update, and retrieve. It is useful for managing resources (such as
8819 custom Txdb objects) that are costly or difficult to create, web resources,
8820 and data files used across sessions.")
8821 (license license:artistic2.0)))
8822
8823 (define-public r-iclusterplus
8824 (package
8825 (name "r-iclusterplus")
8826 (version "1.26.0")
8827 (source
8828 (origin
8829 (method url-fetch)
8830 (uri (bioconductor-uri "iClusterPlus" version))
8831 (sha256
8832 (base32
8833 "02ji84dsbn4wir8sim4qy8h57524mnrsq51wxc7n8ybp5x7n9k9q"))))
8834 (properties `((upstream-name . "iClusterPlus")))
8835 (build-system r-build-system)
8836 (native-inputs `(("gfortran" ,gfortran)))
8837 (home-page "https://bioconductor.org/packages/iClusterPlus/")
8838 (synopsis "Integrative clustering of multi-type genomic data")
8839 (description
8840 "iClusterPlus is developed for integrative clustering analysis of
8841 multi-type genomic data and is an enhanced version of iCluster proposed and
8842 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
8843 from the experiments where biological samples (e.g. tumor samples) are
8844 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
8845 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
8846 on. In the iClusterPlus model, binary observations such as somatic mutation
8847 are modeled as Binomial processes; categorical observations such as copy
8848 number states are realizations of Multinomial random variables; counts are
8849 modeled as Poisson random processes; and continuous measures are modeled by
8850 Gaussian distributions.")
8851 (license license:gpl2+)))
8852
8853 (define-public r-rbowtie
8854 (package
8855 (name "r-rbowtie")
8856 (version "1.30.0")
8857 (source
8858 (origin
8859 (method url-fetch)
8860 (uri (bioconductor-uri "Rbowtie" version))
8861 (sha256
8862 (base32
8863 "0rgxqc3sbq7phnrn9a6z361725h4zi2mi985i43n7fi3csif7507"))))
8864 (properties `((upstream-name . "Rbowtie")))
8865 (build-system r-build-system)
8866 (inputs
8867 `(("zlib" ,zlib)))
8868 (native-inputs
8869 `(("r-knitr" ,r-knitr)))
8870 (home-page "https://bioconductor.org/packages/Rbowtie/")
8871 (synopsis "R bowtie wrapper")
8872 (description
8873 "This package provides an R wrapper around the popular bowtie short read
8874 aligner and around SpliceMap, a de novo splice junction discovery and
8875 alignment tool.")
8876 (license license:artistic2.0)))
8877
8878 (define-public r-sgseq
8879 (package
8880 (name "r-sgseq")
8881 (version "1.24.0")
8882 (source
8883 (origin
8884 (method url-fetch)
8885 (uri (bioconductor-uri "SGSeq" version))
8886 (sha256
8887 (base32
8888 "1nfhy5kgyz56b6pyxcq8kflqwnhl9nlffszwpqb5fdh5ibz8xbjx"))))
8889 (properties `((upstream-name . "SGSeq")))
8890 (build-system r-build-system)
8891 (propagated-inputs
8892 `(("r-annotationdbi" ,r-annotationdbi)
8893 ("r-biocgenerics" ,r-biocgenerics)
8894 ("r-biostrings" ,r-biostrings)
8895 ("r-genomeinfodb" ,r-genomeinfodb)
8896 ("r-genomicalignments" ,r-genomicalignments)
8897 ("r-genomicfeatures" ,r-genomicfeatures)
8898 ("r-genomicranges" ,r-genomicranges)
8899 ("r-igraph" ,r-igraph)
8900 ("r-iranges" ,r-iranges)
8901 ("r-rsamtools" ,r-rsamtools)
8902 ("r-rtracklayer" ,r-rtracklayer)
8903 ("r-runit" ,r-runit)
8904 ("r-s4vectors" ,r-s4vectors)
8905 ("r-summarizedexperiment" ,r-summarizedexperiment)))
8906 (native-inputs
8907 `(("r-knitr" ,r-knitr)))
8908 (home-page "https://bioconductor.org/packages/SGSeq/")
8909 (synopsis "Splice event prediction and quantification from RNA-seq data")
8910 (description
8911 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
8912 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
8913 represented as a splice graph, which can be obtained from existing annotation
8914 or predicted from the mapped sequence reads. Splice events are identified
8915 from the graph and are quantified locally using structurally compatible reads
8916 at the start or end of each splice variant. The software includes functions
8917 for splice event prediction, quantification, visualization and
8918 interpretation.")
8919 (license license:artistic2.0)))
8920
8921 (define-public r-rhisat2
8922 (package
8923 (name "r-rhisat2")
8924 (version "1.6.0")
8925 (source
8926 (origin
8927 (method url-fetch)
8928 (uri (bioconductor-uri "Rhisat2" version))
8929 (sha256
8930 (base32
8931 "0f9x2qcazml0zjcgyy0kdphnww4d1m62rn0ijcqlhy1bng6ihwwb"))))
8932 (properties `((upstream-name . "Rhisat2")))
8933 (build-system r-build-system)
8934 (arguments
8935 `(#:phases
8936 (modify-phases %standard-phases
8937 (add-after 'unpack 'make-reproducible
8938 (lambda _
8939 (substitute* "src/Makefile"
8940 (("`hostname`") "guix")
8941 (("`date`") "0")
8942 ;; Avoid shelling out to "which".
8943 (("^CC =.*") (which "gcc"))
8944 (("^CPP =.*") (which "g++")))
8945 #t)))))
8946 (propagated-inputs
8947 `(("r-genomicfeatures" ,r-genomicfeatures)
8948 ("r-genomicranges" ,r-genomicranges)
8949 ("r-sgseq" ,r-sgseq)))
8950 (native-inputs
8951 `(("r-knitr" ,r-knitr)))
8952 (home-page "https://github.com/fmicompbio/Rhisat2")
8953 (synopsis "R Wrapper for HISAT2 sequence aligner")
8954 (description
8955 "This package provides an R interface to the HISAT2 spliced short-read
8956 aligner by Kim et al. (2015). The package contains wrapper functions to
8957 create a genome index and to perform the read alignment to the generated
8958 index.")
8959 (license license:gpl3)))
8960
8961 (define-public r-quasr
8962 (package
8963 (name "r-quasr")
8964 (version "1.30.0")
8965 (source
8966 (origin
8967 (method url-fetch)
8968 (uri (bioconductor-uri "QuasR" version))
8969 (sha256
8970 (base32
8971 "032m01q34nnmvbhcb2g3pz2fqmgcw5464m74m1m0h7x9bl04a5k8"))))
8972 (properties `((upstream-name . "QuasR")))
8973 (build-system r-build-system)
8974 (propagated-inputs
8975 `(("r-annotationdbi" ,r-annotationdbi)
8976 ("r-biobase" ,r-biobase)
8977 ("r-biocgenerics" ,r-biocgenerics)
8978 ("r-biocmanager" ,r-biocmanager)
8979 ("r-biocparallel" ,r-biocparallel)
8980 ("r-biostrings" ,r-biostrings)
8981 ("r-bsgenome" ,r-bsgenome)
8982 ("r-genomeinfodb" ,r-genomeinfodb)
8983 ("r-genomicalignments" ,r-genomicalignments)
8984 ("r-genomicfeatures" ,r-genomicfeatures)
8985 ("r-genomicfiles" ,r-genomicfiles)
8986 ("r-genomicranges" ,r-genomicranges)
8987 ("r-iranges" ,r-iranges)
8988 ("r-rbowtie" ,r-rbowtie)
8989 ("r-rhisat2" ,r-rhisat2)
8990 ("r-rhtslib" ,r-rhtslib)
8991 ("r-rsamtools" ,r-rsamtools)
8992 ("r-rtracklayer" ,r-rtracklayer)
8993 ("r-s4vectors" ,r-s4vectors)
8994 ("r-shortread" ,r-shortread)))
8995 (native-inputs
8996 `(("r-knitr" ,r-knitr)))
8997 (home-page "https://bioconductor.org/packages/QuasR/")
8998 (synopsis "Quantify and annotate short reads in R")
8999 (description
9000 "This package provides a framework for the quantification and analysis of
9001 short genomic reads. It covers a complete workflow starting from raw sequence
9002 reads, over creation of alignments and quality control plots, to the
9003 quantification of genomic regions of interest.")
9004 (license license:gpl2)))
9005
9006 (define-public r-rqc
9007 (package
9008 (name "r-rqc")
9009 (version "1.24.0")
9010 (source
9011 (origin
9012 (method url-fetch)
9013 (uri (bioconductor-uri "Rqc" version))
9014 (sha256
9015 (base32
9016 "083c3ql0gndb6y7m9d3rpbkimyw8cj8jyv77mwwjhq49lzwsg6n9"))))
9017 (properties `((upstream-name . "Rqc")))
9018 (build-system r-build-system)
9019 (propagated-inputs
9020 `(("r-biocgenerics" ,r-biocgenerics)
9021 ("r-biocparallel" ,r-biocparallel)
9022 ("r-biocstyle" ,r-biocstyle)
9023 ("r-biostrings" ,r-biostrings)
9024 ("r-biovizbase" ,r-biovizbase)
9025 ("r-genomicalignments" ,r-genomicalignments)
9026 ("r-genomicfiles" ,r-genomicfiles)
9027 ("r-ggplot2" ,r-ggplot2)
9028 ("r-iranges" ,r-iranges)
9029 ("r-knitr" ,r-knitr)
9030 ("r-markdown" ,r-markdown)
9031 ("r-plyr" ,r-plyr)
9032 ("r-rcpp" ,r-rcpp)
9033 ("r-reshape2" ,r-reshape2)
9034 ("r-rsamtools" ,r-rsamtools)
9035 ("r-s4vectors" ,r-s4vectors)
9036 ("r-shiny" ,r-shiny)
9037 ("r-shortread" ,r-shortread)))
9038 (native-inputs
9039 `(("r-knitr" ,r-knitr)))
9040 (home-page "https://github.com/labbcb/Rqc")
9041 (synopsis "Quality control tool for high-throughput sequencing data")
9042 (description
9043 "Rqc is an optimized tool designed for quality control and assessment of
9044 high-throughput sequencing data. It performs parallel processing of entire
9045 files and produces a report which contains a set of high-resolution
9046 graphics.")
9047 (license license:gpl2+)))
9048
9049 (define-public r-birewire
9050 (package
9051 (name "r-birewire")
9052 (version "3.22.0")
9053 (source
9054 (origin
9055 (method url-fetch)
9056 (uri (bioconductor-uri "BiRewire" version))
9057 (sha256
9058 (base32
9059 "1h9zjjd5krsjpbxlmsbzwx7kbishn0z6mpm8zmrcpmbfrprp38qw"))))
9060 (properties `((upstream-name . "BiRewire")))
9061 (build-system r-build-system)
9062 (propagated-inputs
9063 `(("r-igraph" ,r-igraph)
9064 ("r-matrix" ,r-matrix)
9065 ("r-slam" ,r-slam)
9066 ("r-tsne" ,r-tsne)))
9067 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
9068 (synopsis "Tools for randomization of bipartite graphs")
9069 (description
9070 "This package provides functions for bipartite network rewiring through N
9071 consecutive switching steps and for the computation of the minimal number of
9072 switching steps to be performed in order to maximise the dissimilarity with
9073 respect to the original network. It includes functions for the analysis of
9074 the introduced randomness across the switching steps and several other
9075 routines to analyse the resulting networks and their natural projections.")
9076 (license license:gpl3)))
9077
9078 (define-public r-birta
9079 (package
9080 (name "r-birta")
9081 (version "1.31.0")
9082 (source
9083 (origin
9084 (method url-fetch)
9085 (uri (bioconductor-uri "birta" version))
9086 (sha256
9087 (base32
9088 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
9089 (build-system r-build-system)
9090 (propagated-inputs
9091 `(("r-biobase" ,r-biobase)
9092 ("r-limma" ,r-limma)
9093 ("r-mass" ,r-mass)))
9094 (home-page "https://bioconductor.org/packages/birta")
9095 (synopsis "Bayesian inference of regulation of transcriptional activity")
9096 (description
9097 "Expression levels of mRNA molecules are regulated by different
9098 processes, comprising inhibition or activation by transcription factors and
9099 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
9100 Inference of Regulation of Transcriptional Activity) uses the regulatory
9101 networks of transcription factors and miRNAs together with mRNA and miRNA
9102 expression data to predict switches in regulatory activity between two
9103 conditions. A Bayesian network is used to model the regulatory structure and
9104 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
9105 (license license:gpl2+)))
9106
9107 (define-public r-multidataset
9108 (package
9109 (name "r-multidataset")
9110 (version "1.18.2")
9111 (source
9112 (origin
9113 (method url-fetch)
9114 (uri (bioconductor-uri "MultiDataSet" version))
9115 (sha256
9116 (base32
9117 "1wzhxgprriicw6lx1h91z4r9d5yaxar859scp83bm8pr9aznqk2z"))))
9118 (properties `((upstream-name . "MultiDataSet")))
9119 (build-system r-build-system)
9120 (propagated-inputs
9121 `(("r-biobase" ,r-biobase)
9122 ("r-biocgenerics" ,r-biocgenerics)
9123 ("r-genomicranges" ,r-genomicranges)
9124 ("r-ggplot2" ,r-ggplot2)
9125 ("r-ggrepel" ,r-ggrepel)
9126 ("r-iranges" ,r-iranges)
9127 ("r-limma" ,r-limma)
9128 ("r-qqman" ,r-qqman)
9129 ("r-s4vectors" ,r-s4vectors)
9130 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9131 (native-inputs
9132 `(("r-knitr" ,r-knitr)))
9133 (home-page "https://bioconductor.org/packages/MultiDataSet/")
9134 (synopsis "Implementation of MultiDataSet and ResultSet")
9135 (description
9136 "This package provides an implementation of the BRGE's (Bioinformatic
9137 Research Group in Epidemiology from Center for Research in Environmental
9138 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
9139 integrating multi omics data sets and ResultSet is a container for omics
9140 results. This package contains base classes for MEAL and rexposome
9141 packages.")
9142 (license license:expat)))
9143
9144 (define-public r-ropls
9145 (package
9146 (name "r-ropls")
9147 (version "1.22.0")
9148 (source
9149 (origin
9150 (method url-fetch)
9151 (uri (bioconductor-uri "ropls" version))
9152 (sha256
9153 (base32
9154 "1h76s89hsafrkshpkx7vjinfni9lzfpnbfyg3fhkkrwpp1fnwyj5"))))
9155 (build-system r-build-system)
9156 (propagated-inputs
9157 `(("r-biobase" ,r-biobase)
9158 ("r-multidataset" ,r-multidataset)))
9159 (native-inputs
9160 `(("r-knitr" ,r-knitr))) ; for vignettes
9161 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
9162 (synopsis "Multivariate analysis and feature selection of omics data")
9163 (description
9164 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
9165 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
9166 regression, classification, and feature selection of omics data where the
9167 number of variables exceeds the number of samples and with multicollinearity
9168 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
9169 separately model the variation correlated (predictive) to the factor of
9170 interest and the uncorrelated (orthogonal) variation. While performing
9171 similarly to PLS, OPLS facilitates interpretation.
9172
9173 This package provides imlementations of PCA, PLS, and OPLS for multivariate
9174 analysis and feature selection of omics data. In addition to scores, loadings
9175 and weights plots, the package provides metrics and graphics to determine the
9176 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
9177 validity of the model by permutation testing, detect outliers, and perform
9178 feature selection (e.g. with Variable Importance in Projection or regression
9179 coefficients).")
9180 (license license:cecill)))
9181
9182 (define-public r-biosigner
9183 (package
9184 (name "r-biosigner")
9185 (version "1.18.2")
9186 (source
9187 (origin
9188 (method url-fetch)
9189 (uri (bioconductor-uri "biosigner" version))
9190 (sha256
9191 (base32
9192 "0i18j4fk91x5017yk1l35c58k5aby22yh81zkp59irphpv9akvjn"))))
9193 (build-system r-build-system)
9194 (propagated-inputs
9195 `(("r-biobase" ,r-biobase)
9196 ("r-e1071" ,r-e1071)
9197 ("r-multidataset" ,r-multidataset)
9198 ("r-randomforest" ,r-randomforest)
9199 ("r-ropls" ,r-ropls)))
9200 (native-inputs
9201 `(("r-knitr" ,r-knitr)))
9202 (home-page "https://bioconductor.org/packages/biosigner/")
9203 (synopsis "Signature discovery from omics data")
9204 (description
9205 "Feature selection is critical in omics data analysis to extract
9206 restricted and meaningful molecular signatures from complex and high-dimension
9207 data, and to build robust classifiers. This package implements a method to
9208 assess the relevance of the variables for the prediction performances of the
9209 classifier. The approach can be run in parallel with the PLS-DA, Random
9210 Forest, and SVM binary classifiers. The signatures and the corresponding
9211 'restricted' models are returned, enabling future predictions on new
9212 datasets.")
9213 (license license:cecill)))
9214
9215 (define-public r-annotatr
9216 (package
9217 (name "r-annotatr")
9218 (version "1.16.0")
9219 (source
9220 (origin
9221 (method url-fetch)
9222 (uri (bioconductor-uri "annotatr" version))
9223 (sha256
9224 (base32
9225 "0dq67snpqxl9mifljm6zlnkdb0ghjwday0fvcn3i7zmrfszgzyf9"))))
9226 (build-system r-build-system)
9227 (propagated-inputs
9228 `(("r-annotationdbi" ,r-annotationdbi)
9229 ("r-annotationhub" ,r-annotationhub)
9230 ("r-dplyr" ,r-dplyr)
9231 ("r-genomeinfodb" ,r-genomeinfodb)
9232 ("r-genomicfeatures" ,r-genomicfeatures)
9233 ("r-genomicranges" ,r-genomicranges)
9234 ("r-ggplot2" ,r-ggplot2)
9235 ("r-iranges" ,r-iranges)
9236 ("r-readr" ,r-readr)
9237 ("r-regioner" ,r-regioner)
9238 ("r-reshape2" ,r-reshape2)
9239 ("r-rtracklayer" ,r-rtracklayer)
9240 ("r-s4vectors" ,r-s4vectors)))
9241 (native-inputs
9242 `(("r-knitr" ,r-knitr)))
9243 (home-page "https://bioconductor.org/packages/annotatr/")
9244 (synopsis "Annotation of genomic regions to genomic annotations")
9245 (description
9246 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
9247 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
9248 to investigate the intersecting genomic annotations. Such annotations include
9249 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
9250 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
9251 enhancers. The annotatr package provides an easy way to summarize and
9252 visualize the intersection of genomic sites/regions with genomic
9253 annotations.")
9254 (license license:gpl3)))
9255
9256 (define-public r-rsubread
9257 (package
9258 (name "r-rsubread")
9259 (version "2.4.3")
9260 (source
9261 (origin
9262 (method url-fetch)
9263 (uri (bioconductor-uri "Rsubread" version))
9264 (sha256
9265 (base32
9266 "0c4akc89p5467n5rzq9bi7h0h15rbpqpvh7fw42qcj7g2vc41wba"))))
9267 (properties `((upstream-name . "Rsubread")))
9268 (build-system r-build-system)
9269 (inputs `(("zlib" ,zlib)))
9270 (propagated-inputs
9271 `(("r-matrix" ,r-matrix)))
9272 (home-page "https://bioconductor.org/packages/Rsubread/")
9273 (synopsis "Subread sequence alignment and counting for R")
9274 (description
9275 "This package provides tools for alignment, quantification and analysis
9276 of second and third generation sequencing data. It includes functionality for
9277 read mapping, read counting, SNP calling, structural variant detection and
9278 gene fusion discovery. It can be applied to all major sequencing techologies
9279 and to both short and long sequence reads.")
9280 (license license:gpl3)))
9281
9282 (define-public r-flowutils
9283 (package
9284 (name "r-flowutils")
9285 (version "1.54.0")
9286 (source
9287 (origin
9288 (method url-fetch)
9289 (uri (bioconductor-uri "flowUtils" version))
9290 (sha256
9291 (base32
9292 "1q4g666nd51j24hcp2wxla1bdi77kbfd4i0pxgp7rs2jf7200k09"))))
9293 (properties `((upstream-name . "flowUtils")))
9294 (build-system r-build-system)
9295 (propagated-inputs
9296 `(("r-biobase" ,r-biobase)
9297 ("r-corpcor" ,r-corpcor)
9298 ("r-flowcore" ,r-flowcore)
9299 ("r-graph" ,r-graph)
9300 ("r-runit" ,r-runit)
9301 ("r-xml" ,r-xml)))
9302 (home-page "https://github.com/jspidlen/flowUtils")
9303 (synopsis "Utilities for flow cytometry")
9304 (description
9305 "This package provides utilities for flow cytometry data.")
9306 (license license:artistic2.0)))
9307
9308 (define-public r-consensusclusterplus
9309 (package
9310 (name "r-consensusclusterplus")
9311 (version "1.54.0")
9312 (source
9313 (origin
9314 (method url-fetch)
9315 (uri (bioconductor-uri "ConsensusClusterPlus" version))
9316 (sha256
9317 (base32
9318 "06h85l1mg2kpjprylzz44nhxp64k211plhch5qhg39wp0fk34lfp"))))
9319 (properties
9320 `((upstream-name . "ConsensusClusterPlus")))
9321 (build-system r-build-system)
9322 (propagated-inputs
9323 `(("r-all" ,r-all)
9324 ("r-biobase" ,r-biobase)
9325 ("r-cluster" ,r-cluster)))
9326 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
9327 (synopsis "Clustering algorithm")
9328 (description
9329 "This package provides an implementation of an algorithm for determining
9330 cluster count and membership by stability evidence in unsupervised analysis.")
9331 (license license:gpl2)))
9332
9333 (define-public r-cytolib
9334 (package
9335 (name "r-cytolib")
9336 (version "2.4.0")
9337 (source
9338 (origin
9339 (method url-fetch)
9340 (uri (bioconductor-uri "cytolib" version))
9341 (sha256
9342 (base32
9343 "0wl7zqwv0i38dfzqfsz40n3mcbxi38ffn1rbd5pm9s7hq16zr4nv"))))
9344 (properties `((upstream-name . "cytolib")))
9345 (build-system r-build-system)
9346 (native-inputs
9347 `(("r-knitr" ,r-knitr)))
9348 (propagated-inputs
9349 `(("r-bh" ,r-bh)
9350 ("r-rcpp" ,r-rcpp)
9351 ("r-rcpparmadillo" ,r-rcpparmadillo)
9352 ("r-rcppparallel" ,r-rcppparallel)
9353 ("r-rhdf5lib" ,r-rhdf5lib)
9354 ("r-rprotobuflib" ,r-rprotobuflib)))
9355 (home-page "https://bioconductor.org/packages/cytolib/")
9356 (synopsis "C++ infrastructure for working with gated cytometry")
9357 (description
9358 "This package provides the core data structure and API to represent and
9359 interact with gated cytometry data.")
9360 (license license:artistic2.0)))
9361
9362 (define-public r-flowcore
9363 (package
9364 (name "r-flowcore")
9365 (version "2.2.0")
9366 (source
9367 (origin
9368 (method url-fetch)
9369 (uri (bioconductor-uri "flowCore" version))
9370 (sha256
9371 (base32
9372 "001ickrl2asdl0zwpdjqkl1w7137nzxbryamxihgya394jw73xr8"))))
9373 (properties `((upstream-name . "flowCore")))
9374 (build-system r-build-system)
9375 (propagated-inputs
9376 `(("r-bh" ,r-bh)
9377 ("r-biobase" ,r-biobase)
9378 ("r-biocgenerics" ,r-biocgenerics)
9379 ("r-cytolib" ,r-cytolib)
9380 ("r-matrixstats" ,r-matrixstats)
9381 ("r-rcpp" ,r-rcpp)
9382 ("r-rcpparmadillo" ,r-rcpparmadillo)
9383 ("r-rprotobuflib" ,r-rprotobuflib)
9384 ("r-s4vectors" ,r-s4vectors)))
9385 (native-inputs
9386 `(("r-knitr" ,r-knitr)))
9387 (home-page "https://bioconductor.org/packages/flowCore")
9388 (synopsis "Basic structures for flow cytometry data")
9389 (description
9390 "This package provides S4 data structures and basic functions to deal
9391 with flow cytometry data.")
9392 (license license:artistic2.0)))
9393
9394 (define-public r-flowmeans
9395 (package
9396 (name "r-flowmeans")
9397 (version "1.50.0")
9398 (source
9399 (origin
9400 (method url-fetch)
9401 (uri (bioconductor-uri "flowMeans" version))
9402 (sha256
9403 (base32
9404 "02y5b3iqjlqjlxrqq0l24dr68sjaniz26jqf14cnnwz1xg5hz734"))))
9405 (properties `((upstream-name . "flowMeans")))
9406 (build-system r-build-system)
9407 (propagated-inputs
9408 `(("r-biobase" ,r-biobase)
9409 ("r-feature" ,r-feature)
9410 ("r-flowcore" ,r-flowcore)
9411 ("r-rrcov" ,r-rrcov)))
9412 (home-page "https://bioconductor.org/packages/flowMeans")
9413 (synopsis "Non-parametric flow cytometry data gating")
9414 (description
9415 "This package provides tools to identify cell populations in Flow
9416 Cytometry data using non-parametric clustering and segmented-regression-based
9417 change point detection.")
9418 (license license:artistic2.0)))
9419
9420 (define-public r-ncdfflow
9421 (package
9422 (name "r-ncdfflow")
9423 (version "2.38.0")
9424 (source
9425 (origin
9426 (method url-fetch)
9427 (uri (bioconductor-uri "ncdfFlow" version))
9428 (sha256
9429 (base32
9430 "1lm88qnfv6rnnr7wmgbvwyj272imjjjn7h3agxqqzsbmn8vyrnf0"))))
9431 (properties `((upstream-name . "ncdfFlow")))
9432 (build-system r-build-system)
9433 (propagated-inputs
9434 `(("r-bh" ,r-bh)
9435 ("r-biobase" ,r-biobase)
9436 ("r-biocgenerics" ,r-biocgenerics)
9437 ("r-flowcore" ,r-flowcore)
9438 ("r-rcpp" ,r-rcpp)
9439 ("r-rcpparmadillo" ,r-rcpparmadillo)
9440 ("r-rhdf5lib" ,r-rhdf5lib)
9441 ("r-zlibbioc" ,r-zlibbioc)))
9442 (native-inputs
9443 `(("r-knitr" ,r-knitr)))
9444 (home-page "https://bioconductor.org/packages/ncdfFlow/")
9445 (synopsis "HDF5 based storage for flow cytometry data")
9446 (description
9447 "This package provides HDF5 storage based methods and functions for
9448 manipulation of flow cytometry data.")
9449 (license license:artistic2.0)))
9450
9451 (define-public r-ggcyto
9452 (package
9453 (name "r-ggcyto")
9454 (version "1.18.0")
9455 (source
9456 (origin
9457 (method url-fetch)
9458 (uri (bioconductor-uri "ggcyto" version))
9459 (sha256
9460 (base32
9461 "0myjvhm9jjb9cih5nlka3f9zg5ncy8gy3krpdpa0618jdglvgr1m"))))
9462 (properties `((upstream-name . "ggcyto")))
9463 (build-system r-build-system)
9464 (propagated-inputs
9465 `(("r-data-table" ,r-data-table)
9466 ("r-flowcore" ,r-flowcore)
9467 ("r-flowworkspace" ,r-flowworkspace)
9468 ("r-ggplot2" ,r-ggplot2)
9469 ("r-gridextra" ,r-gridextra)
9470 ("r-hexbin" ,r-hexbin)
9471 ("r-ncdfflow" ,r-ncdfflow)
9472 ("r-plyr" ,r-plyr)
9473 ("r-rcolorbrewer" ,r-rcolorbrewer)
9474 ("r-rlang" ,r-rlang)
9475 ("r-scales" ,r-scales)))
9476 (native-inputs
9477 `(("r-knitr" ,r-knitr)))
9478 (home-page "https://github.com/RGLab/ggcyto/issues")
9479 (synopsis "Visualize Cytometry data with ggplot")
9480 (description
9481 "With the dedicated fortify method implemented for @code{flowSet},
9482 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
9483 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
9484 and some custom layers also make it easy to add gates and population
9485 statistics to the plot.")
9486 (license license:artistic2.0)))
9487
9488 (define-public r-flowviz
9489 (package
9490 (name "r-flowviz")
9491 (version "1.54.0")
9492 (source
9493 (origin
9494 (method url-fetch)
9495 (uri (bioconductor-uri "flowViz" version))
9496 (sha256
9497 (base32
9498 "1s6jrn2a7hv984xvm6gyn8k3hnma8qidrw9kgj9z5128hv330z7k"))))
9499 (properties `((upstream-name . "flowViz")))
9500 (build-system r-build-system)
9501 (propagated-inputs
9502 `(("r-biobase" ,r-biobase)
9503 ("r-flowcore" ,r-flowcore)
9504 ("r-hexbin" ,r-hexbin)
9505 ("r-idpmisc" ,r-idpmisc)
9506 ("r-kernsmooth" ,r-kernsmooth)
9507 ("r-lattice" ,r-lattice)
9508 ("r-latticeextra" ,r-latticeextra)
9509 ("r-mass" ,r-mass)
9510 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9511 (native-inputs
9512 `(("r-knitr" ,r-knitr)))
9513 (home-page "https://bioconductor.org/packages/flowViz/")
9514 (synopsis "Visualization for flow cytometry")
9515 (description
9516 "This package provides visualization tools for flow cytometry data.")
9517 (license license:artistic2.0)))
9518
9519 (define-public r-flowclust
9520 (package
9521 (name "r-flowclust")
9522 (version "3.28.0")
9523 (source
9524 (origin
9525 (method url-fetch)
9526 (uri (bioconductor-uri "flowClust" version))
9527 (sha256
9528 (base32
9529 "1ml3y5wq68jbyr7l5j4zs79bj5bbwzmn5gx41yi88hq78iwkscrq"))))
9530 (properties `((upstream-name . "flowClust")))
9531 (build-system r-build-system)
9532 (arguments
9533 `(#:configure-flags
9534 (list "--configure-args=--enable-bundled-gsl=no")))
9535 (propagated-inputs
9536 `(("r-biobase" ,r-biobase)
9537 ("r-biocgenerics" ,r-biocgenerics)
9538 ("r-clue" ,r-clue)
9539 ("r-corpcor" ,r-corpcor)
9540 ("r-ellipse" ,r-ellipse)
9541 ("r-flowcore" ,r-flowcore)
9542 ("r-flowviz" ,r-flowviz)
9543 ("r-graph" ,r-graph)
9544 ("r-mnormt" ,r-mnormt)))
9545 (inputs
9546 `(("gsl" ,gsl)))
9547 (native-inputs
9548 `(("pkg-config" ,pkg-config)
9549 ("r-knitr" ,r-knitr)))
9550 (home-page "https://bioconductor.org/packages/flowClust")
9551 (synopsis "Clustering for flow cytometry")
9552 (description
9553 "This package provides robust model-based clustering using a t-mixture
9554 model with Box-Cox transformation.")
9555 (license license:artistic2.0)))
9556
9557 ;; TODO: this package bundles an old version of protobuf. It's not easy to
9558 ;; make it use our protobuf package instead.
9559 (define-public r-rprotobuflib
9560 (package
9561 (name "r-rprotobuflib")
9562 (version "2.2.0")
9563 (source
9564 (origin
9565 (method url-fetch)
9566 (uri (bioconductor-uri "RProtoBufLib" version))
9567 (sha256
9568 (base32
9569 "09n4ny3ymfkja2br4rrr2n9dzw3hs7qijhcq4mj0avr86i27llqz"))))
9570 (properties `((upstream-name . "RProtoBufLib")))
9571 (build-system r-build-system)
9572 (arguments
9573 `(#:phases
9574 (modify-phases %standard-phases
9575 (add-after 'unpack 'unpack-bundled-sources
9576 (lambda _
9577 (with-directory-excursion "src"
9578 (invoke "tar" "xf" "protobuf-3.10.0.tar.gz"))
9579 #t)))))
9580 (native-inputs
9581 `(("r-knitr" ,r-knitr)))
9582 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
9583 (synopsis "C++ headers and static libraries of Protocol buffers")
9584 (description
9585 "This package provides the headers and static library of Protocol buffers
9586 for other R packages to compile and link against.")
9587 (license license:bsd-3)))
9588
9589 (define-public r-flowworkspace
9590 (package
9591 (name "r-flowworkspace")
9592 (version "4.4.0")
9593 (source
9594 (origin
9595 (method url-fetch)
9596 (uri (bioconductor-uri "flowWorkspace" version))
9597 (sha256
9598 (base32
9599 "1a9qb2dcvwgb3z0vdbbzn1rzy77d3da72kirs272344hdx9b2cx9"))))
9600 (properties `((upstream-name . "flowWorkspace")))
9601 (build-system r-build-system)
9602 (propagated-inputs
9603 `(("r-aws-s3" ,r-aws-s3)
9604 ("r-aws-signature" ,r-aws-signature)
9605 ("r-bh" ,r-bh)
9606 ("r-biobase" ,r-biobase)
9607 ("r-biocgenerics" ,r-biocgenerics)
9608 ("r-cytolib" ,r-cytolib)
9609 ("r-data-table" ,r-data-table)
9610 ("r-delayedarray" ,r-delayedarray)
9611 ("r-digest" ,r-digest)
9612 ("r-dplyr" ,r-dplyr)
9613 ("r-flowcore" ,r-flowcore)
9614 ("r-ggplot2" ,r-ggplot2)
9615 ("r-graph" ,r-graph)
9616 ("r-lattice" ,r-lattice)
9617 ("r-latticeextra" ,r-latticeextra)
9618 ("r-matrixstats" ,r-matrixstats)
9619 ("r-ncdfflow" ,r-ncdfflow)
9620 ("r-rbgl" ,r-rbgl)
9621 ("r-rcpp" ,r-rcpp)
9622 ("r-rcpparmadillo" ,r-rcpparmadillo)
9623 ("r-rcppparallel" ,r-rcppparallel)
9624 ("r-rgraphviz" ,r-rgraphviz)
9625 ("r-rhdf5lib" ,r-rhdf5lib)
9626 ("r-rprotobuflib" ,r-rprotobuflib)
9627 ("r-s4vectors" ,r-s4vectors)
9628 ("r-scales" ,r-scales)
9629 ("r-xml" ,r-xml)))
9630 (native-inputs
9631 `(("r-knitr" ,r-knitr)))
9632 (home-page "https://bioconductor.org/packages/flowWorkspace/")
9633 (synopsis "Infrastructure for working with cytometry data")
9634 (description
9635 "This package is designed to facilitate comparison of automated gating
9636 methods against manual gating done in flowJo. This package allows you to
9637 import basic flowJo workspaces into BioConductor and replicate the gating from
9638 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
9639 samples, compensation, and transformation are performed so that the output
9640 matches the flowJo analysis.")
9641 (license license:artistic2.0)))
9642
9643 (define-public r-flowstats
9644 (package
9645 (name "r-flowstats")
9646 (version "4.2.0")
9647 (source
9648 (origin
9649 (method url-fetch)
9650 (uri (bioconductor-uri "flowStats" version))
9651 (sha256
9652 (base32
9653 "1i6nrwc55k4bn4qprgs6npy7wf8537m429yncqsygsv47z21ix6x"))))
9654 (properties `((upstream-name . "flowStats")))
9655 (build-system r-build-system)
9656 (propagated-inputs
9657 `(("r-biobase" ,r-biobase)
9658 ("r-biocgenerics" ,r-biocgenerics)
9659 ("r-cluster" ,r-cluster)
9660 ("r-fda" ,r-fda)
9661 ("r-flowcore" ,r-flowcore)
9662 ("r-flowviz" ,r-flowviz)
9663 ("r-flowworkspace" ,r-flowworkspace)
9664 ("r-kernsmooth" ,r-kernsmooth)
9665 ("r-ks" ,r-ks)
9666 ("r-lattice" ,r-lattice)
9667 ("r-mass" ,r-mass)
9668 ("r-ncdfflow" ,r-ncdfflow)
9669 ("r-rcolorbrewer" ,r-rcolorbrewer)
9670 ("r-rrcov" ,r-rrcov)))
9671 (home-page "http://www.github.com/RGLab/flowStats")
9672 (synopsis "Statistical methods for the analysis of flow cytometry data")
9673 (description
9674 "This package provides methods and functionality to analyze flow data
9675 that is beyond the basic infrastructure provided by the @code{flowCore}
9676 package.")
9677 (license license:artistic2.0)))
9678
9679 (define-public r-opencyto
9680 (package
9681 (name "r-opencyto")
9682 (version "2.2.0")
9683 (source
9684 (origin
9685 (method url-fetch)
9686 (uri (bioconductor-uri "openCyto" version))
9687 (sha256
9688 (base32
9689 "02dymy5fa0wjd4pql3jdv1d65mak7ra4il96va7c0km8s87rn40v"))))
9690 (properties `((upstream-name . "openCyto")))
9691 (build-system r-build-system)
9692 (propagated-inputs
9693 `(("r-biobase" ,r-biobase)
9694 ("r-biocgenerics" ,r-biocgenerics)
9695 ("r-clue" ,r-clue)
9696 ("r-data-table" ,r-data-table)
9697 ("r-flowclust" ,r-flowclust)
9698 ("r-flowcore" ,r-flowcore)
9699 ("r-flowstats" ,r-flowstats)
9700 ("r-flowviz" ,r-flowviz)
9701 ("r-flowworkspace" ,r-flowworkspace)
9702 ("r-graph" ,r-graph)
9703 ("r-gtools" ,r-gtools)
9704 ("r-ks" ,r-ks)
9705 ("r-lattice" ,r-lattice)
9706 ("r-mass" ,r-mass)
9707 ("r-ncdfflow" ,r-ncdfflow)
9708 ("r-plyr" ,r-plyr)
9709 ("r-r-utils" ,r-r-utils)
9710 ("r-rbgl" ,r-rbgl)
9711 ("r-rcolorbrewer" ,r-rcolorbrewer)
9712 ("r-rcpp" ,r-rcpp)
9713 ("r-rrcov" ,r-rrcov)))
9714 (native-inputs
9715 `(("r-knitr" ,r-knitr)))
9716 (home-page "https://bioconductor.org/packages/openCyto")
9717 (synopsis "Hierarchical gating pipeline for flow cytometry data")
9718 (description
9719 "This package is designed to facilitate the automated gating methods in a
9720 sequential way to mimic the manual gating strategy.")
9721 (license license:artistic2.0)))
9722
9723 (define-public r-cytoml
9724 (package
9725 (name "r-cytoml")
9726 (version "2.4.0")
9727 (source
9728 (origin
9729 (method url-fetch)
9730 (uri (bioconductor-uri "CytoML" version))
9731 (sha256
9732 (base32
9733 "0ixy7mmnipk8wy61wz6qy7jfbc5zhs6p5iqaii8hdprjnb841ri7"))))
9734 (properties `((upstream-name . "CytoML")))
9735 (build-system r-build-system)
9736 (inputs
9737 `(("libxml2" ,libxml2)
9738 ("zlib" ,zlib)))
9739 (propagated-inputs
9740 `(("r-base64enc" ,r-base64enc)
9741 ("r-bh" ,r-bh)
9742 ("r-biobase" ,r-biobase)
9743 ("r-corpcor" ,r-corpcor)
9744 ("r-cytolib" ,r-cytolib)
9745 ("r-data-table" ,r-data-table)
9746 ("r-dplyr" ,r-dplyr)
9747 ("r-flowcore" ,r-flowcore)
9748 ("r-flowworkspace" ,r-flowworkspace)
9749 ("r-ggcyto" ,r-ggcyto)
9750 ("r-graph" ,r-graph)
9751 ("r-jsonlite" ,r-jsonlite)
9752 ("r-lattice" ,r-lattice)
9753 ("r-opencyto" ,r-opencyto)
9754 ("r-plyr" ,r-plyr)
9755 ("r-rbgl" ,r-rbgl)
9756 ("r-rcpp" ,r-rcpp)
9757 ("r-rcpparmadillo" ,r-rcpparmadillo)
9758 ("r-rcppparallel" ,r-rcppparallel)
9759 ("r-rgraphviz" ,r-rgraphviz)
9760 ("r-rhdf5lib" ,r-rhdf5lib)
9761 ("r-rprotobuflib" ,r-rprotobuflib)
9762 ("r-runit" ,r-runit)
9763 ("r-tibble" ,r-tibble)
9764 ("r-xml" ,r-xml)
9765 ("r-xml2" ,r-xml2)
9766 ("r-yaml" ,r-yaml)))
9767 (native-inputs
9768 `(("r-knitr" ,r-knitr)))
9769 (home-page "https://github.com/RGLab/CytoML")
9770 (synopsis "GatingML interface for cross platform cytometry data sharing")
9771 (description
9772 "This package provides an interface to implementations of the GatingML2.0
9773 standard to exchange gated cytometry data with other software platforms.")
9774 (license license:artistic2.0)))
9775
9776 (define-public r-flowsom
9777 (package
9778 (name "r-flowsom")
9779 (version "1.22.0")
9780 (source
9781 (origin
9782 (method url-fetch)
9783 (uri (bioconductor-uri "FlowSOM" version))
9784 (sha256
9785 (base32
9786 "0gydp6q6zqkadw356k9br646zfynz8gk9ckbx9d297x503j5sgwf"))))
9787 (properties `((upstream-name . "FlowSOM")))
9788 (build-system r-build-system)
9789 (propagated-inputs
9790 `(("r-biocgenerics" ,r-biocgenerics)
9791 ("r-consensusclusterplus" ,r-consensusclusterplus)
9792 ("r-cytoml" ,r-cytoml)
9793 ("r-flowcore" ,r-flowcore)
9794 ("r-flowworkspace" ,r-flowworkspace)
9795 ("r-igraph" ,r-igraph)
9796 ("r-rcolorbrewer" ,r-rcolorbrewer)
9797 ("r-tsne" ,r-tsne)
9798 ("r-xml" ,r-xml)))
9799 (home-page "https://bioconductor.org/packages/FlowSOM/")
9800 (synopsis "Visualize and interpret cytometry data")
9801 (description
9802 "FlowSOM offers visualization options for cytometry data, by using
9803 self-organizing map clustering and minimal spanning trees.")
9804 (license license:gpl2+)))
9805
9806 (define-public r-mixomics
9807 (package
9808 (name "r-mixomics")
9809 (version "6.14.1")
9810 (source
9811 (origin
9812 (method url-fetch)
9813 (uri (bioconductor-uri "mixOmics" version))
9814 (sha256
9815 (base32
9816 "07d1z33bc3bym1jwp1qqfhs18w4v9axk0ycnmldmj6piswvp44wk"))))
9817 (properties `((upstream-name . "mixOmics")))
9818 (build-system r-build-system)
9819 (propagated-inputs
9820 `(("r-biocparallel" ,r-biocparallel)
9821 ("r-corpcor" ,r-corpcor)
9822 ("r-dplyr" ,r-dplyr)
9823 ("r-ellipse" ,r-ellipse)
9824 ("r-ggrepel" ,r-ggrepel)
9825 ("r-ggplot2" ,r-ggplot2)
9826 ("r-gridextra" ,r-gridextra)
9827 ("r-igraph" ,r-igraph)
9828 ("r-lattice" ,r-lattice)
9829 ("r-mass" ,r-mass)
9830 ("r-matrixstats" ,r-matrixstats)
9831 ("r-rarpack" ,r-rarpack)
9832 ("r-rcolorbrewer" ,r-rcolorbrewer)
9833 ("r-reshape2" ,r-reshape2)
9834 ("r-tidyr" ,r-tidyr)))
9835 (native-inputs
9836 `(("r-knitr" ,r-knitr)))
9837 (home-page "http://www.mixOmics.org")
9838 (synopsis "Multivariate methods for exploration of biological datasets")
9839 (description
9840 "mixOmics offers a wide range of multivariate methods for the exploration
9841 and integration of biological datasets with a particular focus on variable
9842 selection. The package proposes several sparse multivariate models we have
9843 developed to identify the key variables that are highly correlated, and/or
9844 explain the biological outcome of interest. The data that can be analysed
9845 with mixOmics may come from high throughput sequencing technologies, such as
9846 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
9847 also beyond the realm of omics (e.g. spectral imaging). The methods
9848 implemented in mixOmics can also handle missing values without having to
9849 delete entire rows with missing data.")
9850 (license license:gpl2+)))
9851
9852 (define-public r-depecher
9853 (package ;Source/Weave error
9854 (name "r-depecher")
9855 (version "1.6.0")
9856 (source
9857 (origin
9858 (method url-fetch)
9859 (uri (bioconductor-uri "DepecheR" version))
9860 (sha256
9861 (base32
9862 "0c7yv3a7k22nhhw3601n8jdl61cjmlny9b3nfrzsp78mkxi0h469"))))
9863 (properties `((upstream-name . "DepecheR")))
9864 (build-system r-build-system)
9865 (propagated-inputs
9866 `(("r-beanplot" ,r-beanplot)
9867 ("r-dosnow" ,r-dosnow)
9868 ("r-dplyr" ,r-dplyr)
9869 ("r-fnn" ,r-fnn)
9870 ("r-foreach" ,r-foreach)
9871 ("r-ggplot2" ,r-ggplot2)
9872 ("r-gmodels" ,r-gmodels)
9873 ("r-gplots" ,r-gplots)
9874 ("r-mass" ,r-mass)
9875 ("r-matrixstats" ,r-matrixstats)
9876 ("r-mixomics" ,r-mixomics)
9877 ("r-moments" ,r-moments)
9878 ("r-rcpp" ,r-rcpp)
9879 ("r-rcppeigen" ,r-rcppeigen)
9880 ("r-reshape2" ,r-reshape2)
9881 ("r-robustbase" ,r-robustbase)
9882 ("r-viridis" ,r-viridis)))
9883 (native-inputs
9884 `(("r-knitr" ,r-knitr)))
9885 (home-page "https://bioconductor.org/packages/DepecheR/")
9886 (synopsis "Identify traits of clusters in high-dimensional entities")
9887 (description
9888 "The purpose of this package is to identify traits in a dataset that can
9889 separate groups. This is done on two levels. First, clustering is performed,
9890 using an implementation of sparse K-means. Secondly, the generated clusters
9891 are used to predict outcomes of groups of individuals based on their
9892 distribution of observations in the different clusters. As certain clusters
9893 with separating information will be identified, and these clusters are defined
9894 by a sparse number of variables, this method can reduce the complexity of
9895 data, to only emphasize the data that actually matters.")
9896 (license license:expat)))
9897
9898 (define-public r-rcistarget
9899 (package
9900 (name "r-rcistarget")
9901 (version "1.10.0")
9902 (source
9903 (origin
9904 (method url-fetch)
9905 (uri (bioconductor-uri "RcisTarget" version))
9906 (sha256
9907 (base32
9908 "0a711jzxl1kggpk3ln68xzc5y30my4nbs1mxx8951pyi3jvzjfyf"))))
9909 (properties `((upstream-name . "RcisTarget")))
9910 (build-system r-build-system)
9911 (propagated-inputs
9912 `(("r-aucell" ,r-aucell)
9913 ("r-biocgenerics" ,r-biocgenerics)
9914 ("r-data-table" ,r-data-table)
9915 ("r-feather" ,r-feather)
9916 ("r-gseabase" ,r-gseabase)
9917 ("r-r-utils" ,r-r-utils)
9918 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9919 (native-inputs
9920 `(("r-knitr" ,r-knitr)))
9921 (home-page "https://aertslab.org/#scenic")
9922 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
9923 (description
9924 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
9925 over-represented on a gene list. In a first step, RcisTarget selects DNA
9926 motifs that are significantly over-represented in the surroundings of the
9927 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
9928 achieved by using a database that contains genome-wide cross-species rankings
9929 for each motif. The motifs that are then annotated to TFs and those that have
9930 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
9931 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
9932 genes in the gene-set that are ranked above the leading edge).")
9933 (license license:gpl3)))
9934
9935 (define-public r-cicero
9936 (package
9937 (name "r-cicero")
9938 (version "1.8.1")
9939 (source
9940 (origin
9941 (method url-fetch)
9942 (uri (bioconductor-uri "cicero" version))
9943 (sha256
9944 (base32
9945 "12y857p4p0m7k72bimli8wjn9cd0gxjwcs3n7ri9pn9l9d42krqr"))))
9946 (build-system r-build-system)
9947 (propagated-inputs
9948 `(("r-assertthat" ,r-assertthat)
9949 ("r-biobase" ,r-biobase)
9950 ("r-biocgenerics" ,r-biocgenerics)
9951 ("r-data-table" ,r-data-table)
9952 ("r-dplyr" ,r-dplyr)
9953 ("r-fnn" ,r-fnn)
9954 ("r-genomicranges" ,r-genomicranges)
9955 ("r-ggplot2" ,r-ggplot2)
9956 ("r-glasso" ,r-glasso)
9957 ("r-gviz" ,r-gviz)
9958 ("r-igraph" ,r-igraph)
9959 ("r-iranges" ,r-iranges)
9960 ("r-matrix" ,r-matrix)
9961 ("r-monocle" ,r-monocle)
9962 ("r-plyr" ,r-plyr)
9963 ("r-reshape2" ,r-reshape2)
9964 ("r-s4vectors" ,r-s4vectors)
9965 ("r-stringi" ,r-stringi)
9966 ("r-stringr" ,r-stringr)
9967 ("r-tibble" ,r-tibble)
9968 ("r-tidyr" ,r-tidyr)
9969 ("r-vgam" ,r-vgam)))
9970 (native-inputs
9971 `(("r-knitr" ,r-knitr)))
9972 (home-page "https://bioconductor.org/packages/cicero/")
9973 (synopsis "Predict cis-co-accessibility from single-cell data")
9974 (description
9975 "Cicero computes putative cis-regulatory maps from single-cell chromatin
9976 accessibility data. It also extends the monocle package for use in chromatin
9977 accessibility data.")
9978 (license license:expat)))
9979
9980 ;; This is the latest commit on the "monocle3" branch.
9981 (define-public r-cicero-monocle3
9982 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
9983 (revision "1"))
9984 (package (inherit r-cicero)
9985 (name "r-cicero-monocle3")
9986 (version (git-version "1.3.2" revision commit))
9987 (source
9988 (origin
9989 (method git-fetch)
9990 (uri (git-reference
9991 (url "https://github.com/cole-trapnell-lab/cicero-release")
9992 (commit commit)))
9993 (file-name (git-file-name name version))
9994 (sha256
9995 (base32
9996 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
9997 (propagated-inputs
9998 `(("r-monocle3" ,r-monocle3)
9999 ,@(alist-delete "r-monocle"
10000 (package-propagated-inputs r-cicero)))))))
10001
10002 (define-public r-circrnaprofiler
10003 (package
10004 (name "r-circrnaprofiler")
10005 (version "1.4.2")
10006 (source
10007 (origin
10008 (method url-fetch)
10009 (uri (bioconductor-uri "circRNAprofiler" version))
10010 (sha256
10011 (base32
10012 "0r1hfm3pc7c71irzmxmdwc27ns9hkymz4vhb4pqbli4xn37q7cg8"))))
10013 (properties
10014 `((upstream-name . "circRNAprofiler")))
10015 (build-system r-build-system)
10016 (propagated-inputs
10017 `(("r-annotationhub" ,r-annotationhub)
10018 ("r-biostrings" ,r-biostrings)
10019 ("r-bsgenome" ,r-bsgenome)
10020 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
10021 ("r-deseq2" ,r-deseq2)
10022 ("r-dplyr" ,r-dplyr)
10023 ("r-edger" ,r-edger)
10024 ("r-genomeinfodb" ,r-genomeinfodb)
10025 ("r-genomicranges" ,r-genomicranges)
10026 ("r-ggplot2" ,r-ggplot2)
10027 ("r-gwascat" ,r-gwascat)
10028 ("r-iranges" ,r-iranges)
10029 ("r-magrittr" ,r-magrittr)
10030 ("r-r-utils" ,r-r-utils)
10031 ("r-readr" ,r-readr)
10032 ("r-reshape2" ,r-reshape2)
10033 ("r-rlang" ,r-rlang)
10034 ("r-rtracklayer" ,r-rtracklayer)
10035 ("r-s4vectors" ,r-s4vectors)
10036 ("r-seqinr" ,r-seqinr)
10037 ("r-stringi" ,r-stringi)
10038 ("r-stringr" ,r-stringr)
10039 ("r-universalmotif" ,r-universalmotif)))
10040 (native-inputs
10041 `(("r-knitr" ,r-knitr)))
10042 (home-page
10043 "https://github.com/Aufiero/circRNAprofiler")
10044 (synopsis
10045 "Computational framework for the downstream analysis of circular RNA's")
10046 (description
10047 "@code{r-circrnaprofiler} is a computational framework for a comprehensive
10048 in silico analysis of @dfn{circular RNA} (circRNAs). This computational
10049 framework allows combining and analyzing circRNAs previously detected by
10050 multiple publicly available annotation-based circRNA detection tools. It
10051 covers different aspects of circRNAs analysis from differential expression
10052 analysis, evolutionary conservation, biogenesis to functional analysis.")
10053 (license license:gpl3)))
10054
10055 (define-public r-cistopic
10056 (let ((commit "29abd8df9afb60ff27ac3f0a590930debe926950")
10057 (revision "0"))
10058 (package
10059 (name "r-cistopic")
10060 (version (git-version "0.2.1" revision commit))
10061 (source
10062 (origin
10063 (method git-fetch)
10064 (uri (git-reference
10065 (url "https://github.com/aertslab/cisTopic")
10066 (commit commit)))
10067 (file-name (git-file-name name version))
10068 (sha256
10069 (base32
10070 "0s8irpsv5d2zcv4ihanvsf1vrpignzliscxnvs4519af3jmx78h8"))))
10071 (build-system r-build-system)
10072 (propagated-inputs
10073 `(("r-aucell" ,r-aucell)
10074 ("r-data-table" ,r-data-table)
10075 ("r-dplyr" ,r-dplyr)
10076 ("r-dosnow" ,r-dosnow)
10077 ("r-dt" ,r-dt)
10078 ("r-feather" ,r-feather)
10079 ("r-fitdistrplus" ,r-fitdistrplus)
10080 ("r-genomicranges" ,r-genomicranges)
10081 ("r-ggplot2" ,r-ggplot2)
10082 ("r-lda" ,r-lda)
10083 ("r-matrix" ,r-matrix)
10084 ("r-plyr" ,r-plyr)
10085 ("r-rcistarget" ,r-rcistarget)
10086 ("r-rtracklayer" ,r-rtracklayer)
10087 ("r-s4vectors" ,r-s4vectors)))
10088 (home-page "https://github.com/aertslab/cisTopic")
10089 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
10090 (description
10091 "The sparse nature of single cell epigenomics data can be overruled using
10092 probabilistic modelling methods such as @dfn{Latent Dirichlet
10093 Allocation} (LDA). This package allows the probabilistic modelling of
10094 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
10095 includes functionalities to identify cell states based on the contribution of
10096 cisTopics and explore the nature and regulatory proteins driving them.")
10097 (license license:gpl3))))
10098
10099 (define-public r-genie3
10100 (package
10101 (name "r-genie3")
10102 (version "1.12.0")
10103 (source
10104 (origin
10105 (method url-fetch)
10106 (uri (bioconductor-uri "GENIE3" version))
10107 (sha256
10108 (base32
10109 "1z7qkv0cgdx2plhc7xdz6s7vwdjhzcdadi35wg3fl6xpids5njf5"))))
10110 (properties `((upstream-name . "GENIE3")))
10111 (build-system r-build-system)
10112 (propagated-inputs `(("r-reshape2" ,r-reshape2)))
10113 (native-inputs
10114 `(("r-knitr" ,r-knitr)))
10115 (home-page "https://bioconductor.org/packages/GENIE3")
10116 (synopsis "Gene network inference with ensemble of trees")
10117 (description
10118 "This package implements the GENIE3 algorithm for inferring gene
10119 regulatory networks from expression data.")
10120 (license license:gpl2+)))
10121
10122 (define-public r-roc
10123 (package
10124 (name "r-roc")
10125 (version "1.66.0")
10126 (source
10127 (origin
10128 (method url-fetch)
10129 (uri (bioconductor-uri "ROC" version))
10130 (sha256
10131 (base32
10132 "02b9n42z3kjrfxpdf3glqvimd79nhnycq00mb09fzhkpp5zl43c9"))))
10133 (properties `((upstream-name . "ROC")))
10134 (build-system r-build-system)
10135 (propagated-inputs
10136 `(("r-knitr" ,r-knitr)))
10137 (home-page "https://www.bioconductor.org/packages/ROC/")
10138 (synopsis "Utilities for ROC curves")
10139 (description
10140 "This package provides utilities for @dfn{Receiver Operating
10141 Characteristic} (ROC) curves, with a focus on micro arrays.")
10142 (license license:artistic2.0)))
10143
10144 (define-public r-illuminahumanmethylation450kanno-ilmn12-hg19
10145 (package
10146 (name "r-illuminahumanmethylation450kanno-ilmn12-hg19")
10147 (version "0.6.0")
10148 (source
10149 (origin
10150 (method url-fetch)
10151 (uri (bioconductor-uri
10152 "IlluminaHumanMethylation450kanno.ilmn12.hg19"
10153 version 'annotation))
10154 (sha256
10155 (base32
10156 "059vlxsx3p3fcnywwirahsc6mlk813zpqnbv0jsrag6x5bb8z6r4"))))
10157 (properties
10158 `((upstream-name
10159 . "IlluminaHumanMethylation450kanno.ilmn12.hg19")))
10160 (build-system r-build-system)
10161 (propagated-inputs `(("r-minfi" ,r-minfi)))
10162 (home-page
10163 "https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19/")
10164 (synopsis "Annotation for Illumina's 450k methylation arrays")
10165 (description
10166 "This package provides manifests and annotation for Illumina's 450k array
10167 data.")
10168 (license license:artistic2.0)))
10169
10170 (define-public r-watermelon
10171 (package
10172 (name "r-watermelon")
10173 (version "1.34.0")
10174 (source
10175 (origin
10176 (method url-fetch)
10177 (uri (bioconductor-uri "wateRmelon" version))
10178 (sha256
10179 (base32
10180 "1sc2nxg9bafpvlwqhky2p5b6fkimkk9v3xcab9kvwnj6szrb6p3f"))))
10181 (properties `((upstream-name . "wateRmelon")))
10182 (build-system r-build-system)
10183 (propagated-inputs
10184 `(("r-biobase" ,r-biobase)
10185 ("r-illuminahumanmethylation450kanno-ilmn12-hg19"
10186 ,r-illuminahumanmethylation450kanno-ilmn12-hg19)
10187 ("r-illuminaio" ,r-illuminaio)
10188 ("r-limma" ,r-limma)
10189 ("r-lumi" ,r-lumi)
10190 ("r-matrixstats" ,r-matrixstats)
10191 ("r-methylumi" ,r-methylumi)
10192 ("r-roc" ,r-roc)))
10193 (home-page "https://bioconductor.org/packages/wateRmelon/")
10194 (synopsis "Illumina 450 methylation array normalization and metrics")
10195 (description
10196 "The standard index of DNA methylation (beta) is computed from methylated
10197 and unmethylated signal intensities. Betas calculated from raw signal
10198 intensities perform well, but using 11 methylomic datasets we demonstrate that
10199 quantile normalization methods produce marked improvement. The commonly used
10200 procedure of normalizing betas is inferior to the separate normalization of M
10201 and U, and it is also advantageous to normalize Type I and Type II assays
10202 separately. This package provides 15 flavours of betas and three performance
10203 metrics, with methods for objects produced by the @code{methylumi} and
10204 @code{minfi} packages.")
10205 (license license:gpl3)))
10206
10207 (define-public r-gdsfmt
10208 (package
10209 (name "r-gdsfmt")
10210 (version "1.26.1")
10211 (source
10212 (origin
10213 (method url-fetch)
10214 (uri (bioconductor-uri "gdsfmt" version))
10215 (sha256
10216 (base32
10217 "0f5vn8h5fzzazcv92sgrf85hc4xkkizk2wwml9mzjd8ya2fkwg8n"))
10218 (modules '((guix build utils)))
10219 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
10220 ;; them and link with system libraries instead.
10221 (snippet
10222 '(begin
10223 (for-each delete-file-recursively
10224 '("src/LZ4"
10225 "src/XZ"
10226 "src/ZLIB"))
10227 (substitute* "src/Makevars"
10228 (("all: \\$\\(SHLIB\\)") "all:")
10229 (("\\$\\(SHLIB\\): liblzma.a") "")
10230 (("(ZLIB|LZ4)/.*") "")
10231 (("CoreArray/dVLIntGDS.cpp.*")
10232 "CoreArray/dVLIntGDS.cpp")
10233 (("CoreArray/dVLIntGDS.o.*")
10234 "CoreArray/dVLIntGDS.o")
10235 (("PKG_LIBS = ./liblzma.a")
10236 "PKG_LIBS = -llz4"))
10237 (substitute* "src/CoreArray/dStream.h"
10238 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
10239 (string-append "include <" header ">")))
10240 #t))))
10241 (properties `((upstream-name . "gdsfmt")))
10242 (build-system r-build-system)
10243 (inputs
10244 `(("lz4" ,lz4)
10245 ("xz" ,xz)
10246 ("zlib" ,zlib)))
10247 (native-inputs
10248 `(("r-knitr" ,r-knitr)))
10249 (home-page "http://corearray.sourceforge.net/")
10250 (synopsis
10251 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
10252 (description
10253 "This package provides a high-level R interface to CoreArray @dfn{Genomic
10254 Data Structure} (GDS) data files, which are portable across platforms with
10255 hierarchical structure to store multiple scalable array-oriented data sets
10256 with metadata information. It is suited for large-scale datasets, especially
10257 for data which are much larger than the available random-access memory. The
10258 @code{gdsfmt} package offers efficient operations specifically designed for
10259 integers of less than 8 bits, since a diploid genotype, like
10260 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
10261 byte. Data compression and decompression are available with relatively
10262 efficient random access. It is also allowed to read a GDS file in parallel
10263 with multiple R processes supported by the package @code{parallel}.")
10264 (license license:lgpl3)))
10265
10266 (define-public r-bigmelon
10267 (package
10268 (name "r-bigmelon")
10269 (version "1.16.0")
10270 (source
10271 (origin
10272 (method url-fetch)
10273 (uri (bioconductor-uri "bigmelon" version))
10274 (sha256
10275 (base32
10276 "0hj5njwx7n681vigkq4560f9dm7mdjgvcwbgp5nbdn1fb2z24bk7"))))
10277 (properties `((upstream-name . "bigmelon")))
10278 (build-system r-build-system)
10279 (propagated-inputs
10280 `(("r-biobase" ,r-biobase)
10281 ("r-biocgenerics" ,r-biocgenerics)
10282 ("r-gdsfmt" ,r-gdsfmt)
10283 ("r-geoquery" ,r-geoquery)
10284 ("r-methylumi" ,r-methylumi)
10285 ("r-minfi" ,r-minfi)
10286 ("r-watermelon" ,r-watermelon)))
10287 (home-page "https://bioconductor.org/packages/bigmelon/")
10288 (synopsis "Illumina methylation array analysis for large experiments")
10289 (description
10290 "This package provides methods for working with Illumina arrays using the
10291 @code{gdsfmt} package.")
10292 (license license:gpl3)))
10293
10294 (define-public r-seqbias
10295 (package
10296 (name "r-seqbias")
10297 (version "1.38.0")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (bioconductor-uri "seqbias" version))
10302 (sha256
10303 (base32
10304 "1m634sidmk6c603k2gflyiddkns9vr6ij591nmab523xk5r2f4b2"))))
10305 (properties `((upstream-name . "seqbias")))
10306 (build-system r-build-system)
10307 (propagated-inputs
10308 `(("r-biostrings" ,r-biostrings)
10309 ("r-genomicranges" ,r-genomicranges)
10310 ("r-rhtslib" ,r-rhtslib)))
10311 (home-page "https://bioconductor.org/packages/seqbias/")
10312 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
10313 (description
10314 "This package implements a model of per-position sequencing bias in
10315 high-throughput sequencing data using a simple Bayesian network, the structure
10316 and parameters of which are trained on a set of aligned reads and a reference
10317 genome sequence.")
10318 (license license:lgpl3)))
10319
10320 (define-public r-snplocs-hsapiens-dbsnp144-grch37
10321 (package
10322 (name "r-snplocs-hsapiens-dbsnp144-grch37")
10323 (version "0.99.20")
10324 (source (origin
10325 (method url-fetch)
10326 (uri (bioconductor-uri "SNPlocs.Hsapiens.dbSNP144.GRCh37"
10327 version 'annotation))
10328 (sha256
10329 (base32
10330 "1z8kx43ki1jvj7ms7pcybakcdimfwr6zpjvspkjmma97bdz093iz"))))
10331 (build-system r-build-system)
10332 ;; As this package provides little more than a very large data file it
10333 ;; doesn't make sense to build substitutes.
10334 (arguments `(#:substitutable? #f))
10335 (propagated-inputs
10336 `(("r-biocgenerics" ,r-biocgenerics)
10337 ("r-s4vectors" ,r-s4vectors)
10338 ("r-iranges" ,r-iranges)
10339 ("r-genomeinfodb" ,r-genomeinfodb)
10340 ("r-genomicranges" ,r-genomicranges)
10341 ("r-bsgenome" ,r-bsgenome)
10342 ("r-biostrings" ,r-biostrings)))
10343 (home-page
10344 "https://bioconductor.org/packages/SNPlocs.Hsapiens.dbSNP144.GRCh37/")
10345 (synopsis "SNP locations for Homo sapiens (dbSNP Build 144)")
10346 (description "This package provides SNP locations and alleles for Homo
10347 sapiens extracted from NCBI dbSNP Build 144. The source data files used for
10348 this package were created by NCBI on May 29-30, 2015, and contain SNPs mapped
10349 to reference genome GRCh37.p13. Note that the GRCh37.p13 genome is a
10350 patched version of GRCh37. However the patch doesn't alter chromosomes 1-22,
10351 X, Y, MT. GRCh37 itself is the same as the hg19 genome from UCSC *except* for
10352 the mitochondrion chromosome. Therefore, the SNPs in this package can be
10353 injected in @code{BSgenome.Hsapiens.UCSC.hg19} and they will land at the
10354 correct position but this injection will exclude chrM (i.e. nothing will be
10355 injected in that sequence).")
10356 (license license:artistic2.0)))
10357
10358 (define-public r-reqon
10359 (package
10360 (name "r-reqon")
10361 (version "1.36.0")
10362 (source
10363 (origin
10364 (method url-fetch)
10365 (uri (bioconductor-uri "ReQON" version))
10366 (sha256
10367 (base32
10368 "1yz0r0rrk4n6dnqbdq41lvs5z8l6vkx729m0a7f29svw4dbc6mdq"))))
10369 (properties `((upstream-name . "ReQON")))
10370 (build-system r-build-system)
10371 (propagated-inputs
10372 `(("r-rjava" ,r-rjava)
10373 ("r-rsamtools" ,r-rsamtools)
10374 ("r-seqbias" ,r-seqbias)))
10375 (home-page "https://bioconductor.org/packages/ReQON/")
10376 (synopsis "Recalibrating quality of nucleotides")
10377 (description
10378 "This package provides an implementation of an algorithm for
10379 recalibrating the base quality scores for aligned sequencing data in BAM
10380 format.")
10381 (license license:gpl2)))
10382
10383 (define-public r-wavcluster
10384 (package
10385 (name "r-wavcluster")
10386 (version "2.24.0")
10387 (source
10388 (origin
10389 (method url-fetch)
10390 (uri (bioconductor-uri "wavClusteR" version))
10391 (sha256
10392 (base32
10393 "18cg0jbr3rjyx31wwyag1n5gams55pbd2rvb99i3g80q9hvswawi"))))
10394 (properties `((upstream-name . "wavClusteR")))
10395 (build-system r-build-system)
10396 (propagated-inputs
10397 `(("r-biocgenerics" ,r-biocgenerics)
10398 ("r-biostrings" ,r-biostrings)
10399 ("r-foreach" ,r-foreach)
10400 ("r-genomicfeatures" ,r-genomicfeatures)
10401 ("r-genomicranges" ,r-genomicranges)
10402 ("r-ggplot2" ,r-ggplot2)
10403 ("r-hmisc" ,r-hmisc)
10404 ("r-iranges" ,r-iranges)
10405 ("r-mclust" ,r-mclust)
10406 ("r-rsamtools" ,r-rsamtools)
10407 ("r-rtracklayer" ,r-rtracklayer)
10408 ("r-s4vectors" ,r-s4vectors)
10409 ("r-seqinr" ,r-seqinr)
10410 ("r-stringr" ,r-stringr)))
10411 (native-inputs
10412 `(("r-knitr" ,r-knitr)))
10413 (home-page "https://bioconductor.org/packages/wavClusteR/")
10414 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
10415 (description
10416 "This package provides an integrated pipeline for the analysis of
10417 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
10418 sequencing errors, SNPs and additional non-experimental sources by a non-
10419 parametric mixture model. The protein binding sites (clusters) are then
10420 resolved at high resolution and cluster statistics are estimated using a
10421 rigorous Bayesian framework. Post-processing of the results, data export for
10422 UCSC genome browser visualization and motif search analysis are provided. In
10423 addition, the package integrates RNA-Seq data to estimate the False
10424 Discovery Rate of cluster detection. Key functions support parallel multicore
10425 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
10426 be applied to the analysis of other NGS data obtained from experimental
10427 procedures that induce nucleotide substitutions (e.g. BisSeq).")
10428 (license license:gpl2)))
10429
10430 (define-public r-timeseriesexperiment
10431 (package
10432 (name "r-timeseriesexperiment")
10433 (version "1.8.0")
10434 (source
10435 (origin
10436 (method url-fetch)
10437 (uri (bioconductor-uri "TimeSeriesExperiment" version))
10438 (sha256
10439 (base32
10440 "1jx0rk660mfzk7rfhamnp0disx3bv456cqi9hyaz2wcbcdrlvcjn"))))
10441 (properties
10442 `((upstream-name . "TimeSeriesExperiment")))
10443 (build-system r-build-system)
10444 (propagated-inputs
10445 `(("r-deseq2" ,r-deseq2)
10446 ("r-dplyr" ,r-dplyr)
10447 ("r-dynamictreecut" ,r-dynamictreecut)
10448 ("r-edger" ,r-edger)
10449 ("r-ggplot2" ,r-ggplot2)
10450 ("r-hmisc" ,r-hmisc)
10451 ("r-limma" ,r-limma)
10452 ("r-magrittr" ,r-magrittr)
10453 ("r-proxy" ,r-proxy)
10454 ("r-s4vectors" ,r-s4vectors)
10455 ("r-summarizedexperiment" ,r-summarizedexperiment)
10456 ("r-tibble" ,r-tibble)
10457 ("r-tidyr" ,r-tidyr)
10458 ("r-vegan" ,r-vegan)
10459 ("r-viridis" ,r-viridis)))
10460 (native-inputs
10461 `(("r-knitr" ,r-knitr)))
10462 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
10463 (synopsis "Analysis for short time-series data")
10464 (description
10465 "This package is a visualization and analysis toolbox for short time
10466 course data which includes dimensionality reduction, clustering, two-sample
10467 differential expression testing and gene ranking techniques. The package also
10468 provides methods for retrieving enriched pathways.")
10469 (license license:lgpl3+)))
10470
10471 (define-public r-variantfiltering
10472 (package
10473 (name "r-variantfiltering")
10474 (version "1.26.0")
10475 (source
10476 (origin
10477 (method url-fetch)
10478 (uri (bioconductor-uri "VariantFiltering" version))
10479 (sha256
10480 (base32
10481 "0zy53knvyk8wy3hmnsxc0w9qkhvx6xhviskvx7rwmrsi7pz531l5"))))
10482 (properties
10483 `((upstream-name . "VariantFiltering")))
10484 (build-system r-build-system)
10485 (propagated-inputs
10486 `(("r-annotationdbi" ,r-annotationdbi)
10487 ("r-biobase" ,r-biobase)
10488 ("r-biocgenerics" ,r-biocgenerics)
10489 ("r-biocparallel" ,r-biocparallel)
10490 ("r-biostrings" ,r-biostrings)
10491 ("r-bsgenome" ,r-bsgenome)
10492 ("r-dt" ,r-dt)
10493 ("r-genomeinfodb" ,r-genomeinfodb)
10494 ("r-genomicfeatures" ,r-genomicfeatures)
10495 ("r-genomicranges" ,r-genomicranges)
10496 ("r-genomicscores" ,r-genomicscores)
10497 ("r-graph" ,r-graph)
10498 ("r-gviz" ,r-gviz)
10499 ("r-iranges" ,r-iranges)
10500 ("r-rbgl" ,r-rbgl)
10501 ("r-rsamtools" ,r-rsamtools)
10502 ("r-s4vectors" ,r-s4vectors)
10503 ("r-shiny" ,r-shiny)
10504 ("r-shinyjs" ,r-shinyjs)
10505 ("r-shinythemes" ,r-shinythemes)
10506 ("r-shinytree" ,r-shinytree)
10507 ("r-summarizedexperiment" ,r-summarizedexperiment)
10508 ("r-variantannotation" ,r-variantannotation)
10509 ("r-xvector" ,r-xvector)))
10510 (home-page "https://github.com/rcastelo/VariantFiltering")
10511 (synopsis "Filtering of coding and non-coding genetic variants")
10512 (description
10513 "Filter genetic variants using different criteria such as inheritance
10514 model, amino acid change consequence, minor allele frequencies across human
10515 populations, splice site strength, conservation, etc.")
10516 (license license:artistic2.0)))
10517
10518 (define-public r-genomegraphs
10519 (package
10520 (name "r-genomegraphs")
10521 (version "1.46.0")
10522 (source
10523 (origin
10524 (method url-fetch)
10525 (uri (bioconductor-uri "GenomeGraphs" version))
10526 (sha256
10527 (base32
10528 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
10529 (properties `((upstream-name . "GenomeGraphs")))
10530 (build-system r-build-system)
10531 (propagated-inputs
10532 `(("r-biomart" ,r-biomart)))
10533 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
10534 (synopsis "Plotting genomic information from Ensembl")
10535 (description
10536 "Genomic data analyses requires integrated visualization of known genomic
10537 information and new experimental data. GenomeGraphs uses the biomaRt package
10538 to perform live annotation queries to Ensembl and translates this to e.g.
10539 gene/transcript structures in viewports of the grid graphics package. This
10540 results in genomic information plotted together with your data. Another
10541 strength of GenomeGraphs is to plot different data types such as array CGH,
10542 gene expression, sequencing and other data, together in one plot using the
10543 same genome coordinate system.")
10544 (license license:artistic2.0)))
10545
10546 (define-public r-wavetiling
10547 (package
10548 (name "r-wavetiling")
10549 (version "1.28.0")
10550 (source
10551 (origin
10552 (method url-fetch)
10553 (uri (bioconductor-uri "waveTiling" version))
10554 (sha256
10555 (base32
10556 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
10557 (properties `((upstream-name . "waveTiling")))
10558 (build-system r-build-system)
10559 (propagated-inputs
10560 `(("r-affy" ,r-affy)
10561 ("r-biobase" ,r-biobase)
10562 ("r-biostrings" ,r-biostrings)
10563 ("r-genomegraphs" ,r-genomegraphs)
10564 ("r-genomicranges" ,r-genomicranges)
10565 ("r-iranges" ,r-iranges)
10566 ("r-oligo" ,r-oligo)
10567 ("r-oligoclasses" ,r-oligoclasses)
10568 ("r-preprocesscore" ,r-preprocesscore)
10569 ("r-waveslim" ,r-waveslim)))
10570 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
10571 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
10572 (description
10573 "This package is designed to conduct transcriptome analysis for tiling
10574 arrays based on fast wavelet-based functional models.")
10575 (license license:gpl2+)))
10576
10577 (define-public r-variancepartition
10578 (package
10579 (name "r-variancepartition")
10580 (version "1.20.0")
10581 (source
10582 (origin
10583 (method url-fetch)
10584 (uri (bioconductor-uri "variancePartition" version))
10585 (sha256
10586 (base32
10587 "0fisaqd5v8xy9rz9l1zs62k1n2h4k1irzgwj46ci947l52x1qhah"))))
10588 (properties
10589 `((upstream-name . "variancePartition")))
10590 (build-system r-build-system)
10591 (propagated-inputs
10592 `(("r-biobase" ,r-biobase)
10593 ("r-biocparallel" ,r-biocparallel)
10594 ("r-colorramps" ,r-colorramps)
10595 ("r-doparallel" ,r-doparallel)
10596 ("r-foreach" ,r-foreach)
10597 ("r-ggplot2" ,r-ggplot2)
10598 ("r-gplots" ,r-gplots)
10599 ("r-iterators" ,r-iterators)
10600 ("r-limma" ,r-limma)
10601 ("r-lme4" ,r-lme4)
10602 ("r-lmertest" ,r-lmertest)
10603 ("r-mass" ,r-mass)
10604 ("r-pbkrtest" ,r-pbkrtest)
10605 ("r-progress" ,r-progress)
10606 ("r-reshape2" ,r-reshape2)
10607 ("r-scales" ,r-scales)))
10608 (native-inputs
10609 `(("r-knitr" ,r-knitr)))
10610 (home-page "https://bioconductor.org/packages/variancePartition/")
10611 (synopsis "Analyze variation in gene expression experiments")
10612 (description
10613 "This is a package providing tools to quantify and interpret multiple
10614 sources of biological and technical variation in gene expression experiments.
10615 It uses a linear mixed model to quantify variation in gene expression
10616 attributable to individual, tissue, time point, or technical variables. The
10617 package includes dream differential expression analysis for repeated
10618 measures.")
10619 (license license:gpl2+)))
10620
10621 (define-public r-htqpcr
10622 (package
10623 (name "r-htqpcr")
10624 (version "1.44.0")
10625 (source
10626 (origin
10627 (method url-fetch)
10628 (uri (bioconductor-uri "HTqPCR" version))
10629 (sha256
10630 (base32
10631 "1fzjx6psr41naq9ycpnv3lxlgkiyrpn7r2wl1i4gz45f3lax0yji"))))
10632 (properties `((upstream-name . "HTqPCR")))
10633 (build-system r-build-system)
10634 (propagated-inputs
10635 `(("r-affy" ,r-affy)
10636 ("r-biobase" ,r-biobase)
10637 ("r-gplots" ,r-gplots)
10638 ("r-limma" ,r-limma)
10639 ("r-rcolorbrewer" ,r-rcolorbrewer)))
10640 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
10641 "groups/bertone/software/HTqPCR.pdf"))
10642 (synopsis "Automated analysis of high-throughput qPCR data")
10643 (description
10644 "Analysis of Ct values from high throughput quantitative real-time
10645 PCR (qPCR) assays across multiple conditions or replicates. The input data
10646 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
10647 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
10648 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
10649 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
10650 loading, quality assessment, normalization, visualization and parametric or
10651 non-parametric testing for statistical significance in Ct values between
10652 features (e.g. genes, microRNAs).")
10653 (license license:artistic2.0)))
10654
10655 (define-public r-unifiedwmwqpcr
10656 (package
10657 (name "r-unifiedwmwqpcr")
10658 (version "1.26.0")
10659 (source
10660 (origin
10661 (method url-fetch)
10662 (uri (bioconductor-uri "unifiedWMWqPCR" version))
10663 (sha256
10664 (base32
10665 "1ad5a7gy43l8x1rf5lgqiy2bv6fgah7cbnp4lrqwshphlnr30ndv"))))
10666 (properties
10667 `((upstream-name . "unifiedWMWqPCR")))
10668 (build-system r-build-system)
10669 (propagated-inputs
10670 `(("r-biocgenerics" ,r-biocgenerics)
10671 ("r-htqpcr" ,r-htqpcr)))
10672 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
10673 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
10674 (description
10675 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
10676 data. This modified test allows for testing differential expression in qPCR
10677 data.")
10678 (license license:gpl2+)))
10679
10680 (define-public r-universalmotif
10681 (package
10682 (name "r-universalmotif")
10683 (version "1.8.5")
10684 (source
10685 (origin
10686 (method url-fetch)
10687 (uri (bioconductor-uri "universalmotif" version))
10688 (sha256
10689 (base32
10690 "07862bs771xldmdnq0zr8926dr299ach8nrgci14p5bbrc88l3ly"))))
10691 (properties
10692 `((upstream-name . "universalmotif")))
10693 (build-system r-build-system)
10694 (arguments
10695 `(#:phases
10696 (modify-phases %standard-phases
10697 (add-after 'unpack 'fix-reference-to-strip
10698 (lambda _
10699 (substitute* "src/Makevars"
10700 (("/usr/bin/strip") (which "strip"))))))))
10701 (propagated-inputs
10702 `(("r-biocgenerics" ,r-biocgenerics)
10703 ("r-biostrings" ,r-biostrings)
10704 ("r-ggplot2" ,r-ggplot2)
10705 ("r-ggseqlogo" ,r-ggseqlogo)
10706 ("r-iranges" ,r-iranges)
10707 ("r-mass" ,r-mass)
10708 ("r-rcpp" ,r-rcpp)
10709 ("r-rcppthread" ,r-rcppthread)
10710 ("r-rdpack" ,r-rdpack)
10711 ("r-rlang" ,r-rlang)
10712 ("r-s4vectors" ,r-s4vectors)
10713 ("r-yaml" ,r-yaml)))
10714 (native-inputs
10715 `(("r-knitr" ,r-knitr)))
10716 (home-page
10717 "https://bioconductor.org/packages/universalmotif/")
10718 (synopsis
10719 "Specific structures importer, modifier, and exporter for R")
10720 (description
10721 "This package allows importing most common @dfn{specific structure}
10722 (motif) types into R for use by functions provided by other Bioconductor
10723 motif-related packages. Motifs can be exported into most major motif formats
10724 from various classes as defined by other Bioconductor packages. A suite of
10725 motif and sequence manipulation and analysis functions are included, including
10726 enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
10727 motifs, and others.")
10728 (license license:gpl3)))
10729
10730 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
10731 ;; it here.
10732 (define-public r-activedriverwgs
10733 (package
10734 (name "r-activedriverwgs")
10735 (version "1.1.1")
10736 (source
10737 (origin
10738 (method url-fetch)
10739 (uri (cran-uri "ActiveDriverWGS" version))
10740 (sha256
10741 (base32
10742 "06mvakdc8d2pn91p0sr4ixc561s4ia5h1cvd1p7pqd6s50dy4say"))))
10743 (properties
10744 `((upstream-name . "ActiveDriverWGS")))
10745 (build-system r-build-system)
10746 (propagated-inputs
10747 `(("r-biostrings" ,r-biostrings)
10748 ("r-bsgenome" ,r-bsgenome)
10749 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
10750 ("r-genomeinfodb" ,r-genomeinfodb)
10751 ("r-genomicranges" ,r-genomicranges)
10752 ("r-iranges" ,r-iranges)
10753 ("r-s4vectors" ,r-s4vectors)))
10754 (native-inputs
10755 `(("r-knitr" ,r-knitr)))
10756 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
10757 (synopsis "Driver discovery tool for cancer whole genomes")
10758 (description
10759 "This package provides a method for finding an enrichment of cancer
10760 simple somatic mutations (SNVs and Indels) in functional elements across the
10761 human genome. ActiveDriverWGS detects coding and noncoding driver elements
10762 using whole genome sequencing data.")
10763 (license license:gpl3)))
10764
10765 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
10766 ;; it here.
10767 (define-public r-activepathways
10768 (package
10769 (name "r-activepathways")
10770 (version "1.0.2")
10771 (source
10772 (origin
10773 (method url-fetch)
10774 (uri (cran-uri "ActivePathways" version))
10775 (sha256
10776 (base32
10777 "1hxy760x141ykrpqdbfldq4ggj1svj3lsrpwi4rb2x7r4lna937l"))))
10778 (properties
10779 `((upstream-name . "ActivePathways")))
10780 (build-system r-build-system)
10781 (propagated-inputs
10782 `(("r-data-table" ,r-data-table)
10783 ("r-ggplot2" ,r-ggplot2)))
10784 (native-inputs
10785 `(("r-knitr" ,r-knitr)))
10786 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
10787 (synopsis "Multivariate pathway enrichment analysis")
10788 (description
10789 "This package represents an integrative method of analyzing multi omics
10790 data that conducts enrichment analysis of annotated gene sets. ActivePathways
10791 uses a statistical data fusion approach, rationalizes contributing evidence
10792 and highlights associated genes, improving systems-level understanding of
10793 cellular organization in health and disease.")
10794 (license license:gpl3)))
10795
10796 (define-public r-bgmix
10797 (package
10798 (name "r-bgmix")
10799 (version "1.50.0")
10800 (source
10801 (origin
10802 (method url-fetch)
10803 (uri (bioconductor-uri "BGmix" version))
10804 (sha256
10805 (base32
10806 "0r9gjqajarg5mivxhqdzn8m8hmfarmzbplp3zqyyznccri03pv50"))))
10807 (properties `((upstream-name . "BGmix")))
10808 (build-system r-build-system)
10809 (propagated-inputs
10810 `(("r-kernsmooth" ,r-kernsmooth)))
10811 (home-page "https://bioconductor.org/packages/BGmix/")
10812 (synopsis "Bayesian models for differential gene expression")
10813 (description
10814 "This package provides fully Bayesian mixture models for differential
10815 gene expression.")
10816 (license license:gpl2)))
10817
10818 (define-public r-bgx
10819 (package
10820 (name "r-bgx")
10821 (version "1.56.0")
10822 (source
10823 (origin
10824 (method url-fetch)
10825 (uri (bioconductor-uri "bgx" version))
10826 (sha256
10827 (base32
10828 "0gm4wv9drqvg9r4f0id1ivrfgv0nvh0hb6hp63b3jd14092777im"))))
10829 (properties `((upstream-name . "bgx")))
10830 (build-system r-build-system)
10831 (propagated-inputs
10832 `(("r-affy" ,r-affy)
10833 ("r-biobase" ,r-biobase)
10834 ("r-gcrma" ,r-gcrma)
10835 ("r-rcpp" ,r-rcpp)))
10836 (home-page "https://bioconductor.org/packages/bgx/")
10837 (synopsis "Bayesian gene expression")
10838 (description
10839 "This package provides tools for Bayesian integrated analysis of
10840 Affymetrix GeneChips.")
10841 (license license:gpl2)))
10842
10843 (define-public r-bhc
10844 (package
10845 (name "r-bhc")
10846 (version "1.42.0")
10847 (source
10848 (origin
10849 (method url-fetch)
10850 (uri (bioconductor-uri "BHC" version))
10851 (sha256
10852 (base32
10853 "1n2rkbj8j10f38d40wvi6mwjxnrlfx71a48ab07bp2s0hwhxd7yn"))))
10854 (properties `((upstream-name . "BHC")))
10855 (build-system r-build-system)
10856 (home-page "https://bioconductor.org/packages/BHC/")
10857 (synopsis "Bayesian hierarchical clustering")
10858 (description
10859 "The method implemented in this package performs bottom-up hierarchical
10860 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
10861 in the data and Bayesian model selection to decide at each step which clusters
10862 to merge. This avoids several limitations of traditional methods, for example
10863 how many clusters there should be and how to choose a principled distance
10864 metric. This implementation accepts multinomial (i.e. discrete, with 2+
10865 categories) or time-series data. This version also includes a randomised
10866 algorithm which is more efficient for larger data sets.")
10867 (license license:gpl3)))
10868
10869 (define-public r-bicare
10870 (package
10871 (name "r-bicare")
10872 (version "1.48.0")
10873 (source
10874 (origin
10875 (method url-fetch)
10876 (uri (bioconductor-uri "BicARE" version))
10877 (sha256
10878 (base32
10879 "1np3967rjx54hbjsynvya75lcsqa6zic6frw5fjwqybwv2pzzw2k"))))
10880 (properties `((upstream-name . "BicARE")))
10881 (build-system r-build-system)
10882 (propagated-inputs
10883 `(("r-biobase" ,r-biobase)
10884 ("r-gseabase" ,r-gseabase)
10885 ("r-multtest" ,r-multtest)))
10886 (home-page "http://bioinfo.curie.fr")
10887 (synopsis "Biclustering analysis and results exploration")
10888 (description
10889 "This is a package for biclustering analysis and exploration of
10890 results.")
10891 (license license:gpl2)))
10892
10893 (define-public r-bifet
10894 (package
10895 (name "r-bifet")
10896 (version "1.10.0")
10897 (source
10898 (origin
10899 (method url-fetch)
10900 (uri (bioconductor-uri "BiFET" version))
10901 (sha256
10902 (base32
10903 "191m1xhsj4l64rrh67hqiz1rdkfhw0gfd5aymf3x0xm710l3rh4a"))))
10904 (properties `((upstream-name . "BiFET")))
10905 (build-system r-build-system)
10906 (propagated-inputs
10907 `(("r-genomicranges" ,r-genomicranges)
10908 ("r-poibin" ,r-poibin)))
10909 (native-inputs
10910 `(("r-knitr" ,r-knitr)))
10911 (home-page "https://bioconductor.org/packages/BiFET")
10912 (synopsis "Bias-free footprint enrichment test")
10913 (description
10914 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
10915 over-represented in target regions compared to background regions after
10916 correcting for the bias arising from the imbalance in read counts and GC
10917 contents between the target and background regions. For a given TF k, BiFET
10918 tests the null hypothesis that the target regions have the same probability of
10919 having footprints for the TF k as the background regions while correcting for
10920 the read count and GC content bias.")
10921 (license license:gpl3)))
10922
10923 (define-public r-rsbml
10924 (package
10925 (name "r-rsbml")
10926 (version "2.48.0")
10927 (source
10928 (origin
10929 (method url-fetch)
10930 (uri (bioconductor-uri "rsbml" version))
10931 (sha256
10932 (base32
10933 "0vrjfhwcpc699sq78pkm022fam3ahar8h3lx3fr879dd21k02g61"))))
10934 (properties `((upstream-name . "rsbml")))
10935 (build-system r-build-system)
10936 (inputs
10937 `(("libsbml" ,libsbml)
10938 ("zlib" ,zlib)))
10939 (propagated-inputs
10940 `(("r-biocgenerics" ,r-biocgenerics)
10941 ("r-graph" ,r-graph)))
10942 (native-inputs
10943 `(("pkg-config" ,pkg-config)))
10944 (home-page "http://www.sbml.org")
10945 (synopsis "R support for SBML")
10946 (description
10947 "This package provides an R interface to libsbml for SBML parsing,
10948 validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
10949 (license license:artistic2.0)))
10950
10951 (define-public r-hypergraph
10952 (package
10953 (name "r-hypergraph")
10954 (version "1.62.0")
10955 (source
10956 (origin
10957 (method url-fetch)
10958 (uri (bioconductor-uri "hypergraph" version))
10959 (sha256
10960 (base32
10961 "1p5mzr2aiqqc1j2inh45abjvqhid9jqv6wiym1xxnz16mpaa7q97"))))
10962 (properties `((upstream-name . "hypergraph")))
10963 (build-system r-build-system)
10964 (propagated-inputs
10965 `(("r-graph" ,r-graph)))
10966 (home-page "https://bioconductor.org/packages/hypergraph")
10967 (synopsis "Hypergraph data structures")
10968 (description
10969 "This package implements some simple capabilities for representing and
10970 manipulating hypergraphs.")
10971 (license license:artistic2.0)))
10972
10973 (define-public r-hyperdraw
10974 (package
10975 (name "r-hyperdraw")
10976 (version "1.42.0")
10977 (source
10978 (origin
10979 (method url-fetch)
10980 (uri (bioconductor-uri "hyperdraw" version))
10981 (sha256
10982 (base32
10983 "0z3a3lpz7s0fw023fxldkgxvl2dl1wn8agnyj09sky11ainxdayz"))))
10984 (properties `((upstream-name . "hyperdraw")))
10985 (build-system r-build-system)
10986 (inputs `(("graphviz" ,graphviz)))
10987 (propagated-inputs
10988 `(("r-graph" ,r-graph)
10989 ("r-hypergraph" ,r-hypergraph)
10990 ("r-rgraphviz" ,r-rgraphviz)))
10991 (home-page "https://bioconductor.org/packages/hyperdraw")
10992 (synopsis "Visualizing hypergraphs")
10993 (description
10994 "This package provides functions for visualizing hypergraphs.")
10995 (license license:gpl2+)))
10996
10997 (define-public r-biggr
10998 (package
10999 (name "r-biggr")
11000 (version "1.26.0")
11001 (source
11002 (origin
11003 (method url-fetch)
11004 (uri (bioconductor-uri "BiGGR" version))
11005 (sha256
11006 (base32
11007 "1hlsnss6071ck4ky1akxp1dnv3vmd8f85drdziqmm4nc2dfrr14y"))))
11008 (properties `((upstream-name . "BiGGR")))
11009 (build-system r-build-system)
11010 (propagated-inputs
11011 `(("r-hyperdraw" ,r-hyperdraw)
11012 ("r-hypergraph" ,r-hypergraph)
11013 ("r-lim" ,r-lim)
11014 ("r-limsolve" ,r-limsolve)
11015 ("r-rsbml" ,r-rsbml)
11016 ("r-stringr" ,r-stringr)))
11017 (home-page "https://bioconductor.org/packages/BiGGR/")
11018 (synopsis "Constraint based modeling using metabolic reconstruction databases")
11019 (description
11020 "This package provides an interface to simulate metabolic reconstruction
11021 from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
11022 reconstruction databases. The package facilitates @dfn{flux balance
11023 analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
11024 networks and estimated fluxes can be visualized with hypergraphs.")
11025 (license license:gpl3+)))
11026
11027 (define-public r-bigmemoryextras
11028 (package
11029 (name "r-bigmemoryextras")
11030 (version "1.38.0")
11031 (source
11032 (origin
11033 (method url-fetch)
11034 (uri (bioconductor-uri "bigmemoryExtras" version))
11035 (sha256
11036 (base32
11037 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
11038 (properties
11039 `((upstream-name . "bigmemoryExtras")))
11040 (build-system r-build-system)
11041 (propagated-inputs
11042 `(("r-bigmemory" ,r-bigmemory)))
11043 (native-inputs
11044 `(("r-knitr" ,r-knitr)))
11045 (home-page "https://github.com/phaverty/bigmemoryExtras")
11046 (synopsis "Extension of the bigmemory package")
11047 (description
11048 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
11049 safety and convenience features to the @code{filebacked.big.matrix} class from
11050 the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
11051 monitoring and gracefully restoring the connection to on-disk data and it also
11052 protects against accidental data modification with a file-system-based
11053 permissions system. Utilities are provided for using @code{BigMatrix}-derived
11054 classes as @code{assayData} matrices within the @code{Biobase} package's
11055 @code{eSet} family of classes. @code{BigMatrix} provides some optimizations
11056 related to attaching to, and indexing into, file-backed matrices with
11057 dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
11058 a file-backed matrix with factor properties.")
11059 (license license:artistic2.0)))
11060
11061 (define-public r-bigpint
11062 (package
11063 (name "r-bigpint")
11064 (version "1.6.0")
11065 (source
11066 (origin
11067 (method url-fetch)
11068 (uri (bioconductor-uri "bigPint" version))
11069 (sha256
11070 (base32
11071 "1axgapy4iyx059777m9faczwwj03h3i5dyrs0rlc84axzhzd2kis"))))
11072 (properties `((upstream-name . "bigPint")))
11073 (build-system r-build-system)
11074 (propagated-inputs
11075 `(("r-delayedarray" ,r-delayedarray)
11076 ("r-dplyr" ,r-dplyr)
11077 ("r-ggally" ,r-ggally)
11078 ("r-ggplot2" ,r-ggplot2)
11079 ("r-gridextra" ,r-gridextra)
11080 ("r-hexbin" ,r-hexbin)
11081 ("r-hmisc" ,r-hmisc)
11082 ("r-htmlwidgets" ,r-htmlwidgets)
11083 ("r-plotly" ,r-plotly)
11084 ("r-plyr" ,r-plyr)
11085 ("r-rcolorbrewer" ,r-rcolorbrewer)
11086 ("r-reshape" ,r-reshape)
11087 ("r-shiny" ,r-shiny)
11088 ("r-shinycssloaders" ,r-shinycssloaders)
11089 ("r-shinydashboard" ,r-shinydashboard)
11090 ("r-stringr" ,r-stringr)
11091 ("r-summarizedexperiment" ,r-summarizedexperiment)
11092 ("r-tidyr" ,r-tidyr)))
11093 (native-inputs
11094 `(("r-knitr" ,r-knitr)))
11095 (home-page "https://github.com/lindsayrutter/bigPint")
11096 (synopsis "Big multivariate data plotted interactively")
11097 (description
11098 "This package provides methods for visualizing large multivariate
11099 datasets using static and interactive scatterplot matrices, parallel
11100 coordinate plots, volcano plots, and litre plots. It includes examples for
11101 visualizing RNA-sequencing datasets and differentially expressed genes.")
11102 (license license:gpl3)))
11103
11104 (define-public r-chemminer
11105 (package
11106 (name "r-chemminer")
11107 (version "3.42.2")
11108 (source
11109 (origin
11110 (method url-fetch)
11111 (uri (bioconductor-uri "ChemmineR" version))
11112 (sha256
11113 (base32
11114 "10d8h6w24h4s7l02zzv6q46w3yiqsjizip7mf11cvkmd6p7qxfl9"))))
11115 (properties `((upstream-name . "ChemmineR")))
11116 (build-system r-build-system)
11117 (propagated-inputs
11118 `(("r-base64enc" ,r-base64enc)
11119 ("r-bh" ,r-bh)
11120 ("r-biocgenerics" ,r-biocgenerics)
11121 ("r-dbi" ,r-dbi)
11122 ("r-digest" ,r-digest)
11123 ("r-dt" ,r-dt)
11124 ("r-ggplot2" ,r-ggplot2)
11125 ("r-gridextra" ,r-gridextra)
11126 ("r-png" ,r-png)
11127 ("r-rcpp" ,r-rcpp)
11128 ("r-rcurl" ,r-rcurl)
11129 ("r-rjson" ,r-rjson)
11130 ("r-rsvg" ,r-rsvg)))
11131 (native-inputs
11132 `(("r-knitr" ,r-knitr)))
11133 (home-page "https://github.com/girke-lab/ChemmineR")
11134 (synopsis "Cheminformatics toolkit for R")
11135 (description
11136 "ChemmineR is a cheminformatics package for analyzing drug-like small
11137 molecule data in R. It contains functions for efficient processing of large
11138 numbers of molecules, physicochemical/structural property predictions,
11139 structural similarity searching, classification and clustering of compound
11140 libraries with a wide spectrum of algorithms. In addition, it offers
11141 visualization functions for compound clustering results and chemical
11142 structures.")
11143 (license license:artistic2.0)))
11144
11145 (define-public r-bioassayr
11146 (package
11147 (name "r-bioassayr")
11148 (version "1.28.3")
11149 (source
11150 (origin
11151 (method url-fetch)
11152 (uri (bioconductor-uri "bioassayR" version))
11153 (sha256
11154 (base32
11155 "03pdb76j7c28b1h1flb40ahq7i9iha22kblq6mkl3x4xmrdgaw5y"))))
11156 (properties `((upstream-name . "bioassayR")))
11157 (build-system r-build-system)
11158 (propagated-inputs
11159 `(("r-biocgenerics" ,r-biocgenerics)
11160 ("r-chemminer" ,r-chemminer)
11161 ("r-dbi" ,r-dbi)
11162 ("r-matrix" ,r-matrix)
11163 ("r-rjson" ,r-rjson)
11164 ("r-rsqlite" ,r-rsqlite)
11165 ("r-xml" ,r-xml)))
11166 (native-inputs
11167 `(("r-knitr" ,r-knitr)))
11168 (home-page "https://github.com/girke-lab/bioassayR")
11169 (synopsis "Cross-target analysis of small molecule bioactivity")
11170 (description
11171 "bioassayR is a computational tool that enables simultaneous analysis of
11172 thousands of bioassay experiments performed over a diverse set of compounds
11173 and biological targets. Unique features include support for large-scale
11174 cross-target analyses of both public and custom bioassays, generation of
11175 @dfn{high throughput screening fingerprints} (HTSFPs), and an optional
11176 preloaded database that provides access to a substantial portion of publicly
11177 available bioactivity data.")
11178 (license license:artistic2.0)))
11179
11180 (define-public r-biobroom
11181 (package
11182 (name "r-biobroom")
11183 (version "1.22.0")
11184 (source
11185 (origin
11186 (method url-fetch)
11187 (uri (bioconductor-uri "biobroom" version))
11188 (sha256
11189 (base32
11190 "07wzamwl07p20s932aym2jkf6c1zz7d9h7kyby5ka4pw4abynlrv"))))
11191 (properties `((upstream-name . "biobroom")))
11192 (build-system r-build-system)
11193 (propagated-inputs
11194 `(("r-biobase" ,r-biobase)
11195 ("r-broom" ,r-broom)
11196 ("r-dplyr" ,r-dplyr)
11197 ("r-tidyr" ,r-tidyr)))
11198 (native-inputs
11199 `(("r-knitr" ,r-knitr)))
11200 (home-page "https://github.com/StoreyLab/biobroom")
11201 (synopsis "Turn Bioconductor objects into tidy data frames")
11202 (description
11203 "This package contains methods for converting standard objects
11204 constructed by bioinformatics packages, especially those in Bioconductor, and
11205 converting them to @code{tidy} data. It thus serves as a complement to the
11206 @code{broom} package, and follows the same tidy, augment, glance division of
11207 tidying methods. Tidying data makes it easy to recombine, reshape and
11208 visualize bioinformatics analyses.")
11209 ;; Any version of the LGPL.
11210 (license license:lgpl3+)))
11211
11212 (define-public r-graphite
11213 (package
11214 (name "r-graphite")
11215 (version "1.36.0")
11216 (source
11217 (origin
11218 (method url-fetch)
11219 (uri (bioconductor-uri "graphite" version))
11220 (sha256
11221 (base32
11222 "1ihza8m397qfvr79fhghs2knmw862hwz2akysy39r8hndv6lc7wk"))))
11223 (properties `((upstream-name . "graphite")))
11224 (build-system r-build-system)
11225 (propagated-inputs
11226 `(("r-annotationdbi" ,r-annotationdbi)
11227 ("r-checkmate" ,r-checkmate)
11228 ("r-graph" ,r-graph)
11229 ("r-httr" ,r-httr)
11230 ("r-rappdirs" ,r-rappdirs)))
11231 (home-page "https://bioconductor.org/packages/graphite/")
11232 (synopsis "Networks from pathway databases")
11233 (description
11234 "Graphite provides networks derived from eight public pathway databases,
11235 and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
11236 symbols).")
11237 (license license:agpl3+)))
11238
11239 (define-public r-reactomepa
11240 (package
11241 (name "r-reactomepa")
11242 (version "1.34.0")
11243 (source
11244 (origin
11245 (method url-fetch)
11246 (uri (bioconductor-uri "ReactomePA" version))
11247 (sha256
11248 (base32
11249 "04b2ng9jp2bsfbg3wnbg6m6a5c3szcmbypk1lx34i63228g8z98m"))))
11250 (properties `((upstream-name . "ReactomePA")))
11251 (build-system r-build-system)
11252 (propagated-inputs
11253 `(("r-annotationdbi" ,r-annotationdbi)
11254 ("r-dose" ,r-dose)
11255 ("r-enrichplot" ,r-enrichplot)
11256 ("r-ggplot2" ,r-ggplot2)
11257 ("r-ggraph" ,r-ggraph)
11258 ("r-graphite" ,r-graphite)
11259 ("r-igraph" ,r-igraph)
11260 ("r-reactome-db" ,r-reactome-db)))
11261 (native-inputs
11262 `(("r-knitr" ,r-knitr)))
11263 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
11264 (synopsis "Reactome pathway analysis")
11265 (description
11266 "This package provides functions for pathway analysis based on the
11267 REACTOME pathway database. It implements enrichment analysis, gene set
11268 enrichment analysis and several functions for visualization.")
11269 (license license:gpl2)))
11270
11271 (define-public r-ebarrays
11272 (package
11273 (name "r-ebarrays")
11274 (version "2.54.0")
11275 (source
11276 (origin
11277 (method url-fetch)
11278 (uri (bioconductor-uri "EBarrays" version))
11279 (sha256
11280 (base32
11281 "1r2dl19my1hqkq01fqk48pk3agb98vgrplj56kb4srhz2xm0w9pd"))))
11282 (properties `((upstream-name . "EBarrays")))
11283 (build-system r-build-system)
11284 (propagated-inputs
11285 `(("r-biobase" ,r-biobase)
11286 ("r-cluster" ,r-cluster)
11287 ("r-lattice" ,r-lattice)))
11288 (home-page "https://bioconductor.org/packages/EBarrays/")
11289 (synopsis "Gene clustering and differential expression identification")
11290 (description
11291 "EBarrays provides tools for the analysis of replicated/unreplicated
11292 microarray data.")
11293 (license license:gpl2+)))
11294
11295 (define-public r-bioccasestudies
11296 (package
11297 (name "r-bioccasestudies")
11298 (version "1.52.0")
11299 (source
11300 (origin
11301 (method url-fetch)
11302 (uri (bioconductor-uri "BiocCaseStudies" version))
11303 (sha256
11304 (base32
11305 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
11306 (properties
11307 `((upstream-name . "BiocCaseStudies")))
11308 (build-system r-build-system)
11309 (propagated-inputs `(("r-biobase" ,r-biobase)))
11310 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
11311 (synopsis "Support for the case studies monograph")
11312 (description
11313 "This package provides software and data to support the case studies
11314 monograph.")
11315 (license license:artistic2.0)))
11316
11317 (define-public r-bioccheck
11318 (package
11319 (name "r-bioccheck")
11320 (version "1.28.0")
11321 (source (origin
11322 (method url-fetch)
11323 (uri (bioconductor-uri "BiocCheck" version))
11324 (sha256
11325 (base32
11326 "1h0l5w33c9jpc20pynq634qmx8jbfa802d7jslmf4haljmrxm4a1"))))
11327 (properties
11328 `((upstream-name . "BiocCheck")))
11329 (build-system r-build-system)
11330 (propagated-inputs
11331 `(("r-codetools" ,r-codetools)
11332 ("r-graph" ,r-graph)
11333 ("r-httr" ,r-httr)
11334 ("r-knitr" ,r-knitr)
11335 ("r-optparse" ,r-optparse)
11336 ("r-biocmanager" ,r-biocmanager)
11337 ("r-biocviews" ,r-biocviews)
11338 ("r-stringdist" ,r-stringdist)))
11339 (native-inputs
11340 `(("r-knitr" ,r-knitr)))
11341 (home-page "https://bioconductor.org/packages/BiocCheck")
11342 (synopsis "Executes Bioconductor-specific package checks")
11343 (description "This package contains tools to perform additional quality
11344 checks on R packages that are to be submitted to the Bioconductor repository.")
11345 (license license:artistic2.0)))
11346
11347 (define-public r-biocgraph
11348 (package
11349 (name "r-biocgraph")
11350 (version "1.52.0")
11351 (source
11352 (origin
11353 (method url-fetch)
11354 (uri (bioconductor-uri "biocGraph" version))
11355 (sha256
11356 (base32
11357 "02y7vizc6jv8y9r8chsda4yysim0ch45i3rasqvv7m85zqsskf75"))))
11358 (properties `((upstream-name . "biocGraph")))
11359 (build-system r-build-system)
11360 (propagated-inputs
11361 `(("r-biocgenerics" ,r-biocgenerics)
11362 ("r-geneplotter" ,r-geneplotter)
11363 ("r-graph" ,r-graph)
11364 ("r-rgraphviz" ,r-rgraphviz)))
11365 (home-page "https://bioconductor.org/packages/biocGraph/")
11366 (synopsis "Graph examples and use cases in Bioinformatics")
11367 (description
11368 "This package provides examples and code that make use of the
11369 different graph related packages produced by Bioconductor.")
11370 (license license:artistic2.0)))
11371
11372 (define-public r-biocstyle
11373 (package
11374 (name "r-biocstyle")
11375 (version "2.18.1")
11376 (source (origin
11377 (method url-fetch)
11378 (uri (bioconductor-uri "BiocStyle" version))
11379 (sha256
11380 (base32
11381 "0rsxyna4dd99x42vc82mlkxx774vb9375llpakg53max1hhwkrqp"))))
11382 (properties
11383 `((upstream-name . "BiocStyle")))
11384 (build-system r-build-system)
11385 (propagated-inputs
11386 `(("r-biocmanager" ,r-biocmanager)
11387 ("r-bookdown" ,r-bookdown)
11388 ("r-knitr" ,r-knitr)
11389 ("r-rmarkdown" ,r-rmarkdown)
11390 ("r-yaml" ,r-yaml)))
11391 (native-inputs
11392 `(("r-knitr" ,r-knitr)))
11393 (home-page "https://bioconductor.org/packages/BiocStyle")
11394 (synopsis "Bioconductor formatting styles")
11395 (description "This package provides standard formatting styles for
11396 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
11397 functionality.")
11398 (license license:artistic2.0)))
11399
11400 (define-public r-biocviews
11401 (package
11402 (name "r-biocviews")
11403 (version "1.58.1")
11404 (source (origin
11405 (method url-fetch)
11406 (uri (bioconductor-uri "biocViews" version))
11407 (sha256
11408 (base32
11409 "1by2639z7n62z84dr8rj9jz12gsd1k8q42zsnxacxbwfwp6h0cl4"))))
11410 (properties
11411 `((upstream-name . "biocViews")))
11412 (build-system r-build-system)
11413 (propagated-inputs
11414 `(("r-biobase" ,r-biobase)
11415 ("r-biocmanager" ,r-biocmanager)
11416 ("r-graph" ,r-graph)
11417 ("r-rbgl" ,r-rbgl)
11418 ("r-rcurl" ,r-rcurl)
11419 ("r-xml" ,r-xml)
11420 ("r-runit" ,r-runit)))
11421 (home-page "https://bioconductor.org/packages/biocViews")
11422 (synopsis "Bioconductor package categorization helper")
11423 (description "The purpose of biocViews is to create HTML pages that
11424 categorize packages in a Bioconductor package repository according to keywords,
11425 also known as views, in a controlled vocabulary.")
11426 (license license:artistic2.0)))
11427
11428 (define-public r-experimenthub
11429 (package
11430 (name "r-experimenthub")
11431 (version "1.16.1")
11432 (source
11433 (origin
11434 (method url-fetch)
11435 (uri (bioconductor-uri "ExperimentHub" version))
11436 (sha256
11437 (base32
11438 "1iyf052hh2dhlwzwwrj571cwr3hd9wp2j915sqg77x6jn40wjr1g"))))
11439 (properties `((upstream-name . "ExperimentHub")))
11440 (build-system r-build-system)
11441 (propagated-inputs
11442 `(("r-annotationhub" ,r-annotationhub)
11443 ("r-biocfilecache" ,r-biocfilecache)
11444 ("r-biocgenerics" ,r-biocgenerics)
11445 ("r-biocmanager" ,r-biocmanager)
11446 ("r-curl" ,r-curl)
11447 ("r-rappdirs" ,r-rappdirs)
11448 ("r-s4vectors" ,r-s4vectors)))
11449 (native-inputs
11450 `(("r-knitr" ,r-knitr)))
11451 (home-page "https://bioconductor.org/packages/ExperimentHub/")
11452 (synopsis "Client to access ExperimentHub resources")
11453 (description
11454 "This package provides a client for the Bioconductor ExperimentHub web
11455 resource. ExperimentHub provides a central location where curated data from
11456 experiments, publications or training courses can be accessed. Each resource
11457 has associated metadata, tags and date of modification. The client creates
11458 and manages a local cache of files retrieved enabling quick and reproducible
11459 access.")
11460 (license license:artistic2.0)))
11461
11462 (define-public r-grohmm
11463 (package
11464 (name "r-grohmm")
11465 (version "1.24.0")
11466 (source
11467 (origin
11468 (method url-fetch)
11469 (uri (bioconductor-uri "groHMM" version))
11470 (sha256
11471 (base32
11472 "08pap9wsaxl4jjlc1py0rc019gmi6daa0f9cr3ih1d97wybncanx"))))
11473 (properties `((upstream-name . "groHMM")))
11474 (build-system r-build-system)
11475 (propagated-inputs
11476 `(("r-genomeinfodb" ,r-genomeinfodb)
11477 ("r-genomicalignments" ,r-genomicalignments)
11478 ("r-genomicranges" ,r-genomicranges)
11479 ("r-iranges" ,r-iranges)
11480 ("r-mass" ,r-mass)
11481 ("r-rtracklayer" ,r-rtracklayer)
11482 ("r-s4vectors" ,r-s4vectors)))
11483 (home-page "https://github.com/Kraus-Lab/groHMM")
11484 (synopsis "GRO-seq analysis pipeline")
11485 (description
11486 "This package provides a pipeline for the analysis of GRO-seq data.")
11487 (license license:gpl3+)))
11488
11489 (define-public r-multiassayexperiment
11490 (package
11491 (name "r-multiassayexperiment")
11492 (version "1.16.0")
11493 (source
11494 (origin
11495 (method url-fetch)
11496 (uri (bioconductor-uri "MultiAssayExperiment" version))
11497 (sha256
11498 (base32
11499 "1nx3gikl8vr54862h6wl0q30arnpynla085219lhh61ziswdffrs"))))
11500 (properties
11501 `((upstream-name . "MultiAssayExperiment")))
11502 (build-system r-build-system)
11503 (propagated-inputs
11504 `(("r-biobase" ,r-biobase)
11505 ("r-biocgenerics" ,r-biocgenerics)
11506 ("r-genomicranges" ,r-genomicranges)
11507 ("r-iranges" ,r-iranges)
11508 ("r-s4vectors" ,r-s4vectors)
11509 ("r-summarizedexperiment" ,r-summarizedexperiment)
11510 ("r-tidyr" ,r-tidyr)))
11511 (native-inputs
11512 `(("r-knitr" ,r-knitr)))
11513 (home-page "https://waldronlab.io/MultiAssayExperiment/")
11514 (synopsis "Integration of multi-omics experiments in Bioconductor")
11515 (description
11516 "MultiAssayExperiment harmonizes data management of multiple assays
11517 performed on an overlapping set of specimens. It provides a familiar
11518 Bioconductor user experience by extending concepts from
11519 @code{SummarizedExperiment}, supporting an open-ended mix of standard data
11520 classes for individual assays, and allowing subsetting by genomic ranges or
11521 rownames.")
11522 (license license:artistic2.0)))
11523
11524 (define-public r-bioconcotk
11525 (package
11526 (name "r-bioconcotk")
11527 (version "1.10.0")
11528 (source
11529 (origin
11530 (method url-fetch)
11531 (uri (bioconductor-uri "BiocOncoTK" version))
11532 (sha256
11533 (base32
11534 "1jwp0gww2xyx8qfv5h4y0v3g66mmlyrd1v64xn91si4fsymk4108"))))
11535 (properties `((upstream-name . "BiocOncoTK")))
11536 (build-system r-build-system)
11537 (propagated-inputs
11538 `(("r-bigrquery" ,r-bigrquery)
11539 ("r-car" ,r-car)
11540 ("r-complexheatmap" ,r-complexheatmap)
11541 ("r-curatedtcgadata" ,r-curatedtcgadata)
11542 ("r-dbi" ,r-dbi)
11543 ("r-dplyr" ,r-dplyr)
11544 ("r-dt" ,r-dt)
11545 ("r-genomicfeatures" ,r-genomicfeatures)
11546 ("r-genomicranges" ,r-genomicranges)
11547 ("r-ggplot2" ,r-ggplot2)
11548 ("r-ggpubr" ,r-ggpubr)
11549 ("r-graph" ,r-graph)
11550 ("r-httr" ,r-httr)
11551 ("r-iranges" ,r-iranges)
11552 ("r-magrittr" ,r-magrittr)
11553 ("r-plyr" ,r-plyr)
11554 ("r-rgraphviz" ,r-rgraphviz)
11555 ("r-rjson" ,r-rjson)
11556 ("r-s4vectors" ,r-s4vectors)
11557 ("r-scales" ,r-scales)
11558 ("r-shiny" ,r-shiny)
11559 ("r-summarizedexperiment" ,r-summarizedexperiment)))
11560 (native-inputs
11561 `(("r-knitr" ,r-knitr)))
11562 (home-page "https://bioconductor.org/packages/BiocOncoTK")
11563 (synopsis "Bioconductor components for general cancer genomics")
11564 (description
11565 "The purpose of this package is to provide a central interface to various
11566 tools for genome-scale analysis of cancer studies.")
11567 (license license:artistic2.0)))
11568
11569 (define-public r-biocor
11570 (package
11571 (name "r-biocor")
11572 (version "1.14.0")
11573 (source
11574 (origin
11575 (method url-fetch)
11576 (uri (bioconductor-uri "BioCor" version))
11577 (sha256
11578 (base32
11579 "12slrdn98h43j3y7klk3chrwa2ycwm4krhz3l3kfzbxr834mhy19"))))
11580 (properties `((upstream-name . "BioCor")))
11581 (build-system r-build-system)
11582 (propagated-inputs
11583 `(("r-biocparallel" ,r-biocparallel)
11584 ("r-gseabase" ,r-gseabase)
11585 ("r-matrix" ,r-matrix)))
11586 (native-inputs
11587 `(("r-knitr" ,r-knitr)))
11588 (home-page "https://llrs.github.io/BioCor/")
11589 (synopsis "Functional similarities")
11590 (description
11591 "This package provides tools to calculate functional similarities based
11592 on the pathways described on KEGG and REACTOME or in gene sets. These
11593 similarities can be calculated for pathways or gene sets, genes, or clusters
11594 and combined with other similarities. They can be used to improve networks,
11595 gene selection, testing relationships, and so on.")
11596 (license license:expat)))
11597
11598 (define-public r-biocpkgtools
11599 (package
11600 (name "r-biocpkgtools")
11601 (version "1.8.2")
11602 (source
11603 (origin
11604 (method url-fetch)
11605 (uri (bioconductor-uri "BiocPkgTools" version))
11606 (sha256
11607 (base32
11608 "18m816mh1ic0znp38wax8xppai77lkym3w84x4x30x2mf0vriqfw"))))
11609 (properties `((upstream-name . "BiocPkgTools")))
11610 (build-system r-build-system)
11611 (propagated-inputs
11612 `(("r-biocfilecache" ,r-biocfilecache)
11613 ("r-biocmanager" ,r-biocmanager)
11614 ("r-biocviews" ,r-biocviews)
11615 ("r-dplyr" ,r-dplyr)
11616 ("r-dt" ,r-dt)
11617 ("r-gh" ,r-gh)
11618 ("r-graph" ,r-graph)
11619 ("r-htmltools" ,r-htmltools)
11620 ("r-htmlwidgets" ,r-htmlwidgets)
11621 ("r-httr" ,r-httr)
11622 ("r-igraph" ,r-igraph)
11623 ("r-jsonlite" ,r-jsonlite)
11624 ("r-magrittr" ,r-magrittr)
11625 ("r-rappdirs" ,r-rappdirs)
11626 ("r-rbgl" ,r-rbgl)
11627 ("r-readr" ,r-readr)
11628 ("r-rex" ,r-rex)
11629 ("r-rlang" ,r-rlang)
11630 ("r-rvest" ,r-rvest)
11631 ("r-stringr" ,r-stringr)
11632 ("r-tibble" ,r-tibble)
11633 ("r-tidyr" ,r-tidyr)
11634 ("r-tidyselect" ,r-tidyselect)
11635 ("r-xml2" ,r-xml2)))
11636 (native-inputs
11637 `(("r-knitr" ,r-knitr)))
11638 (home-page "https://github.com/seandavi/BiocPkgTools")
11639 (synopsis "Collection of tools for learning about Bioconductor packages")
11640 (description
11641 "Bioconductor has a rich ecosystem of metadata around packages, usage,
11642 and build status. This package is a simple collection of functions to access
11643 that metadata from R. The goal is to expose metadata for data mining and
11644 value-added functionality such as package searching, text mining, and
11645 analytics on packages.")
11646 (license license:expat)))
11647
11648 (define-public r-biocset
11649 (package
11650 (name "r-biocset")
11651 (version "1.4.0")
11652 (source
11653 (origin
11654 (method url-fetch)
11655 (uri (bioconductor-uri "BiocSet" version))
11656 (sha256
11657 (base32
11658 "16pjg09i0j5qk9s9qzm6fq5q0bgwb4wgqvp6scs06ajgrr07qjqg"))))
11659 (properties `((upstream-name . "BiocSet")))
11660 (build-system r-build-system)
11661 (propagated-inputs
11662 `(("r-annotationdbi" ,r-annotationdbi)
11663 ("r-biocio" ,r-biocio)
11664 ("r-dplyr" ,r-dplyr)
11665 ("r-keggrest" ,r-keggrest)
11666 ("r-ontologyindex" ,r-ontologyindex)
11667 ("r-plyr" ,r-plyr)
11668 ("r-rlang" ,r-rlang)
11669 ("r-s4vectors" ,r-s4vectors)
11670 ("r-tibble" ,r-tibble)
11671 ("r-tidyr" ,r-tidyr)))
11672 (native-inputs
11673 `(("r-knitr" ,r-knitr)))
11674 (home-page
11675 "https://bioconductor.org/packages/BiocSet")
11676 (synopsis
11677 "Representing Different Biological Sets")
11678 (description
11679 "BiocSet displays different biological sets in a triple tibble format.
11680 These three tibbles are @code{element}, @code{set}, and @code{elementset}.
11681 The user has the ability to activate one of these three tibbles to perform
11682 common functions from the @code{dplyr} package. Mapping functionality and
11683 accessing web references for elements/sets are also available in BiocSet.")
11684 (license license:artistic2.0)))
11685
11686 (define-public r-biocworkflowtools
11687 (package
11688 (name "r-biocworkflowtools")
11689 (version "1.16.0")
11690 (source
11691 (origin
11692 (method url-fetch)
11693 (uri (bioconductor-uri "BiocWorkflowTools" version))
11694 (sha256
11695 (base32
11696 "0lvckdy20bhgyhqbccp0rdfi2p6vvip694r27qwpyi5092nfmqh6"))))
11697 (properties
11698 `((upstream-name . "BiocWorkflowTools")))
11699 (build-system r-build-system)
11700 (propagated-inputs
11701 `(("r-biocstyle" ,r-biocstyle)
11702 ("r-bookdown" ,r-bookdown)
11703 ("r-git2r" ,r-git2r)
11704 ("r-httr" ,r-httr)
11705 ("r-knitr" ,r-knitr)
11706 ("r-rmarkdown" ,r-rmarkdown)
11707 ("r-rstudioapi" ,r-rstudioapi)
11708 ("r-stringr" ,r-stringr)
11709 ("r-usethis" ,r-usethis)))
11710 (native-inputs
11711 `(("r-knitr" ,r-knitr)))
11712 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
11713 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
11714 (description
11715 "This package provides functions to ease the transition between
11716 Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
11717 (license license:expat)))
11718
11719 (define-public r-biodist
11720 (package
11721 (name "r-biodist")
11722 (version "1.62.0")
11723 (source
11724 (origin
11725 (method url-fetch)
11726 (uri (bioconductor-uri "bioDist" version))
11727 (sha256
11728 (base32
11729 "10p4iajpyqgqb35743jm1a33lwbsmax2g4vz9fbbhn2cpiq3chap"))))
11730 (properties `((upstream-name . "bioDist")))
11731 (build-system r-build-system)
11732 (propagated-inputs
11733 `(("r-biobase" ,r-biobase)
11734 ("r-kernsmooth" ,r-kernsmooth)))
11735 (home-page "https://bioconductor.org/packages/bioDist/")
11736 (synopsis "Different distance measures")
11737 (description
11738 "This package provides a collection of software tools for calculating
11739 distance measures.")
11740 (license license:artistic2.0)))
11741
11742 (define-public r-pcatools
11743 (package
11744 (name "r-pcatools")
11745 (version "2.2.0")
11746 (source
11747 (origin
11748 (method url-fetch)
11749 (uri (bioconductor-uri "PCAtools" version))
11750 (sha256
11751 (base32
11752 "1fz9h99yyn49b5rcnkg2kjdfmczfwnc44fpwbia0izj6gx192phb"))))
11753 (properties `((upstream-name . "PCAtools")))
11754 (build-system r-build-system)
11755 (propagated-inputs
11756 `(("r-beachmat" ,r-beachmat)
11757 ("r-bh" ,r-bh)
11758 ("r-biocparallel" ,r-biocparallel)
11759 ("r-biocsingular" ,r-biocsingular)
11760 ("r-cowplot" ,r-cowplot)
11761 ("r-delayedarray" ,r-delayedarray)
11762 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
11763 ("r-dqrng" ,r-dqrng)
11764 ("r-ggplot2" ,r-ggplot2)
11765 ("r-ggrepel" ,r-ggrepel)
11766 ("r-lattice" ,r-lattice)
11767 ("r-matrix" ,r-matrix)
11768 ("r-rcpp" ,r-rcpp)
11769 ("r-reshape2" ,r-reshape2)))
11770 (native-inputs `(("r-knitr" ,r-knitr)))
11771 (home-page "https://github.com/kevinblighe/PCAtools")
11772 (synopsis "PCAtools: everything Principal Components Analysis")
11773 (description
11774 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
11775 structure of the data without the need to build any model to represent it.
11776 This \"summary\" of the data is arrived at through a process of reduction that
11777 can transform the large number of variables into a lesser number that are
11778 uncorrelated (i.e. the 'principal components'), while at the same time being
11779 capable of easy interpretation on the original data. PCAtools provides
11780 functions for data exploration via PCA, and allows the user to generate
11781 publication-ready figures. PCA is performed via @code{BiocSingular}; users
11782 can also identify an optimal number of principal components via different
11783 metrics, such as the elbow method and Horn's parallel analysis, which has
11784 relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
11785 dimensional mass cytometry data.")
11786 (license license:gpl3)))
11787
11788 (define-public r-rgreat
11789 (package
11790 (name "r-rgreat")
11791 (version "1.22.0")
11792 (source
11793 (origin
11794 (method url-fetch)
11795 (uri (bioconductor-uri "rGREAT" version))
11796 (sha256
11797 (base32
11798 "0p2b8cqxibxxmsh687y7yvlvr2a5ipiz53jb4wsr8ddypynb1asj"))))
11799 (properties `((upstream-name . "rGREAT")))
11800 (build-system r-build-system)
11801 (propagated-inputs
11802 `(("r-genomicranges" ,r-genomicranges)
11803 ("r-getoptlong" ,r-getoptlong)
11804 ("r-iranges" ,r-iranges)
11805 ("r-rcurl" ,r-rcurl)
11806 ("r-rjson" ,r-rjson)))
11807 (native-inputs `(("r-knitr" ,r-knitr)))
11808 (home-page "https://github.com/jokergoo/rGREAT")
11809 (synopsis "Client for GREAT analysis")
11810 (description
11811 "This package makes GREAT (Genomic Regions Enrichment of Annotations
11812 Tool) analysis automatic by constructing a HTTP POST request according to
11813 user's input and automatically retrieving results from GREAT web server.")
11814 (license license:expat)))
11815
11816 (define-public r-m3c
11817 (package
11818 (name "r-m3c")
11819 (version "1.12.0")
11820 (source
11821 (origin
11822 (method url-fetch)
11823 (uri (bioconductor-uri "M3C" version))
11824 (sha256
11825 (base32
11826 "05ygi4fd85hh17mlww5wcww8d5z5zvkn2r46s4n6g18mcbv8snv5"))))
11827 (properties `((upstream-name . "M3C")))
11828 (build-system r-build-system)
11829 (propagated-inputs
11830 `(("r-cluster" ,r-cluster)
11831 ("r-corpcor" ,r-corpcor)
11832 ("r-doparallel" ,r-doparallel)
11833 ("r-dosnow" ,r-dosnow)
11834 ("r-foreach" ,r-foreach)
11835 ("r-ggplot2" ,r-ggplot2)
11836 ("r-matrix" ,r-matrix)
11837 ("r-matrixcalc" ,r-matrixcalc)
11838 ("r-rtsne" ,r-rtsne)
11839 ("r-umap" ,r-umap)))
11840 (native-inputs `(("r-knitr" ,r-knitr)))
11841 (home-page "https://bioconductor.org/packages/M3C")
11842 (synopsis "Monte Carlo reference-based consensus clustering")
11843 (description
11844 "M3C is a consensus clustering algorithm that uses a Monte Carlo
11845 simulation to eliminate overestimation of @code{K} and can reject the null
11846 hypothesis @code{K=1}.")
11847 (license license:agpl3+)))
11848
11849 (define-public r-icens
11850 (package
11851 (name "r-icens")
11852 (version "1.62.0")
11853 (source
11854 (origin
11855 (method url-fetch)
11856 (uri (bioconductor-uri "Icens" version))
11857 (sha256
11858 (base32
11859 "1w94mvh8pai77h4fcaiyacmzs58n4kbiq6bm4z0hk24j1ywph3dr"))))
11860 (properties `((upstream-name . "Icens")))
11861 (build-system r-build-system)
11862 (propagated-inputs
11863 `(("r-survival" ,r-survival)))
11864 (home-page "https://bioconductor.org/packages/Icens")
11865 (synopsis "NPMLE for censored and truncated data")
11866 (description
11867 "This package provides many functions for computing the
11868 @dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
11869 truncated data.")
11870 (license license:artistic2.0)))
11871
11872 ;; This is a CRAN package but it depends on r-icens, which is published on
11873 ;; Bioconductor.
11874 (define-public r-interval
11875 (package
11876 (name "r-interval")
11877 (version "1.1-0.7")
11878 (source
11879 (origin
11880 (method url-fetch)
11881 (uri (cran-uri "interval" version))
11882 (sha256
11883 (base32
11884 "1b31lh0sv7lzy76230djipahxa10lblbr37kdiigr6hp3dd1xmz9"))))
11885 (properties `((upstream-name . "interval")))
11886 (build-system r-build-system)
11887 (propagated-inputs
11888 `(("r-icens" ,r-icens)
11889 ("r-mlecens" ,r-mlecens)
11890 ("r-perm" ,r-perm)
11891 ("r-survival" ,r-survival)))
11892 (home-page "https://cran.r-project.org/web/packages/interval/")
11893 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
11894 (description
11895 "This package provides functions to fit nonparametric survival curves,
11896 plot them, and perform logrank or Wilcoxon type tests.")
11897 (license license:gpl2+)))
11898
11899 ;; This is a CRAN package, but it depends on r-interval, which depends on a
11900 ;; Bioconductor package.
11901 (define-public r-fhtest
11902 (package
11903 (name "r-fhtest")
11904 (version "1.5")
11905 (source
11906 (origin
11907 (method url-fetch)
11908 (uri (cran-uri "FHtest" version))
11909 (sha256
11910 (base32
11911 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
11912 (properties `((upstream-name . "FHtest")))
11913 (build-system r-build-system)
11914 (propagated-inputs
11915 `(("r-interval" ,r-interval)
11916 ("r-kmsurv" ,r-kmsurv)
11917 ("r-mass" ,r-mass)
11918 ("r-perm" ,r-perm)
11919 ("r-survival" ,r-survival)))
11920 (home-page "https://cran.r-project.org/web/packages/FHtest/")
11921 (synopsis "Tests for survival data based on the Fleming-Harrington class")
11922 (description
11923 "This package provides functions to compare two or more survival curves
11924 with:
11925
11926 @itemize
11927 @item The Fleming-Harrington test for right-censored data based on
11928 permutations and on counting processes.
11929 @item An extension of the Fleming-Harrington test for interval-censored data
11930 based on a permutation distribution and on a score vector distribution.
11931 @end itemize
11932 ")
11933 (license license:gpl2+)))
11934
11935 (define-public r-fourcseq
11936 (package
11937 (name "r-fourcseq")
11938 (version "1.24.0")
11939 (source
11940 (origin
11941 (method url-fetch)
11942 (uri (bioconductor-uri "FourCSeq" version))
11943 (sha256
11944 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
11945 (properties `((upstream-name . "FourCSeq")))
11946 (build-system r-build-system)
11947 (propagated-inputs
11948 `(("r-biobase" ,r-biobase)
11949 ("r-biostrings" ,r-biostrings)
11950 ("r-deseq2" ,r-deseq2)
11951 ("r-fda" ,r-fda)
11952 ("r-genomicalignments" ,r-genomicalignments)
11953 ("r-genomicranges" ,r-genomicranges)
11954 ("r-ggbio" ,r-ggbio)
11955 ("r-ggplot2" ,r-ggplot2)
11956 ("r-gtools" ,r-gtools)
11957 ("r-lsd" ,r-lsd)
11958 ("r-matrix" ,r-matrix)
11959 ("r-reshape2" ,r-reshape2)
11960 ("r-rsamtools" ,r-rsamtools)
11961 ("r-rtracklayer" ,r-rtracklayer)
11962 ("r-summarizedexperiment" ,r-summarizedexperiment)))
11963 (native-inputs
11964 `(("r-knitr" ,r-knitr)))
11965 (home-page
11966 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
11967 (synopsis "Analysis of multiplexed 4C sequencing data")
11968 (description
11969 "This package is an R package dedicated to the analysis of (multiplexed)
11970 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
11971 interactions between DNA elements and identify differential interactions
11972 between conditions. The statistical analysis in R starts with individual bam
11973 files for each sample as inputs. To obtain these files, the package contains
11974 a Python script to demultiplex libraries and trim off primer sequences. With
11975 a standard alignment software the required bam files can be then be
11976 generated.")
11977 (license license:gpl3+)))
11978
11979 (define-public r-preprocesscore
11980 (package
11981 (name "r-preprocesscore")
11982 (version "1.52.1")
11983 (source
11984 (origin
11985 (method url-fetch)
11986 (uri (bioconductor-uri "preprocessCore" version))
11987 (sha256
11988 (base32
11989 "1hz7rlpscaczvvcalky2f5bmr70aii455549m7f6wk10aklp3nll"))))
11990 (properties
11991 `((upstream-name . "preprocessCore")))
11992 (build-system r-build-system)
11993 (home-page "https://github.com/bmbolstad/preprocessCore")
11994 (synopsis "Collection of pre-processing functions")
11995 (description
11996 "This package provides a library of core pre-processing and normalization
11997 routines.")
11998 (license license:lgpl2.0+)))
11999
12000 (define-public r-s4vectors
12001 (package
12002 (name "r-s4vectors")
12003 (version "0.28.1")
12004 (source (origin
12005 (method url-fetch)
12006 (uri (bioconductor-uri "S4Vectors" version))
12007 (sha256
12008 (base32
12009 "0fhf4lsfxrim7glazh6ng46ykzaly5ggwpg170vcz4cc24prv0rh"))))
12010 (properties
12011 `((upstream-name . "S4Vectors")))
12012 (build-system r-build-system)
12013 (propagated-inputs
12014 `(("r-biocgenerics" ,r-biocgenerics)))
12015 (home-page "https://bioconductor.org/packages/S4Vectors")
12016 (synopsis "S4 implementation of vectors and lists")
12017 (description
12018 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
12019 classes and a set of generic functions that extend the semantic of ordinary
12020 vectors and lists in R. Package developers can easily implement vector-like
12021 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
12022 In addition, a few low-level concrete subclasses of general interest (e.g.
12023 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
12024 S4Vectors package itself.")
12025 (license license:artistic2.0)))
12026
12027 ;; This is a CRAN package, but it depends on preprocessorcore, which is a
12028 ;; Bioconductor package.
12029 (define-public r-wgcna
12030 (package
12031 (name "r-wgcna")
12032 (version "1.70-3")
12033 (source
12034 (origin
12035 (method url-fetch)
12036 (uri (cran-uri "WGCNA" version))
12037 (sha256
12038 (base32
12039 "1m6b4a2xpb02c1ajndhk8qlqnhwxa7lkkwj6nzv3l618jy1kp15r"))))
12040 (properties `((upstream-name . "WGCNA")))
12041 (build-system r-build-system)
12042 (propagated-inputs
12043 `(("r-annotationdbi" ,r-annotationdbi)
12044 ("r-doparallel" ,r-doparallel)
12045 ("r-dynamictreecut" ,r-dynamictreecut)
12046 ("r-fastcluster" ,r-fastcluster)
12047 ("r-foreach" ,r-foreach)
12048 ("r-go-db" ,r-go-db)
12049 ("r-hmisc" ,r-hmisc)
12050 ("r-impute" ,r-impute)
12051 ("r-rcpp" ,r-rcpp)
12052 ("r-survival" ,r-survival)
12053 ("r-matrixstats" ,r-matrixstats)
12054 ("r-preprocesscore" ,r-preprocesscore)))
12055 (home-page
12056 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
12057 (synopsis "Weighted correlation network analysis")
12058 (description
12059 "This package provides functions necessary to perform Weighted
12060 Correlation Network Analysis on high-dimensional data. It includes functions
12061 for rudimentary data cleaning, construction and summarization of correlation
12062 networks, module identification and functions for relating both variables and
12063 modules to sample traits. It also includes a number of utility functions for
12064 data manipulation and visualization.")
12065 (license license:gpl2+)))
12066
12067 (define-public r-rgraphviz
12068 (package
12069 (name "r-rgraphviz")
12070 (version "2.34.0")
12071 (source
12072 (origin
12073 (method url-fetch)
12074 (uri (bioconductor-uri "Rgraphviz" version))
12075 (sha256
12076 (base32
12077 "1k0nrskak2v5xv7za226r3wypja3zxxmmc0cxz2imjhlgnkbha77"))))
12078 (properties `((upstream-name . "Rgraphviz")))
12079 (build-system r-build-system)
12080 (arguments
12081 `(#:phases
12082 (modify-phases %standard-phases
12083 (add-after 'unpack 'make-reproducible
12084 (lambda _
12085 ;; The replacement value is taken from src/graphviz/builddate.h
12086 (substitute* "src/graphviz/configure"
12087 (("VERSION_DATE=.*")
12088 "VERSION_DATE=20200427.2341\n"))
12089 #t)))))
12090 ;; FIXME: Rgraphviz bundles the sources of an older variant of
12091 ;; graphviz. It does not build with the latest version of graphviz, so
12092 ;; we do not add graphviz to the inputs.
12093 (inputs `(("zlib" ,zlib)))
12094 (propagated-inputs
12095 `(("r-graph" ,r-graph)))
12096 (native-inputs
12097 `(("pkg-config" ,pkg-config)))
12098 (home-page "https://bioconductor.org/packages/Rgraphviz")
12099 (synopsis "Plotting capabilities for R graph objects")
12100 (description
12101 "This package interfaces R with the graphviz library for plotting R graph
12102 objects from the @code{graph} package.")
12103 (license license:epl1.0)))
12104
12105 (define-public r-fithic
12106 (package
12107 (name "r-fithic")
12108 (version "1.16.0")
12109 (source (origin
12110 (method url-fetch)
12111 (uri (bioconductor-uri "FitHiC" version))
12112 (sha256
12113 (base32
12114 "1sdfkqc6s7m9whkzr0mllzzfjzhj2g54ncjwxj8q0azjgszrfwd2"))))
12115 (properties `((upstream-name . "FitHiC")))
12116 (build-system r-build-system)
12117 (propagated-inputs
12118 `(("r-data-table" ,r-data-table)
12119 ("r-fdrtool" ,r-fdrtool)
12120 ("r-rcpp" ,r-rcpp)))
12121 (native-inputs
12122 `(("r-knitr" ,r-knitr)))
12123 (home-page "https://bioconductor.org/packages/FitHiC")
12124 (synopsis "Confidence estimation for intra-chromosomal contact maps")
12125 (description
12126 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
12127 intra-chromosomal contact maps produced by genome-wide genome architecture
12128 assays such as Hi-C.")
12129 (license license:gpl2+)))
12130
12131 (define-public r-hitc
12132 (package
12133 (name "r-hitc")
12134 (version "1.34.0")
12135 (source (origin
12136 (method url-fetch)
12137 (uri (bioconductor-uri "HiTC" version))
12138 (sha256
12139 (base32
12140 "1xbh36qgmzl8b6xq0hnl41li2x18yma50fq0v4dglh2ddn7as9iy"))))
12141 (properties `((upstream-name . "HiTC")))
12142 (build-system r-build-system)
12143 (propagated-inputs
12144 `(("r-biostrings" ,r-biostrings)
12145 ("r-genomeinfodb" ,r-genomeinfodb)
12146 ("r-genomicranges" ,r-genomicranges)
12147 ("r-iranges" ,r-iranges)
12148 ("r-matrix" ,r-matrix)
12149 ("r-rcolorbrewer" ,r-rcolorbrewer)
12150 ("r-rtracklayer" ,r-rtracklayer)))
12151 (home-page "https://bioconductor.org/packages/HiTC")
12152 (synopsis "High throughput chromosome conformation capture analysis")
12153 (description
12154 "The HiTC package was developed to explore high-throughput \"C\" data
12155 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
12156 quality controls, normalization, visualization, and further analysis are also
12157 provided.")
12158 (license license:artistic2.0)))
12159
12160 (define-public r-hdf5array
12161 (package
12162 (name "r-hdf5array")
12163 (version "1.20.0")
12164 (source
12165 (origin
12166 (method url-fetch)
12167 (uri (bioconductor-uri "HDF5Array" version))
12168 (sha256
12169 (base32
12170 "1718hplz5qlbwxwb87509bl7lir9kilvn1s7p2haz551pg48zvrc"))))
12171 (properties `((upstream-name . "HDF5Array")))
12172 (build-system r-build-system)
12173 (inputs
12174 `(("zlib" ,zlib)))
12175 (propagated-inputs
12176 `(("r-biocgenerics" ,r-biocgenerics)
12177 ("r-delayedarray" ,r-delayedarray)
12178 ("r-iranges" ,r-iranges)
12179 ("r-matrix" ,r-matrix)
12180 ("r-rhdf5" ,r-rhdf5)
12181 ("r-rhdf5filters" ,r-rhdf5filters)
12182 ("r-rhdf5lib" ,r-rhdf5lib)
12183 ("r-s4vectors" ,r-s4vectors)))
12184 (home-page "https://bioconductor.org/packages/HDF5Array")
12185 (synopsis "HDF5 back end for DelayedArray objects")
12186 (description "This package provides an array-like container for convenient
12187 access and manipulation of HDF5 datasets. It supports delayed operations and
12188 block processing.")
12189 (license license:artistic2.0)))
12190
12191 (define-public r-rhdf5lib
12192 (package
12193 (name "r-rhdf5lib")
12194 (version "1.14.0")
12195 (source
12196 (origin
12197 (method url-fetch)
12198 (uri (bioconductor-uri "Rhdf5lib" version))
12199 (sha256
12200 (base32
12201 "1ypqmd4nz4hxlb2qsay7f5784dqdjhc3b19pckzkhb65bfycdn87"))
12202 (modules '((guix build utils)))
12203 (snippet
12204 '(begin
12205 ;; Delete bundled binaries
12206 (delete-file-recursively "src/wininclude/")
12207 (delete-file-recursively "src/winlib-8.3.0/")
12208 (delete-file "src/hdf5small_cxx_hl_1.10.7.tar.gz")
12209 #t))))
12210 (properties `((upstream-name . "Rhdf5lib")))
12211 (build-system r-build-system)
12212 (arguments
12213 `(#:phases
12214 (modify-phases %standard-phases
12215 (add-after 'unpack 'do-not-use-bundled-hdf5
12216 (lambda* (#:key inputs #:allow-other-keys)
12217 (for-each delete-file '("configure" "configure.ac"))
12218 ;; Do not make other packages link with the proprietary libsz.
12219 (substitute* "R/zzz.R"
12220 ((" \"%s/libsz.a\"") "")
12221 (("patharch, .getDynamicLinks")
12222 ".getDynamicLinks"))
12223 (with-directory-excursion "src"
12224 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
12225 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
12226 "hdf5")
12227 ;; Remove timestamp and host system information to make
12228 ;; the build reproducible.
12229 (substitute* "hdf5/src/libhdf5.settings.in"
12230 (("Configured on: @CONFIG_DATE@")
12231 "Configured on: Guix")
12232 (("Uname information:.*")
12233 "Uname information: Linux\n")
12234 ;; Remove unnecessary store reference.
12235 (("C Compiler:.*")
12236 "C Compiler: GCC\n"))
12237 (rename-file "hdf5/src/libhdf5.settings.in"
12238 "hdf5/src/libhdf5.settings")
12239 (rename-file "Makevars.in" "Makevars")
12240 (substitute* "Makevars"
12241 (("@ZLIB_LIB@") "-lz")
12242 (("@ZLIB_INCLUDE@") "")
12243 (("HDF5_CXX_LIB=.*")
12244 (string-append "HDF5_CXX_LIB="
12245 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
12246 (("HDF5_LIB=.*")
12247 (string-append "HDF5_LIB="
12248 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
12249 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
12250 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
12251 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
12252 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
12253 (("HDF5_HL_LIB=.*")
12254 (string-append "HDF5_HL_LIB="
12255 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
12256 (("HDF5_HL_CXX_LIB=.*")
12257 (string-append "HDF5_HL_CXX_LIB="
12258 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
12259 ;; szip is non-free software
12260 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
12261 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n"))))))))
12262 (propagated-inputs
12263 `(("hdf5" ,hdf5-1.10)
12264 ("zlib" ,zlib)))
12265 (native-inputs
12266 `(("hdf5-source" ,(package-source hdf5-1.10))
12267 ("r-knitr" ,r-knitr)))
12268 (home-page "https://bioconductor.org/packages/Rhdf5lib")
12269 (synopsis "HDF5 library as an R package")
12270 (description "This package provides C and C++ HDF5 libraries for use in R
12271 packages.")
12272 (license license:artistic2.0)))
12273
12274 (define-public r-beachmat
12275 (package
12276 (name "r-beachmat")
12277 (version "2.6.4")
12278 (source
12279 (origin
12280 (method url-fetch)
12281 (uri (bioconductor-uri "beachmat" version))
12282 (sha256
12283 (base32
12284 "0vbqdkc52j2v1ghygmhy2cbgqm4l99vmv8930wkzkq1pm73pmjji"))))
12285 (build-system r-build-system)
12286 (propagated-inputs
12287 `(("r-biocgenerics" ,r-biocgenerics)
12288 ("r-delayedarray" ,r-delayedarray)
12289 ("r-matrix" ,r-matrix)))
12290 (native-inputs
12291 `(("r-knitr" ,r-knitr)))
12292 (home-page "https://bioconductor.org/packages/beachmat")
12293 (synopsis "Compiling Bioconductor to handle each matrix type")
12294 (description "This package provides a consistent C++ class interface for a
12295 variety of commonly used matrix types, including sparse and HDF5-backed
12296 matrices.")
12297 (license license:gpl3)))
12298
12299 ;; This package includes files that have been taken from kentutils. Some
12300 ;; parts of kentutils are not released under a free license, but this package
12301 ;; only uses files that are also found in the free parts of kentutils.
12302 (define-public r-cner
12303 (package
12304 (name "r-cner")
12305 (version "1.26.0")
12306 (source
12307 (origin
12308 (method url-fetch)
12309 (uri (bioconductor-uri "CNEr" version))
12310 (sha256
12311 (base32 "0qy4pm23vyy23zwsjkf0mpf2c0p54nq26w9lq7j0ld4bx9l3jc6c"))))
12312 (properties `((upstream-name . "CNEr")))
12313 (build-system r-build-system)
12314 (inputs `(("zlib" ,zlib)))
12315 (propagated-inputs
12316 `(("r-annotate" ,r-annotate)
12317 ("r-biocgenerics" ,r-biocgenerics)
12318 ("r-biostrings" ,r-biostrings)
12319 ("r-dbi" ,r-dbi)
12320 ("r-genomeinfodb" ,r-genomeinfodb)
12321 ("r-genomicalignments" ,r-genomicalignments)
12322 ("r-genomicranges" ,r-genomicranges)
12323 ("r-ggplot2" ,r-ggplot2)
12324 ("r-go-db" ,r-go-db)
12325 ("r-iranges" ,r-iranges)
12326 ("r-keggrest" ,r-keggrest)
12327 ("r-powerlaw" ,r-powerlaw)
12328 ("r-r-utils" ,r-r-utils)
12329 ("r-readr" ,r-readr)
12330 ("r-reshape2" ,r-reshape2)
12331 ("r-rsqlite" ,r-rsqlite)
12332 ("r-rtracklayer" ,r-rtracklayer)
12333 ("r-s4vectors" ,r-s4vectors)
12334 ("r-xvector" ,r-xvector)))
12335 (native-inputs
12336 `(("r-knitr" ,r-knitr)))
12337 (home-page "https://github.com/ge11232002/CNEr")
12338 (synopsis "CNE Detection and Visualization")
12339 (description
12340 "This package provides tools for large-scale identification and
12341 advanced visualization of sets of conserved noncoding elements.")
12342 ;; For all files in src/ucsc "license is hereby granted for all use -
12343 ;; public, private or commercial"; this includes those files that don't
12344 ;; have a license header, because they are included in the free parts of
12345 ;; the kentutils package.
12346 (license (list license:gpl2
12347 (license:non-copyleft
12348 "https://raw.githubusercontent.com/ucscGenomeBrowser/kent/v410_base/src/lib/LICENSE")))))
12349
12350 (define-public r-tfbstools
12351 (package
12352 (name "r-tfbstools")
12353 (version "1.28.0")
12354 (source
12355 (origin
12356 (method url-fetch)
12357 (uri (bioconductor-uri "TFBSTools" version))
12358 (sha256
12359 (base32
12360 "0p42hnwhipmcvrsqk3s8qfiian1fvh6izfd9m961bsx99r2clnha"))))
12361 (properties `((upstream-name . "TFBSTools")))
12362 (build-system r-build-system)
12363 (propagated-inputs
12364 `(("r-biobase" ,r-biobase)
12365 ("r-biocgenerics" ,r-biocgenerics)
12366 ("r-biocparallel" ,r-biocparallel)
12367 ("r-biostrings" ,r-biostrings)
12368 ("r-bsgenome" ,r-bsgenome)
12369 ("r-catools" ,r-catools)
12370 ("r-cner" ,r-cner)
12371 ("r-dbi" ,r-dbi)
12372 ("r-dirichletmultinomial" ,r-dirichletmultinomial)
12373 ("r-genomeinfodb" ,r-genomeinfodb)
12374 ("r-genomicranges" ,r-genomicranges)
12375 ("r-gtools" ,r-gtools)
12376 ("r-iranges" ,r-iranges)
12377 ("r-rsqlite" ,r-rsqlite)
12378 ("r-rtracklayer" ,r-rtracklayer)
12379 ("r-s4vectors" ,r-s4vectors)
12380 ("r-seqlogo" ,r-seqlogo)
12381 ("r-tfmpvalue" ,r-tfmpvalue)
12382 ("r-xml" ,r-xml)
12383 ("r-xvector" ,r-xvector)))
12384 (native-inputs `(("r-knitr" ,r-knitr)))
12385 (home-page "https://github.com/ge11232002/TFBSTools")
12386 (synopsis "Transcription factor binding site (TFBS) analysis")
12387 (description
12388 "TFBSTools is a package for the analysis and manipulation of
12389 transcription factor binding sites. It includes matrices conversion
12390 between @dfn{Position Frequency Matrix} (PFM), @dfn{Position Weight
12391 Matrix} (PWM) and @dfn{Information Content Matrix} (ICM). It can also
12392 scan putative TFBS from sequence/alignment, query JASPAR database and
12393 provides a wrapper of de novo motif discovery software.")
12394 (license license:gpl2)))
12395
12396 (define-public r-motifmatchr
12397 (package
12398 (name "r-motifmatchr")
12399 (version "1.12.0")
12400 (source
12401 (origin
12402 (method url-fetch)
12403 (uri (bioconductor-uri "motifmatchr" version))
12404 (sha256
12405 (base32
12406 "0zrpn0hqdg0hm80ydkfpiqncwyb8y0xp6mlin7g955p8zcpcm67z"))))
12407 (properties `((upstream-name . "motifmatchr")))
12408 (build-system r-build-system)
12409 (propagated-inputs
12410 `(("r-biostrings" ,r-biostrings)
12411 ("r-bsgenome" ,r-bsgenome)
12412 ("r-genomeinfodb" ,r-genomeinfodb)
12413 ("r-genomicranges" ,r-genomicranges)
12414 ("r-iranges" ,r-iranges)
12415 ("r-matrix" ,r-matrix)
12416 ("r-rcpp" ,r-rcpp)
12417 ("r-rcpparmadillo" ,r-rcpparmadillo)
12418 ("r-rsamtools" ,r-rsamtools)
12419 ("r-s4vectors" ,r-s4vectors)
12420 ("r-summarizedexperiment" ,r-summarizedexperiment)
12421 ("r-tfbstools" ,r-tfbstools)))
12422 (native-inputs `(("r-knitr" ,r-knitr)))
12423 (home-page "https://bioconductor.org/packages/motifmatchr")
12424 (synopsis "Fast motif matching in R")
12425 (description
12426 "Quickly find motif matches for many motifs and many sequences.
12427 This package wraps C++ code from the MOODS motif calling library.")
12428 (license license:gpl3)))
12429
12430 (define-public r-chromvar
12431 (package
12432 (name "r-chromvar")
12433 (version "1.12.0")
12434 (source
12435 (origin
12436 (method url-fetch)
12437 (uri (bioconductor-uri "chromVAR" version))
12438 (sha256
12439 (base32 "0dn04ijgq8fncn2bkvnd0lnabjg2s4mpb91b3kwvv3nkgjgfx819"))))
12440 (properties `((upstream-name . "chromVAR")))
12441 (build-system r-build-system)
12442 (propagated-inputs
12443 `(("r-biocgenerics" ,r-biocgenerics)
12444 ("r-biocparallel" ,r-biocparallel)
12445 ("r-biostrings" ,r-biostrings)
12446 ("r-bsgenome" ,r-bsgenome)
12447 ("r-dt" ,r-dt)
12448 ("r-genomeinfodb" ,r-genomeinfodb)
12449 ("r-genomicranges" ,r-genomicranges)
12450 ("r-ggplot2" ,r-ggplot2)
12451 ("r-iranges" ,r-iranges)
12452 ("r-matrix" ,r-matrix)
12453 ("r-miniui" ,r-miniui)
12454 ("r-nabor" ,r-nabor)
12455 ("r-plotly" ,r-plotly)
12456 ("r-rcolorbrewer" ,r-rcolorbrewer)
12457 ("r-rcpp" ,r-rcpp)
12458 ("r-rcpparmadillo" ,r-rcpparmadillo)
12459 ("r-rsamtools" ,r-rsamtools)
12460 ("r-rtsne" ,r-rtsne)
12461 ("r-s4vectors" ,r-s4vectors)
12462 ("r-shiny" ,r-shiny)
12463 ("r-summarizedexperiment" ,r-summarizedexperiment)
12464 ("r-tfbstools" ,r-tfbstools)))
12465 (native-inputs `(("r-knitr" ,r-knitr)))
12466 (home-page "https://bioconductor.org/packages/release/bioc/html/chromVAR.html")
12467 (synopsis "Determine chromatin variation across regions")
12468 (description
12469 "This package @code{r-chromvar} determines variation in chromatin
12470 accessibility across sets of annotations or peaks. @code{r-chromvar} is
12471 designed primarily for single-cell or sparse chromatin accessibility data like
12472 single cell assay for transposase-accessible chromatin using
12473 sequencing (@code{scATAC-seq} or sparse bulk ATAC or deoxyribonuclease
12474 sequence (@code{DNAse-seq}) experiments.")
12475 (license license:expat)))
12476
12477 (define-public r-singlecellexperiment
12478 (package
12479 (name "r-singlecellexperiment")
12480 (version "1.12.0")
12481 (source
12482 (origin
12483 (method url-fetch)
12484 (uri (bioconductor-uri "SingleCellExperiment" version))
12485 (sha256
12486 (base32
12487 "0wpgb2rhxxlclpmwl08iyfy204f7gpj8ijd0qdy4j41c58bl4qm2"))))
12488 (properties
12489 `((upstream-name . "SingleCellExperiment")))
12490 (build-system r-build-system)
12491 (propagated-inputs
12492 `(("r-biocgenerics" ,r-biocgenerics)
12493 ("r-s4vectors" ,r-s4vectors)
12494 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12495 (native-inputs
12496 `(("r-knitr" ,r-knitr)))
12497 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
12498 (synopsis "S4 classes for single cell data")
12499 (description "This package defines an S4 class for storing data from
12500 single-cell experiments. This includes specialized methods to store and
12501 retrieve spike-in information, dimensionality reduction coordinates and size
12502 factors for each cell, along with the usual metadata for genes and
12503 libraries.")
12504 (license license:gpl3)))
12505
12506 (define-public r-scuttle
12507 (package
12508 (name "r-scuttle")
12509 (version "1.0.4")
12510 (source
12511 (origin
12512 (method url-fetch)
12513 (uri (bioconductor-uri "scuttle" version))
12514 (sha256
12515 (base32
12516 "0vfhxyv81y525qgk0s3bxy1yypj16h1bl7sc1a1jdqx11fxxv2l8"))))
12517 (properties `((upstream-name . "scuttle")))
12518 (build-system r-build-system)
12519 (propagated-inputs
12520 `(("r-beachmat" ,r-beachmat)
12521 ("r-biocgenerics" ,r-biocgenerics)
12522 ("r-biocparallel" ,r-biocparallel)
12523 ("r-delayedarray" ,r-delayedarray)
12524 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
12525 ("r-genomicranges" ,r-genomicranges)
12526 ("r-matrix" ,r-matrix)
12527 ("r-rcpp" ,r-rcpp)
12528 ("r-s4vectors" ,r-s4vectors)
12529 ("r-singlecellexperiment" ,r-singlecellexperiment)
12530 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12531 (native-inputs `(("r-knitr" ,r-knitr)))
12532 (home-page "https://bioconductor.org/packages/scuttle")
12533 (synopsis "Single-cell RNA-Seq analysis utilities")
12534 (description
12535 "This package provides basic utility functions for performing single-cell
12536 analyses, focusing on simple normalization, quality control and data
12537 transformations. It also provides some helper functions to assist development
12538 of other packages.")
12539 (license license:gpl3)))
12540
12541 (define-public r-scater
12542 (package
12543 (name "r-scater")
12544 (version "1.18.6")
12545 (source (origin
12546 (method url-fetch)
12547 (uri (bioconductor-uri "scater" version))
12548 (sha256
12549 (base32
12550 "0k1ls5gqv1zsn1w2kszhmbhwfccfjw8khk36s5zbf90rbbkw5609"))))
12551 (build-system r-build-system)
12552 (propagated-inputs
12553 `(("r-biocgenerics" ,r-biocgenerics)
12554 ("r-biocneighbors" ,r-biocneighbors)
12555 ("r-biocparallel" ,r-biocparallel)
12556 ("r-biocsingular" ,r-biocsingular)
12557 ("r-delayedarray" ,r-delayedarray)
12558 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
12559 ("r-ggbeeswarm" ,r-ggbeeswarm)
12560 ("r-ggplot2" ,r-ggplot2)
12561 ("r-gridextra" ,r-gridextra)
12562 ("r-matrix" ,r-matrix)
12563 ("r-rlang" ,r-rlang)
12564 ("r-s4vectors" ,r-s4vectors)
12565 ("r-scuttle" ,r-scuttle)
12566 ("r-singlecellexperiment" ,r-singlecellexperiment)
12567 ("r-summarizedexperiment" ,r-summarizedexperiment)
12568 ("r-viridis" ,r-viridis)))
12569 (native-inputs
12570 `(("r-knitr" ,r-knitr)))
12571 (home-page "https://github.com/davismcc/scater")
12572 (synopsis "Single-cell analysis toolkit for gene expression data in R")
12573 (description "This package provides a collection of tools for doing
12574 various analyses of single-cell RNA-seq gene expression data, with a focus on
12575 quality control.")
12576 (license license:gpl2+)))
12577
12578 (define-public r-scran
12579 (package
12580 (name "r-scran")
12581 (version "1.18.7")
12582 (source
12583 (origin
12584 (method url-fetch)
12585 (uri (bioconductor-uri "scran" version))
12586 (sha256
12587 (base32
12588 "0hsr58b7xj2cqdkyjdpzyifg5wrl1lbylq2h91zbjh5861qjv2n4"))))
12589 (build-system r-build-system)
12590 (propagated-inputs
12591 `(("r-beachmat" ,r-beachmat)
12592 ("r-bh" ,r-bh)
12593 ("r-biocgenerics" ,r-biocgenerics)
12594 ("r-biocneighbors" ,r-biocneighbors)
12595 ("r-biocparallel" ,r-biocparallel)
12596 ("r-biocsingular" ,r-biocsingular)
12597 ("r-bluster" ,r-bluster)
12598 ("r-delayedarray" ,r-delayedarray)
12599 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
12600 ("r-dqrng" ,r-dqrng)
12601 ("r-edger" ,r-edger)
12602 ("r-igraph" ,r-igraph)
12603 ("r-limma" ,r-limma)
12604 ("r-matrix" ,r-matrix)
12605 ("r-rcpp" ,r-rcpp)
12606 ("r-s4vectors" ,r-s4vectors)
12607 ("r-scuttle" ,r-scuttle)
12608 ("r-singlecellexperiment" ,r-singlecellexperiment)
12609 ("r-statmod" ,r-statmod)
12610 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12611 (native-inputs
12612 `(("r-knitr" ,r-knitr)))
12613 (home-page "https://bioconductor.org/packages/scran")
12614 (synopsis "Methods for single-cell RNA-Seq data analysis")
12615 (description "This package implements a variety of low-level analyses of
12616 single-cell RNA-seq data. Methods are provided for normalization of
12617 cell-specific biases, assignment of cell cycle phase, and detection of highly
12618 variable and significantly correlated genes.")
12619 (license license:gpl3)))
12620
12621 (define-public r-sparsematrixstats
12622 (package
12623 (name "r-sparsematrixstats")
12624 (version "1.2.1")
12625 (source
12626 (origin
12627 (method url-fetch)
12628 (uri (bioconductor-uri "sparseMatrixStats" version))
12629 (sha256
12630 (base32
12631 "01gnmy9zqd0ygm40vqkmqmiwfqmdawj4m81dysmmcdm7z80rn9ii"))))
12632 (properties
12633 `((upstream-name . "sparseMatrixStats")))
12634 (build-system r-build-system)
12635 (propagated-inputs
12636 `(("r-matrix" ,r-matrix)
12637 ("r-matrixgenerics" ,r-matrixgenerics)
12638 ("r-matrixstats" ,r-matrixstats)
12639 ("r-rcpp" ,r-rcpp)))
12640 (native-inputs `(("r-knitr" ,r-knitr)))
12641 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
12642 (synopsis "Summary statistics for rows and columns of sparse matrices")
12643 (description
12644 "This package provides high performance functions for row and column
12645 operations on sparse matrices. Currently, the optimizations are limited to
12646 data in the column sparse format.")
12647 (license license:expat)))
12648
12649 (define-public r-delayedmatrixstats
12650 (package
12651 (name "r-delayedmatrixstats")
12652 (version "1.12.3")
12653 (source
12654 (origin
12655 (method url-fetch)
12656 (uri (bioconductor-uri "DelayedMatrixStats" version))
12657 (sha256
12658 (base32
12659 "1hb8jv5dy3svf7xan6rym7amwdqm5mvl9qx5xhmj1vkb81bizn7h"))))
12660 (properties
12661 `((upstream-name . "DelayedMatrixStats")))
12662 (build-system r-build-system)
12663 (propagated-inputs
12664 `(("r-biocparallel" ,r-biocparallel)
12665 ("r-delayedarray" ,r-delayedarray)
12666 ("r-hdf5array" ,r-hdf5array)
12667 ("r-iranges" ,r-iranges)
12668 ("r-matrix" ,r-matrix)
12669 ("r-matrixgenerics" ,r-matrixgenerics)
12670 ("r-matrixstats" ,r-matrixstats)
12671 ("r-s4vectors" ,r-s4vectors)
12672 ("r-sparsematrixstats" ,r-sparsematrixstats)))
12673 (native-inputs
12674 `(("r-knitr" ,r-knitr)))
12675 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
12676 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
12677 (description
12678 "This package provides a port of the @code{matrixStats} API for use with
12679 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
12680 contains high-performing functions operating on rows and columns of
12681 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
12682 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
12683 are optimized per data type and for subsetted calculations such that both
12684 memory usage and processing time is minimized.")
12685 (license license:expat)))
12686
12687 (define-public r-mscoreutils
12688 (package
12689 (name "r-mscoreutils")
12690 (version "1.2.0")
12691 (source
12692 (origin
12693 (method url-fetch)
12694 (uri (bioconductor-uri "MsCoreUtils" version))
12695 (sha256
12696 (base32
12697 "0fa3bcf2cmzf5y8wjs7pnzs26qwgqnrrl4hj4sa4fp9kv8z80630"))))
12698 (properties `((upstream-name . "MsCoreUtils")))
12699 (build-system r-build-system)
12700 (propagated-inputs
12701 `(("r-mass" ,r-mass)
12702 ("r-rcpp" ,r-rcpp)
12703 ("r-s4vectors" ,r-s4vectors)))
12704 (native-inputs
12705 `(("r-knitr" ,r-knitr)))
12706 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
12707 (synopsis "Core utils for mass spectrometry data")
12708 (description
12709 "This package defines low-level functions for mass spectrometry data and
12710 is independent of any high-level data structures. These functions include
12711 mass spectra processing functions (noise estimation, smoothing, binning),
12712 quantitative aggregation functions (median polish, robust summarisation,
12713 etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
12714 well as misc helper functions, that are used across high-level data structure
12715 within the R for Mass Spectrometry packages.")
12716 (license license:artistic2.0)))
12717
12718 (define-public r-biocio
12719 (package
12720 (name "r-biocio")
12721 (version "1.0.1")
12722 (source
12723 (origin
12724 (method url-fetch)
12725 (uri (bioconductor-uri "BiocIO" version))
12726 (sha256
12727 (base32
12728 "06gg5ra3r7q4b6mz14c2s9d453cnh1lxh517ffl9f8dr8vwv5s18"))))
12729 (properties `((upstream-name . "BiocIO")))
12730 (build-system r-build-system)
12731 (propagated-inputs
12732 `(("r-biocgenerics" ,r-biocgenerics)
12733 ("r-genomicranges" ,r-genomicranges)
12734 ("r-rcurl" ,r-rcurl)
12735 ("r-s4vectors" ,r-s4vectors)))
12736 (native-inputs
12737 `(("r-knitr" ,r-knitr)))
12738 (home-page "https://bioconductor.org/packages/BiocIO")
12739 (synopsis "Standard input and output for Bioconductor packages")
12740 (description
12741 "This package implements `import()` and `export()` standard generics for
12742 importing and exporting biological data formats. `import()` supports
12743 whole-file as well as chunk-wise iterative import. The `import()` interface
12744 optionally provides a standard mechanism for 'lazy' access via `filter()` (on
12745 row or element-like components of the file resource), `select()` (on
12746 column-like components of the file resource) and `collect()`. The `import()`
12747 interface optionally provides transparent access to remote (e.g. via https)
12748 as well as local access. Developers can register a file extension, e.g.,
12749 `.loom` for dispatch from character-based URIs to specific `import()` /
12750 `export()` methods based on classes representing file types, e.g.,
12751 `LoomFile()`.")
12752 (license license:artistic2.0)))
12753
12754 (define-public r-msmseda
12755 (package
12756 (name "r-msmseda")
12757 (version "1.28.0")
12758 (source
12759 (origin
12760 (method url-fetch)
12761 (uri (bioconductor-uri "msmsEDA" version))
12762 (sha256
12763 (base32
12764 "1llmy8msxmrqik3s3439wffma1662vwvvcaz8q0a4g5ridkmdbrx"))))
12765 (properties `((upstream-name . "msmsEDA")))
12766 (build-system r-build-system)
12767 (propagated-inputs
12768 `(("r-gplots" ,r-gplots)
12769 ("r-mass" ,r-mass)
12770 ("r-msnbase" ,r-msnbase)
12771 ("r-rcolorbrewer" ,r-rcolorbrewer)))
12772 (home-page
12773 "https://bioconductor.org/packages/msmsEDA")
12774 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
12775 (description
12776 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
12777 experiments, and visualize de influence of the involved factors.")
12778 (license license:gpl2)))
12779
12780 (define-public r-msmstests
12781 (package
12782 (name "r-msmstests")
12783 (version "1.28.0")
12784 (source
12785 (origin
12786 (method url-fetch)
12787 (uri (bioconductor-uri "msmsTests" version))
12788 (sha256
12789 (base32
12790 "1zsnmzj1qvjdwz7mwg9wrsk5iskpqs0f6jccqn8mxy9dgkskmp0j"))))
12791 (properties `((upstream-name . "msmsTests")))
12792 (build-system r-build-system)
12793 (propagated-inputs
12794 `(("r-edger" ,r-edger)
12795 ("r-msmseda" ,r-msmseda)
12796 ("r-msnbase" ,r-msnbase)
12797 ("r-qvalue" ,r-qvalue)))
12798 (home-page
12799 "https://bioconductor.org/packages/msmsTests")
12800 (synopsis "Differential LC-MS/MS expression tests")
12801 (description
12802 "This package provides statistical tests for label-free LC-MS/MS data
12803 by spectral counts, to discover differentially expressed proteins between two
12804 biological conditions. Three tests are available: Poisson GLM regression,
12805 quasi-likelihood GLM regression, and the negative binomial of the edgeR
12806 package. The three models admit blocking factors to control for nuisance
12807 variables. To assure a good level of reproducibility a post-test filter is
12808 available, where we may set the minimum effect size considered biologicaly
12809 relevant, and the minimum expression of the most abundant condition.")
12810 (license license:gpl2)))
12811
12812 (define-public r-catalyst
12813 (package
12814 (name "r-catalyst")
12815 (version "1.14.1")
12816 (source
12817 (origin
12818 (method url-fetch)
12819 (uri (bioconductor-uri "CATALYST" version))
12820 (sha256
12821 (base32
12822 "04b5kcvkfiw4ina11x3qf5kwrb7056zihm7xp1919bqm8k7nl3mn"))))
12823 (properties `((upstream-name . "CATALYST")))
12824 (build-system r-build-system)
12825 (propagated-inputs
12826 `(("r-circlize" ,r-circlize)
12827 ("r-complexheatmap" ,r-complexheatmap)
12828 ("r-consensusclusterplus" ,r-consensusclusterplus)
12829 ("r-cowplot" ,r-cowplot)
12830 ("r-data-table" ,r-data-table)
12831 ("r-dplyr" ,r-dplyr)
12832 ("r-drc" ,r-drc)
12833 ("r-flowcore" ,r-flowcore)
12834 ("r-flowsom" ,r-flowsom)
12835 ("r-ggplot2" ,r-ggplot2)
12836 ("r-ggrepel" ,r-ggrepel)
12837 ("r-ggridges" ,r-ggridges)
12838 ("r-gridextra" ,r-gridextra)
12839 ("r-magrittr" ,r-magrittr)
12840 ("r-matrix" ,r-matrix)
12841 ("r-matrixstats" ,r-matrixstats)
12842 ("r-nnls" ,r-nnls)
12843 ("r-purrr" ,r-purrr)
12844 ("r-rcolorbrewer" ,r-rcolorbrewer)
12845 ("r-reshape2" ,r-reshape2)
12846 ("r-rtsne" ,r-rtsne)
12847 ("r-s4vectors" ,r-s4vectors)
12848 ("r-scales" ,r-scales)
12849 ("r-scater" ,r-scater)
12850 ("r-singlecellexperiment" ,r-singlecellexperiment)
12851 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12852 (native-inputs
12853 `(("r-knitr" ,r-knitr)))
12854 (home-page
12855 "https://github.com/HelenaLC/CATALYST")
12856 (synopsis "Cytometry data analysis tools")
12857 (description
12858 "This package is Cytometry dATa anALYSis Tools (CATALYST). Mass
12859 cytometry (CyTOF) uses heavy metal isotopes rather than fluorescent tags as
12860 reporters to label antibodies, thereby substantially decreasing spectral
12861 overlap and allowing for examination of over 50 parameters at the single cell
12862 level. While spectral overlap is significantly less pronounced in CyTOF than
12863 flow cytometry, spillover due to detection sensitivity, isotopic impurities,
12864 and oxide formation can impede data interpretability. We designed
12865 CATALYST (Cytometry dATa anALYSis Tools) to provide a pipeline for
12866 preprocessing of cytometry data, including i) normalization using bead
12867 standards, ii) single-cell deconvolution, and iii) bead-based compensation.")
12868 (license license:gpl2+)))
12869
12870 (define-public r-erma
12871 (package
12872 (name "r-erma")
12873 (version "1.6.0")
12874 (source
12875 (origin
12876 (method url-fetch)
12877 (uri (bioconductor-uri "erma" version))
12878 (sha256
12879 (base32
12880 "1k2j1xhv0vwn45xmh8ds0gz812px5hnpgzvp37ngsdn4j5ai1l0k"))))
12881 (build-system r-build-system)
12882 (propagated-inputs
12883 `(("r-annotationdbi" ,r-annotationdbi)
12884 ("r-biobase" ,r-biobase)
12885 ("r-biocgenerics" ,r-biocgenerics)
12886 ("r-biocparallel" ,r-biocparallel)
12887 ("r-genomeinfodb" ,r-genomeinfodb)
12888 ("r-genomicfiles" ,r-genomicfiles)
12889 ("r-genomicranges" ,r-genomicranges)
12890 ("r-ggplot2" ,r-ggplot2)
12891 ("r-homo-sapiens" ,r-homo-sapiens)
12892 ("r-iranges" ,r-iranges)
12893 ("r-rtracklayer" ,r-rtracklayer)
12894 ("r-s4vectors" ,r-s4vectors)
12895 ("r-shiny" ,r-shiny)
12896 ("r-summarizedexperiment" ,r-summarizedexperiment)))
12897 (native-inputs
12898 `(("r-knitr" ,r-knitr)))
12899 (home-page "https://bioconductor.org/packages/erma")
12900 (synopsis "Epigenomic road map adventures")
12901 (description
12902 "The epigenomics road map describes locations of epigenetic marks in DNA
12903 from a variety of cell types. Of interest are locations of histone
12904 modifications, sites of DNA methylation, and regions of accessible chromatin.
12905 This package presents a selection of elements of the road map including
12906 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
12907 by Ernst and Kellis.")
12908 (license license:artistic2.0)))
12909
12910 (define-public r-ggbio
12911 (package
12912 (name "r-ggbio")
12913 (version "1.38.0")
12914 (source
12915 (origin
12916 (method url-fetch)
12917 (uri (bioconductor-uri "ggbio" version))
12918 (sha256
12919 (base32
12920 "0vabil4jzrlv01aibqjhdkvrv2bf2kkpsidrkjj06isqr5fz54lw"))))
12921 (build-system r-build-system)
12922 (arguments
12923 `(#:phases
12924 (modify-phases %standard-phases
12925 ;; See https://github.com/tengfei/ggbio/issues/117
12926 ;; This fix will be included in the next release.
12927 (add-after 'unpack 'fix-typo
12928 (lambda _
12929 (substitute* "R/GGbio-class.R"
12930 (("fechable") "fetchable"))
12931 #t)))))
12932 (propagated-inputs
12933 `(("r-annotationdbi" ,r-annotationdbi)
12934 ("r-annotationfilter" ,r-annotationfilter)
12935 ("r-biobase" ,r-biobase)
12936 ("r-biocgenerics" ,r-biocgenerics)
12937 ("r-biostrings" ,r-biostrings)
12938 ("r-biovizbase" ,r-biovizbase)
12939 ("r-bsgenome" ,r-bsgenome)
12940 ("r-ensembldb" ,r-ensembldb)
12941 ("r-genomeinfodb" ,r-genomeinfodb)
12942 ("r-genomicalignments" ,r-genomicalignments)
12943 ("r-genomicfeatures" ,r-genomicfeatures)
12944 ("r-genomicranges" ,r-genomicranges)
12945 ("r-ggally" ,r-ggally)
12946 ("r-ggplot2" ,r-ggplot2)
12947 ("r-gridextra" ,r-gridextra)
12948 ("r-gtable" ,r-gtable)
12949 ("r-hmisc" ,r-hmisc)
12950 ("r-iranges" ,r-iranges)
12951 ("r-organismdbi" ,r-organismdbi)
12952 ("r-reshape2" ,r-reshape2)
12953 ("r-rlang" ,r-rlang)
12954 ("r-rsamtools" ,r-rsamtools)
12955 ("r-rtracklayer" ,r-rtracklayer)
12956 ("r-s4vectors" ,r-s4vectors)
12957 ("r-scales" ,r-scales)
12958 ("r-summarizedexperiment" ,r-summarizedexperiment)
12959 ("r-variantannotation" ,r-variantannotation)))
12960 (native-inputs
12961 `(("r-knitr" ,r-knitr)))
12962 (home-page "http://www.tengfei.name/ggbio/")
12963 (synopsis "Visualization tools for genomic data")
12964 (description
12965 "The ggbio package extends and specializes the grammar of graphics for
12966 biological data. The graphics are designed to answer common scientific
12967 questions, in particular those often asked of high throughput genomics data.
12968 All core Bioconductor data structures are supported, where appropriate. The
12969 package supports detailed views of particular genomic regions, as well as
12970 genome-wide overviews. Supported overviews include ideograms and grand linear
12971 views. High-level plots include sequence fragment length, edge-linked
12972 interval to data view, mismatch pileup, and several splicing summaries.")
12973 (license license:artistic2.0)))
12974
12975 (define-public r-gqtlbase
12976 (package
12977 (name "r-gqtlbase")
12978 (version "1.21.1")
12979 (source
12980 (origin
12981 (method url-fetch)
12982 (uri (bioconductor-uri "gQTLBase" version))
12983 (sha256
12984 (base32
12985 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
12986 (properties `((upstream-name . "gQTLBase")))
12987 (build-system r-build-system)
12988 (arguments
12989 `(#:phases
12990 (modify-phases %standard-phases
12991 ;; This is an upstream bug.
12992 (add-after 'unpack 'fix-imports
12993 (lambda _
12994 (substitute* "NAMESPACE"
12995 ((".*maxffmode.*") "")
12996 (("importFrom\\(ff,.*") "import(ff)\n"))
12997 #t)))))
12998 (propagated-inputs
12999 `(("r-batchjobs" ,r-batchjobs)
13000 ("r-bbmisc" ,r-bbmisc)
13001 ("r-biocgenerics" ,r-biocgenerics)
13002 ("r-bit" ,r-bit)
13003 ("r-doparallel" ,r-doparallel)
13004 ("r-ff" ,r-ff)
13005 ("r-ffbase" ,r-ffbase)
13006 ("r-foreach" ,r-foreach)
13007 ("r-genomicfiles" ,r-genomicfiles)
13008 ("r-genomicranges" ,r-genomicranges)
13009 ("r-rtracklayer" ,r-rtracklayer)
13010 ("r-s4vectors" ,r-s4vectors)
13011 ("r-summarizedexperiment" ,r-summarizedexperiment)))
13012 (native-inputs
13013 `(("r-knitr" ,r-knitr)))
13014 (home-page "https://bioconductor.org/packages/gQTLBase")
13015 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
13016 (description
13017 "The purpose of this package is to simplify the storage and interrogation
13018 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
13019 and more.")
13020 (license license:artistic2.0)))
13021
13022 (define-public r-gqtlstats
13023 (package
13024 (name "r-gqtlstats")
13025 (version "1.21.3")
13026 (source
13027 (origin
13028 (method url-fetch)
13029 (uri (bioconductor-uri "gQTLstats" version))
13030 (sha256
13031 (base32
13032 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
13033 (properties `((upstream-name . "gQTLstats")))
13034 (build-system r-build-system)
13035 (propagated-inputs
13036 `(("r-annotationdbi" ,r-annotationdbi)
13037 ("r-batchjobs" ,r-batchjobs)
13038 ("r-bbmisc" ,r-bbmisc)
13039 ("r-beeswarm" ,r-beeswarm)
13040 ("r-biobase" ,r-biobase)
13041 ("r-biocgenerics" ,r-biocgenerics)
13042 ("r-doparallel" ,r-doparallel)
13043 ("r-dplyr" ,r-dplyr)
13044 ("r-erma" ,r-erma)
13045 ("r-ffbase" ,r-ffbase)
13046 ("r-foreach" ,r-foreach)
13047 ("r-genomeinfodb" ,r-genomeinfodb)
13048 ("r-genomicfeatures" ,r-genomicfeatures)
13049 ("r-genomicfiles" ,r-genomicfiles)
13050 ("r-genomicranges" ,r-genomicranges)
13051 ("r-ggbeeswarm" ,r-ggbeeswarm)
13052 ("r-ggplot2" ,r-ggplot2)
13053 ("r-gqtlbase" ,r-gqtlbase)
13054 ("r-hardyweinberg" ,r-hardyweinberg)
13055 ("r-homo-sapiens" ,r-homo-sapiens)
13056 ("r-iranges" ,r-iranges)
13057 ("r-limma" ,r-limma)
13058 ("r-mgcv" ,r-mgcv)
13059 ("r-plotly" ,r-plotly)
13060 ("r-reshape2" ,r-reshape2)
13061 ("r-s4vectors" ,r-s4vectors)
13062 ("r-shiny" ,r-shiny)
13063 ("r-snpstats" ,r-snpstats)
13064 ("r-summarizedexperiment" ,r-summarizedexperiment)
13065 ("r-variantannotation" ,r-variantannotation)))
13066 (native-inputs
13067 `(("r-knitr" ,r-knitr)))
13068 (home-page "https://bioconductor.org/packages/gQTLstats")
13069 (synopsis "Computationally efficient analysis for eQTL and allied studies")
13070 (description
13071 "This package provides tools for the computationally efficient analysis
13072 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
13073 The software in this package aims to support refinements and functional
13074 interpretation of members of a collection of association statistics on a
13075 family of feature/genome hypotheses.")
13076 (license license:artistic2.0)))
13077
13078 (define-public r-gviz
13079 (package
13080 (name "r-gviz")
13081 (version "1.34.1")
13082 (source
13083 (origin
13084 (method url-fetch)
13085 (uri (bioconductor-uri "Gviz" version))
13086 (sha256
13087 (base32
13088 "0bmlfz9ri1gkwyl605a2hqi5b8jdpvynrxwghwmrsd657ip6c7n1"))))
13089 (properties `((upstream-name . "Gviz")))
13090 (build-system r-build-system)
13091 (propagated-inputs
13092 `(("r-annotationdbi" ,r-annotationdbi)
13093 ("r-biobase" ,r-biobase)
13094 ("r-biocgenerics" ,r-biocgenerics)
13095 ("r-biomart" ,r-biomart)
13096 ("r-biostrings" ,r-biostrings)
13097 ("r-biovizbase" ,r-biovizbase)
13098 ("r-bsgenome" ,r-bsgenome)
13099 ("r-digest" ,r-digest)
13100 ("r-ensembldb" ,r-ensembldb)
13101 ("r-genomeinfodb" ,r-genomeinfodb)
13102 ("r-genomicalignments" ,r-genomicalignments)
13103 ("r-genomicfeatures" ,r-genomicfeatures)
13104 ("r-genomicranges" ,r-genomicranges)
13105 ("r-iranges" ,r-iranges)
13106 ("r-lattice" ,r-lattice)
13107 ("r-latticeextra" ,r-latticeextra)
13108 ("r-matrixstats" ,r-matrixstats)
13109 ("r-rcolorbrewer" ,r-rcolorbrewer)
13110 ("r-rsamtools" ,r-rsamtools)
13111 ("r-rtracklayer" ,r-rtracklayer)
13112 ("r-s4vectors" ,r-s4vectors)
13113 ("r-xvector" ,r-xvector)))
13114 (native-inputs
13115 `(("r-knitr" ,r-knitr)))
13116 (home-page "https://bioconductor.org/packages/Gviz")
13117 (synopsis "Plotting data and annotation information along genomic coordinates")
13118 (description
13119 "Genomic data analyses requires integrated visualization of known genomic
13120 information and new experimental data. Gviz uses the biomaRt and the
13121 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
13122 and translates this to e.g. gene/transcript structures in viewports of the
13123 grid graphics package. This results in genomic information plotted together
13124 with your data.")
13125 (license license:artistic2.0)))
13126
13127 (define-public r-gwascat
13128 (package
13129 (name "r-gwascat")
13130 (version "2.22.0")
13131 (source
13132 (origin
13133 (method url-fetch)
13134 (uri (bioconductor-uri "gwascat" version))
13135 (sha256
13136 (base32
13137 "1aqi1ny93virnzsxkh9ccx3mws70bgv0r8nwgla09vffb7f16nna"))))
13138 (build-system r-build-system)
13139 (propagated-inputs
13140 `(("r-annotationdbi" ,r-annotationdbi)
13141 ("r-biocfilecache" ,r-biocfilecache)
13142 ("r-biostrings" ,r-biostrings)
13143 ("r-genomeinfodb" ,r-genomeinfodb)
13144 ("r-genomicfeatures" ,r-genomicfeatures)
13145 ("r-genomicranges" ,r-genomicranges)
13146 ("r-iranges" ,r-iranges)
13147 ("r-readr" ,r-readr)
13148 ("r-s4vectors" ,r-s4vectors)
13149 ("r-snpstats" ,r-snpstats)
13150 ("r-variantannotation" ,r-variantannotation)))
13151 (native-inputs
13152 `(("r-knitr" ,r-knitr)))
13153 (home-page "https://bioconductor.org/packages/gwascat")
13154 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
13155 (description
13156 "This package provides tools for representing and modeling data in the
13157 EMBL-EBI GWAS catalog.")
13158 (license license:artistic2.0)))
13159
13160 (define-public r-kegggraph
13161 (package
13162 (name "r-kegggraph")
13163 (version "1.50.0")
13164 (source
13165 (origin
13166 (method url-fetch)
13167 (uri (bioconductor-uri "KEGGgraph" version))
13168 (sha256
13169 (base32 "1h293hn02ysm923bh9gxk87xv663xiqchqcvpaxpla9c3yrgkx2v"))))
13170 (properties `((upstream-name . "KEGGgraph")))
13171 (build-system r-build-system)
13172 (propagated-inputs
13173 `(("r-graph" ,r-graph)
13174 ("r-rcurl" ,r-rcurl)
13175 ("r-xml" ,r-xml)))
13176 (home-page "https://bioconductor.org/packages/KEGGgraph")
13177 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
13178 (description
13179 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
13180 object as well as a collection of tools to analyze, dissect and visualize these
13181 graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
13182 maintaining all essential pathway attributes. The package offers
13183 functionalities including parsing, graph operation, visualization and etc.")
13184 (license license:gpl2+)))
13185
13186 (define-public r-ldblock
13187 (package
13188 (name "r-ldblock")
13189 (version "1.20.0")
13190 (source
13191 (origin
13192 (method url-fetch)
13193 (uri (bioconductor-uri "ldblock" version))
13194 (sha256
13195 (base32
13196 "09i3ikv0axks9g842z1pjsc8x0fba51zyyc218h0bylbi1n9cdkm"))))
13197 (build-system r-build-system)
13198 (propagated-inputs
13199 `(("r-biocgenerics" ,r-biocgenerics)
13200 ("r-ensdb-hsapiens-v75" ,r-ensdb-hsapiens-v75)
13201 ("r-ensembldb" ,r-ensembldb)
13202 ("r-genomeinfodb" ,r-genomeinfodb)
13203 ("r-genomicfiles" ,r-genomicfiles)
13204 ("r-httr" ,r-httr)
13205 ("r-matrix" ,r-matrix)
13206 ("r-rsamtools" ,r-rsamtools)
13207 ("r-snpstats" ,r-snpstats)
13208 ("r-variantannotation" ,r-variantannotation)))
13209 (native-inputs
13210 `(("r-knitr" ,r-knitr)))
13211 (home-page "https://bioconductor.org/packages/ldblock")
13212 (synopsis "Data structures for linkage disequilibrium measures in populations")
13213 (description
13214 "This package defines data structures for @dfn{linkage
13215 disequilibrium} (LD) measures in populations. Its purpose is to simplify
13216 handling of existing population-level data for the purpose of flexibly
13217 defining LD blocks.")
13218 (license license:artistic2.0)))
13219
13220 ;; This is a CRAN package, but it depends on r-snpstats, which is a
13221 ;; Bioconductor package.
13222 (define-public r-ldheatmap
13223 (package
13224 (name "r-ldheatmap")
13225 (version "1.0-4")
13226 (source
13227 (origin
13228 (method url-fetch)
13229 (uri (cran-uri "LDheatmap" version))
13230 (sha256
13231 (base32
13232 "1jp578cf29qcgx95w10lpymlwx2pgjsf0nypwkl9b8g635gkisq7"))))
13233 (properties `((upstream-name . "LDheatmap")))
13234 (build-system r-build-system)
13235 (propagated-inputs
13236 `(("r-genetics" ,r-genetics)
13237 ("r-rcpp" ,r-rcpp)
13238 ("r-snpstats" ,r-snpstats)))
13239 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
13240 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13241 (description
13242 "This package provides tools to produce a graphical display, as a heat
13243 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13244 optionally include the physical locations or genetic map distances of each SNP
13245 on the plot.")
13246 (license license:gpl3)))
13247
13248 ;; This is a CRAN package, but it depends on r-rgraphviz, which is a
13249 ;; Bioconductor package.
13250 (define-public r-abn
13251 (package
13252 (name "r-abn")
13253 (version "2.5-0")
13254 (source
13255 (origin
13256 (method url-fetch)
13257 (uri (cran-uri "abn" version))
13258 (sha256
13259 (base32
13260 "1fqmhw0mhdl6az1gpg0byvx5snhz1pl3fqikhyfjcjrc9xbsq8yw"))))
13261 (build-system r-build-system)
13262 (inputs
13263 `(("gsl" ,gsl)))
13264 (propagated-inputs
13265 `(("r-lme4" ,r-lme4)
13266 ("r-nnet" ,r-nnet)
13267 ("r-rcpp" ,r-rcpp)
13268 ("r-rcpparmadillo" ,r-rcpparmadillo)
13269 ("r-rgraphviz" ,r-rgraphviz)
13270 ("r-rjags" ,r-rjags)))
13271 (home-page "https://r-bayesian-networks.org/")
13272 (synopsis "Modelling multivariate data with additive bayesian networks")
13273 (description
13274 "Bayesian network analysis is a form of probabilistic graphical models
13275 which derives from empirical data a directed acyclic graph, DAG, describing
13276 the dependency structure between random variables. An additive Bayesian
13277 network model consists of a form of a DAG where each node comprises a
13278 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
13279 equivalent to Bayesian multivariate regression using graphical modelling, they
13280 generalises the usual multivariable regression, GLM, to multiple dependent
13281 variables. This package provides routines to help determine optimal Bayesian
13282 network models for a given data set, where these models are used to identify
13283 statistical dependencies in messy, complex data.")
13284 (license license:gpl2+)))
13285
13286 ;; This is a CRAN package, but it depends on r-rsamtools, which is a
13287 ;; Bioconductor package.
13288 (define-public r-spp
13289 (package
13290 (name "r-spp")
13291 (version "1.16.0")
13292 (source (origin
13293 (method url-fetch)
13294 (uri (cran-uri "spp" version))
13295 (sha256
13296 (base32
13297 "08zxxgyp0h6733b08jmml7k4rhfd3mi5dda3jrzid0s184y0z29w"))))
13298 (build-system r-build-system)
13299 (inputs
13300 `(("zlib" ,zlib)))
13301 (propagated-inputs
13302 `(("r-bh" ,r-bh)
13303 ("r-catools" ,r-catools)
13304 ("r-rcpp" ,r-rcpp)
13305 ("r-rsamtools" ,r-rsamtools)))
13306 (home-page "https://cran.r-project.org/web/packages/spp/")
13307 (synopsis "ChIP-Seq processing pipeline")
13308 (description "This package provides tools for analysis of ChIP-seq and
13309 other functional sequencing data.")
13310 (license license:gpl2)))
13311
13312 (define-public r-pathview
13313 (package
13314 (name "r-pathview")
13315 (version "1.30.1")
13316 (source
13317 (origin
13318 (method url-fetch)
13319 (uri (bioconductor-uri "pathview" version))
13320 (sha256
13321 (base32 "11fisiksw1y64ii9q8p2znyp9w8mlqzgiaacmycw59rngkjlmbs4"))))
13322 (properties `((upstream-name . "pathview")))
13323 (build-system r-build-system)
13324 (propagated-inputs
13325 `(("r-annotationdbi" ,r-annotationdbi)
13326 ("r-graph" ,r-graph)
13327 ("r-kegggraph" ,r-kegggraph)
13328 ("r-keggrest" ,r-keggrest)
13329 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
13330 ("r-png" ,r-png)
13331 ("r-rgraphviz" ,r-rgraphviz)
13332 ("r-xml" ,r-xml)))
13333 (home-page "https://pathview.uncc.edu/")
13334 (synopsis "Tool set for pathway based data integration and visualization")
13335 (description
13336 "@code{r-pathview} is a tool set for pathway based data integration and
13337 visualization. It maps and renders a wide variety of biological data on
13338 relevant pathway graphs. All users need is to supply their data and specify
13339 the target pathway. This package automatically downloads the pathway graph
13340 data, parses the data file, maps user data to the pathway, and render pathway
13341 graph with the mapped data. In addition, @code{r-pathview} also seamlessly
13342 integrates with pathway and gene set (enrichment) analysis tools for
13343 large-scale and fully automated analysis.")
13344 (license license:gpl3+)))
13345
13346 (define-public r-snpstats
13347 (package
13348 (name "r-snpstats")
13349 (version "1.40.0")
13350 (source
13351 (origin
13352 (method url-fetch)
13353 (uri (bioconductor-uri "snpStats" version))
13354 (sha256
13355 (base32
13356 "1298a71swwav53yf9kfqkdpach3818plqcbw0lgb6sibs8y8ff24"))))
13357 (properties `((upstream-name . "snpStats")))
13358 (build-system r-build-system)
13359 (inputs `(("zlib" ,zlib)))
13360 (propagated-inputs
13361 `(("r-biocgenerics" ,r-biocgenerics)
13362 ("r-matrix" ,r-matrix)
13363 ("r-survival" ,r-survival)
13364 ("r-zlibbioc" ,r-zlibbioc)))
13365 (home-page "https://bioconductor.org/packages/snpStats")
13366 (synopsis "Methods for SNP association studies")
13367 (description
13368 "This package provides classes and statistical methods for large
13369 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
13370 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
13371 (license license:gpl3)))
13372
13373 (define-public r-chromstar
13374 (package
13375 (name "r-chromstar")
13376 (version "1.16.0")
13377 (source
13378 (origin
13379 (method url-fetch)
13380 (uri (bioconductor-uri "chromstaR" version))
13381 (sha256
13382 (base32
13383 "0vgpb7g2cncdn82hia2yzzachyns2zbd7906662g990qjnp2xlm1"))))
13384 (properties `((upstream-name . "chromstaR")))
13385 (build-system r-build-system)
13386 (propagated-inputs
13387 `(("r-bamsignals" ,r-bamsignals)
13388 ("r-biocgenerics" ,r-biocgenerics)
13389 ("r-chromstardata" ,r-chromstardata)
13390 ("r-doparallel" ,r-doparallel)
13391 ("r-foreach" ,r-foreach)
13392 ("r-genomeinfodb" ,r-genomeinfodb)
13393 ("r-genomicalignments" ,r-genomicalignments)
13394 ("r-genomicranges" ,r-genomicranges)
13395 ("r-ggplot2" ,r-ggplot2)
13396 ("r-iranges" ,r-iranges)
13397 ("r-mvtnorm" ,r-mvtnorm)
13398 ("r-reshape2" ,r-reshape2)
13399 ("r-rsamtools" ,r-rsamtools)
13400 ("r-s4vectors" ,r-s4vectors)))
13401 (native-inputs `(("r-knitr" ,r-knitr)))
13402 (home-page "https://github.com/ataudt/chromstaR")
13403 (synopsis "Chromatin state analysis for ChIP-Seq data")
13404 (description
13405 "This package implements functions for combinatorial and differential
13406 analysis of ChIP-seq data. It includes uni- and multivariate peak-calling,
13407 export to genome browser viewable files, and functions for enrichment
13408 analyses.")
13409 (license license:artistic2.0)))
13410
13411 (define-public r-guitar
13412 (package
13413 (name "r-guitar")
13414 (version "2.6.0")
13415 (source
13416 (origin
13417 (method url-fetch)
13418 (uri (bioconductor-uri "Guitar" version))
13419 (sha256
13420 (base32
13421 "0lvfrpgrvmrz4f4qmsii70hw10h72zh1g1alv2sf6a6ixhndm0mz"))))
13422 (properties `((upstream-name . "Guitar")))
13423 (build-system r-build-system)
13424 (propagated-inputs
13425 `(("r-annotationdbi" ,r-annotationdbi)
13426 ("r-dplyr" ,r-dplyr)
13427 ("r-genomicfeatures" ,r-genomicfeatures)
13428 ("r-genomicranges" ,r-genomicranges)
13429 ("r-ggplot2" ,r-ggplot2)
13430 ("r-knitr" ,r-knitr)
13431 ("r-magrittr" ,r-magrittr)
13432 ("r-rtracklayer" ,r-rtracklayer)))
13433 (native-inputs
13434 `(("r-knitr" ,r-knitr)))
13435 (home-page "https://bioconductor.org/packages/Guitar")
13436 (synopsis "Visualize genomic features")
13437 (description
13438 "This package is designed for visualization of RNA-related genomic
13439 features with respect to the landmarks of RNA transcripts, i.e., transcription
13440 starting site, start codon, stop codon and transcription ending site.")
13441 (license license:gpl2)))
13442
13443 (define-public r-sushi
13444 (package
13445 (name "r-sushi")
13446 (version "1.28.0")
13447 (source (origin
13448 (method url-fetch)
13449 (uri (bioconductor-uri "Sushi" version))
13450 (sha256
13451 (base32
13452 "0ksj4f9z14mjsv6ssg5dwhpldw4r7wpdsln2if5g486mm1c56r8p"))))
13453 (properties `((upstream-name . "Sushi")))
13454 (build-system r-build-system)
13455 (propagated-inputs
13456 `(("r-biomart" ,r-biomart)
13457 ("r-zoo" ,r-zoo)))
13458 (home-page "https://bioconductor.org/packages/Sushi")
13459 (synopsis "Tools for visualizing genomics data")
13460 (description
13461 "This package provides flexible, quantitative, and integrative genomic
13462 visualizations for publication-quality multi-panel figures.")
13463 (license license:gpl2+)))