gnu: Add r-bac.
[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, 2022 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, 2022 Efraim Flashner <efraim@flashner.co.il>
7 ;;; Copyright © 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
8 ;;; Copyright © 2019, 2020, 2021, 2022 Simon Tournier <zimon.toutoune@gmail.com>
9 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
10 ;;; Copyright © 2020, 2021, 2022 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 ;;; Copyright © 2021 Nicolas Vallet <nls.vallet@gmail.com>
15 ;;;
16 ;;; This file is part of GNU Guix.
17 ;;;
18 ;;; GNU Guix is free software; you can redistribute it and/or modify it
19 ;;; under the terms of the GNU General Public License as published by
20 ;;; the Free Software Foundation; either version 3 of the License, or (at
21 ;;; your option) any later version.
22 ;;;
23 ;;; GNU Guix is distributed in the hope that it will be useful, but
24 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;;; GNU General Public License for more details.
27 ;;;
28 ;;; You should have received a copy of the GNU General Public License
29 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
30
31 (define-module (gnu packages bioconductor)
32 #:use-module ((guix licenses) #:prefix license:)
33 #:use-module (guix packages)
34 #:use-module (guix download)
35 #:use-module (guix git-download)
36 #:use-module (guix build-system r)
37 #:use-module (gnu packages)
38 #:use-module (gnu packages autotools)
39 #:use-module (gnu packages base)
40 #:use-module (gnu packages bioinformatics)
41 #:use-module (gnu packages boost)
42 #:use-module (gnu packages cran)
43 #:use-module (gnu packages compression)
44 #:use-module (gnu packages curl)
45 #:use-module (gnu packages docker)
46 #:use-module (gnu packages gcc)
47 #:use-module (gnu packages graph)
48 #:use-module (gnu packages graphviz)
49 #:use-module (gnu packages haskell-xyz)
50 #:use-module (gnu packages image)
51 #:use-module (gnu packages maths)
52 #:use-module (gnu packages netpbm)
53 #:use-module (gnu packages python)
54 #:use-module (gnu packages perl)
55 #:use-module (gnu packages pkg-config)
56 #:use-module (gnu packages statistics)
57 #:use-module (gnu packages web)
58 #:use-module (gnu packages xml)
59 #:use-module (srfi srfi-1))
60
61 \f
62 ;;; Annotations
63
64 (define-public r-org-eck12-eg-db
65 (package
66 (name "r-org-eck12-eg-db")
67 (version "3.12.0")
68 (source
69 (origin
70 (method url-fetch)
71 (uri (bioconductor-uri "org.EcK12.eg.db" version 'annotation))
72 (sha256
73 (base32 "0c4p6jr83k0gm6pvn760yr8xf33wggrfcr6fg7a42a96bcf817gs"))))
74 (properties
75 `((upstream-name . "org.EcK12.eg.db")))
76 (build-system r-build-system)
77 (propagated-inputs
78 (list r-annotationdbi))
79 (home-page "https://bioconductor.org/packages/org.EcK12.eg.db")
80 (synopsis "Genome wide annotation for E coli strain K12")
81 (description
82 "This package provides genome wide annotation for E coli strain K12,
83 primarily based on mapping using Entrez Gene identifiers. Entrez Gene is
84 National Center for Biotechnology Information (NCBI)’s database for
85 gene-specific information. Entrez Gene maintains records from genomes which
86 have been completely sequenced, which have an active research community to
87 submit gene-specific information, or which are scheduled for intense sequence
88 analysis.")
89 (license license:artistic2.0)))
90
91 (define-public r-org-bt-eg-db
92 (package
93 (name "r-org-bt-eg-db")
94 (version "3.13.0")
95 (source
96 (origin
97 (method url-fetch)
98 (uri (bioconductor-uri
99 "org.Bt.eg.db"
100 version
101 'annotation))
102 (sha256
103 (base32
104 "0pwvwyfah8fhvaxdc8zkp3lp1v4mchhzr84r3hb0jx97icdvhafi"))))
105 (properties `((upstream-name . "org.Bt.eg.db")))
106 (build-system r-build-system)
107 (propagated-inputs
108 (list r-annotationdbi))
109 (home-page "https://bioconductor.org/packages/org.Bt.eg.db")
110 (synopsis "Genome wide annotation for Bovine")
111 (description
112 "This package provides genome wide annotations for Bovine, primarily
113 based on mapping using Entrez Gene identifiers.")
114 (license license:artistic2.0)))
115
116 (define-public r-reactome-db
117 (package
118 (name "r-reactome-db")
119 (version "1.70.0")
120 (source
121 (origin
122 (method url-fetch)
123 (uri (bioconductor-uri "reactome.db" version 'annotation))
124 (sha256
125 (base32
126 "05wc4fp0faq6h3kq5rwafnips043as31yq11mrjngfxvf5i10srg"))))
127 (properties `((upstream-name . "reactome.db")))
128 (build-system r-build-system)
129 (propagated-inputs
130 (list r-annotationdbi))
131 (home-page "https://bioconductor.org/packages/reactome.db/")
132 (synopsis "Annotation maps for reactome")
133 (description
134 "This package provides a set of annotation maps for the REACTOME
135 database, assembled using data from REACTOME.")
136 (license license:cc-by4.0)))
137
138 (define-public r-bsgenome-btaurus-ucsc-bostau8
139 (package
140 (name "r-bsgenome-btaurus-ucsc-bostau8")
141 (version "1.4.2")
142 (source (origin
143 (method url-fetch)
144 (uri (bioconductor-uri "BSgenome.Btaurus.UCSC.bosTau8"
145 version 'annotation))
146 (sha256
147 (base32
148 "16wjy1aw9nvx03r7w8yh5w7sw3pn8i9nczd0n0728l6nnyqxlsz6"))))
149 (properties
150 `((upstream-name . "BSgenome.Btaurus.UCSC.bosTau8")))
151 (build-system r-build-system)
152 (propagated-inputs
153 (list r-bsgenome))
154 (home-page
155 "https://www.bioconductor.org/packages/BSgenome.Btaurus.UCSC.bosTau8/")
156 (synopsis "Full genome sequences for Bos taurus (UCSC version bosTau8)")
157 (description "This package provides the full genome sequences for Bos
158 taurus (UCSC version bosTau8).")
159 (license license:artistic2.0)))
160
161 (define-public r-bsgenome-celegans-ucsc-ce6
162 (package
163 (name "r-bsgenome-celegans-ucsc-ce6")
164 (version "1.4.0")
165 (source (origin
166 (method url-fetch)
167 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
168 version 'annotation))
169 (sha256
170 (base32
171 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
172 (properties
173 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
174 (build-system r-build-system)
175 (propagated-inputs
176 (list r-bsgenome))
177 (home-page
178 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
179 (synopsis "Full genome sequences for Worm")
180 (description
181 "This package provides full genome sequences for Caenorhabditis
182 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
183 objects.")
184 (license license:artistic2.0)))
185
186 (define-public r-bsgenome-celegans-ucsc-ce10
187 (package
188 (name "r-bsgenome-celegans-ucsc-ce10")
189 (version "1.4.0")
190 (source (origin
191 (method url-fetch)
192 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
193 version 'annotation))
194 (sha256
195 (base32
196 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
197 (properties
198 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
199 (build-system r-build-system)
200 (propagated-inputs
201 (list r-bsgenome))
202 (home-page
203 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
204 (synopsis "Full genome sequences for Worm")
205 (description
206 "This package provides full genome sequences for Caenorhabditis
207 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
208 objects.")
209 (license license:artistic2.0)))
210
211 (define-public r-bsgenome-dmelanogaster-ucsc-dm6
212 (package
213 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
214 (version "1.4.1")
215 (source (origin
216 (method url-fetch)
217 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
218 version 'annotation))
219 (sha256
220 (base32
221 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
222 (properties
223 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
224 (build-system r-build-system)
225 (propagated-inputs
226 (list r-bsgenome))
227 (home-page
228 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
229 (synopsis "Full genome sequences for Fly")
230 (description
231 "This package provides full genome sequences for Drosophila
232 melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
233 objects.")
234 (license license:artistic2.0)))
235
236 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
237 (package
238 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
239 (version "1.4.0")
240 (source (origin
241 (method url-fetch)
242 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
243 version 'annotation))
244 (sha256
245 (base32
246 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
247 (properties
248 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
249 (build-system r-build-system)
250 (propagated-inputs
251 (list r-bsgenome))
252 (home-page
253 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
254 (synopsis "Full genome sequences for Fly")
255 (description
256 "This package provides full genome sequences for Drosophila
257 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
258 Biostrings objects.")
259 (license license:artistic2.0)))
260
261 (define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
262 (package
263 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
264 (version "1.3.99")
265 (source (origin
266 (method url-fetch)
267 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
268 version 'annotation))
269 (sha256
270 (base32
271 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
272 (properties
273 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
274 (build-system r-build-system)
275 (propagated-inputs
276 (list r-bsgenome r-bsgenome-dmelanogaster-ucsc-dm3))
277 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
278 (synopsis "Full masked genome sequences for Fly")
279 (description
280 "This package provides full masked genome sequences for Drosophila
281 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
282 Biostrings objects. The sequences are the same as in
283 BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
284 masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
285 intra-contig ambiguities (AMB mask), (3) the mask of repeats from
286 RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
287 Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
288 (license license:artistic2.0)))
289
290 (define-public r-bsgenome-drerio-ucsc-danrer11
291 (package
292 (name "r-bsgenome-drerio-ucsc-danrer11")
293 (version "1.4.2")
294 (source
295 (origin
296 (method url-fetch)
297 (uri (bioconductor-uri "BSgenome.Drerio.UCSC.danRer11"
298 version 'annotation))
299 (sha256
300 (base32 "08a928mqzv2jxngjcs4yr6ni1b9z9al6jdngwi438j8hm41cwk4v"))))
301 (properties `((upstream-name . "BSgenome.Drerio.UCSC.danRer11")))
302 (build-system r-build-system)
303 (propagated-inputs
304 (list r-bsgenome))
305 (home-page "https://bioconductor.org/packages/BSgenome.Drerio.UCSC.danRer11")
306 (synopsis "Full genome sequences for Danio rerio (UCSC version danRer11)")
307 (description
308 "This package provides full genome sequences for Danio rerio (Zebrafish)
309 as provided by UCSC (danRer11, May 2017) and stored in Biostrings objects.")
310 (license license:artistic2.0)))
311
312 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
313 (package
314 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
315 (version "0.99.1")
316 (source (origin
317 (method url-fetch)
318 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
319 version 'annotation))
320 (sha256
321 (base32
322 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
323 (properties
324 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
325 (build-system r-build-system)
326 (propagated-inputs
327 (list r-bsgenome))
328 (home-page
329 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
330 (synopsis "Full genome sequences for Homo sapiens")
331 (description
332 "This package provides full genome sequences for Homo sapiens from
333 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
334 (license license:artistic2.0)))
335
336 (define-public r-bsgenome-hsapiens-ncbi-grch38
337 (package
338 (name "r-bsgenome-hsapiens-ncbi-grch38")
339 (version "1.3.1000")
340 (source
341 (origin
342 (method url-fetch)
343 (uri (bioconductor-uri "BSgenome.Hsapiens.NCBI.GRCh38"
344 version 'annotation))
345 (sha256
346 (base32
347 "0y75qdq578fh6420vbvsbwmdw8jvr3g06qli2h3vj3pxmjykh9c1"))))
348 (properties `((upstream-name . "BSgenome.Hsapiens.NCBI.GRCh38")))
349 (build-system r-build-system)
350 (propagated-inputs (list r-bsgenome))
351 (home-page
352 "https://bioconductor.org/packages/release/data/annotation/html/\
353 BSgenome.Hsapiens.NCBI.GRCh38.html")
354 (synopsis "Full genome sequences for Homo sapiens (GRCh38)")
355 (description
356 "This package provides full genome sequences for Homo sapiens (Human) as
357 provided by NCBI (GRCh38, 2013-12-17) and stored in Biostrings objects.")
358 (license license:artistic2.0)))
359
360 (define-public r-bsgenome-hsapiens-ucsc-hg19-masked
361 (package
362 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
363 (version "1.3.993")
364 (source
365 (origin
366 (method url-fetch)
367 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
368 version 'annotation))
369 (sha256
370 (base32 "19533ihgad67bzhavycv6z708012ylz9cw1qdfmk2b7ikf3kiaz9"))))
371 (properties
372 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
373 (build-system r-build-system)
374 (propagated-inputs
375 (list r-bsgenome r-bsgenome-hsapiens-ucsc-hg19))
376 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
377 (synopsis "Full masked genome sequences for Homo sapiens")
378 (description
379 "This package provides full genome sequences for Homo sapiens (Human) as
380 provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
381 sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
382 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
383 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
384 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
385 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
386 default.")
387 (license license:artistic2.0)))
388
389 (define-public r-bsgenome-mmusculus-ucsc-mm9
390 (package
391 (name "r-bsgenome-mmusculus-ucsc-mm9")
392 (version "1.4.0")
393 (source (origin
394 (method url-fetch)
395 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
396 version 'annotation))
397 (sha256
398 (base32
399 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
400 (properties
401 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
402 (build-system r-build-system)
403 (propagated-inputs
404 (list r-bsgenome))
405 (home-page
406 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
407 (synopsis "Full genome sequences for Mouse")
408 (description
409 "This package provides full genome sequences for Mus musculus (Mouse) as
410 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
411 (license license:artistic2.0)))
412
413 (define-public r-bsgenome-mmusculus-ucsc-mm9-masked
414 (package
415 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
416 (version "1.3.99")
417 (source (origin
418 (method url-fetch)
419 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
420 version 'annotation))
421 (sha256
422 (base32
423 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
424 (properties
425 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
426 (build-system r-build-system)
427 (propagated-inputs
428 (list r-bsgenome r-bsgenome-mmusculus-ucsc-mm9))
429 (home-page "https://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
430 (synopsis "Full masked genome sequences for Mouse")
431 (description
432 "This package provides full genome sequences for Mus musculus (Mouse) as
433 provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
434 sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
435 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
436 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
437 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
438 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
439 default." )
440 (license license:artistic2.0)))
441
442 (define-public r-bsgenome-mmusculus-ucsc-mm10
443 (package
444 (name "r-bsgenome-mmusculus-ucsc-mm10")
445 (version "1.4.0")
446 (source (origin
447 (method url-fetch)
448 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
449 version 'annotation))
450 (sha256
451 (base32
452 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
453 (properties
454 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
455 (build-system r-build-system)
456 (propagated-inputs
457 (list r-bsgenome))
458 (home-page
459 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
460 (synopsis "Full genome sequences for Mouse")
461 (description
462 "This package provides full genome sequences for Mus
463 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
464 in Biostrings objects.")
465 (license license:artistic2.0)))
466
467 (define-public r-genomeinfodbdata
468 (package
469 (name "r-genomeinfodbdata")
470 (version "1.2.0")
471 (source (origin
472 (method url-fetch)
473 (uri (bioconductor-uri "GenomeInfoDbData" version 'annotation))
474 (sha256
475 (base32
476 "0di6nlqpsyqf693k2na65ayqldih563x3zfrczpqc5q2hl5kg35c"))))
477 (properties
478 `((upstream-name . "GenomeInfoDbData")))
479 (build-system r-build-system)
480 (home-page "https://bioconductor.org/packages/GenomeInfoDbData")
481 (synopsis "Species and taxonomy ID look up tables for GenomeInfoDb")
482 (description "This package contains data for mapping between NCBI taxonomy
483 ID and species. It is used by functions in the GenomeInfoDb package.")
484 (license license:artistic2.0)))
485
486 (define-public r-go-db
487 (package
488 (name "r-go-db")
489 (version "3.7.0")
490 (source (origin
491 (method url-fetch)
492 (uri (bioconductor-uri "GO.db" version 'annotation))
493 (sha256
494 (base32
495 "0i3wcf5h3n0dawzc1hy0kv74f06j80c47n4p3g3fmrcxlhi3jpa5"))))
496 (properties
497 `((upstream-name . "GO.db")))
498 (build-system r-build-system)
499 (propagated-inputs
500 (list r-annotationdbi))
501 (home-page "https://bioconductor.org/packages/GO.db")
502 (synopsis "Annotation maps describing the entire Gene Ontology")
503 (description
504 "The purpose of this GO.db annotation package is to provide detailed
505 information about the latest version of the Gene Ontologies.")
506 (license license:artistic2.0)))
507
508 (define-public r-homo-sapiens
509 (package
510 (name "r-homo-sapiens")
511 (version "1.3.1")
512 (source (origin
513 (method url-fetch)
514 (uri (bioconductor-uri "Homo.sapiens" version 'annotation))
515 (sha256
516 (base32
517 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
518 (properties
519 `((upstream-name . "Homo.sapiens")))
520 (build-system r-build-system)
521 (propagated-inputs
522 (list r-genomicfeatures
523 r-go-db
524 r-org-hs-eg-db
525 r-txdb-hsapiens-ucsc-hg19-knowngene
526 r-organismdbi
527 r-annotationdbi))
528 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
529 (synopsis "Annotation package for the Homo.sapiens object")
530 (description
531 "This package contains the Homo.sapiens object to access data from
532 several related annotation packages.")
533 (license license:artistic2.0)))
534
535 (define-public r-mus-musculus
536 (package
537 (name "r-mus-musculus")
538 (version "1.3.1")
539 (source
540 (origin
541 (method url-fetch)
542 (uri (bioconductor-uri "Mus.musculus" version 'annotation))
543 (sha256
544 (base32
545 "143zdf83gbfqhy8jm9df7gzhw5q3a64jrjrxrzjf0zd76j8s8j6y"))))
546 (properties `((upstream-name . "Mus.musculus")))
547 (build-system r-build-system)
548 (propagated-inputs
549 (list r-annotationdbi
550 r-genomicfeatures
551 r-go-db
552 r-org-mm-eg-db
553 r-organismdbi
554 r-txdb-mmusculus-ucsc-mm10-knowngene))
555 (home-page "https://bioconductor.org/packages/Mus.musculus")
556 (synopsis "Annotation package for the Mus.musculus object")
557 (description
558 "This package contains the @code{Mus.musculus} object to access data
559 from several related annotation packages.")
560 (license license:artistic2.0)))
561
562 (define-public r-illuminahumanmethylation450kanno-ilmn12-hg19
563 (package
564 (name "r-illuminahumanmethylation450kanno-ilmn12-hg19")
565 (version "0.6.0")
566 (source
567 (origin
568 (method url-fetch)
569 (uri (bioconductor-uri
570 "IlluminaHumanMethylation450kanno.ilmn12.hg19"
571 version 'annotation))
572 (sha256
573 (base32
574 "059vlxsx3p3fcnywwirahsc6mlk813zpqnbv0jsrag6x5bb8z6r4"))))
575 (properties
576 `((upstream-name
577 . "IlluminaHumanMethylation450kanno.ilmn12.hg19")))
578 (build-system r-build-system)
579 (propagated-inputs (list r-minfi))
580 (home-page
581 "https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19/")
582 (synopsis "Annotation for Illumina's 450k methylation arrays")
583 (description
584 "This package provides manifests and annotation for Illumina's 450k array
585 data.")
586 (license license:artistic2.0)))
587
588 (define-public r-org-ce-eg-db
589 (package
590 (name "r-org-ce-eg-db")
591 (version "3.7.0")
592 (source (origin
593 (method url-fetch)
594 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
595 (sha256
596 (base32
597 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
598 (properties
599 `((upstream-name . "org.Ce.eg.db")))
600 (build-system r-build-system)
601 (propagated-inputs
602 (list r-annotationdbi))
603 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
604 (synopsis "Genome wide annotation for Worm")
605 (description
606 "This package provides mappings from Entrez gene identifiers to various
607 annotations for the genome of the model worm Caenorhabditis elegans.")
608 (license license:artistic2.0)))
609
610 (define-public r-org-dm-eg-db
611 (package
612 (name "r-org-dm-eg-db")
613 (version "3.7.0")
614 (source (origin
615 (method url-fetch)
616 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
617 (sha256
618 (base32
619 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
620 (properties
621 `((upstream-name . "org.Dm.eg.db")))
622 (build-system r-build-system)
623 (propagated-inputs
624 (list r-annotationdbi))
625 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
626 (synopsis "Genome wide annotation for Fly")
627 (description
628 "This package provides mappings from Entrez gene identifiers to various
629 annotations for the genome of the model fruit fly Drosophila melanogaster.")
630 (license license:artistic2.0)))
631
632 (define-public r-org-dr-eg-db
633 (package
634 (name "r-org-dr-eg-db")
635 (version "3.7.0")
636 (source (origin
637 (method url-fetch)
638 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
639 (sha256
640 (base32
641 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
642 (properties
643 `((upstream-name . "org.Dr.eg.db")))
644 (build-system r-build-system)
645 (propagated-inputs
646 (list r-annotationdbi))
647 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
648 (synopsis "Annotation for Zebrafish")
649 (description
650 "This package provides genome wide annotations for Zebrafish, primarily
651 based on mapping using Entrez Gene identifiers.")
652 (license license:artistic2.0)))
653
654 (define-public r-org-hs-eg-db
655 (package
656 (name "r-org-hs-eg-db")
657 (version "3.14.0")
658 (source (origin
659 (method url-fetch)
660 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
661 (sha256
662 (base32
663 "0mnddv42ll0sc0zxf7hkgilslykbvfn7xgxg1g8qi57q2dmpwb6j"))))
664 (properties
665 `((upstream-name . "org.Hs.eg.db")))
666 (build-system r-build-system)
667 (propagated-inputs
668 (list r-annotationdbi))
669 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
670 (synopsis "Genome wide annotation for Human")
671 (description
672 "This package contains genome-wide annotations for Human, primarily based
673 on mapping using Entrez Gene identifiers.")
674 (license license:artistic2.0)))
675
676 (define-public r-org-mm-eg-db
677 (package
678 (name "r-org-mm-eg-db")
679 (version "3.7.0")
680 (source (origin
681 (method url-fetch)
682 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
683 (sha256
684 (base32
685 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
686 (properties
687 `((upstream-name . "org.Mm.eg.db")))
688 (build-system r-build-system)
689 (propagated-inputs
690 (list r-annotationdbi))
691 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
692 (synopsis "Genome wide annotation for Mouse")
693 (description
694 "This package provides mappings from Entrez gene identifiers to various
695 annotations for the genome of the model mouse Mus musculus.")
696 (license license:artistic2.0)))
697
698 (define-public r-bsgenome-hsapiens-ucsc-hg19
699 (package
700 (name "r-bsgenome-hsapiens-ucsc-hg19")
701 (version "1.4.3")
702 (source (origin
703 (method url-fetch)
704 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
705 version 'annotation))
706 (sha256
707 (base32
708 "06lx7q7i52lg3vkjkqy492z9ianzgi4nhs9m1jrxjjb4hgbnbyjv"))))
709 (properties
710 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
711 (build-system r-build-system)
712 (propagated-inputs
713 (list r-bsgenome))
714 (home-page
715 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
716 (synopsis "Full genome sequences for Homo sapiens")
717 (description
718 "This package provides full genome sequences for Homo sapiens as provided
719 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
720 (license license:artistic2.0)))
721
722 (define-public r-bsgenome-hsapiens-ucsc-hg38
723 (package
724 (name "r-bsgenome-hsapiens-ucsc-hg38")
725 (version "1.4.4")
726 (source (origin
727 (method url-fetch)
728 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg38"
729 version 'annotation))
730 (sha256
731 (base32 "03xmh6q99nqjxz29m6j0ymxlk22jq0nlvpf4a2yhg3hgnxqkakh2"))))
732 (properties
733 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg38")))
734 (build-system r-build-system)
735 (propagated-inputs
736 (list r-bsgenome))
737 (home-page
738 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg38/")
739 (synopsis "Full genome sequences for Homo sapiens")
740 (description
741 "This package provides full genome sequences for Homo sapiens (Human)
742 as provided by UCSC (hg38, Dec. 2013) and stored in Biostrings objects.")
743 (license license:artistic2.0)))
744
745 (define-public r-ensdb-hsapiens-v75
746 (package
747 (name "r-ensdb-hsapiens-v75")
748 (version "2.99.0")
749 (source
750 (origin
751 (method url-fetch)
752 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
753 (sha256
754 (base32
755 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
756 (properties
757 `((upstream-name . "EnsDb.Hsapiens.v75")))
758 (build-system r-build-system)
759 (propagated-inputs
760 (list r-ensembldb))
761 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
762 (synopsis "Ensembl based annotation package")
763 (description
764 "This package exposes an annotation database generated from Ensembl.")
765 (license license:artistic2.0)))
766
767 (define-public r-ensdb-hsapiens-v86
768 (package
769 (name "r-ensdb-hsapiens-v86")
770 (version "2.99.0")
771 (source
772 (origin
773 (method url-fetch)
774 (uri (bioconductor-uri "EnsDb.Hsapiens.v86" version 'annotation))
775 (sha256
776 (base32 "1gp7xrzddpvmh2vrcp571wyy00skxgxfl39ksj4h0hm1qay0fb2m"))))
777 (properties `((upstream-name . "EnsDb.Hsapiens.v86")))
778 (build-system r-build-system)
779 (propagated-inputs (list r-ensembldb))
780 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v86")
781 (synopsis "Ensembl based annotation package")
782 (description "This package exposes an annotation database generated from
783 Ensembl.")
784 (license license:artistic2.0)))
785
786 (define-public r-ensdb-mmusculus-v79
787 (package
788 (name "r-ensdb-mmusculus-v79")
789 (version "2.99.0")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (bioconductor-uri "EnsDb.Mmusculus.v79" version 'annotation))
794 (sha256
795 (base32 "1zpmq7v55if6q9r0h883q9k8l70ym20b01m9hxf121wb256rl9f7"))))
796 (properties `((upstream-name . "EnsDb.Mmusculus.v79")))
797 (build-system r-build-system)
798 (propagated-inputs (list r-ensembldb))
799 (home-page "https://bioconductor.org/packages/EnsDb.Mmusculus.v79")
800 (synopsis "Ensembl based annotation package")
801 (description "This package exposes an annotation database generated from
802 Ensembl.")
803 (license license:artistic2.0)))
804
805 (define-public r-snplocs-hsapiens-dbsnp144-grch37
806 (package
807 (name "r-snplocs-hsapiens-dbsnp144-grch37")
808 (version "0.99.20")
809 (source (origin
810 (method url-fetch)
811 (uri (bioconductor-uri "SNPlocs.Hsapiens.dbSNP144.GRCh37"
812 version 'annotation))
813 (sha256
814 (base32
815 "1z8kx43ki1jvj7ms7pcybakcdimfwr6zpjvspkjmma97bdz093iz"))))
816 (build-system r-build-system)
817 ;; As this package provides little more than a very large data file it
818 ;; doesn't make sense to build substitutes.
819 (arguments `(#:substitutable? #f))
820 (propagated-inputs
821 (list r-biocgenerics
822 r-s4vectors
823 r-iranges
824 r-genomeinfodb
825 r-genomicranges
826 r-bsgenome
827 r-biostrings))
828 (home-page
829 "https://bioconductor.org/packages/SNPlocs.Hsapiens.dbSNP144.GRCh37/")
830 (synopsis "SNP locations for Homo sapiens (dbSNP Build 144)")
831 (description "This package provides SNP locations and alleles for Homo
832 sapiens extracted from NCBI dbSNP Build 144. The source data files used for
833 this package were created by NCBI on May 29-30, 2015, and contain SNPs mapped
834 to reference genome GRCh37.p13. Note that the GRCh37.p13 genome is a
835 patched version of GRCh37. However the patch doesn't alter chromosomes 1-22,
836 X, Y, MT. GRCh37 itself is the same as the hg19 genome from UCSC *except* for
837 the mitochondrion chromosome. Therefore, the SNPs in this package can be
838 injected in @code{BSgenome.Hsapiens.UCSC.hg19} and they will land at the
839 correct position but this injection will exclude chrM (i.e. nothing will be
840 injected in that sequence).")
841 (license license:artistic2.0)))
842
843 (define-public r-txdb-dmelanogaster-ucsc-dm6-ensgene
844 (package
845 (name "r-txdb-dmelanogaster-ucsc-dm6-ensgene")
846 (version "3.12.0")
847 (source
848 (origin
849 (method url-fetch)
850 (uri (bioconductor-uri "TxDb.Dmelanogaster.UCSC.dm6.ensGene"
851 version 'annotation))
852 (sha256
853 (base32
854 "0yij7zyqkmmr13389rs2gfa5anvvw648nnl1kjbsgvyxkggif8q4"))))
855 (properties
856 `((upstream-name . "TxDb.Dmelanogaster.UCSC.dm6.ensGene")))
857 (build-system r-build-system)
858 (propagated-inputs
859 (list r-annotationdbi r-genomicfeatures))
860 (home-page
861 "https://bioconductor.org/packages/TxDb.Dmelanogaster.UCSC.dm6.ensGene")
862 (synopsis "Annotation package for TxDb object(s)")
863 (description
864 "This package exposes an annotation databases generated from UCSC by
865 exposing these as TxDb objects.")
866 (license license:artistic2.0)))
867
868 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
869 (package
870 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
871 (version "3.2.2")
872 (source (origin
873 (method url-fetch)
874 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
875 version 'annotation))
876 (sha256
877 (base32
878 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
879 (properties
880 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
881 (build-system r-build-system)
882 (propagated-inputs
883 (list r-genomicfeatures))
884 (home-page
885 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
886 (synopsis "Annotation package for human genome in TxDb format")
887 (description
888 "This package provides an annotation database of Homo sapiens genome
889 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
890 track. The database is exposed as a @code{TxDb} object.")
891 (license license:artistic2.0)))
892
893 (define-public r-txdb-hsapiens-ucsc-hg38-knowngene
894 (package
895 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
896 (version "3.15.0")
897 (source (origin
898 (method url-fetch)
899 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
900 version 'annotation))
901 (sha256
902 (base32 "1y9fqhkk5wgny43bxc0j82afy49vz34rblcmcfmwavngdkpnj879"))))
903 (properties
904 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
905 (build-system r-build-system)
906 (propagated-inputs
907 (list r-annotationdbi r-genomicfeatures))
908 (home-page
909 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
910 (synopsis "Annotation package for human genome in TxDb format")
911 (description
912 "This package provides an annotation database of Homo sapiens genome
913 data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
914 track. The database is exposed as a @code{TxDb} object.")
915 (license license:artistic2.0)))
916
917 (define-public r-txdb-mmusculus-ucsc-mm9-knowngene
918 (package
919 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
920 (version "3.2.2")
921 (source (origin
922 (method url-fetch)
923 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
924 version 'annotation))
925 (sha256
926 (base32
927 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
928 (properties
929 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
930 (build-system r-build-system)
931 (propagated-inputs
932 (list r-genomicfeatures r-annotationdbi))
933 (home-page
934 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
935 (synopsis "Annotation package for mouse genome in TxDb format")
936 (description
937 "This package provides an annotation database of Mouse genome data. It
938 is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
939 database is exposed as a @code{TxDb} object.")
940 (license license:artistic2.0)))
941
942 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
943 (package
944 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
945 (version "3.10.0")
946 (source (origin
947 (method url-fetch)
948 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
949 version 'annotation))
950 (sha256
951 (base32
952 "0xs9npnhbwll7p62hibs02y4ac23jchdcr25i6a7qwq1kms82qk9"))))
953 (properties
954 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
955 (build-system r-build-system)
956 (propagated-inputs
957 (list r-bsgenome r-genomicfeatures r-annotationdbi))
958 (home-page
959 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
960 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
961 (description
962 "This package loads a TxDb object, which is an R interface to
963 prefabricated databases contained in this package. This package provides
964 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
965 based on the knownGene track.")
966 (license license:artistic2.0)))
967
968 (define-public r-txdb-celegans-ucsc-ce6-ensgene
969 (package
970 (name "r-txdb-celegans-ucsc-ce6-ensgene")
971 (version "3.2.2")
972 (source
973 (origin
974 (method url-fetch)
975 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
976 version 'annotation))
977 (sha256
978 (base32
979 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
980 (properties
981 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
982 (build-system r-build-system)
983 (propagated-inputs
984 (list r-annotationdbi r-genomicfeatures))
985 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
986 (synopsis "Annotation package for C elegans TxDb objects")
987 (description
988 "This package exposes a C elegans annotation database generated from UCSC
989 by exposing these as TxDb objects.")
990 (license license:artistic2.0)))
991
992 (define-public r-fdb-infiniummethylation-hg19
993 (package
994 (name "r-fdb-infiniummethylation-hg19")
995 (version "2.2.0")
996 (source (origin
997 (method url-fetch)
998 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
999 version 'annotation))
1000 (sha256
1001 (base32
1002 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
1003 (properties
1004 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
1005 (build-system r-build-system)
1006 (propagated-inputs
1007 (list r-biostrings r-genomicfeatures r-annotationdbi r-org-hs-eg-db
1008 r-txdb-hsapiens-ucsc-hg19-knowngene))
1009 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
1010 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
1011 (description
1012 "This is an annotation package for Illumina Infinium DNA methylation
1013 probes. It contains the compiled HumanMethylation27 and HumanMethylation450
1014 annotations.")
1015 (license license:artistic2.0)))
1016
1017 (define-public r-illuminahumanmethylationepicmanifest
1018 (package
1019 (name "r-illuminahumanmethylationepicmanifest")
1020 (version "0.3.0")
1021 (source (origin
1022 (method url-fetch)
1023 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
1024 version 'annotation))
1025 (sha256
1026 (base32
1027 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
1028 (properties
1029 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
1030 (build-system r-build-system)
1031 (propagated-inputs
1032 (list r-minfi))
1033 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
1034 (synopsis "Manifest for Illumina's EPIC methylation arrays")
1035 (description
1036 "This is a manifest package for Illumina's EPIC methylation arrays.")
1037 (license license:artistic2.0)))
1038
1039 (define-public r-do-db
1040 (package
1041 (name "r-do-db")
1042 (version "2.9")
1043 (source (origin
1044 (method url-fetch)
1045 (uri (bioconductor-uri "DO.db" version 'annotation))
1046 (sha256
1047 (base32
1048 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
1049 (properties
1050 `((upstream-name . "DO.db")))
1051 (build-system r-build-system)
1052 (propagated-inputs
1053 (list r-annotationdbi))
1054 (home-page "https://www.bioconductor.org/packages/DO.db/")
1055 (synopsis "Annotation maps describing the entire Disease Ontology")
1056 (description
1057 "This package provides a set of annotation maps describing the entire
1058 Disease Ontology.")
1059 (license license:artistic2.0)))
1060
1061 (define-public r-hgu133plus2-db
1062 (package
1063 (name "r-hgu133plus2-db")
1064 (version "3.13.0")
1065 (source
1066 (origin
1067 (method url-fetch)
1068 (uri (bioconductor-uri "hgu133plus2.db" version 'annotation))
1069 (sha256
1070 (base32 "0i6cfk7ahql4fcgrq0dai9gkjbsahyzd9iv4lqv1ad58fzkmipnx"))))
1071 (properties `((upstream-name . "hgu133plus2.db")))
1072 (build-system r-build-system)
1073 (propagated-inputs (list r-annotationdbi r-org-hs-eg-db))
1074 (home-page "https://bioconductor.org/packages/hgu133plus2.db")
1075 (synopsis "Affymetrix Affymetrix HG-U133_Plus_2 Array annotation data")
1076 (description
1077 "This package provides Affymetrix HG-U133_Plus_2 array annotation
1078 data (chip hgu133plus2) assembled using data from public repositories.")
1079 (license license:artistic2.0)))
1080
1081 (define-public r-pfam-db
1082 (package
1083 (name "r-pfam-db")
1084 (version "3.15.0")
1085 (source
1086 (origin
1087 (method url-fetch)
1088 (uri (bioconductor-uri "PFAM.db" version 'annotation))
1089 (sha256
1090 (base32 "03vjfb9vx1gxrw1jkq6y4i46qhjj9z2mkdiflglbd6kpfrgnl0z7"))))
1091 (properties `((upstream-name . "PFAM.db")))
1092 (build-system r-build-system)
1093 (propagated-inputs
1094 (list r-annotationdbi))
1095 (home-page "https://bioconductor.org/packages/PFAM.db")
1096 (synopsis "Set of protein ID mappings for PFAM")
1097 (description
1098 "This package provides a set of protein ID mappings for PFAM, assembled
1099 using data from public repositories.")
1100 (license license:artistic2.0)))
1101
1102 (define-public r-phastcons100way-ucsc-hg19
1103 (package
1104 (name "r-phastcons100way-ucsc-hg19")
1105 (version "3.7.2")
1106 (source
1107 (origin
1108 (method url-fetch)
1109 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
1110 version 'annotation))
1111 (sha256
1112 (base32
1113 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
1114 (properties
1115 `((upstream-name . "phastCons100way.UCSC.hg19")))
1116 (build-system r-build-system)
1117 (propagated-inputs
1118 (list r-bsgenome
1119 r-genomeinfodb
1120 r-genomicranges
1121 r-genomicscores
1122 r-iranges
1123 r-s4vectors))
1124 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
1125 (synopsis "UCSC phastCons conservation scores for hg19")
1126 (description
1127 "This package provides UCSC phastCons conservation scores for the human
1128 genome (hg19) calculated from multiple alignments with other 99 vertebrate
1129 species.")
1130 (license license:artistic2.0)))
1131
1132 \f
1133 ;;; Experiment data
1134
1135 (define-public r-abadata
1136 (package
1137 (name "r-abadata")
1138 (version "1.12.0")
1139 (source (origin
1140 (method url-fetch)
1141 (uri (bioconductor-uri "ABAData" version 'experiment))
1142 (sha256
1143 (base32
1144 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
1145 (properties
1146 `((upstream-name . "ABAData")))
1147 (build-system r-build-system)
1148 (propagated-inputs
1149 (list r-annotationdbi))
1150 (home-page "https://www.bioconductor.org/packages/ABAData/")
1151 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
1152 (description
1153 "This package provides the data for the gene expression enrichment
1154 analysis conducted in the package ABAEnrichment. The package includes three
1155 datasets which are derived from the Allen Brain Atlas:
1156
1157 @enumerate
1158 @item Gene expression data from Human Brain (adults) averaged across donors,
1159 @item Gene expression data from the Developing Human Brain pooled into five
1160 age categories and averaged across donors, and
1161 @item a developmental effect score based on the Developing Human Brain
1162 expression data.
1163 @end enumerate
1164
1165 All datasets are restricted to protein coding genes.")
1166 (license license:gpl2+)))
1167
1168 (define-public r-adductdata
1169 (package
1170 (name "r-adductdata")
1171 (version "1.12.0")
1172 (source (origin
1173 (method url-fetch)
1174 (uri (bioconductor-uri "adductData" version 'experiment))
1175 (sha256
1176 (base32 "02r7p1645vhhf7wn5x0aklmf7l97h6fjb8v9mldim4waccmpyg48"))))
1177 (properties `((upstream-name . "adductData")))
1178 (build-system r-build-system)
1179 (propagated-inputs (list r-annotationhub r-experimenthub))
1180 (native-inputs (list r-knitr))
1181 (home-page "https://bioconductor.org/packages/adductData")
1182 (synopsis "Data from untargeted mass spectrometry of modifications to Cys34")
1183 (description
1184 "This package contains data from untargeted @dfn{mass spectrometry} (MS)
1185 of modifications to @dfn{oxidized cysteine} (Cys) 34 in @dfn{human serum
1186 albumin} (HSA).")
1187 (license license:artistic2.0)))
1188
1189 (define-public r-aneufinderdata
1190 (package
1191 (name "r-aneufinderdata")
1192 (version "1.24.0")
1193 (source (origin
1194 (method url-fetch)
1195 (uri (bioconductor-uri "AneuFinderData" version 'experiment))
1196 (sha256
1197 (base32 "0cncb8km0sc2xh95rgnnm38kys5ml0n8gh8cl6x7ls1xh9sm83f7"))))
1198 (build-system r-build-system)
1199 (home-page "https://bioconductor.org/packages/AneuFinderData/")
1200 (synopsis "Data package for @code{AneuFinder}")
1201 (description "This package contains whole-genome single cell sequencing data for
1202 demonstration purposes in the @code{AneuFinder} package.")
1203 (license license:artistic2.0)))
1204
1205 (define-public r-arrmdata
1206 (package
1207 (name "r-arrmdata")
1208 (version "1.32.0")
1209 (source (origin
1210 (method url-fetch)
1211 (uri (bioconductor-uri "ARRmData" version 'experiment))
1212 (sha256
1213 (base32 "1cjzr58426s9z2bwjz3wzlkh52fv0q85cw4gbjnhwakh9sr3dd5p"))))
1214 (properties
1215 `((upstream-name . "ARRmData")))
1216 (build-system r-build-system)
1217 (home-page "https://www.bioconductor.org/packages/ARRmData/")
1218 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
1219 (description
1220 "This package provides raw beta values from 36 samples across 3 groups
1221 from Illumina 450k methylation arrays.")
1222 (license license:artistic2.0)))
1223
1224 (define-public r-bladderbatch
1225 (package
1226 (name "r-bladderbatch")
1227 (version "1.34.0")
1228 (source (origin
1229 (method url-fetch)
1230 (uri (bioconductor-uri "bladderbatch" version
1231 'experiment))
1232 (sha256
1233 (base32
1234 "1dpbaqsqizyi99r0imf5m4lndhhrkyiaqii9bi8rp18fjbjdd72k"))))
1235 (properties `((upstream-name . "bladderbatch")))
1236 (build-system r-build-system)
1237 (propagated-inputs (list r-biobase))
1238 (home-page "https://bioconductor.org/packages/bladderbatch")
1239 (synopsis "Bladder gene expression data illustrating batch effects")
1240 (description
1241 "This package contains microarray gene expression data on 57 bladder samples from
1242 5 batches. The data are used as an illustrative example for the sva package.")
1243 (license license:artistic2.0)))
1244
1245 (define-public r-biscuiteerdata
1246 (package
1247 (name "r-biscuiteerdata")
1248 (version "1.10.0")
1249 (source
1250 (origin
1251 (method url-fetch)
1252 (uri (bioconductor-uri "biscuiteerData" version 'experiment))
1253 (sha256
1254 (base32 "0nda6b8mkv93s513y0xfgxvi7zn8v07jx323ii709rknlncm6qqw"))))
1255 (properties
1256 `((upstream-name . "biscuiteerData")))
1257 (build-system r-build-system)
1258 (propagated-inputs
1259 (list r-annotationhub r-curl r-experimenthub))
1260 (native-inputs (list r-knitr))
1261 (home-page "https://bioconductor.org/packages/biscuiteerData")
1262 (synopsis "Data package for Biscuiteer")
1263 (description
1264 "This package contains default datasets used by the Bioconductor package
1265 biscuiteer.")
1266 (license license:gpl3)))
1267
1268 (define-public r-celldex
1269 (package
1270 (name "r-celldex")
1271 (version "1.6.0")
1272 (source
1273 (origin
1274 (method url-fetch)
1275 (uri (bioconductor-uri "celldex" version 'experiment))
1276 (sha256
1277 (base32 "1fjldmhb9yg6yr3aq5ldvc8xwqw71ix4cdlr53xxckgwljjq7x10"))))
1278 (properties `((upstream-name . "celldex")))
1279 (build-system r-build-system)
1280 (propagated-inputs
1281 (list r-annotationdbi
1282 r-annotationhub
1283 r-delayedarray
1284 r-delayedmatrixstats
1285 r-experimenthub
1286 r-s4vectors
1287 r-summarizedexperiment))
1288 (native-inputs (list r-knitr))
1289 (home-page "https://github.com/LTLA/celldex")
1290 (synopsis "Reference index for cell types")
1291 (description
1292 "This package provides a collection of reference expression datasets with
1293 curated cell type labels, for use in procedures like automated annotation of
1294 single-cell data or deconvolution of bulk RNA-seq.")
1295 (license license:gpl3)))
1296
1297 (define-public r-chromstardata
1298 (package
1299 (name "r-chromstardata")
1300 (version "1.22.0")
1301 (source
1302 (origin
1303 (method url-fetch)
1304 (uri (bioconductor-uri "chromstaRData" version 'experiment))
1305 (sha256
1306 (base32 "1ajwnkibpi01c93nrplxhy6grw8jj5219g4pii4rkan4k5815kv1"))))
1307 (properties `((upstream-name . "chromstaRData")))
1308 (build-system r-build-system)
1309 (home-page "https://bioconductor.org/packages/chromstaRData/")
1310 (synopsis "ChIP-seq data for demonstration purposes")
1311 (description
1312 "This package provides ChIP-seq data for demonstration purposes in the
1313 chromstaR package.")
1314 (license license:gpl3)))
1315
1316 (define-public r-copyhelper
1317 (package
1318 (name "r-copyhelper")
1319 (version "1.28.0")
1320 (source
1321 (origin
1322 (method url-fetch)
1323 (uri (bioconductor-uri "CopyhelpeR" version 'experiment))
1324 (sha256
1325 (base32 "0klrnxck0q14birnpwzkiwmj77hwdn6gazvdg0lqn9y6j5mbkyx1"))))
1326 (properties `((upstream-name . "CopyhelpeR")))
1327 (build-system r-build-system)
1328 (home-page "https://bioconductor.org/packages/CopyhelpeR/")
1329 (synopsis "Helper files for CopywriteR")
1330 (description
1331 "This package contains the helper files that are required to run the
1332 Bioconductor package CopywriteR. It contains pre-assembled 1kb bin GC-content
1333 and mappability files for the reference genomes hg18, hg19, hg38, mm9 and
1334 mm10. In addition, it contains a blacklist filter to remove regions that
1335 display copy number variation. Files are stored as GRanges objects from the
1336 GenomicRanges Bioconductor package.")
1337 (license license:gpl2)))
1338
1339 (define-public r-genelendatabase
1340 (package
1341 (name "r-genelendatabase")
1342 (version "1.32.0")
1343 (source
1344 (origin
1345 (method url-fetch)
1346 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
1347 (sha256
1348 (base32 "0p4rmd3qszsnyn47mfbk96zfa0bhpyyvsh4ma1ligjrsnmkicsaz"))))
1349 (properties
1350 `((upstream-name . "geneLenDataBase")))
1351 (build-system r-build-system)
1352 (propagated-inputs
1353 (list r-rtracklayer r-genomicfeatures))
1354 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
1355 (synopsis "Lengths of mRNA transcripts for a number of genomes")
1356 (description
1357 "This package provides the lengths of mRNA transcripts for a number of
1358 genomes and gene ID formats, largely based on the UCSC table browser.")
1359 (license license:lgpl2.0+)))
1360
1361 (define-public r-genomationdata
1362 (package
1363 (name "r-genomationdata")
1364 (version "1.28.0")
1365 (source
1366 (origin
1367 (method url-fetch)
1368 (uri (bioconductor-uri "genomationData" version 'experiment))
1369 (sha256
1370 (base32 "0ckdgmarndpz6r0y9sd4nmypzjgivj32w2890yl15xmxkx4397fh"))))
1371 (properties
1372 `((upstream-name . "genomationData")))
1373 (build-system r-build-system)
1374 ;; As this package provides little more than large data files, it doesn't
1375 ;; make sense to build substitutes.
1376 (arguments `(#:substitutable? #f))
1377 (native-inputs
1378 (list r-knitr))
1379 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
1380 (synopsis "Experimental data for use with the genomation package")
1381 (description
1382 "This package contains experimental genetic data for use with the
1383 genomation package. Included are Chip Seq, Methylation and Cage data,
1384 downloaded from Encode.")
1385 (license license:gpl3+)))
1386
1387 (define-public r-macrophage
1388 (package
1389 (name "r-macrophage")
1390 (version "1.12.0")
1391 (source (origin
1392 (method url-fetch)
1393 (uri (bioconductor-uri "macrophage" version
1394 'experiment))
1395 (sha256
1396 (base32
1397 "0ml8v92w021fmzsn4yl90ap3l4l3b9c1pk8pzsrm122p82wzlyms"))))
1398 (properties `((upstream-name . "macrophage")))
1399 (build-system r-build-system)
1400 (native-inputs (list r-knitr))
1401 (home-page "https://bioconductor.org/packages/macrophage")
1402 (synopsis "Human macrophage immune response data")
1403 (description
1404 "This package provides the output of running @code{Salmon} on a set of 24
1405 RNA-seq samples from Alasoo, et al. \"Shared genetic effects on chromatin and
1406 gene expression indicate a role for enhancer priming in immune response\", published
1407 in Nature Genetics, January 2018.")
1408 (license license:gpl2+)))
1409
1410 (define-public r-msdata
1411 (package
1412 (name "r-msdata")
1413 (version "0.36.0")
1414 (source
1415 (origin
1416 (method url-fetch)
1417 (uri (bioconductor-uri "msdata" version 'experiment))
1418 (sha256
1419 (base32 "0nqb7d7fa9l15bxy3s9wmy2h79jb6ldwww0hzk5mifabacmzx691"))))
1420 (properties `((upstream-name . "msdata")))
1421 (build-system r-build-system)
1422 (home-page "https://bioconductor.org/packages/msdata")
1423 (synopsis "Various Mass Spectrometry raw data example files")
1424 (description
1425 "This package provides Ion Trap positive ionization mode data in mzML file
1426 format. It includes a subset from 500-850 m/z and 1190-1310 seconds,
1427 including MS2 and MS3, intensity threshold 100.000; extracts from FTICR Apex
1428 III, m/z 400-450; a subset of UPLC - Bruker micrOTOFq data, both mzML and mz5;
1429 LC-MSMS and MRM files from proteomics experiments; and PSI mzIdentML example
1430 files for various search engines.")
1431 (license license:gpl2+)))
1432
1433 (define-public r-pasilla
1434 (package
1435 (name "r-pasilla")
1436 (version "1.24.0")
1437 (source
1438 (origin
1439 (method url-fetch)
1440 (uri (bioconductor-uri "pasilla" version 'experiment))
1441 (sha256
1442 (base32 "1vsxh7mv2krkbdqs5gsgjsxarjbll0bpyk94syrwh56z67n7jyib"))))
1443 (build-system r-build-system)
1444 (propagated-inputs (list r-dexseq))
1445 (native-inputs (list r-knitr))
1446 (home-page "https://www.bioconductor.org/packages/pasilla/")
1447 (synopsis "Data package with per-exon and per-gene read counts")
1448 (description "This package provides per-exon and per-gene read counts
1449 computed for selected genes from RNA-seq data that were presented in the
1450 article 'Conservation of an RNA regulatory map between Drosophila and mammals'
1451 by Brooks et al., Genome Research 2011.")
1452 (license license:lgpl2.1+)))
1453
1454 (define-public r-hsmmsinglecell
1455 (package
1456 (name "r-hsmmsinglecell")
1457 (version "1.16.0")
1458 (source
1459 (origin
1460 (method url-fetch)
1461 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
1462 (sha256
1463 (base32 "12whx0pl9461xbak5r9zi6ggx5is8sk6mgrbjwlmx3mbr9am116v"))))
1464 (properties
1465 `((upstream-name . "HSMMSingleCell")))
1466 (build-system r-build-system)
1467 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
1468 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
1469 (description
1470 "Skeletal myoblasts undergo a well-characterized sequence of
1471 morphological and transcriptional changes during differentiation. In this
1472 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
1473 under high mitogen conditions (GM) and then differentiated by switching to
1474 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
1475 hundred cells taken over a time-course of serum-induced differentiation.
1476 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
1477 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
1478 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
1479 which were then sequenced to a depth of ~4 million reads per library,
1480 resulting in a complete gene expression profile for each cell.")
1481 (license license:artistic2.0)))
1482
1483 (define-public r-all
1484 (package
1485 (name "r-all")
1486 (version "1.38.0")
1487 (source
1488 (origin
1489 (method url-fetch)
1490 (uri (bioconductor-uri "ALL" version 'experiment))
1491 (sha256
1492 (base32 "0410045x327wmfkksshd8yishw4yxij08vn8p65cdj7hb3qy3p0z"))))
1493 (properties `((upstream-name . "ALL")))
1494 (build-system r-build-system)
1495 (propagated-inputs
1496 (list r-biobase))
1497 (home-page "https://bioconductor.org/packages/ALL")
1498 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
1499 (description
1500 "The data consist of microarrays from 128 different individuals with
1501 @dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
1502 are available. The data have been normalized (using rma) and it is the
1503 jointly normalized data that are available here. The data are presented in
1504 the form of an @code{exprSet} object.")
1505 (license license:artistic2.0)))
1506
1507 (define-public r-affydata
1508 (package
1509 (name "r-affydata")
1510 (version "1.44.0")
1511 (source
1512 (origin
1513 (method url-fetch)
1514 (uri (bioconductor-uri "affydata" version 'experiment))
1515 (sha256
1516 (base32 "1d8ims7hks536v739r5hhfkkzyzqrf398aqal3hzyfm0psv15jbp"))))
1517 (properties `((upstream-name . "affydata")))
1518 (build-system r-build-system)
1519 (propagated-inputs
1520 (list r-affy))
1521 (home-page "https://bioconductor.org/packages/affydata/")
1522 (synopsis "Affymetrix data for demonstration purposes")
1523 (description
1524 "This package provides example datasets that represent 'real world
1525 examples' of Affymetrix data, unlike the artificial examples included in the
1526 package @code{affy}.")
1527 (license license:gpl2+)))
1528
1529 (define-public r-gagedata
1530 (package
1531 (name "r-gagedata")
1532 (version "2.34.0")
1533 (source
1534 (origin
1535 (method url-fetch)
1536 (uri (bioconductor-uri "gageData" version 'experiment))
1537 (sha256
1538 (base32 "00s2aig9r0bvk45brc0shildrgl2z0i0k8xlvqc9h1s274nnslk9"))))
1539 (properties `((upstream-name . "gageData")))
1540 (build-system r-build-system)
1541 (home-page "https://bioconductor.org/packages/gageData")
1542 (synopsis "Auxiliary data for the gage package")
1543 (description
1544 "This is a supportive data package for the software package @code{gage}.
1545 However, the data supplied here are also useful for gene set or pathway
1546 analysis or microarray data analysis in general. In this package, we provide
1547 two demo microarray dataset: GSE16873 (a breast cancer dataset from GEO) and
1548 BMP6 (originally published as an demo dataset for GAGE, also registered as
1549 GSE13604 in GEO). This package also includes commonly used gene set data based
1550 on KEGG pathways and GO terms for major research species, including human,
1551 mouse, rat and budding yeast. Mapping data between common gene IDs for budding
1552 yeast are also included.")
1553 (license license:gpl2+)))
1554
1555 (define-public r-curatedtcgadata
1556 (package
1557 (name "r-curatedtcgadata")
1558 (version "1.18.0")
1559 (source
1560 (origin
1561 (method url-fetch)
1562 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
1563 (sha256
1564 (base32 "0h3mpwy6lhyn8hfry13sdjgb35gqyi3g26igfjqzshc5wvsniwpr"))))
1565 (properties
1566 `((upstream-name . "curatedTCGAData")))
1567 (build-system r-build-system)
1568 (propagated-inputs
1569 (list r-annotationhub
1570 r-experimenthub
1571 r-hdf5array
1572 r-multiassayexperiment
1573 r-s4vectors
1574 r-summarizedexperiment))
1575 (native-inputs (list r-knitr))
1576 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
1577 (synopsis "Curated data from The Cancer Genome Atlas")
1578 (description
1579 "This package provides publicly available data from The Cancer Genome
1580 Atlas (TCGA) as @code{MultiAssayExperiment} objects.
1581 @code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
1582 number, mutation, microRNA, protein, and others) with clinical / pathological
1583 data. It also links assay barcodes with patient identifiers, enabling
1584 harmonized subsetting of rows (features) and columns (patients / samples)
1585 across the entire multi-'omics experiment.")
1586 (license license:artistic2.0)))
1587
1588 (define-public r-parathyroidse
1589 (package
1590 (name "r-parathyroidse")
1591 (version "1.34.0")
1592 (source (origin
1593 (method url-fetch)
1594 (uri (bioconductor-uri "parathyroidSE" version
1595 'experiment))
1596 (sha256
1597 (base32
1598 "1h33x55c4gbzmh085skqif04wdcvjp2l9fm55qzwws27kwd30c16"))))
1599 (properties `((upstream-name . "parathyroidSE")))
1600 (build-system r-build-system)
1601 (propagated-inputs (list r-summarizedexperiment))
1602 (home-page "https://bioconductor.org/packages/parathyroidSE")
1603 (synopsis "RangedSummarizedExperiment for RNA-Seq of parathyroid tumors")
1604 (description
1605 "This package provides @code{RangedSummarizedExperiment} objects of read
1606 counts in genes and exonic parts for paired-end RNA-Seq data from experiments on
1607 primary cultures of parathyroid tumors. The sequencing was performed on tumor
1608 cultures from 4 patients at 2 time points over 3 conditions (DPN, OHT and control).")
1609 ;; The author(s) mentions only LGPL without any specific version.
1610 (license license:lgpl2.1+)))
1611
1612 (define-public r-tcgabiolinksgui-data
1613 (package
1614 (name "r-tcgabiolinksgui-data")
1615 (version "1.16.0")
1616 (source
1617 (origin
1618 (method url-fetch)
1619 (uri (bioconductor-uri "TCGAbiolinksGUI.data" version 'experiment))
1620 (sha256
1621 (base32 "1mb2z59acs1pi1gqvgjyh62wnmbxskc5l0p42gpjajsjip5x1x7g"))))
1622 (properties `((upstream-name . "TCGAbiolinksGUI.data")))
1623 (build-system r-build-system)
1624 (native-inputs (list r-knitr))
1625 (home-page "https://github.com/BioinformaticsFMRP/TCGAbiolinksGUI.data")
1626 (synopsis "Data for the TCGAbiolinksGUI package")
1627 (description "This package provides supporting data for the
1628 TCGAbiolinksGUI package.")
1629 (license license:gpl3)))
1630
1631 (define-public r-tximportdata
1632 (package
1633 (name "r-tximportdata")
1634 (version "1.24.0")
1635 (source (origin
1636 (method url-fetch)
1637 (uri (bioconductor-uri "tximportData" version
1638 'experiment))
1639 (sha256
1640 (base32
1641 "0mgbwpybg2xd6x1ijrflmjh5w63qz6ylnzszbbyp437n618m7riy"))))
1642 (properties `((upstream-name . "tximportData")))
1643 (build-system r-build-system)
1644 (native-inputs (list r-knitr))
1645 (home-page "https://bioconductor.org/packages/tximportData")
1646 (synopsis "Data for the tximport package")
1647 (description
1648 "This package provides the output of running various transcript abundance
1649 quantifiers on a set of 6 RNA-seq samples from the GEUVADIS project. The
1650 quantifiers were @code{Cufflinks}, @code{RSEM}, @code{kallisto}, @code{Salmon}
1651 and @code{Sailfish}. Alevin example output is also included.")
1652 (license license:gpl2+)))
1653
1654
1655 \f
1656 ;;; Packages
1657
1658 (define-public r-abarray
1659 (package
1660 (name "r-abarray")
1661 (version "1.64.0")
1662 (source (origin
1663 (method url-fetch)
1664 (uri (bioconductor-uri "ABarray" version))
1665 (sha256
1666 (base32
1667 "0kjq00i2mb21xyjjs3jy09ps80f11cy37wywzjvmxyjxzbsk4d7r"))))
1668 (properties `((upstream-name . "ABarray")))
1669 (build-system r-build-system)
1670 (propagated-inputs (list r-biobase r-multtest))
1671 (home-page "https://bioconductor.org/packages/ABarray")
1672 (synopsis
1673 "Gene expression analysis for Applied Biosystems Genome Survey Microarray")
1674 (description
1675 "The package @code{ABarray} is designed to work with Applied Biosystems
1676 whole genome microarray platform, as well as any other platform whose data can
1677 be transformed into expression data matrix. Functions include data
1678 preprocessing, filtering, control probe analysis, statistical analysis in one
1679 single function. A @dfn{graphical user interface} (GUI) is also provided. The
1680 raw data, processed data, graphics output and statistical results are organized
1681 into folders according to the analysis settings used.")
1682 (license license:gpl2+)))
1683
1684 (define-public r-absseq
1685 (package
1686 (name "r-absseq")
1687 (version "1.50.0")
1688 (source (origin
1689 (method url-fetch)
1690 (uri (bioconductor-uri "ABSSeq" version))
1691 (sha256
1692 (base32
1693 "1kwl0gcqwbgblwvpbvqlgnsi91km77j11f0q1f0gd6hhnv38mmlv"))))
1694 (properties `((upstream-name . "ABSSeq")))
1695 (build-system r-build-system)
1696 (propagated-inputs (list r-limma r-locfit))
1697 (home-page "https://bioconductor.org/packages/ABSSeq")
1698 (synopsis
1699 "RNA-Seq analysis based on modelling absolute expression differences")
1700 (description
1701 "This package implements a new RNA-Seq analysis method and integrates two
1702 modules: a basic model for pairwise comparison and a linear model for complex
1703 design. RNA-Seq quantifies gene expression with reads count, which usually
1704 consists of conditions (or treatments) and several replicates for each
1705 condition. This software infers differential expression directly by the
1706 counts difference between conditions. It assumes that the sum counts
1707 difference between conditions follow a negative binomial distribution. In
1708 addition, @code{ABSSeq} moderates the fold-changes by two steps: the
1709 expression level and gene-specific dispersion, that might facilitate the gene
1710 ranking by fold-change and visualization.")
1711 (license license:gpl3+)))
1712
1713 (define-public r-adam
1714 (package
1715 (name "r-adam")
1716 (version "1.12.0")
1717 (source (origin
1718 (method url-fetch)
1719 (uri (bioconductor-uri "ADAM" version))
1720 (sha256
1721 (base32
1722 "1cgcjykik9hjrwlvvgaccprcrimgq5kwh9cj6367yk9m574a4gmn"))))
1723 (properties `((upstream-name . "ADAM")))
1724 (build-system r-build-system)
1725 (propagated-inputs (list r-dplyr
1726 r-dt
1727 r-go-db
1728 r-keggrest
1729 r-knitr
1730 r-pbapply
1731 r-rcpp
1732 r-stringr
1733 r-summarizedexperiment))
1734 (native-inputs (list r-knitr))
1735 (home-page "https://bioconductor.org/packages/ADAM")
1736 (synopsis "Gene activity and diversity analysis module")
1737 (description
1738 "This software @code{ADAM} is a @dfn{Gene set enrichment analysis} (GSEA)
1739 package created to group a set of genes from comparative samples (control
1740 versus experiment) belonging to different species according to their respective
1741 functions. The corresponding roles are extracted from the default collections
1742 like Gene ontology and @dfn{Kyoto encyclopedia of genes and genomes} (KEGG).
1743 @code{ADAM} show their significance by calculating the p-values referring to
1744 gene diversity and activity. Each group of genes is called @dfn{Group of
1745 functionally associated genes} (GFAG).")
1746 (license license:gpl2+)))
1747
1748 (define-public r-adamgui
1749 (package
1750 (name "r-adamgui")
1751 (version "1.12.0")
1752 (source (origin
1753 (method url-fetch)
1754 (uri (bioconductor-uri "ADAMgui" version))
1755 (sha256
1756 (base32
1757 "0vvd5qdwkfcr7zg7z63x3vvrcg63r6c9p383yvcg2lp8zmx8hsbs"))))
1758 (properties `((upstream-name . "ADAMgui")))
1759 (build-system r-build-system)
1760 (propagated-inputs
1761 (list r-adam
1762 r-colorramps
1763 r-data-table
1764 r-dplyr
1765 r-dt
1766 r-ggplot2
1767 r-ggpubr
1768 r-ggrepel
1769 r-ggsignif
1770 r-go-db
1771 r-gridextra
1772 r-knitr
1773 r-rcolorbrewer
1774 r-reshape2
1775 r-shiny
1776 r-shinyjs
1777 r-stringi
1778 r-stringr
1779 r-testthat
1780 r-varhandle))
1781 (native-inputs (list r-knitr))
1782 (home-page "https://bioconductor.org/packages/ADAMgui/")
1783 (synopsis "GUI for gene activity and diversity analysis")
1784 (description
1785 "This package @code{ADAMgui} is a @dfn{graphical user interface} (GUI)
1786 for the @code{ADAM} package. The @code{ADAMgui} package provides two
1787 shiny-based applications that allows the user to study the output of the
1788 @code{ADAM} package files through different plots. It's possible, for
1789 example, to choose a specific @dfn{group of functionally associated
1790 genes} (GFAG) and observe the gene expression behavior with the plots created
1791 with the @code{GFAGtargetUi} function. Features such as differential
1792 expression and fold change can be easily seen with aid of the plots made with
1793 the @code{GFAGpathUi} function.")
1794 (license license:gpl2+)))
1795
1796 (define-public r-adimpute
1797 (package
1798 (name "r-adimpute")
1799 (version "1.6.0")
1800 (source (origin
1801 (method url-fetch)
1802 (uri (bioconductor-uri "ADImpute" version))
1803 (sha256
1804 (base32
1805 "0885kd8mpmwjpzpx14pi6l3mqcvsixk10vkf5h4sqb7di0nnna4w"))))
1806 (properties `((upstream-name . "ADImpute")))
1807 (build-system r-build-system)
1808 (propagated-inputs
1809 (list r-biocparallel
1810 r-checkmate
1811 r-data-table
1812 r-drimpute
1813 r-kernlab
1814 r-mass
1815 r-matrix
1816 r-rsvd
1817 r-s4vectors
1818 r-saver
1819 r-singlecellexperiment
1820 r-summarizedexperiment))
1821 (native-inputs (list r-knitr))
1822 (home-page "https://bioconductor.org/packages/ADImpute")
1823 (synopsis "Adaptive computational prediction for dropout imputations")
1824 (description
1825 "@dfn{Single-cell RNA sequencing} (scRNA-seq) methods are typically
1826 unable to quantify the expression levels of all genes in a cell, creating a
1827 need for the computational prediction of missing values (dropout imputation).
1828 Most existing dropout imputation methods are limited in the sense that they
1829 exclusively use the scRNA-seq dataset at hand and do not exploit external
1830 gene-gene relationship information. The @code{ADImpute} package proposes two
1831 methods to address this issue:
1832
1833 @enumerate
1834 @item a gene regulatory network-based approach using gene-gene relationships
1835 learnt from external data;
1836 @item a baseline approach corresponding to a sample-wide average.
1837 @end enumerate
1838
1839 @code{ADImpute} implements these novel methods and also combines them with
1840 existing imputation methods like @code{DrImpute} and @code{SAVER}.
1841 @code{ADImpute} can learn the best performing method per gene and combine the
1842 results from different methods into an ensemble.")
1843 (license license:gpl3+)))
1844
1845 (define-public r-adsplit
1846 (package
1847 (name "r-adsplit")
1848 (version "1.66.0")
1849 (source (origin
1850 (method url-fetch)
1851 (uri (bioconductor-uri "adSplit" version))
1852 (sha256
1853 (base32
1854 "1wl2gd0b7krf485clw67cxayp0g9argklkzn8nw1vrkil0vvr4jm"))))
1855 (properties `((upstream-name . "adSplit")))
1856 (build-system r-build-system)
1857 (propagated-inputs
1858 (list r-annotationdbi
1859 r-biobase
1860 r-cluster
1861 r-go-db
1862 r-keggrest
1863 r-multtest))
1864 (home-page "https://compdiag.molgen.mpg.de/software/adSplit.shtml")
1865 (synopsis "Annotation-driven splits in microarray data")
1866 (description
1867 "This package implements clustering of microarray gene expression
1868 profiles according to functional annotations. For each term genes are
1869 annotated to, splits into two subclasses are computed and a significance of
1870 the supporting gene set is determined.")
1871 (license license:gpl2+)))
1872
1873 (define-public r-affixcan
1874 (package
1875 (name "r-affixcan")
1876 (version "1.14.0")
1877 (source (origin
1878 (method url-fetch)
1879 (uri (bioconductor-uri "AffiXcan" version))
1880 (sha256
1881 (base32
1882 "0wj9shzmlxpksbxny571xzfcmmqqzjlk1vq4mx1is2r6ma7jkblq"))))
1883 (properties `((upstream-name . "AffiXcan")))
1884 (build-system r-build-system)
1885 (propagated-inputs
1886 (list r-biocparallel
1887 r-crayon
1888 r-multiassayexperiment
1889 r-summarizedexperiment))
1890 (native-inputs (list r-knitr))
1891 (home-page "https://bioconductor.org/packages/AffiXcan")
1892 (synopsis "Functional approach to impute genetically regulated expression")
1893 (description
1894 "The @code{AffiXcan} package imputes a @dfn{genetically regulated
1895 expression} (GReX) for a set of genes in a sample of individuals, using a
1896 method based on the @dfn{total binding affinity} (TBA). Statistical models to
1897 impute GReX can be trained with a training dataset where the real total
1898 expression values are known.")
1899 (license license:gpl3)))
1900
1901 (define-public r-affyrnadegradation
1902 (package
1903 (name "r-affyrnadegradation")
1904 (version "1.42.0")
1905 (source (origin
1906 (method url-fetch)
1907 (uri (bioconductor-uri "AffyRNADegradation" version))
1908 (sha256
1909 (base32
1910 "16akwmpzwxai7ks5bvc1yyb9sx2scv9b9gas5avb0sk5fk0h3nsf"))))
1911 (properties `((upstream-name . "AffyRNADegradation")))
1912 (build-system r-build-system)
1913 (propagated-inputs (list r-affy))
1914 (home-page "https://bioconductor.org/packages/AffyRNADegradation")
1915 (synopsis
1916 "Analyze and correct probe positional bias in data due to RNA degradation")
1917 (description
1918 "The @code{AffyRNADegradation} package helps with the assessment and
1919 correction of RNA degradation effects in Affymetrix 3 expression arrays. The
1920 parameter @code{d} gives a robust and accurate measure of RNA integrity. The
1921 correction removes the probe positional bias, and thus improves comparability
1922 of samples that are affected by RNA degradation.")
1923 ;; the R file header specifies GPL2 or later
1924 (license license:gpl2+)))
1925
1926 (define-public r-agdex
1927 (package
1928 (name "r-agdex")
1929 (version "1.44.0")
1930 (source (origin
1931 (method url-fetch)
1932 (uri (bioconductor-uri "AGDEX" version))
1933 (sha256
1934 (base32
1935 "0c44fw5ajdjc13409rn3lsv0jhlqa2qcak9b1k8hpig486xxzsr9"))))
1936 (properties `((upstream-name . "AGDEX")))
1937 (build-system r-build-system)
1938 (propagated-inputs (list r-biobase r-gseabase))
1939 (home-page "https://bioconductor.org/packages/AGDEX")
1940 (synopsis
1941 "Evaluate agreement of differential expression for cross-species genomics")
1942 (description
1943 "The objective of @code{AGDEX} is to evaluate whether the results of a
1944 pair of two-group differential expression analysis comparisons show a level of
1945 agreement that is greater than expected if the group labels for each two-group
1946 comparison are randomly assigned. The agreement is evaluated for the entire
1947 transcriptome and (optionally) for a collection of pre-defined gene-sets.
1948 Additionally, the procedure performs permutation-based differential expression
1949 and meta analysis at both gene and gene-set levels of the data from each
1950 experiment.")
1951 (license license:gpl2+)))
1952
1953 (define-public r-aggregatebiovar
1954 (package
1955 (name "r-aggregatebiovar")
1956 (version "1.6.0")
1957 (source (origin
1958 (method url-fetch)
1959 (uri (bioconductor-uri "aggregateBioVar" version))
1960 (sha256
1961 (base32
1962 "0ngg12bgr95m4wm12scmrb55dgy4909c6qrg169l6dkng99v4nx1"))))
1963 (properties `((upstream-name . "aggregateBioVar")))
1964 (build-system r-build-system)
1965 (propagated-inputs
1966 (list r-matrix
1967 r-rlang
1968 r-s4vectors
1969 r-singlecellexperiment
1970 r-summarizedexperiment
1971 r-tibble))
1972 (native-inputs (list r-knitr))
1973 (home-page "https://github.com/jasonratcliff/aggregateBioVar")
1974 (synopsis "Differential gene expression analysis for multi-subject scRNA-seq")
1975 (description
1976 "This package @code{aggregateBioVar} contains tools to summarize single
1977 cell gene expression profiles at the level of subject for single cell RNA-seq
1978 data collected from more than one subject (e.g. biological sample or technical
1979 replicates). A @code{SingleCellExperiment} object is taken as input and
1980 converted to a list of @code{SummarizedExperiment} objects, where each list
1981 element corresponds to an assigned cell type. The @code{SummarizedExperiment}
1982 objects contain aggregate gene-by-subject count matrices and inter-subject
1983 column metadata for individual subjects that can be processed using downstream
1984 bulk RNA-seq tools.")
1985 (license license:gpl3)))
1986
1987 (define-public r-agilp
1988 (package
1989 (name "r-agilp")
1990 (version "3.28.0")
1991 (source (origin
1992 (method url-fetch)
1993 (uri (bioconductor-uri "agilp" version))
1994 (sha256
1995 (base32
1996 "1pm329y2nfcnx98ggxq0prdd5pxfcl5iylvsjjnhw5lyz1awg1yf"))))
1997 (properties `((upstream-name . "agilp")))
1998 (build-system r-build-system)
1999 (home-page "https://bioconductor.org/packages/agilp")
2000 (synopsis "Processing of Agilent expression array")
2001 (description
2002 "This package aims to provide a pipeline for the low-level analysis of
2003 gene expression microarray data, primarily focused on the Agilent platform,
2004 but which also provides utilities which may be useful for other platforms.")
2005 ;; Some files are under GPLv2+ but the combined work is released under the
2006 ;; GPLv3.
2007 (license license:gpl3)))
2008
2009 (define-public r-adductomicsr
2010 (package
2011 (name "r-adductomicsr")
2012 (version "1.12.0")
2013 (source (origin
2014 (method url-fetch)
2015 (uri (bioconductor-uri "adductomicsR" version))
2016 (sha256
2017 (base32
2018 "0623qf06xgdsyz0in2wnxwvpdw8kj6cnwf8vlqmgp7g0n3w701ys"))))
2019 (properties `((upstream-name . "adductomicsR")))
2020 (build-system r-build-system)
2021 (propagated-inputs
2022 (list r-adductdata
2023 r-ade4
2024 r-annotationhub
2025 r-bootstrap
2026 r-data-table
2027 r-dosnow
2028 r-dplyr
2029 r-dt
2030 r-experimenthub
2031 r-fastcluster
2032 r-foreach
2033 r-fpc
2034 r-mzr
2035 r-orgmassspecr
2036 r-pastecs
2037 r-pracma
2038 r-rcppeigen
2039 r-reshape2
2040 r-rvest
2041 r-smoother
2042 r-zoo))
2043 (native-inputs (list r-knitr))
2044 (home-page "https://bioconductor.org/packages/adductomicsR")
2045 (synopsis "Processing of adductomic mass spectral datasets")
2046 (description
2047 "This package @code{adductomicsR} processes data generated by the
2048 @dfn{second stage of mass spectrometry} (MS2) to identify potentially adducted
2049 peptides from spectra that has been corrected for mass drift and retention
2050 time drift and quantifies level mass spectral peaks from @dfn{first stage of
2051 mass spectrometry} (MS1) data.")
2052 (license license:artistic2.0)))
2053
2054 (define-public r-agimicrorna
2055 (package
2056 (name "r-agimicrorna")
2057 (version "2.46.0")
2058 (source (origin
2059 (method url-fetch)
2060 (uri (bioconductor-uri "AgiMicroRna" version))
2061 (sha256
2062 (base32
2063 "0jic89gyphbv7jzlfgm9bh1aq48lp86rq6hr34gsg9z0pa1192xa"))))
2064 (properties `((upstream-name . "AgiMicroRna")))
2065 (build-system r-build-system)
2066 (propagated-inputs
2067 (list r-affy
2068 r-affycoretools
2069 r-biobase
2070 r-limma
2071 r-preprocesscore))
2072 (home-page "https://git.bioconductor.org/packages/AgiMicroRna")
2073 (synopsis
2074 "Processing and differential expression analysis of Agilent microRNA chips")
2075 (description
2076 "@code{AgiMicroRna} provides useful functionality for the processing,
2077 quality assessment and differential expression analysis of Agilent microRNA
2078 array data. The package uses a limma-like structure to generate the processed
2079 data in order to make statistical inferences about differential expression
2080 using the linear model features implemented in limma. Standard Bioconductor
2081 objects are used so that other packages could be used as well.")
2082 (license license:gpl3)))
2083
2084 (define-public r-amountain
2085 (package
2086 (name "r-amountain")
2087 (version "1.22.0")
2088 (source (origin
2089 (method url-fetch)
2090 (uri (bioconductor-uri "AMOUNTAIN" version))
2091 (sha256
2092 (base32
2093 "0vdfabsrisdd7qq28f5ivd0v8zz49szqn677i5lhwnlaix220c54"))))
2094 (properties `((upstream-name . "AMOUNTAIN")))
2095 (build-system r-build-system)
2096 (inputs (list gsl))
2097 (native-inputs (list r-knitr))
2098 (home-page "https://bioconductor.org/packages/AMOUNTAIN")
2099 (synopsis "Modules for multilayer weighted gene co-expression networks")
2100 (description
2101 "This package provides a pure data-driven gene network, @dfn{WGCN}(weighted
2102 gene co-expression network) could be constructed only from expression profile.
2103 Different layers in such networks may represent different time points, multiple
2104 conditions or various species. @code{AMOUNTAIN} aims to search active modules
2105 in multi-layer WGCN using a continuous optimization approach.")
2106 (license license:gpl2+)))
2107
2108 (define-public r-amaretto
2109 (package
2110 (name "r-amaretto")
2111 (version "1.12.0")
2112 (source (origin
2113 (method url-fetch)
2114 (uri (bioconductor-uri "AMARETTO" version))
2115 (sha256
2116 (base32
2117 "111dk19b9910icksyr592cvhc5gwvgknr5q4887j9yxbajd7hcmx"))))
2118 (properties `((upstream-name . "AMARETTO")))
2119 (build-system r-build-system)
2120 (propagated-inputs
2121 (list r-biocfilecache
2122 r-callr
2123 r-circlize
2124 r-complexheatmap
2125 r-curatedtcgadata
2126 r-doparallel
2127 r-dplyr
2128 r-dt
2129 r-foreach
2130 r-ggplot2
2131 r-glmnet
2132 r-gridextra
2133 r-httr
2134 r-impute
2135 r-knitr
2136 r-limma
2137 r-matrix
2138 r-matrixstats
2139 r-multiassayexperiment
2140 r-rcpp
2141 r-readr
2142 r-reshape2
2143 r-rmarkdown
2144 r-tibble))
2145 (native-inputs (list r-knitr))
2146 (home-page "https://bioconductor.org/packages/AMARETTO")
2147 (synopsis "Regulatory network inference and driver gene evaluation")
2148 (description
2149 "This package @code{AMARETTO} represents an algorithm that integrates copy
2150 number, DNA methylation and gene expression data to identify a set of driver
2151 genes by analyzing cancer samples and connects them to clusters of co-expressed
2152 genes, which we define as modules. @code{AMARETTO} can be applied in a pancancer
2153 setting to identify cancer driver genes and their modules on multiple cancer
2154 sites. @code{AMARETTO} captures modules enriched in angiogenesis, cell cycle
2155 and EMT, and modules that accurately predict survival and molecular subtypes.
2156 This allows @code{AMARETTO} to identify novel cancer driver genes directing
2157 canonical cancer pathways.")
2158 (license license:asl2.0)))
2159
2160 (define-public r-anaquin
2161 (package
2162 (name "r-anaquin")
2163 (version "2.20.0")
2164 (source (origin
2165 (method url-fetch)
2166 (uri (bioconductor-uri "Anaquin" version))
2167 (sha256
2168 (base32
2169 "1jgpnls2djl1yzvnk64qc83mljmlci7wflwkza3wr0sv6r47b0dd"))))
2170 (properties `((upstream-name . "Anaquin")))
2171 (build-system r-build-system)
2172 (propagated-inputs
2173 (list r-deseq2
2174 r-ggplot2
2175 r-knitr
2176 r-locfit
2177 r-plyr
2178 r-qvalue
2179 r-rocr))
2180 (native-inputs (list r-knitr))
2181 (home-page "https://www.sequinstandards.com/")
2182 (synopsis "Statistical analysis of sequins")
2183 (description
2184 "The project is intended to support the use of @dfn{sequins}(synthetic
2185 sequencing spike-in controls) owned and made available by the Garvan Institute
2186 of Medical Research. The goal is to provide a standard library for quantitative
2187 analysis, modelling, and visualization of spike-in controls.")
2188 (license license:bsd-3)))
2189
2190 (define-public r-aneufinder
2191 (package
2192 (name "r-aneufinder")
2193 (version "1.24.0")
2194 (source (origin
2195 (method url-fetch)
2196 (uri (bioconductor-uri "AneuFinder" version))
2197 (sha256
2198 (base32
2199 "1acsp987jv2x4qwbgy3y7ff4r2qz7680b0nbr37m4lmncqfgh8yl"))))
2200 (build-system r-build-system)
2201 (native-inputs
2202 (list r-knitr))
2203 (propagated-inputs
2204 (list r-genomicranges
2205 r-aneufinderdata
2206 r-ecp
2207 r-foreach
2208 r-doparallel
2209 r-biocgenerics
2210 r-s4vectors
2211 r-genomeinfodb
2212 r-iranges
2213 r-rsamtools
2214 r-bamsignals
2215 r-dnacopy
2216 r-biostrings
2217 r-genomicalignments
2218 r-ggplot2
2219 r-reshape2
2220 r-ggdendro
2221 r-ggrepel
2222 r-reordercluster
2223 r-mclust
2224 r-cowplot))
2225 (home-page "https://bioconductor.org/packages/AneuFinder/")
2226 (synopsis "Copy number variation analysis in single-cell-sequencing data")
2227 (description "This package implements functions for copy number variant
2228 calling, plotting, export and analysis from whole-genome single cell
2229 sequencing data.")
2230 (license license:artistic2.0)))
2231
2232 (define-public r-anf
2233 (package
2234 (name "r-anf")
2235 (version "1.18.0")
2236 (source (origin
2237 (method url-fetch)
2238 (uri (bioconductor-uri "ANF" version))
2239 (sha256
2240 (base32
2241 "1fa2pbdapymrpz01ws0m2fbzf11d723x6rbsys29v06is57f5lpj"))))
2242 (properties `((upstream-name . "ANF")))
2243 (build-system r-build-system)
2244 (propagated-inputs
2245 (list r-biobase
2246 r-igraph
2247 r-mass
2248 r-rcolorbrewer
2249 r-survival))
2250 (native-inputs (list r-knitr))
2251 (home-page "https://bioconductor.org/packages/ANF")
2252 (synopsis "Affinity network fusion for complex patient clustering")
2253 (description
2254 "The package @dfn{ANF}(Affinity Network Fusion) provides methods for affinity
2255 matrix construction and fusion as well as spectral clustering. This package is
2256 used for complex patient clustering by integrating multi-omic data through affinity
2257 network fusion.")
2258 (license license:gpl3)))
2259
2260 (define-public r-annmap
2261 (package
2262 (name "r-annmap")
2263 (version "1.38.0")
2264 (source (origin
2265 (method url-fetch)
2266 (uri (bioconductor-uri "annmap" version))
2267 (sha256
2268 (base32
2269 "0ywqbb8jia7rrkzcsf6a11kqf8dnx96z8n8xw7067mahycykbixv"))))
2270 (properties `((upstream-name . "annmap")))
2271 (build-system r-build-system)
2272 (propagated-inputs
2273 (list r-biobase
2274 r-biocgenerics
2275 r-dbi
2276 r-digest
2277 r-genefilter
2278 r-genomicranges
2279 r-iranges
2280 r-lattice
2281 r-rmysql
2282 r-rsamtools))
2283 (home-page "https://github.com/cruk-mi/annmap")
2284 (synopsis
2285 "Genome annotation and visualisation for Affymetrix arrays and NGS analysis")
2286 (description
2287 "This package @code{annmap} provides annotation mappings for Affymetrix exon
2288 arrays and coordinate based queries to support deep sequencing data analysis.
2289 Database access is hidden behind the API which provides a set of functions such
2290 as @code{genesInRange()}, @code{geneToExon()}, @code{exonDetails()}, etc.
2291 Functions to plot gene architecture and BAM file data are also provided.")
2292 (license license:gpl2)))
2293
2294 (define-public r-antiprofiles
2295 (package
2296 (name "r-antiprofiles")
2297 (version "1.36.0")
2298 (source (origin
2299 (method url-fetch)
2300 (uri (bioconductor-uri "antiProfiles" version))
2301 (sha256
2302 (base32
2303 "1277kg5xpyb2yriyjy18p437q5lj22h4al7z7pygkzxzywxv9g40"))))
2304 (properties `((upstream-name . "antiProfiles")))
2305 (build-system r-build-system)
2306 (propagated-inputs
2307 (list r-locfit
2308 r-matrixstats))
2309 (home-page "https://github.com/HCBravoLab/antiProfiles")
2310 (synopsis "Implementation of gene expression anti-profiles")
2311 (description
2312 "This package implements the gene expression anti-profiles method.
2313 Anti-profiles are a new approach for developing cancer genomic signatures that
2314 specifically take advantage of gene expression heterogeneity. They explicitly
2315 model increased gene expression variability in cancer to define robust and
2316 reproducible gene expression signatures capable of accurately distinguishing
2317 tumor samples from healthy controls.")
2318 (license license:artistic2.0)))
2319
2320 (define-public r-baalchip
2321 (package
2322 (name "r-baalchip")
2323 (version "1.22.0")
2324 (source (origin
2325 (method url-fetch)
2326 (uri (bioconductor-uri "BaalChIP" version))
2327 (sha256
2328 (base32
2329 "02qwk9n2fyg5f9xxjiiha9mi6p9ii3zi5x7w84sh5d5g58s27g6q"))))
2330 (properties `((upstream-name . "BaalChIP")))
2331 (build-system r-build-system)
2332 (inputs (list perl)) ; extra/get.overlaps.v2_chrXY.perl
2333 (propagated-inputs
2334 (list r-coda
2335 r-doby
2336 r-doparallel
2337 r-foreach
2338 r-genomeinfodb
2339 r-genomicalignments
2340 r-genomicranges
2341 r-ggplot2
2342 r-iranges
2343 r-reshape2
2344 r-rsamtools
2345 r-scales))
2346 (native-inputs (list r-knitr))
2347 (home-page "https://bioconductor.org/packages/BaalChIP")
2348 (synopsis
2349 "Analysis of allele-specific transcription factor binding in cancer genomes")
2350 (description
2351 "This package offers functions to process multiple @code{ChIP-seq BAM}
2352 files and detect allele-specific events. It computes allele counts at
2353 individual variants (SNPs/SNVs), implements extensive @dfn{QC} (quality
2354 control) steps to remove problematic variants, and utilizes a Bayesian
2355 framework to identify statistically significant allele-specific events.
2356 BaalChIP is able to account for copy number differences between the two
2357 alleles, a known phenotypical feature of cancer samples.")
2358 (license license:artistic2.0)))
2359
2360 (define-public r-basespacer
2361 (package
2362 (name "r-basespacer")
2363 (version "1.40.0")
2364 (source (origin
2365 (method url-fetch)
2366 (uri (bioconductor-uri "BaseSpaceR" version))
2367 (sha256
2368 (base32
2369 "0jyw4pnybsd6ywpaamk5ywkrcib2z48farsnszmwq97zlbmra7fj"))))
2370 (properties `((upstream-name . "BaseSpaceR")))
2371 (build-system r-build-system)
2372 (propagated-inputs (list r-rcurl r-rjsonio))
2373 (home-page "https://bioconductor.org/packages/BaseSpaceR")
2374 (synopsis "R SDK for BaseSpace RESTful API")
2375 (description
2376 "This package provides an R interface to Illumina's BaseSpace cloud
2377 computing environment, enabling the fast development of data analysis and
2378 visualization tools. Besides providing an easy to use set of tools for
2379 manipulating the data from BaseSpace, it also facilitates the access to R's
2380 rich environment of statistical and data analysis tools.")
2381 (license license:asl2.0)))
2382
2383 (define-public r-bac
2384 (package
2385 (name "r-bac")
2386 (version "1.56.0")
2387 (source (origin
2388 (method url-fetch)
2389 (uri (bioconductor-uri "BAC" version))
2390 (sha256
2391 (base32
2392 "0dkw7438d2sf6nb577dnzija54qs0nhlr47lb73li60fhlnvqmh2"))))
2393 (properties `((upstream-name . "BAC")))
2394 (build-system r-build-system)
2395 (home-page "https://bioconductor.org/packages/BAC")
2396 (synopsis "Bayesian analysis of Chip-chip experiment")
2397 (description
2398 "This package uses a Bayesian hierarchical model to detect enriched
2399 regions from ChIP-chip experiments. The common goal in analyzing this
2400 ChIP-chip data is to detect DNA-protein interactions from ChIP-chip
2401 experiments. The BAC package has mainly been tested with Affymetrix tiling
2402 array data. However, we expect it to work with other platforms (e.g. Agilent,
2403 Nimblegen, cDNA, etc.). Note that BAC does not deal with normalization, so
2404 you will have to normalize your data beforehand.")
2405 (license license:artistic2.0)))
2406
2407 (define-public r-biocversion
2408 (package
2409 (name "r-biocversion")
2410 (version "3.15.2")
2411 (source
2412 (origin
2413 (method url-fetch)
2414 (uri (bioconductor-uri "BiocVersion" version))
2415 (sha256
2416 (base32
2417 "0rs4nyza4hqqk204d037gi013135wgfhx5asq2dsdjc9vk5nwzfn"))))
2418 (properties `((upstream-name . "BiocVersion")))
2419 (build-system r-build-system)
2420 (home-page "https://bioconductor.org/packages/BiocVersion/")
2421 (synopsis "Set the appropriate version of Bioconductor packages")
2422 (description
2423 "This package provides repository information for the appropriate version
2424 of Bioconductor.")
2425 (license license:artistic2.0)))
2426
2427 (define-public r-biocgenerics
2428 (package
2429 (name "r-biocgenerics")
2430 (version "0.42.0")
2431 (source (origin
2432 (method url-fetch)
2433 (uri (bioconductor-uri "BiocGenerics" version))
2434 (sha256
2435 (base32
2436 "0iv9bnpw2hycndwbmjsszqfwrksz6dfr6qcz78jkssc9ldsgmdhc"))))
2437 (properties
2438 `((upstream-name . "BiocGenerics")))
2439 (build-system r-build-system)
2440 (home-page "https://bioconductor.org/packages/BiocGenerics")
2441 (synopsis "S4 generic functions for Bioconductor")
2442 (description
2443 "This package provides S4 generic functions needed by many Bioconductor
2444 packages.")
2445 (license license:artistic2.0)))
2446
2447 (define-public r-coverageview
2448 (package
2449 (name "r-coverageview")
2450 (version "1.34.0")
2451 (source (origin
2452 (method url-fetch)
2453 (uri (bioconductor-uri "CoverageView" version))
2454 (sha256
2455 (base32
2456 "0mh66l4yh6rpd1r7qbqwh5jkklqyvpfiap0zcqhz9kimssm2pbbp"))))
2457 (build-system r-build-system)
2458 (propagated-inputs
2459 (list r-s4vectors
2460 r-iranges
2461 r-genomicranges
2462 r-genomicalignments
2463 r-rtracklayer
2464 r-rsamtools))
2465 (home-page "https://bioconductor.org/packages/CoverageView/")
2466 (synopsis "Coverage visualization package for R")
2467 (description "This package provides a framework for the visualization of
2468 genome coverage profiles. It can be used for ChIP-seq experiments, but it can
2469 be also used for genome-wide nucleosome positioning experiments or other
2470 experiment types where it is important to have a framework in order to inspect
2471 how the coverage distributed across the genome.")
2472 (license license:artistic2.0)))
2473
2474 (define-public r-cummerbund
2475 (package
2476 (name "r-cummerbund")
2477 (version "2.38.0")
2478 (source (origin
2479 (method url-fetch)
2480 (uri (bioconductor-uri "cummeRbund" version))
2481 (sha256
2482 (base32
2483 "1p4anmi436zykp0ir307g75g23kj8b7shxg4r65qq6zdwflphm0q"))))
2484 (build-system r-build-system)
2485 (propagated-inputs
2486 (list r-biobase
2487 r-biocgenerics
2488 r-fastcluster
2489 r-ggplot2
2490 r-gviz
2491 r-plyr
2492 r-reshape2
2493 r-rsqlite
2494 r-rtracklayer
2495 r-s4vectors))
2496 (home-page "https://bioconductor.org/packages/cummeRbund/")
2497 (synopsis "Analyze Cufflinks high-throughput sequencing data")
2498 (description "This package allows for persistent storage, access,
2499 exploration, and manipulation of Cufflinks high-throughput sequencing
2500 data. In addition, provides numerous plotting functions for commonly
2501 used visualizations.")
2502 (license license:artistic2.0)))
2503
2504 (define-public r-dearseq
2505 (package
2506 (name "r-dearseq")
2507 (version "1.8.4")
2508 (source
2509 (origin
2510 (method url-fetch)
2511 (uri (bioconductor-uri "dearseq" version))
2512 (sha256
2513 (base32
2514 "1zsqsgf243gq1k57mw11d6apzccnq531mwg2wzw9mjrs1m0jsfzl"))))
2515 (build-system r-build-system)
2516 (propagated-inputs
2517 (list r-compquadform
2518 r-dplyr
2519 r-ggplot2
2520 r-kernsmooth
2521 r-magrittr
2522 r-matrixstats
2523 r-patchwork
2524 r-pbapply
2525 r-reshape2
2526 r-rlang
2527 r-statmod
2528 r-survey
2529 r-tibble
2530 r-viridislite))
2531 (native-inputs
2532 (list r-knitr))
2533 (home-page "https://github.com/borishejblum/dearseq")
2534 (synopsis "DEA for RNA-seq data through a robust variance component test")
2535 (description
2536 "This is a package for Differential Expression Analysis of RNA-seq data.
2537 It features a variance component score test accounting for data
2538 heteroscedasticity through precision weights. Perform both gene-wise and gene
2539 set analyses, and can deal with repeated or longitudinal data.")
2540 (license license:gpl2)))
2541
2542 (define-public r-decipher
2543 (package
2544 (name "r-decipher")
2545 (version "2.24.0")
2546 (source (origin
2547 (method url-fetch)
2548 (uri (bioconductor-uri "DECIPHER" version))
2549 (sha256
2550 (base32
2551 "045q2bfzgq1yzhyrzvrhrnmlpka4gikrajxxwv05szksy5nvp7q5"))))
2552 (build-system r-build-system)
2553 (propagated-inputs
2554 (list r-biostrings
2555 r-dbi
2556 r-iranges
2557 r-rsqlite
2558 r-s4vectors
2559 r-xvector))
2560 (home-page "https://www.bioconductor.org/packages/DECIPHER/")
2561 (synopsis "Tools for deciphering and managing biological sequences")
2562 (description "This package provides a toolset for deciphering and managing
2563 biological sequences.")
2564 (license license:gpl3)))
2565
2566 (define-public r-deconvr
2567 (package
2568 (name "r-deconvr")
2569 (version "1.2.0")
2570 (source (origin
2571 (method url-fetch)
2572 (uri (bioconductor-uri "deconvR" version))
2573 (sha256
2574 (base32
2575 "091z3lncamscsvzj63zzbw7dr7vnkn0jwfkm5ljq4112w4rxgrm3"))))
2576 (properties `((upstream-name . "deconvR")))
2577 (build-system r-build-system)
2578 (propagated-inputs
2579 (list r-assertthat
2580 r-biocgenerics
2581 r-data-table
2582 r-dplyr
2583 r-e1071
2584 r-foreach
2585 r-genomicranges
2586 r-iranges
2587 r-magrittr
2588 r-mass
2589 r-matrixstats
2590 r-methylkit
2591 r-nnls
2592 r-quadprog
2593 r-rsq
2594 r-s4vectors
2595 r-tidyr))
2596 (native-inputs (list r-knitr))
2597 (home-page "https://github.com/BIMSBbioinfo/deconvR")
2598 (synopsis "Simulation and deconvolution of omic profiles")
2599 (description
2600 "This package provides a collection of functions designed for analyzing
2601 deconvolution of the bulk sample(s) using an atlas of reference omic signature
2602 profiles and a user-selected model. Users are given the option to create or
2603 extend a reference atlas and,also simulate the desired size of the bulk
2604 signature profile of the reference cell types. The package includes the
2605 cell-type-specific methylation atlas and, Illumina Epic B5 probe ids that can
2606 be used in deconvolution. Additionally, we included @code{BSmeth2Probe}, to
2607 make mapping WGBS data to their probe IDs easier.")
2608 (license license:artistic2.0)))
2609
2610 (define-public r-decoupler
2611 (package
2612 (name "r-decoupler")
2613 (version "2.2.2")
2614 (source
2615 (origin
2616 (method url-fetch)
2617 (uri (bioconductor-uri "decoupleR" version))
2618 (sha256
2619 (base32 "0q1w8yw3bwx8ai5z8rw8lz97w4cplxijq93634hza2vgkig1ck9m"))))
2620 (properties `((upstream-name . "decoupleR")))
2621 (build-system r-build-system)
2622 (propagated-inputs
2623 (list r-broom
2624 r-dplyr
2625 r-magrittr
2626 r-matrix
2627 r-purrr
2628 r-rlang
2629 r-stringr
2630 r-tibble
2631 r-tidyr
2632 r-tidyselect
2633 r-withr))
2634 (native-inputs (list r-knitr))
2635 (home-page "https://saezlab.github.io/decoupleR/")
2636 (synopsis "Computational methods to infer biological activities from omics data")
2637 (description
2638 "Many methods allow us to extract biological activities from omics data using
2639 information from prior knowledge resources, reducing the dimensionality for
2640 increased statistical power and better interpretability. decoupleR is a
2641 Bioconductor package containing different statistical methods to extract these
2642 signatures within a unified framework. decoupleR allows the user to flexibly
2643 test any method with any resource. It incorporates methods that take into
2644 account the sign and weight of network interactions. decoupleR can be used
2645 with any omic, as long as its features can be linked to a biological process
2646 based on prior knowledge. For example, in transcriptomics gene sets regulated
2647 by a transcription factor, or in phospho-proteomics phosphosites that are
2648 targeted by a kinase.")
2649 (license license:gpl3)))
2650
2651 (define-public r-deepsnv
2652 (package
2653 (name "r-deepsnv")
2654 (version "1.42.1")
2655 (source (origin
2656 (method url-fetch)
2657 (uri (bioconductor-uri "deepSNV" version))
2658 (sha256
2659 (base32
2660 "0bgj1grv3a5bqhcdsw445x49kl3pz367svy6fnrzfsk9bmj46kgn"))))
2661 (properties `((upstream-name . "deepSNV")))
2662 (build-system r-build-system)
2663 (propagated-inputs
2664 (list r-biostrings
2665 r-genomicranges
2666 r-iranges
2667 r-rhtslib
2668 r-summarizedexperiment
2669 r-variantannotation
2670 r-vgam))
2671 (native-inputs
2672 (list r-knitr))
2673 (home-page "https://github.com/gerstung-lab/deepSNV/")
2674 (synopsis "Detection of subclonal SNVs in deep sequencing data")
2675 (description
2676 "This package provides quantitative variant callers for detecting
2677 subclonal mutations in ultra-deep (>=100x coverage) sequencing experiments.
2678 The deepSNV algorithm is used for a comparative setup with a control experiment
2679 of the same loci and uses a beta-binomial model and a likelihood ratio test to
2680 discriminate sequencing errors and subclonal SNVs. The shearwater algorithm
2681 computes a Bayes classifier based on a beta-binomial model for variant calling
2682 with multiple samples for precisely estimating model parameters - such as local
2683 error rates and dispersion - and prior knowledge, e.g. from variation data
2684 bases such as COSMIC.")
2685 (license license:gpl3)))
2686
2687 (define-public r-delayedarray
2688 (package
2689 (name "r-delayedarray")
2690 (version "0.22.0")
2691 (source (origin
2692 (method url-fetch)
2693 (uri (bioconductor-uri "DelayedArray" version))
2694 (sha256
2695 (base32
2696 "11id63qza9dxl1364gllqafxmx25a0q22jv5q8h709bgc3f0grqy"))))
2697 (properties
2698 `((upstream-name . "DelayedArray")))
2699 (build-system r-build-system)
2700 (propagated-inputs
2701 (list r-biocgenerics r-s4vectors r-iranges r-matrix
2702 r-matrixgenerics))
2703 (native-inputs
2704 (list r-knitr))
2705 (home-page "https://bioconductor.org/packages/DelayedArray")
2706 (synopsis "Delayed operations on array-like objects")
2707 (description
2708 "Wrapping an array-like object (typically an on-disk object) in a
2709 @code{DelayedArray} object allows one to perform common array operations on it
2710 without loading the object in memory. In order to reduce memory usage and
2711 optimize performance, operations on the object are either delayed or executed
2712 using a block processing mechanism. Note that this also works on in-memory
2713 array-like objects like @code{DataFrame} objects (typically with Rle columns),
2714 @code{Matrix} objects, and ordinary arrays and data frames.")
2715 (license license:artistic2.0)))
2716
2717 (define-public r-derfinderhelper
2718 (package
2719 (name "r-derfinderhelper")
2720 (version "1.30.0")
2721 (source
2722 (origin
2723 (method url-fetch)
2724 (uri (bioconductor-uri "derfinderHelper" version))
2725 (sha256
2726 (base32 "0r7zbx5bfmh5cjs12y8d9qwz53nz340gdy3sx7zcn4rzn7rpslp5"))))
2727 (properties `((upstream-name . "derfinderHelper")))
2728 (build-system r-build-system)
2729 (propagated-inputs
2730 (list r-iranges r-matrix r-s4vectors))
2731 (native-inputs
2732 (list r-knitr))
2733 (home-page "https://github.com/leekgroup/derfinderHelper")
2734 (synopsis "Helper for derfinder")
2735 (description
2736 "This package speeds up the derfinder package when using multiple cores.
2737 It is particularly useful when using BiocParallel and it helps reduce the time
2738 spent loading the full derfinder package when running the F-statistics
2739 calculation in parallel.")
2740 (license license:artistic2.0)))
2741
2742 (define-public r-drimseq
2743 (package
2744 (name "r-drimseq")
2745 (version "1.24.0")
2746 (source
2747 (origin
2748 (method url-fetch)
2749 (uri (bioconductor-uri "DRIMSeq" version))
2750 (sha256
2751 (base32 "1dph483ij43ayw0z5dbnp6gwp53ka7k5si1hp3miac7z8dqzv94l"))))
2752 (properties `((upstream-name . "DRIMSeq")))
2753 (build-system r-build-system)
2754 (propagated-inputs
2755 (list r-biocgenerics
2756 r-biocparallel
2757 r-edger
2758 r-genomicranges
2759 r-ggplot2
2760 r-iranges
2761 r-limma
2762 r-mass
2763 r-reshape2
2764 r-s4vectors))
2765 (native-inputs (list r-knitr))
2766 (home-page "https://bioconductor.org/packages/DRIMSeq")
2767 (synopsis "Differential transcript usage and tuQTL analyses with Dirichlet-multinomial model in RNA-seq")
2768 (description
2769 "The package provides two frameworks. One for the differential
2770 transcript usage analysis between different conditions and one for the tuQTL
2771 analysis. Both are based on modeling the counts of genomic features (i.e.,
2772 transcripts) with the Dirichlet-multinomial distribution. The package also
2773 makes available functions for visualization and exploration of the data and
2774 results.")
2775 (license license:gpl3+)))
2776
2777 (define-public r-bluster
2778 (package
2779 (name "r-bluster")
2780 (version "1.6.0")
2781 (source (origin
2782 (method url-fetch)
2783 (uri (bioconductor-uri "bluster" version))
2784 (sha256
2785 (base32
2786 "1g496yc7mdhshf6r0n8xhj7ax936ia5z2cx72lqyk2vzzzl5c4v8"))))
2787 (properties `((upstream-name . "bluster")))
2788 (build-system r-build-system)
2789 (propagated-inputs
2790 (list r-biocneighbors
2791 r-biocparallel
2792 r-cluster
2793 r-igraph
2794 r-matrix
2795 r-rcpp
2796 r-s4vectors))
2797 (native-inputs
2798 (list r-knitr))
2799 (home-page "https://bioconductor.org/packages/bluster")
2800 (synopsis "Clustering algorithms for Bioconductor")
2801 (description"This package wraps common clustering algorithms in an easily
2802 extended S4 framework. Backends are implemented for hierarchical, k-means
2803 and graph-based clustering. Several utilities are also provided to compare
2804 and evaluate clustering results.")
2805 (license license:gpl3)))
2806
2807 (define-public r-ideoviz
2808 (package
2809 (name "r-ideoviz")
2810 (version "1.32.0")
2811 (source (origin
2812 (method url-fetch)
2813 (uri (bioconductor-uri "IdeoViz" version))
2814 (sha256
2815 (base32
2816 "1wwh3ifdijhpm58lw7cmnx084xwfxnc7i0206w8rhrjnvnq6ljh3"))))
2817 (build-system r-build-system)
2818 (propagated-inputs
2819 (list r-biobase
2820 r-iranges
2821 r-genomicranges
2822 r-rcolorbrewer
2823 r-rtracklayer
2824 r-genomeinfodb))
2825 (home-page "https://bioconductor.org/packages/IdeoViz/")
2826 (synopsis "Plots data along a chromosomal ideogram")
2827 (description "This package provides functions to plot data associated with
2828 arbitrary genomic intervals along chromosomal ideogram.")
2829 (license license:gpl2)))
2830
2831 (define-public r-infercnv
2832 (package
2833 (name "r-infercnv")
2834 (version "1.12.0")
2835 (source
2836 (origin
2837 (method url-fetch)
2838 (uri (bioconductor-uri "infercnv" version))
2839 (sha256
2840 (base32
2841 "01f021fdxm058733rky46dlvqg7dmf5mn5x9lnq0fspp5665w3bl"))))
2842 (properties `((upstream-name . "infercnv")))
2843 (build-system r-build-system)
2844 (inputs (list python))
2845 (propagated-inputs
2846 (list r-ape
2847 r-argparse
2848 r-biocgenerics
2849 r-catools
2850 r-coda
2851 r-coin
2852 r-digest
2853 r-doparallel
2854 r-dplyr
2855 r-edger
2856 r-fastcluster
2857 r-fitdistrplus
2858 r-foreach
2859 r-futile-logger
2860 r-future
2861 r-ggplot2
2862 r-gplots
2863 r-gridextra
2864 r-hiddenmarkov
2865 r-leiden
2866 r-matrix
2867 r-paralleldist
2868 r-phyclust
2869 r-rann
2870 r-rcolorbrewer
2871 r-reshape
2872 r-rjags
2873 r-singlecellexperiment
2874 r-summarizedexperiment
2875 r-tidyr))
2876 (native-inputs (list r-knitr))
2877 (home-page "https://github.com/broadinstitute/inferCNV/wiki")
2878 (synopsis "Infer copy number variation from single-cell RNA-Seq data")
2879 (description
2880 "@code{InferCNV} is used to explore tumor single cell RNA-Seq data to identify
2881 evidence for somatic large-scale chromosomal copy number alterations, such as gains
2882 or deletions of entire chromosomes or large segments of chromosomes. This is done
2883 by exploring expression intensity of genes across positions of a tumor genome in
2884 comparison to a set of reference \"normal\" cells. A heatmap is generated
2885 illustrating the relative expression intensities across each chromosome, and it
2886 often becomes readily apparent as to which regions of the tumor genome are
2887 over-abundant or less-abundant as compared to that of normal cells.")
2888 (license license:bsd-3)))
2889
2890 (define-public r-iranges
2891 (package
2892 (name "r-iranges")
2893 (version "2.30.1")
2894 (source (origin
2895 (method url-fetch)
2896 (uri (bioconductor-uri "IRanges" version))
2897 (sha256
2898 (base32
2899 "1r01c9lczkchgd9hbxxd6wrd5avhy52mfqjck7l9avjq1jimvzv3"))))
2900 (properties
2901 `((upstream-name . "IRanges")))
2902 (build-system r-build-system)
2903 (propagated-inputs
2904 (list r-biocgenerics r-s4vectors))
2905 (home-page "https://bioconductor.org/packages/IRanges")
2906 (synopsis "Infrastructure for manipulating intervals on sequences")
2907 (description
2908 "This package provides efficient low-level and highly reusable S4 classes
2909 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
2910 generally, data that can be organized sequentially (formally defined as
2911 @code{Vector} objects), as well as views on these @code{Vector} objects.
2912 Efficient list-like classes are also provided for storing big collections of
2913 instances of the basic classes. All classes in the package use consistent
2914 naming and share the same rich and consistent \"Vector API\" as much as
2915 possible.")
2916 (license license:artistic2.0)))
2917
2918 (define-public r-isoformswitchanalyzer
2919 (package
2920 (name "r-isoformswitchanalyzer")
2921 (version "1.18.0")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri (bioconductor-uri "IsoformSwitchAnalyzeR" version))
2926 (sha256
2927 (base32 "0n1gb9azxa1mxpsqvw3i3kf72f45nyjj1kgwwrzhd88n3g63lvkd"))))
2928 (properties `((upstream-name . "IsoformSwitchAnalyzeR")))
2929 (build-system r-build-system)
2930 (propagated-inputs
2931 (list r-biobase
2932 r-biocgenerics
2933 r-biostrings
2934 r-bsgenome
2935 r-dbi
2936 r-dexseq
2937 r-dplyr
2938 r-drimseq
2939 r-edger
2940 r-futile-logger
2941 r-genomeinfodb
2942 r-genomicranges
2943 r-ggplot2
2944 r-gridextra
2945 r-iranges
2946 r-limma
2947 r-magrittr
2948 r-plyr
2949 r-rcolorbrewer
2950 r-rcurl
2951 r-readr
2952 r-reshape2
2953 r-rtracklayer
2954 r-stringr
2955 r-tibble
2956 r-tximeta
2957 r-tximport
2958 r-venndiagram
2959 r-xvector))
2960 (native-inputs
2961 (list r-knitr))
2962 (home-page "https://bioconductor.org/packages/IsoformSwitchAnalyzeR/")
2963 (synopsis "Analyze alternative splicing in RNA-seq data")
2964 (description
2965 "This is a package for the analysis of alternative splicing and isoform
2966 switches with predicted functional consequences (e.g. gain/loss of protein
2967 domains etc.) from quantification of all types of RNASeq by tools such as
2968 Kallisto, Salmon, StringTie, Cufflinks/Cuffdiff etc.")
2969 (license license:gpl2+)))
2970
2971 ;; This is a CRAN package, but it depends on r-biobase and r-limma from Bioconductor.
2972 (define-public r-absfiltergsea
2973 (package
2974 (name "r-absfiltergsea")
2975 (version "1.5.1")
2976 (source
2977 (origin
2978 (method url-fetch)
2979 (uri (cran-uri "AbsFilterGSEA" version))
2980 (sha256
2981 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
2982 (properties `((upstream-name . "AbsFilterGSEA")))
2983 (build-system r-build-system)
2984 (propagated-inputs
2985 (list r-biobase r-deseq r-limma r-rcpp r-rcpparmadillo))
2986 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
2987 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
2988 (description
2989 "This package provides a function that performs gene-permuting of a gene-set
2990 enrichment analysis (GSEA) calculation with or without the absolute filtering.
2991 Without filtering, users can perform (original) two-tailed or one-tailed
2992 absolute GSEA.")
2993 (license license:gpl2)))
2994
2995 ;; This is a CRAN package, but it depends on r-biobase from Bioconductor.
2996 (define-public r-bisquerna
2997 (package
2998 (name "r-bisquerna")
2999 (version "1.0.5")
3000 (source (origin
3001 (method url-fetch)
3002 (uri (cran-uri "BisqueRNA" version))
3003 (sha256
3004 (base32
3005 "0p3p5lp69gri7vs6qfpm7br4ksbs4l7clm4nj8ki99wpqiqni23n"))))
3006 (properties `((upstream-name . "BisqueRNA")))
3007 (build-system r-build-system)
3008 (propagated-inputs
3009 (list r-biobase r-limsolve))
3010 (native-inputs
3011 (list r-knitr))
3012 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
3013 (synopsis "Decomposition of bulk expression with single-cell sequencing")
3014 (description "This package provides tools to accurately estimate cell type
3015 abundances from heterogeneous bulk expression. A reference-based method
3016 utilizes single-cell information to generate a signature matrix and
3017 transformation of bulk expression for accurate regression based estimates.
3018 A marker-based method utilizes known cell-specific marker genes to measure
3019 relative abundances across samples.")
3020 (license license:gpl3)))
3021
3022 ;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
3023 ;; from Bioconductor.
3024 (define-public r-deconstructsigs
3025 (package
3026 (name "r-deconstructsigs")
3027 (version "1.8.0")
3028 (source (origin
3029 (method url-fetch)
3030 (uri (cran-uri "deconstructSigs" version))
3031 (sha256
3032 (base32
3033 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
3034 (properties
3035 `((upstream-name . "deconstructSigs")))
3036 (build-system r-build-system)
3037 (propagated-inputs
3038 (list r-bsgenome r-bsgenome-hsapiens-ucsc-hg19 r-genomeinfodb
3039 r-reshape2))
3040 (home-page "https://github.com/raerose01/deconstructSigs")
3041 (synopsis "Identifies signatures present in a tumor sample")
3042 (description "This package takes sample information in the form of the
3043 fraction of mutations in each of 96 trinucleotide contexts and identifies
3044 the weighted combination of published signatures that, when summed, most
3045 closely reconstructs the mutational profile.")
3046 (license license:gpl2+)))
3047
3048 ;; This is a CRAN package, but it depends on Bioconductor packages.
3049 (define-public r-jetset
3050 (package
3051 (name "r-jetset")
3052 (version "3.4.0")
3053 (source
3054 (origin
3055 (method url-fetch)
3056 (uri (cran-uri "jetset" version))
3057 (sha256
3058 (base32 "0c99h5npsv2gf5d59s4qhkaqmjhbwa3prcykk24wzhnpfq6y6xhp"))))
3059 (properties `((upstream-name . "jetset")))
3060 (build-system r-build-system)
3061 (propagated-inputs (list r-annotationdbi r-org-hs-eg-db))
3062 (home-page "http://www.cbs.dtu.dk/biotools/jetset/")
3063 (synopsis "One-to-one gene-probeset mapping for Affymetrix human microarrays")
3064 (description
3065 "This package provides a one-to-one mapping from gene to \"best\" probe
3066 set for four Affymetrix human gene expression microarrays: hgu95av2, hgu133a,
3067 hgu133plus2, and u133x3p. On Affymetrix gene expression microarrays, a single
3068 gene may be measured by multiple probe sets. This can present a mild
3069 conundrum when attempting to evaluate a gene \"signature\" that is defined by
3070 gene names rather than by specific probe sets. This package also includes the
3071 pre-calculated probe set quality scores that were used to define the
3072 mapping.")
3073 (license license:artistic2.0)))
3074
3075 ;; This is a CRAN package, but it depends on Bioconductor packages.
3076 (define-public r-nmf
3077 (package
3078 (name "r-nmf")
3079 (version "0.24.0")
3080 (source
3081 (origin
3082 (method url-fetch)
3083 (uri (cran-uri "NMF" version))
3084 (sha256
3085 (base32
3086 "14yxra6in5c1md5nr75y8cdmh9pg0lxqabqflvlhgg1vbg9i2628"))))
3087 (properties `((upstream-name . "NMF")))
3088 (build-system r-build-system)
3089 (propagated-inputs
3090 (list r-cluster
3091 r-biobase
3092 r-biocmanager
3093 r-bigmemory ; suggested
3094 r-synchronicity ; suggested
3095 r-colorspace
3096 r-digest
3097 r-doparallel
3098 r-foreach
3099 r-ggplot2
3100 r-gridbase
3101 r-pkgmaker
3102 r-rcolorbrewer
3103 r-registry
3104 r-reshape2
3105 r-rngtools
3106 r-stringr))
3107 (native-inputs
3108 (list r-knitr))
3109 (home-page "http://renozao.github.io/NMF")
3110 (synopsis "Algorithms and framework for nonnegative matrix factorization")
3111 (description
3112 "This package provides a framework to perform Non-negative Matrix
3113 Factorization (NMF). The package implements a set of already published
3114 algorithms and seeding methods, and provides a framework to test, develop and
3115 plug new or custom algorithms. Most of the built-in algorithms have been
3116 optimized in C++, and the main interface function provides an easy way of
3117 performing parallel computations on multicore machines.")
3118 (license license:gpl2+)))
3119
3120 (define-public r-affy
3121 (package
3122 (name "r-affy")
3123 (version "1.74.0")
3124 (source
3125 (origin
3126 (method url-fetch)
3127 (uri (bioconductor-uri "affy" version))
3128 (sha256
3129 (base32
3130 "02l77y4d4m4jwgkb3jdaskv6shmba5292whp0i29mg9asxv4rdc7"))))
3131 (build-system r-build-system)
3132 (propagated-inputs
3133 (list r-affyio
3134 r-biobase
3135 r-biocgenerics
3136 r-biocmanager
3137 r-preprocesscore
3138 r-zlibbioc))
3139 (inputs
3140 (list zlib))
3141 (home-page "https://bioconductor.org/packages/affy")
3142 (synopsis "Methods for affymetrix oligonucleotide arrays")
3143 (description
3144 "This package contains functions for exploratory oligonucleotide array
3145 analysis.")
3146 (license license:lgpl2.0+)))
3147
3148 (define-public r-affycomp
3149 (package
3150 (name "r-affycomp")
3151 (version "1.72.0")
3152 (source
3153 (origin
3154 (method url-fetch)
3155 (uri (bioconductor-uri "affycomp" version))
3156 (sha256
3157 (base32
3158 "0aq5p56sqpvba0yhgd75302s9bazchh1izgymng6cpb78y5wfpj0"))))
3159 (properties `((upstream-name . "affycomp")))
3160 (build-system r-build-system)
3161 (propagated-inputs (list r-biobase))
3162 (home-page "https://bioconductor.org/packages/affycomp/")
3163 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
3164 (description
3165 "The package contains functions that can be used to compare expression
3166 measures for Affymetrix Oligonucleotide Arrays.")
3167 (license license:gpl2+)))
3168
3169 (define-public r-affycompatible
3170 (package
3171 (name "r-affycompatible")
3172 (version "1.56.0")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (bioconductor-uri "AffyCompatible" version))
3177 (sha256
3178 (base32
3179 "0x3lj1jgqq67389rzfklah5p878ns9b4fpdpz455m2gq9sk7qsda"))))
3180 (properties
3181 `((upstream-name . "AffyCompatible")))
3182 (build-system r-build-system)
3183 (arguments
3184 (list
3185 #:phases
3186 `(modify-phases %standard-phases
3187 (add-after 'unpack 'make-reproducible
3188 (lambda _
3189 ;; Order DTD elements before generating R code from them.
3190 (substitute* "R/methods-AffyCompatible.R"
3191 (("dtd <- .*" m)
3192 (string-append m "
3193 elements <- dtd$elements
3194 ordered <- elements[order(names(elements))]\n"))
3195 (("elt in dtd\\$elements")
3196 "elt in ordered"))
3197 ;; Use a predictable directory name for code generation.
3198 (mkdir-p "/tmp/NetAffxResourcePrototype")
3199 (substitute* "R/DataClasses.R"
3200 (("directory=tempdir\\(\\)")
3201 "directory=\"/tmp/NetAffxResourcePrototype\"")))))))
3202 (propagated-inputs
3203 (list r-biostrings r-rcurl r-xml))
3204 (home-page "https://bioconductor.org/packages/AffyCompatible/")
3205 (synopsis "Work with Affymetrix GeneChip files")
3206 (description
3207 "This package provides an interface to Affymetrix chip annotation and
3208 sample attribute files. The package allows an easy way for users to download
3209 and manage local data bases of Affynmetrix NetAffx annotation files. It also
3210 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
3211 Command Console} (AGCC)-compatible sample annotation files.")
3212 (license license:artistic2.0)))
3213
3214 (define-public r-affycontam
3215 (package
3216 (name "r-affycontam")
3217 (version "1.54.0")
3218 (source
3219 (origin
3220 (method url-fetch)
3221 (uri (bioconductor-uri "affyContam" version))
3222 (sha256
3223 (base32
3224 "1pyd4rj6pp139kvhh97whi4afvx029w5lglr4mnscw7m3f618v0p"))))
3225 (properties `((upstream-name . "affyContam")))
3226 (build-system r-build-system)
3227 (propagated-inputs
3228 (list r-affy r-affydata r-biobase))
3229 (home-page "https://bioconductor.org/packages/affyContam/")
3230 (synopsis "Structured corruption of Affymetrix CEL file data")
3231 (description
3232 "Microarray quality assessment is a major concern of microarray analysts.
3233 This package provides some simple approaches to in silico creation of quality
3234 problems in CEL-level data to help evaluate performance of quality metrics.")
3235 (license license:artistic2.0)))
3236
3237 (define-public r-affycoretools
3238 (package
3239 (name "r-affycoretools")
3240 (version "1.68.1")
3241 (source
3242 (origin
3243 (method url-fetch)
3244 (uri (bioconductor-uri "affycoretools" version))
3245 (sha256
3246 (base32
3247 "05x64hy5jpmg973biwq4q9gzy1n0iqc0pxrix1f6bri1w6vil3ww"))))
3248 (properties `((upstream-name . "affycoretools")))
3249 (build-system r-build-system)
3250 (propagated-inputs
3251 (list r-affy
3252 r-annotationdbi
3253 r-biobase
3254 r-biocgenerics
3255 r-dbi
3256 r-edger
3257 r-gcrma
3258 r-glimma
3259 r-ggplot2
3260 r-gostats
3261 r-gplots
3262 r-hwriter
3263 r-lattice
3264 r-limma
3265 r-oligoclasses
3266 r-reportingtools
3267 r-rsqlite
3268 r-s4vectors
3269 r-xtable))
3270 (native-inputs
3271 (list r-knitr))
3272 (home-page "https://bioconductor.org/packages/affycoretools/")
3273 (synopsis "Functions for analyses with Affymetrix GeneChips")
3274 (description
3275 "This package provides various wrapper functions that have been written
3276 to streamline the more common analyses that a Biostatistician might see.")
3277 (license license:artistic2.0)))
3278
3279 (define-public r-affyio
3280 (package
3281 (name "r-affyio")
3282 (version "1.66.0")
3283 (source
3284 (origin
3285 (method url-fetch)
3286 (uri (bioconductor-uri "affyio" version))
3287 (sha256
3288 (base32
3289 "19cw82qvzkz6vh2gm302y7digsf6xif7c9l2q9s6lkx2yflqpgfp"))))
3290 (build-system r-build-system)
3291 (propagated-inputs
3292 (list r-zlibbioc))
3293 (inputs
3294 (list zlib))
3295 (home-page "https://github.com/bmbolstad/affyio")
3296 (synopsis "Tools for parsing Affymetrix data files")
3297 (description
3298 "This package provides routines for parsing Affymetrix data files based
3299 upon file format information. The primary focus is on accessing the CEL and
3300 CDF file formats.")
3301 (license license:lgpl2.0+)))
3302
3303 (define-public r-affxparser
3304 (package
3305 (name "r-affxparser")
3306 (version "1.68.1")
3307 (source
3308 (origin
3309 (method url-fetch)
3310 (uri (bioconductor-uri "affxparser" version))
3311 (sha256
3312 (base32
3313 "16x92gwsy7zdyz4md4cw847xn2ymqd6gqsn0rlr2nnf3qmnjnils"))))
3314 (properties `((upstream-name . "affxparser")))
3315 (build-system r-build-system)
3316 (home-page "https://github.com/HenrikBengtsson/affxparser")
3317 (synopsis "Affymetrix File Parsing SDK")
3318 (description
3319 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
3320 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
3321 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
3322 are supported. Currently, there are methods for reading @dfn{chip definition
3323 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
3324 either in full or in part. For example, probe signals from a few probesets
3325 can be extracted very quickly from a set of CEL files into a convenient list
3326 structure.")
3327 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
3328 ;; under LGPLv2+.
3329 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
3330
3331 (define-public r-annotate
3332 (package
3333 (name "r-annotate")
3334 (version "1.74.0")
3335 (source
3336 (origin
3337 (method url-fetch)
3338 (uri (bioconductor-uri "annotate" version))
3339 (sha256
3340 (base32
3341 "0x6vddpiw2g713vicf70198x8dlrwf36p8jjygdsfnl56ls5bh2g"))))
3342 (build-system r-build-system)
3343 (propagated-inputs
3344 (list r-annotationdbi
3345 r-biobase
3346 r-biocgenerics
3347 r-dbi
3348 r-httr
3349 r-xml
3350 r-xtable))
3351 (home-page
3352 "https://bioconductor.org/packages/annotate")
3353 (synopsis "Annotation for microarrays")
3354 (description "This package provides R environments for the annotation of
3355 microarrays.")
3356 (license license:artistic2.0)))
3357
3358 (define-public r-annotationdbi
3359 (package
3360 (name "r-annotationdbi")
3361 (version "1.58.0")
3362 (source (origin
3363 (method url-fetch)
3364 (uri (bioconductor-uri "AnnotationDbi" version))
3365 (sha256
3366 (base32
3367 "15cwy7lic89jwl3dr7j4pb5bx457jdpvzvylr71624s0p0j9rgwn"))))
3368 (properties
3369 `((upstream-name . "AnnotationDbi")))
3370 (build-system r-build-system)
3371 (propagated-inputs
3372 (list r-biobase
3373 r-biocgenerics
3374 r-dbi
3375 r-keggrest
3376 r-iranges
3377 r-rsqlite
3378 r-s4vectors))
3379 (native-inputs
3380 (list r-knitr))
3381 (home-page "https://bioconductor.org/packages/AnnotationDbi")
3382 (synopsis "Annotation database interface")
3383 (description
3384 "This package provides user interface and database connection code for
3385 annotation data packages using SQLite data storage.")
3386 (license license:artistic2.0)))
3387
3388 (define-public r-annotationfilter
3389 (package
3390 (name "r-annotationfilter")
3391 (version "1.20.0")
3392 (source (origin
3393 (method url-fetch)
3394 (uri (bioconductor-uri "AnnotationFilter" version))
3395 (sha256
3396 (base32
3397 "082lpcd6yr2nkxndlck2wqqd3nfdx7lnpw8barxgv41q4l7v4ald"))))
3398 (properties
3399 `((upstream-name . "AnnotationFilter")))
3400 (build-system r-build-system)
3401 (propagated-inputs
3402 (list r-genomicranges r-lazyeval))
3403 (native-inputs
3404 (list r-knitr))
3405 (home-page "https://github.com/Bioconductor/AnnotationFilter")
3406 (synopsis "Facilities for filtering Bioconductor annotation resources")
3407 (description
3408 "This package provides classes and other infrastructure to implement
3409 filters for manipulating Bioconductor annotation resources. The filters are
3410 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
3411 (license license:artistic2.0)))
3412
3413 (define-public r-annotationforge
3414 (package
3415 (name "r-annotationforge")
3416 (version "1.38.1")
3417 (source
3418 (origin
3419 (method url-fetch)
3420 (uri (bioconductor-uri "AnnotationForge" version))
3421 (sha256
3422 (base32
3423 "0lcr79a3570h7zg4z691gxg2vlyqnars5811q0clzinbmq7b4x3v"))))
3424 (properties
3425 `((upstream-name . "AnnotationForge")))
3426 (build-system r-build-system)
3427 (propagated-inputs
3428 (list r-annotationdbi
3429 r-biobase
3430 r-biocgenerics
3431 r-dbi
3432 r-rcurl
3433 r-rsqlite
3434 r-s4vectors
3435 r-xml))
3436 (native-inputs
3437 (list r-knitr))
3438 (home-page "https://bioconductor.org/packages/AnnotationForge")
3439 (synopsis "Code for building annotation database packages")
3440 (description
3441 "This package provides code for generating Annotation packages and their
3442 databases. Packages produced are intended to be used with AnnotationDbi.")
3443 (license license:artistic2.0)))
3444
3445 (define-public r-annotationhub
3446 (package
3447 (name "r-annotationhub")
3448 (version "3.4.0")
3449 (source
3450 (origin
3451 (method url-fetch)
3452 (uri (bioconductor-uri "AnnotationHub" version))
3453 (sha256
3454 (base32
3455 "03dmbx43rsv9xv94lk12gpraq47ryc13jijwma3q05hl9wn8xjxs"))))
3456 (properties `((upstream-name . "AnnotationHub")))
3457 (build-system r-build-system)
3458 (propagated-inputs
3459 (list r-annotationdbi
3460 r-biocfilecache
3461 r-biocgenerics
3462 r-biocmanager
3463 r-biocversion
3464 r-curl
3465 r-dplyr
3466 r-httr
3467 r-interactivedisplaybase
3468 r-rappdirs
3469 r-rsqlite
3470 r-s4vectors
3471 r-yaml))
3472 (native-inputs
3473 (list r-knitr))
3474 (home-page "https://bioconductor.org/packages/AnnotationHub")
3475 (synopsis "Client to access AnnotationHub resources")
3476 (description
3477 "This package provides a client for the Bioconductor AnnotationHub web
3478 resource. The AnnotationHub web resource provides a central location where
3479 genomic files (e.g. VCF, bed, wig) and other resources from standard
3480 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
3481 metadata about each resource, e.g., a textual description, tags, and date of
3482 modification. The client creates and manages a local cache of files retrieved
3483 by the user, helping with quick and reproducible access.")
3484 (license license:artistic2.0)))
3485
3486 (define-public r-aroma-light
3487 (package
3488 (name "r-aroma-light")
3489 (version "3.26.0")
3490 (source
3491 (origin
3492 (method url-fetch)
3493 (uri (bioconductor-uri "aroma.light" version))
3494 (sha256
3495 (base32
3496 "1240v9wvsf205g998ms19hncki8g6shidg09dy5np9pqpiix4vys"))))
3497 (properties `((upstream-name . "aroma.light")))
3498 (build-system r-build-system)
3499 (propagated-inputs
3500 (list r-matrixstats r-r-methodss3 r-r-oo r-r-utils))
3501 (home-page "https://github.com/HenrikBengtsson/aroma.light")
3502 (synopsis "Methods for normalization and visualization of microarray data")
3503 (description
3504 "This package provides methods for microarray analysis that take basic
3505 data types such as matrices and lists of vectors. These methods can be used
3506 standalone, be utilized in other packages, or be wrapped up in higher-level
3507 classes.")
3508 (license license:gpl2+)))
3509
3510 (define-public r-bamsignals
3511 (package
3512 (name "r-bamsignals")
3513 (version "1.28.0")
3514 (source
3515 (origin
3516 (method url-fetch)
3517 (uri (bioconductor-uri "bamsignals" version))
3518 (sha256
3519 (base32
3520 "0ywbxq829hclhr5bb6p77rspxvfs580zlwd2f5kr3an6rdgyx9ky"))))
3521 (build-system r-build-system)
3522 (propagated-inputs
3523 (list r-biocgenerics
3524 r-genomicranges
3525 r-iranges
3526 r-rcpp
3527 r-rhtslib
3528 r-zlibbioc))
3529 (native-inputs
3530 (list r-knitr))
3531 (home-page "https://bioconductor.org/packages/bamsignals")
3532 (synopsis "Extract read count signals from bam files")
3533 (description
3534 "This package efficiently obtains count vectors from indexed bam
3535 files. It counts the number of nucleotide sequence reads in given genomic
3536 ranges and it computes reads profiles and coverage profiles. It also handles
3537 paired-end data.")
3538 (license license:gpl2+)))
3539
3540 (define-public r-biobase
3541 (package
3542 (name "r-biobase")
3543 (version "2.56.0")
3544 (source (origin
3545 (method url-fetch)
3546 (uri (bioconductor-uri "Biobase" version))
3547 (sha256
3548 (base32
3549 "1mnxky78an079p60427cjvk4fzilp0xzy6b85fq274qvdcrz8jbv"))))
3550 (properties
3551 `((upstream-name . "Biobase")))
3552 (build-system r-build-system)
3553 (propagated-inputs
3554 (list r-biocgenerics))
3555 (home-page "https://bioconductor.org/packages/Biobase")
3556 (synopsis "Base functions for Bioconductor")
3557 (description
3558 "This package provides functions that are needed by many other packages
3559 on Bioconductor or which replace R functions.")
3560 (license license:artistic2.0)))
3561
3562 (define-public r-biomart
3563 (package
3564 (name "r-biomart")
3565 (version "2.52.0")
3566 (source (origin
3567 (method url-fetch)
3568 (uri (bioconductor-uri "biomaRt" version))
3569 (sha256
3570 (base32
3571 "0yn3kanyrplc89a900xiz33nw1v23mkljvd5isizgs8gzvwzf8xg"))))
3572 (properties
3573 `((upstream-name . "biomaRt")))
3574 (build-system r-build-system)
3575 (propagated-inputs
3576 (list r-annotationdbi
3577 r-biocfilecache
3578 r-digest
3579 r-httr
3580 r-progress
3581 r-rappdirs
3582 r-stringr
3583 r-xml
3584 r-xml2))
3585 (native-inputs
3586 (list r-knitr))
3587 (home-page "https://bioconductor.org/packages/biomaRt")
3588 (synopsis "Interface to BioMart databases")
3589 (description
3590 "biomaRt provides an interface to a growing collection of databases
3591 implementing the @url{BioMart software suite, http://www.biomart.org}. The
3592 package enables retrieval of large amounts of data in a uniform way without
3593 the need to know the underlying database schemas or write complex SQL queries.
3594 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
3595 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
3596 users direct access to a diverse set of data and enable a wide range of
3597 powerful online queries from gene annotation to database mining.")
3598 (license license:artistic2.0)))
3599
3600 ;; This is a CRAN package, but it depends on a Bioconductor package:
3601 ;; r-biomart
3602 (define-public r-biomartr
3603 (package
3604 (name "r-biomartr")
3605 (version "1.0.2")
3606 (source (origin
3607 (method url-fetch)
3608 (uri (cran-uri "biomartr" version))
3609 (sha256
3610 (base32
3611 "0hr7wks88lbfcqzjzm4x265dk4lpmc3i2ndp7xcrx8ssj76wrmkz"))))
3612 (properties `((upstream-name . "biomartr")))
3613 (build-system r-build-system)
3614 (propagated-inputs
3615 (list r-biomart
3616 r-biostrings
3617 r-curl
3618 r-data-table
3619 r-downloader
3620 r-dplyr
3621 r-fs
3622 r-httr
3623 r-jsonlite
3624 r-philentropy
3625 r-purrr
3626 r-r-utils
3627 r-rcurl
3628 r-readr
3629 r-stringr
3630 r-tibble
3631 r-withr
3632 r-xml))
3633 (native-inputs (list r-knitr))
3634 (home-page "https://docs.ropensci.org/biomartr/")
3635 (synopsis "Genomic data retrieval")
3636 (description
3637 "Perform large scale genomic data retrieval and functional annotation
3638 retrieval. This package aims to provide users with a standardized way to
3639 automate genome, proteome, RNA, coding sequence (CDS), GFF, and metagenome
3640 retrieval from NCBI RefSeq, NCBI Genbank, ENSEMBL, and UniProt databases.
3641 Furthermore, an interface to the BioMart database allows users to retrieve
3642 functional annotation for genomic loci. In addition, users can download
3643 entire databases such as NCBI RefSeq, NCBI nr, NCBI nt, NCBI Genbank, etc with
3644 only one command.")
3645 (license license:gpl2)))
3646
3647 (define-public r-biocparallel
3648 (package
3649 (name "r-biocparallel")
3650 (version "1.30.3")
3651 (source (origin
3652 (method url-fetch)
3653 (uri (bioconductor-uri "BiocParallel" version))
3654 (sha256
3655 (base32
3656 "1rs3wmasl9mx7f399iclvm0bnvggvjj2a88zbi294r5m8wxqlc92"))))
3657 (properties
3658 `((upstream-name . "BiocParallel")))
3659 (build-system r-build-system)
3660 (arguments
3661 `(#:phases
3662 (modify-phases %standard-phases
3663 (add-after 'unpack 'make-reproducible
3664 (lambda _
3665 ;; Remove generated documentation.
3666 (for-each delete-file
3667 '("inst/doc/BiocParallel_BatchtoolsParam.pdf"
3668 "inst/doc/Introduction_To_BiocParallel.pdf"
3669 "inst/doc/Errors_Logs_And_Debugging.pdf"
3670 "inst/doc/BiocParallel_BatchtoolsParam.R"
3671 "inst/doc/Introduction_To_BiocParallel.R"
3672 "inst/doc/Errors_Logs_And_Debugging.R"))
3673
3674 ;; Remove time-dependent macro
3675 (substitute* '("inst/doc/BiocParallel_BatchtoolsParam.Rnw"
3676 "inst/doc/Introduction_To_BiocParallel.Rnw"
3677 "inst/doc/Errors_Logs_And_Debugging.Rnw"
3678 "vignettes/BiocParallel_BatchtoolsParam.Rnw"
3679 "vignettes/Introduction_To_BiocParallel.Rnw"
3680 "vignettes/Errors_Logs_And_Debugging.Rnw")
3681 (("\\today") "later"))
3682
3683 ;; Initialize the random number generator seed when building.
3684 (substitute* "R/rng.R"
3685 (("\"L'Ecuyer-CMRG\"\\)" m)
3686 (string-append
3687 m "; if (!is.na(Sys.getenv(\"SOURCE_DATE_EPOCH\"))) {set.seed(100)}\n"))))))))
3688 (propagated-inputs
3689 (list r-bh r-codetools r-futile-logger r-snow))
3690 (native-inputs
3691 (list r-knitr))
3692 (home-page "https://bioconductor.org/packages/BiocParallel")
3693 (synopsis "Bioconductor facilities for parallel evaluation")
3694 (description
3695 "This package provides modified versions and novel implementation of
3696 functions for parallel evaluation, tailored to use with Bioconductor
3697 objects.")
3698 (license (list license:gpl2+ license:gpl3+))))
3699
3700 (define-public r-biostrings
3701 (package
3702 (name "r-biostrings")
3703 (version "2.64.1")
3704 (source (origin
3705 (method url-fetch)
3706 (uri (bioconductor-uri "Biostrings" version))
3707 (sha256
3708 (base32
3709 "1wk8nlmp6f6fsjrcb4fb48s3ay38yywwad748i6lfkkcw2pdfw33"))))
3710 (properties
3711 `((upstream-name . "Biostrings")))
3712 (build-system r-build-system)
3713 (propagated-inputs
3714 (list r-biocgenerics
3715 r-crayon
3716 r-genomeinfodb
3717 r-iranges
3718 r-s4vectors
3719 r-xvector))
3720 (home-page "https://bioconductor.org/packages/Biostrings")
3721 (synopsis "String objects and algorithms for biological sequences")
3722 (description
3723 "This package provides memory efficient string containers, string
3724 matching algorithms, and other utilities, for fast manipulation of large
3725 biological sequences or sets of sequences.")
3726 (license license:artistic2.0)))
3727
3728 (define-public r-biovizbase
3729 (package
3730 (name "r-biovizbase")
3731 (version "1.44.0")
3732 (source
3733 (origin
3734 (method url-fetch)
3735 (uri (bioconductor-uri "biovizBase" version))
3736 (sha256
3737 (base32
3738 "1ffzf7yvl47l8v8a50m8g9q33hgwvxg4fcm8ld2yy8hd2zl86zyd"))))
3739 (properties `((upstream-name . "biovizBase")))
3740 (build-system r-build-system)
3741 (propagated-inputs
3742 (list r-annotationdbi
3743 r-annotationfilter
3744 r-biocgenerics
3745 r-biostrings
3746 r-dichromat
3747 r-ensembldb
3748 r-genomeinfodb
3749 r-genomicalignments
3750 r-genomicfeatures
3751 r-genomicranges
3752 r-hmisc
3753 r-iranges
3754 r-rcolorbrewer
3755 r-rlang
3756 r-rsamtools
3757 r-s4vectors
3758 r-scales
3759 r-summarizedexperiment
3760 r-variantannotation))
3761 (home-page "https://bioconductor.org/packages/biovizBase")
3762 (synopsis "Basic graphic utilities for visualization of genomic data")
3763 (description
3764 "The biovizBase package is designed to provide a set of utilities, color
3765 schemes and conventions for genomic data. It serves as the base for various
3766 high-level packages for biological data visualization. This saves development
3767 effort and encourages consistency.")
3768 (license license:artistic2.0)))
3769
3770 (define-public r-bsgenome
3771 (package
3772 (name "r-bsgenome")
3773 (version "1.64.0")
3774 (source (origin
3775 (method url-fetch)
3776 (uri (bioconductor-uri "BSgenome" version))
3777 (sha256
3778 (base32
3779 "17gqrmaf6xxghgrzcansl9gfw3ghkrqp87swlnwgyghqvflr5qxc"))))
3780 (properties
3781 `((upstream-name . "BSgenome")))
3782 (build-system r-build-system)
3783 (propagated-inputs
3784 (list r-biocgenerics
3785 r-biostrings
3786 r-genomeinfodb
3787 r-genomicranges
3788 r-iranges
3789 r-matrixstats
3790 r-rsamtools
3791 r-rtracklayer
3792 r-s4vectors
3793 r-xvector))
3794 (home-page "https://bioconductor.org/packages/BSgenome")
3795 (synopsis "Infrastructure for Biostrings-based genome data packages")
3796 (description
3797 "This package provides infrastructure shared by all Biostrings-based
3798 genome data packages and support for efficient SNP representation.")
3799 (license license:artistic2.0)))
3800
3801 (define-public r-category
3802 (package
3803 (name "r-category")
3804 (version "2.62.0")
3805 (source
3806 (origin
3807 (method url-fetch)
3808 (uri (bioconductor-uri "Category" version))
3809 (sha256
3810 (base32
3811 "07js03cfdd6gzbzw14iavlqxynfcqszh988v6k1a3h074wxiivqd"))))
3812 (properties `((upstream-name . "Category")))
3813 (build-system r-build-system)
3814 (propagated-inputs
3815 (list r-annotate
3816 r-annotationdbi
3817 r-biobase
3818 r-biocgenerics
3819 r-genefilter
3820 r-graph
3821 r-gseabase
3822 r-matrix
3823 r-rbgl
3824 r-dbi))
3825 (home-page "https://bioconductor.org/packages/Category")
3826 (synopsis "Category analysis")
3827 (description
3828 "This package provides a collection of tools for performing category
3829 analysis.")
3830 (license license:artistic2.0)))
3831
3832 (define-public r-chipseeker
3833 (package
3834 (name "r-chipseeker")
3835 (version "1.32.1")
3836 (source (origin
3837 (method url-fetch)
3838 (uri (bioconductor-uri "ChIPseeker" version))
3839 (sha256
3840 (base32
3841 "0l2514wvlc8q7n1zjzfrghdg372sp73z39204bkif3g6pdkcvbcf"))))
3842 (build-system r-build-system)
3843 (native-inputs
3844 (list r-knitr))
3845 (propagated-inputs
3846 (list r-annotationdbi
3847 r-biocgenerics
3848 r-boot
3849 r-enrichplot
3850 r-iranges
3851 r-genomeinfodb
3852 r-genomicranges
3853 r-genomicfeatures
3854 r-ggplot2
3855 r-ggvenndiagram
3856 r-gplots
3857 r-gtools
3858 r-dplyr
3859 r-plotrix
3860 r-dplyr
3861 r-magrittr
3862 r-rcolorbrewer
3863 r-rtracklayer
3864 r-s4vectors
3865 r-txdb-hsapiens-ucsc-hg19-knowngene))
3866 (home-page "https://www.bioconductor.org/packages/ChIPseeker/")
3867 (synopsis "ChIPseeker for ChIP peak annotation, comparison, and visualization")
3868 (description "This package implements functions to retrieve the nearest
3869 genes around the peak, annotate genomic region of the peak, statstical methods
3870 for estimate the significance of overlap among ChIP peak data sets, and
3871 incorporate GEO database for user to compare the own dataset with those
3872 deposited in database. The comparison can be used to infer cooperative
3873 regulation and thus can be used to generate hypotheses. Several visualization
3874 functions are implemented to summarize the coverage of the peak experiment,
3875 average profile and heatmap of peaks binding to TSS regions, genomic
3876 annotation, distance to TSS, and overlap of peaks or genes.")
3877 (license license:artistic2.0)))
3878
3879 (define-public r-chipseq
3880 (package
3881 (name "r-chipseq")
3882 (version "1.46.0")
3883 (source
3884 (origin
3885 (method url-fetch)
3886 (uri (bioconductor-uri "chipseq" version))
3887 (sha256
3888 (base32
3889 "1vh0hvgnw7ykj401v1q807sl14s4nixp1d8xbm41n01q6w8x834i"))))
3890 (build-system r-build-system)
3891 (propagated-inputs
3892 (list r-biocgenerics
3893 r-genomicranges
3894 r-iranges
3895 r-lattice
3896 r-s4vectors
3897 r-shortread))
3898 (home-page "https://bioconductor.org/packages/chipseq")
3899 (synopsis "Package for analyzing ChIPseq data")
3900 (description
3901 "This package provides tools for processing short read data from ChIPseq
3902 experiments.")
3903 (license license:artistic2.0)))
3904
3905 (define-public r-complexheatmap
3906 (package
3907 (name "r-complexheatmap")
3908 (version "2.12.1")
3909 (source
3910 (origin
3911 (method url-fetch)
3912 (uri (bioconductor-uri "ComplexHeatmap" version))
3913 (sha256
3914 (base32
3915 "0b4p3ijhdcydfp0j58xlb5dn7d3m2x420n91rl9diqpg4r2gl0s8"))))
3916 (properties
3917 `((upstream-name . "ComplexHeatmap")))
3918 (build-system r-build-system)
3919 (propagated-inputs
3920 (list r-circlize
3921 r-clue
3922 r-codetools
3923 r-colorspace
3924 r-digest
3925 r-doparallel
3926 r-foreach
3927 r-getoptlong
3928 r-globaloptions
3929 r-iranges
3930 r-matrixstats
3931 r-png
3932 r-rcolorbrewer))
3933 (native-inputs
3934 (list r-knitr))
3935 (home-page
3936 "https://github.com/jokergoo/ComplexHeatmap")
3937 (synopsis "Making Complex Heatmaps")
3938 (description
3939 "Complex heatmaps are efficient to visualize associations between
3940 different sources of data sets and reveal potential structures. This package
3941 provides a highly flexible way to arrange multiple heatmaps and supports
3942 self-defined annotation graphics.")
3943 (license license:gpl2+)))
3944
3945 (define-public r-copywriter
3946 (package
3947 (name "r-copywriter")
3948 (version "2.28.0")
3949 (source
3950 (origin
3951 (method url-fetch)
3952 (uri (bioconductor-uri "CopywriteR" version))
3953 (sha256
3954 (base32
3955 "1k11kvam96hpg71hz2n9cfzizmb7d1bmq5zfvm34s7fn09is60xb"))))
3956 (properties `((upstream-name . "CopywriteR")))
3957 (build-system r-build-system)
3958 (propagated-inputs
3959 (list r-biocparallel
3960 r-chipseq
3961 r-copyhelper
3962 r-data-table
3963 r-dnacopy
3964 r-futile-logger
3965 r-genomeinfodb
3966 r-genomicalignments
3967 r-genomicranges
3968 r-gtools
3969 r-iranges
3970 r-matrixstats
3971 r-rsamtools
3972 r-s4vectors))
3973 (home-page "https://github.com/PeeperLab/CopywriteR")
3974 (synopsis "Copy number information from targeted sequencing")
3975 (description
3976 "CopywriteR extracts DNA copy number information from targeted sequencing
3977 by utilizing off-target reads. It allows for extracting uniformly distributed
3978 copy number information, can be used without reference, and can be applied to
3979 sequencing data obtained from various techniques including chromatin
3980 immunoprecipitation and target enrichment on small gene panels. Thereby,
3981 CopywriteR constitutes a widely applicable alternative to available copy
3982 number detection tools.")
3983 (license license:gpl2)))
3984
3985 (define-public r-deseq
3986 (package
3987 (name "r-deseq")
3988 (version "1.39.0")
3989 (source
3990 (origin
3991 (method url-fetch)
3992 (uri (bioconductor-uri "DESeq" version))
3993 (sha256
3994 (base32
3995 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
3996 (properties `((upstream-name . "DESeq")))
3997 (build-system r-build-system)
3998 (propagated-inputs
3999 (list r-biobase
4000 r-biocgenerics
4001 r-genefilter
4002 r-geneplotter
4003 r-lattice
4004 r-locfit
4005 r-mass
4006 r-rcolorbrewer))
4007 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
4008 (synopsis "Differential gene expression analysis")
4009 (description
4010 "This package provides tools for estimating variance-mean dependence in
4011 count data from high-throughput genetic sequencing assays and for testing for
4012 differential expression based on a model using the negative binomial
4013 distribution.")
4014 (license license:gpl3+)))
4015
4016 (define-public r-deseq2
4017 (package
4018 (name "r-deseq2")
4019 (version "1.36.0")
4020 (source
4021 (origin
4022 (method url-fetch)
4023 (uri (bioconductor-uri "DESeq2" version))
4024 (sha256
4025 (base32
4026 "06mvb0jqn2fg96wfwspv0kzpa8xpimzaldrcy8m2d4yk76xwsdr7"))))
4027 (properties `((upstream-name . "DESeq2")))
4028 (build-system r-build-system)
4029 (propagated-inputs
4030 (list r-biobase
4031 r-biocgenerics
4032 r-biocparallel
4033 r-genefilter
4034 r-geneplotter
4035 r-genomicranges
4036 r-ggplot2
4037 r-iranges
4038 r-locfit
4039 r-rcpp
4040 r-rcpparmadillo
4041 r-s4vectors
4042 r-summarizedexperiment))
4043 (native-inputs
4044 (list r-knitr))
4045 (home-page "https://bioconductor.org/packages/DESeq2")
4046 (synopsis "Differential gene expression analysis")
4047 (description
4048 "This package provides functions to estimate variance-mean dependence in
4049 count data from high-throughput nucleotide sequencing assays and test for
4050 differential expression based on a model using the negative binomial
4051 distribution.")
4052 (license license:lgpl3+)))
4053
4054 (define-public r-dexseq
4055 (package
4056 (name "r-dexseq")
4057 (version "1.42.0")
4058 (source
4059 (origin
4060 (method url-fetch)
4061 (uri (bioconductor-uri "DEXSeq" version))
4062 (sha256
4063 (base32
4064 "1dzx9mvm8pvcrwr88rin3flnpmzp3vq8mvspx9s8virqhv1102am"))))
4065 (properties `((upstream-name . "DEXSeq")))
4066 (build-system r-build-system)
4067 (propagated-inputs
4068 (list r-annotationdbi
4069 r-biobase
4070 r-biocgenerics
4071 r-biocparallel
4072 r-biomart
4073 r-deseq2
4074 r-genefilter
4075 r-geneplotter
4076 r-genomicranges
4077 r-hwriter
4078 r-iranges
4079 r-rcolorbrewer
4080 r-rsamtools
4081 r-s4vectors
4082 r-statmod
4083 r-stringr
4084 r-summarizedexperiment))
4085 (native-inputs
4086 (list r-knitr))
4087 (home-page "https://bioconductor.org/packages/DEXSeq")
4088 (synopsis "Inference of differential exon usage in RNA-Seq")
4089 (description
4090 "This package is focused on finding differential exon usage using RNA-seq
4091 exon counts between samples with different experimental designs. It provides
4092 functions that allows the user to make the necessary statistical tests based
4093 on a model that uses the negative binomial distribution to estimate the
4094 variance between biological replicates and generalized linear models for
4095 testing. The package also provides functions for the visualization and
4096 exploration of the results.")
4097 (license license:gpl3+)))
4098
4099 (define-public r-diffcyt
4100 (package
4101 (name "r-diffcyt")
4102 (version "1.16.0")
4103 (source
4104 (origin
4105 (method url-fetch)
4106 (uri (bioconductor-uri "diffcyt" version))
4107 (sha256
4108 (base32 "0mysylzmg24g7lm1xan4yklzqmskfgh53j6vjcz2gzakz5rq3rdb"))))
4109 (properties `((upstream-name . "diffcyt")))
4110 (build-system r-build-system)
4111 (propagated-inputs
4112 (list r-circlize
4113 r-complexheatmap
4114 r-dplyr
4115 r-edger
4116 r-flowcore
4117 r-flowsom
4118 r-limma
4119 r-lme4
4120 r-magrittr
4121 r-multcomp
4122 r-reshape2
4123 r-s4vectors
4124 r-summarizedexperiment
4125 r-tidyr))
4126 (native-inputs (list r-knitr))
4127 (home-page "https://github.com/lmweber/diffcyt")
4128 (synopsis "Differential discovery in high-dimensional cytometry")
4129 (description
4130 "This package provides statistical methods for differential discovery
4131 analyses in high-dimensional cytometry data (including flow cytometry, mass
4132 cytometry or CyTOF, and oligonucleotide-tagged cytometry), based on a
4133 combination of high-resolution clustering and empirical Bayes moderated tests
4134 adapted from transcriptomics.")
4135 (license license:expat)))
4136
4137 (define-public r-dirichletmultinomial
4138 (package
4139 (name "r-dirichletmultinomial")
4140 (version "1.38.0")
4141 (source
4142 (origin
4143 (method url-fetch)
4144 (uri (bioconductor-uri "DirichletMultinomial" version))
4145 (sha256
4146 (base32
4147 "15l0h2qz80lmrm5rva3v7lkgddn42igyxxwims57zwpwyhrk9bmx"))))
4148 (properties
4149 `((upstream-name . "DirichletMultinomial")))
4150 (build-system r-build-system)
4151 (inputs
4152 (list gsl))
4153 (propagated-inputs
4154 (list r-biocgenerics r-iranges r-s4vectors))
4155 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
4156 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
4157 (description
4158 "Dirichlet-multinomial mixture models can be used to describe variability
4159 in microbial metagenomic data. This package is an interface to code
4160 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
4161 1-15.")
4162 (license license:lgpl3)))
4163
4164 (define-public r-dittoseq
4165 (package
4166 (name "r-dittoseq")
4167 (version "1.8.1")
4168 (source (origin
4169 (method url-fetch)
4170 (uri (bioconductor-uri "dittoSeq" version))
4171 (sha256
4172 (base32
4173 "0vi0hcyffaxp6yxsrq95bdlrhr85dvbqm9c7rg6a6blkfgwhlzb4"))))
4174 (properties `((upstream-name . "dittoSeq")))
4175 (build-system r-build-system)
4176 (propagated-inputs
4177 (list r-colorspace
4178 r-cowplot
4179 r-ggplot2
4180 r-ggrepel
4181 r-ggridges
4182 r-gridextra
4183 r-pheatmap
4184 r-reshape2
4185 r-s4vectors
4186 r-singlecellexperiment
4187 r-summarizedexperiment))
4188 (native-inputs (list r-knitr))
4189 (home-page "https://bioconductor.org/packages/dittoSeq")
4190 (synopsis "Single-cell and bulk RNA sequencing visualization")
4191 (description
4192 "This package provides a universal, user friendly, single-cell and bulk RNA
4193 sequencing visualization toolkit that allows highly customizable creation of
4194 color blindness friendly, publication-quality figures. dittoSeq accepts both
4195 SingleCellExperiment (SCE) and Seurat objects, as well as the import and
4196 usage, via conversion to an SCE, of SummarizedExperiment or DGEList bulk data.
4197 Visualizations include dimensionality reduction plots, heatmaps, scatterplots,
4198 percent composition or expression across groups, and more. Customizations
4199 range from size and title adjustments to automatic generation of annotations
4200 for heatmaps, overlay of trajectory analysis onto any dimensionality reduciton
4201 plot, hidden data overlay upon cursor hovering via ggplotly conversion, and
4202 many more. All with simple, discrete inputs. Color blindness friendliness is
4203 powered by legend adjustments (enlarged keys), and by allowing the use of
4204 shapes or letter-overlay in addition to the carefully selected
4205 code{dittoColors()}.")
4206 (license license:expat)))
4207
4208 (define-public r-edaseq
4209 (package
4210 (name "r-edaseq")
4211 (version "2.30.0")
4212 (source
4213 (origin
4214 (method url-fetch)
4215 (uri (bioconductor-uri "EDASeq" version))
4216 (sha256
4217 (base32
4218 "1qnpbmhxvqsma7ihi6yp3ad962xcanlxald84k2szh011ipxj7ws"))))
4219 (properties `((upstream-name . "EDASeq")))
4220 (build-system r-build-system)
4221 (propagated-inputs
4222 (list r-annotationdbi
4223 r-aroma-light
4224 r-biobase
4225 r-biocgenerics
4226 r-biocmanager
4227 r-biomart
4228 r-biostrings
4229 r-genomicfeatures
4230 r-genomicranges
4231 r-iranges
4232 r-rsamtools
4233 r-shortread))
4234 (native-inputs
4235 (list r-knitr))
4236 (home-page "https://github.com/drisso/EDASeq")
4237 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
4238 (description
4239 "This package provides support for numerical and graphical summaries of
4240 RNA-Seq genomic read data. Provided within-lane normalization procedures to
4241 adjust for GC-content effect (or other gene-level effects) on read counts:
4242 loess robust local regression, global-scaling, and full-quantile
4243 normalization. Between-lane normalization procedures to adjust for
4244 distributional differences between lanes (e.g., sequencing depth):
4245 global-scaling and full-quantile normalization.")
4246 (license license:artistic2.0)))
4247
4248 (define-public r-edger
4249 (package
4250 (name "r-edger")
4251 (version "3.38.4")
4252 (source (origin
4253 (method url-fetch)
4254 (uri (bioconductor-uri "edgeR" version))
4255 (sha256
4256 (base32
4257 "1ww69xrg9qrmq7dix2k48j6akgn58ss3340hm7pjvzx508x1j6n6"))))
4258 (properties `((upstream-name . "edgeR")))
4259 (build-system r-build-system)
4260 (propagated-inputs
4261 (list r-limma r-locfit r-rcpp))
4262 (home-page "http://bioinf.wehi.edu.au/edgeR")
4263 (synopsis "EdgeR does empirical analysis of digital gene expression data")
4264 (description "This package can do differential expression analysis of
4265 RNA-seq expression profiles with biological replication. It implements a range
4266 of statistical methodology based on the negative binomial distributions,
4267 including empirical Bayes estimation, exact tests, generalized linear models
4268 and quasi-likelihood tests. It be applied to differential signal analysis of
4269 other types of genomic data that produce counts, including ChIP-seq, SAGE and
4270 CAGE.")
4271 (license license:gpl2+)))
4272
4273 (define-public r-ensembldb
4274 (package
4275 (name "r-ensembldb")
4276 (version "2.20.2")
4277 (source
4278 (origin
4279 (method url-fetch)
4280 (uri (bioconductor-uri "ensembldb" version))
4281 (sha256
4282 (base32
4283 "12n21dcimdhgyjzk33m6xbv0m9ihgyzcf66vr1jr5ycv3rq2s7xc"))))
4284 (build-system r-build-system)
4285 (propagated-inputs
4286 (list r-annotationdbi
4287 r-annotationfilter
4288 r-biobase
4289 r-biocgenerics
4290 r-biostrings
4291 r-curl
4292 r-dbi
4293 r-genomeinfodb
4294 r-genomicfeatures
4295 r-genomicranges
4296 r-iranges
4297 r-protgenerics
4298 r-rsamtools
4299 r-rsqlite
4300 r-rtracklayer
4301 r-s4vectors))
4302 (native-inputs
4303 (list r-knitr))
4304 (home-page "https://github.com/jotsetung/ensembldb")
4305 (synopsis "Utilities to create and use Ensembl-based annotation databases")
4306 (description
4307 "The package provides functions to create and use transcript-centric
4308 annotation databases/packages. The annotation for the databases are directly
4309 fetched from Ensembl using their Perl API. The functionality and data is
4310 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
4311 but, in addition to retrieve all gene/transcript models and annotations from
4312 the database, the @code{ensembldb} package also provides a filter framework
4313 allowing to retrieve annotations for specific entries like genes encoded on a
4314 chromosome region or transcript models of lincRNA genes.")
4315 ;; No version specified
4316 (license license:lgpl3+)))
4317
4318 (define-public r-fastseg
4319 (package
4320 (name "r-fastseg")
4321 (version "1.42.0")
4322 (source
4323 (origin
4324 (method url-fetch)
4325 (uri (bioconductor-uri "fastseg" version))
4326 (sha256
4327 (base32
4328 "1cr1b1jbgp1z1zpf71kl7mljbm2jpi6b97bf3bll3gnagfm489hy"))))
4329 (build-system r-build-system)
4330 (propagated-inputs
4331 (list r-biobase r-biocgenerics r-genomicranges r-iranges
4332 r-s4vectors))
4333 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
4334 (synopsis "Fast segmentation algorithm for genetic sequencing data")
4335 (description
4336 "Fastseg implements a very fast and efficient segmentation algorithm.
4337 It can segment data from DNA microarrays and data from next generation
4338 sequencing for example to detect copy number segments. Further it can segment
4339 data from RNA microarrays like tiling arrays to identify transcripts. Most
4340 generally, it can segment data given as a matrix or as a vector. Various data
4341 formats can be used as input to fastseg like expression set objects for
4342 microarrays or GRanges for sequencing data.")
4343 (license license:lgpl2.0+)))
4344
4345 (define-public r-gage
4346 (package
4347 (name "r-gage")
4348 (version "2.46.1")
4349 (source
4350 (origin
4351 (method url-fetch)
4352 (uri (bioconductor-uri "gage" version))
4353 (sha256
4354 (base32
4355 "01y04jcy7a9fksyhj0nq37n1inkrpqf4qv117lflvipbx0dsw4gl"))))
4356 (build-system r-build-system)
4357 (propagated-inputs
4358 (list r-annotationdbi r-go-db r-graph r-keggrest))
4359 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
4360 "articles/10.1186/1471-2105-10-161"))
4361 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
4362 (description
4363 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
4364 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
4365 data attributes including sample sizes, experimental designs, assay platforms,
4366 and other types of heterogeneity. The gage package provides functions for
4367 basic GAGE analysis, result processing and presentation. In addition, it
4368 provides demo microarray data and commonly used gene set data based on KEGG
4369 pathways and GO terms. These functions and data are also useful for gene set
4370 analysis using other methods.")
4371 (license license:gpl2+)))
4372
4373 (define-public r-genefilter
4374 (package
4375 (name "r-genefilter")
4376 (version "1.78.0")
4377 (source
4378 (origin
4379 (method url-fetch)
4380 (uri (bioconductor-uri "genefilter" version))
4381 (sha256
4382 (base32
4383 "1lp3alnljhsil8zylf8rvf8ik4wmsyciy3ij4rr9l4191dkkp4aq"))))
4384 (build-system r-build-system)
4385 (native-inputs
4386 (list gfortran r-knitr))
4387 (propagated-inputs
4388 (list r-annotate r-annotationdbi r-biobase r-biocgenerics
4389 r-survival))
4390 (home-page "https://bioconductor.org/packages/genefilter")
4391 (synopsis "Filter genes from high-throughput experiments")
4392 (description
4393 "This package provides basic functions for filtering genes from
4394 high-throughput sequencing experiments.")
4395 (license license:artistic2.0)))
4396
4397 (define-public r-geneoverlap
4398 (package
4399 (name "r-geneoverlap")
4400 (version "1.32.0")
4401 (source (origin
4402 (method url-fetch)
4403 (uri (bioconductor-uri "GeneOverlap" version))
4404 (sha256
4405 (base32
4406 "0nqwa3x9q1hl9nm06hqzzrn00rirc9kj6s320csjlf7x6rcidr93"))))
4407 (build-system r-build-system)
4408 (propagated-inputs
4409 (list r-rcolorbrewer r-gplots))
4410 (home-page "https://www.bioconductor.org/packages/GeneOverlap/")
4411 (synopsis "Test and visualize gene overlaps")
4412 (description "This package can be used to test two sets of gene lists
4413 and visualize the results.")
4414 (license license:gpl3)))
4415
4416 (define-public r-genomation
4417 (package
4418 (name "r-genomation")
4419 (version "1.28.0")
4420 (source (origin
4421 (method url-fetch)
4422 (uri (bioconductor-uri "genomation" version))
4423 (sha256
4424 (base32
4425 "0rvay7gs4g2wi6h42kln8xwy9b05axj1x8mkfayl6pnnlva6xj79"))))
4426 (build-system r-build-system)
4427 (propagated-inputs
4428 (list r-biostrings
4429 r-bsgenome
4430 r-data-table
4431 r-genomeinfodb
4432 r-genomicalignments
4433 r-genomicranges
4434 r-ggplot2
4435 r-gridbase
4436 r-impute
4437 r-iranges
4438 r-matrixstats
4439 r-plotrix
4440 r-plyr
4441 r-rcpp
4442 r-readr
4443 r-reshape2
4444 r-rsamtools
4445 r-rtracklayer
4446 r-s4vectors
4447 r-seqpattern))
4448 (native-inputs
4449 (list r-knitr))
4450 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
4451 (synopsis "Summary, annotation and visualization of genomic data")
4452 (description
4453 "This package provides a package for summary and annotation of genomic
4454 intervals. Users can visualize and quantify genomic intervals over
4455 pre-defined functional regions, such as promoters, exons, introns, etc. The
4456 genomic intervals represent regions with a defined chromosome position, which
4457 may be associated with a score, such as aligned reads from HT-seq experiments,
4458 TF binding sites, methylation scores, etc. The package can use any tabular
4459 genomic feature data as long as it has minimal information on the locations of
4460 genomic intervals. In addition, it can use BAM or BigWig files as input.")
4461 (license license:artistic2.0)))
4462
4463 (define-public r-genomeinfodb
4464 (package
4465 (name "r-genomeinfodb")
4466 (version "1.32.4")
4467 (source (origin
4468 (method url-fetch)
4469 (uri (bioconductor-uri "GenomeInfoDb" version))
4470 (sha256
4471 (base32
4472 "0z2bqr0zrl3r2kcqs72ny8p1psf8w1sgbr7qjjknxdv1qp8m2j7v"))))
4473 (properties
4474 `((upstream-name . "GenomeInfoDb")))
4475 (build-system r-build-system)
4476 (propagated-inputs
4477 (list r-biocgenerics r-genomeinfodbdata r-iranges r-rcurl
4478 r-s4vectors))
4479 (native-inputs
4480 (list r-knitr))
4481 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
4482 (synopsis "Utilities for manipulating chromosome identifiers")
4483 (description
4484 "This package contains data and functions that define and allow
4485 translation between different chromosome sequence naming conventions (e.g.,
4486 \"chr1\" versus \"1\"), including a function that attempts to place sequence
4487 names in their natural, rather than lexicographic, order.")
4488 (license license:artistic2.0)))
4489
4490 (define-public r-genomicalignments
4491 (package
4492 (name "r-genomicalignments")
4493 (version "1.32.1")
4494 (source (origin
4495 (method url-fetch)
4496 (uri (bioconductor-uri "GenomicAlignments" version))
4497 (sha256
4498 (base32
4499 "09pg7822camyav5zvlpv360sj5gz8q1bhk528qa2da2qsz74a3cz"))))
4500 (properties
4501 `((upstream-name . "GenomicAlignments")))
4502 (build-system r-build-system)
4503 (propagated-inputs
4504 (list r-biocgenerics
4505 r-biocparallel
4506 r-biostrings
4507 r-genomeinfodb
4508 r-genomicranges
4509 r-iranges
4510 r-rsamtools
4511 r-s4vectors
4512 r-summarizedexperiment))
4513 (home-page "https://bioconductor.org/packages/GenomicAlignments")
4514 (synopsis "Representation and manipulation of short genomic alignments")
4515 (description
4516 "This package provides efficient containers for storing and manipulating
4517 short genomic alignments (typically obtained by aligning short reads to a
4518 reference genome). This includes read counting, computing the coverage,
4519 junction detection, and working with the nucleotide content of the
4520 alignments.")
4521 (license license:artistic2.0)))
4522
4523 (define-public r-genomicfeatures
4524 (package
4525 (name "r-genomicfeatures")
4526 (version "1.48.4")
4527 (source (origin
4528 (method url-fetch)
4529 (uri (bioconductor-uri "GenomicFeatures" version))
4530 (sha256
4531 (base32
4532 "15kn5lmdqp7rsh2zlixj7ashsqnv50bs36hapw36qbaz9vgvim4v"))))
4533 (properties
4534 `((upstream-name . "GenomicFeatures")))
4535 (build-system r-build-system)
4536 (propagated-inputs
4537 (list r-annotationdbi
4538 r-biobase
4539 r-biocgenerics
4540 r-biocio
4541 r-biomart
4542 r-biostrings
4543 r-dbi
4544 r-genomeinfodb
4545 r-genomicranges
4546 r-iranges
4547 r-rcurl
4548 r-rsqlite
4549 r-rtracklayer
4550 r-s4vectors
4551 r-xvector))
4552 (native-inputs
4553 (list r-knitr))
4554 (home-page "https://bioconductor.org/packages/GenomicFeatures")
4555 (synopsis "Tools for working with transcript centric annotations")
4556 (description
4557 "This package provides a set of tools and methods for making and
4558 manipulating transcript centric annotations. With these tools the user can
4559 easily download the genomic locations of the transcripts, exons and cds of a
4560 given organism, from either the UCSC Genome Browser or a BioMart
4561 database (more sources will be supported in the future). This information is
4562 then stored in a local database that keeps track of the relationship between
4563 transcripts, exons, cds and genes. Flexible methods are provided for
4564 extracting the desired features in a convenient format.")
4565 (license license:artistic2.0)))
4566
4567 (define-public r-genomicfiles
4568 (package
4569 (name "r-genomicfiles")
4570 (version "1.32.1")
4571 (source
4572 (origin
4573 (method url-fetch)
4574 (uri (bioconductor-uri "GenomicFiles" version))
4575 (sha256
4576 (base32
4577 "06ycfna26klx27vvsnlpgv46bymfrc8z0zkpag7nm4m23153ivkz"))))
4578 (properties `((upstream-name . "GenomicFiles")))
4579 (build-system r-build-system)
4580 (propagated-inputs
4581 (list r-biocgenerics
4582 r-biocparallel
4583 r-genomeinfodb
4584 r-genomicalignments
4585 r-genomicranges
4586 r-iranges
4587 r-matrixgenerics
4588 r-rsamtools
4589 r-rtracklayer
4590 r-s4vectors
4591 r-summarizedexperiment
4592 r-variantannotation))
4593 (home-page "https://bioconductor.org/packages/GenomicFiles")
4594 (synopsis "Distributed computing by file or by range")
4595 (description
4596 "This package provides infrastructure for parallel computations
4597 distributed by file or by range. User defined mapper and reducer functions
4598 provide added flexibility for data combination and manipulation.")
4599 (license license:artistic2.0)))
4600
4601 (define-public r-genomicranges
4602 (package
4603 (name "r-genomicranges")
4604 (version "1.48.0")
4605 (source (origin
4606 (method url-fetch)
4607 (uri (bioconductor-uri "GenomicRanges" version))
4608 (sha256
4609 (base32
4610 "088rv1aclwq265pdg4hmks73nl0125vk0vigyi44n3djkrdx48yn"))))
4611 (properties
4612 `((upstream-name . "GenomicRanges")))
4613 (build-system r-build-system)
4614 (propagated-inputs
4615 (list r-biocgenerics r-genomeinfodb r-iranges r-s4vectors r-xvector))
4616 (native-inputs
4617 (list r-knitr))
4618 (home-page "https://bioconductor.org/packages/GenomicRanges")
4619 (synopsis "Representation and manipulation of genomic intervals")
4620 (description
4621 "This package provides tools to efficiently represent and manipulate
4622 genomic annotations and alignments is playing a central role when it comes to
4623 analyzing high-throughput sequencing data (a.k.a. NGS data). The
4624 GenomicRanges package defines general purpose containers for storing and
4625 manipulating genomic intervals and variables defined along a genome.")
4626 (license license:artistic2.0)))
4627
4628 (define-public r-gostats
4629 (package
4630 (name "r-gostats")
4631 (version "2.62.0")
4632 (source
4633 (origin
4634 (method url-fetch)
4635 (uri (bioconductor-uri "GOstats" version))
4636 (sha256
4637 (base32
4638 "121ly9vifarg8y7mc468571bbs0xv4sx6sflm5zcdqf0p83yvjrm"))))
4639 (properties `((upstream-name . "GOstats")))
4640 (build-system r-build-system)
4641 (propagated-inputs
4642 (list r-annotate
4643 r-annotationdbi
4644 r-annotationforge
4645 r-biobase
4646 r-category
4647 r-go-db
4648 r-graph
4649 r-rgraphviz
4650 r-rbgl))
4651 (home-page "https://bioconductor.org/packages/GOstats")
4652 (synopsis "Tools for manipulating GO and microarrays")
4653 (description
4654 "This package provides a set of tools for interacting with GO and
4655 microarray data. A variety of basic manipulation tools for graphs, hypothesis
4656 testing and other simple calculations.")
4657 (license license:artistic2.0)))
4658
4659 (define-public r-gseabase
4660 (package
4661 (name "r-gseabase")
4662 (version "1.58.0")
4663 (source
4664 (origin
4665 (method url-fetch)
4666 (uri (bioconductor-uri "GSEABase" version))
4667 (sha256
4668 (base32
4669 "1qhvgyg392fd98h2qnmfmhg7mil5hp9cy3qmkqs4x1bhpv1m978g"))))
4670 (properties `((upstream-name . "GSEABase")))
4671 (build-system r-build-system)
4672 (propagated-inputs
4673 (list r-annotate
4674 r-annotationdbi
4675 r-biobase
4676 r-biocgenerics
4677 r-graph
4678 r-xml))
4679 (native-inputs
4680 (list r-knitr))
4681 (home-page "https://bioconductor.org/packages/GSEABase")
4682 (synopsis "Gene set enrichment data structures and methods")
4683 (description
4684 "This package provides classes and methods to support @dfn{Gene Set
4685 Enrichment Analysis} (GSEA).")
4686 (license license:artistic2.0)))
4687
4688 (define-public r-hpar
4689 (package
4690 (name "r-hpar")
4691 (version "1.38.0")
4692 (source
4693 (origin
4694 (method url-fetch)
4695 (uri (bioconductor-uri "hpar" version))
4696 (sha256
4697 (base32
4698 "07c6r703d5xp7y9bqmqalxgna2qrbk1h5s0d992m7360k259mgrj"))))
4699 (build-system r-build-system)
4700 (native-inputs
4701 (list r-knitr))
4702 (home-page "https://bioconductor.org/packages/hpar/")
4703 (synopsis "Human Protein Atlas in R")
4704 (description "This package provides a simple interface to and data from
4705 the Human Protein Atlas project.")
4706 (license license:artistic2.0)))
4707
4708 (define-public r-rhtslib
4709 (package
4710 (name "r-rhtslib")
4711 (version "1.28.0")
4712 (source
4713 (origin
4714 (method url-fetch)
4715 (uri (bioconductor-uri "Rhtslib" version))
4716 (sha256
4717 (base32
4718 "07kws6afkxbmxq4w357mwwl712pdd16alvz7iqijjd2x7rjchj2f"))))
4719 (properties `((upstream-name . "Rhtslib")))
4720 (build-system r-build-system)
4721 ;; Without this a temporary directory ends up in the Rhtslib.so binary,
4722 ;; which makes R abort the build.
4723 (arguments '(#:configure-flags '("--no-staged-install")))
4724 (propagated-inputs
4725 (list curl zlib ; packages using rhtslib need to link with zlib
4726 r-zlibbioc))
4727 (native-inputs
4728 (list pkg-config r-knitr))
4729 (home-page "https://github.com/nhayden/Rhtslib")
4730 (synopsis "High-throughput sequencing library as an R package")
4731 (description
4732 "This package provides the HTSlib C library for high-throughput
4733 nucleotide sequence analysis. The package is primarily useful to developers
4734 of other R packages who wish to make use of HTSlib.")
4735 (license license:lgpl2.0+)))
4736
4737 (define-public r-impute
4738 (package
4739 (name "r-impute")
4740 (version "1.70.0")
4741 (source (origin
4742 (method url-fetch)
4743 (uri (bioconductor-uri "impute" version))
4744 (sha256
4745 (base32
4746 "11b0z7py0im6y43k55xpzz5jnvc0ram9rk3n1n4mwhvs0vhy39r2"))))
4747 (native-inputs
4748 (list gfortran))
4749 (build-system r-build-system)
4750 (home-page "https://bioconductor.org/packages/impute")
4751 (synopsis "Imputation for microarray data")
4752 (description
4753 "This package provides a function to impute missing gene expression
4754 microarray data, using nearest neighbor averaging.")
4755 (license license:gpl2+)))
4756
4757 (define-public r-interactivedisplaybase
4758 (package
4759 (name "r-interactivedisplaybase")
4760 (version "1.34.0")
4761 (source
4762 (origin
4763 (method url-fetch)
4764 (uri (bioconductor-uri "interactiveDisplayBase" version))
4765 (sha256
4766 (base32
4767 "0fdwx5ch0ch8axdkfiq7zzhhq5hwcvd6kf8fggw9nd3ah1yjwbdg"))))
4768 (properties
4769 `((upstream-name . "interactiveDisplayBase")))
4770 (build-system r-build-system)
4771 (propagated-inputs
4772 (list r-biocgenerics r-dt r-shiny))
4773 (native-inputs
4774 (list r-knitr))
4775 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
4776 (synopsis "Base package for web displays of Bioconductor objects")
4777 (description
4778 "This package contains the basic methods needed to generate interactive
4779 Shiny-based display methods for Bioconductor objects.")
4780 (license license:artistic2.0)))
4781
4782 (define-public r-keggrest
4783 (package
4784 (name "r-keggrest")
4785 (version "1.36.3")
4786 (source
4787 (origin
4788 (method url-fetch)
4789 (uri (bioconductor-uri "KEGGREST" version))
4790 (sha256
4791 (base32
4792 "0lzb3z6pzm323q70931b7220ygml7jb4g81dybwa79wqiqz15pni"))))
4793 (properties `((upstream-name . "KEGGREST")))
4794 (build-system r-build-system)
4795 (propagated-inputs
4796 (list r-biostrings r-httr r-png))
4797 (native-inputs
4798 (list r-knitr))
4799 (home-page "https://bioconductor.org/packages/KEGGREST")
4800 (synopsis "Client-side REST access to KEGG")
4801 (description
4802 "This package provides a package that provides a client interface to the
4803 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
4804 (license license:artistic2.0)))
4805
4806 (define-public r-lfa
4807 (package
4808 (name "r-lfa")
4809 (version "1.26.0")
4810 (source
4811 (origin
4812 (method url-fetch)
4813 (uri (bioconductor-uri "lfa" version))
4814 (sha256
4815 (base32 "044866h4fnxmzb3sh9vmrd2smgsbcqgvd19dgwxisi418cad577l"))))
4816 (properties `((upstream-name . "lfa")))
4817 (build-system r-build-system)
4818 (propagated-inputs (list r-corpcor))
4819 (native-inputs (list r-knitr))
4820 (home-page "https://github.com/StoreyLab/lfa")
4821 (synopsis "Logistic Factor Analysis for categorical data")
4822 (description
4823 "@dfn{Logistic Factor Analysis} (LFA) is a method for a PCA analogue on
4824 Binomial data via estimation of latent structure in the natural parameter.")
4825 (license license:gpl3)))
4826
4827 (define-public r-limma
4828 (package
4829 (name "r-limma")
4830 (version "3.52.4")
4831 (source (origin
4832 (method url-fetch)
4833 (uri (bioconductor-uri "limma" version))
4834 (sha256
4835 (base32
4836 "14xy3qyra2crz31sxgz768mhnhhvcpfhfcigf4xsii643lqcz75h"))))
4837 (build-system r-build-system)
4838 (home-page "http://bioinf.wehi.edu.au/limma")
4839 (synopsis "Package for linear models for microarray and RNA-seq data")
4840 (description "This package can be used for the analysis of gene expression
4841 studies, especially the use of linear models for analysing designed experiments
4842 and the assessment of differential expression. The analysis methods apply to
4843 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
4844 (license license:gpl2+)))
4845
4846 (define-public r-made4
4847 (package
4848 (name "r-made4")
4849 (version "1.70.0")
4850 (source (origin
4851 (method url-fetch)
4852 (uri (bioconductor-uri "made4" version))
4853 (sha256
4854 (base32
4855 "1wrv9d2mp799qzy1bsaj4w7wx12gdhfv9qvklz7z41vfz59d6bq5"))))
4856 (properties `((upstream-name . "made4")))
4857 (build-system r-build-system)
4858 (propagated-inputs
4859 (list r-ade4
4860 r-biobase
4861 r-gplots
4862 r-rcolorbrewer
4863 r-scatterplot3d
4864 r-summarizedexperiment))
4865 (native-inputs (list r-knitr))
4866 (home-page "http://www.hsph.harvard.edu/aedin-culhane/")
4867 (synopsis "Multivariate analysis of microarray data using ADE4")
4868 (description
4869 "This is a package for multivariate data analysis and graphical display
4870 of microarray data. Functions are included for supervised dimension
4871 reduction (between group analysis) and joint dimension reduction of two
4872 datasets (coinertia analysis).")
4873 (license license:artistic2.0)))
4874
4875 (define-public r-methylkit
4876 (package
4877 (name "r-methylkit")
4878 (version "1.22.0")
4879 (source (origin
4880 (method url-fetch)
4881 (uri (bioconductor-uri "methylKit" version))
4882 (sha256
4883 (base32
4884 "00asjzv05avfg0rrkmfbdqd6xx8d18zi72n3b1kf9wj81z2d2a35"))))
4885 (properties `((upstream-name . "methylKit")))
4886 (build-system r-build-system)
4887 (propagated-inputs
4888 (list r-data-table
4889 r-emdbook
4890 r-fastseg
4891 r-genomeinfodb
4892 r-genomicranges
4893 r-gtools
4894 r-iranges
4895 r-kernsmooth
4896 r-limma
4897 r-mclust
4898 r-mgcv
4899 r-qvalue
4900 r-r-utils
4901 r-rcpp
4902 r-rhtslib
4903 r-rsamtools
4904 r-rtracklayer
4905 r-s4vectors
4906 r-zlibbioc))
4907 (native-inputs
4908 (list r-knitr)) ; for vignettes
4909 (home-page "https://github.com/al2na/methylKit")
4910 (synopsis
4911 "DNA methylation analysis from high-throughput bisulfite sequencing results")
4912 (description
4913 "MethylKit is an R package for DNA methylation analysis and annotation
4914 from high-throughput bisulfite sequencing. The package is designed to deal
4915 with sequencing data from @dfn{Reduced representation bisulfite
4916 sequencing} (RRBS) and its variants, but also target-capture methods and whole
4917 genome bisulfite sequencing. It also has functions to analyze base-pair
4918 resolution 5hmC data from experimental protocols such as oxBS-Seq and
4919 TAB-Seq.")
4920 (license license:artistic2.0)))
4921
4922 (define-public r-motifrg
4923 (package
4924 (name "r-motifrg")
4925 (version "1.31.0")
4926 (source
4927 (origin
4928 (method url-fetch)
4929 (uri (bioconductor-uri "motifRG" version))
4930 (sha256
4931 (base32
4932 "1ml6zyzlk8yjbnfhga2qnw8nl43rankvka0kc1yljxr2b66aqbhn"))))
4933 (properties `((upstream-name . "motifRG")))
4934 (build-system r-build-system)
4935 (propagated-inputs
4936 (list r-biostrings
4937 r-bsgenome
4938 r-bsgenome-hsapiens-ucsc-hg19
4939 r-iranges
4940 r-seqlogo
4941 r-xvector))
4942 (home-page "https://bioconductor.org/packages/motifRG")
4943 (synopsis "Discover motifs in high throughput sequencing data")
4944 (description
4945 "This package provides tools for discriminative motif discovery in high
4946 throughput genetic sequencing data sets using regression methods.")
4947 (license license:artistic2.0)))
4948
4949 (define-public r-muscat
4950 (package
4951 (name "r-muscat")
4952 (version "1.10.1")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (bioconductor-uri "muscat" version))
4957 (sha256
4958 (base32
4959 "1j3zkhqgza92vdykb1yia1jjwsdqra6q9c0jk6p5p2x0778xqgfd"))))
4960 (properties `((upstream-name . "muscat")))
4961 (build-system r-build-system)
4962 (propagated-inputs
4963 (list r-biocparallel
4964 r-blme
4965 r-complexheatmap
4966 r-data-table
4967 r-deseq2
4968 r-dplyr
4969 r-edger
4970 r-ggplot2
4971 r-glmmtmb
4972 r-limma
4973 r-lme4
4974 r-lmertest
4975 r-matrix
4976 r-matrixstats
4977 r-progress
4978 r-purrr
4979 r-s4vectors
4980 r-scales
4981 r-scater
4982 r-sctransform
4983 r-scuttle
4984 r-singlecellexperiment
4985 r-summarizedexperiment
4986 r-variancepartition
4987 r-viridis))
4988 (native-inputs (list r-knitr))
4989 (home-page "https://github.com/HelenaLC/muscat")
4990 (synopsis "Multi-sample multi-group scRNA-seq data analysis tools")
4991 (description
4992 "This package @code{muscat} provides various methods and visualization tools
4993 for @dfn{DS}(differential splicing) analysis in multi-sample, multi-group,
4994 multi-(cell-)subpopulation scRNA-seq data, including cell-level mixed models and
4995 methods based on aggregated \"pseudobulk\" data, as well as a flexible simulation
4996 platform that mimics both single and multi-sample scRNA-seq data.")
4997 (license license:gpl3)))
4998
4999 (define-public r-mutationalpatterns
5000 (package
5001 (name "r-mutationalpatterns")
5002 (version "3.6.0")
5003 (source
5004 (origin
5005 (method url-fetch)
5006 (uri (bioconductor-uri "MutationalPatterns" version))
5007 (sha256
5008 (base32
5009 "113b2hrc0n47qz144xhky93jcm6qh6flzadq5y0plga5jrz0rnwg"))))
5010 (build-system r-build-system)
5011 (native-inputs
5012 (list r-knitr))
5013 (propagated-inputs
5014 (list r-biocgenerics
5015 r-biostrings
5016 r-bsgenome
5017 ;; These two packages are suggested packages
5018 r-bsgenome-hsapiens-1000genomes-hs37d5
5019 r-bsgenome-hsapiens-ucsc-hg19
5020 r-cowplot
5021 r-dplyr
5022 r-genomeinfodb
5023 r-genomicranges
5024 r-ggalluvial
5025 r-ggdendro
5026 r-ggplot2
5027 r-iranges
5028 r-magrittr
5029 r-nmf
5030 r-pracma
5031 r-purrr
5032 r-rcolorbrewer
5033 r-s4vectors
5034 r-stringr
5035 r-tibble
5036 r-tidyr
5037 r-variantannotation))
5038 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
5039 (synopsis "Extract and visualize mutational patterns in genomic data")
5040 (description "This package provides an extensive toolset for the
5041 characterization and visualization of a wide range of mutational patterns
5042 in SNV base substitution data.")
5043 (license license:expat)))
5044
5045 (define-public r-msnbase
5046 (package
5047 (name "r-msnbase")
5048 (version "2.22.0")
5049 (source
5050 (origin
5051 (method url-fetch)
5052 (uri (bioconductor-uri "MSnbase" version))
5053 (sha256
5054 (base32
5055 "1xzn0k3c2wn6c6gv90hddy3c201sg927342zrw9ig2xap0r053x3"))))
5056 (properties `((upstream-name . "MSnbase")))
5057 (build-system r-build-system)
5058 (propagated-inputs
5059 (list r-affy
5060 r-biobase
5061 r-biocgenerics
5062 r-biocparallel
5063 r-digest
5064 r-ggplot2
5065 r-impute
5066 r-iranges
5067 r-lattice
5068 r-maldiquant
5069 r-mass
5070 r-mscoreutils
5071 r-mzid
5072 r-mzr
5073 r-pcamethods
5074 r-plyr
5075 r-protgenerics
5076 r-rcpp
5077 r-s4vectors
5078 r-scales
5079 r-vsn
5080 r-xml))
5081 (native-inputs
5082 (list r-knitr))
5083 (home-page "https://github.com/lgatto/MSnbase")
5084 (synopsis "Base functions and classes for MS-based proteomics")
5085 (description
5086 "This package provides basic plotting, data manipulation and processing
5087 of mass spectrometry based proteomics data.")
5088 (license license:artistic2.0)))
5089
5090 (define-public r-msnid
5091 (package
5092 (name "r-msnid")
5093 (version "1.30.0")
5094 (source
5095 (origin
5096 (method url-fetch)
5097 (uri (bioconductor-uri "MSnID" version))
5098 (sha256
5099 (base32
5100 "1yiw95p40nz0pvq7s4i0xg02r9yqmnknak00z4lkw8jij3w3rkkq"))))
5101 (properties `((upstream-name . "MSnID")))
5102 (build-system r-build-system)
5103 (arguments
5104 `(#:phases
5105 (modify-phases %standard-phases
5106 (add-after 'unpack 'set-HOME
5107 (lambda _ (setenv "HOME" "/tmp"))))))
5108 (propagated-inputs
5109 (list r-annotationdbi
5110 r-annotationhub
5111 r-biobase
5112 r-biocgenerics
5113 r-biocstyle
5114 r-biostrings
5115 r-data-table
5116 r-doparallel
5117 r-dplyr
5118 r-foreach
5119 r-ggplot2
5120 r-iterators
5121 r-msnbase
5122 r-msmstests
5123 r-mzid
5124 r-mzr
5125 r-protgenerics
5126 r-purrr
5127 r-r-cache
5128 r-rcpp
5129 r-reshape2
5130 r-rlang
5131 r-runit
5132 r-stringr
5133 r-tibble
5134 r-xtable))
5135 (home-page "https://bioconductor.org/packages/MSnID")
5136 (synopsis "Utilities for LC-MSn proteomics identifications")
5137 (description
5138 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
5139 from mzIdentML (leveraging the mzID package) or text files. After collating
5140 the search results from multiple datasets it assesses their identification
5141 quality and optimize filtering criteria to achieve the maximum number of
5142 identifications while not exceeding a specified false discovery rate. It also
5143 contains a number of utilities to explore the MS/MS results and assess missed
5144 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
5145 (license license:artistic2.0)))
5146
5147 (define-public r-mzid
5148 (package
5149 (name "r-mzid")
5150 (version "1.34.0")
5151 (source
5152 (origin
5153 (method url-fetch)
5154 (uri (bioconductor-uri "mzID" version))
5155 (sha256
5156 (base32
5157 "1q1aqyya9nd494s7m3rdaf3kixipdrwbj825g40kdljwrg85y961"))))
5158 (properties `((upstream-name . "mzID")))
5159 (build-system r-build-system)
5160 (propagated-inputs
5161 (list r-doparallel
5162 r-foreach
5163 r-iterators
5164 r-plyr
5165 r-protgenerics
5166 r-xml))
5167 (native-inputs
5168 (list r-knitr))
5169 (home-page "https://bioconductor.org/packages/mzID")
5170 (synopsis "Parser for mzIdentML files")
5171 (description
5172 "This package provides a parser for mzIdentML files implemented using the
5173 XML package. The parser tries to be general and able to handle all types of
5174 mzIdentML files with the drawback of having less pretty output than a vendor
5175 specific parser.")
5176 (license license:gpl2+)))
5177
5178 (define-public r-mzr
5179 (package
5180 (name "r-mzr")
5181 (version "2.30.0")
5182 (source
5183 (origin
5184 (method url-fetch)
5185 (uri (bioconductor-uri "mzR" version))
5186 (sha256
5187 (base32
5188 "1dqa03hb42kbqfg15ksijdkyf9pr54gcl3in4mzjkld5sdi8ncds"))
5189 (modules '((guix build utils)))
5190 (snippet
5191 '(delete-file-recursively "src/boost"))))
5192 (properties `((upstream-name . "mzR")))
5193 (build-system r-build-system)
5194 (arguments
5195 `(#:phases
5196 (modify-phases %standard-phases
5197 (add-after 'unpack 'use-system-boost
5198 (lambda _
5199 (substitute* "src/Makevars"
5200 (("\\./boost/libs.*") "")
5201 (("PKG_LIBS=") "PKG_LIBS=$(BOOST_LIBS) ")
5202 (("\\ARCH_OBJS=" line)
5203 (string-append line
5204 "\nBOOST_LIBS=-lboost_system -lboost_regex \
5205 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n"))))))))
5206 (inputs
5207 (list boost ; use this instead of the bundled boost sources
5208 zlib))
5209 (propagated-inputs
5210 (list r-biobase
5211 r-biocgenerics
5212 r-ncdf4
5213 r-protgenerics
5214 r-rcpp
5215 r-rhdf5lib))
5216 (native-inputs
5217 (list r-knitr))
5218 (home-page "https://github.com/sneumann/mzR/")
5219 (synopsis "Parser for mass spectrometry data files")
5220 (description
5221 "The mzR package provides a unified API to the common file formats and
5222 parsers available for mass spectrometry data. It comes with a wrapper for the
5223 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
5224 The package contains the original code written by the ISB, and a subset of the
5225 proteowizard library for mzML and mzIdentML. The netCDF reading code has
5226 previously been used in XCMS.")
5227 (license license:artistic2.0)))
5228
5229 (define-public r-organism-dplyr
5230 (package
5231 (name "r-organism-dplyr")
5232 (version "1.24.0")
5233 (source
5234 (origin
5235 (method url-fetch)
5236 (uri (bioconductor-uri "Organism.dplyr" version))
5237 (sha256
5238 (base32
5239 "0j29f85d66c45ww3417xx376vpz0mmvga5n7h2cl1sd4h70b55as"))))
5240 (properties `((upstream-name . "Organism.dplyr")))
5241 (build-system r-build-system)
5242 (propagated-inputs
5243 (list r-annotationdbi
5244 r-annotationfilter
5245 r-biocfilecache
5246 r-dbi
5247 r-dbplyr
5248 r-dplyr
5249 r-genomeinfodb
5250 r-genomicfeatures
5251 r-genomicranges
5252 r-iranges
5253 r-rlang
5254 r-rsqlite
5255 r-s4vectors
5256 r-tibble))
5257 (native-inputs (list r-knitr))
5258 (home-page "https://bioconductor.org/packages/Organism.dplyr")
5259 (synopsis "Dplyr-based access to Bioconductor annotation resources")
5260 (description
5261 "This package provides an alternative interface to Bioconductor @code{
5262 annotation} resources, in particular the gene identifier mapping functionality
5263 of the @code{org} packages (e.g., @code{org.Hs.eg.db}) and the genome coordinate
5264 functionality of the @code{TxDb} packages (e.g.,
5265 @code{TxDb.Hsapiens.UCSC.hg38.knownGene}).")
5266 (license license:artistic2.0)))
5267
5268 (define-public r-organismdbi
5269 (package
5270 (name "r-organismdbi")
5271 (version "1.38.1")
5272 (source
5273 (origin
5274 (method url-fetch)
5275 (uri (bioconductor-uri "OrganismDbi" version))
5276 (sha256
5277 (base32
5278 "0mxnxj8x4hc21psz39mf7qwvh1fsn6qyjgl5qffk1xxmasf69619"))))
5279 (properties `((upstream-name . "OrganismDbi")))
5280 (build-system r-build-system)
5281 (propagated-inputs
5282 (list r-annotationdbi
5283 r-biobase
5284 r-biocgenerics
5285 r-biocmanager
5286 r-dbi
5287 r-genomicfeatures
5288 r-genomicranges
5289 r-graph
5290 r-iranges
5291 r-rbgl
5292 r-s4vectors))
5293 (home-page "https://bioconductor.org/packages/OrganismDbi")
5294 (synopsis "Software to enable the smooth interfacing of database packages")
5295 (description "The package enables a simple unified interface to several
5296 annotation packages each of which has its own schema by taking advantage of
5297 the fact that each of these packages implements a select methods.")
5298 (license license:artistic2.0)))
5299
5300 (define-public r-pcaexplorer
5301 (package
5302 (name "r-pcaexplorer")
5303 (version "2.22.0")
5304 (source
5305 (origin
5306 (method url-fetch)
5307 (uri (bioconductor-uri "pcaExplorer" version))
5308 (sha256
5309 (base32
5310 "0xkafpi6y5n8hljdaj183hd5z4ik7lpbklg2cbx1hwfz4n4hh1bl"))))
5311 (properties `((upstream-name . "pcaExplorer")))
5312 (build-system r-build-system)
5313 (propagated-inputs
5314 (list r-annotationdbi
5315 r-base64enc
5316 r-biomart
5317 r-deseq2
5318 r-dt
5319 r-genefilter
5320 r-genomicranges
5321 r-ggplot2
5322 r-ggrepel
5323 r-go-db
5324 r-gostats
5325 r-heatmaply
5326 r-iranges
5327 r-knitr
5328 r-limma
5329 r-nmf
5330 r-pheatmap
5331 r-plotly
5332 r-plyr
5333 r-rmarkdown
5334 r-s4vectors
5335 r-scales
5336 r-shiny
5337 r-shinyace
5338 r-shinybs
5339 r-shinydashboard
5340 r-summarizedexperiment
5341 r-threejs
5342 r-tidyr
5343 r-topgo))
5344 (native-inputs (list r-knitr))
5345 (home-page "https://github.com/federicomarini/pcaExplorer")
5346 (synopsis
5347 "Interactive Visualization of RNA-seq Data Using a Principal Components Approach")
5348 (description
5349 "This package provides functionality for interactive visualization of RNA-seq
5350 datasets based on Principal Components Analysis. The methods provided allow for
5351 quick information extraction and effective data exploration. A Shiny
5352 application encapsulates the whole analysis.")
5353 (license license:expat)))
5354
5355 (define-public r-pcamethods
5356 (package
5357 (name "r-pcamethods")
5358 (version "1.88.0")
5359 (source
5360 (origin
5361 (method url-fetch)
5362 (uri (bioconductor-uri "pcaMethods" version))
5363 (sha256
5364 (base32
5365 "1087sl7y707zld7zpf3ly51gnmdp93vn90dwa5440v7qawvg2h9b"))))
5366 (properties `((upstream-name . "pcaMethods")))
5367 (build-system r-build-system)
5368 (propagated-inputs
5369 (list r-biobase r-biocgenerics r-mass r-rcpp))
5370 (home-page "https://github.com/hredestig/pcamethods")
5371 (synopsis "Collection of PCA methods")
5372 (description
5373 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
5374 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
5375 for missing value estimation is included for comparison. BPCA, PPCA and
5376 NipalsPCA may be used to perform PCA on incomplete data as well as for
5377 accurate missing value estimation. A set of methods for printing and plotting
5378 the results is also provided. All PCA methods make use of the same data
5379 structure (pcaRes) to provide a common interface to the PCA results.")
5380 (license license:gpl3+)))
5381
5382 ;; This is a CRAN package, but it depends on a Bioconductor package:
5383 ;; r-aroma-light, r-dnacopy..
5384 (define-public r-pscbs
5385 (package
5386 (name "r-pscbs")
5387 (version "0.66.0")
5388 (source
5389 (origin
5390 (method url-fetch)
5391 (uri (cran-uri "PSCBS" version))
5392 (sha256
5393 (base32 "14rs2wywipbkia3dbzfhpnkmfgdvm2bf586lggsx63sywlv5d02q"))))
5394 (properties `((upstream-name . "PSCBS")))
5395 (build-system r-build-system)
5396 (arguments
5397 `(#:phases
5398 (modify-phases %standard-phases
5399 (add-before 'install 'change-home-dir
5400 (lambda _
5401 ;; Change from /homeless-shelter to /tmp for write permission.
5402 (setenv "HOME" "/tmp"))))))
5403 (propagated-inputs
5404 (list r-aroma-light
5405 r-dnacopy
5406 r-future
5407 r-listenv
5408 r-matrixstats
5409 r-r-cache
5410 r-r-methodss3
5411 r-r-oo
5412 r-r-utils))
5413 (native-inputs
5414 (list r-r-rsp ;used to build vignettes
5415 r-r-devices))
5416 (home-page "https://github.com/HenrikBengtsson/PSCBS")
5417 (synopsis "Analysis of parent-specific DNA copy numbers")
5418 (description
5419 "This is a package for segmentation of allele-specific DNA copy number
5420 data and detection of regions with abnormal copy number within each parental
5421 chromosome. Both tumor-normal paired and tumor-only analyses are supported.")
5422 (license license:gpl2+)))
5423
5424 (define-public r-protgenerics
5425 (package
5426 (name "r-protgenerics")
5427 (version "1.28.0")
5428 (source
5429 (origin
5430 (method url-fetch)
5431 (uri (bioconductor-uri "ProtGenerics" version))
5432 (sha256
5433 (base32
5434 "04hcgj4q8dbzp1a29rbww2bxxrg679pgys3m09p0ydkpsx76rq05"))))
5435 (properties `((upstream-name . "ProtGenerics")))
5436 (build-system r-build-system)
5437 (home-page "https://github.com/lgatto/ProtGenerics")
5438 (synopsis "S4 generic functions for proteomics infrastructure")
5439 (description
5440 "This package provides S4 generic functions needed by Bioconductor
5441 proteomics packages.")
5442 (license license:artistic2.0)))
5443
5444 (define-public r-rbgl
5445 (package
5446 (name "r-rbgl")
5447 (version "1.72.0")
5448 (source
5449 (origin
5450 (method url-fetch)
5451 (uri (bioconductor-uri "RBGL" version))
5452 (sha256
5453 (base32
5454 "0ph089vxla49sng0pdwiyh9rpk9i96cbsx5q2jn46jj4x51ijc7y"))))
5455 (properties `((upstream-name . "RBGL")))
5456 (build-system r-build-system)
5457 (propagated-inputs
5458 (list r-bh r-graph))
5459 (home-page "https://www.bioconductor.org/packages/RBGL")
5460 (synopsis "Interface to the Boost graph library")
5461 (description
5462 "This package provides a fairly extensive and comprehensive interface to
5463 the graph algorithms contained in the Boost library.")
5464 (license license:artistic2.0)))
5465
5466 (define-public r-rcas
5467 (package
5468 (name "r-rcas")
5469 (version "1.22.0")
5470 (source (origin
5471 (method url-fetch)
5472 (uri (bioconductor-uri "RCAS" version))
5473 (sha256
5474 (base32
5475 "05sj2ab7bxgf41gkmjaskhqm0198xlir1sw3f73x8rjg14rssmqf"))))
5476 (properties `((upstream-name . "RCAS")))
5477 (build-system r-build-system)
5478 (propagated-inputs
5479 (list r-biocgenerics
5480 r-biostrings
5481 r-bsgenome
5482 r-bsgenome-hsapiens-ucsc-hg19
5483 r-cowplot
5484 r-data-table
5485 r-dt
5486 r-genomation
5487 r-genomeinfodb
5488 r-genomicfeatures
5489 r-genomicranges
5490 r-ggplot2
5491 r-ggseqlogo
5492 r-gprofiler2
5493 r-iranges
5494 r-knitr
5495 r-pbapply
5496 r-pheatmap
5497 r-plotly
5498 r-plotrix
5499 r-proxy
5500 r-ranger
5501 r-rsqlite
5502 r-rtracklayer
5503 r-rmarkdown
5504 r-s4vectors
5505 pandoc))
5506 (native-inputs
5507 (list r-knitr))
5508 (synopsis "RNA-centric annotation system")
5509 (description
5510 "RCAS aims to be a standalone RNA-centric annotation system that provides
5511 intuitive reports and publication-ready graphics. This package provides the R
5512 library implementing most of the pipeline's features.")
5513 (home-page "https://github.com/BIMSBbioinfo/RCAS")
5514 (license license:artistic2.0)))
5515
5516 (define-public r-regioner
5517 (package
5518 (name "r-regioner")
5519 (version "1.28.0")
5520 (source
5521 (origin
5522 (method url-fetch)
5523 (uri (bioconductor-uri "regioneR" version))
5524 (sha256
5525 (base32
5526 "11whi2v211xiz9s7cjl14d8vavlry2fmhvx12rma25wkjmhrpa3f"))))
5527 (properties `((upstream-name . "regioneR")))
5528 (build-system r-build-system)
5529 (propagated-inputs
5530 (list r-biostrings
5531 r-bsgenome
5532 r-genomeinfodb
5533 r-genomicranges
5534 r-iranges
5535 r-memoise
5536 r-rtracklayer
5537 r-s4vectors))
5538 (native-inputs
5539 (list r-knitr))
5540 (home-page "https://bioconductor.org/packages/regioneR/")
5541 (synopsis "Association analysis of genomic regions")
5542 (description "This package offers a statistical framework based on
5543 customizable permutation tests to assess the association between genomic
5544 region sets and other genomic features.")
5545 (license license:artistic2.0)))
5546
5547 (define-public r-reportingtools
5548 (package
5549 (name "r-reportingtools")
5550 (version "2.36.0")
5551 (source
5552 (origin
5553 (method url-fetch)
5554 (uri (bioconductor-uri "ReportingTools" version))
5555 (sha256
5556 (base32
5557 "0r8cdqzfh1jxkghhk3j8x3y9kkmdyg9ibfhsic15jqkmp1im6khh"))))
5558 (properties
5559 `((upstream-name . "ReportingTools")))
5560 (build-system r-build-system)
5561 (propagated-inputs
5562 (list r-annotate
5563 r-annotationdbi
5564 r-biobase
5565 r-biocgenerics
5566 r-category
5567 r-deseq2
5568 r-edger
5569 r-ggbio
5570 r-ggplot2
5571 r-gostats
5572 r-gseabase
5573 r-hwriter
5574 r-iranges
5575 r-knitr
5576 r-lattice
5577 r-limma
5578 r-pfam-db
5579 r-r-utils
5580 r-xml))
5581 (native-inputs
5582 (list r-knitr))
5583 (home-page "https://bioconductor.org/packages/ReportingTools/")
5584 (synopsis "Tools for making reports in various formats")
5585 (description
5586 "The ReportingTools package enables users to easily display reports of
5587 analysis results generated from sources such as microarray and sequencing
5588 data. The package allows users to create HTML pages that may be viewed on a
5589 web browser, or in other formats. Users can generate tables with sortable and
5590 filterable columns, make and display plots, and link table entries to other
5591 data sources such as NCBI or larger plots within the HTML page. Using the
5592 package, users can also produce a table of contents page to link various
5593 reports together for a particular project that can be viewed in a web
5594 browser.")
5595 (license license:artistic2.0)))
5596
5597 (define-public r-rhdf5
5598 (package
5599 (name "r-rhdf5")
5600 (version "2.40.0")
5601 (source (origin
5602 (method url-fetch)
5603 (uri (bioconductor-uri "rhdf5" version))
5604 (sha256
5605 (base32
5606 "00cp90mnb8p83jiflm6x4x0qf4p7gvgh47jk9jry6j3qyvfqaiff"))))
5607 (build-system r-build-system)
5608 (propagated-inputs
5609 (list r-rhdf5filters r-rhdf5lib))
5610 (native-inputs
5611 (list r-knitr))
5612 (home-page "https://bioconductor.org/packages/rhdf5")
5613 (synopsis "HDF5 interface to R")
5614 (description
5615 "This R/Bioconductor package provides an interface between HDF5 and R.
5616 HDF5's main features are the ability to store and access very large and/or
5617 complex datasets and a wide variety of metadata on mass storage (disk) through
5618 a completely portable file format. The rhdf5 package is thus suited for the
5619 exchange of large and/or complex datasets between R and other software
5620 package, and for letting R applications work on datasets that are larger than
5621 the available RAM.")
5622 (license license:artistic2.0)))
5623
5624 (define-public r-rhdf5filters
5625 (package
5626 (name "r-rhdf5filters")
5627 (version "1.8.0")
5628 (source
5629 (origin
5630 (method url-fetch)
5631 (uri (bioconductor-uri "rhdf5filters" version))
5632 (sha256
5633 (base32
5634 "1ipg0v8nqz1imj63scqmpiswcxbl4ankg3knfq4p06ic6ypbbmvs"))))
5635 (properties `((upstream-name . "rhdf5filters")))
5636 (build-system r-build-system)
5637 (propagated-inputs
5638 (list r-rhdf5lib))
5639 (inputs
5640 (list zlib))
5641 (native-inputs
5642 (list r-knitr))
5643 (home-page "https://github.com/grimbough/rhdf5filters")
5644 (synopsis "HDF5 compression filters")
5645 (description
5646 "This package provides a collection of compression filters for use with
5647 HDF5 datasets.")
5648 (license license:bsd-2)))
5649
5650 (define-public r-rsamtools
5651 (package
5652 (name "r-rsamtools")
5653 (version "2.12.0")
5654 (source (origin
5655 (method url-fetch)
5656 (uri (bioconductor-uri "Rsamtools" version))
5657 (sha256
5658 (base32
5659 "1wll703if12qrn0d11ljwf7rqhs4lb27fzyyz1hqwvzn3v361s10"))))
5660 (properties
5661 `((upstream-name . "Rsamtools")))
5662 (build-system r-build-system)
5663 (arguments
5664 `(#:phases
5665 (modify-phases %standard-phases
5666 (add-after 'unpack 'use-system-zlib
5667 (lambda _
5668 (substitute* "DESCRIPTION"
5669 (("zlibbioc, ") ""))
5670 (substitute* "NAMESPACE"
5671 (("import\\(zlibbioc\\)") "")))))))
5672 (propagated-inputs
5673 (list r-biocgenerics
5674 r-biocparallel
5675 r-biostrings
5676 r-bitops
5677 r-genomeinfodb
5678 r-genomicranges
5679 r-iranges
5680 r-rhtslib
5681 r-s4vectors
5682 r-xvector))
5683 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
5684 (synopsis "Interface to samtools, bcftools, and tabix")
5685 (description
5686 "This package provides an interface to the @code{samtools},
5687 @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence
5688 Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
5689 tab-delimited (tabix) files.")
5690 (license license:expat)))
5691
5692 ;; This is a CRAN package, but it depends on a Bioconductor package:
5693 ;; s4vectors.
5694 (define-public r-restfulr
5695 (package
5696 (name "r-restfulr")
5697 (version "0.0.15")
5698 (source
5699 (origin
5700 (method url-fetch)
5701 (uri (cran-uri "restfulr" version))
5702 (sha256
5703 (base32
5704 "14p6h0gjknqy5z2fprxw7waf4p0cd2qmp18s7qig4ylqn8gqzzs0"))))
5705 (properties `((upstream-name . "restfulr")))
5706 (build-system r-build-system)
5707 (propagated-inputs
5708 (list r-rcurl r-rjson r-s4vectors r-xml r-yaml))
5709 (home-page "https://cran.r-project.org/package=restfulr")
5710 (synopsis "R interface to RESTful web services")
5711 (description
5712 "This package models a RESTful service as if it were a nested R list.")
5713 (license license:artistic2.0)))
5714
5715 (define-public r-rtracklayer
5716 (package
5717 (name "r-rtracklayer")
5718 (version "1.56.1")
5719 (source (origin
5720 (method url-fetch)
5721 (uri (bioconductor-uri "rtracklayer" version))
5722 (sha256
5723 (base32
5724 "10qy9s6253mgj871qfqn03i8yw10mz7id4cxfyf67qxczz2xmjls"))))
5725 (build-system r-build-system)
5726 (arguments
5727 `(#:phases
5728 (modify-phases %standard-phases
5729 (add-after 'unpack 'use-system-zlib
5730 (lambda _
5731 (substitute* "DESCRIPTION"
5732 ((" zlibbioc,") ""))
5733 (substitute* "NAMESPACE"
5734 (("import\\(zlibbioc\\)") "")))))))
5735 (native-inputs
5736 (list pkg-config))
5737 (inputs
5738 (list zlib))
5739 (propagated-inputs
5740 (list r-biocgenerics
5741 r-biocio
5742 r-biostrings
5743 r-genomeinfodb
5744 r-genomicalignments
5745 r-genomicranges
5746 r-iranges
5747 r-rcurl
5748 r-restfulr
5749 r-rsamtools
5750 r-s4vectors
5751 r-xml
5752 r-xvector
5753 r-zlibbioc))
5754 (home-page "https://bioconductor.org/packages/rtracklayer")
5755 (synopsis "R interface to genome browsers and their annotation tracks")
5756 (description
5757 "rtracklayer is an extensible framework for interacting with multiple
5758 genome browsers (currently UCSC built-in) and manipulating annotation tracks
5759 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
5760 built-in). The user may export/import tracks to/from the supported browsers,
5761 as well as query and modify the browser state, such as the current viewport.")
5762 (license license:artistic2.0)))
5763
5764 ;; This is a CRAN package, but it depends on a Bioconductor package.
5765 (define-public r-samr
5766 (package
5767 (name "r-samr")
5768 (version "3.0")
5769 (source
5770 (origin
5771 (method url-fetch)
5772 (uri (cran-uri "samr" version))
5773 (sha256
5774 (base32
5775 "01km0f7qgm73x19vbvsxl083hs1dq4dj8qm5h64cxbf20b08my15"))))
5776 (properties `((upstream-name . "samr")))
5777 (build-system r-build-system)
5778 (propagated-inputs
5779 (list r-gsa
5780 r-impute
5781 r-matrixstats
5782 r-openxlsx
5783 r-shiny
5784 r-shinyfiles))
5785 (native-inputs (list gfortran))
5786 (home-page "https://statweb.stanford.edu/~tibs/SAM/")
5787 (synopsis "Significance analysis of Microarrays")
5788 (description
5789 "This is a package for significance analysis of Microarrays for
5790 differential expression analysis, RNAseq data and related problems.")
5791 ;; Any version of the LGPL
5792 (license license:lgpl3+)))
5793
5794 (define-public r-scannotatr
5795 (package
5796 (name "r-scannotatr")
5797 (version "1.2.0")
5798 (source
5799 (origin
5800 (method url-fetch)
5801 (uri (bioconductor-uri "scAnnotatR" version))
5802 (sha256
5803 (base32 "067q57kabhqd1z8l3d91fw74aaw89nb48gm6fll4hv00nqza3n5b"))))
5804 (properties `((upstream-name . "scAnnotatR")))
5805 (build-system r-build-system)
5806 (propagated-inputs
5807 (list r-annotationhub
5808 r-ape
5809 r-caret
5810 r-data-tree
5811 r-dplyr
5812 r-e1071
5813 r-ggplot2
5814 r-kernlab
5815 r-proc
5816 r-rocr
5817 r-seurat
5818 r-singlecellexperiment
5819 r-summarizedexperiment))
5820 (native-inputs (list r-knitr))
5821 (home-page "https://github.com/grisslab/scAnnotatR")
5822 (synopsis "Pretrained models for prediction on single cell RNA-sequencing data")
5823 (description
5824 "This package comprises a set of pretrained machine learning models to
5825 predict basic immune cell types. This enables to quickly get a first
5826 annotation of the cell types present in the dataset without requiring prior
5827 knowledge. The package also lets you train using own models to predict new
5828 cell types based on specific research needs.")
5829 (license license:expat)))
5830
5831 (define-public r-scdblfinder
5832 (package
5833 (name "r-scdblfinder")
5834 (version "1.10.0")
5835 (source
5836 (origin
5837 (method url-fetch)
5838 (uri (bioconductor-uri "scDblFinder" version))
5839 (sha256
5840 (base32 "0y14dvdm16b3bvlrnz03adfylm1kj6jrp2fwciyldij2lfal90y0"))))
5841 (properties `((upstream-name . "scDblFinder")))
5842 (build-system r-build-system)
5843 (propagated-inputs
5844 (list r-biocgenerics
5845 r-biocneighbors
5846 r-biocparallel
5847 r-biocsingular
5848 r-bluster
5849 r-delayedarray
5850 r-genomeinfodb
5851 r-genomicranges
5852 r-igraph
5853 r-iranges
5854 r-mass
5855 r-matrix
5856 r-rsamtools
5857 r-rtracklayer
5858 r-s4vectors
5859 r-scater
5860 r-scran
5861 r-scuttle
5862 r-singlecellexperiment
5863 r-summarizedexperiment
5864 r-xgboost))
5865 (native-inputs (list r-knitr))
5866 (home-page "https://github.com/plger/scDblFinder")
5867 (synopsis "Detect multiplets in single-cell RNA sequencing data")
5868 (description
5869 "The scDblFinder package gathers various methods for the detection and
5870 handling of doublets/multiplets in single-cell RNA sequencing data (i.e.
5871 multiple cells captured within the same droplet or reaction volume). It
5872 includes methods formerly found in the scran package, and the new fast and
5873 comprehensive scDblFinder method.")
5874 (license license:gpl3)))
5875
5876 (define-public r-scmap
5877 (package
5878 (name "r-scmap")
5879 (version "1.18.0")
5880 (source
5881 (origin
5882 (method url-fetch)
5883 (uri (bioconductor-uri "scmap" version))
5884 (sha256
5885 (base32 "0pfwaa9pgml11b84rpf7afdkmg8kxb4srgpc56571vaz388xrv7l"))))
5886 (properties `((upstream-name . "scmap")))
5887 (build-system r-build-system)
5888 (propagated-inputs
5889 (list r-biobase
5890 r-biocgenerics
5891 r-dplyr
5892 r-e1071
5893 r-ggplot2
5894 r-googlevis
5895 r-matrixstats
5896 r-proxy
5897 r-randomforest
5898 r-rcpp
5899 r-rcpparmadillo
5900 r-reshape2
5901 r-s4vectors
5902 r-singlecellexperiment
5903 r-summarizedexperiment))
5904 (native-inputs (list r-knitr))
5905 (home-page "https://github.com/hemberg-lab/scmap")
5906 (synopsis "Tool for unsupervised projection of single cell RNA-seq data")
5907 (description
5908 "@dfn{Single-cell RNA-seq} (scRNA-seq) is widely used to investigate the
5909 composition of complex tissues since the technology allows researchers to
5910 define cell-types using unsupervised clustering of the transcriptome.
5911 However, due to differences in experimental methods and computational
5912 analyses, it is often challenging to directly compare the cells identified in
5913 two different experiments. @code{scmap} is a method for projecting cells from
5914 a scRNA-seq experiment onto the cell-types or individual cells identified in a
5915 different experiment.")
5916 (license license:gpl3)))
5917
5918 (define-public r-scry
5919 (package
5920 (name "r-scry")
5921 (version "1.8.0")
5922 (source (origin
5923 (method url-fetch)
5924 (uri (bioconductor-uri "scry" version))
5925 (sha256
5926 (base32
5927 "16mj21r91jy8ircdz8rfrdli9gjy0hrx90kf6ghs305d3d4dl193"))))
5928 (properties `((upstream-name . "scry")))
5929 (build-system r-build-system)
5930 (propagated-inputs
5931 (list r-biocsingular
5932 r-delayedarray
5933 r-glmpca
5934 r-hdf5array
5935 r-matrix
5936 r-singlecellexperiment
5937 r-summarizedexperiment))
5938 (native-inputs (list r-knitr))
5939 (home-page "https://bioconductor.org/packages/scry.html")
5940 (synopsis "Small-count analysis methods for high-dimensional data")
5941 (description
5942 "Many modern biological datasets consist of small counts that are not
5943 well fit by standard linear-Gaussian methods such as principal component
5944 analysis. This package provides implementations of count-based feature
5945 selection and dimension reduction algorithms. These methods can be used to
5946 facilitate unsupervised analysis of any high-dimensional data such as
5947 single-cell RNA-seq.")
5948 (license license:artistic2.0)))
5949
5950 (define-public r-seqlogo
5951 (package
5952 (name "r-seqlogo")
5953 (version "1.62.0")
5954 (source
5955 (origin
5956 (method url-fetch)
5957 (uri (bioconductor-uri "seqLogo" version))
5958 (sha256
5959 (base32
5960 "1lk3238m17acmd6lgjjbpscyxw8fm63wv34kbbr478wcih1wbwxr"))))
5961 (properties `((upstream-name . "seqLogo")))
5962 (build-system r-build-system)
5963 (native-inputs
5964 (list r-knitr))
5965 (home-page "https://bioconductor.org/packages/seqLogo")
5966 (synopsis "Sequence logos for DNA sequence alignments")
5967 (description
5968 "seqLogo takes the position weight matrix of a DNA sequence motif and
5969 plots the corresponding sequence logo as introduced by Schneider and
5970 Stephens (1990).")
5971 (license license:lgpl2.0+)))
5972
5973 (define-public r-seqpattern
5974 (package
5975 (name "r-seqpattern")
5976 (version "1.28.0")
5977 (source (origin
5978 (method url-fetch)
5979 (uri (bioconductor-uri "seqPattern" version))
5980 (sha256
5981 (base32
5982 "0nrrlr1nl9zxmp88qq8jn7wgmda6jh0xvp4nph94w4nwjsyb7xqn"))))
5983 (properties
5984 `((upstream-name . "seqPattern")))
5985 (build-system r-build-system)
5986 (propagated-inputs
5987 (list r-biostrings r-genomicranges r-iranges r-kernsmooth r-plotrix))
5988 (home-page "https://bioconductor.org/packages/seqPattern")
5989 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
5990 (description
5991 "This package provides tools to visualize oligonucleotide patterns and
5992 sequence motif occurrences across a large set of sequences centred at a common
5993 reference point and sorted by a user defined feature.")
5994 (license license:gpl3+)))
5995
5996 (define-public r-shortread
5997 (package
5998 (name "r-shortread")
5999 (version "1.54.0")
6000 (source
6001 (origin
6002 (method url-fetch)
6003 (uri (bioconductor-uri "ShortRead" version))
6004 (sha256
6005 (base32
6006 "0303198b4v2wjah9kc829kn01030996l6di4jpf8q5ccd212rjhq"))))
6007 (properties `((upstream-name . "ShortRead")))
6008 (build-system r-build-system)
6009 (inputs
6010 (list zlib))
6011 (propagated-inputs
6012 (list r-biobase
6013 r-biocgenerics
6014 r-biocparallel
6015 r-biostrings
6016 r-genomeinfodb
6017 r-genomicalignments
6018 r-genomicranges
6019 r-rhtslib
6020 r-hwriter
6021 r-iranges
6022 r-lattice
6023 r-latticeextra
6024 r-rsamtools
6025 r-s4vectors
6026 r-xvector
6027 r-zlibbioc))
6028 (home-page "https://bioconductor.org/packages/ShortRead")
6029 (synopsis "FASTQ input and manipulation tools")
6030 (description
6031 "This package implements sampling, iteration, and input of FASTQ files.
6032 It includes functions for filtering and trimming reads, and for generating a
6033 quality assessment report. Data are represented as
6034 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
6035 purposes. The package also contains legacy support for early single-end,
6036 ungapped alignment formats.")
6037 (license license:artistic2.0)))
6038
6039 (define-public r-simplifyenrichment
6040 (package
6041 (name "r-simplifyenrichment")
6042 (version "1.6.1")
6043 (source
6044 (origin
6045 (method url-fetch)
6046 (uri (bioconductor-uri "simplifyEnrichment" version))
6047 (sha256
6048 (base32
6049 "0qblgdxmr7zc981529cca3ykakql618q1im6gaxw8pwws5jgpyk6"))))
6050 (properties
6051 `((upstream-name . "simplifyEnrichment")))
6052 (build-system r-build-system)
6053 (propagated-inputs
6054 (list r-annotationdbi
6055 r-biocgenerics
6056 r-circlize
6057 r-clue
6058 r-cluster
6059 r-colorspace
6060 r-complexheatmap
6061 r-digest
6062 r-getoptlong
6063 r-globaloptions
6064 r-go-db
6065 r-gosemsim
6066 r-matrix
6067 r-org-hs-eg-db
6068 r-proxyc
6069 r-slam
6070 r-tm))
6071 (native-inputs (list r-knitr))
6072 (home-page "https://github.com/jokergoo/simplifyEnrichment")
6073 (synopsis "Simplify functional enrichment results")
6074 (description "This package provides a new clustering algorithm, binary
6075 cut, for clustering similarity matrices of functional terms is implemented in
6076 this package. It also provides functionalities for visualizing, summarizing
6077 and comparing the clusterings.")
6078 (license license:expat)))
6079
6080 (define-public r-transcriptr
6081 (package
6082 (name "r-transcriptr")
6083 (version "1.24.0")
6084 (source
6085 (origin
6086 (method url-fetch)
6087 (uri (bioconductor-uri "transcriptR" version))
6088 (sha256
6089 (base32 "1zc6aasd5nzwl9jxr0rdriiq85adqdbfi5b9m3jyf69pa71sgy03"))))
6090 (properties `((upstream-name . "transcriptR")))
6091 (build-system r-build-system)
6092 (propagated-inputs
6093 (list r-biocgenerics
6094 r-caret
6095 r-chipseq
6096 r-e1071
6097 r-genomeinfodb
6098 r-genomicalignments
6099 r-genomicfeatures
6100 r-genomicranges
6101 r-ggplot2
6102 r-iranges
6103 r-proc
6104 r-reshape2
6105 r-rsamtools
6106 r-rtracklayer
6107 r-s4vectors))
6108 (native-inputs (list r-knitr))
6109 (home-page "https://bioconductor.org/packages/transcriptR")
6110 (synopsis "Primary transcripts detection and quantification")
6111 (description
6112 "The differences in the RNA types being sequenced have an impact on the
6113 resulting sequencing profiles. mRNA-seq data is enriched with reads derived
6114 from exons, while GRO-, nucRNA- and chrRNA-seq demonstrate a substantial
6115 broader coverage of both exonic and intronic regions. The presence of
6116 intronic reads in GRO-seq type of data makes it possible to use it to
6117 computationally identify and quantify all de novo continuous regions of
6118 transcription distributed across the genome. This type of data, however, is
6119 more challenging to interpret and less common practice compared to mRNA-seq.
6120 One of the challenges for primary transcript detection concerns the
6121 simultaneous transcription of closely spaced genes, which needs to be properly
6122 divided into individually transcribed units. The R package transcriptR
6123 combines RNA-seq data with ChIP-seq data of histone modifications that mark
6124 active Transcription Start Sites (TSSs), such as, H3K4me3 or H3K9/14Ac to
6125 overcome this challenge. The advantage of this approach over the use of, for
6126 example, gene annotations is that this approach is data driven and therefore
6127 able to deal also with novel and case specific events.")
6128 (license license:gpl3)))
6129
6130 (define-public r-trajectoryutils
6131 (package
6132 (name "r-trajectoryutils")
6133 (version "1.4.0")
6134 (source
6135 (origin
6136 (method url-fetch)
6137 (uri (bioconductor-uri "TrajectoryUtils" version))
6138 (sha256
6139 (base32
6140 "07hcr3zplxlzlwc13wh9006m5kaqm57cm1b2x74bpp857f2q93dj"))))
6141 (properties
6142 `((upstream-name . "TrajectoryUtils")))
6143 (build-system r-build-system)
6144 (propagated-inputs
6145 (list r-igraph r-matrix r-s4vectors r-singlecellexperiment
6146 r-summarizedexperiment))
6147 (native-inputs (list r-knitr))
6148 (home-page "https://bioconductor.org/packages/TrajectoryUtils")
6149 (synopsis "Single-cell trajectory analysis utilities")
6150 (description
6151 "This package implements low-level utilities for single-cell trajectory
6152 analysis, primarily intended for re-use inside higher-level packages. It
6153 includes a function to create a cluster-level minimum spanning tree and data
6154 structures to hold pseudotime inference results.")
6155 (license license:gpl3)))
6156
6157 (define-public r-slingshot
6158 (package
6159 (name "r-slingshot")
6160 (version "2.4.0")
6161 (source (origin
6162 (method url-fetch)
6163 (uri (bioconductor-uri "slingshot" version))
6164 (sha256
6165 (base32
6166 "0xapi66l5z2qdqns3fcjqcjal6npqj7rxra60lwjvbrq49pq69p2"))))
6167 (build-system r-build-system)
6168 (propagated-inputs
6169 (list r-igraph
6170 r-matrixstats
6171 r-princurve
6172 r-s4vectors
6173 r-singlecellexperiment
6174 r-summarizedexperiment
6175 r-trajectoryutils))
6176 (native-inputs
6177 (list r-knitr))
6178 (home-page "https://bioconductor.org/packages/slingshot")
6179 (synopsis "Tools for ordering single-cell sequencing")
6180 (description "This package provides functions for inferring continuous,
6181 branching lineage structures in low-dimensional data. Slingshot was designed
6182 to model developmental trajectories in single-cell RNA sequencing data and
6183 serve as a component in an analysis pipeline after dimensionality reduction
6184 and clustering. It is flexible enough to handle arbitrarily many branching
6185 events and allows for the incorporation of prior knowledge through supervised
6186 graph construction.")
6187 (license license:artistic2.0)))
6188
6189 (define-public r-stager
6190 (package
6191 (name "r-stager")
6192 (version "1.18.0")
6193 (source
6194 (origin
6195 (method url-fetch)
6196 (uri (bioconductor-uri "stageR" version))
6197 (sha256
6198 (base32 "0ns3ih6l4na6irshrc5iy4d9qf7hrnqq3ndnlcjb2i1cn38l2w9y"))))
6199 (properties `((upstream-name . "stageR")))
6200 (build-system r-build-system)
6201 (propagated-inputs (list r-summarizedexperiment))
6202 (native-inputs (list r-knitr))
6203 (home-page "https://bioconductor.org/packages/stageR")
6204 (synopsis "Stage-wise analysis of high throughput gene expression data")
6205 (description
6206 "The stageR package allows automated stage-wise analysis of
6207 high-throughput gene expression data. The method is published in Genome
6208 Biology at
6209 @url{https://genomebiology.biomedcentral.com/articles/10.1186/s13059-017-1277-0}.")
6210 (license license:gpl3)))
6211
6212 (define-public r-stringdb
6213 (package
6214 (name "r-stringdb")
6215 (version "2.8.4")
6216 (source
6217 (origin
6218 (method url-fetch)
6219 (uri (bioconductor-uri "STRINGdb" version))
6220 (sha256
6221 (base32 "1jn6080v6097zpqsr4gfbx31gqqdhpzjrk63avk3v3xwawmf2379"))))
6222 (properties `((upstream-name . "STRINGdb")))
6223 (build-system r-build-system)
6224 (propagated-inputs
6225 (list r-gplots
6226 r-hash
6227 r-igraph
6228 r-plotrix
6229 r-plyr
6230 r-png
6231 r-rcolorbrewer
6232 r-rcurl
6233 r-sqldf))
6234 (home-page "https://git.bioconductor.org/packages/STRINGdb")
6235 (synopsis "Search tool for the retrieval of interacting proteins database")
6236 (description
6237 "The @code{STRINGdb} package provides an R interface to the STRING
6238 protein-protein interactions database. @url{https://www.string-db.org,
6239 STRING} is a database of known and predicted protein-protein interactions.
6240 The interactions include direct (physical) and indirect (functional)
6241 associations. Each interaction is associated with a combined confidence score
6242 that integrates the various evidences.")
6243 (license license:gpl2)))
6244
6245 (define-public r-structuralvariantannotation
6246 (package
6247 (name "r-structuralvariantannotation")
6248 (version "1.12.0")
6249 (source
6250 (origin
6251 (method url-fetch)
6252 (uri (bioconductor-uri "StructuralVariantAnnotation" version))
6253 (sha256
6254 (base32 "0f3x74ic3blg8nm5xlv79k0n8j3fpl98mmhfanqfzmdl0g3j6wx6"))))
6255 (build-system r-build-system)
6256 (propagated-inputs
6257 (list r-assertthat
6258 r-biocgenerics
6259 r-biostrings
6260 r-dplyr
6261 r-genomeinfodb
6262 r-genomicfeatures
6263 r-genomicranges
6264 r-iranges
6265 r-rlang
6266 r-rtracklayer
6267 r-s4vectors
6268 r-stringr
6269 r-summarizedexperiment
6270 r-variantannotation))
6271 (native-inputs
6272 (list r-knitr))
6273 (home-page "https://bioconductor.org/packages/StructuralVariantAnnotation/")
6274 (synopsis "R package designed to simplify structural variant analysis")
6275 (description
6276 "This package contains useful helper functions for dealing with structural
6277 variants in VCF format. The packages contains functions for parsing VCFs from
6278 a number of popular callers as well as functions for dealing with breakpoints
6279 involving two separate genomic loci encoded as GRanges objects.")
6280 (license license:gpl3)))
6281
6282 (define-public r-summarizedexperiment
6283 (package
6284 (name "r-summarizedexperiment")
6285 (version "1.26.1")
6286 (source (origin
6287 (method url-fetch)
6288 (uri (bioconductor-uri "SummarizedExperiment" version))
6289 (sha256
6290 (base32
6291 "02vlqzmslyijs09jl0gdjxqjjnnl4yqbqqqlb4vb7nr0fspmyz39"))))
6292 (properties
6293 `((upstream-name . "SummarizedExperiment")))
6294 (build-system r-build-system)
6295 (propagated-inputs
6296 (list r-biobase
6297 r-biocgenerics
6298 r-delayedarray
6299 r-genomeinfodb
6300 r-genomicranges
6301 r-iranges
6302 r-matrix
6303 r-matrixgenerics
6304 r-s4vectors))
6305 (native-inputs
6306 (list r-knitr))
6307 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
6308 (synopsis "Container for representing genomic ranges by sample")
6309 (description
6310 "The SummarizedExperiment container contains one or more assays, each
6311 represented by a matrix-like object of numeric or other mode. The rows
6312 typically represent genomic ranges of interest and the columns represent
6313 samples.")
6314 (license license:artistic2.0)))
6315
6316 (define-public r-sva
6317 (package
6318 (name "r-sva")
6319 (version "3.44.0")
6320 (source
6321 (origin
6322 (method url-fetch)
6323 (uri (bioconductor-uri "sva" version))
6324 (sha256
6325 (base32
6326 "0ka259rn0la0hjslj7w24q1dyyh79h84nw6mxp7armqbfjb207a4"))))
6327 (build-system r-build-system)
6328 (propagated-inputs
6329 (list r-edger
6330 r-genefilter
6331 r-mgcv
6332 r-biocparallel
6333 r-matrixstats
6334 r-limma))
6335 (home-page "https://bioconductor.org/packages/sva")
6336 (synopsis "Surrogate variable analysis")
6337 (description
6338 "This package contains functions for removing batch effects and other
6339 unwanted variation in high-throughput experiment. It also contains functions
6340 for identifying and building surrogate variables for high-dimensional data
6341 sets. Surrogate variables are covariates constructed directly from
6342 high-dimensional data like gene expression/RNA sequencing/methylation/brain
6343 imaging data that can be used in subsequent analyses to adjust for unknown,
6344 unmodeled, or latent sources of noise.")
6345 (license license:artistic2.0)))
6346
6347 (define-public r-systempiper
6348 (package
6349 (name "r-systempiper")
6350 (version "2.2.2")
6351 (source
6352 (origin
6353 (method url-fetch)
6354 (uri (bioconductor-uri "systemPipeR" version))
6355 (sha256
6356 (base32
6357 "1yybbff29gwv6rm0nw4yjw73bbl5prfj8gj4zky917smjfd459im"))))
6358 (properties `((upstream-name . "systemPipeR")))
6359 (build-system r-build-system)
6360 (propagated-inputs
6361 (list r-biocgenerics
6362 r-biostrings
6363 r-crayon
6364 r-genomicranges
6365 r-ggplot2
6366 r-htmlwidgets
6367 r-magrittr
6368 r-rsamtools
6369 r-s4vectors
6370 r-shortread
6371 r-stringr
6372 r-summarizedexperiment
6373 r-yaml))
6374 (native-inputs
6375 (list r-knitr))
6376 (home-page "https://github.com/tgirke/systemPipeR")
6377 (synopsis "Next generation sequencing workflow and reporting environment")
6378 (description
6379 "This R package provides tools for building and running automated
6380 end-to-end analysis workflows for a wide range of @dfn{next generation
6381 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
6382 Important features include a uniform workflow interface across different NGS
6383 applications, automated report generation, and support for running both R and
6384 command-line software, such as NGS aligners or peak/variant callers, on local
6385 computers or compute clusters. Efficient handling of complex sample sets and
6386 experimental designs is facilitated by a consistently implemented sample
6387 annotation infrastructure.")
6388 (license license:artistic2.0)))
6389
6390 (define-public r-topgo
6391 (package
6392 (name "r-topgo")
6393 (version "2.48.0")
6394 (source (origin
6395 (method url-fetch)
6396 (uri (bioconductor-uri "topGO" version))
6397 (sha256
6398 (base32
6399 "125r42ymk1irjmwk4sywjkcshs71s26p3zsvryfdvf56k5w162v6"))))
6400 (properties
6401 `((upstream-name . "topGO")))
6402 (build-system r-build-system)
6403 (propagated-inputs
6404 (list r-annotationdbi
6405 r-dbi
6406 r-biobase
6407 r-biocgenerics
6408 r-go-db
6409 r-graph
6410 r-lattice
6411 r-matrixstats
6412 r-sparsem))
6413 (home-page "https://bioconductor.org/packages/topGO")
6414 (synopsis "Enrichment analysis for gene ontology")
6415 (description
6416 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
6417 terms while accounting for the topology of the GO graph. Different test
6418 statistics and different methods for eliminating local similarities and
6419 dependencies between GO terms can be implemented and applied.")
6420 ;; Any version of the LGPL applies.
6421 (license license:lgpl2.1+)))
6422
6423 (define-public r-tximport
6424 (package
6425 (name "r-tximport")
6426 (version "1.24.0")
6427 (source (origin
6428 (method url-fetch)
6429 (uri (bioconductor-uri "tximport" version))
6430 (sha256
6431 (base32
6432 "1cnra82pvwz79a1hkw0phc6aa3v43r5p4nx8xyx5wzmkd7rjkc8x"))))
6433 (build-system r-build-system)
6434 (native-inputs
6435 (list r-knitr))
6436 (home-page "https://bioconductor.org/packages/tximport")
6437 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
6438 (description
6439 "This package provides tools to import transcript-level abundance,
6440 estimated counts and transcript lengths, and to summarize them into matrices
6441 for use with downstream gene-level analysis packages. Average transcript
6442 length, weighted by sample-specific transcript abundance estimates, is
6443 provided as a matrix which can be used as an offset for different expression
6444 of gene-level counts.")
6445 (license license:gpl2+)))
6446
6447 ;; This is a CRAN package, but it depends on a Bioconductor package.
6448 (define-public r-valr
6449 (package
6450 (name "r-valr")
6451 (version "0.6.5")
6452 (source
6453 (origin
6454 (method url-fetch)
6455 (uri (cran-uri "valr" version))
6456 (sha256
6457 (base32
6458 "1674sqclgi4l5r544pjjsblzl1ix2cy961jpkncb3ym47y6c1msw"))))
6459 (build-system r-build-system)
6460 (propagated-inputs
6461 (list r-broom
6462 r-dplyr
6463 r-ggplot2
6464 r-rcpp
6465 r-readr
6466 r-rlang
6467 r-rtracklayer ;bioconductor package
6468 r-stringr
6469 r-tibble))
6470 (native-inputs
6471 (list r-knitr))
6472 (home-page "https://github.com/rnabioco/valr")
6473 (synopsis "Genome interval arithmetic in R")
6474 (description
6475 "This package enables you to read and manipulate genome intervals and
6476 signals. It provides functionality similar to command-line tool suites within
6477 R, enabling interactive analysis and visualization of genome-scale data.")
6478 (license license:expat)))
6479
6480 (define-public r-variantannotation
6481 (package
6482 (name "r-variantannotation")
6483 (version "1.42.1")
6484 (source (origin
6485 (method url-fetch)
6486 (uri (bioconductor-uri "VariantAnnotation" version))
6487 (sha256
6488 (base32
6489 "12d5hkx6pby6l2asyg4jp4jb2x17ybwhqd55rl64h37mwcndbdg1"))))
6490 (properties
6491 `((upstream-name . "VariantAnnotation")))
6492 (propagated-inputs
6493 (list r-annotationdbi
6494 r-biobase
6495 r-biocgenerics
6496 r-biostrings
6497 r-bsgenome
6498 r-dbi
6499 r-genomeinfodb
6500 r-genomicfeatures
6501 r-genomicranges
6502 r-iranges
6503 r-matrixgenerics
6504 r-summarizedexperiment
6505 r-rhtslib
6506 r-rsamtools
6507 r-rtracklayer
6508 r-s4vectors
6509 r-xvector
6510 r-zlibbioc))
6511 (build-system r-build-system)
6512 (home-page "https://bioconductor.org/packages/VariantAnnotation")
6513 (synopsis "Package for annotation of genetic variants")
6514 (description "This R package can annotate variants, compute amino acid
6515 coding changes and predict coding outcomes.")
6516 (license license:artistic2.0)))
6517
6518 (define-public r-vsn
6519 (package
6520 (name "r-vsn")
6521 (version "3.64.0")
6522 (source
6523 (origin
6524 (method url-fetch)
6525 (uri (bioconductor-uri "vsn" version))
6526 (sha256
6527 (base32
6528 "1ja7vdjvgx671l57f9fzfn4vc6q7xzfmqs4krg2rdyfaaf531gqf"))))
6529 (build-system r-build-system)
6530 (propagated-inputs
6531 (list r-affy r-biobase r-ggplot2 r-lattice r-limma))
6532 (native-inputs
6533 (list r-knitr)) ; for vignettes
6534 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
6535 (synopsis "Variance stabilization and calibration for microarray data")
6536 (description
6537 "The package implements a method for normalising microarray intensities,
6538 and works for single- and multiple-color arrays. It can also be used for data
6539 from other technologies, as long as they have similar format. The method uses
6540 a robust variant of the maximum-likelihood estimator for an
6541 additive-multiplicative error model and affine calibration. The model
6542 incorporates data calibration step (a.k.a. normalization), a model for the
6543 dependence of the variance on the mean intensity and a variance stabilizing
6544 data transformation. Differences between transformed intensities are
6545 analogous to \"normalized log-ratios\". However, in contrast to the latter,
6546 their variance is independent of the mean, and they are usually more sensitive
6547 and specific in detecting differential transcription.")
6548 (license license:artistic2.0)))
6549
6550 ;; There is no source tarball, so we fetch the code from the Bioconductor git
6551 ;; repository.
6552 (define-public r-xcir
6553 (let ((commit "3b59d456f2ad7f70285915b036b1dc4279687277")
6554 (revision "1"))
6555 (package
6556 (name "r-xcir")
6557 (version (git-version "1.8.0" revision commit))
6558 (source (origin
6559 (method git-fetch)
6560 (uri (git-reference
6561 (url "https://git.bioconductor.org/packages/XCIR")
6562 (commit commit)))
6563 (file-name (git-file-name name version))
6564 (sha256
6565 (base32
6566 "1xxw5ady5j2p7z7zjxgx7lhm85x7fxbljiv49lc2ghsvh9wm937p"))))
6567 (properties `((upstream-name . "XCIR")))
6568 (build-system r-build-system)
6569 (propagated-inputs (list r-biomart
6570 r-biostrings
6571 r-data-table
6572 r-ggplot2
6573 r-iranges
6574 r-readxl
6575 r-s4vectors
6576 r-seqminer
6577 r-variantannotation))
6578 (native-inputs (list r-knitr))
6579 (home-page "https://github.com/SRenan/XCIR")
6580 (synopsis "Analysis of X chromosome inactivation")
6581 (description
6582 "This package is an R package that offers models and tools for subject
6583 level analysis of @dfn{X chromosome inactivation} (XCI) and XCI-escape
6584 inference.")
6585 (license license:gpl2))))
6586
6587 (define-public r-xina
6588 (package
6589 (name "r-xina")
6590 (version "1.14.0")
6591 (source
6592 (origin
6593 (method url-fetch)
6594 (uri (bioconductor-uri "XINA" version))
6595 (sha256
6596 (base32 "03gf7mqpnwx12kny9fsaskgrw83b0wi2cf1j4dbq46pfxjx34v1g"))))
6597 (properties `((upstream-name . "XINA")))
6598 (build-system r-build-system)
6599 (propagated-inputs
6600 (list r-alluvial
6601 r-ggplot2
6602 r-gridextra
6603 r-igraph
6604 r-mclust
6605 r-plyr
6606 r-stringdb))
6607 (native-inputs (list r-knitr))
6608 (home-page "https://git.bioconductor.org/packages/XINA")
6609 (synopsis "Identifying proteins that exhibit similar patterns")
6610 (description
6611 "The aim of @code{XINA} is to determine which proteins exhibit similar
6612 patterns within and across experimental conditions, since proteins with
6613 co-abundance patterns may have common molecular functions. @code{XINA} imports
6614 multiple datasets, tags dataset in silico, and combines the data for subsequent
6615 subgrouping into multiple clusters. The result is a single output depicting
6616 the variation across all conditions. @code{XINA} not only extracts
6617 coabundance profiles within and across experiments, but also incorporates
6618 protein-protein interaction databases and integrative resources such as
6619 @dfn{Kyoto encyclopedia of genes and genomes} (KEGG) to infer interactors and
6620 molecular functions, respectively, and produces intuitive graphical outputs.")
6621 (license license:gpl3)))
6622
6623 (define-public r-xmapbridge
6624 (package
6625 (name "r-xmapbridge")
6626 (version "1.54.0")
6627 (source
6628 (origin
6629 (method url-fetch)
6630 (uri (bioconductor-uri "xmapbridge" version))
6631 (sha256
6632 (base32 "1n3nxc4jwxf5z32i70sza52nyk29adhp8vc3hac7r5b8mbi6gg10"))))
6633 (properties `((upstream-name . "xmapbridge")))
6634 (build-system r-build-system)
6635 (home-page "https://git.bioconductor.org/packages/xmapbridge")
6636 (synopsis "Display numeric data in the web based genome browser X:MAP")
6637 (description
6638 "The package @code{xmapbridge} can plot graphs in the X:Map genome
6639 browser. X:Map uses the Google Maps API to provide a scrollable view of the
6640 genome. It supports a number of species, and can be accessed at
6641 @url{http://xmap.picr.man.ac.uk}. This package exports plotting files in a
6642 suitable format. Graph plotting in R is done using calls to the functions
6643 @code{xmap.plot} and @code{xmap.points}, which have parameters that aim to be
6644 similar to those used by the standard plot methods in R. These result in data
6645 being written to a set of files (in a specific directory structure) that
6646 contain the data to be displayed, as well as some additional meta-data
6647 describing each of the graphs.")
6648 (license license:lgpl3)))
6649
6650 (define-public r-xvector
6651 (package
6652 (name "r-xvector")
6653 (version "0.36.0")
6654 (source (origin
6655 (method url-fetch)
6656 (uri (bioconductor-uri "XVector" version))
6657 (sha256
6658 (base32
6659 "1f3sbqy279gb9k13l73j00ixywa1havlqy81zx766r1xkz15nvhk"))))
6660 (properties
6661 `((upstream-name . "XVector")))
6662 (build-system r-build-system)
6663 (arguments
6664 `(#:phases
6665 (modify-phases %standard-phases
6666 (add-after 'unpack 'use-system-zlib
6667 (lambda _
6668 (substitute* "DESCRIPTION"
6669 (("zlibbioc, ") ""))
6670 (substitute* "NAMESPACE"
6671 (("import\\(zlibbioc\\)") ""))
6672 #t)))))
6673 (inputs
6674 (list zlib))
6675 (propagated-inputs
6676 (list r-biocgenerics r-iranges r-s4vectors))
6677 (home-page "https://bioconductor.org/packages/XVector")
6678 (synopsis "Representation and manpulation of external sequences")
6679 (description
6680 "This package provides memory efficient S4 classes for storing sequences
6681 \"externally\" (behind an R external pointer, or on disk).")
6682 (license license:artistic2.0)))
6683
6684 (define-public r-zlibbioc
6685 (package
6686 (name "r-zlibbioc")
6687 (version "1.42.0")
6688 (source (origin
6689 (method url-fetch)
6690 (uri (bioconductor-uri "zlibbioc" version))
6691 (sha256
6692 (base32
6693 "0w0y9jixdk6akmasn55g9g0nhlh93hbca5bwx5w1fypnvqrqpxzv"))))
6694 (properties
6695 `((upstream-name . "zlibbioc")))
6696 (build-system r-build-system)
6697 (home-page "https://bioconductor.org/packages/zlibbioc")
6698 (synopsis "Provider for zlib-1.2.5 to R packages")
6699 (description "This package uses the source code of zlib-1.2.5 to create
6700 libraries for systems that do not have these available via other means.")
6701 (license license:artistic2.0)))
6702
6703 (define-public r-zellkonverter
6704 (package
6705 (name "r-zellkonverter")
6706 (version "1.6.5")
6707 (source
6708 (origin
6709 (method url-fetch)
6710 (uri (bioconductor-uri "zellkonverter" version))
6711 (sha256
6712 (base32 "0rxpjkisjj1xjchjjm72k8za5hn48wbdahmbllljvxm5ii6k36k6"))))
6713 (properties `((upstream-name . "zellkonverter")))
6714 (build-system r-build-system)
6715 (propagated-inputs
6716 (list r-basilisk
6717 r-cli
6718 r-delayedarray
6719 r-matrix
6720 r-reticulate
6721 r-s4vectors
6722 r-singlecellexperiment
6723 r-summarizedexperiment))
6724 (native-inputs (list r-knitr))
6725 (home-page "https://github.com/theislab/zellkonverter")
6726 (synopsis "Conversion between AnnData and single-cell experiments objects")
6727 (description
6728 "This package provides methods to convert between Python AnnData objects
6729 and SingleCellExperiment objects. These are primarily intended for use by
6730 downstream Bioconductor packages that wrap Python methods for single-cell data
6731 analysis. It also includes functions to read and write H5AD files used for
6732 saving AnnData objects to disk.")
6733 (license license:expat)))
6734
6735 (define-public r-geneplotter
6736 (package
6737 (name "r-geneplotter")
6738 (version "1.74.0")
6739 (source
6740 (origin
6741 (method url-fetch)
6742 (uri (bioconductor-uri "geneplotter" version))
6743 (sha256
6744 (base32
6745 "13230mzrdralnvf9jp032s16a8mk3kx5476nnvpa4pvcgp1i1ijc"))))
6746 (build-system r-build-system)
6747 (propagated-inputs
6748 (list r-annotate
6749 r-annotationdbi
6750 r-biobase
6751 r-biocgenerics
6752 r-lattice
6753 r-rcolorbrewer))
6754 (home-page "https://bioconductor.org/packages/geneplotter")
6755 (synopsis "Graphics functions for genomic data")
6756 (description
6757 "This package provides functions for plotting genomic data.")
6758 (license license:artistic2.0)))
6759
6760 (define-public r-oligoclasses
6761 (package
6762 (name "r-oligoclasses")
6763 (version "1.58.0")
6764 (source
6765 (origin
6766 (method url-fetch)
6767 (uri (bioconductor-uri "oligoClasses" version))
6768 (sha256
6769 (base32
6770 "1m4x50gl1fm5waa531v7ml0q229q65qn9cgiwnvjg721fvra7mdk"))))
6771 (properties `((upstream-name . "oligoClasses")))
6772 (build-system r-build-system)
6773 (propagated-inputs
6774 (list r-affyio
6775 r-biobase
6776 r-biocgenerics
6777 r-biocmanager
6778 r-biostrings
6779 r-dbi
6780 r-ff
6781 r-foreach
6782 r-genomicranges
6783 r-iranges
6784 r-rsqlite
6785 r-s4vectors
6786 r-summarizedexperiment))
6787 (home-page "https://bioconductor.org/packages/oligoClasses/")
6788 (synopsis "Classes for high-throughput arrays")
6789 (description
6790 "This package contains class definitions, validity checks, and
6791 initialization methods for classes used by the @code{oligo} and @code{crlmm}
6792 packages.")
6793 (license license:gpl2+)))
6794
6795 (define-public r-oligo
6796 (package
6797 (name "r-oligo")
6798 (version "1.60.0")
6799 (source
6800 (origin
6801 (method url-fetch)
6802 (uri (bioconductor-uri "oligo" version))
6803 (sha256
6804 (base32
6805 "0y7j96rafm9b85sxq2483i73685i3j67lk33fn8nfcav6lmsv5vy"))))
6806 (properties `((upstream-name . "oligo")))
6807 (build-system r-build-system)
6808 (inputs (list zlib))
6809 (propagated-inputs
6810 (list r-affxparser
6811 r-affyio
6812 r-biobase
6813 r-biocgenerics
6814 r-biostrings
6815 r-dbi
6816 r-ff
6817 r-oligoclasses
6818 r-preprocesscore
6819 r-rsqlite
6820 r-zlibbioc))
6821 (native-inputs
6822 (list r-knitr))
6823 (home-page "https://bioconductor.org/packages/oligo/")
6824 (synopsis "Preprocessing tools for oligonucleotide arrays")
6825 (description
6826 "This package provides a package to analyze oligonucleotide
6827 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
6828 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
6829 (license license:lgpl2.0+)))
6830
6831 (define-public r-qvalue
6832 (package
6833 (name "r-qvalue")
6834 (version "2.28.0")
6835 (source
6836 (origin
6837 (method url-fetch)
6838 (uri (bioconductor-uri "qvalue" version))
6839 (sha256
6840 (base32
6841 "0cvhm5cldcnnxwa293dig1pj9lvj2hnz9zh4gfr25sw0xlcjzmyw"))))
6842 (build-system r-build-system)
6843 (propagated-inputs
6844 (list r-ggplot2 r-reshape2))
6845 (native-inputs
6846 (list r-knitr))
6847 (home-page "https://github.com/StoreyLab/qvalue")
6848 (synopsis "Q-value estimation for false discovery rate control")
6849 (description
6850 "This package takes a list of p-values resulting from the simultaneous
6851 testing of many hypotheses and estimates their q-values and local @dfn{false
6852 discovery rate} (FDR) values. The q-value of a test measures the proportion
6853 of false positives incurred when that particular test is called significant.
6854 The local FDR measures the posterior probability the null hypothesis is true
6855 given the test's p-value. Various plots are automatically generated, allowing
6856 one to make sensible significance cut-offs. The software can be applied to
6857 problems in genomics, brain imaging, astrophysics, and data mining.")
6858 ;; Any version of the LGPL.
6859 (license license:lgpl3+)))
6860
6861 (define r-rcppnumerical
6862 (package
6863 (name "r-rcppnumerical")
6864 (version "0.4-0")
6865 (source (origin
6866 (method url-fetch)
6867 (uri (cran-uri "RcppNumerical" version))
6868 (sha256
6869 (base32
6870 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
6871 (properties `((upstream-name . "RcppNumerical")))
6872 (build-system r-build-system)
6873 (propagated-inputs
6874 `(("r-rcpp" ,r-rcpp)
6875 ("r-rcppeigen" ,r-rcppeigen)))
6876 (native-inputs
6877 `(("r-knitr" ,r-knitr)))
6878 (home-page "https://github.com/yixuan/RcppNumerical")
6879 (synopsis "Rcpp integration for numerical computing libraries")
6880 (description
6881 "This package provides a collection of libraries for numerical computing
6882 (numerical integration, optimization, etc.) and their integration with
6883 @code{Rcpp}.")
6884 (license license:gpl2+)))
6885
6886 (define-public r-apeglm
6887 (package
6888 (name "r-apeglm")
6889 (version "1.18.0")
6890 (source (origin
6891 (method url-fetch)
6892 (uri (bioconductor-uri "apeglm" version))
6893 (sha256
6894 (base32
6895 "1ppwk4g66x46hpqsfsvhl12398d1srqr47nmp0y2gz212kff0rby"))))
6896 (properties `((upstream-name . "apeglm")))
6897 (build-system r-build-system)
6898 (propagated-inputs
6899 (list r-emdbook
6900 r-genomicranges
6901 r-rcpp
6902 r-rcppeigen
6903 r-rcppnumerical
6904 r-summarizedexperiment))
6905 (native-inputs (list r-knitr))
6906 (home-page "https://bioconductor.org/packages/apeglm")
6907 (synopsis "Approximate posterior estimation for GLM coefficients")
6908 (description "This package provides Bayesian shrinkage estimators for
6909 effect sizes for a variety of GLM models, using approximation of the
6910 posterior for individual coefficients.")
6911 (license license:gpl2)))
6912
6913 (define-public r-greylistchip
6914 (package
6915 (name "r-greylistchip")
6916 (version "1.28.1")
6917 (source (origin
6918 (method url-fetch)
6919 (uri (bioconductor-uri "GreyListChIP" version))
6920 (sha256
6921 (base32
6922 "0w52vwvjarql19bsv40b80yn701qx8c9d0clsjhj85wmzj2p6dhg"))))
6923 (properties `((upstream-name . "GreyListChIP")))
6924 (build-system r-build-system)
6925 (propagated-inputs
6926 (list r-bsgenome
6927 r-genomeinfodb
6928 r-genomicalignments
6929 r-genomicranges
6930 r-mass
6931 r-rsamtools
6932 r-rtracklayer
6933 r-summarizedexperiment))
6934 (home-page "https://bioconductor.org/packages/GreyListChIP")
6935 (synopsis "Greylist artefact regions based on ChIP inputs")
6936 (description "This package identifies regions of ChIP experiments with high
6937 signal in the input, that lead to spurious peaks during peak calling.")
6938 (license license:artistic2.0)))
6939
6940 (define-public r-diffbind
6941 (package
6942 (name "r-diffbind")
6943 (version "3.6.4")
6944 (source
6945 (origin
6946 (method url-fetch)
6947 (uri (bioconductor-uri "DiffBind" version))
6948 (sha256
6949 (base32
6950 "035xczcir4q7yj6x9m3yq3dpvbfas9la925avni8147cwhybagqr"))))
6951 (properties `((upstream-name . "DiffBind")))
6952 (build-system r-build-system)
6953 (propagated-inputs
6954 (list r-amap
6955 r-apeglm
6956 r-ashr
6957 r-biocparallel
6958 r-deseq2
6959 r-dplyr
6960 r-genomicalignments
6961 r-genomicranges
6962 r-ggplot2
6963 r-ggrepel
6964 r-gplots
6965 r-greylistchip
6966 r-iranges
6967 r-lattice
6968 r-limma
6969 r-locfit
6970 r-rcolorbrewer
6971 r-rcpp
6972 r-rhtslib
6973 r-rsamtools
6974 r-s4vectors
6975 r-summarizedexperiment
6976 r-systempiper))
6977 (home-page "https://bioconductor.org/packages/DiffBind")
6978 (synopsis "Differential binding analysis of ChIP-Seq peak data")
6979 (description
6980 "This package computes differentially bound sites from multiple
6981 ChIP-seq experiments using affinity (quantitative) data. Also enables
6982 occupancy (overlap) analysis and plotting functions.")
6983 (license license:artistic2.0)))
6984
6985 (define-public r-ripseeker
6986 (package
6987 (name "r-ripseeker")
6988 (version "1.26.0")
6989 (source
6990 (origin
6991 (method url-fetch)
6992 (uri (bioconductor-uri "RIPSeeker" version))
6993 (sha256
6994 (base32
6995 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
6996 (properties `((upstream-name . "RIPSeeker")))
6997 (build-system r-build-system)
6998 (propagated-inputs
6999 (list r-s4vectors
7000 r-iranges
7001 r-genomicranges
7002 r-summarizedexperiment
7003 r-rsamtools
7004 r-genomicalignments
7005 r-rtracklayer))
7006 (home-page "https://bioconductor.org/packages/RIPSeeker")
7007 (synopsis
7008 "Identifying protein-associated transcripts from RIP-seq experiments")
7009 (description
7010 "This package infers and discriminates RIP peaks from RIP-seq alignments
7011 using two-state HMM with negative binomial emission probability. While
7012 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
7013 a suite of bioinformatics tools integrated within this self-contained software
7014 package comprehensively addressing issues ranging from post-alignments
7015 processing to visualization and annotation.")
7016 (license license:gpl2)))
7017
7018 (define-public r-mbkmeans
7019 (package
7020 (name "r-mbkmeans")
7021 (version "1.12.0")
7022 (source (origin
7023 (method url-fetch)
7024 (uri (bioconductor-uri "mbkmeans" version))
7025 (sha256
7026 (base32
7027 "1f5krzlyqljz763vkp1a50danjn78xhn35s8qqdvzrmwyx0fzphg"))))
7028 (build-system r-build-system)
7029 (native-inputs
7030 (list r-knitr))
7031 (propagated-inputs
7032 (list r-beachmat
7033 r-benchmarkme
7034 r-biocparallel
7035 r-clusterr
7036 r-delayedarray
7037 r-matrix
7038 r-rcpp
7039 r-rcpparmadillo
7040 r-rhdf5lib
7041 r-s4vectors
7042 r-singlecellexperiment
7043 r-summarizedexperiment))
7044 (home-page "https://bioconductor.org/packages/mbkmeans")
7045 (synopsis "Mini-batch k-means clustering for single-cell RNA-seq")
7046 (description "This package implements the mini-batch k-means algorithm for
7047 large datasets, including support for on-disk data representation.")
7048 (license license:expat)))
7049
7050 (define-public r-multtest
7051 (package
7052 (name "r-multtest")
7053 (version "2.52.0")
7054 (source
7055 (origin
7056 (method url-fetch)
7057 (uri (bioconductor-uri "multtest" version))
7058 (sha256
7059 (base32
7060 "037wcmwk1wvhjxgmlvnk289pkwishi1753ajkmy9x14xlmldix82"))))
7061 (build-system r-build-system)
7062 (propagated-inputs
7063 (list r-survival r-biocgenerics r-biobase r-mass))
7064 (home-page "https://bioconductor.org/packages/multtest")
7065 (synopsis "Resampling-based multiple hypothesis testing")
7066 (description
7067 "This package can do non-parametric bootstrap and permutation
7068 resampling-based multiple testing procedures (including empirical Bayes
7069 methods) for controlling the family-wise error rate (FWER), generalized
7070 family-wise error rate (gFWER), tail probability of the proportion of
7071 false positives (TPPFP), and false discovery rate (FDR). Several choices
7072 of bootstrap-based null distribution are implemented (centered, centered
7073 and scaled, quantile-transformed). Single-step and step-wise methods are
7074 available. Tests based on a variety of T- and F-statistics (including
7075 T-statistics based on regression parameters from linear and survival models
7076 as well as those based on correlation parameters) are included. When probing
7077 hypotheses with T-statistics, users may also select a potentially faster null
7078 distribution which is multivariate normal with mean zero and variance
7079 covariance matrix derived from the vector influence function. Results are
7080 reported in terms of adjusted P-values, confidence regions and test statistic
7081 cutoffs. The procedures are directly applicable to identifying differentially
7082 expressed genes in DNA microarray experiments.")
7083 (license license:lgpl3)))
7084
7085 (define-public r-graph
7086 (package
7087 (name "r-graph")
7088 (version "1.74.0")
7089 (source (origin
7090 (method url-fetch)
7091 (uri (bioconductor-uri "graph" version))
7092 (sha256
7093 (base32
7094 "1b8hrjwjg82kicls1496fxfzv75xjvq2k6r9apzsd3qlbyg3ilg4"))))
7095 (build-system r-build-system)
7096 (propagated-inputs
7097 (list r-biocgenerics))
7098 (home-page "https://bioconductor.org/packages/graph")
7099 (synopsis "Handle graph data structures in R")
7100 (description
7101 "This package implements some simple graph handling capabilities for R.")
7102 (license license:artistic2.0)))
7103
7104 ;; This is a CRAN package, but it depends on a Bioconductor package.
7105 (define-public r-ggm
7106 (package
7107 (name "r-ggm")
7108 (version "2.5")
7109 (source
7110 (origin
7111 (method url-fetch)
7112 (uri (cran-uri "ggm" version))
7113 (sha256
7114 (base32
7115 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
7116 (properties `((upstream-name . "ggm")))
7117 (build-system r-build-system)
7118 (propagated-inputs
7119 (list r-graph r-igraph))
7120 (home-page "https://cran.r-project.org/package=ggm")
7121 (synopsis "Functions for graphical Markov models")
7122 (description
7123 "This package provides functions and datasets for maximum likelihood
7124 fitting of some classes of graphical Markov models.")
7125 (license license:gpl2+)))
7126
7127 ;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
7128 (define-public r-perfmeas
7129 (package
7130 (name "r-perfmeas")
7131 (version "1.2.5")
7132 (source
7133 (origin
7134 (method url-fetch)
7135 (uri (cran-uri "PerfMeas" version))
7136 (sha256
7137 (base32
7138 "13yjk0kwpbsqwl056hzf0zj2br1mk4faqcn1whdfxmq348c14hjb"))))
7139 (properties `((upstream-name . "PerfMeas")))
7140 (build-system r-build-system)
7141 (propagated-inputs
7142 (list r-graph r-limma r-rbgl))
7143 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
7144 (synopsis "Performance measures for ranking and classification tasks")
7145 (description
7146 "This package implements different performance measures for
7147 classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
7148 a given recall, F-score for single and multiple classes are available.")
7149 (license license:gpl2+)))
7150
7151 ;; This is a CRAN package, but it depends on a Bioconductor package.
7152 (define-public r-codedepends
7153 (package
7154 (name "r-codedepends")
7155 (version "0.6.5")
7156 (source
7157 (origin
7158 (method url-fetch)
7159 (uri (cran-uri "CodeDepends" version))
7160 (sha256
7161 (base32
7162 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
7163 (properties `((upstream-name . "CodeDepends")))
7164 (build-system r-build-system)
7165 (propagated-inputs
7166 (list r-codetools r-graph r-xml))
7167 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
7168 (synopsis "Analysis of R code for reproducible research and code comprehension")
7169 (description
7170 "This package provides tools for analyzing R expressions or blocks of
7171 code and determining the dependencies between them. It focuses on R scripts,
7172 but can be used on the bodies of functions. There are many facilities
7173 including the ability to summarize or get a high-level view of code,
7174 determining dependencies between variables, code improvement suggestions.")
7175 ;; Any version of the GPL
7176 (license (list license:gpl2+ license:gpl3+))))
7177
7178 (define-public r-chippeakanno
7179 (package
7180 (name "r-chippeakanno")
7181 (version "3.30.1")
7182 (source
7183 (origin
7184 (method url-fetch)
7185 (uri (bioconductor-uri "ChIPpeakAnno" version))
7186 (sha256
7187 (base32
7188 "0a26glldxczcfymjvd45gv5m4hympziivm6wwx4ab9wld7n43l8y"))))
7189 (properties `((upstream-name . "ChIPpeakAnno")))
7190 (build-system r-build-system)
7191 (propagated-inputs
7192 (list r-annotationdbi
7193 r-biocgenerics
7194 r-biomart
7195 r-biostrings
7196 r-dbi
7197 r-dplyr
7198 r-ensembldb
7199 r-genomeinfodb
7200 r-genomicalignments
7201 r-genomicfeatures
7202 r-genomicranges
7203 r-ggplot2
7204 r-graph
7205 r-interactionset
7206 r-iranges
7207 r-keggrest
7208 r-matrixstats
7209 r-multtest
7210 r-rbgl
7211 r-regioner
7212 r-rsamtools
7213 r-rtracklayer
7214 r-s4vectors
7215 r-summarizedexperiment
7216 r-venndiagram))
7217 (native-inputs
7218 (list r-knitr))
7219 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
7220 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
7221 (description
7222 "The package includes functions to retrieve the sequences around the peak,
7223 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
7224 custom features such as most conserved elements and other transcription factor
7225 binding sites supplied by users. Starting 2.0.5, new functions have been added
7226 for finding the peaks with bi-directional promoters with summary statistics
7227 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
7228 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
7229 enrichedGO (addGeneIDs).")
7230 (license license:gpl2+)))
7231
7232 (define-public r-matrixgenerics
7233 (package
7234 (name "r-matrixgenerics")
7235 (version "1.8.1")
7236 (source (origin
7237 (method url-fetch)
7238 (uri (bioconductor-uri "MatrixGenerics" version))
7239 (sha256
7240 (base32
7241 "1liblnpziyyjxzrhdd5d89ilvfqqhbl87h3hsmdm0kwnmc73r37f"))))
7242 (properties
7243 `((upstream-name . "MatrixGenerics")))
7244 (build-system r-build-system)
7245 (propagated-inputs
7246 (list r-matrixstats))
7247 (home-page "https://bioconductor.org/packages/MatrixGenerics")
7248 (synopsis "S4 generic summary statistic functions for matrix-like objects")
7249 (description
7250 "This package provides S4 generic functions modeled after the
7251 @code{matrixStats} API for alternative matrix implementations. Packages with
7252 alternative matrix implementation can depend on this package and implement the
7253 generic functions that are defined here for a useful set of row and column
7254 summary statistics. Other package developers can import this package and
7255 handle a different matrix implementations without worrying about
7256 incompatibilities.")
7257 (license license:artistic2.0)))
7258
7259 (define-public r-marray
7260 (package
7261 (name "r-marray")
7262 (version "1.74.0")
7263 (source (origin
7264 (method url-fetch)
7265 (uri (bioconductor-uri "marray" version))
7266 (sha256
7267 (base32 "0awfz0akz3sylyw1jxhxgadv1rqdzvy9v11933yxkl9a8m9ngm8i"))))
7268 (build-system r-build-system)
7269 (propagated-inputs
7270 (list r-limma))
7271 (home-page "https://bioconductor.org/packages/marray")
7272 (synopsis "Exploratory analysis for two-color spotted microarray data")
7273 (description "This package contains class definitions for two-color spotted
7274 microarray data. It also includes functions for data input, diagnostic plots,
7275 normalization and quality checking.")
7276 (license license:lgpl2.0+)))
7277
7278 (define-public r-cghbase
7279 (package
7280 (name "r-cghbase")
7281 (version "1.56.0")
7282 (source (origin
7283 (method url-fetch)
7284 (uri (bioconductor-uri "CGHbase" version))
7285 (sha256
7286 (base32 "1q8yy60r4g5nyv2gbfdgk192xd73c0rrjr668d5616ddb7sx8wcr"))))
7287 (properties `((upstream-name . "CGHbase")))
7288 (build-system r-build-system)
7289 (propagated-inputs
7290 (list r-biobase r-marray))
7291 (home-page "https://bioconductor.org/packages/CGHbase")
7292 (synopsis "Base functions and classes for arrayCGH data analysis")
7293 (description "This package contains functions and classes that are needed by
7294 the @code{arrayCGH} packages.")
7295 (license license:gpl2+)))
7296
7297 (define-public r-cghcall
7298 (package
7299 (name "r-cghcall")
7300 (version "2.58.0")
7301 (source (origin
7302 (method url-fetch)
7303 (uri (bioconductor-uri "CGHcall" version))
7304 (sha256
7305 (base32 "1qpsibp4gb09sn6fkwwrdjkh3a28lqfbk18c6fvn4m386j96ps65"))))
7306 (properties `((upstream-name . "CGHcall")))
7307 (build-system r-build-system)
7308 (propagated-inputs
7309 (list r-biobase r-cghbase r-impute r-dnacopy r-snowfall))
7310 (home-page "https://bioconductor.org/packages/CGHcall")
7311 (synopsis "Base functions and classes for arrayCGH data analysis")
7312 (description "This package contains functions and classes that are needed by
7313 @code{arrayCGH} packages.")
7314 (license license:gpl2+)))
7315
7316 (define-public r-qdnaseq
7317 (package
7318 (name "r-qdnaseq")
7319 (version "1.32.0")
7320 (source (origin
7321 (method url-fetch)
7322 (uri (bioconductor-uri "QDNAseq" version))
7323 (sha256
7324 (base32 "0s360s72lfn9vjml88gg1m40n61s0dc66ilzgfjdcp65djdxxfvm"))))
7325 (properties `((upstream-name . "QDNAseq")))
7326 (build-system r-build-system)
7327 (propagated-inputs
7328 (list r-biobase
7329 r-cghbase
7330 r-cghcall
7331 r-dnacopy
7332 r-future-apply
7333 r-genomicranges
7334 r-iranges
7335 r-matrixstats
7336 r-r-utils
7337 r-rsamtools))
7338 (home-page "https://bioconductor.org/packages/QDNAseq")
7339 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
7340 (description "The genome is divided into non-overlapping fixed-sized bins,
7341 number of sequence reads in each counted, adjusted with a simultaneous
7342 two-dimensional loess correction for sequence mappability and GC content, and
7343 filtered to remove spurious regions in the genome. Downstream steps of
7344 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
7345 respectively.")
7346 (license license:gpl2+)))
7347
7348 (define-public r-bayseq
7349 (package
7350 (name "r-bayseq")
7351 (version "2.30.0")
7352 (source
7353 (origin
7354 (method url-fetch)
7355 (uri (bioconductor-uri "baySeq" version))
7356 (sha256
7357 (base32
7358 "1yqykndyv32s2rk7x86qf410qr0pigc8z4gdkl8vhj4dgyr47n2j"))))
7359 (properties `((upstream-name . "baySeq")))
7360 (build-system r-build-system)
7361 (propagated-inputs
7362 (list r-abind r-edger r-genomicranges))
7363 (home-page "https://bioconductor.org/packages/baySeq/")
7364 (synopsis "Bayesian analysis of differential expression patterns in count data")
7365 (description
7366 "This package identifies differential expression in high-throughput count
7367 data, such as that derived from next-generation sequencing machines,
7368 calculating estimated posterior likelihoods of differential expression (or
7369 more complex hypotheses) via empirical Bayesian methods.")
7370 (license license:gpl3)))
7371
7372 (define-public r-chipcomp
7373 (package
7374 (name "r-chipcomp")
7375 (version "1.26.0")
7376 (source
7377 (origin
7378 (method url-fetch)
7379 (uri (bioconductor-uri "ChIPComp" version))
7380 (sha256
7381 (base32
7382 "06q34y59gf1iz0rs7y5x8ndy1wa95j65rfmz37aym5c46ijqsnq0"))))
7383 (properties `((upstream-name . "ChIPComp")))
7384 (build-system r-build-system)
7385 (propagated-inputs
7386 (list r-biocgenerics
7387 r-bsgenome-hsapiens-ucsc-hg19
7388 r-bsgenome-mmusculus-ucsc-mm9
7389 r-genomeinfodb
7390 r-genomicranges
7391 r-iranges
7392 r-limma
7393 r-rsamtools
7394 r-rtracklayer
7395 r-s4vectors))
7396 (home-page "https://bioconductor.org/packages/ChIPComp")
7397 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
7398 (description
7399 "ChIPComp implements a statistical method for quantitative comparison of
7400 multiple ChIP-seq datasets. It detects differentially bound sharp binding
7401 sites across multiple conditions considering matching control in ChIP-seq
7402 datasets.")
7403 ;; Any version of the GPL.
7404 (license license:gpl3+)))
7405
7406 (define-public r-riboprofiling
7407 (package
7408 (name "r-riboprofiling")
7409 (version "1.26.0")
7410 (source
7411 (origin
7412 (method url-fetch)
7413 (uri (bioconductor-uri "RiboProfiling" version))
7414 (sha256
7415 (base32
7416 "08m4rc530bkzcc43iwzg2fw9cjlf4wc2d8akv5vblsb42xdn8sqp"))))
7417 (properties `((upstream-name . "RiboProfiling")))
7418 (build-system r-build-system)
7419 (propagated-inputs
7420 (list r-biocgenerics
7421 r-biostrings
7422 r-data-table
7423 r-genomeinfodb
7424 r-genomicalignments
7425 r-genomicfeatures
7426 r-genomicranges
7427 r-ggbio
7428 r-ggplot2
7429 r-iranges
7430 r-plyr
7431 r-reshape2
7432 r-rsamtools
7433 r-rtracklayer
7434 r-s4vectors
7435 r-sqldf))
7436 (native-inputs
7437 (list r-knitr))
7438 (home-page "https://bioconductor.org/packages/RiboProfiling/")
7439 (synopsis "Ribosome profiling data analysis")
7440 (description "Starting with a BAM file, this package provides the
7441 necessary functions for quality assessment, read start position recalibration,
7442 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
7443 of count data: pairs, log fold-change, codon frequency and coverage
7444 assessment, principal component analysis on codon coverage.")
7445 (license license:gpl3)))
7446
7447 (define-public r-riboseqr
7448 (package
7449 (name "r-riboseqr")
7450 (version "1.30.0")
7451 (source
7452 (origin
7453 (method url-fetch)
7454 (uri (bioconductor-uri "riboSeqR" version))
7455 (sha256
7456 (base32
7457 "1zs3y0icsqrndjp9wwqz3jxysvyc9pch45y49j6g9b5b2l44ma26"))))
7458 (properties `((upstream-name . "riboSeqR")))
7459 (build-system r-build-system)
7460 (propagated-inputs
7461 (list r-abind
7462 r-bayseq
7463 r-genomeinfodb
7464 r-genomicranges
7465 r-iranges
7466 r-rsamtools
7467 r-seqlogo))
7468 (home-page "https://bioconductor.org/packages/riboSeqR/")
7469 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
7470 (description
7471 "This package provides plotting functions, frameshift detection and
7472 parsing of genetic sequencing data from ribosome profiling experiments.")
7473 (license license:gpl3)))
7474
7475 (define-public r-interactionset
7476 (package
7477 (name "r-interactionset")
7478 (version "1.24.0")
7479 (source
7480 (origin
7481 (method url-fetch)
7482 (uri (bioconductor-uri "InteractionSet" version))
7483 (sha256
7484 (base32
7485 "0qjimx25jvm8siq8hmlbf2z6mknzpbq945p06fsj826k57bpcsm5"))))
7486 (properties
7487 `((upstream-name . "InteractionSet")))
7488 (build-system r-build-system)
7489 (propagated-inputs
7490 (list r-biocgenerics
7491 r-genomeinfodb
7492 r-genomicranges
7493 r-iranges
7494 r-matrix
7495 r-rcpp
7496 r-s4vectors
7497 r-summarizedexperiment))
7498 (native-inputs
7499 (list r-knitr))
7500 (home-page "https://bioconductor.org/packages/InteractionSet")
7501 (synopsis "Base classes for storing genomic interaction data")
7502 (description
7503 "This package provides the @code{GInteractions},
7504 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
7505 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
7506 experiments.")
7507 (license license:gpl3)))
7508
7509 (define-public r-genomicinteractions
7510 (package
7511 (name "r-genomicinteractions")
7512 (version "1.30.0")
7513 (source
7514 (origin
7515 (method url-fetch)
7516 (uri (bioconductor-uri "GenomicInteractions" version))
7517 (sha256
7518 (base32
7519 "0aph1hja5vfprxs3jl4zd1inhvih6m3v1p3jkm6w7xpj3jzvmgbx"))))
7520 (properties
7521 `((upstream-name . "GenomicInteractions")))
7522 (build-system r-build-system)
7523 (propagated-inputs
7524 (list r-biobase
7525 r-biocgenerics
7526 r-data-table
7527 r-dplyr
7528 r-genomeinfodb
7529 r-genomicranges
7530 r-ggplot2
7531 r-gridextra
7532 r-gviz
7533 r-igraph
7534 r-interactionset
7535 r-iranges
7536 r-rsamtools
7537 r-rtracklayer
7538 r-s4vectors
7539 r-stringr))
7540 (native-inputs
7541 (list r-knitr))
7542 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
7543 (synopsis "R package for handling genomic interaction data")
7544 (description
7545 "This R package provides tools for handling genomic interaction data,
7546 such as ChIA-PET/Hi-C, annotating genomic features with interaction
7547 information and producing various plots and statistics.")
7548 (license license:gpl3)))
7549
7550 (define-public r-ctc
7551 (package
7552 (name "r-ctc")
7553 (version "1.70.0")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (bioconductor-uri "ctc" version))
7558 (sha256
7559 (base32
7560 "0c9pgp25dqx12fmi4cqm7xyxjmy6g7wv9vbljgdjghaij2lrc4pb"))))
7561 (build-system r-build-system)
7562 (propagated-inputs (list r-amap))
7563 (home-page "https://bioconductor.org/packages/ctc/")
7564 (synopsis "Cluster and tree conversion")
7565 (description
7566 "This package provides tools for exporting and importing classification
7567 trees and clusters to other programs.")
7568 (license license:gpl2)))
7569
7570 (define-public r-goseq
7571 (package
7572 (name "r-goseq")
7573 (version "1.48.0")
7574 (source
7575 (origin
7576 (method url-fetch)
7577 (uri (bioconductor-uri "goseq" version))
7578 (sha256
7579 (base32
7580 "1w0rwzhqkvp2x7y5v0qcyjbss0p95gb1jrnx5sdkqginbvrmrd48"))))
7581 (build-system r-build-system)
7582 (propagated-inputs
7583 (list r-annotationdbi
7584 r-biasedurn
7585 r-biocgenerics
7586 r-genelendatabase
7587 r-go-db
7588 r-mgcv))
7589 (home-page "https://bioconductor.org/packages/goseq/")
7590 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
7591 (description
7592 "This package provides tools to detect Gene Ontology and/or other user
7593 defined categories which are over/under represented in RNA-seq data.")
7594 (license license:lgpl2.0+)))
7595
7596 (define-public r-glimma
7597 (package
7598 (name "r-glimma")
7599 (version "2.6.0")
7600 (source
7601 (origin
7602 (method url-fetch)
7603 (uri (bioconductor-uri "Glimma" version))
7604 (sha256
7605 (base32
7606 "1k17ay09vhb2hakg1vrgvpp1zliavlj7cdkxaal162bc3v8pyvyz"))))
7607 (properties `((upstream-name . "Glimma")))
7608 (build-system r-build-system)
7609 (propagated-inputs
7610 (list r-deseq2
7611 r-edger
7612 r-htmlwidgets
7613 r-jsonlite
7614 r-limma
7615 r-s4vectors
7616 r-summarizedexperiment))
7617 (native-inputs
7618 (list r-knitr))
7619 (home-page "https://github.com/Shians/Glimma")
7620 (synopsis "Interactive HTML graphics")
7621 (description
7622 "This package generates interactive visualisations for analysis of
7623 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
7624 HTML page. The interactions are built on top of the popular static
7625 representations of analysis results in order to provide additional
7626 information.")
7627 (license license:lgpl3)))
7628
7629 (define-public r-rots
7630 (package
7631 (name "r-rots")
7632 (version "1.24.0")
7633 (source
7634 (origin
7635 (method url-fetch)
7636 (uri (bioconductor-uri "ROTS" version))
7637 (sha256
7638 (base32
7639 "021a578p8kcl5yd9myiy0h2qp10r30ggnip2kp6xs7dx8nzic96r"))))
7640 (properties `((upstream-name . "ROTS")))
7641 (build-system r-build-system)
7642 (propagated-inputs
7643 (list r-biobase r-rcpp))
7644 (home-page "https://bioconductor.org/packages/ROTS/")
7645 (synopsis "Reproducibility-Optimized Test Statistic")
7646 (description
7647 "This package provides tools for calculating the
7648 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
7649 in omics data.")
7650 (license license:gpl2+)))
7651
7652 (define-public r-plgem
7653 (package
7654 (name "r-plgem")
7655 (version "1.68.0")
7656 (source
7657 (origin
7658 (method url-fetch)
7659 (uri (bioconductor-uri "plgem" version))
7660 (sha256
7661 (base32
7662 "07zxflxcay17hxjw3wh5kfdwl2x8537csb18p1qzmyrkvscnja77"))))
7663 (build-system r-build-system)
7664 (propagated-inputs
7665 (list r-biobase r-mass))
7666 (home-page "http://www.genopolis.it")
7667 (synopsis "Detect differential expression in microarray and proteomics datasets")
7668 (description
7669 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
7670 model the variance-versus-mean dependence that exists in a variety of
7671 genome-wide datasets, including microarray and proteomics data. The use of
7672 PLGEM has been shown to improve the detection of differentially expressed
7673 genes or proteins in these datasets.")
7674 (license license:gpl2)))
7675
7676 (define-public r-inspect
7677 (package
7678 (name "r-inspect")
7679 (version "1.26.0")
7680 (source
7681 (origin
7682 (method url-fetch)
7683 (uri (bioconductor-uri "INSPEcT" version))
7684 (sha256
7685 (base32
7686 "0jx887vhxwd8zlqajr9czvn9nx88ryyxlnl58hxrlajjpcjkz9ax"))))
7687 (properties `((upstream-name . "INSPEcT")))
7688 (build-system r-build-system)
7689 (propagated-inputs
7690 (list r-biobase
7691 r-biocgenerics
7692 r-biocparallel
7693 r-deseq2
7694 r-desolve
7695 r-gdata
7696 r-genomeinfodb
7697 r-genomicalignments
7698 r-genomicfeatures
7699 r-genomicranges
7700 r-iranges
7701 r-kernsmooth
7702 r-plgem
7703 r-proc
7704 r-rootsolve
7705 r-rsamtools
7706 r-rtracklayer
7707 r-s4vectors
7708 r-shiny
7709 r-summarizedexperiment
7710 r-txdb-mmusculus-ucsc-mm9-knowngene))
7711 (native-inputs
7712 (list r-knitr))
7713 (home-page "https://bioconductor.org/packages/INSPEcT")
7714 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
7715 (description
7716 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
7717 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
7718 order to evaluate synthesis, processing and degradation rates and assess via
7719 modeling the rates that determines changes in mature mRNA levels.")
7720 (license license:gpl2)))
7721
7722 (define-public r-dnabarcodes
7723 (package
7724 (name "r-dnabarcodes")
7725 (version "1.26.0")
7726 (source
7727 (origin
7728 (method url-fetch)
7729 (uri (bioconductor-uri "DNABarcodes" version))
7730 (sha256
7731 (base32
7732 "0n2qlvpcjhrxr3br27gz9vhwcpf7sn6g4xdjazvvi3gqcgk90xc6"))))
7733 (properties `((upstream-name . "DNABarcodes")))
7734 (build-system r-build-system)
7735 (propagated-inputs
7736 (list r-bh r-matrix r-rcpp))
7737 (native-inputs
7738 (list r-knitr))
7739 (home-page "https://bioconductor.org/packages/DNABarcodes")
7740 (synopsis "Create and analyze DNA barcodes")
7741 (description
7742 "This package offers tools to create DNA barcode sets capable of
7743 correcting insertion, deletion, and substitution errors. Existing barcodes
7744 can be analyzed regarding their minimal, maximal and average distances between
7745 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
7746 demultiplexed, i.e. assigned to their original reference barcode.")
7747 (license license:gpl2)))
7748
7749 (define-public r-ruvseq
7750 (package
7751 (name "r-ruvseq")
7752 (version "1.30.0")
7753 (source
7754 (origin
7755 (method url-fetch)
7756 (uri (bioconductor-uri "RUVSeq" version))
7757 (sha256
7758 (base32
7759 "001h07b074hvj16bjdp9llb9psphw7r6kpwhq61bj4519y6lpg7x"))))
7760 (properties `((upstream-name . "RUVSeq")))
7761 (build-system r-build-system)
7762 (propagated-inputs
7763 (list r-biobase r-edaseq r-edger r-mass))
7764 (native-inputs
7765 (list r-knitr))
7766 (home-page "https://github.com/drisso/RUVSeq")
7767 (synopsis "Remove unwanted variation from RNA-Seq data")
7768 (description
7769 "This package implements methods to @dfn{remove unwanted variation} (RUV)
7770 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
7771 samples.")
7772 (license license:artistic2.0)))
7773
7774 (define-public r-biocneighbors
7775 (package
7776 (name "r-biocneighbors")
7777 (version "1.14.0")
7778 (source
7779 (origin
7780 (method url-fetch)
7781 (uri (bioconductor-uri "BiocNeighbors" version))
7782 (sha256
7783 (base32
7784 "1a43hzmcpxviqa9723hkafr6gm358amfpqj9d56imclkkfkdz95x"))))
7785 (properties `((upstream-name . "BiocNeighbors")))
7786 (build-system r-build-system)
7787 (propagated-inputs
7788 (list r-biocparallel r-matrix r-rcpp r-rcpphnsw r-s4vectors))
7789 (native-inputs
7790 (list r-knitr))
7791 (home-page "https://bioconductor.org/packages/BiocNeighbors")
7792 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
7793 (description
7794 "This package implements exact and approximate methods for nearest
7795 neighbor detection, in a framework that allows them to be easily switched
7796 within Bioconductor packages or workflows. The exact algorithm is implemented
7797 using pre-clustering with the k-means algorithm. Functions are also provided
7798 to search for all neighbors within a given distance. Parallelization is
7799 achieved for all methods using the BiocParallel framework.")
7800 (license license:gpl3)))
7801
7802 (define-public r-scaledmatrix
7803 (package
7804 (name "r-scaledmatrix")
7805 (version "1.4.1")
7806 (source
7807 (origin
7808 (method url-fetch)
7809 (uri (bioconductor-uri "ScaledMatrix" version))
7810 (sha256
7811 (base32
7812 "05gxr41nb1jqhv357rfha4062kszvrmkr36mhkjsf7kgnzf0p8hz"))))
7813 (properties `((upstream-name . "ScaledMatrix")))
7814 (build-system r-build-system)
7815 (propagated-inputs
7816 (list r-delayedarray r-matrix r-s4vectors))
7817 (native-inputs (list r-knitr))
7818 (home-page "https://github.com/LTLA/ScaledMatrix")
7819 (synopsis "Create a DelayedMatrix of scaled and centered values")
7820 (description
7821 "This package provides delayed computation of a matrix of scaled and
7822 centered values. The result is equivalent to using the @code{scale} function
7823 but avoids explicit realization of a dense matrix during block processing.
7824 This permits greater efficiency in common operations, most notably matrix
7825 multiplication.")
7826 (license license:gpl3)))
7827
7828 (define-public r-treeio
7829 (package
7830 (name "r-treeio")
7831 (version "1.20.2")
7832 (source
7833 (origin
7834 (method url-fetch)
7835 (uri (bioconductor-uri "treeio" version))
7836 (sha256
7837 (base32
7838 "1jymbyl82n88ckw0nkbj72rvlxbk5m7xmcmq3fyi885z7aasc0x1"))))
7839 (properties `((upstream-name . "treeio")))
7840 (build-system r-build-system)
7841 (propagated-inputs
7842 (list r-ape
7843 r-dplyr
7844 r-jsonlite
7845 r-magrittr
7846 r-rlang
7847 r-tibble
7848 r-tidytree))
7849 (native-inputs (list r-knitr))
7850 (home-page "https://github.com/YuLab-SMU/treeio")
7851 (synopsis "Base classes and functions for Phylogenetic tree input and output")
7852 (description
7853 "This is an R package to make it easier to import and store phylogenetic
7854 trees with associated data; and to link external data from different sources
7855 to phylogeny. It also supports exporting phylogenetic trees with
7856 heterogeneous associated data to a single tree file and can be served as a
7857 platform for merging tree with associated data and converting file formats.")
7858 (license license:artistic2.0)))
7859
7860 (define-public r-ggtree
7861 (package
7862 (name "r-ggtree")
7863 (version "3.4.4")
7864 (source
7865 (origin
7866 (method url-fetch)
7867 (uri (bioconductor-uri "ggtree" version))
7868 (sha256
7869 (base32
7870 "0h1qlhn4rj7jgd9vrja7lykaglyfvnzwkghvsqj1mvp4niwli7y5"))))
7871 (properties `((upstream-name . "ggtree")))
7872 (build-system r-build-system)
7873 (propagated-inputs
7874 (list r-ape
7875 r-aplot
7876 r-dplyr
7877 r-ggfun
7878 r-ggplot2
7879 r-magrittr
7880 r-purrr
7881 r-rlang
7882 r-scales
7883 r-tidyr
7884 r-tidytree
7885 r-treeio
7886 r-yulab-utils))
7887 (native-inputs (list r-knitr))
7888 (home-page "https://yulab-smu.top/treedata-book/")
7889 (synopsis "R package for visualization of trees and annotation data")
7890 (description
7891 "This package extends the ggplot2 plotting system which implements a
7892 grammar of graphics. ggtree is designed for visualization and annotation of
7893 phylogenetic trees and other tree-like structures with their annotation
7894 data.")
7895 (license license:artistic2.0)))
7896
7897 (define-public r-metapod
7898 (package
7899 (name "r-metapod")
7900 (version "1.4.0")
7901 (source
7902 (origin
7903 (method url-fetch)
7904 (uri (bioconductor-uri "metapod" version))
7905 (sha256
7906 (base32
7907 "19g9c08alg4qqr710si465wlb5dy759m5d8wn91zwj24077dds7b"))))
7908 (properties `((upstream-name . "metapod")))
7909 (build-system r-build-system)
7910 (propagated-inputs
7911 (list r-rcpp))
7912 (native-inputs
7913 (list r-knitr))
7914 (home-page "https://bioconductor.org/packages/metapod")
7915 (synopsis "Meta-analyses on p-values of differential analyses")
7916 (description
7917 "This package implements a variety of methods for combining p-values in
7918 differential analyses of genome-scale datasets. Functions can combine
7919 p-values across different tests in the same analysis (e.g., genomic windows in
7920 ChIP-seq, exons in RNA-seq) or for corresponding tests across separate
7921 analyses (e.g., replicated comparisons, effect of different treatment
7922 conditions). Support is provided for handling log-transformed input p-values,
7923 missing values and weighting where appropriate.")
7924 (license license:gpl3)))
7925
7926 (define-public r-biocsingular
7927 (package
7928 (name "r-biocsingular")
7929 (version "1.12.0")
7930 (source
7931 (origin
7932 (method url-fetch)
7933 (uri (bioconductor-uri "BiocSingular" version))
7934 (sha256
7935 (base32
7936 "1sraycnn0jahpi8kni1y8ik00ga89fvwqjmbr8388968q22mvm3x"))))
7937 (properties `((upstream-name . "BiocSingular")))
7938 (build-system r-build-system)
7939 (propagated-inputs
7940 (list r-beachmat
7941 r-biocgenerics
7942 r-biocparallel
7943 r-delayedarray
7944 r-irlba
7945 r-matrix
7946 r-rcpp
7947 r-rsvd
7948 r-s4vectors
7949 r-scaledmatrix))
7950 (native-inputs
7951 (list r-knitr))
7952 (home-page "https://github.com/LTLA/BiocSingular")
7953 (synopsis "Singular value decomposition for Bioconductor packages")
7954 (description
7955 "This package implements exact and approximate methods for singular value
7956 decomposition and principal components analysis, in a framework that allows
7957 them to be easily switched within Bioconductor packages or workflows. Where
7958 possible, parallelization is achieved using the BiocParallel framework.")
7959 (license license:gpl3)))
7960
7961 (define-public r-destiny
7962 (package
7963 (name "r-destiny")
7964 (version "3.10.0")
7965 (source
7966 (origin
7967 (method url-fetch)
7968 (uri (bioconductor-uri "destiny" version))
7969 (sha256
7970 (base32
7971 "1c85ky5ggdsi0ab1l4ipl85gc1kj1zv3wp08qrvslax3z0yw0ljy"))))
7972 (build-system r-build-system)
7973 (propagated-inputs
7974 (list r-biobase
7975 r-biocgenerics
7976 r-ggplot-multistats
7977 r-ggplot2
7978 r-ggthemes
7979 r-irlba
7980 r-knn-covertree
7981 r-matrix
7982 r-pcamethods
7983 r-proxy
7984 r-rcpp
7985 r-rcppeigen
7986 r-rcpphnsw
7987 r-rspectra
7988 r-scales
7989 r-scatterplot3d
7990 r-singlecellexperiment
7991 r-smoother
7992 r-summarizedexperiment
7993 r-tidyr
7994 r-tidyselect
7995 r-vim))
7996 (native-inputs
7997 (list r-knitr r-nbconvertr)) ; for vignettes
7998 (home-page "https://bioconductor.org/packages/destiny/")
7999 (synopsis "Create and plot diffusion maps")
8000 (description "This package provides tools to create and plot diffusion
8001 maps.")
8002 ;; Any version of the GPL
8003 (license license:gpl3+)))
8004
8005 (define-public r-savr
8006 (package
8007 (name "r-savr")
8008 (version "1.34.0")
8009 (source
8010 (origin
8011 (method url-fetch)
8012 (uri (bioconductor-uri "savR" version))
8013 (sha256
8014 (base32
8015 "04zlf3lyr6vnpj80m6fd2is2f7302sxwih8nzzjnc4ss972jid2k"))))
8016 (properties `((upstream-name . "savR")))
8017 (build-system r-build-system)
8018 (propagated-inputs
8019 (list r-ggplot2 r-gridextra r-reshape2 r-scales r-xml))
8020 (home-page "https://github.com/bcalder/savR")
8021 (synopsis "Parse and analyze Illumina SAV files")
8022 (description
8023 "This package provides tools to parse Illumina Sequence Analysis
8024 Viewer (SAV) files, access data, and generate QC plots.")
8025 (license license:agpl3+)))
8026
8027 (define-public r-chipexoqual
8028 (package
8029 (name "r-chipexoqual")
8030 (version "1.20.0")
8031 (source
8032 (origin
8033 (method url-fetch)
8034 (uri (bioconductor-uri "ChIPexoQual" version))
8035 (sha256
8036 (base32
8037 "1r4s8awvwwj1g33jpnzfxji23mfy0chkhi14i0ml5sh090xijpaz"))))
8038 (properties `((upstream-name . "ChIPexoQual")))
8039 (build-system r-build-system)
8040 (propagated-inputs
8041 (list r-biocparallel
8042 r-biovizbase
8043 r-broom
8044 r-data-table
8045 r-dplyr
8046 r-genomeinfodb
8047 r-genomicalignments
8048 r-genomicranges
8049 r-ggplot2
8050 r-hexbin
8051 r-iranges
8052 r-rcolorbrewer
8053 r-rmarkdown
8054 r-rsamtools
8055 r-s4vectors
8056 r-scales
8057 r-viridis))
8058 (native-inputs
8059 (list r-knitr))
8060 (home-page "https://github.com/keleslab/ChIPexoQual")
8061 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
8062 (description
8063 "This package provides a quality control pipeline for ChIP-exo/nexus
8064 sequencing data.")
8065 (license license:gpl2+)))
8066
8067 (define-public r-copynumber
8068 (package
8069 (name "r-copynumber")
8070 (version "1.36.0")
8071 (source (origin
8072 (method url-fetch)
8073 (uri (bioconductor-uri "copynumber" version))
8074 (sha256
8075 (base32
8076 "1gr8q9ri49x8qlmbsi6k6wcak1w9v48wr1qy7axc86brzx6z6mhd"))))
8077 (build-system r-build-system)
8078 (propagated-inputs
8079 (list r-s4vectors r-iranges r-genomicranges r-biocgenerics))
8080 (home-page "https://bioconductor.org/packages/copynumber")
8081 (synopsis "Segmentation of single- and multi-track copy number data")
8082 (description
8083 "This package segments single- and multi-track copy number data by a
8084 penalized least squares regression method.")
8085 (license license:artistic2.0)))
8086
8087 (define-public r-dnacopy
8088 (package
8089 (name "r-dnacopy")
8090 (version "1.70.0")
8091 (source
8092 (origin
8093 (method url-fetch)
8094 (uri (bioconductor-uri "DNAcopy" version))
8095 (sha256
8096 (base32
8097 "10bh4p8nbl84rfngsm3bi9w542m159kff95f8c2hvjcxv5yw7iwc"))))
8098 (properties `((upstream-name . "DNAcopy")))
8099 (build-system r-build-system)
8100 (native-inputs (list gfortran))
8101 (home-page "https://bioconductor.org/packages/DNAcopy")
8102 (synopsis "DNA copy number data analysis")
8103 (description
8104 "This package implements the @dfn{circular binary segmentation} (CBS)
8105 algorithm to segment DNA copy number data and identify genomic regions with
8106 abnormal copy number.")
8107 (license license:gpl2+)))
8108
8109 ;; This is a CRAN package, but it uncharacteristically depends on a
8110 ;; Bioconductor package.
8111 (define-public r-htscluster
8112 (package
8113 (name "r-htscluster")
8114 (version "2.0.10")
8115 (source
8116 (origin
8117 (method url-fetch)
8118 (uri (cran-uri "HTSCluster" version))
8119 (sha256
8120 (base32
8121 "0scn4fsfmlkzxibfhsh6krm2cl9c8hsmyjgn48k9dyjf0ylyxg9n"))))
8122 (properties `((upstream-name . "HTSCluster")))
8123 (build-system r-build-system)
8124 (propagated-inputs
8125 (list r-capushe r-edger r-plotrix))
8126 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
8127 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
8128 (description
8129 "This package provides a Poisson mixture model is implemented to cluster
8130 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
8131 estimation is performed using either the EM or CEM algorithm, and the slope
8132 heuristics are used for model selection (i.e., to choose the number of
8133 clusters).")
8134 (license license:gpl3+)))
8135
8136 (define-public r-deds
8137 (package
8138 (name "r-deds")
8139 (version "1.60.0")
8140 (source
8141 (origin
8142 (method url-fetch)
8143 (uri (bioconductor-uri "DEDS" version))
8144 (sha256
8145 (base32
8146 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
8147 (properties `((upstream-name . "DEDS")))
8148 (build-system r-build-system)
8149 (home-page "https://bioconductor.org/packages/DEDS/")
8150 (synopsis "Differential expression via distance summary for microarray data")
8151 (description
8152 "This library contains functions that calculate various statistics of
8153 differential expression for microarray data, including t statistics, fold
8154 change, F statistics, SAM, moderated t and F statistics and B statistics. It
8155 also implements a new methodology called DEDS (Differential Expression via
8156 Distance Summary), which selects differentially expressed genes by integrating
8157 and summarizing a set of statistics using a weighted distance approach.")
8158 ;; Any version of the LGPL.
8159 (license license:lgpl3+)))
8160
8161 ;; This is a CRAN package, but since it depends on a Bioconductor package we
8162 ;; put it here.
8163 (define-public r-nbpseq
8164 (package
8165 (name "r-nbpseq")
8166 (version "0.3.1")
8167 (source
8168 (origin
8169 (method url-fetch)
8170 (uri (cran-uri "NBPSeq" version))
8171 (sha256
8172 (base32
8173 "07mnnk4n0cyksp1mw36y6369is62kxsfg3wb8d3dwswycdmj8m14"))))
8174 (properties `((upstream-name . "NBPSeq")))
8175 (build-system r-build-system)
8176 (propagated-inputs
8177 (list r-qvalue))
8178 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
8179 (synopsis "Negative binomial models for RNA-Seq data")
8180 (description
8181 "This package provides negative binomial models for two-group comparisons
8182 and regression inferences from RNA-sequencing data.")
8183 (license license:gpl2)))
8184
8185 (define-public r-ebseq
8186 (package
8187 (name "r-ebseq")
8188 (version "1.36.0")
8189 (source
8190 (origin
8191 (method url-fetch)
8192 (uri (bioconductor-uri "EBSeq" version))
8193 (sha256
8194 (base32
8195 "192xl9fwsh04w563yk33mfl303d1kqby2ssbqkckqsdr4jb7d57y"))))
8196 (properties `((upstream-name . "EBSeq")))
8197 (build-system r-build-system)
8198 (propagated-inputs
8199 (list r-blockmodeling r-gplots r-testthat))
8200 (home-page "https://bioconductor.org/packages/EBSeq")
8201 (synopsis "Differential expression analysis of RNA-seq data")
8202 (description
8203 "This package provides tools for differential expression analysis at both
8204 gene and isoform level using RNA-seq data")
8205 (license license:artistic2.0)))
8206
8207 (define-public r-karyoploter
8208 (package
8209 (name "r-karyoploter")
8210 (version "1.22.0")
8211 (source (origin
8212 (method url-fetch)
8213 (uri (bioconductor-uri "karyoploteR" version))
8214 (sha256
8215 (base32
8216 "0hawq9wi3ikvlcdgnjfy5fiiwfq22zwx1p8xf5h4bpypp96pknsk"))))
8217 (build-system r-build-system)
8218 (propagated-inputs
8219 (list r-annotationdbi
8220 r-bamsignals
8221 r-bezier
8222 r-biovizbase
8223 r-digest
8224 r-genomeinfodb
8225 r-genomicfeatures
8226 r-genomicranges
8227 r-iranges
8228 r-memoise
8229 r-regioner
8230 r-rsamtools
8231 r-rtracklayer
8232 r-s4vectors
8233 r-variantannotation))
8234 (native-inputs
8235 (list r-knitr))
8236 (home-page "https://bioconductor.org/packages/karyoploteR/")
8237 (synopsis "Plot customizable linear genomes displaying arbitrary data")
8238 (description "This package creates karyotype plots of arbitrary genomes and
8239 offers a complete set of functions to plot arbitrary data on them. It mimics
8240 many R base graphics functions coupling them with a coordinate change function
8241 automatically mapping the chromosome and data coordinates into the plot
8242 coordinates.")
8243 (license license:artistic2.0)))
8244
8245 (define-public r-lpsymphony
8246 (package
8247 (name "r-lpsymphony")
8248 (version "1.24.0")
8249 (source
8250 (origin
8251 (method url-fetch)
8252 (uri (bioconductor-uri "lpsymphony" version))
8253 (sha256
8254 (base32
8255 "0kc708ss5byzw8qh439mb4nq6hsfmz73gfamiznw3lv352brd33g"))))
8256 (build-system r-build-system)
8257 (arguments
8258 (list
8259 #:phases
8260 '(modify-phases %standard-phases
8261 (add-after 'unpack 'make-build-order-reproducible
8262 (lambda _
8263 (substitute* '("src/SYMPHONY/Cgl/configure.ac"
8264 "src/SYMPHONY/Cgl/configure")
8265 (("for file in `ls \\*/Makefile.in`")
8266 "for file in `ls */Makefile.in | sort`")))))))
8267 (inputs
8268 (list zlib))
8269 (native-inputs
8270 (list pkg-config r-knitr))
8271 (home-page "https://r-forge.r-project.org/projects/rsymphony")
8272 (synopsis "Symphony integer linear programming solver in R")
8273 (description
8274 "This package was derived from Rsymphony. The package provides an R
8275 interface to SYMPHONY, a linear programming solver written in C++. The main
8276 difference between this package and Rsymphony is that it includes the solver
8277 source code, while Rsymphony expects to find header and library files on the
8278 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
8279 to install interface to SYMPHONY.")
8280 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
8281 ;; lpsimphony is released under the same terms.
8282 (license license:epl1.0)))
8283
8284 (define-public r-ihw
8285 (package
8286 (name "r-ihw")
8287 (version "1.24.0")
8288 (source
8289 (origin
8290 (method url-fetch)
8291 (uri (bioconductor-uri "IHW" version))
8292 (sha256
8293 (base32
8294 "1gsfy75dz7xh16z844llcmjnp0a0ridszmrbbv2bdaa43na5msmf"))))
8295 (properties `((upstream-name . "IHW")))
8296 (build-system r-build-system)
8297 (propagated-inputs
8298 (list r-biocgenerics r-fdrtool r-lpsymphony r-slam))
8299 (native-inputs
8300 (list r-knitr))
8301 (home-page "https://bioconductor.org/packages/IHW")
8302 (synopsis "Independent hypothesis weighting")
8303 (description
8304 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
8305 procedure that increases power compared to the method of Benjamini and
8306 Hochberg by assigning data-driven weights to each hypothesis. The input to
8307 IHW is a two-column table of p-values and covariates. The covariate can be
8308 any continuous-valued or categorical variable that is thought to be
8309 informative on the statistical properties of each hypothesis test, while it is
8310 independent of the p-value under the null hypothesis.")
8311 (license license:artistic2.0)))
8312
8313 (define-public r-icobra
8314 (package
8315 (name "r-icobra")
8316 (version "1.24.1")
8317 (source
8318 (origin
8319 (method url-fetch)
8320 (uri (bioconductor-uri "iCOBRA" version))
8321 (sha256
8322 (base32
8323 "1gvra5bgsf6lvs4f2md3xx7xxsx4j8079c2nr8vz9lvy2sfyl6s9"))))
8324 (properties `((upstream-name . "iCOBRA")))
8325 (build-system r-build-system)
8326 (propagated-inputs
8327 (list r-dplyr
8328 r-dt
8329 r-ggplot2
8330 r-limma
8331 r-markdown
8332 r-reshape2
8333 r-rocr
8334 r-scales
8335 r-shiny
8336 r-shinybs
8337 r-shinydashboard
8338 r-upsetr))
8339 (native-inputs
8340 (list r-knitr))
8341 (home-page "https://bioconductor.org/packages/iCOBRA")
8342 (synopsis "Comparison and visualization of ranking and assignment methods")
8343 (description
8344 "This package provides functions for calculation and visualization of
8345 performance metrics for evaluation of ranking and binary
8346 classification (assignment) methods. It also contains a Shiny application for
8347 interactive exploration of results.")
8348 (license license:gpl2+)))
8349
8350 (define-public r-residualmatrix
8351 (package
8352 (name "r-residualmatrix")
8353 (version "1.6.1")
8354 (source
8355 (origin
8356 (method url-fetch)
8357 (uri (bioconductor-uri "ResidualMatrix" version))
8358 (sha256
8359 (base32
8360 "1530706c7b53h9m8smgnaj63rgdbm3hd09n7jwy6zc0y6qcffckd"))))
8361 (properties
8362 `((upstream-name . "ResidualMatrix")))
8363 (build-system r-build-system)
8364 (propagated-inputs
8365 (list r-delayedarray r-matrix r-s4vectors))
8366 (native-inputs
8367 (list r-knitr))
8368 (home-page "https://github.com/LTLA/ResidualMatrix")
8369 (synopsis "Create a DelayedMatrix of regression residuals")
8370 (description
8371 "This package implements tools for delayed computation of a matrix of
8372 residuals after fitting a linear model to each column of an input matrix. It
8373 also supports partial computation of residuals where selected factors are to
8374 be preserved in the output matrix. It implements a number of efficient
8375 methods for operating on the delayed matrix of residuals, most notably matrix
8376 multiplication and calculation of row/column sums or means.")
8377 (license license:gpl3)))
8378
8379 (define-public r-batchelor
8380 (package
8381 (name "r-batchelor")
8382 (version "1.12.3")
8383 (source
8384 (origin
8385 (method url-fetch)
8386 (uri (bioconductor-uri "batchelor" version))
8387 (sha256
8388 (base32
8389 "00ix3hvhgalxg63qnynv2waa273jk336lg47k72qwxfzimsxfjxc"))))
8390 (properties `((upstream-name . "batchelor")))
8391 (build-system r-build-system)
8392 (propagated-inputs
8393 (list r-beachmat
8394 r-biocgenerics
8395 r-biocneighbors
8396 r-biocparallel
8397 r-biocsingular
8398 r-delayedarray
8399 r-delayedmatrixstats
8400 r-igraph
8401 r-matrix
8402 r-rcpp
8403 r-residualmatrix
8404 r-s4vectors
8405 r-scaledmatrix
8406 r-scuttle
8407 r-singlecellexperiment
8408 r-summarizedexperiment))
8409 (native-inputs (list r-knitr))
8410 (home-page "https://bioconductor.org/packages/batchelor")
8411 (synopsis "Single-Cell Batch Correction Methods")
8412 (description
8413 "This package implements a variety of methods for batch correction of
8414 single-cell (RNA sequencing) data. This includes methods based on detecting
8415 mutually nearest neighbors, as well as several efficient variants of linear
8416 regression of the log-expression values. Functions are also provided to
8417 perform global rescaling to remove differences in depth between batches, and
8418 to perform a principal components analysis that is robust to differences in
8419 the numbers of cells across batches.")
8420 (license license:gpl3)))
8421
8422 (define-public r-mast
8423 (package
8424 (name "r-mast")
8425 (version "1.22.0")
8426 (source
8427 (origin
8428 (method url-fetch)
8429 (uri (bioconductor-uri "MAST" version))
8430 (sha256
8431 (base32
8432 "1kmrqxcfzzcs8l33n9qn0vahc6wxq6ks3cjx95vg96maf2qzhzzi"))))
8433 (properties `((upstream-name . "MAST")))
8434 (build-system r-build-system)
8435 (propagated-inputs
8436 (list r-abind
8437 r-biobase
8438 r-biocgenerics
8439 r-data-table
8440 r-ggplot2
8441 r-plyr
8442 r-progress
8443 r-reshape2
8444 r-s4vectors
8445 r-singlecellexperiment
8446 r-stringr
8447 r-summarizedexperiment))
8448 (native-inputs
8449 (list r-knitr))
8450 (home-page "https://github.com/RGLab/MAST/")
8451 (synopsis "Model-based analysis of single cell transcriptomics")
8452 (description
8453 "This package provides methods and models for handling zero-inflated
8454 single cell assay data.")
8455 (license license:gpl2+)))
8456
8457 (define-public r-monocle
8458 (package
8459 (name "r-monocle")
8460 (version "2.24.1")
8461 (source
8462 (origin
8463 (method url-fetch)
8464 (uri (bioconductor-uri "monocle" version))
8465 (sha256
8466 (base32
8467 "11g1wx0f1yzhg3x1aa3d5l7pqlzxj16s0gha21skxkgld8k2x8xn"))))
8468 (build-system r-build-system)
8469 (propagated-inputs
8470 (list r-biobase
8471 r-biocgenerics
8472 r-biocviews
8473 r-cluster
8474 r-combinat
8475 r-ddrtree
8476 r-dplyr
8477 r-fastica
8478 r-ggplot2
8479 r-hsmmsinglecell
8480 r-igraph
8481 r-irlba
8482 r-leidenbase
8483 r-limma
8484 r-mass
8485 r-matrix
8486 r-matrixstats
8487 r-pheatmap
8488 r-plyr
8489 r-proxy
8490 r-qlcmatrix
8491 r-rann
8492 r-rcpp
8493 r-reshape2
8494 r-rtsne
8495 r-slam
8496 r-stringr
8497 r-tibble
8498 r-vgam
8499 r-viridis))
8500 (native-inputs
8501 (list r-knitr))
8502 (home-page "https://bioconductor.org/packages/monocle")
8503 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
8504 (description
8505 "Monocle performs differential expression and time-series analysis for
8506 single-cell expression experiments. It orders individual cells according to
8507 progress through a biological process, without knowing ahead of time which
8508 genes define progress through that process. Monocle also performs
8509 differential expression analysis, clustering, visualization, and other useful
8510 tasks on single cell expression data. It is designed to work with RNA-Seq and
8511 qPCR data, but could be used with other types as well.")
8512 (license license:artistic2.0)))
8513
8514 (define-public r-leidenbase
8515 (let ((commit "a11b8455fa3307d9e3ac4e3a5accddf3c83b9a96")
8516 (revision "1"))
8517 (package
8518 (name "r-leidenbase")
8519 (version (git-version "0.1.9" revision commit))
8520 (source
8521 (origin
8522 (method git-fetch)
8523 (uri (git-reference
8524 (url "https://github.com/cole-trapnell-lab/leidenbase")
8525 (commit commit)))
8526 (file-name (git-file-name name version))
8527 (sha256
8528 (base32
8529 "1f54mycsffvzmblz5pzgs3v4jygnbvz0c9d3x710gw5mxkq2p84f"))))
8530 (properties `((upstream-name . "leidenbase")))
8531 (build-system r-build-system)
8532 (inputs
8533 (list zlib))
8534 (native-inputs
8535 (list gfortran))
8536 (propagated-inputs
8537 (list r-igraph))
8538 (home-page "https://github.com/cole-trapnell-lab/leidenbase")
8539 (synopsis "R and C wrappers to run the Leiden find_partition function")
8540 (description
8541 "This package provides an R to C interface that runs the Leiden
8542 community detection algorithm to find a basic partition. It runs the
8543 equivalent of the @code{find_partition} function. This package includes the
8544 required source code files from the official Leidenalg distribution and
8545 several functions from the R igraph package.")
8546 (license license:gpl3+))))
8547
8548 (define-public r-sanssouci
8549 ;; sansscouci doesn't have a (versioned) release yet.
8550 ;; This is the latest commit as of packaging for Guix.
8551 (let ((commit "5fe20a9aaf4ac637fa83d9cc73ff1c22de97ca6f")
8552 (revision "1"))
8553 (package
8554 (name "r-sanssouci")
8555 (version (git-version "0" revision commit))
8556 (source (origin
8557 (method git-fetch)
8558 (uri (git-reference
8559 (url "https://github.com/pneuvial/sanssouci.git")
8560 (commit commit)))
8561 (file-name (git-file-name name version))
8562 (sha256
8563 (base32
8564 "13ycdd790qw64qy2zdvcrpj3fc8as628rsly32438d3rifnlc5sk"))))
8565 (build-system r-build-system)
8566 (propagated-inputs
8567 (list r-generics r-matrix r-matrixstats r-rcpp r-rcpparmadillo))
8568 (home-page "https://pneuvial.github.io/sanssouci")
8569 (synopsis "Post Hoc multiple testing inference")
8570 (description
8571 "The goal of sansSouci is to perform post hoc inference: in a multiple
8572 testing context, sansSouci provides statistical guarantees on possibly
8573 user-defined and/or data-driven sets of hypotheses.")
8574 (license license:gpl3))))
8575
8576 (define-public r-monocle3
8577 (package
8578 (name "r-monocle3")
8579 (version "1.0.0")
8580 (source
8581 (origin
8582 (method git-fetch)
8583 (uri (git-reference
8584 (url "https://github.com/cole-trapnell-lab/monocle3")
8585 (commit version)))
8586 (file-name (git-file-name name version))
8587 (sha256
8588 (base32
8589 "16vpvlbms8fdvpfwzcig0rkg2mxnsq1h80d2l7q3953wm91qc9x4"))))
8590 (build-system r-build-system)
8591 (propagated-inputs
8592 (list r-assertthat
8593 r-batchelor
8594 r-biobase
8595 r-biocgenerics
8596 r-delayedmatrixstats
8597 r-dplyr
8598 r-ggplot2
8599 r-ggrepel
8600 r-grr
8601 r-htmlwidgets
8602 r-igraph
8603 r-irlba
8604 r-leidenbase
8605 r-limma
8606 r-lmtest
8607 r-mass
8608 r-matrix
8609 r-matrix-utils
8610 r-pbapply
8611 r-pbmcapply
8612 r-pheatmap
8613 r-plotly
8614 r-pryr
8615 r-proxy
8616 r-pscl
8617 r-purrr
8618 r-rann
8619 r-rcpp
8620 r-rcppparallel
8621 r-reshape2
8622 r-reticulate
8623 r-rhpcblasctl
8624 r-rsample
8625 r-rtsne
8626 r-shiny
8627 r-slam
8628 r-spdep
8629 r-speedglm
8630 r-stringr
8631 r-singlecellexperiment
8632 r-tibble
8633 r-tidyr
8634 r-uwot
8635 r-viridis))
8636 (home-page "https://github.com/cole-trapnell-lab/monocle3")
8637 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
8638 (description
8639 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
8640 (license license:expat)))
8641
8642 (define-public r-noiseq
8643 (package
8644 (name "r-noiseq")
8645 (version "2.40.0")
8646 (source
8647 (origin
8648 (method url-fetch)
8649 (uri (bioconductor-uri "NOISeq" version))
8650 (sha256
8651 (base32
8652 "0ah6adlhv4254jkssinn2ik8n811hd1nw85bnzqk2kwhl49nrk27"))))
8653 (properties `((upstream-name . "NOISeq")))
8654 (build-system r-build-system)
8655 (propagated-inputs
8656 (list r-biobase r-matrix))
8657 (home-page "https://bioconductor.org/packages/NOISeq")
8658 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
8659 (description
8660 "This package provides tools to support the analysis of RNA-seq
8661 expression data or other similar kind of data. It provides exploratory plots
8662 to evaluate saturation, count distribution, expression per chromosome, type of
8663 detected features, features length, etc. It also supports the analysis of
8664 differential expression between two experimental conditions with no parametric
8665 assumptions.")
8666 (license license:artistic2.0)))
8667
8668 (define-public r-scdd
8669 (package
8670 (name "r-scdd")
8671 (version "1.20.0")
8672 (source
8673 (origin
8674 (method url-fetch)
8675 (uri (bioconductor-uri "scDD" version))
8676 (sha256
8677 (base32
8678 "0bjww338z5qf2g97kbh85h9kpagjr59ff9f4alm33h16xz5mb7k0"))))
8679 (properties `((upstream-name . "scDD")))
8680 (build-system r-build-system)
8681 (propagated-inputs
8682 (list r-arm
8683 r-biocparallel
8684 r-ebseq
8685 r-fields
8686 r-ggplot2
8687 r-mclust
8688 r-outliers
8689 r-s4vectors
8690 r-scran
8691 r-singlecellexperiment
8692 r-summarizedexperiment))
8693 (native-inputs
8694 (list r-knitr))
8695 (home-page "https://github.com/kdkorthauer/scDD")
8696 (synopsis "Mixture modeling of single-cell RNA-seq data")
8697 (description
8698 "This package implements a method to analyze single-cell RNA-seq data
8699 utilizing flexible Dirichlet Process mixture models. Genes with differential
8700 distributions of expression are classified into several interesting patterns
8701 of differences between two conditions. The package also includes functions
8702 for simulating data with these patterns from negative binomial
8703 distributions.")
8704 (license license:gpl2)))
8705
8706 (define-public r-scone
8707 (package
8708 (name "r-scone")
8709 (version "1.20.0")
8710 (source
8711 (origin
8712 (method url-fetch)
8713 (uri (bioconductor-uri "scone" version))
8714 (sha256
8715 (base32
8716 "05id34n6min03ha1chg5mrvx399qm2mby9kxkaz5w8fbidp97851"))))
8717 (build-system r-build-system)
8718 (propagated-inputs
8719 (list r-aroma-light
8720 r-biocparallel
8721 r-boot
8722 r-class
8723 r-cluster
8724 r-compositions
8725 r-diptest
8726 r-edger
8727 r-fpc
8728 r-gplots
8729 r-hexbin
8730 r-limma
8731 r-matrixgenerics
8732 r-matrixstats
8733 r-mixtools
8734 r-rarpack
8735 r-rcolorbrewer
8736 r-rhdf5
8737 r-ruvseq
8738 r-singlecellexperiment
8739 r-summarizedexperiment))
8740 (native-inputs
8741 (list r-knitr))
8742 (home-page "https://bioconductor.org/packages/scone")
8743 (synopsis "Single cell overview of normalized expression data")
8744 (description
8745 "SCONE is an R package for comparing and ranking the performance of
8746 different normalization schemes for single-cell RNA-seq and other
8747 high-throughput analyses.")
8748 (license license:artistic2.0)))
8749
8750 (define-public r-geoquery
8751 (package
8752 (name "r-geoquery")
8753 (version "2.64.2")
8754 (source
8755 (origin
8756 (method url-fetch)
8757 (uri (bioconductor-uri "GEOquery" version))
8758 (sha256
8759 (base32
8760 "1cvkvq2haz831qi8w0gd3ayvxfxsl0z5klhki4gkfi9xqdv1gi9x"))))
8761 (properties `((upstream-name . "GEOquery")))
8762 (build-system r-build-system)
8763 (propagated-inputs
8764 (list r-biobase
8765 r-curl
8766 r-data-table
8767 r-dplyr
8768 r-limma
8769 r-magrittr
8770 r-r-utils
8771 r-readr
8772 r-tidyr
8773 r-xml2))
8774 (native-inputs
8775 (list r-knitr))
8776 (home-page "https://github.com/seandavi/GEOquery/")
8777 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
8778 (description
8779 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
8780 microarray data. Given the rich and varied nature of this resource, it is
8781 only natural to want to apply BioConductor tools to these data. GEOquery is
8782 the bridge between GEO and BioConductor.")
8783 (license license:gpl2)))
8784
8785 (define-public r-illuminaio
8786 (package
8787 (name "r-illuminaio")
8788 (version "0.38.0")
8789 (source
8790 (origin
8791 (method url-fetch)
8792 (uri (bioconductor-uri "illuminaio" version))
8793 (sha256
8794 (base32
8795 "1xk057a9w4ps8xi8jyw8imkjcicfmzns8g92grn4af7yiip68h62"))))
8796 (build-system r-build-system)
8797 (propagated-inputs
8798 (list r-base64))
8799 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
8800 (synopsis "Parse Illumina microarray output files")
8801 (description
8802 "This package provides tools for parsing Illumina's microarray output
8803 files, including IDAT.")
8804 (license license:gpl2)))
8805
8806 (define-public r-siggenes
8807 (package
8808 (name "r-siggenes")
8809 (version "1.70.0")
8810 (source
8811 (origin
8812 (method url-fetch)
8813 (uri (bioconductor-uri "siggenes" version))
8814 (sha256
8815 (base32
8816 "0amjqm2c8p1vjzx109p7n81wbsbx8rljwn6mbkl7dpi834im9d7l"))))
8817 (build-system r-build-system)
8818 (propagated-inputs
8819 (list r-biobase r-multtest r-scrime))
8820 (home-page "https://bioconductor.org/packages/siggenes/")
8821 (synopsis
8822 "Multiple testing using SAM and Efron's empirical Bayes approaches")
8823 (description
8824 "This package provides tools for the identification of differentially
8825 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
8826 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
8827 Bayes Analyses of Microarrays} (EBAM).")
8828 (license license:lgpl2.0+)))
8829
8830 (define-public r-bumphunter
8831 (package
8832 (name "r-bumphunter")
8833 (version "1.38.0")
8834 (source
8835 (origin
8836 (method url-fetch)
8837 (uri (bioconductor-uri "bumphunter" version))
8838 (sha256
8839 (base32
8840 "0k92ps9chqsimbc7vsr8swg679zfv8nfn5zahbqq4nknhhy7hwxw"))))
8841 (build-system r-build-system)
8842 (propagated-inputs
8843 (list r-annotationdbi
8844 r-biocgenerics
8845 r-dorng
8846 r-foreach
8847 r-genomeinfodb
8848 r-genomicfeatures
8849 r-genomicranges
8850 r-iranges
8851 r-iterators
8852 r-limma
8853 r-locfit
8854 r-matrixstats
8855 r-s4vectors))
8856 (home-page "https://github.com/ririzarr/bumphunter")
8857 (synopsis "Find bumps in genomic data")
8858 (description
8859 "This package provides tools for finding bumps in genomic data in order
8860 to identify differentially methylated regions in epigenetic epidemiology
8861 studies.")
8862 (license license:artistic2.0)))
8863
8864 (define-public r-milor
8865 (package
8866 (name "r-milor")
8867 (version "1.4.0")
8868 (source (origin
8869 (method url-fetch)
8870 (uri (bioconductor-uri "miloR" version))
8871 (sha256
8872 (base32
8873 "1jz9p3grnczx0bpdw6j64x21in8zgm3qy19hmm296har2rx9m5zs"))))
8874 (properties `((upstream-name . "miloR")))
8875 (build-system r-build-system)
8876 (propagated-inputs
8877 (list r-biocgenerics
8878 r-biocneighbors
8879 r-biocparallel
8880 r-biocsingular
8881 r-cowplot
8882 r-dplyr
8883 r-edger
8884 r-ggbeeswarm
8885 r-ggplot2
8886 r-ggraph
8887 r-ggrepel
8888 r-gtools
8889 r-igraph
8890 r-irlba
8891 r-limma
8892 r-matrix
8893 r-matrixstats
8894 r-patchwork
8895 r-rcolorbrewer
8896 r-s4vectors
8897 r-singlecellexperiment
8898 r-stringr
8899 r-summarizedexperiment
8900 r-tibble
8901 r-tidyr))
8902 (native-inputs (list r-knitr))
8903 (home-page "https://marionilab.github.io/miloR")
8904 (synopsis "Differential neighbourhood abundance testing on a graph")
8905 (description
8906 "Milo performs single-cell differential abundance testing. Cell states
8907 are modelled as representative neighbourhoods on a nearest neighbour graph.
8908 Hypothesis testing is performed using a negative bionomial generalized linear
8909 model.")
8910 (license license:gpl3)))
8911
8912 (define-public r-minfi
8913 (package
8914 (name "r-minfi")
8915 (version "1.42.0")
8916 (source
8917 (origin
8918 (method url-fetch)
8919 (uri (bioconductor-uri "minfi" version))
8920 (sha256
8921 (base32
8922 "0255z7w5i5k01w8wn7jkb37h3q7m7vg0szqgk76h330yydnmkrq6"))))
8923 (build-system r-build-system)
8924 (propagated-inputs
8925 (list r-beanplot
8926 r-biobase
8927 r-biocgenerics
8928 r-biocparallel
8929 r-biostrings
8930 r-bumphunter
8931 r-data-table
8932 r-delayedarray
8933 r-delayedmatrixstats
8934 r-genefilter
8935 r-genomeinfodb
8936 r-genomicranges
8937 r-geoquery
8938 r-hdf5array
8939 r-illuminaio
8940 r-iranges
8941 r-lattice
8942 r-limma
8943 r-mass
8944 r-mclust
8945 r-nlme
8946 r-nor1mix
8947 r-preprocesscore
8948 r-quadprog
8949 r-rcolorbrewer
8950 r-reshape
8951 r-s4vectors
8952 r-siggenes
8953 r-summarizedexperiment))
8954 (native-inputs
8955 (list r-knitr))
8956 (home-page "https://github.com/hansenlab/minfi")
8957 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
8958 (description
8959 "This package provides tools to analyze and visualize Illumina Infinium
8960 methylation arrays.")
8961 (license license:artistic2.0)))
8962
8963 (define-public r-methylumi
8964 (package
8965 (name "r-methylumi")
8966 (version "2.42.0")
8967 (source
8968 (origin
8969 (method url-fetch)
8970 (uri (bioconductor-uri "methylumi" version))
8971 (sha256
8972 (base32
8973 "0klkinq55lfj1d4z8gkrv98849079x1l5gd15habw7jq9xxvhjww"))))
8974 (build-system r-build-system)
8975 (propagated-inputs
8976 (list r-annotate
8977 r-annotationdbi
8978 r-biobase
8979 r-biocgenerics
8980 r-fdb-infiniummethylation-hg19
8981 r-genefilter
8982 r-genomeinfodb
8983 r-genomicfeatures
8984 r-genomicranges
8985 r-ggplot2
8986 r-illuminaio
8987 r-iranges
8988 r-lattice
8989 r-matrixstats
8990 r-minfi
8991 r-reshape2
8992 r-s4vectors
8993 r-scales
8994 r-summarizedexperiment))
8995 (native-inputs
8996 (list r-knitr))
8997 (home-page "https://bioconductor.org/packages/methylumi")
8998 (synopsis "Handle Illumina methylation data")
8999 (description
9000 "This package provides classes for holding and manipulating Illumina
9001 methylation data. Based on eSet, it can contain MIAME information, sample
9002 information, feature information, and multiple matrices of data. An
9003 \"intelligent\" import function, methylumiR can read the Illumina text files
9004 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
9005 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
9006 background correction, and quality control features for GoldenGate, Infinium,
9007 and Infinium HD arrays are also included.")
9008 (license license:gpl2)))
9009
9010 (define-public r-lumi
9011 (package
9012 (name "r-lumi")
9013 (version "2.48.0")
9014 (source
9015 (origin
9016 (method url-fetch)
9017 (uri (bioconductor-uri "lumi" version))
9018 (sha256
9019 (base32
9020 "06zmll5j1yymsm3byarhllrz4q1w5mzv267a9g6visn73wan8y9d"))))
9021 (build-system r-build-system)
9022 (propagated-inputs
9023 (list r-affy
9024 r-annotate
9025 r-annotationdbi
9026 r-biobase
9027 r-dbi
9028 r-genomicfeatures
9029 r-genomicranges
9030 r-kernsmooth
9031 r-lattice
9032 r-mass
9033 r-methylumi
9034 r-mgcv
9035 r-nleqslv
9036 r-preprocesscore
9037 r-rsqlite))
9038 (home-page "https://bioconductor.org/packages/lumi")
9039 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
9040 (description
9041 "The lumi package provides an integrated solution for the Illumina
9042 microarray data analysis. It includes functions of Illumina
9043 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
9044 variance stabilization, normalization and gene annotation at the probe level.
9045 It also includes the functions of processing Illumina methylation microarrays,
9046 especially Illumina Infinium methylation microarrays.")
9047 (license license:lgpl2.0+)))
9048
9049 (define-public r-linnorm
9050 (package
9051 (name "r-linnorm")
9052 (version "2.20.0")
9053 (source
9054 (origin
9055 (method url-fetch)
9056 (uri (bioconductor-uri "Linnorm" version))
9057 (sha256
9058 (base32
9059 "1002lllgns5klv3q2wsikkbypa2bafpka7a8mri0y5bfxncfr2zb"))))
9060 (properties `((upstream-name . "Linnorm")))
9061 (build-system r-build-system)
9062 (propagated-inputs
9063 (list r-amap
9064 r-apcluster
9065 r-ellipse
9066 r-fastcluster
9067 r-fpc
9068 r-ggdendro
9069 r-ggplot2
9070 r-gmodels
9071 r-igraph
9072 r-limma
9073 r-mass
9074 r-mclust
9075 r-rcpp
9076 r-rcpparmadillo
9077 r-rtsne
9078 r-statmod
9079 r-vegan
9080 r-zoo))
9081 (native-inputs
9082 (list r-knitr))
9083 (home-page "http://www.jjwanglab.org/Linnorm/")
9084 (synopsis "Linear model and normality based transformation method")
9085 (description
9086 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
9087 count data or any large scale count data. It transforms such datasets for
9088 parametric tests. In addition to the transformtion function (@code{Linnorm}),
9089 the following pipelines are implemented:
9090
9091 @enumerate
9092 @item Library size/batch effect normalization (@code{Linnorm.Norm})
9093 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
9094 clustering or hierarchical clustering (@code{Linnorm.tSNE},
9095 @code{Linnorm.PCA}, @code{Linnorm.HClust})
9096 @item Differential expression analysis or differential peak detection using
9097 limma (@code{Linnorm.limma})
9098 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
9099 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
9100 @item Stable gene selection for scRNA-seq data; for users without or who do
9101 not want to rely on spike-in genes (@code{Linnorm.SGenes})
9102 @item Data imputation (@code{Linnorm.DataImput}).
9103 @end enumerate
9104
9105 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
9106 @code{RnaXSim} function is included for simulating RNA-seq data for the
9107 evaluation of DEG analysis methods.")
9108 (license license:expat)))
9109
9110 (define-public r-ioniser
9111 (package
9112 (name "r-ioniser")
9113 (version "2.20.0")
9114 (source
9115 (origin
9116 (method url-fetch)
9117 (uri (bioconductor-uri "IONiseR" version))
9118 (sha256
9119 (base32
9120 "0cgx1dcfh617l9vr4r3ky8w7f0snl0vpavfd9n1h5n68p0p42dwi"))))
9121 (properties `((upstream-name . "IONiseR")))
9122 (build-system r-build-system)
9123 (propagated-inputs
9124 (list r-biocgenerics
9125 r-biocparallel
9126 r-biostrings
9127 r-bit64
9128 r-dplyr
9129 r-ggplot2
9130 r-magrittr
9131 r-rhdf5
9132 r-shortread
9133 r-stringr
9134 r-tibble
9135 r-tidyr
9136 r-xvector))
9137 (native-inputs
9138 (list r-knitr))
9139 (home-page "https://bioconductor.org/packages/IONiseR/")
9140 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
9141 (description
9142 "IONiseR provides tools for the quality assessment of Oxford Nanopore
9143 MinION data. It extracts summary statistics from a set of fast5 files and can
9144 be used either before or after base calling. In addition to standard
9145 summaries of the read-types produced, it provides a number of plots for
9146 visualising metrics relative to experiment run time or spatially over the
9147 surface of a flowcell.")
9148 (license license:expat)))
9149
9150 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
9151 (define-public r-mutoss
9152 (package
9153 (name "r-mutoss")
9154 (version "0.1-12")
9155 (source
9156 (origin
9157 (method url-fetch)
9158 (uri (cran-uri "mutoss" version))
9159 (sha256
9160 (base32
9161 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
9162 (properties `((upstream-name . "mutoss")))
9163 (build-system r-build-system)
9164 (propagated-inputs
9165 (list r-multcomp r-multtest r-mvtnorm r-plotrix))
9166 (home-page "https://github.com/kornl/mutoss/")
9167 (synopsis "Unified multiple testing procedures")
9168 (description
9169 "This package is designed to ease the application and comparison of
9170 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
9171 are standardized and usable by the accompanying mutossGUI package.")
9172 ;; Any version of the GPL.
9173 (license (list license:gpl2+ license:gpl3+))))
9174
9175 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
9176 ;; from Bioconductor, so we put it here.
9177 (define-public r-metap
9178 (package
9179 (name "r-metap")
9180 (version "1.8")
9181 (source
9182 (origin
9183 (method url-fetch)
9184 (uri (cran-uri "metap" version))
9185 (sha256
9186 (base32
9187 "0asmypxfxly4xmcjf3yzid5zqlzg88z0brij2splfk4avsl035gf"))))
9188 (build-system r-build-system)
9189 (propagated-inputs
9190 (list r-lattice
9191 r-mathjaxr
9192 r-mutoss
9193 r-qqconf
9194 r-rdpack
9195 r-tfisher))
9196 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
9197 (synopsis "Meta-analysis of significance values")
9198 (description
9199 "The canonical way to perform meta-analysis involves using effect sizes.
9200 When they are not available this package provides a number of methods for
9201 meta-analysis of significance values including the methods of Edgington,
9202 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
9203 published results; and a routine for graphical display.")
9204 (license license:gpl2)))
9205
9206 (define-public r-tradeseq
9207 (package
9208 (name "r-tradeseq")
9209 (version "1.10.0")
9210 (source (origin
9211 (method url-fetch)
9212 (uri (bioconductor-uri "tradeSeq" version))
9213 (sha256
9214 (base32
9215 "0v9nqxrwa69qhmyaicn2vvs8haha4kzs93iqim306331vadp9qm0"))))
9216 (build-system r-build-system)
9217 (propagated-inputs
9218 (list r-biobase
9219 r-biocparallel
9220 r-edger
9221 r-ggplot2
9222 r-igraph
9223 r-magrittr
9224 r-mass
9225 r-matrix
9226 r-matrixstats
9227 r-mgcv
9228 r-pbapply
9229 r-princurve
9230 r-rcolorbrewer
9231 r-s4vectors
9232 r-singlecellexperiment
9233 r-slingshot
9234 r-summarizedexperiment
9235 r-tibble
9236 r-trajectoryutils
9237 r-viridis))
9238 (native-inputs
9239 (list r-knitr))
9240 (home-page "https://statomics.github.io/tradeSeq/index.html")
9241 (synopsis "Trajectory-based differential expression analysis")
9242 (description
9243 "This package provides a flexible method for fitting regression models that
9244 can be used to find genes that are differentially expressed along one or
9245 multiple lineages in a trajectory. Based on the fitted models, it uses a
9246 variety of tests suited to answer different questions of interest, e.g. the
9247 discovery of genes for which expression is associated with pseudotime, or which
9248 are differentially expressed (in a specific region) along the trajectory. It
9249 fits a negative binomial generalized additive model (GAM) for each gene, and
9250 performs inference on the parameters of the GAM.")
9251 (license license:expat)))
9252
9253 (define-public r-triform
9254 (package
9255 (name "r-triform")
9256 (version "1.29.0")
9257 (source
9258 (origin
9259 (method url-fetch)
9260 (uri (bioconductor-uri "triform" version))
9261 (sha256
9262 (base32
9263 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
9264 (build-system r-build-system)
9265 (propagated-inputs
9266 (list r-biocgenerics r-iranges r-yaml))
9267 (home-page "https://bioconductor.org/packages/triform/")
9268 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
9269 (description
9270 "The Triform algorithm uses model-free statistics to identify peak-like
9271 distributions of TF ChIP sequencing reads, taking advantage of an improved
9272 peak definition in combination with known profile characteristics.")
9273 (license license:gpl2)))
9274
9275 (define-public r-varianttools
9276 (package
9277 (name "r-varianttools")
9278 (version "1.38.0")
9279 (source
9280 (origin
9281 (method url-fetch)
9282 (uri (bioconductor-uri "VariantTools" version))
9283 (sha256
9284 (base32
9285 "18nxcamfgnw4n2ab0czxglw0sqc9wzdqzpjv43lcyyal23lzzsix"))))
9286 (properties `((upstream-name . "VariantTools")))
9287 (build-system r-build-system)
9288 (propagated-inputs
9289 (list r-biobase
9290 r-biocgenerics
9291 r-biocparallel
9292 r-biostrings
9293 r-bsgenome
9294 r-genomeinfodb
9295 r-genomicfeatures
9296 r-genomicranges
9297 r-iranges
9298 r-matrix
9299 r-rsamtools
9300 r-rtracklayer
9301 r-s4vectors
9302 r-variantannotation))
9303 (home-page "https://bioconductor.org/packages/VariantTools/")
9304 (synopsis "Tools for exploratory analysis of variant calls")
9305 (description
9306 "Explore, diagnose, and compare variant calls using filters. The
9307 VariantTools package supports a workflow for loading data, calling single
9308 sample variants and tumor-specific somatic mutations or other sample-specific
9309 variant types (e.g., RNA editing). Most of the functions operate on
9310 alignments (BAM files) or datasets of called variants. The user is expected
9311 to have already aligned the reads with a separate tool, e.g., GSNAP via
9312 gmapR.")
9313 (license license:artistic2.0)))
9314
9315 (define-public r-heatplus
9316 (package
9317 (name "r-heatplus")
9318 (version "3.4.0")
9319 (source
9320 (origin
9321 (method url-fetch)
9322 (uri (bioconductor-uri "Heatplus" version))
9323 (sha256
9324 (base32
9325 "0b1mzxysmrqinp93p587apna8p0llmawblwj93icydqxxm2jkhb1"))))
9326 (properties `((upstream-name . "Heatplus")))
9327 (build-system r-build-system)
9328 (propagated-inputs
9329 (list r-rcolorbrewer))
9330 (home-page "https://github.com/alexploner/Heatplus")
9331 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
9332 (description
9333 "This package provides tools to display a rectangular heatmap (intensity
9334 plot) of a data matrix. By default, both samples (columns) and features (row)
9335 of the matrix are sorted according to a hierarchical clustering, and the
9336 corresponding dendrogram is plotted. Optionally, panels with additional
9337 information about samples and features can be added to the plot.")
9338 (license license:gpl2+)))
9339
9340 (define-public r-gosemsim
9341 (package
9342 (name "r-gosemsim")
9343 (version "2.22.0")
9344 (source
9345 (origin
9346 (method url-fetch)
9347 (uri (bioconductor-uri "GOSemSim" version))
9348 (sha256
9349 (base32
9350 "1hp15pzd0m0g9f8kglyfsgjqxnvxcmm9022xnsrkzfvmj2yw14vd"))))
9351 (properties `((upstream-name . "GOSemSim")))
9352 (build-system r-build-system)
9353 (propagated-inputs
9354 (list r-annotationdbi r-go-db r-rcpp))
9355 (native-inputs
9356 (list r-knitr))
9357 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
9358 (synopsis "GO-terms semantic similarity measures")
9359 (description
9360 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
9361 quantitative ways to compute similarities between genes and gene groups, and
9362 have became important basis for many bioinformatics analysis approaches.
9363 GOSemSim is an R package for semantic similarity computation among GO terms,
9364 sets of GO terms, gene products and gene clusters.")
9365 (license license:artistic2.0)))
9366
9367 (define-public r-anota
9368 (package
9369 (name "r-anota")
9370 (version "1.44.0")
9371 (source
9372 (origin
9373 (method url-fetch)
9374 (uri (bioconductor-uri "anota" version))
9375 (sha256
9376 (base32
9377 "1x75r5znl8jllqsgzpxsqj62ch11bpwhmyzmbjmb8sz8f8ww923c"))))
9378 (build-system r-build-system)
9379 (propagated-inputs
9380 (list r-multtest r-qvalue))
9381 (home-page "https://bioconductor.org/packages/anota/")
9382 (synopsis "Analysis of translational activity")
9383 (description
9384 "Genome wide studies of translational control is emerging as a tool to
9385 study various biological conditions. The output from such analysis is both
9386 the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
9387 involved in translation (the actively translating mRNA level) for each mRNA.
9388 The standard analysis of such data strives towards identifying differential
9389 translational between two or more sample classes - i.e., differences in
9390 actively translated mRNA levels that are independent of underlying differences
9391 in cytosolic mRNA levels. This package allows for such analysis using partial
9392 variances and the random variance model. As 10s of thousands of mRNAs are
9393 analyzed in parallel the library performs a number of tests to assure that
9394 the data set is suitable for such analysis.")
9395 (license license:gpl3)))
9396
9397 (define-public r-sigpathway
9398 (package
9399 (name "r-sigpathway")
9400 (version "1.64.0")
9401 (source
9402 (origin
9403 (method url-fetch)
9404 (uri (bioconductor-uri "sigPathway" version))
9405 (sha256
9406 (base32
9407 "1c2kwhbxgf66az7ssm2mab9n5x59zy4kxq8vblz5r9636xqaysif"))))
9408 (properties `((upstream-name . "sigPathway")))
9409 (build-system r-build-system)
9410 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
9411 (synopsis "Pathway analysis")
9412 (description
9413 "This package is used to conduct pathway analysis by calculating the NT_k
9414 and NE_k statistics in a statistical framework for determining whether a
9415 specified group of genes for a pathway has a coordinated association with a
9416 phenotype of interest.")
9417 (license license:gpl2)))
9418
9419 (define-public r-fcscan
9420 (package
9421 (name "r-fcscan")
9422 (version "1.10.0")
9423 (source
9424 (origin
9425 (method url-fetch)
9426 (uri (bioconductor-uri "fcScan" version))
9427 (sha256
9428 (base32 "0yv7ifw0xxx1v9z8dxszv0cb72q3frd74dyxfbvrcs6x9y9v3jzp"))))
9429 (properties `((upstream-name . "fcScan")))
9430 (build-system r-build-system)
9431 (propagated-inputs
9432 (list r-doparallel
9433 r-foreach
9434 r-genomicranges
9435 r-iranges
9436 r-plyr
9437 r-rtracklayer
9438 r-summarizedexperiment
9439 r-variantannotation))
9440 (native-inputs (list r-knitr))
9441 (home-page "https://bioconductor.org/packages/fcScan")
9442 (synopsis "Detect clusters of coordinates with user defined options")
9443 (description
9444 "This package is used to detect combination of genomic coordinates
9445 falling within a user defined window size along with user defined overlap
9446 between identified neighboring clusters. It can be used for genomic data
9447 where the clusters are built on a specific chromosome or specific strand.
9448 Clustering can be performed with a \"greedy\" option allowing thus the
9449 presence of additional sites within the allowed window size.")
9450 (license license:artistic2.0)))
9451
9452 (define-public r-fgsea
9453 (package
9454 (name "r-fgsea")
9455 (version "1.22.0")
9456 (source
9457 (origin
9458 (method url-fetch)
9459 (uri (bioconductor-uri "fgsea" version))
9460 (sha256
9461 (base32
9462 "0innyggai6l4fpl4qrblzdc52vqw9jaszmip0yr1lv7rzwyl6mpg"))))
9463 (build-system r-build-system)
9464 (propagated-inputs
9465 (list r-bh
9466 r-biocparallel
9467 r-data-table
9468 r-fastmatch
9469 r-ggplot2
9470 r-gridextra
9471 r-matrix
9472 r-rcpp))
9473 (native-inputs
9474 (list r-knitr))
9475 (home-page "https://github.com/ctlab/fgsea/")
9476 (synopsis "Fast gene set enrichment analysis")
9477 (description
9478 "The package implements an algorithm for fast gene set enrichment
9479 analysis. Using the fast algorithm makes more permutations and gets
9480 more fine grained p-values, which allows using accurate standard approaches
9481 to multiple hypothesis correction.")
9482 (license license:expat)))
9483
9484 (define-public r-dose
9485 (package
9486 (name "r-dose")
9487 (version "3.22.1")
9488 (source
9489 (origin
9490 (method url-fetch)
9491 (uri (bioconductor-uri "DOSE" version))
9492 (sha256
9493 (base32
9494 "1mch26kddrhhzgi4bssnyy7bvdhprrncmvxl6zn1cq7g07p5765i"))))
9495 (properties `((upstream-name . "DOSE")))
9496 (build-system r-build-system)
9497 (propagated-inputs
9498 (list r-annotationdbi
9499 r-biocparallel
9500 r-do-db
9501 r-fgsea
9502 r-ggplot2
9503 r-gosemsim
9504 r-qvalue
9505 r-reshape2))
9506 (native-inputs
9507 (list r-knitr))
9508 (home-page "https://guangchuangyu.github.io/software/DOSE/")
9509 (synopsis "Disease ontology semantic and enrichment analysis")
9510 (description
9511 "This package implements five methods proposed by Resnik, Schlicker,
9512 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
9513 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
9514 including hypergeometric model and gene set enrichment analysis are also
9515 implemented for discovering disease associations of high-throughput biological
9516 data.")
9517 (license license:artistic2.0)))
9518
9519 (define-public r-enrichplot
9520 (package
9521 (name "r-enrichplot")
9522 (version "1.16.2")
9523 (source
9524 (origin
9525 (method url-fetch)
9526 (uri (bioconductor-uri "enrichplot" version))
9527 (sha256
9528 (base32
9529 "0qh7bci3rn6y2fl45izrdb62jcm6j0zxxg4pyp4mvvgjvka5lnss"))))
9530 (build-system r-build-system)
9531 (propagated-inputs
9532 (list r-aplot
9533 r-dose
9534 r-ggplot2
9535 r-ggraph
9536 r-ggtree
9537 r-gosemsim
9538 r-igraph
9539 r-magrittr
9540 r-plyr
9541 r-purrr
9542 r-rcolorbrewer
9543 r-reshape2
9544 r-scatterpie
9545 r-shadowtext
9546 r-yulab-utils))
9547 (native-inputs
9548 (list r-knitr))
9549 (home-page "https://github.com/GuangchuangYu/enrichplot")
9550 (synopsis "Visualization of functional enrichment result")
9551 (description
9552 "The enrichplot package implements several visualization methods for
9553 interpreting functional enrichment results obtained from ORA or GSEA analyses.
9554 All the visualization methods are developed based on ggplot2 graphics.")
9555 (license license:artistic2.0)))
9556
9557 (define-public r-clusterprofiler
9558 (package
9559 (name "r-clusterprofiler")
9560 (version "4.4.4")
9561 (source
9562 (origin
9563 (method url-fetch)
9564 (uri (bioconductor-uri "clusterProfiler" version))
9565 (sha256
9566 (base32
9567 "0k5jhry0j6wa7779n3hrw4ld4bvyahpgpbwi2a0g704m3dd3mqp5"))))
9568 (properties
9569 `((upstream-name . "clusterProfiler")))
9570 (build-system r-build-system)
9571 (propagated-inputs
9572 (list r-annotationdbi
9573 r-dose
9574 r-downloader
9575 r-dplyr
9576 r-enrichplot
9577 r-go-db
9578 r-gosemsim
9579 r-magrittr
9580 r-plyr
9581 r-qvalue
9582 r-rlang
9583 r-tidyr
9584 r-yulab-utils))
9585 (native-inputs
9586 (list r-knitr))
9587 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
9588 (synopsis "Analysis and visualization of functional profiles for gene clusters")
9589 (description
9590 "This package implements methods to analyze and visualize functional
9591 profiles (GO and KEGG) of gene and gene clusters.")
9592 (license license:artistic2.0)))
9593
9594 (define-public r-clusterexperiment
9595 (package
9596 (name "r-clusterexperiment")
9597 (version "2.16.0")
9598 (source (origin
9599 (method url-fetch)
9600 (uri (bioconductor-uri "clusterExperiment" version))
9601 (sha256
9602 (base32
9603 "1xd2kxmdg51hhj0zvz7pxmpdvb1sya7prsf9ny2wj2y8ivrqgn4f"))))
9604 (build-system r-build-system)
9605 (native-inputs
9606 (list r-knitr))
9607 (propagated-inputs
9608 (list r-ape
9609 r-biocgenerics
9610 r-biocsingular
9611 r-cluster
9612 r-delayedarray
9613 r-edger
9614 r-hdf5array
9615 r-howmany
9616 r-kernlab
9617 r-limma
9618 r-locfdr
9619 r-matrix
9620 r-matrixstats
9621 r-mbkmeans
9622 r-nmf
9623 r-phylobase
9624 r-pracma
9625 r-rcolorbrewer
9626 r-rcpp
9627 r-s4vectors
9628 r-scales
9629 r-singlecellexperiment
9630 r-stringr
9631 r-summarizedexperiment
9632 r-zinbwave))
9633 (home-page "https://bioconductor.org/packages/clusterExperiment/")
9634 (synopsis "Compare clusterings for single-cell sequencing")
9635 (description "This package provides functionality for running and comparing
9636 many different clusterings of single-cell sequencing data or other large mRNA
9637 expression data sets.")
9638 (license license:artistic2.0)))
9639
9640 (define-public r-mlinterfaces
9641 (package
9642 (name "r-mlinterfaces")
9643 (version "1.76.0")
9644 (source
9645 (origin
9646 (method url-fetch)
9647 (uri (bioconductor-uri "MLInterfaces" version))
9648 (sha256
9649 (base32
9650 "179d19kxjipfkc40z15337x1vzqd7vz3gbmr2lw5w7x9l857ngs5"))))
9651 (properties `((upstream-name . "MLInterfaces")))
9652 (build-system r-build-system)
9653 (propagated-inputs
9654 (list r-annotate
9655 r-biobase
9656 r-biocgenerics
9657 r-cluster
9658 r-fpc
9659 r-gbm
9660 r-gdata
9661 r-genefilter
9662 r-ggvis
9663 r-hwriter
9664 r-magrittr
9665 r-mass
9666 r-mlbench
9667 r-pls
9668 r-rcolorbrewer
9669 r-rcpp
9670 r-rpart
9671 r-sfsmisc
9672 r-shiny
9673 r-threejs))
9674 (home-page "https://bioconductor.org/packages/MLInterfaces/")
9675 (synopsis "Interfaces to R machine learning procedures")
9676 (description
9677 "This package provides uniform interfaces to machine learning code for
9678 data in R and Bioconductor containers.")
9679 ;; Any version of the LGPL.
9680 (license license:lgpl2.1+)))
9681
9682 (define-public r-annaffy
9683 (package
9684 (name "r-annaffy")
9685 (version "1.68.0")
9686 (source
9687 (origin
9688 (method url-fetch)
9689 (uri (bioconductor-uri "annaffy" version))
9690 (sha256
9691 (base32
9692 "1fbqknwbl4534h66xrhcryg9pavm9fkja47gqbsxf8bd5yhk5mgq"))))
9693 (build-system r-build-system)
9694 (arguments
9695 `(#:phases
9696 (modify-phases %standard-phases
9697 (add-after 'unpack 'remove-reference-to-non-free-data
9698 (lambda _
9699 (substitute* "DESCRIPTION"
9700 ((", KEGG.db") "")))))))
9701 (propagated-inputs
9702 (list r-annotationdbi r-biobase r-biocmanager r-dbi r-go-db))
9703 (home-page "https://bioconductor.org/packages/annaffy/")
9704 (synopsis "Annotation tools for Affymetrix biological metadata")
9705 (description
9706 "This package provides functions for handling data from Bioconductor
9707 Affymetrix annotation data packages. It produces compact HTML and text
9708 reports including experimental data and URL links to many online databases.
9709 It allows searching of biological metadata using various criteria.")
9710 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
9711 ;; the LGPL 2.1 is included.
9712 (license license:lgpl2.1+)))
9713
9714 (define-public r-a4core
9715 (package
9716 (name "r-a4core")
9717 (version "1.44.0")
9718 (source
9719 (origin
9720 (method url-fetch)
9721 (uri (bioconductor-uri "a4Core" version))
9722 (sha256
9723 (base32
9724 "1ky1lphq6bqxj6h12pg06cvs451fziqam8gd56wmpk6r5pbg4390"))))
9725 (properties `((upstream-name . "a4Core")))
9726 (build-system r-build-system)
9727 (propagated-inputs
9728 (list r-biobase r-glmnet))
9729 (native-inputs
9730 (list r-knitr))
9731 (home-page "https://bioconductor.org/packages/a4Core")
9732 (synopsis "Automated Affymetrix array analysis core package")
9733 (description
9734 "This is the core package for the automated analysis of Affymetrix
9735 arrays.")
9736 (license license:gpl3)))
9737
9738 (define-public r-a4classif
9739 (package
9740 (name "r-a4classif")
9741 (version "1.44.0")
9742 (source
9743 (origin
9744 (method url-fetch)
9745 (uri (bioconductor-uri "a4Classif" version))
9746 (sha256
9747 (base32
9748 "1v61vgpqrf7bhk44n2gkxb8dm5d0rr8c9rd6fdcjs50nhij0lbiw"))))
9749 (properties `((upstream-name . "a4Classif")))
9750 (build-system r-build-system)
9751 (propagated-inputs
9752 (list r-a4core
9753 r-a4preproc
9754 r-biobase
9755 r-glmnet
9756 r-pamr
9757 r-rocr
9758 r-varselrf))
9759 (native-inputs
9760 (list r-knitr))
9761 (home-page "https://bioconductor.org/packages/a4Classif/")
9762 (synopsis "Automated Affymetrix array analysis classification package")
9763 (description
9764 "This is the classification package for the automated analysis of
9765 Affymetrix arrays.")
9766 (license license:gpl3)))
9767
9768 (define-public r-a4preproc
9769 (package
9770 (name "r-a4preproc")
9771 (version "1.44.0")
9772 (source
9773 (origin
9774 (method url-fetch)
9775 (uri (bioconductor-uri "a4Preproc" version))
9776 (sha256
9777 (base32
9778 "098yzy7x5536bj76iavismdsdn7x6x07aw0j3knj6i9www9y8yz9"))))
9779 (properties `((upstream-name . "a4Preproc")))
9780 (build-system r-build-system)
9781 (propagated-inputs
9782 (list r-biobase r-biocgenerics))
9783 (native-inputs
9784 (list r-knitr))
9785 (home-page "https://bioconductor.org/packages/a4Preproc/")
9786 (synopsis "Automated Affymetrix array analysis preprocessing package")
9787 (description
9788 "This is a package for the automated analysis of Affymetrix arrays. It
9789 is used for preprocessing the arrays.")
9790 (license license:gpl3)))
9791
9792 (define-public r-a4reporting
9793 (package
9794 (name "r-a4reporting")
9795 (version "1.44.0")
9796 (source
9797 (origin
9798 (method url-fetch)
9799 (uri (bioconductor-uri "a4Reporting" version))
9800 (sha256
9801 (base32
9802 "03sypayh187gqc6hykkqr1g0vb3zxc2c3xyp00jfbn12b35acnb0"))))
9803 (properties `((upstream-name . "a4Reporting")))
9804 (build-system r-build-system)
9805 (propagated-inputs
9806 (list r-xtable))
9807 (native-inputs
9808 (list r-knitr))
9809 (home-page "https://bioconductor.org/packages/a4Reporting/")
9810 (synopsis "Automated Affymetrix array analysis reporting package")
9811 (description
9812 "This is a package for the automated analysis of Affymetrix arrays. It
9813 provides reporting features.")
9814 (license license:gpl3)))
9815
9816 (define-public r-a4base
9817 (package
9818 (name "r-a4base")
9819 (version "1.44.0")
9820 (source
9821 (origin
9822 (method url-fetch)
9823 (uri (bioconductor-uri "a4Base" version))
9824 (sha256
9825 (base32
9826 "15zqirz16gpks9f5d3d76h85b936za2jih74vfr55l5arqrrvvsn"))))
9827 (properties `((upstream-name . "a4Base")))
9828 (build-system r-build-system)
9829 (propagated-inputs
9830 (list r-a4core
9831 r-a4preproc
9832 r-annaffy
9833 r-biobase
9834 r-genefilter
9835 r-glmnet
9836 r-gplots
9837 r-limma
9838 r-mpm
9839 r-multtest))
9840 (home-page "https://bioconductor.org/packages/a4Base/")
9841 (synopsis "Automated Affymetrix array analysis base package")
9842 (description
9843 "This package provides basic features for the automated analysis of
9844 Affymetrix arrays.")
9845 (license license:gpl3)))
9846
9847 (define-public r-a4
9848 (package
9849 (name "r-a4")
9850 (version "1.44.0")
9851 (source
9852 (origin
9853 (method url-fetch)
9854 (uri (bioconductor-uri "a4" version))
9855 (sha256
9856 (base32
9857 "1zs8fs6mdd7fhsmx4k824mid0jk400cm6dwfhl8z5lg85y8y2n0r"))))
9858 (build-system r-build-system)
9859 (propagated-inputs
9860 (list r-a4base r-a4classif r-a4core r-a4preproc r-a4reporting))
9861 (home-page "https://bioconductor.org/packages/a4/")
9862 (synopsis "Automated Affymetrix array analysis umbrella package")
9863 (description
9864 "This package provides a software suite for the automated analysis of
9865 Affymetrix arrays.")
9866 (license license:gpl3)))
9867
9868 (define-public r-abseqr
9869 (package
9870 (name "r-abseqr")
9871 (version "1.14.0")
9872 (source
9873 (origin
9874 (method url-fetch)
9875 (uri (bioconductor-uri "abseqR" version))
9876 (sha256
9877 (base32
9878 "0jh3rj6ag07vpw6fymqm6m4jkrm9mgf50zkjncahxdf52mna8a9b"))))
9879 (properties `((upstream-name . "abseqR")))
9880 (build-system r-build-system)
9881 (inputs
9882 (list pandoc))
9883 (propagated-inputs
9884 (list r-biocparallel
9885 r-biocstyle
9886 r-circlize
9887 r-flexdashboard
9888 r-ggcorrplot
9889 r-ggdendro
9890 r-ggplot2
9891 r-gridextra
9892 r-knitr
9893 r-plotly
9894 r-plyr
9895 r-png
9896 r-rcolorbrewer
9897 r-reshape2
9898 r-rmarkdown
9899 r-stringr
9900 r-vegan
9901 r-venndiagram))
9902 (native-inputs
9903 (list r-knitr))
9904 (home-page "https://github.com/malhamdoosh/abseqR")
9905 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
9906 (description
9907 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
9908 sequencing datasets generated from antibody libraries and abseqR is one of its
9909 packages. AbseqR empowers the users of abseqPy with plotting and reporting
9910 capabilities and allows them to generate interactive HTML reports for the
9911 convenience of viewing and sharing with other researchers. Additionally,
9912 abseqR extends abseqPy to compare multiple repertoire analyses and perform
9913 further downstream analysis on its output.")
9914 (license license:gpl3)))
9915
9916 (define-public r-bacon
9917 (package
9918 (name "r-bacon")
9919 (version "1.24.0")
9920 (source
9921 (origin
9922 (method url-fetch)
9923 (uri (bioconductor-uri "bacon" version))
9924 (sha256
9925 (base32
9926 "1zvcxdj3r892898ik5gq3jdbfig1438qws4bwd465ik8vi7g39v8"))))
9927 (build-system r-build-system)
9928 (propagated-inputs
9929 (list r-biocparallel r-ellipse r-ggplot2))
9930 (native-inputs
9931 (list r-knitr))
9932 (home-page "https://bioconductor.org/packages/bacon/")
9933 (synopsis "Controlling bias and inflation in association studies")
9934 (description
9935 "Bacon can be used to remove inflation and bias often observed in
9936 epigenome- and transcriptome-wide association studies. To this end bacon
9937 constructs an empirical null distribution using a Gibbs Sampling algorithm by
9938 fitting a three-component normal mixture on z-scores.")
9939 (license license:gpl2+)))
9940
9941 (define-public r-rgadem
9942 (package
9943 (name "r-rgadem")
9944 (version "2.44.1")
9945 (source
9946 (origin
9947 (method url-fetch)
9948 (uri (bioconductor-uri "rGADEM" version))
9949 (sha256
9950 (base32
9951 "052z9iavnmkaz9jzz7ycpb8z7qqq3s5k6a04icrwl00wff7zqa2q"))))
9952 (properties `((upstream-name . "rGADEM")))
9953 (build-system r-build-system)
9954 (propagated-inputs
9955 (list r-biostrings r-bsgenome r-genomicranges r-iranges r-seqlogo))
9956 (home-page "https://bioconductor.org/packages/rGADEM/")
9957 (synopsis "De novo sequence motif discovery")
9958 (description
9959 "rGADEM is an efficient de novo motif discovery tool for large-scale
9960 genomic sequence data.")
9961 (license license:artistic2.0)))
9962
9963 (define-public r-motiv
9964 (package
9965 (name "r-motiv")
9966 (version "1.43.0")
9967 (source
9968 (origin
9969 (method url-fetch)
9970 (uri (bioconductor-uri "MotIV" version))
9971 (sha256
9972 (base32
9973 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
9974 (properties `((upstream-name . "MotIV")))
9975 (build-system r-build-system)
9976 (inputs
9977 (list gsl))
9978 (propagated-inputs
9979 (list r-biocgenerics
9980 r-biostrings
9981 r-genomicranges
9982 r-iranges
9983 r-lattice
9984 r-rgadem
9985 r-s4vectors))
9986 (home-page "https://bioconductor.org/packages/MotIV/")
9987 (synopsis "Motif identification and validation")
9988 (description
9989 "This package is used for the identification and validation of sequence
9990 motifs. It makes use of STAMP for comparing a set of motifs to a given
9991 database (e.g. JASPAR). It can also be used to visualize motifs, motif
9992 distributions, modules and filter motifs.")
9993 (license license:gpl2)))
9994
9995 (define-public r-motifdb
9996 (package
9997 (name "r-motifdb")
9998 (version "1.38.0")
9999 (source (origin
10000 (method url-fetch)
10001 (uri (bioconductor-uri "MotifDb" version))
10002 (sha256
10003 (base32 "1cyfz0l0yvdii3idaiq5w39yzxlzfpifa4v5pv7hdjfjj83a8rbi"))))
10004 (properties `((upstream-name . "MotifDb")))
10005 (build-system r-build-system)
10006 (propagated-inputs
10007 (list r-biocgenerics
10008 r-biostrings
10009 r-genomicranges
10010 r-iranges
10011 r-rtracklayer
10012 r-s4vectors
10013 r-splitstackshape))
10014 (native-inputs
10015 (list r-knitr))
10016 (home-page "https://www.bioconductor.org/packages/MotifDb/")
10017 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
10018 (description "This package provides more than 2000 annotated position
10019 frequency matrices from nine public sources, for multiple organisms.")
10020 (license license:artistic2.0)))
10021
10022 (define-public r-motifbreakr
10023 (package
10024 (name "r-motifbreakr")
10025 (version "2.10.0")
10026 (source (origin
10027 (method url-fetch)
10028 (uri (bioconductor-uri "motifbreakR" version))
10029 (sha256
10030 (base32 "0sad73jjx52qzp1fmygp6xqvaxwl5szi69f00f94i1pdyq70qhlg"))))
10031 (properties `((upstream-name . "motifbreakR")))
10032 (build-system r-build-system)
10033 (propagated-inputs
10034 (list r-biocgenerics
10035 r-biocparallel
10036 r-biostrings
10037 r-bsgenome
10038 r-genomeinfodb
10039 r-genomicranges
10040 r-gviz
10041 r-iranges
10042 r-matrixstats
10043 r-motifdb
10044 r-motifstack
10045 r-rtracklayer
10046 r-s4vectors
10047 r-stringr
10048 r-summarizedexperiment
10049 r-tfmpvalue
10050 r-variantannotation))
10051 (native-inputs
10052 (list r-knitr))
10053 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
10054 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
10055 (description "This package allows biologists to judge in the first place
10056 whether the sequence surrounding the polymorphism is a good match, and in
10057 the second place how much information is gained or lost in one allele of
10058 the polymorphism relative to another. This package gives a choice of
10059 algorithms for interrogation of genomes with motifs from public sources:
10060 @enumerate
10061 @item a weighted-sum probability matrix;
10062 @item log-probabilities;
10063 @item weighted by relative entropy.
10064 @end enumerate
10065
10066 This package can predict effects for novel or previously described variants in
10067 public databases, making it suitable for tasks beyond the scope of its original
10068 design. Lastly, it can be used to interrogate any genome curated within
10069 Bioconductor.")
10070 (license license:gpl2+)))
10071
10072 (define-public r-motifstack
10073 (package
10074 (name "r-motifstack")
10075 (version "1.40.0")
10076 (source
10077 (origin
10078 (method url-fetch)
10079 (uri (bioconductor-uri "motifStack" version))
10080 (sha256
10081 (base32
10082 "0d2ihx73chczbv6f91n04qb372plrdv7k4qws8shyw1fmvb1rq0z"))))
10083 (properties `((upstream-name . "motifStack")))
10084 (build-system r-build-system)
10085 (propagated-inputs
10086 (list r-ade4
10087 r-biostrings
10088 r-ggplot2
10089 r-htmlwidgets
10090 r-tfbstools
10091 r-xml))
10092 (native-inputs
10093 (list r-knitr))
10094 (home-page "https://bioconductor.org/packages/motifStack/")
10095 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
10096 (description
10097 "The motifStack package is designed for graphic representation of
10098 multiple motifs with different similarity scores. It works with both DNA/RNA
10099 sequence motifs and amino acid sequence motifs. In addition, it provides the
10100 flexibility for users to customize the graphic parameters such as the font
10101 type and symbol colors.")
10102 (license license:gpl2+)))
10103
10104 (define-public r-genomicscores
10105 (package
10106 (name "r-genomicscores")
10107 (version "2.8.2")
10108 (source
10109 (origin
10110 (method url-fetch)
10111 (uri (bioconductor-uri "GenomicScores" version))
10112 (sha256
10113 (base32
10114 "12rcxw69an1d5q7ar58xy8s871l47imw2nm08j054ivxslx8597j"))))
10115 (properties `((upstream-name . "GenomicScores")))
10116 (build-system r-build-system)
10117 (propagated-inputs
10118 (list r-annotationhub
10119 r-biobase
10120 r-biocfilecache
10121 r-biocgenerics
10122 r-biocmanager
10123 r-biostrings
10124 r-delayedarray
10125 r-genomeinfodb
10126 r-genomicranges
10127 r-hdf5array
10128 r-httr
10129 r-iranges
10130 r-rhdf5
10131 r-s4vectors
10132 r-xml))
10133 (native-inputs
10134 (list r-knitr))
10135 (home-page "https://github.com/rcastelo/GenomicScores/")
10136 (synopsis "Work with genome-wide position-specific scores")
10137 (description
10138 "This package provides infrastructure to store and access genome-wide
10139 position-specific scores within R and Bioconductor.")
10140 (license license:artistic2.0)))
10141
10142 (define-public r-atacseqqc
10143 (package
10144 (name "r-atacseqqc")
10145 (version "1.20.2")
10146 (source
10147 (origin
10148 (method url-fetch)
10149 (uri (bioconductor-uri "ATACseqQC" version))
10150 (sha256
10151 (base32
10152 "0jj7n0mcj0gciw0ksazlksgmwzp51a40pwqhf0c7la0cc4bnrkqp"))))
10153 (properties `((upstream-name . "ATACseqQC")))
10154 (build-system r-build-system)
10155 (propagated-inputs
10156 (list r-biocgenerics
10157 r-biostrings
10158 r-bsgenome
10159 r-chippeakanno
10160 r-edger
10161 r-genomeinfodb
10162 r-genomicalignments
10163 r-genomicranges
10164 r-genomicscores
10165 r-iranges
10166 r-kernsmooth
10167 r-limma
10168 r-motifstack
10169 r-preseqr
10170 r-randomforest
10171 r-rsamtools
10172 r-rtracklayer
10173 r-s4vectors))
10174 (native-inputs
10175 (list r-knitr))
10176 (home-page "https://bioconductor.org/packages/ATACseqQC/")
10177 (synopsis "ATAC-seq quality control")
10178 (description
10179 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
10180 sequencing, is a rapid and sensitive method for chromatin accessibility
10181 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
10182 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
10183 assess whether their ATAC-seq experiment is successful. It includes
10184 diagnostic plots of fragment size distribution, proportion of mitochondria
10185 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
10186 footprints.")
10187 (license license:gpl2+)))
10188
10189 (define-public r-gofuncr
10190 (package
10191 (name "r-gofuncr")
10192 (version "1.16.0")
10193 (source
10194 (origin
10195 (method url-fetch)
10196 (uri (bioconductor-uri "GOfuncR" version))
10197 (sha256
10198 (base32
10199 "02vdfsjrqp0m06mfbspwkxjyqxfca0w1idgygpi1a9i5m4fqhwpk"))))
10200 (properties `((upstream-name . "GOfuncR")))
10201 (build-system r-build-system)
10202 (propagated-inputs
10203 (list r-annotationdbi
10204 r-genomicranges
10205 r-gtools
10206 r-iranges
10207 r-mapplots
10208 r-rcpp
10209 r-vioplot))
10210 (native-inputs
10211 (list r-knitr))
10212 (home-page "https://bioconductor.org/packages/GOfuncR/")
10213 (synopsis "Gene ontology enrichment using FUNC")
10214 (description
10215 "GOfuncR performs a gene ontology enrichment analysis based on the
10216 ontology enrichment software FUNC. GO-annotations are obtained from
10217 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
10218 included in the package and updated regularly. GOfuncR provides the standard
10219 candidate vs background enrichment analysis using the hypergeometric test, as
10220 well as three additional tests:
10221
10222 @enumerate
10223 @item the Wilcoxon rank-sum test that is used when genes are ranked,
10224 @item a binomial test that is used when genes are associated with two counts,
10225 and
10226 @item a Chi-square or Fisher's exact test that is used in cases when genes are
10227 associated with four counts.
10228 @end enumerate
10229
10230 To correct for multiple testing and interdependency of the tests, family-wise
10231 error rates are computed based on random permutations of the gene-associated
10232 variables. GOfuncR also provides tools for exploring the ontology graph and
10233 the annotations, and options to take gene-length or spatial clustering of
10234 genes into account. It is also possible to provide custom gene coordinates,
10235 annotations and ontologies.")
10236 (license license:gpl2+)))
10237
10238 (define-public r-abaenrichment
10239 (package
10240 (name "r-abaenrichment")
10241 (version "1.24.0")
10242 (source
10243 (origin
10244 (method url-fetch)
10245 (uri (bioconductor-uri "ABAEnrichment" version))
10246 (sha256
10247 (base32
10248 "1sp3f72rzlr822dxx42bswynrwwfx6f520hdhfdikqp13p2y4044"))))
10249 (properties `((upstream-name . "ABAEnrichment")))
10250 (build-system r-build-system)
10251 (propagated-inputs
10252 (list r-abadata
10253 r-data-table
10254 r-gofuncr
10255 r-gplots
10256 r-gtools
10257 r-rcpp))
10258 (native-inputs
10259 (list r-knitr))
10260 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
10261 (synopsis "Gene expression enrichment in human brain regions")
10262 (description
10263 "The package ABAEnrichment is designed to test for enrichment of user
10264 defined candidate genes in the set of expressed genes in different human brain
10265 regions. The core function @code{aba_enrich} integrates the expression of the
10266 candidate gene set (averaged across donors) and the structural information of
10267 the brain using an ontology, both provided by the Allen Brain Atlas project.")
10268 (license license:gpl2+)))
10269
10270 (define-public r-annotationfuncs
10271 (package
10272 (name "r-annotationfuncs")
10273 (version "1.40.0")
10274 (source
10275 (origin
10276 (method url-fetch)
10277 (uri (bioconductor-uri "AnnotationFuncs" version))
10278 (sha256
10279 (base32
10280 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
10281 (properties
10282 `((upstream-name . "AnnotationFuncs")))
10283 (build-system r-build-system)
10284 (propagated-inputs
10285 (list r-annotationdbi r-dbi))
10286 (home-page "https://www.iysik.com/r/annotationfuncs")
10287 (synopsis "Annotation translation functions")
10288 (description
10289 "This package provides functions for handling translating between
10290 different identifieres using the Biocore Data Team data-packages (e.g.
10291 @code{org.Bt.eg.db}).")
10292 (license license:gpl2)))
10293
10294 (define-public r-annotationtools
10295 (package
10296 (name "r-annotationtools")
10297 (version "1.70.0")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (bioconductor-uri "annotationTools" version))
10302 (sha256
10303 (base32
10304 "122b424zida3j0vqkn8d06sg3jpc3ngsgidr8kgg00n4cjngkc51"))))
10305 (properties
10306 `((upstream-name . "annotationTools")))
10307 (build-system r-build-system)
10308 (propagated-inputs (list r-biobase))
10309 (home-page "https://bioconductor.org/packages/annotationTools/")
10310 (synopsis "Annotate microarrays and perform gene expression analyses")
10311 (description
10312 "This package provides functions to annotate microarrays, find orthologs,
10313 and integrate heterogeneous gene expression profiles using annotation and
10314 other molecular biology information available as flat file database (plain
10315 text files).")
10316 ;; Any version of the GPL.
10317 (license (list license:gpl2+))))
10318
10319 (define-public r-allelicimbalance
10320 (package
10321 (name "r-allelicimbalance")
10322 (version "1.34.0")
10323 (source
10324 (origin
10325 (method url-fetch)
10326 (uri (bioconductor-uri "AllelicImbalance" version))
10327 (sha256
10328 (base32
10329 "0w4xd0xzkwx7bbhrgqligpahlhg85rginknx520z891r8v0bim2z"))))
10330 (properties
10331 `((upstream-name . "AllelicImbalance")))
10332 (build-system r-build-system)
10333 (propagated-inputs
10334 (list r-annotationdbi
10335 r-biocgenerics
10336 r-biostrings
10337 r-bsgenome
10338 r-genomeinfodb
10339 r-genomicalignments
10340 r-genomicfeatures
10341 r-genomicranges
10342 r-gridextra
10343 r-gviz
10344 r-iranges
10345 r-lattice
10346 r-latticeextra
10347 r-nlme
10348 r-rsamtools
10349 r-s4vectors
10350 r-seqinr
10351 r-summarizedexperiment
10352 r-variantannotation))
10353 (native-inputs
10354 (list r-knitr))
10355 (home-page "https://github.com/pappewaio/AllelicImbalance")
10356 (synopsis "Investigate allele-specific expression")
10357 (description
10358 "This package provides a framework for allele-specific expression
10359 investigation using RNA-seq data.")
10360 (license license:gpl3)))
10361
10362 (define-public r-aucell
10363 (package
10364 (name "r-aucell")
10365 (version "1.18.1")
10366 (source
10367 (origin
10368 (method url-fetch)
10369 (uri (bioconductor-uri "AUCell" version))
10370 (sha256
10371 (base32
10372 "17wr7dycll0l1gax4w268qw7is163bs51rj6p1qnx1dgc9ibnsgr"))))
10373 (properties `((upstream-name . "AUCell")))
10374 (build-system r-build-system)
10375 (propagated-inputs
10376 (list r-biocgenerics
10377 r-data-table
10378 r-delayedarray
10379 r-delayedmatrixstats
10380 r-gseabase
10381 r-mixtools
10382 r-r-utils
10383 r-shiny
10384 r-summarizedexperiment))
10385 (native-inputs
10386 (list r-knitr))
10387 (home-page "https://bioconductor.org/packages/AUCell/")
10388 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
10389 (description
10390 "AUCell identifies cells with active gene sets (e.g. signatures,
10391 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
10392 Under the Curve} (AUC) to calculate whether a critical subset of the input
10393 gene set is enriched within the expressed genes for each cell. The
10394 distribution of AUC scores across all the cells allows exploring the relative
10395 expression of the signature. Since the scoring method is ranking-based,
10396 AUCell is independent of the gene expression units and the normalization
10397 procedure. In addition, since the cells are evaluated individually, it can
10398 easily be applied to bigger datasets, subsetting the expression matrix if
10399 needed.")
10400 (license license:gpl3)))
10401
10402 (define-public r-ebimage
10403 (package
10404 (name "r-ebimage")
10405 (version "4.38.0")
10406 (source
10407 (origin
10408 (method url-fetch)
10409 (uri (bioconductor-uri "EBImage" version))
10410 (sha256
10411 (base32
10412 "1vcx45bw36k9daw9dywj5bz77jmqk4gjfwsym8ajjnc1jmlq20si"))))
10413 (properties `((upstream-name . "EBImage")))
10414 (build-system r-build-system)
10415 (propagated-inputs
10416 (list r-abind
10417 r-biocgenerics
10418 r-fftwtools
10419 r-htmltools
10420 r-htmlwidgets
10421 r-jpeg
10422 r-locfit
10423 r-png
10424 r-rcurl
10425 r-tiff))
10426 (native-inputs
10427 (list r-knitr)) ; for vignettes
10428 (home-page "https://github.com/aoles/EBImage")
10429 (synopsis "Image processing and analysis toolbox for R")
10430 (description
10431 "EBImage provides general purpose functionality for image processing and
10432 analysis. In the context of (high-throughput) microscopy-based cellular
10433 assays, EBImage offers tools to segment cells and extract quantitative
10434 cellular descriptors. This allows the automation of such tasks using the R
10435 programming language and facilitates the use of other tools in the R
10436 environment for signal processing, statistical modeling, machine learning and
10437 visualization with image data.")
10438 ;; Any version of the LGPL.
10439 (license license:lgpl2.1+)))
10440
10441 (define-public r-yamss
10442 (package
10443 (name "r-yamss")
10444 (version "1.22.0")
10445 (source
10446 (origin
10447 (method url-fetch)
10448 (uri (bioconductor-uri "yamss" version))
10449 (sha256
10450 (base32
10451 "1lcfxw73cxvpy3bnq28pxdy5128mpq5xklsa0mzxdjyqc4g55hy8"))))
10452 (build-system r-build-system)
10453 (propagated-inputs
10454 (list r-biocgenerics
10455 r-data-table
10456 r-ebimage
10457 r-iranges
10458 r-limma
10459 r-matrix
10460 r-mzr
10461 r-s4vectors
10462 r-summarizedexperiment))
10463 (native-inputs
10464 (list r-knitr))
10465 (home-page "https://github.com/hansenlab/yamss")
10466 (synopsis "Tools for high-throughput metabolomics")
10467 (description
10468 "This package provides tools to analyze and visualize high-throughput
10469 metabolomics data acquired using chromatography-mass spectrometry. These tools
10470 preprocess data in a way that enables reliable and powerful differential
10471 analysis.")
10472 (license license:artistic2.0)))
10473
10474 (define-public r-gtrellis
10475 (package
10476 (name "r-gtrellis")
10477 (version "1.28.0")
10478 (source
10479 (origin
10480 (method url-fetch)
10481 (uri (bioconductor-uri "gtrellis" version))
10482 (sha256
10483 (base32
10484 "1s4xczzv6hz2kyv32xgcq84540w75qr3f644w1s4c3kwxgyq2gff"))))
10485 (build-system r-build-system)
10486 (propagated-inputs
10487 (list r-circlize r-genomicranges r-getoptlong r-iranges))
10488 (native-inputs
10489 (list r-knitr))
10490 (home-page "https://github.com/jokergoo/gtrellis")
10491 (synopsis "Genome level Trellis layout")
10492 (description
10493 "Genome level Trellis graph visualizes genomic data conditioned by
10494 genomic categories (e.g. chromosomes). For each genomic category, multiple
10495 dimensional data which are represented as tracks describe different features
10496 from different aspects. This package provides high flexibility to arrange
10497 genomic categories and to add self-defined graphics in the plot.")
10498 (license license:expat)))
10499
10500 (define-public r-somaticsignatures
10501 (package
10502 (name "r-somaticsignatures")
10503 (version "2.32.0")
10504 (source
10505 (origin
10506 (method url-fetch)
10507 (uri (bioconductor-uri "SomaticSignatures" version))
10508 (sha256
10509 (base32
10510 "1ydnp54laznzpi08s403kxhnr5nqhvm3iilaxlcdlz0ngxhm6vx6"))))
10511 (properties
10512 `((upstream-name . "SomaticSignatures")))
10513 (build-system r-build-system)
10514 (propagated-inputs
10515 (list r-biobase
10516 r-biostrings
10517 r-genomeinfodb
10518 r-genomicranges
10519 r-ggbio
10520 r-ggplot2
10521 r-iranges
10522 r-nmf
10523 r-pcamethods
10524 r-proxy
10525 r-reshape2
10526 r-s4vectors
10527 r-variantannotation))
10528 (native-inputs
10529 (list r-knitr))
10530 (home-page "https://github.com/juliangehring/SomaticSignatures")
10531 (synopsis "Somatic signatures")
10532 (description
10533 "This package identifies mutational signatures of @dfn{single nucleotide
10534 variants} (SNVs). It provides a infrastructure related to the methodology
10535 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
10536 decomposition algorithms.")
10537 (license license:expat)))
10538
10539 (define-public r-yapsa
10540 (package
10541 (name "r-yapsa")
10542 (version "1.22.0")
10543 (source
10544 (origin
10545 (method url-fetch)
10546 (uri (bioconductor-uri "YAPSA" version))
10547 (sha256
10548 (base32
10549 "1klqfif4sadkxw7agywk2ncvcdqsnfb1d6adnacdfdasr8abvhid"))))
10550 (properties `((upstream-name . "YAPSA")))
10551 (build-system r-build-system)
10552 (propagated-inputs
10553 (list r-biostrings
10554 r-bsgenome-hsapiens-ucsc-hg19
10555 r-circlize
10556 r-complexheatmap
10557 r-corrplot
10558 r-dendextend
10559 r-doparallel
10560 r-dplyr
10561 r-genomeinfodb
10562 r-genomicranges
10563 r-getoptlong
10564 r-ggbeeswarm
10565 r-ggplot2
10566 r-gridextra
10567 r-gtrellis
10568 r-keggrest
10569 r-limsolve
10570 r-magrittr
10571 r-pmcmrplus
10572 r-pracma
10573 r-reshape2
10574 r-somaticsignatures
10575 r-variantannotation))
10576 (native-inputs
10577 (list r-knitr))
10578 (home-page "https://bioconductor.org/packages/YAPSA/")
10579 (synopsis "Yet another package for signature analysis")
10580 (description
10581 "This package provides functions and routines useful in the analysis of
10582 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
10583 functions to perform a signature analysis with known signatures and a
10584 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
10585 provided.")
10586 (license license:gpl3)))
10587
10588 (define-public r-gcrma
10589 (package
10590 (name "r-gcrma")
10591 (version "2.68.0")
10592 (source
10593 (origin
10594 (method url-fetch)
10595 (uri (bioconductor-uri "gcrma" version))
10596 (sha256
10597 (base32
10598 "13a8igr2b02gsa6n3437kb33wg6h7si82fmqi35dzpfzhvx0qf6d"))))
10599 (build-system r-build-system)
10600 (propagated-inputs
10601 (list r-affy
10602 r-affyio
10603 r-biobase
10604 r-biocmanager
10605 r-biostrings
10606 r-xvector))
10607 (home-page "https://bioconductor.org/packages/gcrma/")
10608 (synopsis "Background adjustment using sequence information")
10609 (description
10610 "Gcrma adjusts for background intensities in Affymetrix array data which
10611 include optical noise and @dfn{non-specific binding} (NSB). The main function
10612 @code{gcrma} converts background adjusted probe intensities to expression
10613 measures using the same normalization and summarization methods as a
10614 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
10615 to estimate probe affinity to NSB. The sequence information is summarized in
10616 a more complex way than the simple GC content. Instead, the base types (A, T,
10617 G or C) at each position along the probe determine the affinity of each probe.
10618 The parameters of the position-specific base contributions to the probe
10619 affinity is estimated in an NSB experiment in which only NSB but no
10620 gene-specific binding is expected.")
10621 ;; Any version of the LGPL
10622 (license license:lgpl2.1+)))
10623
10624 (define-public r-simpleaffy
10625 (package
10626 (name "r-simpleaffy")
10627 (version "2.66.0")
10628 (source
10629 (origin
10630 (method url-fetch)
10631 (uri (bioconductor-uri "simpleaffy" version))
10632 (sha256
10633 (base32
10634 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
10635 (build-system r-build-system)
10636 (propagated-inputs
10637 (list r-affy r-biobase r-biocgenerics r-gcrma r-genefilter))
10638 (home-page "https://bioconductor.org/packages/simpleaffy/")
10639 (synopsis "Very simple high level analysis of Affymetrix data")
10640 (description
10641 "This package provides high level functions for reading Affy @file{.CEL}
10642 files, phenotypic data, and then computing simple things with it, such as
10643 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
10644 library. It also has some basic scatter plot functions and mechanisms for
10645 generating high resolution journal figures.")
10646 (license license:gpl2+)))
10647
10648 (define-public r-yaqcaffy
10649 (package
10650 (name "r-yaqcaffy")
10651 (version "1.50.0")
10652 (source
10653 (origin
10654 (method url-fetch)
10655 (uri (bioconductor-uri "yaqcaffy" version))
10656 (sha256
10657 (base32
10658 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
10659 (build-system r-build-system)
10660 (propagated-inputs
10661 (list r-simpleaffy))
10662 (home-page "https://bioconductor.org/packages/yaqcaffy/")
10663 (synopsis "Affymetrix quality control and reproducibility analysis")
10664 (description
10665 "This is a package that can be used for quality control of Affymetrix
10666 GeneChip expression data and reproducibility analysis of human whole genome
10667 chips with the MAQC reference datasets.")
10668 (license license:artistic2.0)))
10669
10670 (define-public r-quantro
10671 (package
10672 (name "r-quantro")
10673 (version "1.30.0")
10674 (source
10675 (origin
10676 (method url-fetch)
10677 (uri (bioconductor-uri "quantro" version))
10678 (sha256
10679 (base32
10680 "1zfrz7lxyrbf0c8d277npzj1h4six9whkqplvcjmn3li0xj5qng3"))))
10681 (build-system r-build-system)
10682 (propagated-inputs
10683 (list r-biobase
10684 r-doparallel
10685 r-foreach
10686 r-ggplot2
10687 r-iterators
10688 r-minfi
10689 r-rcolorbrewer))
10690 (native-inputs
10691 (list r-knitr))
10692 (home-page "https://bioconductor.org/packages/quantro/")
10693 (synopsis "Test for when to use quantile normalization")
10694 (description
10695 "This package provides a data-driven test for the assumptions of quantile
10696 normalization using raw data such as objects that inherit eSets (e.g.
10697 ExpressionSet, MethylSet). Group level information about each sample (such as
10698 Tumor / Normal status) must also be provided because the test assesses if
10699 there are global differences in the distributions between the user-defined
10700 groups.")
10701 (license license:gpl3+)))
10702
10703 (define-public r-yarn
10704 (package
10705 (name "r-yarn")
10706 (version "1.22.0")
10707 (source
10708 (origin
10709 (method url-fetch)
10710 (uri (bioconductor-uri "yarn" version))
10711 (sha256
10712 (base32
10713 "0z5202pqq02fwm8qf1g36004k7sv668s1xacbpr1cvw5sl452lbg"))))
10714 (build-system r-build-system)
10715 (propagated-inputs
10716 (list r-biobase
10717 r-biomart
10718 r-downloader
10719 r-edger
10720 r-gplots
10721 r-limma
10722 r-matrixstats
10723 r-preprocesscore
10724 r-quantro
10725 r-rcolorbrewer
10726 r-readr))
10727 (native-inputs
10728 (list r-knitr))
10729 (home-page "https://bioconductor.org/packages/yarn/")
10730 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
10731 (description
10732 "Expedite large RNA-Seq analyses using a combination of previously
10733 developed tools. YARN is meant to make it easier for the user in performing
10734 basic mis-annotation quality control, filtering, and condition-aware
10735 normalization. YARN leverages many Bioconductor tools and statistical
10736 techniques to account for the large heterogeneity and sparsity found in very
10737 large RNA-seq experiments.")
10738 (license license:artistic2.0)))
10739
10740 (define-public r-roar
10741 (package
10742 (name "r-roar")
10743 (version "1.32.0")
10744 (source
10745 (origin
10746 (method url-fetch)
10747 (uri (bioconductor-uri "roar" version))
10748 (sha256
10749 (base32
10750 "0zq1praf5h9294cvmrb06l3chx8v40xw2sfvhlnh1516x9sjkwfc"))))
10751 (build-system r-build-system)
10752 (propagated-inputs
10753 (list r-biocgenerics
10754 r-genomeinfodb
10755 r-genomicalignments
10756 r-genomicranges
10757 r-iranges
10758 r-rtracklayer
10759 r-s4vectors
10760 r-summarizedexperiment))
10761 (home-page "https://github.com/vodkatad/roar/")
10762 (synopsis "Identify differential APA usage from RNA-seq alignments")
10763 (description
10764 "This package provides tools for identifying preferential usage of APA
10765 sites, comparing two biological conditions, starting from known alternative
10766 sites and alignments obtained from standard RNA-seq experiments.")
10767 (license license:gpl3)))
10768
10769 (define-public r-xbseq
10770 (package
10771 (name "r-xbseq")
10772 (version "1.22.0")
10773 (source
10774 (origin
10775 (method url-fetch)
10776 (uri (bioconductor-uri "XBSeq" version))
10777 (sha256
10778 (base32
10779 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
10780 (properties `((upstream-name . "XBSeq")))
10781 (build-system r-build-system)
10782 (propagated-inputs
10783 (list r-biobase
10784 r-deseq2
10785 r-dplyr
10786 r-ggplot2
10787 r-locfit
10788 r-magrittr
10789 r-matrixstats
10790 r-pracma
10791 r-roar))
10792 (native-inputs
10793 (list r-knitr))
10794 (home-page "https://github.com/Liuy12/XBSeq")
10795 (synopsis "Test for differential expression for RNA-seq data")
10796 (description
10797 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
10798 expression} (DE), where a statistical model was established based on the
10799 assumption that observed signals are the convolution of true expression
10800 signals and sequencing noises. The mapped reads in non-exonic regions are
10801 considered as sequencing noises, which follows a Poisson distribution. Given
10802 measurable observed signal and background noise from RNA-seq data, true
10803 expression signals, assuming governed by the negative binomial distribution,
10804 can be delineated and thus the accurate detection of differential expressed
10805 genes.")
10806 (license license:gpl3+)))
10807
10808 (define-public r-massspecwavelet
10809 (package
10810 (name "r-massspecwavelet")
10811 (version "1.62.0")
10812 (source
10813 (origin
10814 (method url-fetch)
10815 (uri (bioconductor-uri "MassSpecWavelet" version))
10816 (sha256
10817 (base32
10818 "0g9izdy3f7h1zmsfbq45ahdz0ak5013rp3vxc4ijb1mpqx8ldd39"))))
10819 (properties
10820 `((upstream-name . "MassSpecWavelet")))
10821 (build-system r-build-system)
10822 (native-inputs
10823 (list r-knitr))
10824 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
10825 (synopsis "Mass spectrum processing by wavelet-based algorithms")
10826 (description
10827 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
10828 data mainly through the use of wavelet transforms. It supports peak detection
10829 based on @dfn{Continuous Wavelet Transform} (CWT).")
10830 (license license:lgpl2.0+)))
10831
10832 (define-public r-xcms
10833 (package
10834 (name "r-xcms")
10835 (version "3.18.0")
10836 (source
10837 (origin
10838 (method url-fetch)
10839 (uri (bioconductor-uri "xcms" version))
10840 (sha256
10841 (base32
10842 "0p2zd2728lj5q8y24gdfvsjijd6zl2i73hrcf017n32jq7vn71xm"))))
10843 (build-system r-build-system)
10844 (propagated-inputs
10845 (list r-biobase
10846 r-biocgenerics
10847 r-biocparallel
10848 r-iranges
10849 r-lattice
10850 r-massspecwavelet
10851 r-mscoreutils
10852 r-msfeatures
10853 r-msnbase
10854 r-mzr
10855 r-plyr
10856 r-protgenerics
10857 r-rann
10858 r-rcolorbrewer
10859 r-robustbase
10860 r-s4vectors
10861 r-summarizedexperiment))
10862 (native-inputs
10863 (list r-knitr))
10864 (home-page "https://bioconductor.org/packages/xcms/")
10865 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
10866 (description
10867 "This package provides a framework for processing and visualization of
10868 chromatographically separated and single-spectra mass spectral data. It
10869 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
10870 data for high-throughput, untargeted analyte profiling.")
10871 (license license:gpl2+)))
10872
10873 (define-public r-wppi
10874 (package
10875 (name "r-wppi")
10876 (version "1.4.0")
10877 (source (origin
10878 (method url-fetch)
10879 (uri (bioconductor-uri "wppi" version))
10880 (sha256
10881 (base32
10882 "1008s39bb7sd261cy1vfgdah7bmhfw9qq322fh7g4wvpfw63ii9f"))))
10883 (properties `((upstream-name . "wppi")))
10884 (build-system r-build-system)
10885 ;; This is necessary because omnipathr attempts to write a configuration
10886 ;; file to HOME.
10887 (arguments
10888 `(#:phases
10889 (modify-phases %standard-phases
10890 (add-after 'unpack 'set-HOME
10891 (lambda _ (setenv "HOME" "/tmp"))))))
10892 (propagated-inputs (list r-dplyr
10893 r-igraph
10894 r-logger
10895 r-magrittr
10896 r-matrix
10897 r-omnipathr
10898 r-progress
10899 r-purrr
10900 r-rcurl
10901 r-rlang
10902 r-tibble
10903 r-tidyr))
10904 (native-inputs (list r-knitr))
10905 (home-page "https://github.com/AnaGalhoz37/wppi")
10906 (synopsis "Weighting protein-protein interactions")
10907 (description
10908 "This package predicts functional relevance of protein-protein
10909 interactions based on functional annotations such as Human Protein Ontology
10910 and Gene Ontology, and prioritizes genes based on network topology, functional
10911 scores and a path search algorithm.")
10912 (license license:expat)))
10913
10914 (define-public r-wrench
10915 (package
10916 (name "r-wrench")
10917 (version "1.14.0")
10918 (source
10919 (origin
10920 (method url-fetch)
10921 (uri (bioconductor-uri "Wrench" version))
10922 (sha256
10923 (base32
10924 "1zx65s4m71wj85s2sq8ip54pq12r4sxfv8b2rxc41gfc5aj0zzca"))))
10925 (properties `((upstream-name . "Wrench")))
10926 (build-system r-build-system)
10927 (propagated-inputs
10928 (list r-limma r-locfit r-matrixstats))
10929 (native-inputs
10930 (list r-knitr))
10931 (home-page "https://github.com/HCBravoLab/Wrench")
10932 (synopsis "Wrench normalization for sparse count data")
10933 (description
10934 "Wrench is a package for normalization sparse genomic count data, like
10935 that arising from 16s metagenomic surveys.")
10936 (license license:artistic2.0)))
10937
10938 (define-public r-wiggleplotr
10939 (package
10940 (name "r-wiggleplotr")
10941 (version "1.20.0")
10942 (source
10943 (origin
10944 (method url-fetch)
10945 (uri (bioconductor-uri "wiggleplotr" version))
10946 (sha256
10947 (base32
10948 "0s128mm5w8n072k6j0fv1mxnxjpwisjp5lpz8a9z96cnn69bnr0i"))))
10949 (build-system r-build-system)
10950 (propagated-inputs
10951 (list r-assertthat
10952 r-cowplot
10953 r-dplyr
10954 r-genomeinfodb
10955 r-genomicranges
10956 r-ggplot2
10957 r-iranges
10958 r-purrr
10959 r-rtracklayer
10960 r-s4vectors))
10961 (native-inputs
10962 (list r-knitr))
10963 (home-page "https://bioconductor.org/packages/wiggleplotr/")
10964 (synopsis "Make read coverage plots from BigWig files")
10965 (description
10966 "This package provides tools to visualize read coverage from sequencing
10967 experiments together with genomic annotations (genes, transcripts, peaks).
10968 Introns of long transcripts can be rescaled to a fixed length for better
10969 visualization of exonic read coverage.")
10970 (license license:asl2.0)))
10971
10972 (define-public r-widgettools
10973 (package
10974 (name "r-widgettools")
10975 (version "1.74.0")
10976 (source
10977 (origin
10978 (method url-fetch)
10979 (uri (bioconductor-uri "widgetTools" version))
10980 (sha256
10981 (base32
10982 "10w1s5h4za6ibmphvj145ir3lp22qgah2z8fvmipmf8ciq1jf86d"))))
10983 (properties `((upstream-name . "widgetTools")))
10984 (build-system r-build-system)
10985 (home-page "https://bioconductor.org/packages/widgetTools/")
10986 (synopsis "Tools for creating interactive tcltk widgets")
10987 (description
10988 "This package contains tools to support the construction of tcltk
10989 widgets in R.")
10990 ;; Any version of the LGPL.
10991 (license license:lgpl3+)))
10992
10993 (define-public r-webbioc
10994 (package
10995 (name "r-webbioc")
10996 (version "1.68.0")
10997 (source
10998 (origin
10999 (method url-fetch)
11000 (uri (bioconductor-uri "webbioc" version))
11001 (sha256
11002 (base32
11003 "1g3srxsa2fqcn3r4wz4y19fwjmw3vawlcvdw6lbjdnvbgcafq1ah"))))
11004 (build-system r-build-system)
11005 (inputs
11006 (list netpbm perl))
11007 (propagated-inputs
11008 (list r-affy
11009 r-annaffy
11010 r-biobase
11011 r-biocmanager
11012 r-gcrma
11013 r-multtest
11014 r-qvalue
11015 r-vsn))
11016 (home-page "https://www.bioconductor.org/")
11017 (synopsis "Bioconductor web interface")
11018 (description
11019 "This package provides an integrated web interface for doing microarray
11020 analysis using several of the Bioconductor packages. It is intended to be
11021 deployed as a centralized bioinformatics resource for use by many users.
11022 Currently only Affymetrix oligonucleotide analysis is supported.")
11023 (license license:gpl2+)))
11024
11025 (define-public r-zinbwave
11026 (package
11027 (name "r-zinbwave")
11028 (version "1.18.0")
11029 (source
11030 (origin
11031 (method url-fetch)
11032 (uri (bioconductor-uri "zinbwave" version))
11033 (sha256
11034 (base32
11035 "0vpz721sciw5b4ypxj5lj8p53gwkpfwlwkn6k3y8i65zg80p1g6i"))))
11036 (build-system r-build-system)
11037 (propagated-inputs
11038 (list r-biocparallel
11039 r-edger
11040 r-genefilter
11041 r-matrix
11042 r-singlecellexperiment
11043 r-softimpute
11044 r-summarizedexperiment))
11045 (native-inputs
11046 (list r-knitr))
11047 (home-page "https://bioconductor.org/packages/zinbwave")
11048 (synopsis "Zero-inflated negative binomial model for RNA-seq data")
11049 (description "This package implements a general and flexible zero-inflated
11050 negative binomial model that can be used to provide a low-dimensional
11051 representations of single-cell RNA-seq data. The model accounts for zero
11052 inflation (dropouts), over-dispersion, and the count nature of the data.
11053 The model also accounts for the difference in library sizes and optionally
11054 for batch effects and/or other covariates, avoiding the need for pre-normalize
11055 the data.")
11056 (license license:artistic2.0)))
11057
11058 (define-public r-zfpkm
11059 (package
11060 (name "r-zfpkm")
11061 (version "1.18.0")
11062 (source
11063 (origin
11064 (method url-fetch)
11065 (uri (bioconductor-uri "zFPKM" version))
11066 (sha256
11067 (base32
11068 "1h7g553rgb5mkmmsp8dyqqs9n9x17xmmcg3iijhb54nyrr2j1mji"))))
11069 (properties `((upstream-name . "zFPKM")))
11070 (build-system r-build-system)
11071 (propagated-inputs
11072 (list r-checkmate r-dplyr r-ggplot2 r-summarizedexperiment r-tidyr))
11073 (native-inputs
11074 (list r-knitr))
11075 (home-page "https://github.com/ronammar/zFPKM/")
11076 (synopsis "Functions to facilitate zFPKM transformations")
11077 (description
11078 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
11079 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
11080 24215113).")
11081 (license license:gpl3)))
11082
11083 (define-public r-rbowtie2
11084 (package
11085 (name "r-rbowtie2")
11086 (version "2.2.0")
11087 (source
11088 (origin
11089 (method url-fetch)
11090 (uri (bioconductor-uri "Rbowtie2" version))
11091 (sha256
11092 (base32
11093 "0dhdx27vrkhd4fak0qb5q9amlcpi97xhf3ry39zk0ifx5zpjynkg"))))
11094 (properties `((upstream-name . "Rbowtie2")))
11095 (build-system r-build-system)
11096 (propagated-inputs
11097 (list r-magrittr r-rsamtools))
11098 (inputs
11099 (list samtools zlib))
11100 (native-inputs
11101 (list r-knitr))
11102 (home-page "https://bioconductor.org/packages/Rbowtie2/")
11103 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
11104 (description
11105 "This package provides an R wrapper of the popular @code{bowtie2}
11106 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
11107 rapid adapter trimming, identification, and read merging.")
11108 (license license:gpl3+)))
11109
11110 (define-public r-progeny
11111 (package
11112 (name "r-progeny")
11113 (version "1.18.0")
11114 (source
11115 (origin
11116 (method url-fetch)
11117 (uri (bioconductor-uri "progeny" version))
11118 (sha256
11119 (base32
11120 "1rhy2l2yf9ndxlvff8756s6n8qyi42nz7a75lgygj5aqqckkj21b"))))
11121 (build-system r-build-system)
11122 (propagated-inputs
11123 (list r-biobase
11124 r-decoupler
11125 r-dplyr
11126 r-ggplot2
11127 r-ggrepel
11128 r-gridextra
11129 r-reshape2
11130 r-tidyr))
11131 (native-inputs
11132 (list r-knitr))
11133 (home-page "https://github.com/saezlab/progeny")
11134 (synopsis "Pathway responsive gene activity inference")
11135 (description
11136 "This package provides a function to infer pathway activity from gene
11137 expression. It contains the linear model inferred in the publication
11138 \"Perturbation-response genes reveal signaling footprints in cancer gene
11139 expression\".")
11140 (license license:asl2.0)))
11141
11142 (define-public r-arrmnormalization
11143 (package
11144 (name "r-arrmnormalization")
11145 (version "1.36.0")
11146 (source
11147 (origin
11148 (method url-fetch)
11149 (uri (bioconductor-uri "ARRmNormalization" version))
11150 (sha256
11151 (base32
11152 "1pnvw8psbql787m8lrmhd9xbmgkc3dbc70yfds1aggv50dk3yjk1"))))
11153 (properties
11154 `((upstream-name . "ARRmNormalization")))
11155 (build-system r-build-system)
11156 (propagated-inputs (list r-arrmdata))
11157 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
11158 (synopsis "Adaptive robust regression normalization for methylation data")
11159 (description
11160 "This is a package to perform the @dfn{Adaptive Robust Regression
11161 method} (ARRm) for the normalization of methylation data from the Illumina
11162 Infinium HumanMethylation 450k assay.")
11163 (license license:artistic2.0)))
11164
11165 (define-public r-biocfilecache
11166 (package
11167 (name "r-biocfilecache")
11168 (version "2.4.0")
11169 (source
11170 (origin
11171 (method url-fetch)
11172 (uri (bioconductor-uri "BiocFileCache" version))
11173 (sha256
11174 (base32
11175 "1bdbmlixrd8wvs25nmzdksq5hwnsxf8b6ds9qwx01h284vky5vsw"))))
11176 (properties `((upstream-name . "BiocFileCache")))
11177 (build-system r-build-system)
11178 (propagated-inputs
11179 (list r-curl
11180 r-dbi
11181 r-dbplyr
11182 r-dplyr
11183 r-filelock
11184 r-httr
11185 r-rappdirs
11186 r-rsqlite))
11187 (native-inputs
11188 (list r-knitr))
11189 (home-page "https://bioconductor.org/packages/BiocFileCache/")
11190 (synopsis "Manage files across sessions")
11191 (description
11192 "This package creates a persistent on-disk cache of files that the user
11193 can add, update, and retrieve. It is useful for managing resources (such as
11194 custom Txdb objects) that are costly or difficult to create, web resources,
11195 and data files used across sessions.")
11196 (license license:artistic2.0)))
11197
11198 (define-public r-iclusterplus
11199 (package
11200 (name "r-iclusterplus")
11201 (version "1.32.0")
11202 (source
11203 (origin
11204 (method url-fetch)
11205 (uri (bioconductor-uri "iClusterPlus" version))
11206 (sha256
11207 (base32
11208 "0xzx3vly3p99zc5a69pra4jjp8d3bdhx7dl1l76w459cs58zy0sm"))))
11209 (properties `((upstream-name . "iClusterPlus")))
11210 (build-system r-build-system)
11211 (native-inputs (list gfortran))
11212 (home-page "https://bioconductor.org/packages/iClusterPlus/")
11213 (synopsis "Integrative clustering of multi-type genomic data")
11214 (description
11215 "iClusterPlus is developed for integrative clustering analysis of
11216 multi-type genomic data and is an enhanced version of iCluster proposed and
11217 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
11218 from the experiments where biological samples (e.g. tumor samples) are
11219 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
11220 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
11221 on. In the iClusterPlus model, binary observations such as somatic mutation
11222 are modeled as Binomial processes; categorical observations such as copy
11223 number states are realizations of Multinomial random variables; counts are
11224 modeled as Poisson random processes; and continuous measures are modeled by
11225 Gaussian distributions.")
11226 (license license:gpl2+)))
11227
11228 (define-public r-rbowtie
11229 (package
11230 (name "r-rbowtie")
11231 (version "1.36.0")
11232 (source
11233 (origin
11234 (method url-fetch)
11235 (uri (bioconductor-uri "Rbowtie" version))
11236 (sha256
11237 (base32
11238 "1ya1irwshsyy9l1fj51b04nv1ahq7a47ck7q19h2cly6yskc4x1q"))))
11239 (properties `((upstream-name . "Rbowtie")))
11240 (build-system r-build-system)
11241 (arguments
11242 `(#:phases
11243 ;; Disable unsupported `popcnt' instructions on
11244 ;; architectures other than x86_64
11245 ,(if (string-prefix? "x86_64"
11246 (or (%current-target-system)
11247 (%current-system)))
11248 '%standard-phases
11249 '(modify-phases %standard-phases
11250 (add-after 'unpack 'patch-sources
11251 (lambda _
11252 (setenv "POPCNT_CAPABILITY" "0")))))))
11253 (inputs (list zlib))
11254 (native-inputs
11255 (list r-knitr))
11256 (home-page "https://bioconductor.org/packages/Rbowtie/")
11257 (synopsis "R bowtie wrapper")
11258 (description
11259 "This package provides an R wrapper around the popular bowtie short read
11260 aligner and around SpliceMap, a de novo splice junction discovery and
11261 alignment tool.")
11262 (license license:artistic2.0)))
11263
11264 (define-public r-sgseq
11265 (package
11266 (name "r-sgseq")
11267 (version "1.30.0")
11268 (source
11269 (origin
11270 (method url-fetch)
11271 (uri (bioconductor-uri "SGSeq" version))
11272 (sha256
11273 (base32
11274 "0hz45367i70wl97silnimicdvs3g41zyf8syc6igz6471wbwkxwp"))))
11275 (properties `((upstream-name . "SGSeq")))
11276 (build-system r-build-system)
11277 (propagated-inputs
11278 (list r-annotationdbi
11279 r-biocgenerics
11280 r-biostrings
11281 r-genomeinfodb
11282 r-genomicalignments
11283 r-genomicfeatures
11284 r-genomicranges
11285 r-igraph
11286 r-iranges
11287 r-rsamtools
11288 r-rtracklayer
11289 r-runit
11290 r-s4vectors
11291 r-summarizedexperiment))
11292 (native-inputs
11293 (list r-knitr))
11294 (home-page "https://bioconductor.org/packages/SGSeq/")
11295 (synopsis "Splice event prediction and quantification from RNA-seq data")
11296 (description
11297 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
11298 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
11299 represented as a splice graph, which can be obtained from existing annotation
11300 or predicted from the mapped sequence reads. Splice events are identified
11301 from the graph and are quantified locally using structurally compatible reads
11302 at the start or end of each splice variant. The software includes functions
11303 for splice event prediction, quantification, visualization and
11304 interpretation.")
11305 (license license:artistic2.0)))
11306
11307 (define-public r-rhisat2
11308 (package
11309 (name "r-rhisat2")
11310 (version "1.12.0")
11311 (source
11312 (origin
11313 (method url-fetch)
11314 (uri (bioconductor-uri "Rhisat2" version))
11315 (sha256
11316 (base32
11317 "0hzair41l47kzykymd169a34pfhb98vrjgkgdf15m17csyz7pnv7"))))
11318 (properties `((upstream-name . "Rhisat2")))
11319 (build-system r-build-system)
11320 (arguments
11321 `(#:phases
11322 (modify-phases %standard-phases
11323 (add-after 'unpack 'make-reproducible
11324 (lambda _
11325 (substitute* "src/Makefile"
11326 (("`hostname`") "guix")
11327 (("`date`") "0")
11328 ;; Avoid shelling out to "which".
11329 (("^CC =.*") (which "gcc"))
11330 (("^CPP =.*") (which "g++")))
11331 #t)))))
11332 (propagated-inputs
11333 (list r-genomicfeatures r-genomicranges r-sgseq))
11334 (native-inputs
11335 (list r-knitr))
11336 (home-page "https://github.com/fmicompbio/Rhisat2")
11337 (synopsis "R Wrapper for HISAT2 sequence aligner")
11338 (description
11339 "This package provides an R interface to the HISAT2 spliced short-read
11340 aligner by Kim et al. (2015). The package contains wrapper functions to
11341 create a genome index and to perform the read alignment to the generated
11342 index.")
11343 (license license:gpl3)))
11344
11345 (define-public r-quasr
11346 (package
11347 (name "r-quasr")
11348 (version "1.36.0")
11349 (source
11350 (origin
11351 (method url-fetch)
11352 (uri (bioconductor-uri "QuasR" version))
11353 (sha256
11354 (base32
11355 "1m0c0rdakkdn4rr6dh51c6rs40cbxkvz93n6s0m2kc6fqjv9zplf"))))
11356 (properties `((upstream-name . "QuasR")))
11357 (build-system r-build-system)
11358 (propagated-inputs
11359 (list r-annotationdbi
11360 r-biobase
11361 r-biocgenerics
11362 r-biocparallel
11363 r-biostrings
11364 r-bsgenome
11365 r-genomeinfodb
11366 r-genomicfeatures
11367 r-genomicfiles
11368 r-genomicranges
11369 r-iranges
11370 r-rbowtie
11371 r-rhtslib
11372 r-rsamtools
11373 r-rtracklayer
11374 r-s4vectors
11375 r-shortread))
11376 (native-inputs
11377 (list r-knitr))
11378 (home-page "https://bioconductor.org/packages/QuasR/")
11379 (synopsis "Quantify and annotate short reads in R")
11380 (description
11381 "This package provides a framework for the quantification and analysis of
11382 short genomic reads. It covers a complete workflow starting from raw sequence
11383 reads, over creation of alignments and quality control plots, to the
11384 quantification of genomic regions of interest.")
11385 (license license:gpl2)))
11386
11387 (define-public r-rqc
11388 (package
11389 (name "r-rqc")
11390 (version "1.30.0")
11391 (source
11392 (origin
11393 (method url-fetch)
11394 (uri (bioconductor-uri "Rqc" version))
11395 (sha256
11396 (base32
11397 "11j8m69zdcmpjb3xzr4s8sqmv8aqgl8q7k81gnd09l3nyjzy0h1k"))))
11398 (properties `((upstream-name . "Rqc")))
11399 (build-system r-build-system)
11400 (propagated-inputs
11401 (list r-biocgenerics
11402 r-biocparallel
11403 r-biocstyle
11404 r-biostrings
11405 r-biovizbase
11406 r-genomicalignments
11407 r-genomicfiles
11408 r-ggplot2
11409 r-iranges
11410 r-knitr
11411 r-markdown
11412 r-plyr
11413 r-rcpp
11414 r-reshape2
11415 r-rsamtools
11416 r-s4vectors
11417 r-shiny
11418 r-shortread))
11419 (native-inputs
11420 (list r-knitr))
11421 (home-page "https://github.com/labbcb/Rqc")
11422 (synopsis "Quality control tool for high-throughput sequencing data")
11423 (description
11424 "Rqc is an optimized tool designed for quality control and assessment of
11425 high-throughput sequencing data. It performs parallel processing of entire
11426 files and produces a report which contains a set of high-resolution
11427 graphics.")
11428 (license license:gpl2+)))
11429
11430 (define-public r-birewire
11431 (package
11432 (name "r-birewire")
11433 (version "3.28.0")
11434 (source
11435 (origin
11436 (method url-fetch)
11437 (uri (bioconductor-uri "BiRewire" version))
11438 (sha256
11439 (base32
11440 "0r3i7n45qgj8wzdsx8wmfk0lc4xbcvxvmfziiqzig7r706q2c2hm"))))
11441 (properties `((upstream-name . "BiRewire")))
11442 (build-system r-build-system)
11443 (propagated-inputs
11444 (list r-igraph r-matrix r-rtsne r-slam))
11445 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
11446 (synopsis "Tools for randomization of bipartite graphs")
11447 (description
11448 "This package provides functions for bipartite network rewiring through N
11449 consecutive switching steps and for the computation of the minimal number of
11450 switching steps to be performed in order to maximise the dissimilarity with
11451 respect to the original network. It includes functions for the analysis of
11452 the introduced randomness across the switching steps and several other
11453 routines to analyse the resulting networks and their natural projections.")
11454 (license license:gpl3)))
11455
11456 (define-public r-birta
11457 (package
11458 (name "r-birta")
11459 (version "1.31.0")
11460 (source
11461 (origin
11462 (method url-fetch)
11463 (uri (bioconductor-uri "birta" version))
11464 (sha256
11465 (base32
11466 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
11467 (build-system r-build-system)
11468 (propagated-inputs
11469 (list r-biobase r-limma r-mass))
11470 (home-page "https://bioconductor.org/packages/birta")
11471 (synopsis "Bayesian inference of regulation of transcriptional activity")
11472 (description
11473 "Expression levels of mRNA molecules are regulated by different
11474 processes, comprising inhibition or activation by transcription factors and
11475 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
11476 Inference of Regulation of Transcriptional Activity) uses the regulatory
11477 networks of transcription factors and miRNAs together with mRNA and miRNA
11478 expression data to predict switches in regulatory activity between two
11479 conditions. A Bayesian network is used to model the regulatory structure and
11480 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
11481 (license license:gpl2+)))
11482
11483 (define-public r-multidataset
11484 (package
11485 (name "r-multidataset")
11486 (version "1.24.0")
11487 (source
11488 (origin
11489 (method url-fetch)
11490 (uri (bioconductor-uri "MultiDataSet" version))
11491 (sha256
11492 (base32
11493 "0rfs6jkzh1i4mj1pgfk4lwzmcl8pcwizra3q3282x3d8h2g98qnf"))))
11494 (properties `((upstream-name . "MultiDataSet")))
11495 (build-system r-build-system)
11496 (propagated-inputs
11497 (list r-biobase
11498 r-biocgenerics
11499 r-genomicranges
11500 r-ggplot2
11501 r-ggrepel
11502 r-iranges
11503 r-limma
11504 r-qqman
11505 r-s4vectors
11506 r-summarizedexperiment))
11507 (native-inputs
11508 (list r-knitr))
11509 (home-page "https://bioconductor.org/packages/MultiDataSet/")
11510 (synopsis "Implementation of MultiDataSet and ResultSet")
11511 (description
11512 "This package provides an implementation of the BRGE's (Bioinformatic
11513 Research Group in Epidemiology from Center for Research in Environmental
11514 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
11515 integrating multi omics data sets and ResultSet is a container for omics
11516 results. This package contains base classes for MEAL and rexposome
11517 packages.")
11518 (license license:expat)))
11519
11520 (define-public r-ropls
11521 (package
11522 (name "r-ropls")
11523 (version "1.28.2")
11524 (source
11525 (origin
11526 (method url-fetch)
11527 (uri (bioconductor-uri "ropls" version))
11528 (sha256
11529 (base32
11530 "07gpx15r8c3wljiwxnff2zp7wxbhzz9r7njk8zg8hpy2q5qm3i6c"))))
11531 (build-system r-build-system)
11532 (propagated-inputs
11533 (list r-biobase
11534 r-multiassayexperiment
11535 r-multidataset
11536 r-summarizedexperiment))
11537 (native-inputs
11538 (list r-knitr)) ; for vignettes
11539 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
11540 (synopsis "Multivariate analysis and feature selection of omics data")
11541 (description
11542 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
11543 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
11544 regression, classification, and feature selection of omics data where the
11545 number of variables exceeds the number of samples and with multicollinearity
11546 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
11547 separately model the variation correlated (predictive) to the factor of
11548 interest and the uncorrelated (orthogonal) variation. While performing
11549 similarly to PLS, OPLS facilitates interpretation.
11550
11551 This package provides imlementations of PCA, PLS, and OPLS for multivariate
11552 analysis and feature selection of omics data. In addition to scores, loadings
11553 and weights plots, the package provides metrics and graphics to determine the
11554 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
11555 validity of the model by permutation testing, detect outliers, and perform
11556 feature selection (e.g. with Variable Importance in Projection or regression
11557 coefficients).")
11558 (license license:cecill)))
11559
11560 (define-public r-biosigner
11561 (package
11562 (name "r-biosigner")
11563 (version "1.24.2")
11564 (source
11565 (origin
11566 (method url-fetch)
11567 (uri (bioconductor-uri "biosigner" version))
11568 (sha256
11569 (base32
11570 "0vdv2by3qv7y8vzr8qgg7apwwgsa0fhlfrhzns7g3nas7883c89m"))))
11571 (build-system r-build-system)
11572 (propagated-inputs
11573 (list r-biobase
11574 r-e1071
11575 r-multiassayexperiment
11576 r-multidataset
11577 r-randomforest
11578 r-ropls
11579 r-summarizedexperiment))
11580 (native-inputs
11581 (list r-knitr))
11582 (home-page "https://bioconductor.org/packages/biosigner/")
11583 (synopsis "Signature discovery from omics data")
11584 (description
11585 "Feature selection is critical in omics data analysis to extract
11586 restricted and meaningful molecular signatures from complex and high-dimension
11587 data, and to build robust classifiers. This package implements a method to
11588 assess the relevance of the variables for the prediction performances of the
11589 classifier. The approach can be run in parallel with the PLS-DA, Random
11590 Forest, and SVM binary classifiers. The signatures and the corresponding
11591 'restricted' models are returned, enabling future predictions on new
11592 datasets.")
11593 (license license:cecill)))
11594
11595 (define-public r-annotatr
11596 (package
11597 (name "r-annotatr")
11598 (version "1.22.0")
11599 (source
11600 (origin
11601 (method url-fetch)
11602 (uri (bioconductor-uri "annotatr" version))
11603 (sha256
11604 (base32
11605 "1fbax9v3d486c8lwf3yfjbf4w7zf53wmdpxk2clwm8ngm7w0pqm0"))))
11606 (build-system r-build-system)
11607 (propagated-inputs
11608 (list r-annotationdbi
11609 r-annotationhub
11610 r-dplyr
11611 r-genomeinfodb
11612 r-genomicfeatures
11613 r-genomicranges
11614 r-ggplot2
11615 r-iranges
11616 r-readr
11617 r-regioner
11618 r-reshape2
11619 r-rtracklayer
11620 r-s4vectors))
11621 (native-inputs
11622 (list r-knitr))
11623 (home-page "https://bioconductor.org/packages/annotatr/")
11624 (synopsis "Annotation of genomic regions to genomic annotations")
11625 (description
11626 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
11627 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
11628 to investigate the intersecting genomic annotations. Such annotations include
11629 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
11630 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
11631 enhancers. The annotatr package provides an easy way to summarize and
11632 visualize the intersection of genomic sites/regions with genomic
11633 annotations.")
11634 (license license:gpl3)))
11635
11636 (define-public r-rsubread
11637 (package
11638 (name "r-rsubread")
11639 (version "2.10.5")
11640 (source
11641 (origin
11642 (method url-fetch)
11643 (uri (bioconductor-uri "Rsubread" version))
11644 (sha256
11645 (base32
11646 "0n9qqbkj2lgxkia6kfpfz06wbc1lvw24qyvn88f48zw5nh0rsrs2"))))
11647 (properties `((upstream-name . "Rsubread")))
11648 (build-system r-build-system)
11649 (inputs (list zlib))
11650 (propagated-inputs
11651 (list r-matrix))
11652 (home-page "https://bioconductor.org/packages/Rsubread/")
11653 (synopsis "Subread sequence alignment and counting for R")
11654 (description
11655 "This package provides tools for alignment, quantification and analysis
11656 of second and third generation sequencing data. It includes functionality for
11657 read mapping, read counting, SNP calling, structural variant detection and
11658 gene fusion discovery. It can be applied to all major sequencing techologies
11659 and to both short and long sequence reads.")
11660 (license license:gpl3)))
11661
11662 (define-public r-flowutils
11663 (package
11664 (name "r-flowutils")
11665 (version "1.59.0")
11666 (source
11667 (origin
11668 (method url-fetch)
11669 (uri (bioconductor-uri "flowUtils" version))
11670 (sha256
11671 (base32
11672 "11x362dqb9mjlsbq6g1qkb8hhnkvm22z5s3wkgmpyy9kyifjkm26"))))
11673 (properties `((upstream-name . "flowUtils")))
11674 (build-system r-build-system)
11675 (propagated-inputs
11676 (list r-biobase
11677 r-corpcor
11678 r-flowcore
11679 r-graph
11680 r-runit
11681 r-xml))
11682 (home-page "https://github.com/jspidlen/flowUtils")
11683 (synopsis "Utilities for flow cytometry")
11684 (description
11685 "This package provides utilities for flow cytometry data.")
11686 (license license:artistic2.0)))
11687
11688 (define-public r-consensusclusterplus
11689 (package
11690 (name "r-consensusclusterplus")
11691 (version "1.60.0")
11692 (source
11693 (origin
11694 (method url-fetch)
11695 (uri (bioconductor-uri "ConsensusClusterPlus" version))
11696 (sha256
11697 (base32
11698 "1021cix4mr9qsafskw4kk1l3wdzx9pk2gcwjifz6f4zqxss9v07p"))))
11699 (properties
11700 `((upstream-name . "ConsensusClusterPlus")))
11701 (build-system r-build-system)
11702 (propagated-inputs
11703 (list r-all r-biobase r-cluster))
11704 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
11705 (synopsis "Clustering algorithm")
11706 (description
11707 "This package provides an implementation of an algorithm for determining
11708 cluster count and membership by stability evidence in unsupervised analysis.")
11709 (license license:gpl2)))
11710
11711 ;; This is the latest commit and it solves a bug from the latest release.
11712 (define-public r-cycombine
11713 (let ((commit "f18504bc83ff5daee2b5eb4b28f09abdaaa66698") (revision "1"))
11714 (package
11715 (name "r-cycombine")
11716 (version (git-version "0.2.6" revision commit))
11717 (source (origin
11718 (method git-fetch)
11719 (uri (git-reference
11720 (url "https://github.com/biosurf/cyCombine")
11721 (commit commit)))
11722 (file-name (git-file-name name version))
11723 (sha256
11724 (base32
11725 "1fiwnik8iahg01732fik85xhz359x32f1xc59h443pdf7jancskm"))))
11726 (properties `((upstream-name . "cyCombine")))
11727 (build-system r-build-system)
11728 (propagated-inputs
11729 (list r-biobase
11730 r-cytolib
11731 r-dplyr
11732 r-flowcore
11733 r-ggplot2
11734 r-knitr
11735 r-kohonen
11736 r-magrittr
11737 r-purrr
11738 r-rcolorbrewer
11739 r-readr
11740 r-readxl
11741 r-stringr
11742 r-sva
11743 r-tibble
11744 r-tidyr))
11745 (native-inputs (list r-knitr))
11746 (home-page "https://github.com/biosurf/cyCombine")
11747 (synopsis "Integration of single-cell cytometry datasets")
11748 (description
11749 "This package provides a method for combining single-cell cytometry
11750 datasets, which increases the analytical flexibility and the statistical power
11751 of the analyses while minimizing technical noise.")
11752 (license license:expat))))
11753
11754 (define-public r-cytolib
11755 (package
11756 (name "r-cytolib")
11757 (version "2.8.0")
11758 (source
11759 (origin
11760 (method url-fetch)
11761 (uri (bioconductor-uri "cytolib" version))
11762 (sha256
11763 (base32
11764 "18b532sicca5l8sn334prrm7g1z1cakiwydccz4i833168pnsjyg"))))
11765 (properties `((upstream-name . "cytolib")))
11766 (build-system r-build-system)
11767 (native-inputs
11768 (list r-knitr))
11769 (propagated-inputs
11770 (list r-bh
11771 r-rcpp
11772 r-rcpparmadillo
11773 r-rcppparallel
11774 r-rhdf5lib
11775 r-rprotobuflib))
11776 (home-page "https://bioconductor.org/packages/cytolib/")
11777 (synopsis "C++ infrastructure for working with gated cytometry")
11778 (description
11779 "This package provides the core data structure and API to represent and
11780 interact with gated cytometry data.")
11781 (license license:artistic2.0)))
11782
11783 (define-public r-flowcore
11784 (package
11785 (name "r-flowcore")
11786 (version "2.8.0")
11787 (source
11788 (origin
11789 (method url-fetch)
11790 (uri (bioconductor-uri "flowCore" version))
11791 (sha256
11792 (base32
11793 "17nci6rc4i0vs0ibw5q8zy30ap7q4550qpq4ifkbblqbyzxlzkhr"))))
11794 (properties `((upstream-name . "flowCore")))
11795 (build-system r-build-system)
11796 (propagated-inputs
11797 (list r-bh
11798 r-biobase
11799 r-biocgenerics
11800 r-cytolib
11801 r-matrixstats
11802 r-rcpp
11803 r-rcpparmadillo
11804 r-rprotobuflib
11805 r-s4vectors))
11806 (native-inputs
11807 (list r-knitr))
11808 (home-page "https://bioconductor.org/packages/flowCore")
11809 (synopsis "Basic structures for flow cytometry data")
11810 (description
11811 "This package provides S4 data structures and basic functions to deal
11812 with flow cytometry data.")
11813 (license license:artistic2.0)))
11814
11815 (define-public r-flowmeans
11816 (package
11817 (name "r-flowmeans")
11818 (version "1.56.0")
11819 (source
11820 (origin
11821 (method url-fetch)
11822 (uri (bioconductor-uri "flowMeans" version))
11823 (sha256
11824 (base32
11825 "1n4li43ydwwf5gvgmdml4ba28cxymybg5wnz6jvp35n959fwxv6y"))))
11826 (properties `((upstream-name . "flowMeans")))
11827 (build-system r-build-system)
11828 (propagated-inputs
11829 (list r-biobase r-feature r-flowcore r-rrcov))
11830 (home-page "https://bioconductor.org/packages/flowMeans")
11831 (synopsis "Non-parametric flow cytometry data gating")
11832 (description
11833 "This package provides tools to identify cell populations in Flow
11834 Cytometry data using non-parametric clustering and segmented-regression-based
11835 change point detection.")
11836 (license license:artistic2.0)))
11837
11838 (define-public r-ncdfflow
11839 (package
11840 (name "r-ncdfflow")
11841 (version "2.42.1")
11842 (source
11843 (origin
11844 (method url-fetch)
11845 (uri (bioconductor-uri "ncdfFlow" version))
11846 (sha256
11847 (base32
11848 "0759xvkp22dnbhq5wpgvpk8p61w0d50r5jrbh9n7sj8sga4lvvv7"))))
11849 (properties `((upstream-name . "ncdfFlow")))
11850 (build-system r-build-system)
11851 (propagated-inputs
11852 (list r-bh
11853 r-biobase
11854 r-biocgenerics
11855 r-flowcore
11856 r-rcpp
11857 r-rcpparmadillo
11858 r-rhdf5lib
11859 r-zlibbioc))
11860 (native-inputs
11861 (list r-knitr))
11862 (home-page "https://bioconductor.org/packages/ncdfFlow/")
11863 (synopsis "HDF5 based storage for flow cytometry data")
11864 (description
11865 "This package provides HDF5 storage based methods and functions for
11866 manipulation of flow cytometry data.")
11867 (license license:artistic2.0)))
11868
11869 (define-public r-ggcyto
11870 (package
11871 (name "r-ggcyto")
11872 (version "1.24.1")
11873 (source
11874 (origin
11875 (method url-fetch)
11876 (uri (bioconductor-uri "ggcyto" version))
11877 (sha256
11878 (base32
11879 "1cw60x78vqzjmgb5xd3sxyz6zwdaffp3byk34z8d4b3wkh530325"))))
11880 (properties `((upstream-name . "ggcyto")))
11881 (build-system r-build-system)
11882 (propagated-inputs
11883 (list r-data-table
11884 r-flowcore
11885 r-flowworkspace
11886 r-ggplot2
11887 r-gridextra
11888 r-hexbin
11889 r-ncdfflow
11890 r-plyr
11891 r-rcolorbrewer
11892 r-rlang
11893 r-scales))
11894 (native-inputs
11895 (list r-knitr))
11896 (home-page "https://github.com/RGLab/ggcyto/issues")
11897 (synopsis "Visualize Cytometry data with ggplot")
11898 (description
11899 "With the dedicated fortify method implemented for @code{flowSet},
11900 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
11901 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
11902 and some custom layers also make it easy to add gates and population
11903 statistics to the plot.")
11904 (license license:artistic2.0)))
11905
11906 (define-public r-flowviz
11907 (package
11908 (name "r-flowviz")
11909 (version "1.60.2")
11910 (source
11911 (origin
11912 (method url-fetch)
11913 (uri (bioconductor-uri "flowViz" version))
11914 (sha256
11915 (base32
11916 "08rwzc26jns0wwjsqqmf60bpxsckr5x8skdn9iwl8grp81npcc95"))))
11917 (properties `((upstream-name . "flowViz")))
11918 (build-system r-build-system)
11919 (propagated-inputs
11920 (list r-biobase
11921 r-flowcore
11922 r-hexbin
11923 r-idpmisc
11924 r-kernsmooth
11925 r-lattice
11926 r-latticeextra
11927 r-mass
11928 r-rcolorbrewer))
11929 (native-inputs
11930 (list r-knitr))
11931 (home-page "https://bioconductor.org/packages/flowViz/")
11932 (synopsis "Visualization for flow cytometry")
11933 (description
11934 "This package provides visualization tools for flow cytometry data.")
11935 (license license:artistic2.0)))
11936
11937 (define-public r-flowclust
11938 (package
11939 (name "r-flowclust")
11940 (version "3.34.0")
11941 (source
11942 (origin
11943 (method url-fetch)
11944 (uri (bioconductor-uri "flowClust" version))
11945 (sha256
11946 (base32
11947 "055vm9s8aha92znhpjqkipzprw8bkrinwjaik4ygmhym7w6vbblk"))))
11948 (properties `((upstream-name . "flowClust")))
11949 (build-system r-build-system)
11950 (arguments
11951 `(#:configure-flags
11952 (list "--configure-args=--enable-bundled-gsl=no")))
11953 (propagated-inputs
11954 (list r-biobase
11955 r-biocgenerics
11956 r-flowcore
11957 r-graph))
11958 (inputs
11959 (list gsl))
11960 (native-inputs
11961 (list pkg-config r-knitr))
11962 (home-page "https://bioconductor.org/packages/flowClust")
11963 (synopsis "Clustering for flow cytometry")
11964 (description
11965 "This package provides robust model-based clustering using a t-mixture
11966 model with Box-Cox transformation.")
11967 (license license:artistic2.0)))
11968
11969 ;; TODO: this package bundles an old version of protobuf. It's not easy to
11970 ;; make it use our protobuf package instead.
11971 (define-public r-rprotobuflib
11972 (package
11973 (name "r-rprotobuflib")
11974 (version "2.8.0")
11975 (source
11976 (origin
11977 (method url-fetch)
11978 (uri (bioconductor-uri "RProtoBufLib" version))
11979 (sha256
11980 (base32
11981 "1mvqwrm1y0vij66gdwgpf5l1h660wsi9jzjfs4ihw3zm4cb0q5pp"))))
11982 (properties `((upstream-name . "RProtoBufLib")))
11983 (build-system r-build-system)
11984 (arguments
11985 `(#:phases
11986 (modify-phases %standard-phases
11987 (add-after 'unpack 'unpack-bundled-sources
11988 (lambda _
11989 (with-directory-excursion "src"
11990 (invoke "tar" "xf" "protobuf-3.8.0.tar.gz")))))))
11991 (native-inputs
11992 (list r-knitr))
11993 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
11994 (synopsis "C++ headers and static libraries of Protocol buffers")
11995 (description
11996 "This package provides the headers and static library of Protocol buffers
11997 for other R packages to compile and link against.")
11998 (license license:bsd-3)))
11999
12000 (define-public r-flowworkspace
12001 (package
12002 (name "r-flowworkspace")
12003 (version "4.8.0")
12004 (source
12005 (origin
12006 (method url-fetch)
12007 (uri (bioconductor-uri "flowWorkspace" version))
12008 (sha256
12009 (base32
12010 "0riyi9628cx1j5x6hmdd28yq75xh25j8ckcdz8dnb94dpvnhaqss"))))
12011 (properties `((upstream-name . "flowWorkspace")))
12012 (build-system r-build-system)
12013 (propagated-inputs
12014 (list r-aws-s3
12015 r-aws-signature
12016 r-bh
12017 r-biobase
12018 r-biocgenerics
12019 r-cytolib
12020 r-data-table
12021 r-delayedarray
12022 r-digest
12023 r-dplyr
12024 r-flowcore
12025 r-ggplot2
12026 r-graph
12027 r-lattice
12028 r-latticeextra
12029 r-matrixstats
12030 r-ncdfflow
12031 r-rbgl
12032 r-rcpp
12033 r-rcpparmadillo
12034 r-rcppparallel
12035 r-rgraphviz
12036 r-rhdf5lib
12037 r-rprotobuflib
12038 r-s4vectors
12039 r-scales
12040 r-xml))
12041 (native-inputs
12042 (list r-knitr))
12043 (home-page "https://bioconductor.org/packages/flowWorkspace/")
12044 (synopsis "Infrastructure for working with cytometry data")
12045 (description
12046 "This package is designed to facilitate comparison of automated gating
12047 methods against manual gating done in flowJo. This package allows you to
12048 import basic flowJo workspaces into BioConductor and replicate the gating from
12049 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
12050 samples, compensation, and transformation are performed so that the output
12051 matches the flowJo analysis.")
12052 (license license:artistic2.0)))
12053
12054 (define-public r-flowstats
12055 (package
12056 (name "r-flowstats")
12057 (version "4.8.2")
12058 (source
12059 (origin
12060 (method url-fetch)
12061 (uri (bioconductor-uri "flowStats" version))
12062 (sha256
12063 (base32
12064 "1x01gg5ifxh3wp0cp5a23lr9v6l9q5qg8145q2pgn904jkx5wldc"))))
12065 (properties `((upstream-name . "flowStats")))
12066 (build-system r-build-system)
12067 (propagated-inputs
12068 (list r-biobase
12069 r-biocgenerics
12070 r-cluster
12071 r-corpcor
12072 r-fda
12073 r-flowcore
12074 r-flowviz
12075 r-flowworkspace
12076 r-kernsmooth
12077 r-ks
12078 r-lattice
12079 r-mass
12080 r-mnormt
12081 r-ncdfflow
12082 r-rcolorbrewer
12083 r-rrcov))
12084 (home-page "http://www.github.com/RGLab/flowStats")
12085 (synopsis "Statistical methods for the analysis of flow cytometry data")
12086 (description
12087 "This package provides methods and functionality to analyze flow data
12088 that is beyond the basic infrastructure provided by the @code{flowCore}
12089 package.")
12090 (license license:artistic2.0)))
12091
12092 (define-public r-opencyto
12093 (package
12094 (name "r-opencyto")
12095 (version "2.8.4")
12096 (source
12097 (origin
12098 (method url-fetch)
12099 (uri (bioconductor-uri "openCyto" version))
12100 (sha256
12101 (base32
12102 "0fa3hbbrjw458dhmxdjypcjgyxmphp9kdr3r62qqf803i4wsxfk0"))))
12103 (properties `((upstream-name . "openCyto")))
12104 (build-system r-build-system)
12105 (propagated-inputs
12106 (list r-biobase
12107 r-biocgenerics
12108 r-clue
12109 r-data-table
12110 r-flowclust
12111 r-flowcore
12112 r-flowstats
12113 r-flowviz
12114 r-flowworkspace
12115 r-graph
12116 r-gtools
12117 r-ks
12118 r-lattice
12119 r-mass
12120 r-ncdfflow
12121 r-plyr
12122 r-r-utils
12123 r-rbgl
12124 r-rcolorbrewer
12125 r-rcpp
12126 r-rrcov))
12127 (native-inputs
12128 (list r-knitr))
12129 (home-page "https://bioconductor.org/packages/openCyto")
12130 (synopsis "Hierarchical gating pipeline for flow cytometry data")
12131 (description
12132 "This package is designed to facilitate the automated gating methods in a
12133 sequential way to mimic the manual gating strategy.")
12134 (license license:artistic2.0)))
12135
12136 (define-public r-cytoml
12137 (package
12138 (name "r-cytoml")
12139 (version "2.8.1")
12140 (source
12141 (origin
12142 (method url-fetch)
12143 (uri (bioconductor-uri "CytoML" version))
12144 (sha256
12145 (base32
12146 "01yzdljpyq92bv318b5qs29f190226zwbqjnckvxmbb0k8m7s5hw"))))
12147 (properties `((upstream-name . "CytoML")))
12148 (build-system r-build-system)
12149 (inputs
12150 (list libxml2 zlib))
12151 (propagated-inputs
12152 (list r-base64enc
12153 r-bh
12154 r-biobase
12155 r-corpcor
12156 r-cytolib
12157 r-data-table
12158 r-dplyr
12159 r-flowcore
12160 r-flowworkspace
12161 r-ggcyto
12162 r-graph
12163 r-jsonlite
12164 r-lattice
12165 r-opencyto
12166 r-plyr
12167 r-rbgl
12168 r-rcpp
12169 r-rcpparmadillo
12170 r-rcppparallel
12171 r-rgraphviz
12172 r-rhdf5lib
12173 r-rprotobuflib
12174 r-runit
12175 r-tibble
12176 r-xml
12177 r-xml2
12178 r-yaml))
12179 (native-inputs
12180 (list r-knitr))
12181 (home-page "https://github.com/RGLab/CytoML")
12182 (synopsis "GatingML interface for cross platform cytometry data sharing")
12183 (description
12184 "This package provides an interface to implementations of the GatingML2.0
12185 standard to exchange gated cytometry data with other software platforms.")
12186 (license license:artistic2.0)))
12187
12188 (define-public r-flowsom
12189 (package
12190 (name "r-flowsom")
12191 (version "2.4.0")
12192 (source
12193 (origin
12194 (method url-fetch)
12195 (uri (bioconductor-uri "FlowSOM" version))
12196 (sha256
12197 (base32
12198 "0balsds5mm981cqamdjv3ndq1y9arharisd6f2lrpkzgvwawa645"))))
12199 (properties `((upstream-name . "FlowSOM")))
12200 (build-system r-build-system)
12201 (propagated-inputs
12202 (list r-biocgenerics
12203 r-colorramps
12204 r-consensusclusterplus
12205 r-cytoml
12206 r-dplyr
12207 r-flowcore
12208 r-flowworkspace
12209 r-ggforce
12210 r-ggnewscale
12211 r-ggplot2
12212 r-ggpointdensity
12213 r-ggpubr
12214 r-ggrepel
12215 r-igraph
12216 r-magrittr
12217 r-pheatmap
12218 r-rcolorbrewer
12219 r-rlang
12220 r-rtsne
12221 r-scattermore
12222 r-tidyr
12223 r-xml))
12224 (home-page "https://bioconductor.org/packages/FlowSOM/")
12225 (synopsis "Visualize and interpret cytometry data")
12226 (description
12227 "FlowSOM offers visualization options for cytometry data, by using
12228 self-organizing map clustering and minimal spanning trees.")
12229 (license license:gpl2+)))
12230
12231 (define-public r-mixomics
12232 (package
12233 (name "r-mixomics")
12234 (version "6.20.0")
12235 (source
12236 (origin
12237 (method url-fetch)
12238 (uri (bioconductor-uri "mixOmics" version))
12239 (sha256
12240 (base32
12241 "0fwc2w7frj0bjijzfckkxf7ipx1z13gw7907q4zr5qfl9mh127w7"))))
12242 (properties `((upstream-name . "mixOmics")))
12243 (build-system r-build-system)
12244 (propagated-inputs
12245 (list r-biocparallel
12246 r-corpcor
12247 r-dplyr
12248 r-ellipse
12249 r-ggrepel
12250 r-ggplot2
12251 r-gridextra
12252 r-igraph
12253 r-lattice
12254 r-mass
12255 r-matrixstats
12256 r-rarpack
12257 r-rcolorbrewer
12258 r-reshape2
12259 r-tidyr))
12260 (native-inputs
12261 (list r-knitr))
12262 (home-page "http://www.mixOmics.org")
12263 (synopsis "Multivariate methods for exploration of biological datasets")
12264 (description
12265 "mixOmics offers a wide range of multivariate methods for the exploration
12266 and integration of biological datasets with a particular focus on variable
12267 selection. The package proposes several sparse multivariate models we have
12268 developed to identify the key variables that are highly correlated, and/or
12269 explain the biological outcome of interest. The data that can be analysed
12270 with mixOmics may come from high throughput sequencing technologies, such as
12271 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
12272 also beyond the realm of omics (e.g. spectral imaging). The methods
12273 implemented in mixOmics can also handle missing values without having to
12274 delete entire rows with missing data.")
12275 (license license:gpl2+)))
12276
12277 (define-public r-depecher
12278 (package ;Source/Weave error
12279 (name "r-depecher")
12280 (version "1.12.0")
12281 (source
12282 (origin
12283 (method url-fetch)
12284 (uri (bioconductor-uri "DepecheR" version))
12285 (sha256
12286 (base32
12287 "0rixczdds5gpac50wap6s68kmpdj4208l38gcihkrysz5frbvqjp"))))
12288 (properties `((upstream-name . "DepecheR")))
12289 (build-system r-build-system)
12290 (propagated-inputs
12291 (list r-beanplot
12292 r-dosnow
12293 r-dplyr
12294 r-fnn
12295 r-foreach
12296 r-ggplot2
12297 r-gmodels
12298 r-gplots
12299 r-mass
12300 r-matrixstats
12301 r-mixomics
12302 r-moments
12303 r-rcpp
12304 r-rcppeigen
12305 r-reshape2
12306 r-robustbase
12307 r-viridis))
12308 (native-inputs
12309 (list r-knitr))
12310 (home-page "https://bioconductor.org/packages/DepecheR/")
12311 (synopsis "Identify traits of clusters in high-dimensional entities")
12312 (description
12313 "The purpose of this package is to identify traits in a dataset that can
12314 separate groups. This is done on two levels. First, clustering is performed,
12315 using an implementation of sparse K-means. Secondly, the generated clusters
12316 are used to predict outcomes of groups of individuals based on their
12317 distribution of observations in the different clusters. As certain clusters
12318 with separating information will be identified, and these clusters are defined
12319 by a sparse number of variables, this method can reduce the complexity of
12320 data, to only emphasize the data that actually matters.")
12321 (license license:expat)))
12322
12323 (define-public r-rcistarget
12324 (package
12325 (name "r-rcistarget")
12326 (version "1.16.0")
12327 (source
12328 (origin
12329 (method url-fetch)
12330 (uri (bioconductor-uri "RcisTarget" version))
12331 (sha256
12332 (base32
12333 "17fnjkg6rjqj33v7slg81skqag10y6dc14g5iv69gqshjal4w4im"))))
12334 (properties `((upstream-name . "RcisTarget")))
12335 (build-system r-build-system)
12336 (propagated-inputs
12337 (list r-arrow
12338 r-aucell
12339 r-biocgenerics
12340 r-data-table
12341 r-dplyr
12342 r-genomeinfodb
12343 r-genomicranges
12344 r-gseabase
12345 r-r-utils
12346 r-s4vectors
12347 r-summarizedexperiment
12348 r-tibble))
12349 (native-inputs
12350 (list r-knitr))
12351 (home-page "https://aertslab.org/#scenic")
12352 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
12353 (description
12354 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
12355 over-represented on a gene list. In a first step, RcisTarget selects DNA
12356 motifs that are significantly over-represented in the surroundings of the
12357 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
12358 achieved by using a database that contains genome-wide cross-species rankings
12359 for each motif. The motifs that are then annotated to TFs and those that have
12360 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
12361 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
12362 genes in the gene-set that are ranked above the leading edge).")
12363 (license license:gpl3)))
12364
12365 (define-public r-chicago
12366 (package
12367 (name "r-chicago")
12368 (version "1.24.0")
12369 (source
12370 (origin
12371 (method url-fetch)
12372 (uri (bioconductor-uri "Chicago" version))
12373 (sha256
12374 (base32
12375 "13vzxmvxpc3r9gii37zvhhr5nbnaggrva97g6m2n02qn9daf6vmm"))))
12376 (properties `((upstream-name . "Chicago")))
12377 (build-system r-build-system)
12378 (propagated-inputs
12379 (list r-data-table r-delaporte r-hmisc r-mass r-matrixstats))
12380 (native-inputs (list r-knitr))
12381 (home-page "https://bioconductor.org/packages/Chicago")
12382 (synopsis "Capture Hi-C analysis of genomic organization")
12383 (description
12384 "This package provides a pipeline for analysing Capture Hi-C data.")
12385 (license license:artistic2.0)))
12386
12387 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
12388 ;; it here.
12389 (define-public r-ciara
12390 (package
12391 (name "r-ciara")
12392 (version "0.1.0")
12393 (source (origin
12394 (method url-fetch)
12395 (uri (cran-uri "CIARA" version))
12396 (sha256
12397 (base32
12398 "0nr7wks9231326x0lhpbh824c6vcb5hr5jn89s9bmg9mci907bsf"))))
12399 (properties `((upstream-name . "CIARA")))
12400 (build-system r-build-system)
12401 (propagated-inputs (list r-biobase r-ggplot2 r-ggraph r-magrittr))
12402 (native-inputs (list r-knitr))
12403 (home-page "https://cran.r-project.org/package=CIARA")
12404 (synopsis "Cluster-independent algorithm for rare cell types identification")
12405 (description
12406 "This is a package to support identification of markers of rare cell
12407 types by looking at genes whose expression is confined in small regions of the
12408 expression space.")
12409 (license license:artistic2.0)))
12410
12411 (define-public r-cicero
12412 (package
12413 (name "r-cicero")
12414 (version "1.14.0")
12415 (source
12416 (origin
12417 (method url-fetch)
12418 (uri (bioconductor-uri "cicero" version))
12419 (sha256
12420 (base32
12421 "1ip12ijazlmcfbym078slxykpkz7d1zwvs8l8aqdnqpxjfk1ipx5"))))
12422 (build-system r-build-system)
12423 (propagated-inputs
12424 (list r-assertthat
12425 r-biobase
12426 r-biocgenerics
12427 r-data-table
12428 r-dplyr
12429 r-fnn
12430 r-genomicranges
12431 r-ggplot2
12432 r-glasso
12433 r-gviz
12434 r-igraph
12435 r-iranges
12436 r-matrix
12437 r-monocle
12438 r-plyr
12439 r-reshape2
12440 r-s4vectors
12441 r-stringi
12442 r-stringr
12443 r-tibble
12444 r-tidyr
12445 r-vgam))
12446 (native-inputs
12447 (list r-knitr))
12448 (home-page "https://bioconductor.org/packages/cicero/")
12449 (synopsis "Predict cis-co-accessibility from single-cell data")
12450 (description
12451 "Cicero computes putative cis-regulatory maps from single-cell chromatin
12452 accessibility data. It also extends the monocle package for use in chromatin
12453 accessibility data.")
12454 (license license:expat)))
12455
12456 ;; This is the latest commit on the "monocle3" branch.
12457 (define-public r-cicero-monocle3
12458 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
12459 (revision "1"))
12460 (package (inherit r-cicero)
12461 (name "r-cicero-monocle3")
12462 (version (git-version "1.3.2" revision commit))
12463 (source
12464 (origin
12465 (method git-fetch)
12466 (uri (git-reference
12467 (url "https://github.com/cole-trapnell-lab/cicero-release")
12468 (commit commit)))
12469 (file-name (git-file-name name version))
12470 (sha256
12471 (base32
12472 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
12473 (propagated-inputs
12474 (modify-inputs (package-propagated-inputs r-cicero)
12475 (delete "r-monocle")
12476 (prepend r-monocle3))))))
12477
12478 (define-public r-circrnaprofiler
12479 (package
12480 (name "r-circrnaprofiler")
12481 (version "1.10.0")
12482 (source
12483 (origin
12484 (method url-fetch)
12485 (uri (bioconductor-uri "circRNAprofiler" version))
12486 (sha256
12487 (base32
12488 "1gwm416shhv2p3gh1n6kv1rvx0n0imy25b7z62z4s8b3gs3nfp5j"))))
12489 (properties
12490 `((upstream-name . "circRNAprofiler")))
12491 (build-system r-build-system)
12492 (propagated-inputs
12493 (list r-annotationhub
12494 r-biostrings
12495 r-bsgenome
12496 r-bsgenome-hsapiens-ucsc-hg19
12497 r-deseq2
12498 r-dplyr
12499 r-edger
12500 r-genomeinfodb
12501 r-genomicranges
12502 r-ggplot2
12503 r-gwascat
12504 r-iranges
12505 r-magrittr
12506 r-r-utils
12507 r-readr
12508 r-reshape2
12509 r-rlang
12510 r-rtracklayer
12511 r-s4vectors
12512 r-seqinr
12513 r-stringi
12514 r-stringr
12515 r-universalmotif))
12516 (native-inputs
12517 (list r-knitr))
12518 (home-page
12519 "https://github.com/Aufiero/circRNAprofiler")
12520 (synopsis
12521 "Computational framework for the downstream analysis of circular RNA's")
12522 (description
12523 "@code{r-circrnaprofiler} is a computational framework for a comprehensive
12524 in silico analysis of @dfn{circular RNA} (circRNAs). This computational
12525 framework allows combining and analyzing circRNAs previously detected by
12526 multiple publicly available annotation-based circRNA detection tools. It
12527 covers different aspects of circRNAs analysis from differential expression
12528 analysis, evolutionary conservation, biogenesis to functional analysis.")
12529 (license license:gpl3)))
12530
12531 (define-public r-cistopic
12532 (package
12533 (name "r-cistopic")
12534 (version "2.1.0")
12535 (source
12536 (origin
12537 (method git-fetch)
12538 (uri (git-reference
12539 (url "https://github.com/aertslab/cisTopic")
12540 (commit (string-append "v" version))))
12541 (file-name (git-file-name name version))
12542 (sha256
12543 (base32
12544 "0c4553rnxq7b1w451kcc3iwvak4qa5h2b43xmfw6ii8096zd1gbf"))))
12545 (build-system r-build-system)
12546 (propagated-inputs
12547 (list r-aucell
12548 r-data-table
12549 r-dplyr
12550 r-dosnow
12551 r-dt
12552 r-feather
12553 r-fitdistrplus
12554 r-genomicranges
12555 r-ggplot2
12556 r-lda
12557 r-matrix
12558 r-plyr
12559 r-rcistarget
12560 r-rtracklayer
12561 r-s4vectors))
12562 (home-page "https://github.com/aertslab/cisTopic")
12563 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
12564 (description
12565 "The sparse nature of single cell epigenomics data can be overruled using
12566 probabilistic modelling methods such as @dfn{Latent Dirichlet
12567 Allocation} (LDA). This package allows the probabilistic modelling of
12568 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
12569 includes functionalities to identify cell states based on the contribution of
12570 cisTopics and explore the nature and regulatory proteins driving them.")
12571 (license license:gpl3)))
12572
12573 (define-public r-cistopic-next
12574 (let ((commit "04cecbb9d1112fcc1a6edc28b5a506bcb49f2803")
12575 (revision "1"))
12576 (package
12577 (inherit r-cistopic)
12578 (name "r-cistopic-next")
12579 ;; The DESCRIPTION file says this is version 0.3.0, which is a bit odd
12580 ;; since the previous release is 2.1.0. Oh well.
12581 (version (git-version "0.3.0" revision commit))
12582 (source
12583 (origin
12584 (method git-fetch)
12585 (uri (git-reference
12586 (url "https://github.com/aertslab/cisTopic")
12587 (commit commit)))
12588 (file-name (git-file-name name version))
12589 (sha256
12590 (base32
12591 "11cg9szlysnsjiaahda4k5v2vh4rxx27zhz53hafgaq9mdz0kgi2"))))
12592 (properties `((upstream-name . "cisTopic")))
12593 (propagated-inputs
12594 (list r-aucell
12595 r-data-table
12596 r-dosnow
12597 r-dplyr
12598 r-dt
12599 r-feather
12600 r-fitdistrplus
12601 r-genomicranges
12602 r-ggplot2
12603 r-lda
12604 r-matrix
12605 r-plyr
12606 r-rcistarget
12607 r-rtracklayer
12608 r-s4vectors
12609 r-text2vec))
12610 (native-inputs
12611 (list r-knitr)))))
12612
12613 (define-public r-genie3
12614 (package
12615 (name "r-genie3")
12616 (version "1.18.0")
12617 (source
12618 (origin
12619 (method url-fetch)
12620 (uri (bioconductor-uri "GENIE3" version))
12621 (sha256
12622 (base32
12623 "0h3vnpnznb9rda8gfwp4cnd2mqsvs1vzmfx90dchn5pqaphz1k2l"))))
12624 (properties `((upstream-name . "GENIE3")))
12625 (build-system r-build-system)
12626 (propagated-inputs
12627 (list r-dplyr r-reshape2))
12628 (native-inputs
12629 (list r-knitr))
12630 (home-page "https://bioconductor.org/packages/GENIE3")
12631 (synopsis "Gene network inference with ensemble of trees")
12632 (description
12633 "This package implements the GENIE3 algorithm for inferring gene
12634 regulatory networks from expression data.")
12635 (license license:gpl2+)))
12636
12637 (define-public r-roc
12638 (package
12639 (name "r-roc")
12640 (version "1.72.0")
12641 (source
12642 (origin
12643 (method url-fetch)
12644 (uri (bioconductor-uri "ROC" version))
12645 (sha256
12646 (base32
12647 "0yfq0d0j2bzqdnjs6l2h6p48kmv9wfphlqym3brgndlnadipq1v2"))))
12648 (properties `((upstream-name . "ROC")))
12649 (build-system r-build-system)
12650 (native-inputs
12651 (list r-knitr))
12652 (home-page "https://www.bioconductor.org/packages/ROC/")
12653 (synopsis "Utilities for ROC curves")
12654 (description
12655 "This package provides utilities for @dfn{Receiver Operating
12656 Characteristic} (ROC) curves, with a focus on micro arrays.")
12657 (license license:artistic2.0)))
12658
12659 (define-public r-watermelon
12660 (package
12661 (name "r-watermelon")
12662 (version "2.2.0")
12663 (source
12664 (origin
12665 (method url-fetch)
12666 (uri (bioconductor-uri "wateRmelon" version))
12667 (sha256
12668 (base32
12669 "0adqyfabrvfcaj3mwp0rbqlcgpj92yb205cyhibbrs5gdr5ri4pv"))))
12670 (properties `((upstream-name . "wateRmelon")))
12671 (build-system r-build-system)
12672 (propagated-inputs
12673 (list r-biobase
12674 r-illuminahumanmethylation450kanno-ilmn12-hg19
12675 r-illuminaio
12676 r-limma
12677 r-lumi
12678 r-matrixstats
12679 r-methylumi
12680 r-roc))
12681 (native-inputs
12682 (list r-knitr))
12683 (home-page "https://bioconductor.org/packages/wateRmelon/")
12684 (synopsis "Illumina 450 methylation array normalization and metrics")
12685 (description
12686 "The standard index of DNA methylation (beta) is computed from methylated
12687 and unmethylated signal intensities. Betas calculated from raw signal
12688 intensities perform well, but using 11 methylomic datasets we demonstrate that
12689 quantile normalization methods produce marked improvement. The commonly used
12690 procedure of normalizing betas is inferior to the separate normalization of M
12691 and U, and it is also advantageous to normalize Type I and Type II assays
12692 separately. This package provides 15 flavours of betas and three performance
12693 metrics, with methods for objects produced by the @code{methylumi} and
12694 @code{minfi} packages.")
12695 (license license:gpl3)))
12696
12697 (define-public r-gdsfmt
12698 (package
12699 (name "r-gdsfmt")
12700 (version "1.32.0")
12701 (source
12702 (origin
12703 (method url-fetch)
12704 (uri (bioconductor-uri "gdsfmt" version))
12705 (sha256
12706 (base32
12707 "1cdwyivgfc6yw5hj9b3j57wx55gckwhx6fwx2lvqynrjzjyzf3q0"))
12708 (modules '((guix build utils)))
12709 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
12710 ;; them and link with system libraries instead.
12711 (snippet
12712 '(begin
12713 (for-each delete-file-recursively
12714 '("src/LZ4"
12715 "src/XZ"
12716 "src/ZLIB"))
12717 (substitute* "src/Makevars"
12718 (("all: \\$\\(SHLIB\\)") "all:")
12719 (("\\$\\(SHLIB\\): liblzma.a") "")
12720 (("^ (ZLIB|LZ4)/.*") "")
12721 (("CoreArray/dVLIntGDS.cpp.*")
12722 "CoreArray/dVLIntGDS.cpp")
12723 (("CoreArray/dVLIntGDS.o.*")
12724 "CoreArray/dVLIntGDS.o")
12725 (("PKG_LIBS = ./liblzma.a")
12726 "PKG_LIBS = -llz4"))
12727 (substitute* "src/CoreArray/dStream.h"
12728 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
12729 (string-append "include <" header ">")))))))
12730 (properties `((upstream-name . "gdsfmt")))
12731 (build-system r-build-system)
12732 (inputs
12733 (list lz4 xz zlib))
12734 (native-inputs
12735 (list r-knitr))
12736 (home-page "http://corearray.sourceforge.net/")
12737 (synopsis
12738 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
12739 (description
12740 "This package provides a high-level R interface to CoreArray @dfn{Genomic
12741 Data Structure} (GDS) data files, which are portable across platforms with
12742 hierarchical structure to store multiple scalable array-oriented data sets
12743 with metadata information. It is suited for large-scale datasets, especially
12744 for data which are much larger than the available random-access memory. The
12745 @code{gdsfmt} package offers efficient operations specifically designed for
12746 integers of less than 8 bits, since a diploid genotype, like
12747 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
12748 byte. Data compression and decompression are available with relatively
12749 efficient random access. It is also allowed to read a GDS file in parallel
12750 with multiple R processes supported by the package @code{parallel}.")
12751 (license license:lgpl3)))
12752
12753 (define-public r-bigmelon
12754 (package
12755 (name "r-bigmelon")
12756 (version "1.22.0")
12757 (source
12758 (origin
12759 (method url-fetch)
12760 (uri (bioconductor-uri "bigmelon" version))
12761 (sha256
12762 (base32
12763 "1msch4qbifkdqv0bbw03xj6d9w28z91mf4ki41rqg6048cq17h2k"))))
12764 (properties `((upstream-name . "bigmelon")))
12765 (build-system r-build-system)
12766 (propagated-inputs
12767 (list r-biobase
12768 r-biocgenerics
12769 r-gdsfmt
12770 r-geoquery
12771 r-illuminaio
12772 r-methylumi
12773 r-minfi
12774 r-watermelon))
12775 (native-inputs
12776 (list r-knitr))
12777 (home-page "https://bioconductor.org/packages/bigmelon/")
12778 (synopsis "Illumina methylation array analysis for large experiments")
12779 (description
12780 "This package provides methods for working with Illumina arrays using the
12781 @code{gdsfmt} package.")
12782 (license license:gpl3)))
12783
12784 (define-public r-seqbias
12785 (package
12786 (name "r-seqbias")
12787 (version "1.44.0")
12788 (source
12789 (origin
12790 (method url-fetch)
12791 (uri (bioconductor-uri "seqbias" version))
12792 (sha256
12793 (base32
12794 "085nq6pf0bdn17wsbr5jnyy512v7rf67xff9rp5wz47mcifbv6rg"))))
12795 (properties `((upstream-name . "seqbias")))
12796 (build-system r-build-system)
12797 (propagated-inputs
12798 (list r-biostrings r-genomicranges r-rhtslib))
12799 (home-page "https://bioconductor.org/packages/seqbias/")
12800 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
12801 (description
12802 "This package implements a model of per-position sequencing bias in
12803 high-throughput sequencing data using a simple Bayesian network, the structure
12804 and parameters of which are trained on a set of aligned reads and a reference
12805 genome sequence.")
12806 (license license:lgpl3)))
12807
12808 (define-public r-reqon
12809 (package
12810 (name "r-reqon")
12811 (version "1.42.0")
12812 (source
12813 (origin
12814 (method url-fetch)
12815 (uri (bioconductor-uri "ReQON" version))
12816 (sha256
12817 (base32
12818 "1f5pplm8fy3wvl0b6n18gph4dq9i9x5qiyjrj0bk0kwlkbpba74r"))))
12819 (properties `((upstream-name . "ReQON")))
12820 (build-system r-build-system)
12821 (propagated-inputs
12822 (list r-rjava r-rsamtools r-seqbias))
12823 (home-page "https://bioconductor.org/packages/ReQON/")
12824 (synopsis "Recalibrating quality of nucleotides")
12825 (description
12826 "This package provides an implementation of an algorithm for
12827 recalibrating the base quality scores for aligned sequencing data in BAM
12828 format.")
12829 (license license:gpl2)))
12830
12831 (define-public r-wavcluster
12832 (package
12833 (name "r-wavcluster")
12834 (version "2.30.0")
12835 (source
12836 (origin
12837 (method url-fetch)
12838 (uri (bioconductor-uri "wavClusteR" version))
12839 (sha256
12840 (base32
12841 "04di095i9i19j9ppx8gdsk7n18vd02d4rjdi9d4a3p0xv05ihnb6"))))
12842 (properties `((upstream-name . "wavClusteR")))
12843 (build-system r-build-system)
12844 (propagated-inputs
12845 (list r-biocgenerics
12846 r-biostrings
12847 r-foreach
12848 r-genomicfeatures
12849 r-genomicranges
12850 r-ggplot2
12851 r-hmisc
12852 r-iranges
12853 r-mclust
12854 r-rsamtools
12855 r-rtracklayer
12856 r-s4vectors
12857 r-seqinr
12858 r-stringr))
12859 (native-inputs
12860 (list r-knitr))
12861 (home-page "https://bioconductor.org/packages/wavClusteR/")
12862 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
12863 (description
12864 "This package provides an integrated pipeline for the analysis of
12865 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
12866 sequencing errors, SNPs and additional non-experimental sources by a non-
12867 parametric mixture model. The protein binding sites (clusters) are then
12868 resolved at high resolution and cluster statistics are estimated using a
12869 rigorous Bayesian framework. Post-processing of the results, data export for
12870 UCSC genome browser visualization and motif search analysis are provided. In
12871 addition, the package integrates RNA-Seq data to estimate the False
12872 Discovery Rate of cluster detection. Key functions support parallel multicore
12873 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
12874 be applied to the analysis of other NGS data obtained from experimental
12875 procedures that induce nucleotide substitutions (e.g. BisSeq).")
12876 (license license:gpl2)))
12877
12878 (define-public r-timeseriesexperiment
12879 (package
12880 (name "r-timeseriesexperiment")
12881 (version "1.13.0")
12882 (source
12883 (origin
12884 (method url-fetch)
12885 (uri (bioconductor-uri "TimeSeriesExperiment" version))
12886 (sha256
12887 (base32
12888 "0bdpxxr739qdg92qabfx122k9f43vw2hyxp4yxqlbp37vzgcdf2c"))))
12889 (properties
12890 `((upstream-name . "TimeSeriesExperiment")))
12891 (build-system r-build-system)
12892 (propagated-inputs
12893 (list r-deseq2
12894 r-dplyr
12895 r-dynamictreecut
12896 r-edger
12897 r-ggplot2
12898 r-hmisc
12899 r-limma
12900 r-magrittr
12901 r-proxy
12902 r-s4vectors
12903 r-summarizedexperiment
12904 r-tibble
12905 r-tidyr
12906 r-vegan
12907 r-viridis))
12908 (native-inputs
12909 (list r-knitr))
12910 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
12911 (synopsis "Analysis for short time-series data")
12912 (description
12913 "This package is a visualization and analysis toolbox for short time
12914 course data which includes dimensionality reduction, clustering, two-sample
12915 differential expression testing and gene ranking techniques. The package also
12916 provides methods for retrieving enriched pathways.")
12917 (license license:lgpl3+)))
12918
12919 (define-public r-variantfiltering
12920 (package
12921 (name "r-variantfiltering")
12922 (version "1.32.0")
12923 (source
12924 (origin
12925 (method url-fetch)
12926 (uri (bioconductor-uri "VariantFiltering" version))
12927 (sha256
12928 (base32
12929 "1bjqn8qik221x0bqvgd99p87v45iihwp6cxckh4ks964pd0c1xk8"))))
12930 (properties
12931 `((upstream-name . "VariantFiltering")))
12932 (build-system r-build-system)
12933 (propagated-inputs
12934 (list r-annotationdbi
12935 r-biobase
12936 r-biocgenerics
12937 r-biocparallel
12938 r-biostrings
12939 r-bsgenome
12940 r-dt
12941 r-genomeinfodb
12942 r-genomicfeatures
12943 r-genomicranges
12944 r-genomicscores
12945 r-graph
12946 r-gviz
12947 r-iranges
12948 r-rbgl
12949 r-rsamtools
12950 r-s4vectors
12951 r-shiny
12952 r-shinyjs
12953 r-shinythemes
12954 r-shinytree
12955 r-summarizedexperiment
12956 r-variantannotation
12957 r-xvector))
12958 (home-page "https://github.com/rcastelo/VariantFiltering")
12959 (synopsis "Filtering of coding and non-coding genetic variants")
12960 (description
12961 "Filter genetic variants using different criteria such as inheritance
12962 model, amino acid change consequence, minor allele frequencies across human
12963 populations, splice site strength, conservation, etc.")
12964 (license license:artistic2.0)))
12965
12966 (define-public r-genomegraphs
12967 (package
12968 (name "r-genomegraphs")
12969 (version "1.46.0")
12970 (source
12971 (origin
12972 (method url-fetch)
12973 (uri (bioconductor-uri "GenomeGraphs" version))
12974 (sha256
12975 (base32
12976 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
12977 (properties `((upstream-name . "GenomeGraphs")))
12978 (build-system r-build-system)
12979 (propagated-inputs
12980 (list r-biomart))
12981 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
12982 (synopsis "Plotting genomic information from Ensembl")
12983 (description
12984 "Genomic data analyses requires integrated visualization of known genomic
12985 information and new experimental data. GenomeGraphs uses the biomaRt package
12986 to perform live annotation queries to Ensembl and translates this to e.g.
12987 gene/transcript structures in viewports of the grid graphics package. This
12988 results in genomic information plotted together with your data. Another
12989 strength of GenomeGraphs is to plot different data types such as array CGH,
12990 gene expression, sequencing and other data, together in one plot using the
12991 same genome coordinate system.")
12992 (license license:artistic2.0)))
12993
12994 (define-public r-wavetiling
12995 (package
12996 (name "r-wavetiling")
12997 (version "1.28.0")
12998 (source
12999 (origin
13000 (method url-fetch)
13001 (uri (bioconductor-uri "waveTiling" version))
13002 (sha256
13003 (base32
13004 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
13005 (properties `((upstream-name . "waveTiling")))
13006 (build-system r-build-system)
13007 (propagated-inputs
13008 (list r-affy
13009 r-biobase
13010 r-biostrings
13011 r-genomegraphs
13012 r-genomicranges
13013 r-iranges
13014 r-oligo
13015 r-oligoclasses
13016 r-preprocesscore
13017 r-waveslim))
13018 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
13019 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
13020 (description
13021 "This package is designed to conduct transcriptome analysis for tiling
13022 arrays based on fast wavelet-based functional models.")
13023 (license license:gpl2+)))
13024
13025 (define-public r-variancepartition
13026 (package
13027 (name "r-variancepartition")
13028 (version "1.26.0")
13029 (source
13030 (origin
13031 (method url-fetch)
13032 (uri (bioconductor-uri "variancePartition" version))
13033 (sha256
13034 (base32
13035 "0wk1xql8b0gxyrqz9hs54xvmp7qdw9b8jnv88p4vgv061iwyk7wv"))))
13036 (properties
13037 `((upstream-name . "variancePartition")))
13038 (build-system r-build-system)
13039 (propagated-inputs
13040 (list r-aod
13041 r-biobase
13042 r-biocparallel
13043 r-doparallel
13044 r-foreach
13045 r-ggplot2
13046 r-gplots
13047 r-iterators
13048 r-limma
13049 r-lme4
13050 r-lmertest
13051 r-mass
13052 r-matrix
13053 r-pbkrtest
13054 r-progress
13055 r-rdpack
13056 r-reshape2
13057 r-rhpcblasctl
13058 r-rlang
13059 r-scales))
13060 (native-inputs
13061 (list r-knitr))
13062 (home-page "https://bioconductor.org/packages/variancePartition/")
13063 (synopsis "Analyze variation in gene expression experiments")
13064 (description
13065 "This is a package providing tools to quantify and interpret multiple
13066 sources of biological and technical variation in gene expression experiments.
13067 It uses a linear mixed model to quantify variation in gene expression
13068 attributable to individual, tissue, time point, or technical variables. The
13069 package includes dream differential expression analysis for repeated
13070 measures.")
13071 (license license:gpl2+)))
13072
13073 (define-public r-htqpcr
13074 (package
13075 (name "r-htqpcr")
13076 (version "1.50.0")
13077 (source
13078 (origin
13079 (method url-fetch)
13080 (uri (bioconductor-uri "HTqPCR" version))
13081 (sha256
13082 (base32
13083 "0am98rzwpi3kybq1l27c5qn3n1pg5aqwmh6jq9q0lzbjjin3haqc"))))
13084 (properties `((upstream-name . "HTqPCR")))
13085 (build-system r-build-system)
13086 (propagated-inputs
13087 (list r-affy r-biobase r-gplots r-limma r-rcolorbrewer))
13088 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
13089 "groups/bertone/software/HTqPCR.pdf"))
13090 (synopsis "Automated analysis of high-throughput qPCR data")
13091 (description
13092 "Analysis of Ct values from high throughput quantitative real-time
13093 PCR (qPCR) assays across multiple conditions or replicates. The input data
13094 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
13095 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
13096 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
13097 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
13098 loading, quality assessment, normalization, visualization and parametric or
13099 non-parametric testing for statistical significance in Ct values between
13100 features (e.g. genes, microRNAs).")
13101 (license license:artistic2.0)))
13102
13103 (define-public r-unifiedwmwqpcr
13104 (package
13105 (name "r-unifiedwmwqpcr")
13106 (version "1.32.0")
13107 (source
13108 (origin
13109 (method url-fetch)
13110 (uri (bioconductor-uri "unifiedWMWqPCR" version))
13111 (sha256
13112 (base32
13113 "1skfs94a6bv05c844zf5vfqw1fbgxyppgdnckdbhxg2a2470a4wh"))))
13114 (properties
13115 `((upstream-name . "unifiedWMWqPCR")))
13116 (build-system r-build-system)
13117 (propagated-inputs
13118 (list r-biocgenerics r-htqpcr))
13119 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
13120 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
13121 (description
13122 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
13123 data. This modified test allows for testing differential expression in qPCR
13124 data.")
13125 (license license:gpl2+)))
13126
13127 (define-public r-universalmotif
13128 (package
13129 (name "r-universalmotif")
13130 (version "1.14.1")
13131 (source
13132 (origin
13133 (method url-fetch)
13134 (uri (bioconductor-uri "universalmotif" version))
13135 (sha256
13136 (base32
13137 "1sm54z8aq3534qjsa19wychhwcvwnjlkydmiqqvidiiwcxwqpjsr"))))
13138 (properties
13139 `((upstream-name . "universalmotif")))
13140 (build-system r-build-system)
13141 (arguments
13142 `(#:phases
13143 (modify-phases %standard-phases
13144 (add-after 'unpack 'fix-reference-to-strip
13145 (lambda _
13146 (substitute* "src/Makevars"
13147 (("/usr/bin/strip") (which "strip"))))))))
13148 (propagated-inputs
13149 (list r-biocgenerics
13150 r-biostrings
13151 r-ggplot2
13152 r-iranges
13153 r-mass
13154 r-rcpp
13155 r-rcppthread
13156 r-rlang
13157 r-s4vectors
13158 r-yaml))
13159 (native-inputs
13160 (list r-knitr))
13161 (home-page
13162 "https://bioconductor.org/packages/universalmotif/")
13163 (synopsis
13164 "Specific structures importer, modifier, and exporter for R")
13165 (description
13166 "This package allows importing most common @dfn{specific structure}
13167 (motif) types into R for use by functions provided by other Bioconductor
13168 motif-related packages. Motifs can be exported into most major motif formats
13169 from various classes as defined by other Bioconductor packages. A suite of
13170 motif and sequence manipulation and analysis functions are included, including
13171 enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
13172 motifs, and others.")
13173 (license license:gpl3)))
13174
13175 (define-public r-ace
13176 (package
13177 (name "r-ace")
13178 (version "1.14.0")
13179 (source (origin
13180 (method url-fetch)
13181 (uri (bioconductor-uri "ACE" version))
13182 (sha256
13183 (base32
13184 "1xnw288vz810vjkidar5h218wyc0q2hx0k4zi3r88vaz5rfhc05m"))))
13185 (properties `((upstream-name . "ACE")))
13186 (build-system r-build-system)
13187 (propagated-inputs (list r-biobase r-genomicranges r-ggplot2 r-qdnaseq))
13188 (native-inputs (list r-knitr))
13189 (home-page "https://github.com/tgac-vumc/ACE")
13190 (synopsis
13191 "Absolute copy number estimation from low-coverage whole genome sequencing")
13192 (description
13193 "This package uses segmented copy number data to estimate tumor cell
13194 percentage and produce copy number plots displaying absolute copy numbers. For
13195 this it uses segmented data from the @code{QDNAseq} package, which in turn uses
13196 a number of dependencies to turn mapped reads into segmented data. @code{ACE}
13197 will run @code{QDNAseq} or use its output rds-file of segmented data. It will
13198 subsequently run through all samples in the object(s), for which it will create
13199 individual subdirectories. For each sample, it will calculate how well the
13200 segments fit (the relative error) to integer copy numbers for each percentage
13201 of @dfn{tumor cells} (cells with divergent segments).")
13202 (license license:gpl2)))
13203
13204 (define-public r-acgh
13205 (package
13206 (name "r-acgh")
13207 (version "1.74.0")
13208 (source (origin
13209 (method url-fetch)
13210 (uri (bioconductor-uri "aCGH" version))
13211 (sha256
13212 (base32
13213 "00ni0kwy68v33ggfi8g5vffirhmbhaxg4l54hcqhx75m535z1x7d"))))
13214 (properties `((upstream-name . "aCGH")))
13215 (build-system r-build-system)
13216 (propagated-inputs (list r-biobase r-cluster r-multtest r-survival))
13217 (home-page "https://bioconductor.org/packages/aCGH")
13218 (synopsis
13219 "Classes and functions for array comparative genomic hybridization data")
13220 (description
13221 "This package provides functions for reading
13222 @dfn{array comparative genomic hybridization} (aCGH) data from image analysis
13223 output files and clone information files, creation of @code{aCGH} objects for
13224 storing these data. Basic methods are accessing/replacing, subsetting,
13225 printing and plotting @code{aCGH} objects.")
13226 (license license:gpl2)))
13227
13228 (define-public r-acme
13229 (package
13230 (name "r-acme")
13231 (version "2.52.0")
13232 (source (origin
13233 (method url-fetch)
13234 (uri (bioconductor-uri "ACME" version))
13235 (sha256
13236 (base32
13237 "0ilcsgpc4m47gifxc0yzx2xi3g4day515mncnnjvfdj3iq8xwk25"))))
13238 (properties `((upstream-name . "ACME")))
13239 (build-system r-build-system)
13240 (propagated-inputs (list r-biobase r-biocgenerics))
13241 (home-page "https://bioconductor.org/packages/aCGH/")
13242 (synopsis "Calculating microarray enrichment")
13243 (description
13244 "This package implements @dfn{algorithms for calculating microarray
13245 enrichment} (ACME), and it is a set of tools for analysing tiling array of
13246 @dfn{combined chromatin immunoprecipitation with DNA microarray} (ChIP/chip),
13247 DNAse hypersensitivity, or other experiments that result in regions of the
13248 genome showing enrichment. It does not rely on a specific array technology
13249 (although the array should be a tiling array), is very general (can be applied
13250 in experiments resulting in regions of enrichment), and is very insensitive to
13251 array noise or normalization methods. It is also very fast and can be applied
13252 on whole-genome tiling array experiments quite easily with enough memory.")
13253 (license license:gpl2+)))
13254
13255 (define-public r-acde
13256 (package
13257 (name "r-acde")
13258 (version "1.26.0")
13259 (source (origin
13260 (method url-fetch)
13261 (uri (bioconductor-uri "acde" version))
13262 (sha256
13263 (base32
13264 "0lgq546y4qklfzbc6fjr3d656hn76p6dn4694qfiafql2nlsjbj2"))))
13265 (properties `((upstream-name . "acde")))
13266 (build-system r-build-system)
13267 (propagated-inputs (list r-boot))
13268 (home-page "https://bioconductor.org/packages/acde")
13269 (synopsis
13270 "Identification of differentially expressed genes with artificial components")
13271 (description
13272 "This package provides a multivariate inferential analysis method for
13273 detecting differentially expressed genes in gene expression data. It uses
13274 artificial components, close to the data's principal components but with an
13275 exact interpretation in terms of differential genetic expression, to identify
13276 differentially expressed genes while controlling the @dfn{false discovery
13277 rate} (FDR).")
13278 (license license:gpl3)))
13279
13280 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
13281 ;; it here.
13282 (define-public r-activedriverwgs
13283 (package
13284 (name "r-activedriverwgs")
13285 (version "1.2.0")
13286 (source
13287 (origin
13288 (method url-fetch)
13289 (uri (cran-uri "ActiveDriverWGS" version))
13290 (sha256
13291 (base32
13292 "0xnplgwxd197a4d422bsxg753q158i12ils16awd1cw30wafdxkk"))))
13293 (properties
13294 `((upstream-name . "ActiveDriverWGS")))
13295 (build-system r-build-system)
13296 (propagated-inputs
13297 (list r-biostrings
13298 r-bsgenome
13299 r-bsgenome-hsapiens-ucsc-hg19
13300 r-bsgenome-hsapiens-ucsc-hg38
13301 r-bsgenome-mmusculus-ucsc-mm9
13302 r-bsgenome-mmusculus-ucsc-mm10
13303 r-genomeinfodb
13304 r-genomicranges
13305 r-iranges
13306 r-s4vectors))
13307 (native-inputs
13308 (list r-knitr))
13309 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
13310 (synopsis "Driver discovery tool for cancer whole genomes")
13311 (description
13312 "This package provides a method for finding an enrichment of cancer
13313 simple somatic mutations (SNVs and Indels) in functional elements across the
13314 human genome. ActiveDriverWGS detects coding and noncoding driver elements
13315 using whole genome sequencing data.")
13316 (license license:gpl3)))
13317
13318 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
13319 ;; it here.
13320 (define-public r-activepathways
13321 (package
13322 (name "r-activepathways")
13323 (version "1.1.1")
13324 (source
13325 (origin
13326 (method url-fetch)
13327 (uri (cran-uri "ActivePathways" version))
13328 (sha256
13329 (base32
13330 "1crq164vyqhdq5y3q09k3m5zljqrhcd5ak0jrc0xqvzf0pasml2m"))))
13331 (properties
13332 `((upstream-name . "ActivePathways")))
13333 (build-system r-build-system)
13334 (propagated-inputs
13335 (list r-data-table r-ggplot2))
13336 (native-inputs
13337 (list r-knitr))
13338 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
13339 (synopsis "Multivariate pathway enrichment analysis")
13340 (description
13341 "This package represents an integrative method of analyzing multi omics
13342 data that conducts enrichment analysis of annotated gene sets. ActivePathways
13343 uses a statistical data fusion approach, rationalizes contributing evidence
13344 and highlights associated genes, improving systems-level understanding of
13345 cellular organization in health and disease.")
13346 (license license:gpl3)))
13347
13348 (define-public r-bgmix
13349 (package
13350 (name "r-bgmix")
13351 (version "1.56.0")
13352 (source
13353 (origin
13354 (method url-fetch)
13355 (uri (bioconductor-uri "BGmix" version))
13356 (sha256
13357 (base32
13358 "03f6nknp3n49yvg2d9qsmds676rva70pr4wjz0md228jczgjk0vj"))))
13359 (properties `((upstream-name . "BGmix")))
13360 (build-system r-build-system)
13361 (propagated-inputs
13362 (list r-kernsmooth))
13363 (home-page "https://bioconductor.org/packages/BGmix/")
13364 (synopsis "Bayesian models for differential gene expression")
13365 (description
13366 "This package provides fully Bayesian mixture models for differential
13367 gene expression.")
13368 (license license:gpl2)))
13369
13370 (define-public r-bgx
13371 (package
13372 (name "r-bgx")
13373 (version "1.62.0")
13374 (source
13375 (origin
13376 (method url-fetch)
13377 (uri (bioconductor-uri "bgx" version))
13378 (sha256
13379 (base32
13380 "0q2y4n6bcc9pvz5sgfkw1lrb00rrp7q29i1vh7srdfmfhgpyz6bk"))))
13381 (properties `((upstream-name . "bgx")))
13382 (build-system r-build-system)
13383 (arguments
13384 (list
13385 #:phases
13386 '(modify-phases %standard-phases
13387 (add-after 'unpack 'do-not-tune-cflags-for-reproducibility
13388 (lambda _
13389 (substitute* "configure.ac"
13390 (("AX_GCC_ARCHFLAG.*") ""))
13391 (delete-file "configure")
13392 (invoke "autoreconf" "-vif"))))))
13393 (inputs
13394 (list boost))
13395 (propagated-inputs
13396 (list r-affy r-biobase r-gcrma r-rcpp))
13397 (native-inputs
13398 (list autoconf automake))
13399 (home-page "https://bioconductor.org/packages/bgx/")
13400 (synopsis "Bayesian gene expression")
13401 (description
13402 "This package provides tools for Bayesian integrated analysis of
13403 Affymetrix GeneChips.")
13404 (license license:gpl2)))
13405
13406 (define-public r-bhc
13407 (package
13408 (name "r-bhc")
13409 (version "1.48.0")
13410 (source
13411 (origin
13412 (method url-fetch)
13413 (uri (bioconductor-uri "BHC" version))
13414 (sha256
13415 (base32
13416 "1kqajd16981y5yaak2imaq1i7pilgqdr3nbhggsakh787j1d9rc5"))))
13417 (properties `((upstream-name . "BHC")))
13418 (build-system r-build-system)
13419 (home-page "https://bioconductor.org/packages/BHC/")
13420 (synopsis "Bayesian hierarchical clustering")
13421 (description
13422 "The method implemented in this package performs bottom-up hierarchical
13423 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
13424 in the data and Bayesian model selection to decide at each step which clusters
13425 to merge. This avoids several limitations of traditional methods, for example
13426 how many clusters there should be and how to choose a principled distance
13427 metric. This implementation accepts multinomial (i.e. discrete, with 2+
13428 categories) or time-series data. This version also includes a randomised
13429 algorithm which is more efficient for larger data sets.")
13430 (license license:gpl3)))
13431
13432 (define-public r-bicare
13433 (package
13434 (name "r-bicare")
13435 (version "1.54.0")
13436 (source
13437 (origin
13438 (method url-fetch)
13439 (uri (bioconductor-uri "BicARE" version))
13440 (sha256
13441 (base32
13442 "0qjh5bsjcjry6k1vzdaascwy2shjrkc2bw0w57w0qa458cbi89z2"))))
13443 (properties `((upstream-name . "BicARE")))
13444 (build-system r-build-system)
13445 (propagated-inputs
13446 (list r-biobase r-gseabase r-multtest))
13447 (home-page "http://bioinfo.curie.fr")
13448 (synopsis "Biclustering analysis and results exploration")
13449 (description
13450 "This is a package for biclustering analysis and exploration of
13451 results.")
13452 (license license:gpl2)))
13453
13454 (define-public r-bifet
13455 (package
13456 (name "r-bifet")
13457 (version "1.16.0")
13458 (source
13459 (origin
13460 (method url-fetch)
13461 (uri (bioconductor-uri "BiFET" version))
13462 (sha256
13463 (base32
13464 "03ypbbn8i0f4bl4m6wfdcv702jydniak56wqjb1vlrckd9aphwzq"))))
13465 (properties `((upstream-name . "BiFET")))
13466 (build-system r-build-system)
13467 (propagated-inputs
13468 (list r-genomicranges r-poibin))
13469 (native-inputs
13470 (list r-knitr))
13471 (home-page "https://bioconductor.org/packages/BiFET")
13472 (synopsis "Bias-free footprint enrichment test")
13473 (description
13474 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
13475 over-represented in target regions compared to background regions after
13476 correcting for the bias arising from the imbalance in read counts and GC
13477 contents between the target and background regions. For a given TF k, BiFET
13478 tests the null hypothesis that the target regions have the same probability of
13479 having footprints for the TF k as the background regions while correcting for
13480 the read count and GC content bias.")
13481 (license license:gpl3)))
13482
13483 (define-public r-rsbml
13484 (package
13485 (name "r-rsbml")
13486 (version "2.54.0")
13487 (source
13488 (origin
13489 (method url-fetch)
13490 (uri (bioconductor-uri "rsbml" version))
13491 (sha256
13492 (base32
13493 "1v11pspkml6xdsacgwxw8r4qdhbnn2h2sqgpm9aidaq9p2085b0v"))))
13494 (properties `((upstream-name . "rsbml")))
13495 (build-system r-build-system)
13496 (inputs
13497 (list libsbml))
13498 (propagated-inputs
13499 (list r-biocgenerics r-graph))
13500 (native-inputs
13501 (list pkg-config))
13502 (home-page "http://www.sbml.org")
13503 (synopsis "R support for SBML")
13504 (description
13505 "This package provides an R interface to libsbml for SBML parsing,
13506 validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
13507 (license license:artistic2.0)))
13508
13509 (define-public r-hypergraph
13510 (package
13511 (name "r-hypergraph")
13512 (version "1.68.0")
13513 (source
13514 (origin
13515 (method url-fetch)
13516 (uri (bioconductor-uri "hypergraph" version))
13517 (sha256
13518 (base32
13519 "0xmryqj5yw1ns6wbhjqbb6h14jlj89zrznzvqnvd4n03ci20kzzp"))))
13520 (properties `((upstream-name . "hypergraph")))
13521 (build-system r-build-system)
13522 (propagated-inputs
13523 (list r-graph))
13524 (home-page "https://bioconductor.org/packages/hypergraph")
13525 (synopsis "Hypergraph data structures")
13526 (description
13527 "This package implements some simple capabilities for representing and
13528 manipulating hypergraphs.")
13529 (license license:artistic2.0)))
13530
13531 (define-public r-hyperdraw
13532 (package
13533 (name "r-hyperdraw")
13534 (version "1.48.0")
13535 (source
13536 (origin
13537 (method url-fetch)
13538 (uri (bioconductor-uri "hyperdraw" version))
13539 (sha256
13540 (base32
13541 "0ndw4y6b15jy4w86vfkahmdc81d3ycjsvqy1mxi55dwvd8xq0ap6"))))
13542 (properties `((upstream-name . "hyperdraw")))
13543 (build-system r-build-system)
13544 (inputs (list graphviz))
13545 (propagated-inputs
13546 (list r-graph r-hypergraph r-rgraphviz))
13547 (home-page "https://bioconductor.org/packages/hyperdraw")
13548 (synopsis "Visualizing hypergraphs")
13549 (description
13550 "This package provides functions for visualizing hypergraphs.")
13551 (license license:gpl2+)))
13552
13553 (define-public r-biggr
13554 (package
13555 (name "r-biggr")
13556 (version "1.32.0")
13557 (source
13558 (origin
13559 (method url-fetch)
13560 (uri (bioconductor-uri "BiGGR" version))
13561 (sha256
13562 (base32
13563 "0n57bgl6xz5b1gpw4isimq2pqxmlabn7jzhbjg2fbxcklabdvrcw"))))
13564 (properties `((upstream-name . "BiGGR")))
13565 (build-system r-build-system)
13566 (propagated-inputs
13567 (list r-hyperdraw
13568 r-hypergraph
13569 r-lim
13570 r-limsolve
13571 r-rsbml
13572 r-stringr))
13573 (home-page "https://bioconductor.org/packages/BiGGR/")
13574 (synopsis "Constraint based modeling using metabolic reconstruction databases")
13575 (description
13576 "This package provides an interface to simulate metabolic reconstruction
13577 from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
13578 reconstruction databases. The package facilitates @dfn{flux balance
13579 analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
13580 networks and estimated fluxes can be visualized with hypergraphs.")
13581 (license license:gpl3+)))
13582
13583 (define-public r-bigmemoryextras
13584 (package
13585 (name "r-bigmemoryextras")
13586 (version "1.38.0")
13587 (source
13588 (origin
13589 (method url-fetch)
13590 (uri (bioconductor-uri "bigmemoryExtras" version))
13591 (sha256
13592 (base32
13593 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
13594 (properties
13595 `((upstream-name . "bigmemoryExtras")))
13596 (build-system r-build-system)
13597 (propagated-inputs
13598 (list r-bigmemory))
13599 (native-inputs
13600 (list r-knitr))
13601 (home-page "https://github.com/phaverty/bigmemoryExtras")
13602 (synopsis "Extension of the bigmemory package")
13603 (description
13604 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
13605 safety and convenience features to the @code{filebacked.big.matrix} class from
13606 the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
13607 monitoring and gracefully restoring the connection to on-disk data and it also
13608 protects against accidental data modification with a file-system-based
13609 permissions system. Utilities are provided for using @code{BigMatrix}-derived
13610 classes as @code{assayData} matrices within the @code{Biobase} package's
13611 @code{eSet} family of classes. @code{BigMatrix} provides some optimizations
13612 related to attaching to, and indexing into, file-backed matrices with
13613 dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
13614 a file-backed matrix with factor properties.")
13615 (license license:artistic2.0)))
13616
13617 (define-public r-bigpint
13618 (package
13619 (name "r-bigpint")
13620 (version "1.12.0")
13621 (source
13622 (origin
13623 (method url-fetch)
13624 (uri (bioconductor-uri "bigPint" version))
13625 (sha256
13626 (base32
13627 "1hp69j2qcidrxqs3dxjjngb09nbzp5x2yy4jz1rjmv6ghif9ccfj"))))
13628 (properties `((upstream-name . "bigPint")))
13629 (build-system r-build-system)
13630 (propagated-inputs
13631 (list r-delayedarray
13632 r-dplyr
13633 r-ggally
13634 r-ggplot2
13635 r-gridextra
13636 r-hexbin
13637 r-hmisc
13638 r-htmlwidgets
13639 r-plotly
13640 r-plyr
13641 r-rcolorbrewer
13642 r-reshape
13643 r-shiny
13644 r-shinycssloaders
13645 r-shinydashboard
13646 r-stringr
13647 r-summarizedexperiment
13648 r-tidyr))
13649 (native-inputs
13650 (list r-knitr))
13651 (home-page "https://github.com/lindsayrutter/bigPint")
13652 (synopsis "Big multivariate data plotted interactively")
13653 (description
13654 "This package provides methods for visualizing large multivariate
13655 datasets using static and interactive scatterplot matrices, parallel
13656 coordinate plots, volcano plots, and litre plots. It includes examples for
13657 visualizing RNA-sequencing datasets and differentially expressed genes.")
13658 (license license:gpl3)))
13659
13660 (define-public r-chemminer
13661 (package
13662 (name "r-chemminer")
13663 (version "3.48.0")
13664 (source
13665 (origin
13666 (method url-fetch)
13667 (uri (bioconductor-uri "ChemmineR" version))
13668 (sha256
13669 (base32
13670 "1nri4zkc9lp1mqgsi0h58486vixwiv2989b6pmx2aj5c3575i0ma"))))
13671 (properties `((upstream-name . "ChemmineR")))
13672 (build-system r-build-system)
13673 (propagated-inputs
13674 (list r-base64enc
13675 r-bh
13676 r-biocgenerics
13677 r-dbi
13678 r-digest
13679 r-dt
13680 r-ggplot2
13681 r-gridextra
13682 r-jsonlite
13683 r-png
13684 r-rcpp
13685 r-rcurl
13686 r-rjson
13687 r-rsvg
13688 r-stringi))
13689 (native-inputs
13690 (list r-knitr))
13691 (home-page "https://github.com/girke-lab/ChemmineR")
13692 (synopsis "Cheminformatics toolkit for R")
13693 (description
13694 "ChemmineR is a cheminformatics package for analyzing drug-like small
13695 molecule data in R. It contains functions for efficient processing of large
13696 numbers of molecules, physicochemical/structural property predictions,
13697 structural similarity searching, classification and clustering of compound
13698 libraries with a wide spectrum of algorithms. In addition, it offers
13699 visualization functions for compound clustering results and chemical
13700 structures.")
13701 (license license:artistic2.0)))
13702
13703 (define-public r-fmcsr
13704 (package
13705 (name "r-fmcsr")
13706 (version "1.38.0")
13707 (source
13708 (origin
13709 (method url-fetch)
13710 (uri (bioconductor-uri "fmcsR" version))
13711 (sha256
13712 (base32 "1mblmk21dxc9v2fikhvfg2njwgl190gkysppl6msxizwcmxsmh30"))))
13713 (properties `((upstream-name . "fmcsR")))
13714 (build-system r-build-system)
13715 (propagated-inputs
13716 (list r-biocgenerics r-chemminer r-runit))
13717 (native-inputs (list r-knitr))
13718 (home-page "https://github.com/girke-lab/fmcsR")
13719 (synopsis "Mismatch tolerant maximum common substructure searching")
13720 (description
13721 "The fmcsR package introduces an efficient @dfn{maximum common
13722 substructure} (MCS) algorithms combined with a novel matching strategy that
13723 allows for atom and/or bond mismatches in the substructures shared among two
13724 small molecules. The resulting flexible MCSs (FMCSs) are often larger than
13725 strict MCSs, resulting in the identification of more common features in their
13726 source structures, as well as a higher sensitivity in finding compounds with
13727 weak structural similarities. The fmcsR package provides several utilities to
13728 use the FMCS algorithm for pairwise compound comparisons, structure similarity
13729 searching and clustering.")
13730 (license license:artistic2.0)))
13731
13732 (define-public r-bioassayr
13733 (package
13734 (name "r-bioassayr")
13735 (version "1.34.0")
13736 (source
13737 (origin
13738 (method url-fetch)
13739 (uri (bioconductor-uri "bioassayR" version))
13740 (sha256
13741 (base32
13742 "0zbrci0vgk4qca28i0qb2izhyrz3r95l1w54h9h3zj9f3vd61wrz"))))
13743 (properties `((upstream-name . "bioassayR")))
13744 (build-system r-build-system)
13745 (propagated-inputs
13746 (list r-biocgenerics
13747 r-chemminer
13748 r-dbi
13749 r-matrix
13750 r-rjson
13751 r-rsqlite
13752 r-xml))
13753 (native-inputs
13754 (list r-knitr))
13755 (home-page "https://github.com/girke-lab/bioassayR")
13756 (synopsis "Cross-target analysis of small molecule bioactivity")
13757 (description
13758 "bioassayR is a computational tool that enables simultaneous analysis of
13759 thousands of bioassay experiments performed over a diverse set of compounds
13760 and biological targets. Unique features include support for large-scale
13761 cross-target analyses of both public and custom bioassays, generation of
13762 @dfn{high throughput screening fingerprints} (HTSFPs), and an optional
13763 preloaded database that provides access to a substantial portion of publicly
13764 available bioactivity data.")
13765 (license license:artistic2.0)))
13766
13767 (define-public r-biobroom
13768 (package
13769 (name "r-biobroom")
13770 (version "1.28.0")
13771 (source
13772 (origin
13773 (method url-fetch)
13774 (uri (bioconductor-uri "biobroom" version))
13775 (sha256
13776 (base32
13777 "04x1z9nchm4mbhqr31011zdprc4md156j4zf003s7xx0n278xsgh"))))
13778 (properties `((upstream-name . "biobroom")))
13779 (build-system r-build-system)
13780 (propagated-inputs
13781 (list r-biobase r-broom r-dplyr r-tidyr))
13782 (native-inputs
13783 (list r-knitr))
13784 (home-page "https://github.com/StoreyLab/biobroom")
13785 (synopsis "Turn Bioconductor objects into tidy data frames")
13786 (description
13787 "This package contains methods for converting standard objects
13788 constructed by bioinformatics packages, especially those in Bioconductor, and
13789 converting them to @code{tidy} data. It thus serves as a complement to the
13790 @code{broom} package, and follows the same tidy, augment, glance division of
13791 tidying methods. Tidying data makes it easy to recombine, reshape and
13792 visualize bioinformatics analyses.")
13793 ;; Any version of the LGPL.
13794 (license license:lgpl3+)))
13795
13796 (define-public r-graphite
13797 (package
13798 (name "r-graphite")
13799 (version "1.42.0")
13800 (source
13801 (origin
13802 (method url-fetch)
13803 (uri (bioconductor-uri "graphite" version))
13804 (sha256
13805 (base32
13806 "0nl5mkgrvf7vsqjy48ij9b1dmxfvp9lf8cpay55h93c4qz4x606g"))))
13807 (properties `((upstream-name . "graphite")))
13808 (build-system r-build-system)
13809 (propagated-inputs
13810 (list r-annotationdbi r-graph r-httr r-rappdirs r-rlang))
13811 (home-page "https://bioconductor.org/packages/graphite/")
13812 (synopsis "Networks from pathway databases")
13813 (description
13814 "Graphite provides networks derived from eight public pathway databases,
13815 and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
13816 symbols).")
13817 (license license:agpl3+)))
13818
13819 (define-public r-reactomepa
13820 (package
13821 (name "r-reactomepa")
13822 (version "1.40.0")
13823 (source
13824 (origin
13825 (method url-fetch)
13826 (uri (bioconductor-uri "ReactomePA" version))
13827 (sha256
13828 (base32
13829 "1fd72m2afxbbvbgwy8knp6fiq1h561plmsh4r8a08w21ngmkz2s5"))))
13830 (properties `((upstream-name . "ReactomePA")))
13831 (build-system r-build-system)
13832 (propagated-inputs
13833 (list r-annotationdbi
13834 r-dose
13835 r-enrichplot
13836 r-ggplot2
13837 r-ggraph
13838 r-graphite
13839 r-igraph
13840 r-reactome-db))
13841 (native-inputs
13842 (list r-knitr))
13843 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
13844 (synopsis "Reactome pathway analysis")
13845 (description
13846 "This package provides functions for pathway analysis based on the
13847 REACTOME pathway database. It implements enrichment analysis, gene set
13848 enrichment analysis and several functions for visualization.")
13849 (license license:gpl2)))
13850
13851 (define-public r-ebarrays
13852 (package
13853 (name "r-ebarrays")
13854 (version "2.60.0")
13855 (source
13856 (origin
13857 (method url-fetch)
13858 (uri (bioconductor-uri "EBarrays" version))
13859 (sha256
13860 (base32
13861 "027zarnpxpdnyl877swp5ypxj7zvq0cjp2q2xs6g6yn5dpqjvxxk"))))
13862 (properties `((upstream-name . "EBarrays")))
13863 (build-system r-build-system)
13864 (propagated-inputs
13865 (list r-biobase r-cluster r-lattice))
13866 (home-page "https://bioconductor.org/packages/EBarrays/")
13867 (synopsis "Gene clustering and differential expression identification")
13868 (description
13869 "EBarrays provides tools for the analysis of replicated/unreplicated
13870 microarray data.")
13871 (license license:gpl2+)))
13872
13873 (define-public r-bioccasestudies
13874 (package
13875 (name "r-bioccasestudies")
13876 (version "1.52.0")
13877 (source
13878 (origin
13879 (method url-fetch)
13880 (uri (bioconductor-uri "BiocCaseStudies" version))
13881 (sha256
13882 (base32
13883 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
13884 (properties
13885 `((upstream-name . "BiocCaseStudies")))
13886 (build-system r-build-system)
13887 (propagated-inputs (list r-biobase))
13888 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
13889 (synopsis "Support for the case studies monograph")
13890 (description
13891 "This package provides software and data to support the case studies
13892 monograph.")
13893 (license license:artistic2.0)))
13894
13895 (define-public r-bioccheck
13896 (package
13897 (name "r-bioccheck")
13898 (version "1.32.1")
13899 (source (origin
13900 (method url-fetch)
13901 (uri (bioconductor-uri "BiocCheck" version))
13902 (sha256
13903 (base32
13904 "0bq4xrz1spp0bmbccxydkw6yw03by5dysz85mn152ab6xixm52lw"))))
13905 (properties
13906 `((upstream-name . "BiocCheck")))
13907 (build-system r-build-system)
13908 (propagated-inputs
13909 (list r-codetools
13910 r-graph
13911 r-httr
13912 r-knitr
13913 r-biocmanager
13914 r-biocviews
13915 r-stringdist))
13916 (native-inputs
13917 (list r-knitr))
13918 (home-page "https://bioconductor.org/packages/BiocCheck")
13919 (synopsis "Executes Bioconductor-specific package checks")
13920 (description "This package contains tools to perform additional quality
13921 checks on R packages that are to be submitted to the Bioconductor repository.")
13922 (license license:artistic2.0)))
13923
13924 (define-public r-biocgraph
13925 (package
13926 (name "r-biocgraph")
13927 (version "1.58.0")
13928 (source
13929 (origin
13930 (method url-fetch)
13931 (uri (bioconductor-uri "biocGraph" version))
13932 (sha256
13933 (base32
13934 "1y59a7c4ahhn1g2wz2hkx83izfn8i85mmxxp63jdd0rg7zwhr6nn"))))
13935 (properties `((upstream-name . "biocGraph")))
13936 (build-system r-build-system)
13937 (propagated-inputs
13938 (list r-biocgenerics r-geneplotter r-graph r-rgraphviz))
13939 (home-page "https://bioconductor.org/packages/biocGraph/")
13940 (synopsis "Graph examples and use cases in Bioinformatics")
13941 (description
13942 "This package provides examples and code that make use of the
13943 different graph related packages produced by Bioconductor.")
13944 (license license:artistic2.0)))
13945
13946 (define-public r-biocstyle
13947 (package
13948 (name "r-biocstyle")
13949 (version "2.24.0")
13950 (source (origin
13951 (method url-fetch)
13952 (uri (bioconductor-uri "BiocStyle" version))
13953 (sha256
13954 (base32
13955 "1nwiib201b9q1x19ihqjqr5jl0vnid8wfgpi8sa3y02bn722g5a5"))))
13956 (properties
13957 `((upstream-name . "BiocStyle")))
13958 (build-system r-build-system)
13959 (propagated-inputs
13960 (list r-biocmanager r-bookdown r-knitr r-rmarkdown r-yaml))
13961 (native-inputs
13962 (list r-knitr))
13963 (home-page "https://bioconductor.org/packages/BiocStyle")
13964 (synopsis "Bioconductor formatting styles")
13965 (description "This package provides standard formatting styles for
13966 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
13967 functionality.")
13968 (license license:artistic2.0)))
13969
13970 (define-public r-biocviews
13971 (package
13972 (name "r-biocviews")
13973 (version "1.64.1")
13974 (source (origin
13975 (method url-fetch)
13976 (uri (bioconductor-uri "biocViews" version))
13977 (sha256
13978 (base32
13979 "0ixcx9qqpmwmnhml3klk5z075km8g2l4q0iqc1dbniga87qgyl38"))))
13980 (properties
13981 `((upstream-name . "biocViews")))
13982 (build-system r-build-system)
13983 (propagated-inputs
13984 (list r-biobase
13985 r-biocmanager
13986 r-graph
13987 r-rbgl
13988 r-rcurl
13989 r-xml
13990 r-runit))
13991 (home-page "https://bioconductor.org/packages/biocViews")
13992 (synopsis "Bioconductor package categorization helper")
13993 (description "The purpose of biocViews is to create HTML pages that
13994 categorize packages in a Bioconductor package repository according to keywords,
13995 also known as views, in a controlled vocabulary.")
13996 (license license:artistic2.0)))
13997
13998 (define-public r-experimenthub
13999 (package
14000 (name "r-experimenthub")
14001 (version "2.4.0")
14002 (source
14003 (origin
14004 (method url-fetch)
14005 (uri (bioconductor-uri "ExperimentHub" version))
14006 (sha256
14007 (base32
14008 "11hna8vrm1az1zk7pw2dv0wh84sd0hw2bi55w40hqvs36csb7lkl"))))
14009 (properties `((upstream-name . "ExperimentHub")))
14010 (build-system r-build-system)
14011 (propagated-inputs
14012 (list r-annotationhub
14013 r-biocfilecache
14014 r-biocgenerics
14015 r-biocmanager
14016 r-curl
14017 r-rappdirs
14018 r-s4vectors))
14019 (native-inputs
14020 (list r-knitr))
14021 (home-page "https://bioconductor.org/packages/ExperimentHub/")
14022 (synopsis "Client to access ExperimentHub resources")
14023 (description
14024 "This package provides a client for the Bioconductor ExperimentHub web
14025 resource. ExperimentHub provides a central location where curated data from
14026 experiments, publications or training courses can be accessed. Each resource
14027 has associated metadata, tags and date of modification. The client creates
14028 and manages a local cache of files retrieved enabling quick and reproducible
14029 access.")
14030 (license license:artistic2.0)))
14031
14032 (define-public r-grohmm
14033 (package
14034 (name "r-grohmm")
14035 (version "1.30.1")
14036 (source
14037 (origin
14038 (method url-fetch)
14039 (uri (bioconductor-uri "groHMM" version))
14040 (sha256
14041 (base32
14042 "0v2mk7xcy483w2nygpmyjp73kj3v5pkk1kf1wr41n33dxqlddqai"))))
14043 (properties `((upstream-name . "groHMM")))
14044 (build-system r-build-system)
14045 (propagated-inputs
14046 (list r-genomeinfodb
14047 r-genomicalignments
14048 r-genomicranges
14049 r-iranges
14050 r-mass
14051 r-rtracklayer
14052 r-s4vectors))
14053 (home-page "https://github.com/Kraus-Lab/groHMM")
14054 (synopsis "GRO-seq analysis pipeline")
14055 (description
14056 "This package provides a pipeline for the analysis of GRO-seq data.")
14057 (license license:gpl3+)))
14058
14059 (define-public r-multiassayexperiment
14060 (package
14061 (name "r-multiassayexperiment")
14062 (version "1.22.0")
14063 (source
14064 (origin
14065 (method url-fetch)
14066 (uri (bioconductor-uri "MultiAssayExperiment" version))
14067 (sha256
14068 (base32
14069 "1wnp52l9vifxn1wzqgndzp9b6ih0s1cflxx1fhw32k32d05cw9q1"))))
14070 (properties
14071 `((upstream-name . "MultiAssayExperiment")))
14072 (build-system r-build-system)
14073 (propagated-inputs
14074 (list r-biobase
14075 r-biocgenerics
14076 r-genomicranges
14077 r-iranges
14078 r-s4vectors
14079 r-summarizedexperiment
14080 r-tidyr))
14081 (native-inputs
14082 (list r-knitr))
14083 (home-page "https://waldronlab.io/MultiAssayExperiment/")
14084 (synopsis "Integration of multi-omics experiments in Bioconductor")
14085 (description
14086 "MultiAssayExperiment harmonizes data management of multiple assays
14087 performed on an overlapping set of specimens. It provides a familiar
14088 Bioconductor user experience by extending concepts from
14089 @code{SummarizedExperiment}, supporting an open-ended mix of standard data
14090 classes for individual assays, and allowing subsetting by genomic ranges or
14091 rownames.")
14092 (license license:artistic2.0)))
14093
14094 (define-public r-bioconcotk
14095 (package
14096 (name "r-bioconcotk")
14097 (version "1.16.0")
14098 (source
14099 (origin
14100 (method url-fetch)
14101 (uri (bioconductor-uri "BiocOncoTK" version))
14102 (sha256
14103 (base32
14104 "1alplszw84vqa1mvzp996f94s40scmh4qwbrqhg43hrnyvbnq7pi"))))
14105 (properties `((upstream-name . "BiocOncoTK")))
14106 (build-system r-build-system)
14107 (propagated-inputs
14108 (list r-bigrquery
14109 r-car
14110 r-complexheatmap
14111 r-curatedtcgadata
14112 r-dbi
14113 r-dplyr
14114 r-dt
14115 r-genomicfeatures
14116 r-genomicranges
14117 r-ggplot2
14118 r-ggpubr
14119 r-graph
14120 r-httr
14121 r-iranges
14122 r-magrittr
14123 r-plyr
14124 r-rgraphviz
14125 r-rjson
14126 r-s4vectors
14127 r-scales
14128 r-shiny
14129 r-summarizedexperiment))
14130 (native-inputs
14131 (list r-knitr))
14132 (home-page "https://bioconductor.org/packages/BiocOncoTK")
14133 (synopsis "Bioconductor components for general cancer genomics")
14134 (description
14135 "The purpose of this package is to provide a central interface to various
14136 tools for genome-scale analysis of cancer studies.")
14137 (license license:artistic2.0)))
14138
14139 (define-public r-biocor
14140 (package
14141 (name "r-biocor")
14142 (version "1.20.0")
14143 (source
14144 (origin
14145 (method url-fetch)
14146 (uri (bioconductor-uri "BioCor" version))
14147 (sha256
14148 (base32
14149 "004mksswampwisljcdz6fswwbgdjdii3y86gjzib0gf8v4w7w4q3"))))
14150 (properties `((upstream-name . "BioCor")))
14151 (build-system r-build-system)
14152 (propagated-inputs
14153 (list r-biocparallel r-gseabase r-matrix))
14154 (native-inputs
14155 (list r-knitr))
14156 (home-page "https://llrs.github.io/BioCor/")
14157 (synopsis "Functional similarities")
14158 (description
14159 "This package provides tools to calculate functional similarities based
14160 on the pathways described on KEGG and REACTOME or in gene sets. These
14161 similarities can be calculated for pathways or gene sets, genes, or clusters
14162 and combined with other similarities. They can be used to improve networks,
14163 gene selection, testing relationships, and so on.")
14164 (license license:expat)))
14165
14166 (define-public r-biocpkgtools
14167 (package
14168 (name "r-biocpkgtools")
14169 (version "1.14.1")
14170 (source
14171 (origin
14172 (method url-fetch)
14173 (uri (bioconductor-uri "BiocPkgTools" version))
14174 (sha256
14175 (base32
14176 "0akryshjdn227a8ir8r0lb59v060h58rhy5vjmdxax8p81ajzxkd"))))
14177 (properties `((upstream-name . "BiocPkgTools")))
14178 (build-system r-build-system)
14179 (propagated-inputs
14180 (list r-biocfilecache
14181 r-biocmanager
14182 r-biocviews
14183 r-dplyr
14184 r-dt
14185 r-gh
14186 r-graph
14187 r-htmltools
14188 r-htmlwidgets
14189 r-httr
14190 r-igraph
14191 r-jsonlite
14192 r-magrittr
14193 r-rbgl
14194 r-readr
14195 r-rlang
14196 r-rvest
14197 r-stringr
14198 r-tibble
14199 r-tidyr
14200 r-tidyselect
14201 r-xml2))
14202 (native-inputs
14203 (list r-knitr))
14204 (home-page "https://github.com/seandavi/BiocPkgTools")
14205 (synopsis "Collection of tools for learning about Bioconductor packages")
14206 (description
14207 "Bioconductor has a rich ecosystem of metadata around packages, usage,
14208 and build status. This package is a simple collection of functions to access
14209 that metadata from R. The goal is to expose metadata for data mining and
14210 value-added functionality such as package searching, text mining, and
14211 analytics on packages.")
14212 (license license:expat)))
14213
14214 (define-public r-biocset
14215 (package
14216 (name "r-biocset")
14217 (version "1.10.0")
14218 (source
14219 (origin
14220 (method url-fetch)
14221 (uri (bioconductor-uri "BiocSet" version))
14222 (sha256
14223 (base32
14224 "1ghba7020inrdxlbrrgds9gjymjxjma2p89b9lgkjin89zalqglh"))))
14225 (properties `((upstream-name . "BiocSet")))
14226 (build-system r-build-system)
14227 (propagated-inputs
14228 (list r-annotationdbi
14229 r-biocio
14230 r-dplyr
14231 r-keggrest
14232 r-ontologyindex
14233 r-plyr
14234 r-rlang
14235 r-s4vectors
14236 r-tibble
14237 r-tidyr))
14238 (native-inputs
14239 (list r-knitr))
14240 (home-page
14241 "https://bioconductor.org/packages/BiocSet")
14242 (synopsis
14243 "Representing Different Biological Sets")
14244 (description
14245 "BiocSet displays different biological sets in a triple tibble format.
14246 These three tibbles are @code{element}, @code{set}, and @code{elementset}.
14247 The user has the ability to activate one of these three tibbles to perform
14248 common functions from the @code{dplyr} package. Mapping functionality and
14249 accessing web references for elements/sets are also available in BiocSet.")
14250 (license license:artistic2.0)))
14251
14252 (define-public r-biocworkflowtools
14253 (package
14254 (name "r-biocworkflowtools")
14255 (version "1.22.0")
14256 (source
14257 (origin
14258 (method url-fetch)
14259 (uri (bioconductor-uri "BiocWorkflowTools" version))
14260 (sha256
14261 (base32
14262 "1jj4icpkhrv9f6yx3vghkpdil1pfghf3yvc9756wmndvhs100r5l"))))
14263 (properties
14264 `((upstream-name . "BiocWorkflowTools")))
14265 (build-system r-build-system)
14266 (propagated-inputs
14267 (list r-biocstyle
14268 r-bookdown
14269 r-git2r
14270 r-httr
14271 r-knitr
14272 r-rmarkdown
14273 r-rstudioapi
14274 r-stringr
14275 r-usethis))
14276 (native-inputs
14277 (list r-knitr))
14278 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
14279 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
14280 (description
14281 "This package provides functions to ease the transition between
14282 Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
14283 (license license:expat)))
14284
14285 (define-public r-biodist
14286 (package
14287 (name "r-biodist")
14288 (version "1.68.0")
14289 (source
14290 (origin
14291 (method url-fetch)
14292 (uri (bioconductor-uri "bioDist" version))
14293 (sha256
14294 (base32
14295 "04nrvrcvpj0sn8p2i8n3ggsl2s7r4na576174i7bn1sj21vr0yb0"))))
14296 (properties `((upstream-name . "bioDist")))
14297 (build-system r-build-system)
14298 (propagated-inputs
14299 (list r-biobase r-kernsmooth))
14300 (home-page "https://bioconductor.org/packages/bioDist/")
14301 (synopsis "Different distance measures")
14302 (description
14303 "This package provides a collection of software tools for calculating
14304 distance measures.")
14305 (license license:artistic2.0)))
14306
14307 (define-public r-pcatools
14308 (package
14309 (name "r-pcatools")
14310 (version "2.8.0")
14311 (source
14312 (origin
14313 (method url-fetch)
14314 (uri (bioconductor-uri "PCAtools" version))
14315 (sha256
14316 (base32
14317 "03s4dh008fys2rrcpzanc0892p63f6jyyvzc9m42jbi1dlkyx26v"))))
14318 (properties `((upstream-name . "PCAtools")))
14319 (build-system r-build-system)
14320 (propagated-inputs
14321 (list r-beachmat
14322 r-bh
14323 r-biocparallel
14324 r-biocsingular
14325 r-cowplot
14326 r-delayedarray
14327 r-delayedmatrixstats
14328 r-dqrng
14329 r-ggplot2
14330 r-ggrepel
14331 r-lattice
14332 r-matrix
14333 r-rcpp
14334 r-reshape2))
14335 (native-inputs (list r-knitr))
14336 (home-page "https://github.com/kevinblighe/PCAtools")
14337 (synopsis "PCAtools: everything Principal Components Analysis")
14338 (description
14339 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
14340 structure of the data without the need to build any model to represent it.
14341 This \"summary\" of the data is arrived at through a process of reduction that
14342 can transform the large number of variables into a lesser number that are
14343 uncorrelated (i.e. the 'principal components'), while at the same time being
14344 capable of easy interpretation on the original data. PCAtools provides
14345 functions for data exploration via PCA, and allows the user to generate
14346 publication-ready figures. PCA is performed via @code{BiocSingular}; users
14347 can also identify an optimal number of principal components via different
14348 metrics, such as the elbow method and Horn's parallel analysis, which has
14349 relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
14350 dimensional mass cytometry data.")
14351 (license license:gpl3)))
14352
14353 (define-public r-rgreat
14354 (package
14355 (name "r-rgreat")
14356 (version "1.28.0")
14357 (source
14358 (origin
14359 (method url-fetch)
14360 (uri (bioconductor-uri "rGREAT" version))
14361 (sha256
14362 (base32
14363 "0px72r8mjimf5mxfwb9qz46kqpgjw5gaqq41hy0212ymjd8whaky"))))
14364 (properties `((upstream-name . "rGREAT")))
14365 (build-system r-build-system)
14366 (propagated-inputs
14367 (list r-genomicranges r-getoptlong r-iranges r-rcurl r-rjson))
14368 (native-inputs (list r-knitr))
14369 (home-page "https://github.com/jokergoo/rGREAT")
14370 (synopsis "Client for GREAT analysis")
14371 (description
14372 "This package makes GREAT (Genomic Regions Enrichment of Annotations
14373 Tool) analysis automatic by constructing a HTTP POST request according to
14374 user's input and automatically retrieving results from GREAT web server.")
14375 (license license:expat)))
14376
14377 (define-public r-m3c
14378 (package
14379 (name "r-m3c")
14380 (version "1.18.0")
14381 (source
14382 (origin
14383 (method url-fetch)
14384 (uri (bioconductor-uri "M3C" version))
14385 (sha256
14386 (base32
14387 "120gd7gkgc98d1l6hl2ij799b3jksdnga5iyb44ps9mbc79hl012"))))
14388 (properties `((upstream-name . "M3C")))
14389 (build-system r-build-system)
14390 (propagated-inputs
14391 (list r-cluster
14392 r-corpcor
14393 r-doparallel
14394 r-dosnow
14395 r-foreach
14396 r-ggplot2
14397 r-matrix
14398 r-matrixcalc
14399 r-rtsne
14400 r-umap))
14401 (native-inputs (list r-knitr))
14402 (home-page "https://bioconductor.org/packages/M3C")
14403 (synopsis "Monte Carlo reference-based consensus clustering")
14404 (description
14405 "M3C is a consensus clustering algorithm that uses a Monte Carlo
14406 simulation to eliminate overestimation of @code{K} and can reject the null
14407 hypothesis @code{K=1}.")
14408 (license license:agpl3+)))
14409
14410 (define-public r-icens
14411 (package
14412 (name "r-icens")
14413 (version "1.68.0")
14414 (source
14415 (origin
14416 (method url-fetch)
14417 (uri (bioconductor-uri "Icens" version))
14418 (sha256
14419 (base32
14420 "0jnbfv7js8bw0ginql90krrpk0p54whj9igw0zk3jc45jqvj2vyc"))))
14421 (properties `((upstream-name . "Icens")))
14422 (build-system r-build-system)
14423 (propagated-inputs
14424 (list r-survival))
14425 (home-page "https://bioconductor.org/packages/Icens")
14426 (synopsis "NPMLE for censored and truncated data")
14427 (description
14428 "This package provides many functions for computing the
14429 @dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
14430 truncated data.")
14431 (license license:artistic2.0)))
14432
14433 ;; This is a CRAN package but it depends on r-icens, which is published on
14434 ;; Bioconductor.
14435 (define-public r-interval
14436 (package
14437 (name "r-interval")
14438 (version "1.1-0.8")
14439 (source
14440 (origin
14441 (method url-fetch)
14442 (uri (cran-uri "interval" version))
14443 (sha256
14444 (base32
14445 "0g0k9nri19p3y3s70ic1w3i3sxq8fbsxaikd7c4d6afqzr8hk2nl"))))
14446 (properties `((upstream-name . "interval")))
14447 (build-system r-build-system)
14448 (propagated-inputs
14449 (list r-icens r-mlecens r-perm r-survival))
14450 (home-page "https://cran.r-project.org/web/packages/interval/")
14451 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
14452 (description
14453 "This package provides functions to fit nonparametric survival curves,
14454 plot them, and perform logrank or Wilcoxon type tests.")
14455 (license license:gpl2+)))
14456
14457 ;; This is a CRAN package, but it depends on r-interval, which depends on a
14458 ;; Bioconductor package.
14459 (define-public r-fhtest
14460 (package
14461 (name "r-fhtest")
14462 (version "1.5")
14463 (source
14464 (origin
14465 (method url-fetch)
14466 (uri (cran-uri "FHtest" version))
14467 (sha256
14468 (base32
14469 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
14470 (properties `((upstream-name . "FHtest")))
14471 (build-system r-build-system)
14472 (propagated-inputs
14473 (list r-interval r-kmsurv r-mass r-perm r-survival))
14474 (home-page "https://cran.r-project.org/web/packages/FHtest/")
14475 (synopsis "Tests for survival data based on the Fleming-Harrington class")
14476 (description
14477 "This package provides functions to compare two or more survival curves
14478 with:
14479
14480 @itemize
14481 @item The Fleming-Harrington test for right-censored data based on
14482 permutations and on counting processes.
14483 @item An extension of the Fleming-Harrington test for interval-censored data
14484 based on a permutation distribution and on a score vector distribution.
14485 @end itemize
14486 ")
14487 (license license:gpl2+)))
14488
14489 (define-public r-fourcseq
14490 (package
14491 (name "r-fourcseq")
14492 (version "1.24.0")
14493 (source
14494 (origin
14495 (method url-fetch)
14496 (uri (bioconductor-uri "FourCSeq" version))
14497 (sha256
14498 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
14499 (properties `((upstream-name . "FourCSeq")))
14500 (build-system r-build-system)
14501 (propagated-inputs
14502 (list r-biobase
14503 r-biostrings
14504 r-deseq2
14505 r-fda
14506 r-genomicalignments
14507 r-genomicranges
14508 r-ggbio
14509 r-ggplot2
14510 r-gtools
14511 r-lsd
14512 r-matrix
14513 r-reshape2
14514 r-rsamtools
14515 r-rtracklayer
14516 r-summarizedexperiment))
14517 (native-inputs
14518 (list r-knitr))
14519 (home-page
14520 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
14521 (synopsis "Analysis of multiplexed 4C sequencing data")
14522 (description
14523 "This package is an R package dedicated to the analysis of (multiplexed)
14524 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
14525 interactions between DNA elements and identify differential interactions
14526 between conditions. The statistical analysis in R starts with individual bam
14527 files for each sample as inputs. To obtain these files, the package contains
14528 a Python script to demultiplex libraries and trim off primer sequences. With
14529 a standard alignment software the required bam files can be then be
14530 generated.")
14531 (license license:gpl3+)))
14532
14533 (define-public r-preprocesscore
14534 (package
14535 (name "r-preprocesscore")
14536 (version "1.58.0")
14537 (source
14538 (origin
14539 (method url-fetch)
14540 (uri (bioconductor-uri "preprocessCore" version))
14541 (sha256
14542 (base32
14543 "1sqpp00hhv6gypflrjw8qpqyqgdcp29m86gmi1di1574x8casdkf"))))
14544 (properties
14545 `((upstream-name . "preprocessCore")))
14546 (build-system r-build-system)
14547 (home-page "https://github.com/bmbolstad/preprocessCore")
14548 (synopsis "Collection of pre-processing functions")
14549 (description
14550 "This package provides a library of core pre-processing and normalization
14551 routines.")
14552 (license license:lgpl2.0+)))
14553
14554 (define-public r-s4vectors
14555 (package
14556 (name "r-s4vectors")
14557 (version "0.34.0")
14558 (source (origin
14559 (method url-fetch)
14560 (uri (bioconductor-uri "S4Vectors" version))
14561 (sha256
14562 (base32
14563 "0j3ybhzdhlhw8527nks3mjja28asjya2n0m0rjkh4bw66rkfys4k"))))
14564 (properties
14565 `((upstream-name . "S4Vectors")))
14566 (build-system r-build-system)
14567 (propagated-inputs
14568 (list r-biocgenerics))
14569 (home-page "https://bioconductor.org/packages/S4Vectors")
14570 (synopsis "S4 implementation of vectors and lists")
14571 (description
14572 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
14573 classes and a set of generic functions that extend the semantic of ordinary
14574 vectors and lists in R. Package developers can easily implement vector-like
14575 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
14576 In addition, a few low-level concrete subclasses of general interest (e.g.
14577 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
14578 S4Vectors package itself.")
14579 (license license:artistic2.0)))
14580
14581 ;; This is a CRAN package, but it depends on preprocessorcore, which is a
14582 ;; Bioconductor package.
14583 (define-public r-wgcna
14584 (package
14585 (name "r-wgcna")
14586 (version "1.71")
14587 (source
14588 (origin
14589 (method url-fetch)
14590 (uri (cran-uri "WGCNA" version))
14591 (sha256
14592 (base32
14593 "027pkc4pyn9bifqbjs05318gvlm06mffw016j50n59wfi2g39x91"))))
14594 (properties `((upstream-name . "WGCNA")))
14595 (build-system r-build-system)
14596 (propagated-inputs
14597 (list r-annotationdbi
14598 r-doparallel
14599 r-dynamictreecut
14600 r-fastcluster
14601 r-foreach
14602 r-go-db
14603 r-hmisc
14604 r-impute
14605 r-rcpp
14606 r-survival
14607 r-matrixstats
14608 r-preprocesscore))
14609 (home-page
14610 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14611 (synopsis "Weighted correlation network analysis")
14612 (description
14613 "This package provides functions necessary to perform Weighted
14614 Correlation Network Analysis on high-dimensional data. It includes functions
14615 for rudimentary data cleaning, construction and summarization of correlation
14616 networks, module identification and functions for relating both variables and
14617 modules to sample traits. It also includes a number of utility functions for
14618 data manipulation and visualization.")
14619 (license license:gpl2+)))
14620
14621 (define-public r-rgraphviz
14622 (package
14623 (name "r-rgraphviz")
14624 (version "2.40.0")
14625 (source
14626 (origin
14627 (method url-fetch)
14628 (uri (bioconductor-uri "Rgraphviz" version))
14629 (sha256
14630 (base32
14631 "1r6ff7w2bmyfl1vzjvpgnhb8f5arwjlpab8fw5ph8fgyiqbcx94l"))))
14632 (properties `((upstream-name . "Rgraphviz")))
14633 (build-system r-build-system)
14634 (arguments
14635 `(#:phases
14636 (modify-phases %standard-phases
14637 (add-after 'unpack 'make-reproducible
14638 (lambda _
14639 ;; The replacement value is taken from src/graphviz/builddate.h
14640 (substitute* "src/graphviz/configure"
14641 (("VERSION_DATE=.*")
14642 "VERSION_DATE=20200427.2341\n"))
14643 #t)))))
14644 ;; FIXME: Rgraphviz bundles the sources of an older variant of
14645 ;; graphviz. It does not build with the latest version of graphviz, so
14646 ;; we do not add graphviz to the inputs.
14647 (inputs (list zlib))
14648 (propagated-inputs
14649 (list r-graph))
14650 (native-inputs
14651 (list pkg-config))
14652 (home-page "https://bioconductor.org/packages/Rgraphviz")
14653 (synopsis "Plotting capabilities for R graph objects")
14654 (description
14655 "This package interfaces R with the graphviz library for plotting R graph
14656 objects from the @code{graph} package.")
14657 (license license:epl1.0)))
14658
14659 (define-public r-fishpond
14660 (package
14661 (name "r-fishpond")
14662 (version "2.2.0")
14663 (source (origin
14664 (method url-fetch)
14665 (uri (bioconductor-uri "fishpond" version))
14666 (sha256
14667 (base32
14668 "0svp4yh0srhzbbxy1grchzdd9yzchadjp3d2sy2n9xpwxzpkhrym"))))
14669 (properties `((upstream-name . "fishpond")))
14670 (build-system r-build-system)
14671 (inputs (list zlib))
14672 (propagated-inputs
14673 (list r-abind
14674 r-genomicranges
14675 r-gtools
14676 r-iranges
14677 r-jsonlite
14678 r-matrix
14679 r-matrixstats
14680 r-qvalue
14681 r-rcpp
14682 r-s4vectors
14683 r-singlecellexperiment
14684 r-summarizedexperiment
14685 r-svmisc))
14686 (native-inputs (list r-knitr))
14687 (home-page "https://github.com/mikelove/fishpond")
14688 (synopsis "Downstream methods and tools for expression data")
14689 (description
14690 "The @code{fishpond} package contains methods for differential transcript
14691 and gene expression analysis of RNA-seq data using inferential replicates for
14692 uncertainty of abundance quantification, as generated by Gibbs sampling or
14693 bootstrap sampling. Also the package contains a number of utilities for
14694 working with Salmon and Alevin quantification files.")
14695 (license license:gpl2)))
14696
14697 (define-public r-fithic
14698 (package
14699 (name "r-fithic")
14700 (version "1.22.0")
14701 (source (origin
14702 (method url-fetch)
14703 (uri (bioconductor-uri "FitHiC" version))
14704 (sha256
14705 (base32
14706 "0iv14yx3g7shzl8qrjknyxbmiylj51sbd1wzr1ff9lc5shgl55kq"))))
14707 (properties `((upstream-name . "FitHiC")))
14708 (build-system r-build-system)
14709 (propagated-inputs
14710 (list r-data-table r-fdrtool r-rcpp))
14711 (native-inputs
14712 (list r-knitr))
14713 (home-page "https://bioconductor.org/packages/FitHiC")
14714 (synopsis "Confidence estimation for intra-chromosomal contact maps")
14715 (description
14716 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
14717 intra-chromosomal contact maps produced by genome-wide genome architecture
14718 assays such as Hi-C.")
14719 (license license:gpl2+)))
14720
14721 (define-public r-hitc
14722 (package
14723 (name "r-hitc")
14724 (version "1.40.0")
14725 (source (origin
14726 (method url-fetch)
14727 (uri (bioconductor-uri "HiTC" version))
14728 (sha256
14729 (base32
14730 "1pkshlrra26cad0hf8a54brlkazni6rsvrplh36azxapx5rpps4s"))))
14731 (properties `((upstream-name . "HiTC")))
14732 (build-system r-build-system)
14733 (propagated-inputs
14734 (list r-biostrings
14735 r-genomeinfodb
14736 r-genomicranges
14737 r-iranges
14738 r-matrix
14739 r-rcolorbrewer
14740 r-rtracklayer))
14741 (home-page "https://bioconductor.org/packages/HiTC")
14742 (synopsis "High throughput chromosome conformation capture analysis")
14743 (description
14744 "The HiTC package was developed to explore high-throughput \"C\" data
14745 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
14746 quality controls, normalization, visualization, and further analysis are also
14747 provided.")
14748 (license license:artistic2.0)))
14749
14750 (define-public r-hdf5array
14751 (package
14752 (name "r-hdf5array")
14753 (version "1.24.2")
14754 (source
14755 (origin
14756 (method url-fetch)
14757 (uri (bioconductor-uri "HDF5Array" version))
14758 (sha256
14759 (base32
14760 "1dzx5463ig3ag72a47slc4jbq5id11w77cj0zgzr85h0dbxklrr9"))))
14761 (properties `((upstream-name . "HDF5Array")))
14762 (build-system r-build-system)
14763 (inputs
14764 (list zlib))
14765 (propagated-inputs
14766 (list r-biocgenerics
14767 r-delayedarray
14768 r-iranges
14769 r-matrix
14770 r-rhdf5
14771 r-rhdf5filters
14772 r-rhdf5lib
14773 r-s4vectors))
14774 (home-page "https://bioconductor.org/packages/HDF5Array")
14775 (synopsis "HDF5 back end for DelayedArray objects")
14776 (description "This package provides an array-like container for convenient
14777 access and manipulation of HDF5 datasets. It supports delayed operations and
14778 block processing.")
14779 (license license:artistic2.0)))
14780
14781 (define-public r-rhdf5lib
14782 (package
14783 (name "r-rhdf5lib")
14784 (version "1.18.2")
14785 (source
14786 (origin
14787 (method url-fetch)
14788 (uri (bioconductor-uri "Rhdf5lib" version))
14789 (sha256
14790 (base32
14791 "1jpb8h7c724yz51zjfqs90bsqxgmy1rry2ra9qamsgqpr2j9764g"))
14792 (modules '((guix build utils)))
14793 (snippet
14794 '(begin
14795 ;; Delete bundled binaries
14796 (delete-file-recursively "src/wininclude/")
14797 (delete-file-recursively "src/winlib/")
14798 (delete-file "src/hdf5small_cxx_hl_1.10.7.tar.gz")))))
14799 (properties `((upstream-name . "Rhdf5lib")))
14800 (build-system r-build-system)
14801 (arguments
14802 `(#:phases
14803 (modify-phases %standard-phases
14804 (add-after 'unpack 'do-not-use-bundled-hdf5
14805 (lambda* (#:key inputs #:allow-other-keys)
14806 (for-each delete-file '("configure" "configure.ac"))
14807 (substitute* "R/zzz.R"
14808 (("return\\(links\\)") "return(\" -lz\")"))
14809 (with-directory-excursion "src"
14810 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
14811 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
14812 "hdf5")
14813 ;; Remove timestamp and host system information to make
14814 ;; the build reproducible.
14815 (substitute* "hdf5/src/libhdf5.settings.in"
14816 (("Configured on: @CONFIG_DATE@")
14817 "Configured on: Guix")
14818 (("Uname information:.*")
14819 "Uname information: Linux\n")
14820 ;; Remove unnecessary store reference.
14821 (("C Compiler:.*")
14822 "C Compiler: GCC\n"))
14823 (rename-file "hdf5/src/libhdf5.settings.in"
14824 "hdf5/src/libhdf5.settings")
14825 (rename-file "Makevars.in" "Makevars")
14826 (substitute* "Makevars"
14827 (("@BUILD_HDF5@") "")
14828 (("@COPY_SZIP@") "")
14829 (("@ZLIB_LIB@") "-lz")
14830 (("@ZLIB_INCLUDE@") "")
14831 (("HDF5_CXX_LIB=.*")
14832 (string-append "HDF5_CXX_LIB="
14833 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
14834 (("HDF5_LIB=.*")
14835 (string-append "HDF5_LIB="
14836 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
14837 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
14838 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
14839 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
14840 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
14841 (("HDF5_HL_LIB=.*")
14842 (string-append "HDF5_HL_LIB="
14843 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
14844 (("HDF5_HL_CXX_LIB=.*")
14845 (string-append "HDF5_HL_CXX_LIB="
14846 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
14847 ;; szip is non-free software
14848 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
14849 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n"))))))))
14850 (propagated-inputs
14851 (list hdf5-1.10 zlib))
14852 (native-inputs
14853 `(("hdf5-source" ,(package-source hdf5-1.10))
14854 ("r-knitr" ,r-knitr)))
14855 (home-page "https://bioconductor.org/packages/Rhdf5lib")
14856 (synopsis "HDF5 library as an R package")
14857 (description "This package provides C and C++ HDF5 libraries for use in R
14858 packages.")
14859 (license license:artistic2.0)))
14860
14861 (define-public r-beachmat
14862 (package
14863 (name "r-beachmat")
14864 (version "2.12.0")
14865 (source
14866 (origin
14867 (method url-fetch)
14868 (uri (bioconductor-uri "beachmat" version))
14869 (sha256
14870 (base32
14871 "0fc6vvjjq1mfjfj2zqkap3rwvinnfqjs0cpk1447sspvd1rjya8c"))))
14872 (build-system r-build-system)
14873 (propagated-inputs
14874 (list r-biocgenerics r-delayedarray r-matrix r-rcpp))
14875 (native-inputs
14876 (list r-knitr))
14877 (home-page "https://bioconductor.org/packages/beachmat")
14878 (synopsis "Compiling Bioconductor to handle each matrix type")
14879 (description "This package provides a consistent C++ class interface for a
14880 variety of commonly used matrix types, including sparse and HDF5-backed
14881 matrices.")
14882 (license license:gpl3)))
14883
14884 ;; This package includes files that have been taken from kentutils. Some
14885 ;; parts of kentutils are not released under a free license, but this package
14886 ;; only uses files that are also found in the free parts of kentutils.
14887 (define-public r-cner
14888 (package
14889 (name "r-cner")
14890 (version "1.32.0")
14891 (source
14892 (origin
14893 (method url-fetch)
14894 (uri (bioconductor-uri "CNEr" version))
14895 (sha256
14896 (base32 "05zvr5fv8nprxqh2wvvrlf737dq242i20p1rpyqjaxihl6xl62kq"))))
14897 (properties `((upstream-name . "CNEr")))
14898 (build-system r-build-system)
14899 (inputs (list zlib))
14900 (propagated-inputs
14901 (list r-annotate
14902 r-biocgenerics
14903 r-biostrings
14904 r-dbi
14905 r-genomeinfodb
14906 r-genomicalignments
14907 r-genomicranges
14908 r-ggplot2
14909 r-go-db
14910 r-iranges
14911 r-keggrest
14912 r-powerlaw
14913 r-r-utils
14914 r-readr
14915 r-reshape2
14916 r-rsqlite
14917 r-rtracklayer
14918 r-s4vectors
14919 r-xvector))
14920 (native-inputs
14921 (list r-knitr))
14922 (home-page "https://github.com/ge11232002/CNEr")
14923 (synopsis "CNE Detection and Visualization")
14924 (description
14925 "This package provides tools for large-scale identification and
14926 advanced visualization of sets of conserved noncoding elements.")
14927 ;; For all files in src/ucsc "license is hereby granted for all use -
14928 ;; public, private or commercial"; this includes those files that don't
14929 ;; have a license header, because they are included in the free parts of
14930 ;; the kentutils package.
14931 (license (list license:gpl2
14932 (license:non-copyleft
14933 "https://raw.githubusercontent.com/ucscGenomeBrowser/kent/v410_base/src/lib/LICENSE")))))
14934
14935 (define-public r-tfbstools
14936 (package
14937 (name "r-tfbstools")
14938 (version "1.34.0")
14939 (source
14940 (origin
14941 (method url-fetch)
14942 (uri (bioconductor-uri "TFBSTools" version))
14943 (sha256
14944 (base32
14945 "0l6j1r2cx7jfd39qzbyynk4jvzd81ys6yypzxjc97js4kkyrx29w"))))
14946 (properties `((upstream-name . "TFBSTools")))
14947 (build-system r-build-system)
14948 (propagated-inputs
14949 (list r-biobase
14950 r-biocgenerics
14951 r-biocparallel
14952 r-biostrings
14953 r-bsgenome
14954 r-catools
14955 r-cner
14956 r-dbi
14957 r-dirichletmultinomial
14958 r-genomeinfodb
14959 r-genomicranges
14960 r-gtools
14961 r-iranges
14962 r-rsqlite
14963 r-rtracklayer
14964 r-s4vectors
14965 r-seqlogo
14966 r-tfmpvalue
14967 r-xml
14968 r-xvector))
14969 (native-inputs (list r-knitr))
14970 (home-page "https://github.com/ge11232002/TFBSTools")
14971 (synopsis "Transcription factor binding site (TFBS) analysis")
14972 (description
14973 "TFBSTools is a package for the analysis and manipulation of
14974 transcription factor binding sites. It includes matrices conversion
14975 between @dfn{Position Frequency Matrix} (PFM), @dfn{Position Weight
14976 Matrix} (PWM) and @dfn{Information Content Matrix} (ICM). It can also
14977 scan putative TFBS from sequence/alignment, query JASPAR database and
14978 provides a wrapper of de novo motif discovery software.")
14979 (license license:gpl2)))
14980
14981 (define-public r-maftools
14982 (package
14983 (name "r-maftools")
14984 (version "2.12.0")
14985 (source
14986 (origin
14987 (method url-fetch)
14988 (uri (bioconductor-uri "maftools" version))
14989 (sha256
14990 (base32 "1gqfi95v4fs64n4walij0g2kds3fbbwp6lih5yakmgf6kj8fpkk6"))))
14991 (properties `((upstream-name . "maftools")))
14992 (build-system r-build-system)
14993 (propagated-inputs
14994 (list r-data-table
14995 r-dnacopy
14996 r-rcolorbrewer
14997 r-rhtslib
14998 r-survival
14999 r-zlibbioc))
15000 (native-inputs (list r-knitr))
15001 (home-page "https://github.com/PoisonAlien/maftools")
15002 (synopsis "Summarize, analyze and visualize MAF files")
15003 (description
15004 "Analyze and visualize Mutation Annotation Format (MAF) files from large
15005 scale sequencing studies. This package provides various functions to perform
15006 most commonly used analyses in cancer genomics and to create feature rich
15007 customizable visualzations with minimal effort.")
15008 (license license:expat)))
15009
15010 (define-public r-motifmatchr
15011 (package
15012 (name "r-motifmatchr")
15013 (version "1.18.0")
15014 (source
15015 (origin
15016 (method url-fetch)
15017 (uri (bioconductor-uri "motifmatchr" version))
15018 (sha256
15019 (base32
15020 "1ssn00mxwk23zr5na0vcmxvm69i68f0ga0wqlv1nk2isg0wpv878"))))
15021 (properties `((upstream-name . "motifmatchr")))
15022 (build-system r-build-system)
15023 (propagated-inputs
15024 (list r-biostrings
15025 r-bsgenome
15026 r-genomeinfodb
15027 r-genomicranges
15028 r-iranges
15029 r-matrix
15030 r-rcpp
15031 r-rcpparmadillo
15032 r-rsamtools
15033 r-s4vectors
15034 r-summarizedexperiment
15035 r-tfbstools))
15036 (native-inputs (list r-knitr))
15037 (home-page "https://bioconductor.org/packages/motifmatchr")
15038 (synopsis "Fast motif matching in R")
15039 (description
15040 "Quickly find motif matches for many motifs and many sequences.
15041 This package wraps C++ code from the MOODS motif calling library.")
15042 (license license:gpl3)))
15043
15044 (define-public r-chromvar
15045 (package
15046 (name "r-chromvar")
15047 (version "1.18.0")
15048 (source
15049 (origin
15050 (method url-fetch)
15051 (uri (bioconductor-uri "chromVAR" version))
15052 (sha256
15053 (base32 "0vhsvkm4kvln0002f13ayk57f9fmiz1kw9vwpsm1vds1vahd656m"))))
15054 (properties `((upstream-name . "chromVAR")))
15055 (build-system r-build-system)
15056 (propagated-inputs
15057 (list r-biocgenerics
15058 r-biocparallel
15059 r-biostrings
15060 r-bsgenome
15061 r-dt
15062 r-genomeinfodb
15063 r-genomicranges
15064 r-ggplot2
15065 r-iranges
15066 r-matrix
15067 r-miniui
15068 r-nabor
15069 r-plotly
15070 r-rcolorbrewer
15071 r-rcpp
15072 r-rcpparmadillo
15073 r-rsamtools
15074 r-rtsne
15075 r-s4vectors
15076 r-shiny
15077 r-summarizedexperiment
15078 r-tfbstools))
15079 (native-inputs (list r-knitr))
15080 (home-page "https://bioconductor.org/packages/release/bioc/html/chromVAR.html")
15081 (synopsis "Determine chromatin variation across regions")
15082 (description
15083 "This package @code{r-chromvar} determines variation in chromatin
15084 accessibility across sets of annotations or peaks. @code{r-chromvar} is
15085 designed primarily for single-cell or sparse chromatin accessibility data like
15086 single cell assay for transposase-accessible chromatin using
15087 sequencing (@code{scATAC-seq} or sparse bulk ATAC or deoxyribonuclease
15088 sequence (@code{DNAse-seq}) experiments.")
15089 (license license:expat)))
15090
15091 (define-public r-singlecellexperiment
15092 (package
15093 (name "r-singlecellexperiment")
15094 (version "1.18.0")
15095 (source
15096 (origin
15097 (method url-fetch)
15098 (uri (bioconductor-uri "SingleCellExperiment" version))
15099 (sha256
15100 (base32
15101 "0s1aqbvlfnzijzfywjfpinqmxqj269dq2d3zlgf4xw9c1nwwnv7p"))))
15102 (properties
15103 `((upstream-name . "SingleCellExperiment")))
15104 (build-system r-build-system)
15105 (propagated-inputs
15106 (list r-biocgenerics r-delayedarray r-genomicranges r-s4vectors
15107 r-summarizedexperiment))
15108 (native-inputs
15109 (list r-knitr))
15110 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
15111 (synopsis "S4 classes for single cell data")
15112 (description "This package defines an S4 class for storing data from
15113 single-cell experiments. This includes specialized methods to store and
15114 retrieve spike-in information, dimensionality reduction coordinates and size
15115 factors for each cell, along with the usual metadata for genes and
15116 libraries.")
15117 (license license:gpl3)))
15118
15119 (define-public r-singler
15120 (package
15121 (name "r-singler")
15122 (version "1.10.0")
15123 (source
15124 (origin
15125 (method url-fetch)
15126 (uri (bioconductor-uri "SingleR" version))
15127 (sha256
15128 (base32 "0qbyc6ygw2xv3li9187i3axsw6ihwpa7pkvxvy9cagv7xck45c5y"))))
15129 (properties `((upstream-name . "SingleR")))
15130 (build-system r-build-system)
15131 (propagated-inputs
15132 (list r-beachmat
15133 r-biocneighbors
15134 r-biocparallel
15135 r-biocsingular
15136 r-delayedarray
15137 r-delayedmatrixstats
15138 r-matrix
15139 r-rcpp
15140 r-s4vectors
15141 r-summarizedexperiment))
15142 (native-inputs (list r-knitr))
15143 (home-page "https://github.com/LTLA/SingleR")
15144 (synopsis "Reference-based single-cell RNA-seq annotation")
15145 (description
15146 "This package performs unbiased cell type recognition from single-cell
15147 RNA sequencing data, by leveraging reference transcriptomic datasets of pure
15148 cell types to infer the cell of origin of each single cell independently.")
15149 (license license:gpl3)))
15150
15151 (define-public r-scuttle
15152 (package
15153 (name "r-scuttle")
15154 (version "1.6.3")
15155 (source
15156 (origin
15157 (method url-fetch)
15158 (uri (bioconductor-uri "scuttle" version))
15159 (sha256
15160 (base32
15161 "1w1jy5fqkp2d03lp84d49fsksnl0pcg0wgqyd49d5k1mipdw4671"))))
15162 (properties `((upstream-name . "scuttle")))
15163 (build-system r-build-system)
15164 (propagated-inputs
15165 (list r-beachmat
15166 r-biocgenerics
15167 r-biocparallel
15168 r-delayedarray
15169 r-delayedmatrixstats
15170 r-genomicranges
15171 r-matrix
15172 r-rcpp
15173 r-s4vectors
15174 r-singlecellexperiment
15175 r-summarizedexperiment))
15176 (native-inputs (list r-knitr))
15177 (home-page "https://bioconductor.org/packages/scuttle")
15178 (synopsis "Single-cell RNA-Seq analysis utilities")
15179 (description
15180 "This package provides basic utility functions for performing single-cell
15181 analyses, focusing on simple normalization, quality control and data
15182 transformations. It also provides some helper functions to assist development
15183 of other packages.")
15184 (license license:gpl3)))
15185
15186 (define-public r-scater
15187 (package
15188 (name "r-scater")
15189 (version "1.24.0")
15190 (source (origin
15191 (method url-fetch)
15192 (uri (bioconductor-uri "scater" version))
15193 (sha256
15194 (base32
15195 "0dqirggw7my5nq4ln9q0ya18ciqplkz9gx318ffias9ag3yii5rw"))))
15196 (build-system r-build-system)
15197 (propagated-inputs
15198 (list r-beachmat
15199 r-biocgenerics
15200 r-biocneighbors
15201 r-biocparallel
15202 r-biocsingular
15203 r-delayedarray
15204 r-delayedmatrixstats
15205 r-ggbeeswarm
15206 r-ggplot2
15207 r-ggrepel
15208 r-gridextra
15209 r-matrix
15210 r-rcolorbrewer
15211 r-rcppml
15212 r-rlang
15213 r-rtsne
15214 r-s4vectors
15215 r-scuttle
15216 r-singlecellexperiment
15217 r-summarizedexperiment
15218 r-viridis))
15219 (native-inputs
15220 (list r-knitr))
15221 (home-page "https://github.com/davismcc/scater")
15222 (synopsis "Single-cell analysis toolkit for gene expression data in R")
15223 (description "This package provides a collection of tools for doing
15224 various analyses of single-cell RNA-seq gene expression data, with a focus on
15225 quality control.")
15226 (license license:gpl2+)))
15227
15228 (define-public r-scran
15229 (package
15230 (name "r-scran")
15231 (version "1.24.1")
15232 (source
15233 (origin
15234 (method url-fetch)
15235 (uri (bioconductor-uri "scran" version))
15236 (sha256
15237 (base32
15238 "1a6vlq8i5gh7zxm6igmy75187pkx42z28qjag50m49xy5valw3ni"))))
15239 (build-system r-build-system)
15240 (propagated-inputs
15241 (list r-beachmat
15242 r-bh
15243 r-biocgenerics
15244 r-biocparallel
15245 r-biocsingular
15246 r-bluster
15247 r-delayedarray
15248 r-delayedmatrixstats
15249 r-dqrng
15250 r-edger
15251 r-igraph
15252 r-limma
15253 r-matrix
15254 r-metapod
15255 r-rcpp
15256 r-s4vectors
15257 r-scuttle
15258 r-singlecellexperiment
15259 r-statmod
15260 r-summarizedexperiment))
15261 (native-inputs
15262 (list r-knitr))
15263 (home-page "https://bioconductor.org/packages/scran")
15264 (synopsis "Methods for single-cell RNA-Seq data analysis")
15265 (description "This package implements a variety of low-level analyses of
15266 single-cell RNA-seq data. Methods are provided for normalization of
15267 cell-specific biases, assignment of cell cycle phase, and detection of highly
15268 variable and significantly correlated genes.")
15269 (license license:gpl3)))
15270
15271 (define-public r-sparsematrixstats
15272 (package
15273 (name "r-sparsematrixstats")
15274 (version "1.8.0")
15275 (source
15276 (origin
15277 (method url-fetch)
15278 (uri (bioconductor-uri "sparseMatrixStats" version))
15279 (sha256
15280 (base32
15281 "0p12kay7p5zbfm2589wdx0n9jhgpf5fb2fsmkhn3p4ck4xcy13x2"))))
15282 (properties
15283 `((upstream-name . "sparseMatrixStats")))
15284 (build-system r-build-system)
15285 (propagated-inputs
15286 (list r-matrix r-matrixgenerics r-matrixstats r-rcpp))
15287 (native-inputs (list r-knitr))
15288 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
15289 (synopsis "Summary statistics for rows and columns of sparse matrices")
15290 (description
15291 "This package provides high performance functions for row and column
15292 operations on sparse matrices. Currently, the optimizations are limited to
15293 data in the column sparse format.")
15294 (license license:expat)))
15295
15296 (define-public r-delayedmatrixstats
15297 (package
15298 (name "r-delayedmatrixstats")
15299 (version "1.18.1")
15300 (source
15301 (origin
15302 (method url-fetch)
15303 (uri (bioconductor-uri "DelayedMatrixStats" version))
15304 (sha256
15305 (base32
15306 "1kq643fmfzq1qjvpj3kc092ahc3qamqgx53layqsyvz5mil55jjv"))))
15307 (properties
15308 `((upstream-name . "DelayedMatrixStats")))
15309 (build-system r-build-system)
15310 (propagated-inputs
15311 (list r-delayedarray
15312 r-iranges
15313 r-matrix
15314 r-matrixgenerics
15315 r-matrixstats
15316 r-s4vectors
15317 r-sparsematrixstats))
15318 (native-inputs
15319 (list r-knitr))
15320 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
15321 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
15322 (description
15323 "This package provides a port of the @code{matrixStats} API for use with
15324 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
15325 contains high-performing functions operating on rows and columns of
15326 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
15327 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
15328 are optimized per data type and for subsetted calculations such that both
15329 memory usage and processing time is minimized.")
15330 (license license:expat)))
15331
15332 (define-public r-mscoreutils
15333 (package
15334 (name "r-mscoreutils")
15335 (version "1.8.0")
15336 (source
15337 (origin
15338 (method url-fetch)
15339 (uri (bioconductor-uri "MsCoreUtils" version))
15340 (sha256
15341 (base32
15342 "077x1zcy27x8akmagjn75j97082cgnahrbfw0qx08q455m5x3xzh"))))
15343 (properties `((upstream-name . "MsCoreUtils")))
15344 (build-system r-build-system)
15345 (propagated-inputs
15346 (list r-clue r-mass r-rcpp r-s4vectors))
15347 (native-inputs
15348 (list r-knitr))
15349 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
15350 (synopsis "Core utils for mass spectrometry data")
15351 (description
15352 "This package defines low-level functions for mass spectrometry data and
15353 is independent of any high-level data structures. These functions include
15354 mass spectra processing functions (noise estimation, smoothing, binning),
15355 quantitative aggregation functions (median polish, robust summarisation,
15356 etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
15357 well as misc helper functions, that are used across high-level data structure
15358 within the R for Mass Spectrometry packages.")
15359 (license license:artistic2.0)))
15360
15361 (define-public r-msfeatures
15362 (package
15363 (name "r-msfeatures")
15364 (version "1.4.0")
15365 (source
15366 (origin
15367 (method url-fetch)
15368 (uri (bioconductor-uri "MsFeatures" version))
15369 (sha256
15370 (base32 "111iqcq4q315pb4j8z427shin9b00p179m2s9h6dd7imvbd68yq3"))))
15371 (properties `((upstream-name . "MsFeatures")))
15372 (build-system r-build-system)
15373 (propagated-inputs
15374 (list r-mscoreutils r-protgenerics r-summarizedexperiment))
15375 (native-inputs
15376 (list r-knitr))
15377 (home-page "https://github.com/RforMassSpectrometry/MsFeatures")
15378 (synopsis "Functionality for mass spectrometry features")
15379 (description
15380 "The MsFeature package defines functionality for Mass Spectrometry
15381 features. This includes functions to group (LC-MS) features based on some of
15382 their properties, such as retention time (coeluting features), or correlation
15383 of signals across samples. This package hence can be used to group features, and
15384 its results can be used as an input for the @code{QFeatures} package which
15385 allows aggregating abundance levels of features within each group. This
15386 package defines concepts and functions for base and common data types,
15387 implementations for more specific data types are expected to be implemented in
15388 the respective packages (such as e.g. @code{xcms}).")
15389 (license license:artistic2.0)))
15390
15391 (define-public r-biocio
15392 (package
15393 (name "r-biocio")
15394 (version "1.6.0")
15395 (source
15396 (origin
15397 (method url-fetch)
15398 (uri (bioconductor-uri "BiocIO" version))
15399 (sha256
15400 (base32
15401 "16j826w4zrmbgpmq6nyglcrjailsfv48ih1rz1qn383g7v503ydp"))))
15402 (properties `((upstream-name . "BiocIO")))
15403 (build-system r-build-system)
15404 (propagated-inputs
15405 (list r-biocgenerics r-s4vectors))
15406 (native-inputs
15407 (list r-knitr))
15408 (home-page "https://bioconductor.org/packages/BiocIO")
15409 (synopsis "Standard input and output for Bioconductor packages")
15410 (description
15411 "This package implements `import()` and `export()` standard generics for
15412 importing and exporting biological data formats. `import()` supports
15413 whole-file as well as chunk-wise iterative import. The `import()` interface
15414 optionally provides a standard mechanism for 'lazy' access via `filter()` (on
15415 row or element-like components of the file resource), `select()` (on
15416 column-like components of the file resource) and `collect()`. The `import()`
15417 interface optionally provides transparent access to remote (e.g. via https)
15418 as well as local access. Developers can register a file extension, e.g.,
15419 `.loom` for dispatch from character-based URIs to specific `import()` /
15420 `export()` methods based on classes representing file types, e.g.,
15421 `LoomFile()`.")
15422 (license license:artistic2.0)))
15423
15424 (define-public r-msmseda
15425 (package
15426 (name "r-msmseda")
15427 (version "1.34.0")
15428 (source
15429 (origin
15430 (method url-fetch)
15431 (uri (bioconductor-uri "msmsEDA" version))
15432 (sha256
15433 (base32
15434 "0jnaq9ar4mnf3pfhka9hvk61p51ny9jws49xi8z29dq288b42b42"))))
15435 (properties `((upstream-name . "msmsEDA")))
15436 (build-system r-build-system)
15437 (propagated-inputs
15438 (list r-gplots r-mass r-msnbase r-rcolorbrewer))
15439 (home-page
15440 "https://bioconductor.org/packages/msmsEDA")
15441 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
15442 (description
15443 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
15444 experiments, and visualize de influence of the involved factors.")
15445 (license license:gpl2)))
15446
15447 (define-public r-msmstests
15448 (package
15449 (name "r-msmstests")
15450 (version "1.34.0")
15451 (source
15452 (origin
15453 (method url-fetch)
15454 (uri (bioconductor-uri "msmsTests" version))
15455 (sha256
15456 (base32
15457 "1wzdz0p9wmr243xkmymx9fwskafkyxgmlip4sd1fy2s06px7r0xi"))))
15458 (properties `((upstream-name . "msmsTests")))
15459 (build-system r-build-system)
15460 (propagated-inputs
15461 (list r-edger r-msmseda r-msnbase r-qvalue))
15462 (home-page
15463 "https://bioconductor.org/packages/msmsTests")
15464 (synopsis "Differential LC-MS/MS expression tests")
15465 (description
15466 "This package provides statistical tests for label-free LC-MS/MS data
15467 by spectral counts, to discover differentially expressed proteins between two
15468 biological conditions. Three tests are available: Poisson GLM regression,
15469 quasi-likelihood GLM regression, and the negative binomial of the edgeR
15470 package. The three models admit blocking factors to control for nuisance
15471 variables. To assure a good level of reproducibility a post-test filter is
15472 available, where we may set the minimum effect size considered biologicaly
15473 relevant, and the minimum expression of the most abundant condition.")
15474 (license license:gpl2)))
15475
15476 (define-public r-catalyst
15477 (package
15478 (name "r-catalyst")
15479 (version "1.20.1")
15480 (source
15481 (origin
15482 (method url-fetch)
15483 (uri (bioconductor-uri "CATALYST" version))
15484 (sha256
15485 (base32
15486 "05vfqwa9qsm16px77s9bzygs6zymcxshymmpvz86a9l1cy1yxbza"))))
15487 (properties `((upstream-name . "CATALYST")))
15488 (build-system r-build-system)
15489 (propagated-inputs
15490 (list r-circlize
15491 r-complexheatmap
15492 r-consensusclusterplus
15493 r-cowplot
15494 r-data-table
15495 r-dplyr
15496 r-drc
15497 r-flowcore
15498 r-flowsom
15499 r-ggplot2
15500 r-ggrepel
15501 r-ggridges
15502 r-gridextra
15503 r-magrittr
15504 r-matrix
15505 r-matrixstats
15506 r-nnls
15507 r-purrr
15508 r-rcolorbrewer
15509 r-reshape2
15510 r-rtsne
15511 r-s4vectors
15512 r-scales
15513 r-scater
15514 r-singlecellexperiment
15515 r-summarizedexperiment))
15516 (native-inputs
15517 (list r-knitr))
15518 (home-page "https://github.com/HelenaLC/CATALYST")
15519 (synopsis "Cytometry data analysis tools")
15520 (description
15521 "This package is @dfn{Cytometry dATa anALYSis Tools} (CATALYST). Mass
15522 cytometry like @dfn{Cytometry by time of flight} (CyTOF) uses heavy metal
15523 isotopes rather than fluorescent tags as reporters to label antibodies,
15524 thereby substantially decreasing spectral overlap and allowing for examination
15525 of over 50 parameters at the single cell level. While spectral overlap is
15526 significantly less pronounced in CyTOF than flow cytometry, spillover due to
15527 detection sensitivity, isotopic impurities, and oxide formation can impede
15528 data interpretability. @code{CATALYST} was designed to provide a pipeline for
15529 preprocessing of cytometry data, including:
15530
15531 @enumerate
15532 @item normalization using bead standards;
15533 @item single-cell deconvolution;
15534 @item bead-based compensation.
15535 @end enumerate
15536 ")
15537 (license license:gpl2+)))
15538
15539 (define-public r-erma
15540 (package
15541 (name "r-erma")
15542 (version "1.12.0")
15543 (source
15544 (origin
15545 (method url-fetch)
15546 (uri (bioconductor-uri "erma" version))
15547 (sha256
15548 (base32
15549 "1ilq01cr2ipxpmp422fikiz6nj4nasjhj0ikcagjn2zmmarpgi1b"))))
15550 (build-system r-build-system)
15551 (propagated-inputs
15552 (list r-annotationdbi
15553 r-biobase
15554 r-biocgenerics
15555 r-biocparallel
15556 r-genomeinfodb
15557 r-genomicfiles
15558 r-genomicranges
15559 r-ggplot2
15560 r-homo-sapiens
15561 r-iranges
15562 r-rtracklayer
15563 r-s4vectors
15564 r-shiny
15565 r-summarizedexperiment))
15566 (native-inputs
15567 (list r-knitr))
15568 (home-page "https://bioconductor.org/packages/erma")
15569 (synopsis "Epigenomic road map adventures")
15570 (description
15571 "The epigenomics road map describes locations of epigenetic marks in DNA
15572 from a variety of cell types. Of interest are locations of histone
15573 modifications, sites of DNA methylation, and regions of accessible chromatin.
15574 This package presents a selection of elements of the road map including
15575 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
15576 by Ernst and Kellis.")
15577 (license license:artistic2.0)))
15578
15579 (define-public r-ggbio
15580 (package
15581 (name "r-ggbio")
15582 (version "1.44.1")
15583 (source
15584 (origin
15585 (method url-fetch)
15586 (uri (bioconductor-uri "ggbio" version))
15587 (sha256
15588 (base32
15589 "0iyhjalwq1jmldpn20iv8l2kmz6sm20ddry2yz2zn7yq0wszp3vg"))))
15590 (build-system r-build-system)
15591 (arguments
15592 `(#:phases
15593 (modify-phases %standard-phases
15594 ;; See https://github.com/tengfei/ggbio/issues/117
15595 ;; This fix will be included in the next release.
15596 (add-after 'unpack 'fix-typo
15597 (lambda _
15598 (substitute* "R/GGbio-class.R"
15599 (("fechable") "fetchable"))
15600 #t)))))
15601 (propagated-inputs
15602 (list r-annotationdbi
15603 r-annotationfilter
15604 r-biobase
15605 r-biocgenerics
15606 r-biostrings
15607 r-biovizbase
15608 r-bsgenome
15609 r-ensembldb
15610 r-genomeinfodb
15611 r-genomicalignments
15612 r-genomicfeatures
15613 r-genomicranges
15614 r-ggally
15615 r-ggplot2
15616 r-gridextra
15617 r-gtable
15618 r-hmisc
15619 r-iranges
15620 r-organismdbi
15621 r-reshape2
15622 r-rlang
15623 r-rsamtools
15624 r-rtracklayer
15625 r-s4vectors
15626 r-scales
15627 r-summarizedexperiment
15628 r-variantannotation))
15629 (native-inputs
15630 (list r-knitr))
15631 (home-page "http://www.tengfei.name/ggbio/")
15632 (synopsis "Visualization tools for genomic data")
15633 (description
15634 "The ggbio package extends and specializes the grammar of graphics for
15635 biological data. The graphics are designed to answer common scientific
15636 questions, in particular those often asked of high throughput genomics data.
15637 All core Bioconductor data structures are supported, where appropriate. The
15638 package supports detailed views of particular genomic regions, as well as
15639 genome-wide overviews. Supported overviews include ideograms and grand linear
15640 views. High-level plots include sequence fragment length, edge-linked
15641 interval to data view, mismatch pileup, and several splicing summaries.")
15642 (license license:artistic2.0)))
15643
15644 (define-public r-gqtlbase
15645 (package
15646 (name "r-gqtlbase")
15647 (version "1.21.1")
15648 (source
15649 (origin
15650 (method url-fetch)
15651 (uri (bioconductor-uri "gQTLBase" version))
15652 (sha256
15653 (base32
15654 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
15655 (properties `((upstream-name . "gQTLBase")))
15656 (build-system r-build-system)
15657 (arguments
15658 `(#:phases
15659 (modify-phases %standard-phases
15660 ;; This is an upstream bug.
15661 (add-after 'unpack 'fix-imports
15662 (lambda _
15663 (substitute* "NAMESPACE"
15664 ((".*maxffmode.*") "")
15665 (("importFrom\\(ff,.*") "import(ff)\n"))
15666 #t)))))
15667 (propagated-inputs
15668 (list r-batchjobs
15669 r-bbmisc
15670 r-biocgenerics
15671 r-bit
15672 r-doparallel
15673 r-ff
15674 r-ffbase
15675 r-foreach
15676 r-genomicfiles
15677 r-genomicranges
15678 r-rtracklayer
15679 r-s4vectors
15680 r-summarizedexperiment))
15681 (native-inputs
15682 (list r-knitr))
15683 (home-page "https://bioconductor.org/packages/gQTLBase")
15684 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
15685 (description
15686 "The purpose of this package is to simplify the storage and interrogation
15687 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
15688 and more.")
15689 (license license:artistic2.0)))
15690
15691 (define-public r-gqtlstats
15692 (package
15693 (name "r-gqtlstats")
15694 (version "1.21.3")
15695 (source
15696 (origin
15697 (method url-fetch)
15698 (uri (bioconductor-uri "gQTLstats" version))
15699 (sha256
15700 (base32
15701 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
15702 (properties `((upstream-name . "gQTLstats")))
15703 (build-system r-build-system)
15704 (propagated-inputs
15705 (list r-annotationdbi
15706 r-batchjobs
15707 r-bbmisc
15708 r-beeswarm
15709 r-biobase
15710 r-biocgenerics
15711 r-doparallel
15712 r-dplyr
15713 r-erma
15714 r-ffbase
15715 r-foreach
15716 r-genomeinfodb
15717 r-genomicfeatures
15718 r-genomicfiles
15719 r-genomicranges
15720 r-ggbeeswarm
15721 r-ggplot2
15722 r-gqtlbase
15723 r-hardyweinberg
15724 r-homo-sapiens
15725 r-iranges
15726 r-limma
15727 r-mgcv
15728 r-plotly
15729 r-reshape2
15730 r-s4vectors
15731 r-shiny
15732 r-snpstats
15733 r-summarizedexperiment
15734 r-variantannotation))
15735 (native-inputs
15736 (list r-knitr))
15737 (home-page "https://bioconductor.org/packages/gQTLstats")
15738 (synopsis "Computationally efficient analysis for eQTL and allied studies")
15739 (description
15740 "This package provides tools for the computationally efficient analysis
15741 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
15742 The software in this package aims to support refinements and functional
15743 interpretation of members of a collection of association statistics on a
15744 family of feature/genome hypotheses.")
15745 (license license:artistic2.0)))
15746
15747 (define-public r-gviz
15748 (package
15749 (name "r-gviz")
15750 (version "1.40.1")
15751 (source
15752 (origin
15753 (method url-fetch)
15754 (uri (bioconductor-uri "Gviz" version))
15755 (sha256
15756 (base32
15757 "0as3sxhv21bqqrpvafcqim7798hhkzj3q40hy1rqyhv2lhj4rbvi"))))
15758 (properties `((upstream-name . "Gviz")))
15759 (build-system r-build-system)
15760 (propagated-inputs
15761 (list r-annotationdbi
15762 r-biobase
15763 r-biocgenerics
15764 r-biomart
15765 r-biostrings
15766 r-biovizbase
15767 r-bsgenome
15768 r-digest
15769 r-ensembldb
15770 r-genomeinfodb
15771 r-genomicalignments
15772 r-genomicfeatures
15773 r-genomicranges
15774 r-iranges
15775 r-lattice
15776 r-latticeextra
15777 r-matrixstats
15778 r-rcolorbrewer
15779 r-rsamtools
15780 r-rtracklayer
15781 r-s4vectors
15782 r-xvector))
15783 (native-inputs
15784 (list r-knitr))
15785 (home-page "https://bioconductor.org/packages/Gviz")
15786 (synopsis "Plotting data and annotation information along genomic coordinates")
15787 (description
15788 "Genomic data analyses requires integrated visualization of known genomic
15789 information and new experimental data. Gviz uses the biomaRt and the
15790 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
15791 and translates this to e.g. gene/transcript structures in viewports of the
15792 grid graphics package. This results in genomic information plotted together
15793 with your data.")
15794 (license license:artistic2.0)))
15795
15796 (define-public r-gwascat
15797 (package
15798 (name "r-gwascat")
15799 (version "2.28.1")
15800 (source
15801 (origin
15802 (method url-fetch)
15803 (uri (bioconductor-uri "gwascat" version))
15804 (sha256
15805 (base32
15806 "19ymdxj8966i4yk0zalfw23938cpv4q7pywg4qb242p44na5y9sl"))))
15807 (build-system r-build-system)
15808 (propagated-inputs
15809 (list r-annotationdbi
15810 r-annotationhub
15811 r-biocfilecache
15812 r-biostrings
15813 r-genomeinfodb
15814 r-genomicfeatures
15815 r-genomicranges
15816 r-iranges
15817 r-readr
15818 r-s4vectors
15819 r-snpstats
15820 r-variantannotation))
15821 (native-inputs
15822 (list r-knitr))
15823 (home-page "https://bioconductor.org/packages/gwascat")
15824 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
15825 (description
15826 "This package provides tools for representing and modeling data in the
15827 EMBL-EBI GWAS catalog.")
15828 (license license:artistic2.0)))
15829
15830 (define-public r-kegggraph
15831 (package
15832 (name "r-kegggraph")
15833 (version "1.56.0")
15834 (source
15835 (origin
15836 (method url-fetch)
15837 (uri (bioconductor-uri "KEGGgraph" version))
15838 (sha256
15839 (base32 "15pq040pcg8hr18xixmjp59xb7mgvygjv6kisqk8yv99l1611ndx"))))
15840 (properties `((upstream-name . "KEGGgraph")))
15841 (build-system r-build-system)
15842 (propagated-inputs
15843 (list r-graph r-rcurl r-rgraphviz r-xml))
15844 (home-page "https://bioconductor.org/packages/KEGGgraph")
15845 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
15846 (description
15847 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
15848 object as well as a collection of tools to analyze, dissect and visualize these
15849 graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
15850 maintaining all essential pathway attributes. The package offers
15851 functionalities including parsing, graph operation, visualization and etc.")
15852 (license license:gpl2+)))
15853
15854 (define-public r-ldblock
15855 (package
15856 (name "r-ldblock")
15857 (version "1.26.0")
15858 (source
15859 (origin
15860 (method url-fetch)
15861 (uri (bioconductor-uri "ldblock" version))
15862 (sha256
15863 (base32
15864 "08ss03b93czwb4x60hsi30ad4lmamvq5mxa8nj0g18z68qcraijm"))))
15865 (build-system r-build-system)
15866 (propagated-inputs
15867 (list r-biocgenerics
15868 r-ensdb-hsapiens-v75
15869 r-ensembldb
15870 r-genomeinfodb
15871 r-genomicfiles
15872 r-httr
15873 r-matrix
15874 r-rsamtools
15875 r-snpstats
15876 r-variantannotation))
15877 (native-inputs
15878 (list r-knitr))
15879 (home-page "https://bioconductor.org/packages/ldblock")
15880 (synopsis "Data structures for linkage disequilibrium measures in populations")
15881 (description
15882 "This package defines data structures for @dfn{linkage
15883 disequilibrium} (LD) measures in populations. Its purpose is to simplify
15884 handling of existing population-level data for the purpose of flexibly
15885 defining LD blocks.")
15886 (license license:artistic2.0)))
15887
15888 ;; This is a CRAN package, but it depends on r-snpstats, which is a
15889 ;; Bioconductor package.
15890 (define-public r-ldheatmap
15891 (package
15892 (name "r-ldheatmap")
15893 (version "1.0-6")
15894 (source
15895 (origin
15896 (method url-fetch)
15897 (uri (cran-uri "LDheatmap" version))
15898 (sha256
15899 (base32
15900 "0gr99kys1ahyl8s6cbj6rmh4vwid8kn92lcbjnwh0ahb73m2xjjc"))))
15901 (properties `((upstream-name . "LDheatmap")))
15902 (build-system r-build-system)
15903 (propagated-inputs
15904 (list r-genetics r-rcpp r-snpstats))
15905 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
15906 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
15907 (description
15908 "This package provides tools to produce a graphical display, as a heat
15909 map, of measures of pairwise linkage disequilibria between SNPs. Users may
15910 optionally include the physical locations or genetic map distances of each SNP
15911 on the plot.")
15912 (license license:gpl3)))
15913
15914 ;; This is a CRAN package, but it depends on r-rgraphviz, which is a
15915 ;; Bioconductor package.
15916 (define-public r-abn
15917 (package
15918 (name "r-abn")
15919 (version "2.7-1")
15920 (source
15921 (origin
15922 (method url-fetch)
15923 (uri (cran-uri "abn" version))
15924 (sha256
15925 (base32
15926 "1w3jns96m8b9scvaa4hcla3i88a0cfh9qis2l04yixvda5q91gpr"))))
15927 (build-system r-build-system)
15928 (inputs
15929 (list gsl))
15930 (propagated-inputs
15931 (list r-doparallel
15932 r-foreach
15933 r-graph
15934 r-lme4
15935 r-nnet
15936 r-rcpp
15937 r-rcpparmadillo
15938 r-rgraphviz
15939 r-rjags))
15940 (home-page "https://r-bayesian-networks.org/")
15941 (synopsis "Modelling multivariate data with additive bayesian networks")
15942 (description
15943 "Bayesian network analysis is a form of probabilistic graphical models
15944 which derives from empirical data a directed acyclic graph, DAG, describing
15945 the dependency structure between random variables. An additive Bayesian
15946 network model consists of a form of a DAG where each node comprises a
15947 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
15948 equivalent to Bayesian multivariate regression using graphical modelling, they
15949 generalises the usual multivariable regression, GLM, to multiple dependent
15950 variables. This package provides routines to help determine optimal Bayesian
15951 network models for a given data set, where these models are used to identify
15952 statistical dependencies in messy, complex data.")
15953 (license license:gpl2+)))
15954
15955 ;; This is a CRAN package, but it depends on r-rsamtools, which is a
15956 ;; Bioconductor package.
15957 (define-public r-spp
15958 (package
15959 (name "r-spp")
15960 (version "1.16.0")
15961 (source (origin
15962 (method url-fetch)
15963 (uri (cran-uri "spp" version))
15964 (sha256
15965 (base32
15966 "08zxxgyp0h6733b08jmml7k4rhfd3mi5dda3jrzid0s184y0z29w"))))
15967 (build-system r-build-system)
15968 (inputs
15969 (list zlib))
15970 (propagated-inputs
15971 (list r-bh r-catools r-rcpp r-rsamtools))
15972 (home-page "https://cran.r-project.org/web/packages/spp/")
15973 (synopsis "ChIP-Seq processing pipeline")
15974 (description "This package provides tools for analysis of ChIP-seq and
15975 other functional sequencing data.")
15976 (license license:gpl2)))
15977
15978 (define-public r-pathview
15979 (package
15980 (name "r-pathview")
15981 (version "1.36.1")
15982 (source
15983 (origin
15984 (method url-fetch)
15985 (uri (bioconductor-uri "pathview" version))
15986 (sha256
15987 (base32 "11g4zhy4qfq0gmy588334f7s2w1acs2dz9kimax5ya2b8jjibk71"))))
15988 (properties `((upstream-name . "pathview")))
15989 (build-system r-build-system)
15990 (propagated-inputs
15991 (list r-annotationdbi
15992 r-graph
15993 r-kegggraph
15994 r-keggrest
15995 r-org-hs-eg-db
15996 r-png
15997 r-rgraphviz
15998 r-xml))
15999 (home-page "https://pathview.uncc.edu/")
16000 (synopsis "Tool set for pathway based data integration and visualization")
16001 (description
16002 "@code{r-pathview} is a tool set for pathway based data integration and
16003 visualization. It maps and renders a wide variety of biological data on
16004 relevant pathway graphs. All users need is to supply their data and specify
16005 the target pathway. This package automatically downloads the pathway graph
16006 data, parses the data file, maps user data to the pathway, and render pathway
16007 graph with the mapped data. In addition, @code{r-pathview} also seamlessly
16008 integrates with pathway and gene set (enrichment) analysis tools for
16009 large-scale and fully automated analysis.")
16010 (license license:gpl3+)))
16011
16012 (define-public r-snpstats
16013 (package
16014 (name "r-snpstats")
16015 (version "1.46.0")
16016 (source
16017 (origin
16018 (method url-fetch)
16019 (uri (bioconductor-uri "snpStats" version))
16020 (sha256
16021 (base32
16022 "0a5b5nqc7n965jk45ijwkzbn416ib4gfhp8xl39z8f2bdskip4a2"))))
16023 (properties `((upstream-name . "snpStats")))
16024 (build-system r-build-system)
16025 (inputs (list zlib))
16026 (propagated-inputs
16027 (list r-biocgenerics r-matrix r-survival r-zlibbioc))
16028 (home-page "https://bioconductor.org/packages/snpStats")
16029 (synopsis "Methods for SNP association studies")
16030 (description
16031 "This package provides classes and statistical methods for large
16032 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
16033 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
16034 (license license:gpl3)))
16035
16036 (define-public r-chromstar
16037 (package
16038 (name "r-chromstar")
16039 (version "1.22.0")
16040 (source
16041 (origin
16042 (method url-fetch)
16043 (uri (bioconductor-uri "chromstaR" version))
16044 (sha256
16045 (base32
16046 "1xjwmnr4hk8v3nwvhqd6ixk5qr2dv0n4mb9wd6nl7cgjfhjsdgj7"))))
16047 (properties `((upstream-name . "chromstaR")))
16048 (build-system r-build-system)
16049 (propagated-inputs
16050 (list r-bamsignals
16051 r-biocgenerics
16052 r-chromstardata
16053 r-doparallel
16054 r-foreach
16055 r-genomeinfodb
16056 r-genomicalignments
16057 r-genomicranges
16058 r-ggplot2
16059 r-iranges
16060 r-mvtnorm
16061 r-reshape2
16062 r-rsamtools
16063 r-s4vectors))
16064 (native-inputs (list r-knitr))
16065 (home-page "https://github.com/ataudt/chromstaR")
16066 (synopsis "Chromatin state analysis for ChIP-Seq data")
16067 (description
16068 "This package implements functions for combinatorial and differential
16069 analysis of ChIP-seq data. It includes uni- and multivariate peak-calling,
16070 export to genome browser viewable files, and functions for enrichment
16071 analyses.")
16072 (license license:artistic2.0)))
16073
16074 (define-public r-guitar
16075 (package
16076 (name "r-guitar")
16077 (version "2.12.0")
16078 (source
16079 (origin
16080 (method url-fetch)
16081 (uri (bioconductor-uri "Guitar" version))
16082 (sha256
16083 (base32
16084 "09grsasnnk7rmlzjh4lhas9r5spzcsrvmdqj6fx1dk22sckcqahh"))))
16085 (properties `((upstream-name . "Guitar")))
16086 (build-system r-build-system)
16087 (propagated-inputs
16088 (list r-annotationdbi
16089 r-dplyr
16090 r-genomicfeatures
16091 r-genomicranges
16092 r-ggplot2
16093 r-knitr
16094 r-magrittr
16095 r-rtracklayer))
16096 (native-inputs
16097 (list r-knitr))
16098 (home-page "https://bioconductor.org/packages/Guitar")
16099 (synopsis "Visualize genomic features")
16100 (description
16101 "This package is designed for visualization of RNA-related genomic
16102 features with respect to the landmarks of RNA transcripts, i.e., transcription
16103 starting site, start codon, stop codon and transcription ending site.")
16104 (license license:gpl2)))
16105
16106 (define-public r-sushi
16107 (package
16108 (name "r-sushi")
16109 (version "1.34.0")
16110 (source (origin
16111 (method url-fetch)
16112 (uri (bioconductor-uri "Sushi" version))
16113 (sha256
16114 (base32
16115 "0adswrbzd93rhy3q56ypwkrk6155vd4zxapvznswyjlxp8ha813q"))))
16116 (properties `((upstream-name . "Sushi")))
16117 (build-system r-build-system)
16118 (propagated-inputs
16119 (list r-biomart r-zoo))
16120 (home-page "https://bioconductor.org/packages/Sushi")
16121 (synopsis "Tools for visualizing genomics data")
16122 (description
16123 "This package provides flexible, quantitative, and integrative genomic
16124 visualizations for publication-quality multi-panel figures.")
16125 (license license:gpl2+)))
16126
16127 (define-public r-ballgown
16128 (package
16129 (name "r-ballgown")
16130 (version "2.28.0")
16131 (source
16132 (origin
16133 (method url-fetch)
16134 (uri (bioconductor-uri "ballgown" version))
16135 (sha256
16136 (base32
16137 "0l8q3fymskxmsi5jcikzjz5xi66lpzgv7bjymir4izah2v68z708"))))
16138 (properties `((upstream-name . "ballgown")))
16139 (build-system r-build-system)
16140 (propagated-inputs
16141 (list r-biobase
16142 r-genomeinfodb
16143 r-genomicranges
16144 r-iranges
16145 r-limma
16146 r-rcolorbrewer
16147 r-rtracklayer
16148 r-s4vectors
16149 r-sva))
16150 (native-inputs
16151 (list r-knitr))
16152 (home-page "https://bioconductor.org/packages/ballgown")
16153 (synopsis "Flexible, isoform-level differential expression analysis")
16154 (description
16155 "This package provides tools for statistical analysis of assembled
16156 transcriptomes, including flexible differential expression analysis,
16157 visualization of transcript structures, and matching of assembled transcripts
16158 to annotation.")
16159 (license license:artistic2.0)))
16160
16161 (define-public r-megadepth
16162 (package
16163 (name "r-megadepth")
16164 (version "1.6.0")
16165 (source
16166 (origin
16167 (method url-fetch)
16168 (uri (bioconductor-uri "megadepth" version))
16169 (sha256
16170 (base32
16171 "0qq82dmd3drr2bhn51bgbc6ml40klfmmhj6wdj72n9ya6n60lwy8"))))
16172 (properties `((upstream-name . "megadepth")))
16173 (build-system r-build-system)
16174 (inputs (list megadepth))
16175 (propagated-inputs
16176 (list r-cmdfun
16177 r-dplyr
16178 r-fs
16179 r-genomicranges
16180 r-magrittr
16181 r-readr
16182 r-xfun))
16183 (native-inputs
16184 (list r-knitr))
16185 (home-page "https://github.com/LieberInstitute/megadepth")
16186 (synopsis "BigWig and BAM related utilities")
16187 (description
16188 "This package provides an R interface to Megadepth. It is particularly
16189 useful for computing the coverage of a set of genomic regions across bigWig or
16190 BAM files. With this package, you can build base-pair coverage matrices for
16191 regions or annotations of your choice from BigWig files.")
16192 (license license:artistic2.0)))
16193
16194 (define-public r-beclear
16195 (package
16196 (name "r-beclear")
16197 (version "2.12.0")
16198 (source
16199 (origin
16200 (method url-fetch)
16201 (uri (bioconductor-uri "BEclear" version))
16202 (sha256
16203 (base32
16204 "0x43yfnmb2d782g3g52nqdfs90i3zrrlqz8qy3ybmgv5f8n92p15"))))
16205 (properties `((upstream-name . "BEclear")))
16206 (build-system r-build-system)
16207 (propagated-inputs
16208 (list r-abind
16209 r-biocparallel
16210 r-data-table
16211 r-dixontest
16212 r-futile-logger
16213 r-matrix
16214 r-rcpp
16215 r-rdpack))
16216 (native-inputs
16217 (list r-knitr))
16218 (home-page "https://github.com/uds-helms/BEclear")
16219 (synopsis "Correction of batch effects in DNA methylation data")
16220 (description
16221 "This package provides functions to detect and correct for batch effects
16222 in DNA methylation data. The core function is based on latent factor models
16223 and can also be used to predict missing values in any other matrix containing
16224 real numbers.")
16225 (license license:gpl3)))
16226
16227 (define-public r-bgeecall
16228 (package
16229 (name "r-bgeecall")
16230 (version "1.12.2")
16231 (source
16232 (origin
16233 (method url-fetch)
16234 (uri (bioconductor-uri "BgeeCall" version))
16235 (sha256
16236 (base32
16237 "0l6smwy55mm4clb71l4bpch3bayyyf87nq1asbrv6s6fd22mmwil"))))
16238 (properties `((upstream-name . "BgeeCall")))
16239 (build-system r-build-system)
16240 (propagated-inputs
16241 (list kallisto
16242 r-biomart
16243 r-biostrings
16244 r-data-table
16245 r-dplyr
16246 r-genomicfeatures
16247 r-jsonlite
16248 r-rhdf5
16249 r-rslurm
16250 r-rtracklayer
16251 r-sjmisc
16252 r-tximport))
16253 (native-inputs (list r-knitr))
16254 (home-page "https://github.com/BgeeDB/BgeeCall")
16255 (synopsis "RNA-Seq present/absent gene expression calls generation")
16256 (description
16257 "BgeeCall allows generating present/absent gene expression calls without
16258 using an arbitrary cutoff like TPM<1. Calls are generated based on reference
16259 intergenic sequences. These sequences are generated based on expression of
16260 all RNA-Seq libraries of each species integrated in Bgee.")
16261 (license license:gpl3)))
16262
16263 (define-public r-bgeedb
16264 (package
16265 (name "r-bgeedb")
16266 (version "2.22.3")
16267 (source
16268 (origin
16269 (method url-fetch)
16270 (uri (bioconductor-uri "BgeeDB" version))
16271 (sha256
16272 (base32
16273 "1f6lrazaibbz21sqvj59rq6ps9m1riw2y0kyidbn29mxf4ibwh3k"))))
16274 (properties `((upstream-name . "BgeeDB")))
16275 (build-system r-build-system)
16276 (propagated-inputs
16277 (list r-biobase
16278 r-curl
16279 r-data-table
16280 r-digest
16281 r-dplyr
16282 r-graph
16283 r-r-utils
16284 r-rcurl
16285 r-rsqlite
16286 r-tidyr
16287 r-topgo))
16288 (native-inputs (list r-knitr))
16289 (home-page "https://github.com/BgeeDB/BgeeDB_R")
16290 (synopsis "Annotation and gene expression data retrieval from Bgee database")
16291 (description
16292 "This package provides a package for the annotation and gene expression
16293 data download from Bgee database, and TopAnat analysis: GO-like enrichment of
16294 anatomical terms, mapped to genes by expression patterns.")
16295 (license license:gpl3)))
16296
16297 (define-public r-biobtreer
16298 (package
16299 (name "r-biobtreer")
16300 (version "1.8.0")
16301 (source
16302 (origin
16303 (method url-fetch)
16304 (uri (bioconductor-uri "biobtreeR" version))
16305 (sha256
16306 (base32
16307 "0cx46hdqqm6mbj0vp4y86axv0qccd4sgk2jwwjvnqp5pynq9bbqa"))))
16308 (properties `((upstream-name . "biobtreeR")))
16309 (build-system r-build-system)
16310 (propagated-inputs
16311 (list r-httpuv r-httr r-jsonlite r-stringi))
16312 (native-inputs (list r-knitr))
16313 (home-page "https://github.com/tamerh/biobtreeR")
16314 (synopsis "Use biobtree tool from R")
16315 (description
16316 "The biobtreeR package provides an interface to biobtree, a tool which
16317 covers large sets of bioinformatics datasets and allows search and chain
16318 mappings functionalities.")
16319 (license license:expat)))
16320
16321 (define-public r-minet
16322 (package
16323 (name "r-minet")
16324 (version "3.54.0")
16325 (source
16326 (origin
16327 (method url-fetch)
16328 (uri (bioconductor-uri "minet" version))
16329 (sha256
16330 (base32
16331 "0q6jw2jqkl9qynjpzaygz45c7dmx1l5y2d8s1illpcf87siawcam"))))
16332 (properties `((upstream-name . "minet")))
16333 (build-system r-build-system)
16334 (propagated-inputs
16335 (list r-infotheo))
16336 (home-page "http://minet.meyerp.com")
16337 (synopsis "Mutual information networks")
16338 (description
16339 "This package implements various algorithms for inferring mutual
16340 information networks from data.")
16341 (license license:artistic2.0)))
16342
16343 (define-public r-genetclassifier
16344 (package
16345 (name "r-genetclassifier")
16346 (version "1.36.0")
16347 (source
16348 (origin
16349 (method url-fetch)
16350 (uri (bioconductor-uri "geNetClassifier" version))
16351 (sha256
16352 (base32
16353 "1kh7mp5h0n7yd1klcd7w4v7i3fh9pkmvgf7189wangfzbcsr4f70"))))
16354 (properties
16355 `((upstream-name . "geNetClassifier")))
16356 (build-system r-build-system)
16357 (propagated-inputs
16358 (list r-biobase r-e1071 r-ebarrays r-minet))
16359 (home-page "https://www.cicancer.org")
16360 (synopsis "Classify diseases and build gene networks using expression profiles")
16361 (description
16362 "This is a comprehensive package to automatically train and validate a
16363 multi-class SVM classifier based on gene expression data. It provides
16364 transparent selection of gene markers, their coexpression networks, and an
16365 interface to query the classifier.")
16366 (license license:gpl2+)))
16367
16368 (define-public r-dir-expiry
16369 (package
16370 (name "r-dir-expiry")
16371 (version "1.4.0")
16372 (source
16373 (origin
16374 (method url-fetch)
16375 (uri (bioconductor-uri "dir.expiry" version))
16376 (sha256
16377 (base32
16378 "098wzm8hlpy70c99k2sl4k8z2dllhw7rwdj8dhcskr7kaw71k3sq"))))
16379 (properties `((upstream-name . "dir.expiry")))
16380 (build-system r-build-system)
16381 (propagated-inputs (list r-filelock))
16382 (native-inputs (list r-knitr))
16383 (home-page "https://bioconductor.org/packages/dir.expiry")
16384 (synopsis "Managing expiration for cache directories")
16385 (description
16386 "This package implements an expiration system for access to versioned
16387 directories. Directories that have not been accessed by a registered function
16388 within a certain time frame are deleted. This aims to reduce disk usage by
16389 eliminating obsolete caches generated by old versions of packages.")
16390 (license license:gpl3)))
16391
16392 (define-public r-basilisk-utils
16393 (package
16394 (name "r-basilisk-utils")
16395 (version "1.8.0")
16396 (source
16397 (origin
16398 (method url-fetch)
16399 (uri (bioconductor-uri "basilisk.utils" version))
16400 (sha256
16401 (base32
16402 "1jnqv0rlljkq27rd4ixl763v335f2aanm4fzr386yc81fj4vnmhk"))))
16403 (properties
16404 `((upstream-name . "basilisk.utils")))
16405 (build-system r-build-system)
16406 (propagated-inputs
16407 (list r-dir-expiry))
16408 (native-inputs (list r-knitr))
16409 (home-page "https://bioconductor.org/packages/basilisk.utils")
16410 (synopsis "Basilisk installation utilities")
16411 (description
16412 "This package implements utilities for installation of the basilisk
16413 package, primarily for creation of the underlying Conda instance.")
16414 (license license:gpl3)))
16415
16416 (define-public r-basilisk
16417 (package
16418 (name "r-basilisk")
16419 (version "1.8.1")
16420 (source
16421 (origin
16422 (method url-fetch)
16423 (uri (bioconductor-uri "basilisk" version))
16424 (sha256
16425 (base32
16426 "134xix2iq5l7783dng2jjklxd3m5lh4snb7bjhslrs2r1j3p8jpk"))))
16427 (properties `((upstream-name . "basilisk")))
16428 (build-system r-build-system)
16429 (propagated-inputs
16430 (list r-basilisk-utils r-dir-expiry r-reticulate))
16431 (native-inputs (list r-knitr))
16432 (home-page "https://bioconductor.org/packages/basilisk")
16433 (synopsis "Freeze Python dependencies inside Bioconductor packages")
16434 (description
16435 "This package installs a self-contained Conda instance that is managed by
16436 the R/Bioconductor installation machinery. This aims to provide a consistent
16437 Python environment that can be used reliably by Bioconductor packages.
16438 Functions are also provided to enable smooth interoperability of multiple
16439 Python environments in a single R session.")
16440 (license license:gpl3)))
16441
16442 (define-public r-biocthis
16443 (package
16444 (name "r-biocthis")
16445 (version "1.6.0")
16446 (source
16447 (origin
16448 (method url-fetch)
16449 (uri (bioconductor-uri "biocthis" version))
16450 (sha256
16451 (base32
16452 "1hdgjp00d2si3mr7m1d289i9wn7g927z6n8n27d5sm94lb91qln0"))))
16453 (properties `((upstream-name . "biocthis")))
16454 (build-system r-build-system)
16455 (arguments
16456 `(#:phases
16457 (modify-phases %standard-phases
16458 (add-after 'unpack 'set-HOME
16459 (lambda _ (setenv "HOME" "/tmp"))))))
16460 (propagated-inputs
16461 (list r-biocmanager
16462 r-fs
16463 r-glue
16464 r-rlang
16465 r-styler
16466 r-usethis))
16467 (native-inputs (list r-knitr))
16468 (home-page "https://github.com/lcolladotor/biocthis")
16469 (synopsis "Automate package and project setup for Bioconductor packages")
16470 (description
16471 "This package expands the @code{usethis} package with the goal of helping
16472 automate the process of creating R packages for Bioconductor or making them
16473 Bioconductor-friendly.")
16474 (license license:artistic2.0)))
16475
16476 (define-public r-biocdockermanager
16477 (package
16478 (name "r-biocdockermanager")
16479 (version "1.8.1")
16480 (source
16481 (origin
16482 (method url-fetch)
16483 (uri (bioconductor-uri "BiocDockerManager" version))
16484 (sha256
16485 (base32
16486 "0a4dcga18bw5mvzmsml28bf4zclz32pp9iflnbvps7pdxvhmmg9d"))))
16487 (properties
16488 `((upstream-name . "BiocDockerManager")))
16489 (build-system r-build-system)
16490 (propagated-inputs
16491 (list docker
16492 r-dplyr
16493 r-httr
16494 r-memoise
16495 r-readr
16496 r-whisker))
16497 (native-inputs (list r-knitr))
16498 (home-page "https://bioconductor.org/packages/BiocDockerManager")
16499 (synopsis "Access and manage Bioconductor Docker images")
16500 (description
16501 "This package works analogous to BiocManager but for Docker images. Use
16502 the BiocDockerManager package to install and manage Docker images provided by
16503 the Bioconductor project.")
16504 (license license:artistic2.0)))
16505
16506 (define-public r-biodb
16507 (package
16508 (name "r-biodb")
16509 (version "1.4.2")
16510 (source
16511 (origin
16512 (method url-fetch)
16513 (uri (bioconductor-uri "biodb" version))
16514 (sha256
16515 (base32
16516 "0f3clqmrpaawhjjyb4x5mnbhsam56r0av05b5cl5p4waylp8qbs1"))))
16517 (properties `((upstream-name . "biodb")))
16518 (build-system r-build-system)
16519 (propagated-inputs
16520 (list r-biocfilecache
16521 r-chk
16522 r-jsonlite
16523 r-lgr
16524 r-lifecycle
16525 r-openssl
16526 r-plyr
16527 r-progress
16528 r-r6
16529 r-rappdirs
16530 r-rcpp
16531 r-rcurl
16532 r-rsqlite
16533 r-stringr
16534 r-testthat
16535 r-withr
16536 r-xml
16537 r-yaml))
16538 (native-inputs (list r-knitr))
16539 (home-page "https://bioconductor.org/packages/biodb")
16540 (synopsis "Library for connecting to chemical and biological databases")
16541 (description
16542 "The biodb package provides access to standard remote chemical and
16543 biological databases (ChEBI, KEGG, HMDB, ...), as well as to in-house local
16544 database files (CSV, SQLite), with easy retrieval of entries, access to web
16545 services, search of compounds by mass and/or name, and mass spectra matching
16546 for LCMS and MSMS. Its architecture as a development framework facilitates
16547 the development of new database connectors for local projects or inside
16548 separate published packages.")
16549 (license license:agpl3+)))
16550
16551 (define-public r-biomformat
16552 (package
16553 (name "r-biomformat")
16554 (version "1.24.0")
16555 (source
16556 (origin
16557 (method url-fetch)
16558 (uri (bioconductor-uri "biomformat" version))
16559 (sha256
16560 (base32
16561 "12wqjipxhngmlnrdmx329dqmkmy2wa4nkkrhwaqv2nwy90dncs9n"))))
16562 (properties `((upstream-name . "biomformat")))
16563 (build-system r-build-system)
16564 (propagated-inputs
16565 (list r-jsonlite r-matrix r-plyr r-rhdf5))
16566 (native-inputs (list r-knitr))
16567 (home-page "https://github.com/joey711/biomformat/")
16568 (synopsis "Interface package for the BIOM file format")
16569 (description
16570 "This is an R package for interfacing with the BIOM format. This package
16571 includes basic tools for reading biom-format files, accessing and subsetting
16572 data tables from a biom object (which is more complex than a single table), as
16573 well as limited support for writing a biom-object back to a biom-format file.
16574 The design of this API is intended to match the Python API and other tools
16575 included with the biom-format project, but with a decidedly \"R flavor\" that
16576 should be familiar to R users. This includes S4 classes and methods, as well
16577 as extensions of common core functions/methods.")
16578 (license license:gpl2)))
16579
16580 (define-public r-mvcclass
16581 (package
16582 (name "r-mvcclass")
16583 (version "1.70.0")
16584 (source
16585 (origin
16586 (method url-fetch)
16587 (uri (bioconductor-uri "MVCClass" version))
16588 (sha256
16589 (base32
16590 "0apcjlq4i2mg8mlfqgvlcsqkiy51whzid3nd0m830jff0ywgh47g"))))
16591 (properties `((upstream-name . "MVCClass")))
16592 (build-system r-build-system)
16593 (home-page "https://bioconductor.org/packages/MVCClass")
16594 (synopsis "Model-View-Controller (MVC) classes")
16595 (description
16596 "This package contains classes used in model-view-controller (MVC)
16597 design.")
16598 (license license:lgpl2.1+)))
16599
16600 (define-public r-biomvcclass
16601 (package
16602 (name "r-biomvcclass")
16603 (version "1.64.0")
16604 (source
16605 (origin
16606 (method url-fetch)
16607 (uri (bioconductor-uri "BioMVCClass" version))
16608 (sha256
16609 (base32
16610 "078pnyygbvbfxziqspfr1nn78w67xyb4qmiwc34czga5psblvfwz"))))
16611 (properties `((upstream-name . "BioMVCClass")))
16612 (build-system r-build-system)
16613 (propagated-inputs
16614 (list r-biobase r-graph r-mvcclass r-rgraphviz))
16615 (home-page "https://bioconductor.org/packages/BioMVCClass")
16616 (synopsis "Model-View-Controller (MVC) classes that use Biobase")
16617 (description
16618 "This package contains classes used in model-view-controller (MVC)
16619 design.")
16620 (license license:lgpl2.1+)))
16621
16622 (define-public r-biomvrcns
16623 (package
16624 (name "r-biomvrcns")
16625 (version "1.36.0")
16626 (source
16627 (origin
16628 (method url-fetch)
16629 (uri (bioconductor-uri "biomvRCNS" version))
16630 (sha256
16631 (base32
16632 "0i576g7pkivqaxff1pkb760mdpx8v9fh071aic1mwfnlfa7k87ln"))))
16633 (properties `((upstream-name . "biomvRCNS")))
16634 (build-system r-build-system)
16635 (propagated-inputs
16636 (list r-genomicranges r-gviz r-iranges r-mvtnorm))
16637 (home-page "https://bioconductor.org/packages/biomvRCNS")
16638 (synopsis "Copy number study and segmentation for multivariate biological data")
16639 (description
16640 "In this package, a @dfn{Hidden Semi Markov Model} (HSMM) and one
16641 homogeneous segmentation model are designed and implemented for segmentation
16642 genomic data, with the aim of assisting in transcripts detection using high
16643 throughput technology like RNA-seq or tiling array, and copy number analysis
16644 using aCGH or sequencing.")
16645 (license license:gpl2+)))
16646
16647 (define-public r-bionero
16648 (package
16649 (name "r-bionero")
16650 (version "1.4.2")
16651 (source
16652 (origin
16653 (method url-fetch)
16654 (uri (bioconductor-uri "BioNERO" version))
16655 (sha256
16656 (base32
16657 "0dsznfnhidbmf52rv8l26f1ms2k9yy4q4c6cf3x8ylc79c1sjrcp"))))
16658 (properties `((upstream-name . "BioNERO")))
16659 (build-system r-build-system)
16660 (propagated-inputs
16661 (list r-biocparallel
16662 r-complexheatmap
16663 r-dynamictreecut
16664 r-genie3
16665 r-ggnetwork
16666 r-ggnewscale
16667 r-ggplot2
16668 r-ggrepel
16669 r-igraph
16670 r-intergraph
16671 r-matrixstats
16672 r-minet
16673 r-netrep
16674 r-networkd3
16675 r-patchwork
16676 r-rcolorbrewer
16677 r-reshape2
16678 r-summarizedexperiment
16679 r-sva
16680 r-wgcna))
16681 (native-inputs
16682 (list r-knitr))
16683 (home-page "https://github.com/almeidasilvaf/BioNERO")
16684 (synopsis "Biological network reconstruction omnibus")
16685 (description
16686 "BioNERO aims to integrate all aspects of biological network inference in
16687 a single package, including data preprocessing, exploratory analyses, network
16688 inference, and analyses for biological interpretations. BioNERO can be used
16689 to infer gene coexpression networks (GCNs) and gene regulatory networks (GRNs)
16690 from gene expression data. Additionally, it can be used to explore
16691 topological properties of protein-protein interaction (PPI) networks. GCN
16692 inference relies on the popular WGCNA algorithm. GRN inference is based on
16693 the \"wisdom of the crowds\" principle, which consists in inferring GRNs with
16694 multiple algorithms (here, CLR, GENIE3 and ARACNE) and calculating the average
16695 rank for each interaction pair. As all steps of network analyses are included
16696 in this package, BioNERO makes users avoid having to learn the syntaxes of
16697 several packages and how to communicate between them. Finally, users can also
16698 identify consensus modules across independent expression sets and calculate
16699 intra and interspecies module preservation statistics between different
16700 networks.")
16701 (license license:gpl3)))
16702
16703 (define-public r-bionet
16704 (package
16705 (name "r-bionet")
16706 (version "1.56.0")
16707 (source
16708 (origin
16709 (method url-fetch)
16710 (uri (bioconductor-uri "BioNet" version))
16711 (sha256
16712 (base32
16713 "0kcw71j4nmdkn373wk21ak6h0v4gycivnfrklb72kk1qcmsy1wrm"))))
16714 (properties `((upstream-name . "BioNet")))
16715 (build-system r-build-system)
16716 (propagated-inputs
16717 (list r-annotationdbi r-biobase r-graph r-igraph r-rbgl))
16718 (home-page "http://bioconductor.org/packages/release/bioc/html/BioNet.html")
16719 (synopsis "Functional analysis of biological networks")
16720 (description
16721 "This package provides functions for the integrated analysis of
16722 protein-protein interaction networks and the detection of functional modules.
16723 Different datasets can be integrated into the network by assigning p-values of
16724 statistical tests to the nodes of the network. E.g. p-values obtained from
16725 the differential expression of the genes from an Affymetrix array are assigned
16726 to the nodes of the network. By fitting a beta-uniform mixture model and
16727 calculating scores from the p-values, overall scores of network regions can be
16728 calculated and an integer linear programming algorithm identifies the maximum
16729 scoring subnetwork.")
16730 (license license:gpl2+)))
16731
16732 (define-public r-bionetstat
16733 (package
16734 (name "r-bionetstat")
16735 (version "1.16.1")
16736 (source
16737 (origin
16738 (method url-fetch)
16739 (uri (bioconductor-uri "BioNetStat" version))
16740 (sha256
16741 (base32
16742 "0zs6pymvxb95sji0rnnzaz3whj7hsvj2kl4n4gzj7w1q0prbfpb2"))))
16743 (properties `((upstream-name . "BioNetStat")))
16744 (build-system r-build-system)
16745 (propagated-inputs
16746 (list r-biocparallel
16747 r-dt
16748 r-ggplot2
16749 r-hmisc
16750 r-igraph
16751 r-knitr
16752 r-markdown
16753 r-pathview
16754 r-pheatmap
16755 r-plyr
16756 r-psych
16757 r-rcolorbrewer
16758 r-rjsonio
16759 r-rmarkdown
16760 r-shiny
16761 r-shinybs
16762 r-whisker
16763 r-yaml))
16764 (native-inputs
16765 (list r-knitr))
16766 (home-page "https://github.com/jardimViniciusC/BioNetStat")
16767 (synopsis "Biological network analysis")
16768 (description
16769 "This package provides a package to perform differential network
16770 analysis, differential node analysis (differential coexpression analysis),
16771 network and metabolic pathways view.")
16772 (license license:gpl3+)))
16773
16774 (define-public r-bioqc
16775 (package
16776 (name "r-bioqc")
16777 (version "1.24.0")
16778 (source
16779 (origin
16780 (method url-fetch)
16781 (uri (bioconductor-uri "BioQC" version))
16782 (sha256
16783 (base32
16784 "0vb2nnzqvyv25pw8qshcmijravswafg0858pkgqjgiv7wsr2mn3m"))))
16785 (properties `((upstream-name . "BioQC")))
16786 (build-system r-build-system)
16787 (propagated-inputs
16788 (list r-biobase r-edger r-rcpp))
16789 (native-inputs
16790 (list r-knitr))
16791 (home-page "https://accio.github.io/BioQC/")
16792 (synopsis "Detect tissue heterogeneity in expression profiles with gene sets")
16793 (description
16794 "BioQC performs quality control of high-throughput expression data based
16795 on tissue gene signatures. It can detect tissue heterogeneity in gene
16796 expression data. The core algorithm is a Wilcoxon-Mann-Whitney test that is
16797 optimised for high performance.")
16798 (license license:gpl3+)))
16799
16800 (define-public r-biotip
16801 (package
16802 (name "r-biotip")
16803 (version "1.10.0")
16804 (source
16805 (origin
16806 (method url-fetch)
16807 (uri (bioconductor-uri "BioTIP" version))
16808 (sha256
16809 (base32
16810 "1sihi5zy7mlabh3ix1wvdqz8ibfq1avl8bnxjhvxyzq40zbcklh6"))))
16811 (properties `((upstream-name . "BioTIP")))
16812 (build-system r-build-system)
16813 (propagated-inputs
16814 (list r-cluster
16815 r-genomicranges
16816 r-igraph
16817 r-mass
16818 r-psych
16819 r-scran
16820 r-stringr))
16821 (native-inputs
16822 (list r-knitr))
16823 (home-page "https://github.com/xyang2uchicago/BioTIP")
16824 (synopsis "R package for characterization of biological tipping-point")
16825 (description
16826 "This package adopts tipping-point theory to transcriptome profiles to
16827 help unravel disease regulatory trajectory.")
16828 (license license:gpl2)))
16829
16830 (define-public r-biotmle
16831 (package
16832 (name "r-biotmle")
16833 (version "1.20.0")
16834 (source
16835 (origin
16836 (method url-fetch)
16837 (uri (bioconductor-uri "biotmle" version))
16838 (sha256
16839 (base32
16840 "1frig90krvfdk6nwpmslpj0pvligyzwzfwwci7hzwcmbglk5jj22"))))
16841 (properties `((upstream-name . "biotmle")))
16842 (build-system r-build-system)
16843 (propagated-inputs
16844 (list r-assertthat
16845 r-biocgenerics
16846 r-biocparallel
16847 r-dplyr
16848 r-drtmle
16849 r-ggplot2
16850 r-ggsci
16851 r-limma
16852 r-s4vectors
16853 r-summarizedexperiment
16854 r-superheat
16855 r-tibble))
16856 (native-inputs
16857 (list r-knitr))
16858 (home-page "https://code.nimahejazi.org/biotmle/")
16859 (synopsis "Targeted learning with moderated statistics for biomarker discovery")
16860 (description
16861 "This package provides tools for differential expression biomarker
16862 discovery based on microarray and next-generation sequencing data that
16863 leverage efficient semiparametric estimators of the average treatment effect
16864 for variable importance analysis. Estimation and inference of the (marginal)
16865 average treatment effects of potential biomarkers are computed by targeted
16866 minimum loss-based estimation, with joint, stable inference constructed across
16867 all biomarkers using a generalization of moderated statistics for use with the
16868 estimated efficient influence function. The procedure accommodates the use of
16869 ensemble machine learning for the estimation of nuisance functions.")
16870 (license license:expat)))
16871
16872 (define-public r-bsseq
16873 (package
16874 (name "r-bsseq")
16875 (version "1.32.0")
16876 (source
16877 (origin
16878 (method url-fetch)
16879 (uri (bioconductor-uri "bsseq" version))
16880 (sha256
16881 (base32
16882 "1jpfib2vb6hd7pgh3d33jgch24lba175zmbalwsbgvlmmyyf1ki5"))))
16883 (properties `((upstream-name . "bsseq")))
16884 (build-system r-build-system)
16885 (propagated-inputs
16886 (list r-beachmat
16887 r-biobase
16888 r-biocgenerics
16889 r-biocparallel
16890 r-biostrings
16891 r-bsgenome
16892 r-data-table
16893 r-delayedarray
16894 r-delayedmatrixstats
16895 r-genomeinfodb
16896 r-genomicranges
16897 r-gtools
16898 r-hdf5array
16899 r-iranges
16900 r-limma
16901 r-locfit
16902 r-permute
16903 r-r-utils
16904 r-rcpp
16905 r-rhdf5
16906 r-s4vectors
16907 r-scales
16908 r-summarizedexperiment))
16909 (native-inputs
16910 (list r-knitr))
16911 (home-page "https://github.com/hansenlab/bsseq")
16912 (synopsis "Analyze, manage and store bisulfite sequencing data")
16913 (description
16914 "This package provides a collection of tools for analyzing and
16915 visualizing bisulfite sequencing data.")
16916 (license license:artistic2.0)))
16917
16918 (define-public r-dada2
16919 (package
16920 (name "r-dada2")
16921 (version "1.24.0")
16922 (source (origin
16923 (method url-fetch)
16924 (uri (bioconductor-uri "dada2" version))
16925 (sha256
16926 (base32
16927 "0nvjnmcjh0i660y8s3rh9b3zl163wxdx7qm2n36m6vf0iy987l4x"))))
16928 (properties `((upstream-name . "dada2")))
16929 (build-system r-build-system)
16930 (propagated-inputs
16931 (list r-biocgenerics
16932 r-biostrings
16933 r-ggplot2
16934 r-iranges
16935 r-rcpp
16936 r-rcppparallel
16937 r-reshape2
16938 r-shortread
16939 r-xvector))
16940 (native-inputs (list r-knitr))
16941 (home-page "https://benjjneb.github.io/dada2/")
16942 (synopsis
16943 "Accurate, high-resolution sample inference from amplicon sequencing data")
16944 (description
16945 "The dada2 package infers exact @dfn{amplicon sequence variants} (ASVs)
16946 from high-throughput amplicon sequencing data, replacing the coarser and less
16947 accurate OTU clustering approach. The dada2 pipeline takes as input
16948 demultiplexed fastq files, and outputs the sequence variants and their
16949 sample-wise abundances after removing substitution and chimera errors.
16950 Taxonomic classification is available via a native implementation of the RDP
16951 naive Bayesian classifier, and species-level assignment to 16S rRNA gene
16952 fragments by exact matching.")
16953 (license license:lgpl2.0)))
16954
16955 (define-public r-dmrseq
16956 (package
16957 (name "r-dmrseq")
16958 (version "1.16.0")
16959 (source
16960 (origin
16961 (method url-fetch)
16962 (uri (bioconductor-uri "dmrseq" version))
16963 (sha256
16964 (base32
16965 "1c99l62fi26bnbvpzrlsvvs722za0l5vfhddcrhzzzasabhccb4n"))))
16966 (properties `((upstream-name . "dmrseq")))
16967 (build-system r-build-system)
16968 (propagated-inputs
16969 (list r-annotationhub
16970 r-annotatr
16971 r-biocparallel
16972 r-bsseq
16973 r-bumphunter
16974 r-delayedmatrixstats
16975 r-genomeinfodb
16976 r-genomicranges
16977 r-ggplot2
16978 r-iranges
16979 r-locfit
16980 r-matrixstats
16981 r-nlme
16982 r-outliers
16983 r-rcolorbrewer
16984 r-rtracklayer
16985 r-s4vectors))
16986 (native-inputs
16987 (list r-knitr))
16988 (home-page "https://bioconductor.org/packages/dmrseq")
16989 (synopsis "Detection and inference of differentially methylated regions")
16990 (description
16991 "This package implements an approach for scanning the genome to detect
16992 and perform accurate inference on differentially methylated regions from Whole
16993 Genome Bisulfite Sequencing data. The method is based on comparing detected
16994 regions to a pooled null distribution, that can be implemented even when as
16995 few as two samples per population are available. Region-level statistics are
16996 obtained by fitting a @dfn{generalized least squares} (GLS) regression model
16997 with a nested autoregressive correlated error structure for the effect of
16998 interest on transformed methylation proportions.")
16999 (license license:expat)))
17000
17001 (define-public r-omicade4
17002 (package
17003 (name "r-omicade4")
17004 (version "1.36.0")
17005 (source (origin
17006 (method url-fetch)
17007 (uri (bioconductor-uri "omicade4" version))
17008 (sha256
17009 (base32
17010 "1l7w3sczsimg640klq8navgdcwjj090wjqd40n4mw76pny2xj2lj"))))
17011 (properties `((upstream-name . "omicade4")))
17012 (build-system r-build-system)
17013 (propagated-inputs (list r-ade4 r-biobase r-made4))
17014 (home-page "https://bioconductor.org/packages/omicade4")
17015 (synopsis "Multiple co-inertia analysis of omics datasets")
17016 (description
17017 "This package performes multiple co-inertia analysis of omics datasets.")
17018 (license license:gpl2)))
17019
17020 (define-public r-omnipathr
17021 (package
17022 (name "r-omnipathr")
17023 (version "3.4.0")
17024 (source
17025 (origin
17026 (method url-fetch)
17027 (uri (bioconductor-uri "OmnipathR" version))
17028 (sha256
17029 (base32 "0vk0fv09j3ql78mzzhdxwxb2b83qqdz2qfd8wpp1vydmcx2vvgni"))))
17030 (properties `((upstream-name . "OmnipathR")))
17031 (build-system r-build-system)
17032 (arguments
17033 `(#:phases
17034 (modify-phases %standard-phases
17035 (add-after 'unpack 'set-HOME
17036 (lambda _ (setenv "HOME" "/tmp"))))))
17037 (propagated-inputs
17038 (list r-checkmate
17039 r-crayon
17040 r-curl
17041 r-digest
17042 r-dplyr
17043 r-httr
17044 r-igraph
17045 r-jsonlite
17046 r-later
17047 r-logger
17048 r-magrittr
17049 r-progress
17050 r-purrr
17051 r-rappdirs
17052 r-readr
17053 r-readxl
17054 r-rlang
17055 r-stringr
17056 r-tibble
17057 r-tidyr
17058 r-tidyselect
17059 r-withr
17060 r-xml2
17061 r-yaml))
17062 (native-inputs (list r-knitr))
17063 (home-page "https://saezlab.github.io/OmnipathR/")
17064 (synopsis "OmniPath web service client and more")
17065 (description
17066 "This package provides a client for the OmniPath web service and many
17067 other resources. It also includes functions to transform and pretty print
17068 some of the downloaded data, functions to access a number of other resources.
17069 Furthermore, OmnipathR features a close integration with the NicheNet method
17070 for ligand activity prediction from transcriptomics data.")
17071 (license license:expat)))
17072
17073 (define-public r-biscuiteer
17074 (package
17075 (name "r-biscuiteer")
17076 (version "1.10.0")
17077 (source
17078 (origin
17079 (method url-fetch)
17080 (uri (bioconductor-uri "biscuiteer" version))
17081 (sha256
17082 (base32
17083 "0y7vbdaafiga16yr0d22w1v4p0jmczndcar0r0km06f5y1b74amr"))))
17084 (properties `((upstream-name . "biscuiteer")))
17085 (build-system r-build-system)
17086 (propagated-inputs
17087 (list r-biobase
17088 r-biocgenerics
17089 r-biocparallel
17090 r-biscuiteerdata
17091 r-bsseq
17092 r-data-table
17093 r-delayedmatrixstats
17094 r-dmrseq
17095 r-genomeinfodb
17096 r-genomicranges
17097 r-gtools
17098 r-hdf5array
17099 r-homo-sapiens
17100 r-impute
17101 r-iranges
17102 r-matrix
17103 r-matrixstats
17104 r-mus-musculus
17105 r-qdnaseq
17106 r-qualv
17107 r-r-utils
17108 r-readr
17109 r-rsamtools
17110 r-rtracklayer
17111 r-s4vectors
17112 r-summarizedexperiment
17113 r-variantannotation))
17114 (native-inputs
17115 (list r-knitr))
17116 (home-page "https://github.com/trichelab/biscuiteer")
17117 (synopsis "Convenience functions for the Biscuit package")
17118 (description
17119 "This package provides a test harness for bsseq loading of Biscuit
17120 output, summarization of WGBS data over defined regions and in mappable
17121 samples, with or without imputation, dropping of mostly-NA rows, age
17122 estimates, etc.")
17123 (license license:gpl3)))
17124
17125 (define-public r-tcgabiolinks
17126 (package
17127 (name "r-tcgabiolinks")
17128 (version "2.24.3")
17129 (source
17130 (origin
17131 (method url-fetch)
17132 (uri (bioconductor-uri "TCGAbiolinks" version))
17133 (sha256
17134 (base32 "0visvfhzaf0p1rb5vjkmw1c91zfxpks8nl9nbl9xlnpm8lkmmkms"))))
17135 (properties `((upstream-name . "TCGAbiolinks")))
17136 (build-system r-build-system)
17137 (propagated-inputs
17138 (list r-biomart
17139 r-data-table
17140 r-downloader
17141 r-dplyr
17142 r-genomicranges
17143 r-ggplot2
17144 r-httr
17145 r-iranges
17146 r-jsonlite
17147 r-knitr
17148 r-plyr
17149 r-purrr
17150 r-r-utils
17151 r-readr
17152 r-rvest
17153 r-s4vectors
17154 r-stringr
17155 r-summarizedexperiment
17156 r-tcgabiolinksgui-data
17157 r-tibble
17158 r-tidyr
17159 r-xml
17160 r-xml2))
17161 (native-inputs (list r-knitr))
17162 (home-page "https://github.com/BioinformaticsFMRP/TCGAbiolinks")
17163 (synopsis "Integrative analysis with GDC data")
17164 (description
17165 "The aim of TCGAbiolinks is:
17166
17167 @enumerate
17168 @item facilitate GDC open-access data retrieval;
17169 @item prepare the data using the appropriate pre-processing strategies;
17170 @item provide the means to carry out different standard analyses, and;
17171 @item to easily reproduce earlier research results.
17172 @end enumerate
17173
17174 In more detail, the package provides multiple methods for analysis (e.g.,
17175 differential expression analysis, identifying differentially methylated
17176 regions) and methods for visualization (e.g., survival plots, volcano plots,
17177 starburst plots) in order to easily develop complete analysis pipelines.")
17178 (license license:gpl3+)))
17179
17180 (define-public r-tricycle
17181 (package
17182 (name "r-tricycle")
17183 (version "1.4.0")
17184 (source (origin
17185 (method url-fetch)
17186 (uri (bioconductor-uri "tricycle" version))
17187 (sha256
17188 (base32
17189 "0bjkajcz6xcfak6071d0ihakrvgf7s0pmkn6vqkjd6yxbfld7zln"))))
17190 (properties `((upstream-name . "tricycle")))
17191 (build-system r-build-system)
17192 (propagated-inputs
17193 (list r-annotationdbi
17194 r-circular
17195 r-dplyr
17196 r-genomicranges
17197 r-ggnewscale
17198 r-ggplot2
17199 r-iranges
17200 r-rcolorbrewer
17201 r-s4vectors
17202 r-scater
17203 r-scattermore
17204 r-singlecellexperiment
17205 r-summarizedexperiment))
17206 (native-inputs (list r-knitr))
17207 (home-page "https://github.com/hansenlab/tricycle")
17208 (synopsis "Transferable representation and inference of cell cycle")
17209 (description
17210 "The package contains functions to infer and visualize cell cycle process
17211 using Single-cell RNA-Seq data. It exploits the idea of transfer learning,
17212 projecting new data to the previous learned biologically interpretable space.
17213 The @code{tricycle} provides a pre-learned cell cycle space, which could be
17214 used to infer cell cycle time of human and mouse single cell samples. In
17215 addition, it also offer functions to visualize cell cycle time on different
17216 embeddings and functions to build new reference.")
17217 (license license:gpl3)))
17218
17219 (define-public r-tximeta
17220 (package
17221 (name "r-tximeta")
17222 (version "1.14.1")
17223 (source
17224 (origin
17225 (method url-fetch)
17226 (uri (bioconductor-uri "tximeta" version))
17227 (sha256
17228 (base32
17229 "0hxq5lkrdiz0a3xpl88adrv4m55jr6g46a5m9pamc0w4bxddirr8"))))
17230 (properties `((upstream-name . "tximeta")))
17231 (build-system r-build-system)
17232 (propagated-inputs
17233 (list r-annotationdbi
17234 r-annotationhub
17235 r-biocfilecache
17236 r-biostrings
17237 r-ensembldb
17238 r-genomeinfodb
17239 r-genomicfeatures
17240 r-genomicranges
17241 r-iranges
17242 r-jsonlite
17243 r-matrix
17244 r-s4vectors
17245 r-summarizedexperiment
17246 r-tibble
17247 r-tximport))
17248 (native-inputs
17249 (list r-knitr))
17250 (home-page "https://github.com/mikelove/tximeta")
17251 (synopsis "Transcript quantification import with automatic metadata")
17252 (description
17253 "This package implements transcript quantification import from Salmon and
17254 alevin with automatic attachment of transcript ranges and release information,
17255 and other associated metadata. De novo transcriptomes can be linked to the
17256 appropriate sources with linkedTxomes and shared for computational
17257 reproducibility.")
17258 (license license:gpl2)))
17259
17260 (define-public r-phyloseq
17261 (package
17262 (name "r-phyloseq")
17263 (version "1.40.0")
17264 (source
17265 (origin
17266 (method url-fetch)
17267 (uri (bioconductor-uri "phyloseq" version))
17268 (sha256
17269 (base32 "0hcyv4ziyaw74mc9vf7bad3q9izi9p0whg3hspbs6w8b3hp34y2k"))))
17270 (properties `((upstream-name . "phyloseq")))
17271 (build-system r-build-system)
17272 (propagated-inputs
17273 (list r-ade4
17274 r-ape
17275 r-biobase
17276 r-biocgenerics
17277 r-biomformat
17278 r-biostrings
17279 r-cluster
17280 r-data-table
17281 r-foreach
17282 r-ggplot2
17283 r-igraph
17284 r-multtest
17285 r-plyr
17286 r-reshape2
17287 r-scales
17288 r-vegan))
17289 (native-inputs
17290 (list r-knitr))
17291 (home-page "https://github.com/joey711/phyloseq")
17292 (synopsis "Handling and analysis of high-throughput microbiome census data")
17293 (description
17294 "Phyloseq provides a set of classes and tools to facilitate the import,
17295 storage, analysis, and graphical display of microbiome census data.")
17296 (license license:agpl3)))
17297
17298 ;;;
17299 ;;; Avoid adding new packages to the end of this file. To reduce the chances
17300 ;;; of a merge conflict, place them above by existing packages with similar
17301 ;;; functionality or similar names.
17302 ;;;