gnu: Add r-barcodetrackr.
[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-bader
2408 (package
2409 (name "r-bader")
2410 (version "1.34.0")
2411 (source (origin
2412 (method url-fetch)
2413 (uri (bioconductor-uri "BADER" version))
2414 (sha256
2415 (base32
2416 "0i5x1r2ns1hxhqk5jyfqird81hck1hllvvgx5bn0rb5vl99g8spm"))))
2417 (properties `((upstream-name . "BADER")))
2418 (build-system r-build-system)
2419 (home-page "https://bioconductor.org/packages/BADER")
2420 (synopsis
2421 "Bayesian analysis of differential expression in RNA sequencing data")
2422 (description
2423 "The BADER package is intended for the analysis of RNA sequencing data.
2424 The algorithm fits a Bayesian hierarchical model for RNA sequencing count
2425 data. BADER returns the posterior probability of differential expression for
2426 each gene between two groups A and B. The joint posterior distribution of the
2427 variables in the model can be returned in the form of posterior samples, which
2428 can be used for further down-stream analyses such as gene set enrichment.")
2429 (license license:gpl2)))
2430
2431 (define-public r-badregionfinder
2432 (package
2433 (name "r-badregionfinder")
2434 (version "1.24.0")
2435 (source (origin
2436 (method url-fetch)
2437 (uri (bioconductor-uri "BadRegionFinder" version))
2438 (sha256
2439 (base32
2440 "1a1pqmh5ak9s3k1lxw6flanchk24zyznwm34ixi2b78wdc3hqgm9"))))
2441 (properties `((upstream-name . "BadRegionFinder")))
2442 (build-system r-build-system)
2443 (propagated-inputs
2444 (list r-biomart
2445 r-genomicranges
2446 r-rsamtools
2447 r-s4vectors
2448 r-variantannotation))
2449 (home-page "https://bioconductor.org/packages/BadRegionFinder")
2450 (synopsis "Identifying regions with bad coverage in sequence alignment data")
2451 (description
2452 "BadRegionFinder is a package for identifying regions with a bad,
2453 acceptable and good coverage in sequence alignment data available as bam
2454 files. The whole genome may be considered as well as a set of target regions.
2455 Various visual and textual types of output are available.")
2456 (license license:lgpl3)))
2457
2458 (define-public r-bambu
2459 (package
2460 (name "r-bambu")
2461 (version "2.2.0")
2462 (source (origin
2463 (method url-fetch)
2464 (uri (bioconductor-uri "bambu" version))
2465 (sha256
2466 (base32
2467 "0dc2hpnykr575jbrq9whmdabknl70s2hcs6gkmkl4kpv7xfqdq6w"))))
2468 (properties `((upstream-name . "bambu")))
2469 (build-system r-build-system)
2470 (propagated-inputs
2471 (list r-biocgenerics
2472 r-biocparallel
2473 r-bsgenome
2474 r-data-table
2475 r-dplyr
2476 r-genomeinfodb
2477 r-genomicalignments
2478 r-genomicfeatures
2479 r-genomicranges
2480 r-iranges
2481 r-rcpp
2482 r-rcpparmadillo
2483 r-rsamtools
2484 r-s4vectors
2485 r-summarizedexperiment
2486 r-tidyr
2487 r-xgboost))
2488 (native-inputs (list r-knitr))
2489 (home-page "https://github.com/GoekeLab/bambu")
2490 (synopsis
2491 "Isoform reconstruction and quantification for long read RNA-Seq data")
2492 (description
2493 "This R package is for multi-sample transcript discovery and
2494 quantification using long read RNA-Seq data. You can use bambu after read
2495 alignment to obtain expression estimates for known and novel transcripts and
2496 genes. The output from bambu can directly be used for visualisation and
2497 downstream analysis, such as differential gene expression or transcript
2498 usage.")
2499 (license license:gpl3)))
2500
2501 (define-public r-bandits
2502 (package
2503 (name "r-bandits")
2504 (version "1.12.0")
2505 (source (origin
2506 (method url-fetch)
2507 (uri (bioconductor-uri "BANDITS" version))
2508 (sha256
2509 (base32
2510 "1423djb7cij68y0q2dcp8q7lrcn2fxjn6d25v4qy3w00b2w8ppg9"))))
2511 (properties `((upstream-name . "BANDITS")))
2512 (build-system r-build-system)
2513 (propagated-inputs
2514 (list r-biocparallel
2515 r-data-table
2516 r-doparallel
2517 r-dorng
2518 r-drimseq
2519 r-foreach
2520 r-ggplot2
2521 r-mass
2522 r-r-utils
2523 r-rcpp
2524 r-rcpparmadillo))
2525 (native-inputs (list r-knitr))
2526 (home-page "https://github.com/SimoneTiberi/BANDITS")
2527 (synopsis "Bayesian analysis of differential splicing")
2528 (description
2529 "BANDITS is a Bayesian hierarchical model for detecting differential
2530 splicing of genes and transcripts, via @dfn{DTU} (differential transcript
2531 usage), between two or more conditions. The method uses a Bayesian
2532 hierarchical framework, which allows for sample specific proportions in a
2533 Dirichlet-Multinomial model, and samples the allocation of fragments to the
2534 transcripts. Parameters are inferred via @dfn{MCMC} (Markov chain Monte
2535 Carlo) techniques and a DTU test is performed via a multivariate Wald test on
2536 the posterior densities for the average relative abundance of transcripts.")
2537 (license license:gpl3+)))
2538
2539 (define-public r-banocc
2540 (package
2541 (name "r-banocc")
2542 (version "1.20.0")
2543 (source (origin
2544 (method url-fetch)
2545 (uri (bioconductor-uri "banocc" version))
2546 (sha256
2547 (base32
2548 "10vaggq1w5jkxd8r2k1mhymzvb7x3h8afwn2pvmcpj022ka7xhbx"))))
2549 (properties `((upstream-name . "banocc")))
2550 (build-system r-build-system)
2551 (propagated-inputs
2552 (list r-coda
2553 r-mvtnorm
2554 r-rstan
2555 r-stringr))
2556 (native-inputs (list r-knitr))
2557 (home-page "https://bioconductor.org/packages/banocc")
2558 (synopsis "Bayesian analysis of compositional covariance")
2559 (description
2560 "BAnOCC is a package designed for compositional data, where each sample
2561 sums to one. It infers the approximate covariance of the unconstrained data
2562 using a Bayesian model coded with @code{rstan}. It provides as output the
2563 @code{stanfit} object as well as posterior median and credible interval
2564 estimates for each correlation element.")
2565 (license license:expat)))
2566
2567 (define-public r-barcodetrackr
2568 (package
2569 (name "r-barcodetrackr")
2570 (version "1.4.0")
2571 (source (origin
2572 (method url-fetch)
2573 (uri (bioconductor-uri "barcodetrackR" version))
2574 (sha256
2575 (base32
2576 "0yxa15xkgqazw31vq4wm8v747bw4qb18m6i602pvynk0n5bgg3d3"))))
2577 (properties `((upstream-name . "barcodetrackR")))
2578 (build-system r-build-system)
2579 (propagated-inputs
2580 (list r-circlize
2581 r-cowplot
2582 r-dplyr
2583 r-ggdendro
2584 r-ggplot2
2585 r-ggridges
2586 r-magrittr
2587 r-plyr
2588 r-proxy
2589 r-rcolorbrewer
2590 r-rlang
2591 r-s4vectors
2592 r-scales
2593 r-shiny
2594 r-summarizedexperiment
2595 r-tibble
2596 r-tidyr
2597 r-vegan
2598 r-viridis))
2599 (native-inputs (list r-knitr))
2600 (home-page "https://github.com/dunbarlabNIH/barcodetrackR")
2601 (synopsis "Functions for analyzing cellular barcoding data")
2602 (description
2603 "This package is developed for the analysis and visualization of clonal
2604 tracking data. The required data is formed by samples and tag abundances in
2605 matrix form, usually from cellular barcoding experiments, integration site
2606 retrieval analyses, or similar technologies.")
2607 (license license:cc0)))
2608
2609 (define-public r-biocversion
2610 (package
2611 (name "r-biocversion")
2612 (version "3.15.2")
2613 (source
2614 (origin
2615 (method url-fetch)
2616 (uri (bioconductor-uri "BiocVersion" version))
2617 (sha256
2618 (base32
2619 "0rs4nyza4hqqk204d037gi013135wgfhx5asq2dsdjc9vk5nwzfn"))))
2620 (properties `((upstream-name . "BiocVersion")))
2621 (build-system r-build-system)
2622 (home-page "https://bioconductor.org/packages/BiocVersion/")
2623 (synopsis "Set the appropriate version of Bioconductor packages")
2624 (description
2625 "This package provides repository information for the appropriate version
2626 of Bioconductor.")
2627 (license license:artistic2.0)))
2628
2629 (define-public r-biocgenerics
2630 (package
2631 (name "r-biocgenerics")
2632 (version "0.42.0")
2633 (source (origin
2634 (method url-fetch)
2635 (uri (bioconductor-uri "BiocGenerics" version))
2636 (sha256
2637 (base32
2638 "0iv9bnpw2hycndwbmjsszqfwrksz6dfr6qcz78jkssc9ldsgmdhc"))))
2639 (properties
2640 `((upstream-name . "BiocGenerics")))
2641 (build-system r-build-system)
2642 (home-page "https://bioconductor.org/packages/BiocGenerics")
2643 (synopsis "S4 generic functions for Bioconductor")
2644 (description
2645 "This package provides S4 generic functions needed by many Bioconductor
2646 packages.")
2647 (license license:artistic2.0)))
2648
2649 (define-public r-coverageview
2650 (package
2651 (name "r-coverageview")
2652 (version "1.34.0")
2653 (source (origin
2654 (method url-fetch)
2655 (uri (bioconductor-uri "CoverageView" version))
2656 (sha256
2657 (base32
2658 "0mh66l4yh6rpd1r7qbqwh5jkklqyvpfiap0zcqhz9kimssm2pbbp"))))
2659 (build-system r-build-system)
2660 (propagated-inputs
2661 (list r-s4vectors
2662 r-iranges
2663 r-genomicranges
2664 r-genomicalignments
2665 r-rtracklayer
2666 r-rsamtools))
2667 (home-page "https://bioconductor.org/packages/CoverageView/")
2668 (synopsis "Coverage visualization package for R")
2669 (description "This package provides a framework for the visualization of
2670 genome coverage profiles. It can be used for ChIP-seq experiments, but it can
2671 be also used for genome-wide nucleosome positioning experiments or other
2672 experiment types where it is important to have a framework in order to inspect
2673 how the coverage distributed across the genome.")
2674 (license license:artistic2.0)))
2675
2676 (define-public r-cummerbund
2677 (package
2678 (name "r-cummerbund")
2679 (version "2.38.0")
2680 (source (origin
2681 (method url-fetch)
2682 (uri (bioconductor-uri "cummeRbund" version))
2683 (sha256
2684 (base32
2685 "1p4anmi436zykp0ir307g75g23kj8b7shxg4r65qq6zdwflphm0q"))))
2686 (build-system r-build-system)
2687 (propagated-inputs
2688 (list r-biobase
2689 r-biocgenerics
2690 r-fastcluster
2691 r-ggplot2
2692 r-gviz
2693 r-plyr
2694 r-reshape2
2695 r-rsqlite
2696 r-rtracklayer
2697 r-s4vectors))
2698 (home-page "https://bioconductor.org/packages/cummeRbund/")
2699 (synopsis "Analyze Cufflinks high-throughput sequencing data")
2700 (description "This package allows for persistent storage, access,
2701 exploration, and manipulation of Cufflinks high-throughput sequencing
2702 data. In addition, provides numerous plotting functions for commonly
2703 used visualizations.")
2704 (license license:artistic2.0)))
2705
2706 (define-public r-dearseq
2707 (package
2708 (name "r-dearseq")
2709 (version "1.8.4")
2710 (source
2711 (origin
2712 (method url-fetch)
2713 (uri (bioconductor-uri "dearseq" version))
2714 (sha256
2715 (base32
2716 "1zsqsgf243gq1k57mw11d6apzccnq531mwg2wzw9mjrs1m0jsfzl"))))
2717 (build-system r-build-system)
2718 (propagated-inputs
2719 (list r-compquadform
2720 r-dplyr
2721 r-ggplot2
2722 r-kernsmooth
2723 r-magrittr
2724 r-matrixstats
2725 r-patchwork
2726 r-pbapply
2727 r-reshape2
2728 r-rlang
2729 r-statmod
2730 r-survey
2731 r-tibble
2732 r-viridislite))
2733 (native-inputs
2734 (list r-knitr))
2735 (home-page "https://github.com/borishejblum/dearseq")
2736 (synopsis "DEA for RNA-seq data through a robust variance component test")
2737 (description
2738 "This is a package for Differential Expression Analysis of RNA-seq data.
2739 It features a variance component score test accounting for data
2740 heteroscedasticity through precision weights. Perform both gene-wise and gene
2741 set analyses, and can deal with repeated or longitudinal data.")
2742 (license license:gpl2)))
2743
2744 (define-public r-decipher
2745 (package
2746 (name "r-decipher")
2747 (version "2.24.0")
2748 (source (origin
2749 (method url-fetch)
2750 (uri (bioconductor-uri "DECIPHER" version))
2751 (sha256
2752 (base32
2753 "045q2bfzgq1yzhyrzvrhrnmlpka4gikrajxxwv05szksy5nvp7q5"))))
2754 (build-system r-build-system)
2755 (propagated-inputs
2756 (list r-biostrings
2757 r-dbi
2758 r-iranges
2759 r-rsqlite
2760 r-s4vectors
2761 r-xvector))
2762 (home-page "https://www.bioconductor.org/packages/DECIPHER/")
2763 (synopsis "Tools for deciphering and managing biological sequences")
2764 (description "This package provides a toolset for deciphering and managing
2765 biological sequences.")
2766 (license license:gpl3)))
2767
2768 (define-public r-deconvr
2769 (package
2770 (name "r-deconvr")
2771 (version "1.2.0")
2772 (source (origin
2773 (method url-fetch)
2774 (uri (bioconductor-uri "deconvR" version))
2775 (sha256
2776 (base32
2777 "091z3lncamscsvzj63zzbw7dr7vnkn0jwfkm5ljq4112w4rxgrm3"))))
2778 (properties `((upstream-name . "deconvR")))
2779 (build-system r-build-system)
2780 (propagated-inputs
2781 (list r-assertthat
2782 r-biocgenerics
2783 r-data-table
2784 r-dplyr
2785 r-e1071
2786 r-foreach
2787 r-genomicranges
2788 r-iranges
2789 r-magrittr
2790 r-mass
2791 r-matrixstats
2792 r-methylkit
2793 r-nnls
2794 r-quadprog
2795 r-rsq
2796 r-s4vectors
2797 r-tidyr))
2798 (native-inputs (list r-knitr))
2799 (home-page "https://github.com/BIMSBbioinfo/deconvR")
2800 (synopsis "Simulation and deconvolution of omic profiles")
2801 (description
2802 "This package provides a collection of functions designed for analyzing
2803 deconvolution of the bulk sample(s) using an atlas of reference omic signature
2804 profiles and a user-selected model. Users are given the option to create or
2805 extend a reference atlas and,also simulate the desired size of the bulk
2806 signature profile of the reference cell types. The package includes the
2807 cell-type-specific methylation atlas and, Illumina Epic B5 probe ids that can
2808 be used in deconvolution. Additionally, we included @code{BSmeth2Probe}, to
2809 make mapping WGBS data to their probe IDs easier.")
2810 (license license:artistic2.0)))
2811
2812 (define-public r-decoupler
2813 (package
2814 (name "r-decoupler")
2815 (version "2.2.2")
2816 (source
2817 (origin
2818 (method url-fetch)
2819 (uri (bioconductor-uri "decoupleR" version))
2820 (sha256
2821 (base32 "0q1w8yw3bwx8ai5z8rw8lz97w4cplxijq93634hza2vgkig1ck9m"))))
2822 (properties `((upstream-name . "decoupleR")))
2823 (build-system r-build-system)
2824 (propagated-inputs
2825 (list r-broom
2826 r-dplyr
2827 r-magrittr
2828 r-matrix
2829 r-purrr
2830 r-rlang
2831 r-stringr
2832 r-tibble
2833 r-tidyr
2834 r-tidyselect
2835 r-withr))
2836 (native-inputs (list r-knitr))
2837 (home-page "https://saezlab.github.io/decoupleR/")
2838 (synopsis "Computational methods to infer biological activities from omics data")
2839 (description
2840 "Many methods allow us to extract biological activities from omics data using
2841 information from prior knowledge resources, reducing the dimensionality for
2842 increased statistical power and better interpretability. decoupleR is a
2843 Bioconductor package containing different statistical methods to extract these
2844 signatures within a unified framework. decoupleR allows the user to flexibly
2845 test any method with any resource. It incorporates methods that take into
2846 account the sign and weight of network interactions. decoupleR can be used
2847 with any omic, as long as its features can be linked to a biological process
2848 based on prior knowledge. For example, in transcriptomics gene sets regulated
2849 by a transcription factor, or in phospho-proteomics phosphosites that are
2850 targeted by a kinase.")
2851 (license license:gpl3)))
2852
2853 (define-public r-deepsnv
2854 (package
2855 (name "r-deepsnv")
2856 (version "1.42.1")
2857 (source (origin
2858 (method url-fetch)
2859 (uri (bioconductor-uri "deepSNV" version))
2860 (sha256
2861 (base32
2862 "0bgj1grv3a5bqhcdsw445x49kl3pz367svy6fnrzfsk9bmj46kgn"))))
2863 (properties `((upstream-name . "deepSNV")))
2864 (build-system r-build-system)
2865 (propagated-inputs
2866 (list r-biostrings
2867 r-genomicranges
2868 r-iranges
2869 r-rhtslib
2870 r-summarizedexperiment
2871 r-variantannotation
2872 r-vgam))
2873 (native-inputs
2874 (list r-knitr))
2875 (home-page "https://github.com/gerstung-lab/deepSNV/")
2876 (synopsis "Detection of subclonal SNVs in deep sequencing data")
2877 (description
2878 "This package provides quantitative variant callers for detecting
2879 subclonal mutations in ultra-deep (>=100x coverage) sequencing experiments.
2880 The deepSNV algorithm is used for a comparative setup with a control experiment
2881 of the same loci and uses a beta-binomial model and a likelihood ratio test to
2882 discriminate sequencing errors and subclonal SNVs. The shearwater algorithm
2883 computes a Bayes classifier based on a beta-binomial model for variant calling
2884 with multiple samples for precisely estimating model parameters - such as local
2885 error rates and dispersion - and prior knowledge, e.g. from variation data
2886 bases such as COSMIC.")
2887 (license license:gpl3)))
2888
2889 (define-public r-delayedarray
2890 (package
2891 (name "r-delayedarray")
2892 (version "0.22.0")
2893 (source (origin
2894 (method url-fetch)
2895 (uri (bioconductor-uri "DelayedArray" version))
2896 (sha256
2897 (base32
2898 "11id63qza9dxl1364gllqafxmx25a0q22jv5q8h709bgc3f0grqy"))))
2899 (properties
2900 `((upstream-name . "DelayedArray")))
2901 (build-system r-build-system)
2902 (propagated-inputs
2903 (list r-biocgenerics r-s4vectors r-iranges r-matrix
2904 r-matrixgenerics))
2905 (native-inputs
2906 (list r-knitr))
2907 (home-page "https://bioconductor.org/packages/DelayedArray")
2908 (synopsis "Delayed operations on array-like objects")
2909 (description
2910 "Wrapping an array-like object (typically an on-disk object) in a
2911 @code{DelayedArray} object allows one to perform common array operations on it
2912 without loading the object in memory. In order to reduce memory usage and
2913 optimize performance, operations on the object are either delayed or executed
2914 using a block processing mechanism. Note that this also works on in-memory
2915 array-like objects like @code{DataFrame} objects (typically with Rle columns),
2916 @code{Matrix} objects, and ordinary arrays and data frames.")
2917 (license license:artistic2.0)))
2918
2919 (define-public r-derfinderhelper
2920 (package
2921 (name "r-derfinderhelper")
2922 (version "1.30.0")
2923 (source
2924 (origin
2925 (method url-fetch)
2926 (uri (bioconductor-uri "derfinderHelper" version))
2927 (sha256
2928 (base32 "0r7zbx5bfmh5cjs12y8d9qwz53nz340gdy3sx7zcn4rzn7rpslp5"))))
2929 (properties `((upstream-name . "derfinderHelper")))
2930 (build-system r-build-system)
2931 (propagated-inputs
2932 (list r-iranges r-matrix r-s4vectors))
2933 (native-inputs
2934 (list r-knitr))
2935 (home-page "https://github.com/leekgroup/derfinderHelper")
2936 (synopsis "Helper for derfinder")
2937 (description
2938 "This package speeds up the derfinder package when using multiple cores.
2939 It is particularly useful when using BiocParallel and it helps reduce the time
2940 spent loading the full derfinder package when running the F-statistics
2941 calculation in parallel.")
2942 (license license:artistic2.0)))
2943
2944 (define-public r-drimseq
2945 (package
2946 (name "r-drimseq")
2947 (version "1.24.0")
2948 (source
2949 (origin
2950 (method url-fetch)
2951 (uri (bioconductor-uri "DRIMSeq" version))
2952 (sha256
2953 (base32 "1dph483ij43ayw0z5dbnp6gwp53ka7k5si1hp3miac7z8dqzv94l"))))
2954 (properties `((upstream-name . "DRIMSeq")))
2955 (build-system r-build-system)
2956 (propagated-inputs
2957 (list r-biocgenerics
2958 r-biocparallel
2959 r-edger
2960 r-genomicranges
2961 r-ggplot2
2962 r-iranges
2963 r-limma
2964 r-mass
2965 r-reshape2
2966 r-s4vectors))
2967 (native-inputs (list r-knitr))
2968 (home-page "https://bioconductor.org/packages/DRIMSeq")
2969 (synopsis "Differential transcript usage and tuQTL analyses with Dirichlet-multinomial model in RNA-seq")
2970 (description
2971 "The package provides two frameworks. One for the differential
2972 transcript usage analysis between different conditions and one for the tuQTL
2973 analysis. Both are based on modeling the counts of genomic features (i.e.,
2974 transcripts) with the Dirichlet-multinomial distribution. The package also
2975 makes available functions for visualization and exploration of the data and
2976 results.")
2977 (license license:gpl3+)))
2978
2979 (define-public r-bluster
2980 (package
2981 (name "r-bluster")
2982 (version "1.6.0")
2983 (source (origin
2984 (method url-fetch)
2985 (uri (bioconductor-uri "bluster" version))
2986 (sha256
2987 (base32
2988 "1g496yc7mdhshf6r0n8xhj7ax936ia5z2cx72lqyk2vzzzl5c4v8"))))
2989 (properties `((upstream-name . "bluster")))
2990 (build-system r-build-system)
2991 (propagated-inputs
2992 (list r-biocneighbors
2993 r-biocparallel
2994 r-cluster
2995 r-igraph
2996 r-matrix
2997 r-rcpp
2998 r-s4vectors))
2999 (native-inputs
3000 (list r-knitr))
3001 (home-page "https://bioconductor.org/packages/bluster")
3002 (synopsis "Clustering algorithms for Bioconductor")
3003 (description"This package wraps common clustering algorithms in an easily
3004 extended S4 framework. Backends are implemented for hierarchical, k-means
3005 and graph-based clustering. Several utilities are also provided to compare
3006 and evaluate clustering results.")
3007 (license license:gpl3)))
3008
3009 (define-public r-ideoviz
3010 (package
3011 (name "r-ideoviz")
3012 (version "1.32.0")
3013 (source (origin
3014 (method url-fetch)
3015 (uri (bioconductor-uri "IdeoViz" version))
3016 (sha256
3017 (base32
3018 "1wwh3ifdijhpm58lw7cmnx084xwfxnc7i0206w8rhrjnvnq6ljh3"))))
3019 (build-system r-build-system)
3020 (propagated-inputs
3021 (list r-biobase
3022 r-iranges
3023 r-genomicranges
3024 r-rcolorbrewer
3025 r-rtracklayer
3026 r-genomeinfodb))
3027 (home-page "https://bioconductor.org/packages/IdeoViz/")
3028 (synopsis "Plots data along a chromosomal ideogram")
3029 (description "This package provides functions to plot data associated with
3030 arbitrary genomic intervals along chromosomal ideogram.")
3031 (license license:gpl2)))
3032
3033 (define-public r-infercnv
3034 (package
3035 (name "r-infercnv")
3036 (version "1.12.0")
3037 (source
3038 (origin
3039 (method url-fetch)
3040 (uri (bioconductor-uri "infercnv" version))
3041 (sha256
3042 (base32
3043 "01f021fdxm058733rky46dlvqg7dmf5mn5x9lnq0fspp5665w3bl"))))
3044 (properties `((upstream-name . "infercnv")))
3045 (build-system r-build-system)
3046 (inputs (list python))
3047 (propagated-inputs
3048 (list r-ape
3049 r-argparse
3050 r-biocgenerics
3051 r-catools
3052 r-coda
3053 r-coin
3054 r-digest
3055 r-doparallel
3056 r-dplyr
3057 r-edger
3058 r-fastcluster
3059 r-fitdistrplus
3060 r-foreach
3061 r-futile-logger
3062 r-future
3063 r-ggplot2
3064 r-gplots
3065 r-gridextra
3066 r-hiddenmarkov
3067 r-leiden
3068 r-matrix
3069 r-paralleldist
3070 r-phyclust
3071 r-rann
3072 r-rcolorbrewer
3073 r-reshape
3074 r-rjags
3075 r-singlecellexperiment
3076 r-summarizedexperiment
3077 r-tidyr))
3078 (native-inputs (list r-knitr))
3079 (home-page "https://github.com/broadinstitute/inferCNV/wiki")
3080 (synopsis "Infer copy number variation from single-cell RNA-Seq data")
3081 (description
3082 "@code{InferCNV} is used to explore tumor single cell RNA-Seq data to identify
3083 evidence for somatic large-scale chromosomal copy number alterations, such as gains
3084 or deletions of entire chromosomes or large segments of chromosomes. This is done
3085 by exploring expression intensity of genes across positions of a tumor genome in
3086 comparison to a set of reference \"normal\" cells. A heatmap is generated
3087 illustrating the relative expression intensities across each chromosome, and it
3088 often becomes readily apparent as to which regions of the tumor genome are
3089 over-abundant or less-abundant as compared to that of normal cells.")
3090 (license license:bsd-3)))
3091
3092 (define-public r-iranges
3093 (package
3094 (name "r-iranges")
3095 (version "2.30.1")
3096 (source (origin
3097 (method url-fetch)
3098 (uri (bioconductor-uri "IRanges" version))
3099 (sha256
3100 (base32
3101 "1r01c9lczkchgd9hbxxd6wrd5avhy52mfqjck7l9avjq1jimvzv3"))))
3102 (properties
3103 `((upstream-name . "IRanges")))
3104 (build-system r-build-system)
3105 (propagated-inputs
3106 (list r-biocgenerics r-s4vectors))
3107 (home-page "https://bioconductor.org/packages/IRanges")
3108 (synopsis "Infrastructure for manipulating intervals on sequences")
3109 (description
3110 "This package provides efficient low-level and highly reusable S4 classes
3111 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
3112 generally, data that can be organized sequentially (formally defined as
3113 @code{Vector} objects), as well as views on these @code{Vector} objects.
3114 Efficient list-like classes are also provided for storing big collections of
3115 instances of the basic classes. All classes in the package use consistent
3116 naming and share the same rich and consistent \"Vector API\" as much as
3117 possible.")
3118 (license license:artistic2.0)))
3119
3120 (define-public r-isoformswitchanalyzer
3121 (package
3122 (name "r-isoformswitchanalyzer")
3123 (version "1.18.0")
3124 (source
3125 (origin
3126 (method url-fetch)
3127 (uri (bioconductor-uri "IsoformSwitchAnalyzeR" version))
3128 (sha256
3129 (base32 "0n1gb9azxa1mxpsqvw3i3kf72f45nyjj1kgwwrzhd88n3g63lvkd"))))
3130 (properties `((upstream-name . "IsoformSwitchAnalyzeR")))
3131 (build-system r-build-system)
3132 (propagated-inputs
3133 (list r-biobase
3134 r-biocgenerics
3135 r-biostrings
3136 r-bsgenome
3137 r-dbi
3138 r-dexseq
3139 r-dplyr
3140 r-drimseq
3141 r-edger
3142 r-futile-logger
3143 r-genomeinfodb
3144 r-genomicranges
3145 r-ggplot2
3146 r-gridextra
3147 r-iranges
3148 r-limma
3149 r-magrittr
3150 r-plyr
3151 r-rcolorbrewer
3152 r-rcurl
3153 r-readr
3154 r-reshape2
3155 r-rtracklayer
3156 r-stringr
3157 r-tibble
3158 r-tximeta
3159 r-tximport
3160 r-venndiagram
3161 r-xvector))
3162 (native-inputs
3163 (list r-knitr))
3164 (home-page "https://bioconductor.org/packages/IsoformSwitchAnalyzeR/")
3165 (synopsis "Analyze alternative splicing in RNA-seq data")
3166 (description
3167 "This is a package for the analysis of alternative splicing and isoform
3168 switches with predicted functional consequences (e.g. gain/loss of protein
3169 domains etc.) from quantification of all types of RNASeq by tools such as
3170 Kallisto, Salmon, StringTie, Cufflinks/Cuffdiff etc.")
3171 (license license:gpl2+)))
3172
3173 ;; This is a CRAN package, but it depends on r-biobase and r-limma from Bioconductor.
3174 (define-public r-absfiltergsea
3175 (package
3176 (name "r-absfiltergsea")
3177 (version "1.5.1")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (cran-uri "AbsFilterGSEA" version))
3182 (sha256
3183 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
3184 (properties `((upstream-name . "AbsFilterGSEA")))
3185 (build-system r-build-system)
3186 (propagated-inputs
3187 (list r-biobase r-deseq r-limma r-rcpp r-rcpparmadillo))
3188 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
3189 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
3190 (description
3191 "This package provides a function that performs gene-permuting of a gene-set
3192 enrichment analysis (GSEA) calculation with or without the absolute filtering.
3193 Without filtering, users can perform (original) two-tailed or one-tailed
3194 absolute GSEA.")
3195 (license license:gpl2)))
3196
3197 ;; This is a CRAN package, but it depends on r-biobase from Bioconductor.
3198 (define-public r-bisquerna
3199 (package
3200 (name "r-bisquerna")
3201 (version "1.0.5")
3202 (source (origin
3203 (method url-fetch)
3204 (uri (cran-uri "BisqueRNA" version))
3205 (sha256
3206 (base32
3207 "0p3p5lp69gri7vs6qfpm7br4ksbs4l7clm4nj8ki99wpqiqni23n"))))
3208 (properties `((upstream-name . "BisqueRNA")))
3209 (build-system r-build-system)
3210 (propagated-inputs
3211 (list r-biobase r-limsolve))
3212 (native-inputs
3213 (list r-knitr))
3214 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
3215 (synopsis "Decomposition of bulk expression with single-cell sequencing")
3216 (description "This package provides tools to accurately estimate cell type
3217 abundances from heterogeneous bulk expression. A reference-based method
3218 utilizes single-cell information to generate a signature matrix and
3219 transformation of bulk expression for accurate regression based estimates.
3220 A marker-based method utilizes known cell-specific marker genes to measure
3221 relative abundances across samples.")
3222 (license license:gpl3)))
3223
3224 ;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
3225 ;; from Bioconductor.
3226 (define-public r-deconstructsigs
3227 (package
3228 (name "r-deconstructsigs")
3229 (version "1.8.0")
3230 (source (origin
3231 (method url-fetch)
3232 (uri (cran-uri "deconstructSigs" version))
3233 (sha256
3234 (base32
3235 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
3236 (properties
3237 `((upstream-name . "deconstructSigs")))
3238 (build-system r-build-system)
3239 (propagated-inputs
3240 (list r-bsgenome r-bsgenome-hsapiens-ucsc-hg19 r-genomeinfodb
3241 r-reshape2))
3242 (home-page "https://github.com/raerose01/deconstructSigs")
3243 (synopsis "Identifies signatures present in a tumor sample")
3244 (description "This package takes sample information in the form of the
3245 fraction of mutations in each of 96 trinucleotide contexts and identifies
3246 the weighted combination of published signatures that, when summed, most
3247 closely reconstructs the mutational profile.")
3248 (license license:gpl2+)))
3249
3250 ;; This is a CRAN package, but it depends on Bioconductor packages.
3251 (define-public r-jetset
3252 (package
3253 (name "r-jetset")
3254 (version "3.4.0")
3255 (source
3256 (origin
3257 (method url-fetch)
3258 (uri (cran-uri "jetset" version))
3259 (sha256
3260 (base32 "0c99h5npsv2gf5d59s4qhkaqmjhbwa3prcykk24wzhnpfq6y6xhp"))))
3261 (properties `((upstream-name . "jetset")))
3262 (build-system r-build-system)
3263 (propagated-inputs (list r-annotationdbi r-org-hs-eg-db))
3264 (home-page "http://www.cbs.dtu.dk/biotools/jetset/")
3265 (synopsis "One-to-one gene-probeset mapping for Affymetrix human microarrays")
3266 (description
3267 "This package provides a one-to-one mapping from gene to \"best\" probe
3268 set for four Affymetrix human gene expression microarrays: hgu95av2, hgu133a,
3269 hgu133plus2, and u133x3p. On Affymetrix gene expression microarrays, a single
3270 gene may be measured by multiple probe sets. This can present a mild
3271 conundrum when attempting to evaluate a gene \"signature\" that is defined by
3272 gene names rather than by specific probe sets. This package also includes the
3273 pre-calculated probe set quality scores that were used to define the
3274 mapping.")
3275 (license license:artistic2.0)))
3276
3277 ;; This is a CRAN package, but it depends on Bioconductor packages.
3278 (define-public r-nmf
3279 (package
3280 (name "r-nmf")
3281 (version "0.24.0")
3282 (source
3283 (origin
3284 (method url-fetch)
3285 (uri (cran-uri "NMF" version))
3286 (sha256
3287 (base32
3288 "14yxra6in5c1md5nr75y8cdmh9pg0lxqabqflvlhgg1vbg9i2628"))))
3289 (properties `((upstream-name . "NMF")))
3290 (build-system r-build-system)
3291 (propagated-inputs
3292 (list r-cluster
3293 r-biobase
3294 r-biocmanager
3295 r-bigmemory ; suggested
3296 r-synchronicity ; suggested
3297 r-colorspace
3298 r-digest
3299 r-doparallel
3300 r-foreach
3301 r-ggplot2
3302 r-gridbase
3303 r-pkgmaker
3304 r-rcolorbrewer
3305 r-registry
3306 r-reshape2
3307 r-rngtools
3308 r-stringr))
3309 (native-inputs
3310 (list r-knitr))
3311 (home-page "http://renozao.github.io/NMF")
3312 (synopsis "Algorithms and framework for nonnegative matrix factorization")
3313 (description
3314 "This package provides a framework to perform Non-negative Matrix
3315 Factorization (NMF). The package implements a set of already published
3316 algorithms and seeding methods, and provides a framework to test, develop and
3317 plug new or custom algorithms. Most of the built-in algorithms have been
3318 optimized in C++, and the main interface function provides an easy way of
3319 performing parallel computations on multicore machines.")
3320 (license license:gpl2+)))
3321
3322 (define-public r-affy
3323 (package
3324 (name "r-affy")
3325 (version "1.74.0")
3326 (source
3327 (origin
3328 (method url-fetch)
3329 (uri (bioconductor-uri "affy" version))
3330 (sha256
3331 (base32
3332 "02l77y4d4m4jwgkb3jdaskv6shmba5292whp0i29mg9asxv4rdc7"))))
3333 (build-system r-build-system)
3334 (propagated-inputs
3335 (list r-affyio
3336 r-biobase
3337 r-biocgenerics
3338 r-biocmanager
3339 r-preprocesscore
3340 r-zlibbioc))
3341 (inputs
3342 (list zlib))
3343 (home-page "https://bioconductor.org/packages/affy")
3344 (synopsis "Methods for affymetrix oligonucleotide arrays")
3345 (description
3346 "This package contains functions for exploratory oligonucleotide array
3347 analysis.")
3348 (license license:lgpl2.0+)))
3349
3350 (define-public r-affycomp
3351 (package
3352 (name "r-affycomp")
3353 (version "1.72.0")
3354 (source
3355 (origin
3356 (method url-fetch)
3357 (uri (bioconductor-uri "affycomp" version))
3358 (sha256
3359 (base32
3360 "0aq5p56sqpvba0yhgd75302s9bazchh1izgymng6cpb78y5wfpj0"))))
3361 (properties `((upstream-name . "affycomp")))
3362 (build-system r-build-system)
3363 (propagated-inputs (list r-biobase))
3364 (home-page "https://bioconductor.org/packages/affycomp/")
3365 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
3366 (description
3367 "The package contains functions that can be used to compare expression
3368 measures for Affymetrix Oligonucleotide Arrays.")
3369 (license license:gpl2+)))
3370
3371 (define-public r-affycompatible
3372 (package
3373 (name "r-affycompatible")
3374 (version "1.56.0")
3375 (source
3376 (origin
3377 (method url-fetch)
3378 (uri (bioconductor-uri "AffyCompatible" version))
3379 (sha256
3380 (base32
3381 "0x3lj1jgqq67389rzfklah5p878ns9b4fpdpz455m2gq9sk7qsda"))))
3382 (properties
3383 `((upstream-name . "AffyCompatible")))
3384 (build-system r-build-system)
3385 (arguments
3386 (list
3387 #:phases
3388 `(modify-phases %standard-phases
3389 (add-after 'unpack 'make-reproducible
3390 (lambda _
3391 ;; Order DTD elements before generating R code from them.
3392 (substitute* "R/methods-AffyCompatible.R"
3393 (("dtd <- .*" m)
3394 (string-append m "
3395 elements <- dtd$elements
3396 ordered <- elements[order(names(elements))]\n"))
3397 (("elt in dtd\\$elements")
3398 "elt in ordered"))
3399 ;; Use a predictable directory name for code generation.
3400 (mkdir-p "/tmp/NetAffxResourcePrototype")
3401 (substitute* "R/DataClasses.R"
3402 (("directory=tempdir\\(\\)")
3403 "directory=\"/tmp/NetAffxResourcePrototype\"")))))))
3404 (propagated-inputs
3405 (list r-biostrings r-rcurl r-xml))
3406 (home-page "https://bioconductor.org/packages/AffyCompatible/")
3407 (synopsis "Work with Affymetrix GeneChip files")
3408 (description
3409 "This package provides an interface to Affymetrix chip annotation and
3410 sample attribute files. The package allows an easy way for users to download
3411 and manage local data bases of Affynmetrix NetAffx annotation files. It also
3412 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
3413 Command Console} (AGCC)-compatible sample annotation files.")
3414 (license license:artistic2.0)))
3415
3416 (define-public r-affycontam
3417 (package
3418 (name "r-affycontam")
3419 (version "1.54.0")
3420 (source
3421 (origin
3422 (method url-fetch)
3423 (uri (bioconductor-uri "affyContam" version))
3424 (sha256
3425 (base32
3426 "1pyd4rj6pp139kvhh97whi4afvx029w5lglr4mnscw7m3f618v0p"))))
3427 (properties `((upstream-name . "affyContam")))
3428 (build-system r-build-system)
3429 (propagated-inputs
3430 (list r-affy r-affydata r-biobase))
3431 (home-page "https://bioconductor.org/packages/affyContam/")
3432 (synopsis "Structured corruption of Affymetrix CEL file data")
3433 (description
3434 "Microarray quality assessment is a major concern of microarray analysts.
3435 This package provides some simple approaches to in silico creation of quality
3436 problems in CEL-level data to help evaluate performance of quality metrics.")
3437 (license license:artistic2.0)))
3438
3439 (define-public r-affycoretools
3440 (package
3441 (name "r-affycoretools")
3442 (version "1.68.1")
3443 (source
3444 (origin
3445 (method url-fetch)
3446 (uri (bioconductor-uri "affycoretools" version))
3447 (sha256
3448 (base32
3449 "05x64hy5jpmg973biwq4q9gzy1n0iqc0pxrix1f6bri1w6vil3ww"))))
3450 (properties `((upstream-name . "affycoretools")))
3451 (build-system r-build-system)
3452 (propagated-inputs
3453 (list r-affy
3454 r-annotationdbi
3455 r-biobase
3456 r-biocgenerics
3457 r-dbi
3458 r-edger
3459 r-gcrma
3460 r-glimma
3461 r-ggplot2
3462 r-gostats
3463 r-gplots
3464 r-hwriter
3465 r-lattice
3466 r-limma
3467 r-oligoclasses
3468 r-reportingtools
3469 r-rsqlite
3470 r-s4vectors
3471 r-xtable))
3472 (native-inputs
3473 (list r-knitr))
3474 (home-page "https://bioconductor.org/packages/affycoretools/")
3475 (synopsis "Functions for analyses with Affymetrix GeneChips")
3476 (description
3477 "This package provides various wrapper functions that have been written
3478 to streamline the more common analyses that a Biostatistician might see.")
3479 (license license:artistic2.0)))
3480
3481 (define-public r-affyio
3482 (package
3483 (name "r-affyio")
3484 (version "1.66.0")
3485 (source
3486 (origin
3487 (method url-fetch)
3488 (uri (bioconductor-uri "affyio" version))
3489 (sha256
3490 (base32
3491 "19cw82qvzkz6vh2gm302y7digsf6xif7c9l2q9s6lkx2yflqpgfp"))))
3492 (build-system r-build-system)
3493 (propagated-inputs
3494 (list r-zlibbioc))
3495 (inputs
3496 (list zlib))
3497 (home-page "https://github.com/bmbolstad/affyio")
3498 (synopsis "Tools for parsing Affymetrix data files")
3499 (description
3500 "This package provides routines for parsing Affymetrix data files based
3501 upon file format information. The primary focus is on accessing the CEL and
3502 CDF file formats.")
3503 (license license:lgpl2.0+)))
3504
3505 (define-public r-affxparser
3506 (package
3507 (name "r-affxparser")
3508 (version "1.68.1")
3509 (source
3510 (origin
3511 (method url-fetch)
3512 (uri (bioconductor-uri "affxparser" version))
3513 (sha256
3514 (base32
3515 "16x92gwsy7zdyz4md4cw847xn2ymqd6gqsn0rlr2nnf3qmnjnils"))))
3516 (properties `((upstream-name . "affxparser")))
3517 (build-system r-build-system)
3518 (home-page "https://github.com/HenrikBengtsson/affxparser")
3519 (synopsis "Affymetrix File Parsing SDK")
3520 (description
3521 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
3522 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
3523 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
3524 are supported. Currently, there are methods for reading @dfn{chip definition
3525 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
3526 either in full or in part. For example, probe signals from a few probesets
3527 can be extracted very quickly from a set of CEL files into a convenient list
3528 structure.")
3529 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
3530 ;; under LGPLv2+.
3531 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
3532
3533 (define-public r-annotate
3534 (package
3535 (name "r-annotate")
3536 (version "1.74.0")
3537 (source
3538 (origin
3539 (method url-fetch)
3540 (uri (bioconductor-uri "annotate" version))
3541 (sha256
3542 (base32
3543 "0x6vddpiw2g713vicf70198x8dlrwf36p8jjygdsfnl56ls5bh2g"))))
3544 (build-system r-build-system)
3545 (propagated-inputs
3546 (list r-annotationdbi
3547 r-biobase
3548 r-biocgenerics
3549 r-dbi
3550 r-httr
3551 r-xml
3552 r-xtable))
3553 (home-page
3554 "https://bioconductor.org/packages/annotate")
3555 (synopsis "Annotation for microarrays")
3556 (description "This package provides R environments for the annotation of
3557 microarrays.")
3558 (license license:artistic2.0)))
3559
3560 (define-public r-annotationdbi
3561 (package
3562 (name "r-annotationdbi")
3563 (version "1.58.0")
3564 (source (origin
3565 (method url-fetch)
3566 (uri (bioconductor-uri "AnnotationDbi" version))
3567 (sha256
3568 (base32
3569 "15cwy7lic89jwl3dr7j4pb5bx457jdpvzvylr71624s0p0j9rgwn"))))
3570 (properties
3571 `((upstream-name . "AnnotationDbi")))
3572 (build-system r-build-system)
3573 (propagated-inputs
3574 (list r-biobase
3575 r-biocgenerics
3576 r-dbi
3577 r-keggrest
3578 r-iranges
3579 r-rsqlite
3580 r-s4vectors))
3581 (native-inputs
3582 (list r-knitr))
3583 (home-page "https://bioconductor.org/packages/AnnotationDbi")
3584 (synopsis "Annotation database interface")
3585 (description
3586 "This package provides user interface and database connection code for
3587 annotation data packages using SQLite data storage.")
3588 (license license:artistic2.0)))
3589
3590 (define-public r-annotationfilter
3591 (package
3592 (name "r-annotationfilter")
3593 (version "1.20.0")
3594 (source (origin
3595 (method url-fetch)
3596 (uri (bioconductor-uri "AnnotationFilter" version))
3597 (sha256
3598 (base32
3599 "082lpcd6yr2nkxndlck2wqqd3nfdx7lnpw8barxgv41q4l7v4ald"))))
3600 (properties
3601 `((upstream-name . "AnnotationFilter")))
3602 (build-system r-build-system)
3603 (propagated-inputs
3604 (list r-genomicranges r-lazyeval))
3605 (native-inputs
3606 (list r-knitr))
3607 (home-page "https://github.com/Bioconductor/AnnotationFilter")
3608 (synopsis "Facilities for filtering Bioconductor annotation resources")
3609 (description
3610 "This package provides classes and other infrastructure to implement
3611 filters for manipulating Bioconductor annotation resources. The filters are
3612 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
3613 (license license:artistic2.0)))
3614
3615 (define-public r-annotationforge
3616 (package
3617 (name "r-annotationforge")
3618 (version "1.38.1")
3619 (source
3620 (origin
3621 (method url-fetch)
3622 (uri (bioconductor-uri "AnnotationForge" version))
3623 (sha256
3624 (base32
3625 "0lcr79a3570h7zg4z691gxg2vlyqnars5811q0clzinbmq7b4x3v"))))
3626 (properties
3627 `((upstream-name . "AnnotationForge")))
3628 (build-system r-build-system)
3629 (propagated-inputs
3630 (list r-annotationdbi
3631 r-biobase
3632 r-biocgenerics
3633 r-dbi
3634 r-rcurl
3635 r-rsqlite
3636 r-s4vectors
3637 r-xml))
3638 (native-inputs
3639 (list r-knitr))
3640 (home-page "https://bioconductor.org/packages/AnnotationForge")
3641 (synopsis "Code for building annotation database packages")
3642 (description
3643 "This package provides code for generating Annotation packages and their
3644 databases. Packages produced are intended to be used with AnnotationDbi.")
3645 (license license:artistic2.0)))
3646
3647 (define-public r-annotationhub
3648 (package
3649 (name "r-annotationhub")
3650 (version "3.4.0")
3651 (source
3652 (origin
3653 (method url-fetch)
3654 (uri (bioconductor-uri "AnnotationHub" version))
3655 (sha256
3656 (base32
3657 "03dmbx43rsv9xv94lk12gpraq47ryc13jijwma3q05hl9wn8xjxs"))))
3658 (properties `((upstream-name . "AnnotationHub")))
3659 (build-system r-build-system)
3660 (propagated-inputs
3661 (list r-annotationdbi
3662 r-biocfilecache
3663 r-biocgenerics
3664 r-biocmanager
3665 r-biocversion
3666 r-curl
3667 r-dplyr
3668 r-httr
3669 r-interactivedisplaybase
3670 r-rappdirs
3671 r-rsqlite
3672 r-s4vectors
3673 r-yaml))
3674 (native-inputs
3675 (list r-knitr))
3676 (home-page "https://bioconductor.org/packages/AnnotationHub")
3677 (synopsis "Client to access AnnotationHub resources")
3678 (description
3679 "This package provides a client for the Bioconductor AnnotationHub web
3680 resource. The AnnotationHub web resource provides a central location where
3681 genomic files (e.g. VCF, bed, wig) and other resources from standard
3682 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
3683 metadata about each resource, e.g., a textual description, tags, and date of
3684 modification. The client creates and manages a local cache of files retrieved
3685 by the user, helping with quick and reproducible access.")
3686 (license license:artistic2.0)))
3687
3688 (define-public r-aroma-light
3689 (package
3690 (name "r-aroma-light")
3691 (version "3.26.0")
3692 (source
3693 (origin
3694 (method url-fetch)
3695 (uri (bioconductor-uri "aroma.light" version))
3696 (sha256
3697 (base32
3698 "1240v9wvsf205g998ms19hncki8g6shidg09dy5np9pqpiix4vys"))))
3699 (properties `((upstream-name . "aroma.light")))
3700 (build-system r-build-system)
3701 (propagated-inputs
3702 (list r-matrixstats r-r-methodss3 r-r-oo r-r-utils))
3703 (home-page "https://github.com/HenrikBengtsson/aroma.light")
3704 (synopsis "Methods for normalization and visualization of microarray data")
3705 (description
3706 "This package provides methods for microarray analysis that take basic
3707 data types such as matrices and lists of vectors. These methods can be used
3708 standalone, be utilized in other packages, or be wrapped up in higher-level
3709 classes.")
3710 (license license:gpl2+)))
3711
3712 (define-public r-bamsignals
3713 (package
3714 (name "r-bamsignals")
3715 (version "1.28.0")
3716 (source
3717 (origin
3718 (method url-fetch)
3719 (uri (bioconductor-uri "bamsignals" version))
3720 (sha256
3721 (base32
3722 "0ywbxq829hclhr5bb6p77rspxvfs580zlwd2f5kr3an6rdgyx9ky"))))
3723 (build-system r-build-system)
3724 (propagated-inputs
3725 (list r-biocgenerics
3726 r-genomicranges
3727 r-iranges
3728 r-rcpp
3729 r-rhtslib
3730 r-zlibbioc))
3731 (native-inputs
3732 (list r-knitr))
3733 (home-page "https://bioconductor.org/packages/bamsignals")
3734 (synopsis "Extract read count signals from bam files")
3735 (description
3736 "This package efficiently obtains count vectors from indexed bam
3737 files. It counts the number of nucleotide sequence reads in given genomic
3738 ranges and it computes reads profiles and coverage profiles. It also handles
3739 paired-end data.")
3740 (license license:gpl2+)))
3741
3742 (define-public r-biobase
3743 (package
3744 (name "r-biobase")
3745 (version "2.56.0")
3746 (source (origin
3747 (method url-fetch)
3748 (uri (bioconductor-uri "Biobase" version))
3749 (sha256
3750 (base32
3751 "1mnxky78an079p60427cjvk4fzilp0xzy6b85fq274qvdcrz8jbv"))))
3752 (properties
3753 `((upstream-name . "Biobase")))
3754 (build-system r-build-system)
3755 (propagated-inputs
3756 (list r-biocgenerics))
3757 (home-page "https://bioconductor.org/packages/Biobase")
3758 (synopsis "Base functions for Bioconductor")
3759 (description
3760 "This package provides functions that are needed by many other packages
3761 on Bioconductor or which replace R functions.")
3762 (license license:artistic2.0)))
3763
3764 (define-public r-biomart
3765 (package
3766 (name "r-biomart")
3767 (version "2.52.0")
3768 (source (origin
3769 (method url-fetch)
3770 (uri (bioconductor-uri "biomaRt" version))
3771 (sha256
3772 (base32
3773 "0yn3kanyrplc89a900xiz33nw1v23mkljvd5isizgs8gzvwzf8xg"))))
3774 (properties
3775 `((upstream-name . "biomaRt")))
3776 (build-system r-build-system)
3777 (propagated-inputs
3778 (list r-annotationdbi
3779 r-biocfilecache
3780 r-digest
3781 r-httr
3782 r-progress
3783 r-rappdirs
3784 r-stringr
3785 r-xml
3786 r-xml2))
3787 (native-inputs
3788 (list r-knitr))
3789 (home-page "https://bioconductor.org/packages/biomaRt")
3790 (synopsis "Interface to BioMart databases")
3791 (description
3792 "biomaRt provides an interface to a growing collection of databases
3793 implementing the @url{BioMart software suite, http://www.biomart.org}. The
3794 package enables retrieval of large amounts of data in a uniform way without
3795 the need to know the underlying database schemas or write complex SQL queries.
3796 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
3797 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
3798 users direct access to a diverse set of data and enable a wide range of
3799 powerful online queries from gene annotation to database mining.")
3800 (license license:artistic2.0)))
3801
3802 ;; This is a CRAN package, but it depends on a Bioconductor package:
3803 ;; r-biomart
3804 (define-public r-biomartr
3805 (package
3806 (name "r-biomartr")
3807 (version "1.0.2")
3808 (source (origin
3809 (method url-fetch)
3810 (uri (cran-uri "biomartr" version))
3811 (sha256
3812 (base32
3813 "0hr7wks88lbfcqzjzm4x265dk4lpmc3i2ndp7xcrx8ssj76wrmkz"))))
3814 (properties `((upstream-name . "biomartr")))
3815 (build-system r-build-system)
3816 (propagated-inputs
3817 (list r-biomart
3818 r-biostrings
3819 r-curl
3820 r-data-table
3821 r-downloader
3822 r-dplyr
3823 r-fs
3824 r-httr
3825 r-jsonlite
3826 r-philentropy
3827 r-purrr
3828 r-r-utils
3829 r-rcurl
3830 r-readr
3831 r-stringr
3832 r-tibble
3833 r-withr
3834 r-xml))
3835 (native-inputs (list r-knitr))
3836 (home-page "https://docs.ropensci.org/biomartr/")
3837 (synopsis "Genomic data retrieval")
3838 (description
3839 "Perform large scale genomic data retrieval and functional annotation
3840 retrieval. This package aims to provide users with a standardized way to
3841 automate genome, proteome, RNA, coding sequence (CDS), GFF, and metagenome
3842 retrieval from NCBI RefSeq, NCBI Genbank, ENSEMBL, and UniProt databases.
3843 Furthermore, an interface to the BioMart database allows users to retrieve
3844 functional annotation for genomic loci. In addition, users can download
3845 entire databases such as NCBI RefSeq, NCBI nr, NCBI nt, NCBI Genbank, etc with
3846 only one command.")
3847 (license license:gpl2)))
3848
3849 (define-public r-biocparallel
3850 (package
3851 (name "r-biocparallel")
3852 (version "1.30.3")
3853 (source (origin
3854 (method url-fetch)
3855 (uri (bioconductor-uri "BiocParallel" version))
3856 (sha256
3857 (base32
3858 "1rs3wmasl9mx7f399iclvm0bnvggvjj2a88zbi294r5m8wxqlc92"))))
3859 (properties
3860 `((upstream-name . "BiocParallel")))
3861 (build-system r-build-system)
3862 (arguments
3863 `(#:phases
3864 (modify-phases %standard-phases
3865 (add-after 'unpack 'make-reproducible
3866 (lambda _
3867 ;; Remove generated documentation.
3868 (for-each delete-file
3869 '("inst/doc/BiocParallel_BatchtoolsParam.pdf"
3870 "inst/doc/Introduction_To_BiocParallel.pdf"
3871 "inst/doc/Errors_Logs_And_Debugging.pdf"
3872 "inst/doc/BiocParallel_BatchtoolsParam.R"
3873 "inst/doc/Introduction_To_BiocParallel.R"
3874 "inst/doc/Errors_Logs_And_Debugging.R"))
3875
3876 ;; Remove time-dependent macro
3877 (substitute* '("inst/doc/BiocParallel_BatchtoolsParam.Rnw"
3878 "inst/doc/Introduction_To_BiocParallel.Rnw"
3879 "inst/doc/Errors_Logs_And_Debugging.Rnw"
3880 "vignettes/BiocParallel_BatchtoolsParam.Rnw"
3881 "vignettes/Introduction_To_BiocParallel.Rnw"
3882 "vignettes/Errors_Logs_And_Debugging.Rnw")
3883 (("\\today") "later"))
3884
3885 ;; Initialize the random number generator seed when building.
3886 (substitute* "R/rng.R"
3887 (("\"L'Ecuyer-CMRG\"\\)" m)
3888 (string-append
3889 m "; if (!is.na(Sys.getenv(\"SOURCE_DATE_EPOCH\"))) {set.seed(100)}\n"))))))))
3890 (propagated-inputs
3891 (list r-bh r-codetools r-futile-logger r-snow))
3892 (native-inputs
3893 (list r-knitr))
3894 (home-page "https://bioconductor.org/packages/BiocParallel")
3895 (synopsis "Bioconductor facilities for parallel evaluation")
3896 (description
3897 "This package provides modified versions and novel implementation of
3898 functions for parallel evaluation, tailored to use with Bioconductor
3899 objects.")
3900 (license (list license:gpl2+ license:gpl3+))))
3901
3902 (define-public r-biostrings
3903 (package
3904 (name "r-biostrings")
3905 (version "2.64.1")
3906 (source (origin
3907 (method url-fetch)
3908 (uri (bioconductor-uri "Biostrings" version))
3909 (sha256
3910 (base32
3911 "1wk8nlmp6f6fsjrcb4fb48s3ay38yywwad748i6lfkkcw2pdfw33"))))
3912 (properties
3913 `((upstream-name . "Biostrings")))
3914 (build-system r-build-system)
3915 (propagated-inputs
3916 (list r-biocgenerics
3917 r-crayon
3918 r-genomeinfodb
3919 r-iranges
3920 r-s4vectors
3921 r-xvector))
3922 (home-page "https://bioconductor.org/packages/Biostrings")
3923 (synopsis "String objects and algorithms for biological sequences")
3924 (description
3925 "This package provides memory efficient string containers, string
3926 matching algorithms, and other utilities, for fast manipulation of large
3927 biological sequences or sets of sequences.")
3928 (license license:artistic2.0)))
3929
3930 (define-public r-biovizbase
3931 (package
3932 (name "r-biovizbase")
3933 (version "1.44.0")
3934 (source
3935 (origin
3936 (method url-fetch)
3937 (uri (bioconductor-uri "biovizBase" version))
3938 (sha256
3939 (base32
3940 "1ffzf7yvl47l8v8a50m8g9q33hgwvxg4fcm8ld2yy8hd2zl86zyd"))))
3941 (properties `((upstream-name . "biovizBase")))
3942 (build-system r-build-system)
3943 (propagated-inputs
3944 (list r-annotationdbi
3945 r-annotationfilter
3946 r-biocgenerics
3947 r-biostrings
3948 r-dichromat
3949 r-ensembldb
3950 r-genomeinfodb
3951 r-genomicalignments
3952 r-genomicfeatures
3953 r-genomicranges
3954 r-hmisc
3955 r-iranges
3956 r-rcolorbrewer
3957 r-rlang
3958 r-rsamtools
3959 r-s4vectors
3960 r-scales
3961 r-summarizedexperiment
3962 r-variantannotation))
3963 (home-page "https://bioconductor.org/packages/biovizBase")
3964 (synopsis "Basic graphic utilities for visualization of genomic data")
3965 (description
3966 "The biovizBase package is designed to provide a set of utilities, color
3967 schemes and conventions for genomic data. It serves as the base for various
3968 high-level packages for biological data visualization. This saves development
3969 effort and encourages consistency.")
3970 (license license:artistic2.0)))
3971
3972 (define-public r-bsgenome
3973 (package
3974 (name "r-bsgenome")
3975 (version "1.64.0")
3976 (source (origin
3977 (method url-fetch)
3978 (uri (bioconductor-uri "BSgenome" version))
3979 (sha256
3980 (base32
3981 "17gqrmaf6xxghgrzcansl9gfw3ghkrqp87swlnwgyghqvflr5qxc"))))
3982 (properties
3983 `((upstream-name . "BSgenome")))
3984 (build-system r-build-system)
3985 (propagated-inputs
3986 (list r-biocgenerics
3987 r-biostrings
3988 r-genomeinfodb
3989 r-genomicranges
3990 r-iranges
3991 r-matrixstats
3992 r-rsamtools
3993 r-rtracklayer
3994 r-s4vectors
3995 r-xvector))
3996 (home-page "https://bioconductor.org/packages/BSgenome")
3997 (synopsis "Infrastructure for Biostrings-based genome data packages")
3998 (description
3999 "This package provides infrastructure shared by all Biostrings-based
4000 genome data packages and support for efficient SNP representation.")
4001 (license license:artistic2.0)))
4002
4003 (define-public r-category
4004 (package
4005 (name "r-category")
4006 (version "2.62.0")
4007 (source
4008 (origin
4009 (method url-fetch)
4010 (uri (bioconductor-uri "Category" version))
4011 (sha256
4012 (base32
4013 "07js03cfdd6gzbzw14iavlqxynfcqszh988v6k1a3h074wxiivqd"))))
4014 (properties `((upstream-name . "Category")))
4015 (build-system r-build-system)
4016 (propagated-inputs
4017 (list r-annotate
4018 r-annotationdbi
4019 r-biobase
4020 r-biocgenerics
4021 r-genefilter
4022 r-graph
4023 r-gseabase
4024 r-matrix
4025 r-rbgl
4026 r-dbi))
4027 (home-page "https://bioconductor.org/packages/Category")
4028 (synopsis "Category analysis")
4029 (description
4030 "This package provides a collection of tools for performing category
4031 analysis.")
4032 (license license:artistic2.0)))
4033
4034 (define-public r-chipseeker
4035 (package
4036 (name "r-chipseeker")
4037 (version "1.32.1")
4038 (source (origin
4039 (method url-fetch)
4040 (uri (bioconductor-uri "ChIPseeker" version))
4041 (sha256
4042 (base32
4043 "0l2514wvlc8q7n1zjzfrghdg372sp73z39204bkif3g6pdkcvbcf"))))
4044 (build-system r-build-system)
4045 (native-inputs
4046 (list r-knitr))
4047 (propagated-inputs
4048 (list r-annotationdbi
4049 r-biocgenerics
4050 r-boot
4051 r-enrichplot
4052 r-iranges
4053 r-genomeinfodb
4054 r-genomicranges
4055 r-genomicfeatures
4056 r-ggplot2
4057 r-ggvenndiagram
4058 r-gplots
4059 r-gtools
4060 r-dplyr
4061 r-plotrix
4062 r-dplyr
4063 r-magrittr
4064 r-rcolorbrewer
4065 r-rtracklayer
4066 r-s4vectors
4067 r-txdb-hsapiens-ucsc-hg19-knowngene))
4068 (home-page "https://www.bioconductor.org/packages/ChIPseeker/")
4069 (synopsis "ChIPseeker for ChIP peak annotation, comparison, and visualization")
4070 (description "This package implements functions to retrieve the nearest
4071 genes around the peak, annotate genomic region of the peak, statstical methods
4072 for estimate the significance of overlap among ChIP peak data sets, and
4073 incorporate GEO database for user to compare the own dataset with those
4074 deposited in database. The comparison can be used to infer cooperative
4075 regulation and thus can be used to generate hypotheses. Several visualization
4076 functions are implemented to summarize the coverage of the peak experiment,
4077 average profile and heatmap of peaks binding to TSS regions, genomic
4078 annotation, distance to TSS, and overlap of peaks or genes.")
4079 (license license:artistic2.0)))
4080
4081 (define-public r-chipseq
4082 (package
4083 (name "r-chipseq")
4084 (version "1.46.0")
4085 (source
4086 (origin
4087 (method url-fetch)
4088 (uri (bioconductor-uri "chipseq" version))
4089 (sha256
4090 (base32
4091 "1vh0hvgnw7ykj401v1q807sl14s4nixp1d8xbm41n01q6w8x834i"))))
4092 (build-system r-build-system)
4093 (propagated-inputs
4094 (list r-biocgenerics
4095 r-genomicranges
4096 r-iranges
4097 r-lattice
4098 r-s4vectors
4099 r-shortread))
4100 (home-page "https://bioconductor.org/packages/chipseq")
4101 (synopsis "Package for analyzing ChIPseq data")
4102 (description
4103 "This package provides tools for processing short read data from ChIPseq
4104 experiments.")
4105 (license license:artistic2.0)))
4106
4107 (define-public r-complexheatmap
4108 (package
4109 (name "r-complexheatmap")
4110 (version "2.12.1")
4111 (source
4112 (origin
4113 (method url-fetch)
4114 (uri (bioconductor-uri "ComplexHeatmap" version))
4115 (sha256
4116 (base32
4117 "0b4p3ijhdcydfp0j58xlb5dn7d3m2x420n91rl9diqpg4r2gl0s8"))))
4118 (properties
4119 `((upstream-name . "ComplexHeatmap")))
4120 (build-system r-build-system)
4121 (propagated-inputs
4122 (list r-circlize
4123 r-clue
4124 r-codetools
4125 r-colorspace
4126 r-digest
4127 r-doparallel
4128 r-foreach
4129 r-getoptlong
4130 r-globaloptions
4131 r-iranges
4132 r-matrixstats
4133 r-png
4134 r-rcolorbrewer))
4135 (native-inputs
4136 (list r-knitr))
4137 (home-page
4138 "https://github.com/jokergoo/ComplexHeatmap")
4139 (synopsis "Making Complex Heatmaps")
4140 (description
4141 "Complex heatmaps are efficient to visualize associations between
4142 different sources of data sets and reveal potential structures. This package
4143 provides a highly flexible way to arrange multiple heatmaps and supports
4144 self-defined annotation graphics.")
4145 (license license:gpl2+)))
4146
4147 (define-public r-copywriter
4148 (package
4149 (name "r-copywriter")
4150 (version "2.28.0")
4151 (source
4152 (origin
4153 (method url-fetch)
4154 (uri (bioconductor-uri "CopywriteR" version))
4155 (sha256
4156 (base32
4157 "1k11kvam96hpg71hz2n9cfzizmb7d1bmq5zfvm34s7fn09is60xb"))))
4158 (properties `((upstream-name . "CopywriteR")))
4159 (build-system r-build-system)
4160 (propagated-inputs
4161 (list r-biocparallel
4162 r-chipseq
4163 r-copyhelper
4164 r-data-table
4165 r-dnacopy
4166 r-futile-logger
4167 r-genomeinfodb
4168 r-genomicalignments
4169 r-genomicranges
4170 r-gtools
4171 r-iranges
4172 r-matrixstats
4173 r-rsamtools
4174 r-s4vectors))
4175 (home-page "https://github.com/PeeperLab/CopywriteR")
4176 (synopsis "Copy number information from targeted sequencing")
4177 (description
4178 "CopywriteR extracts DNA copy number information from targeted sequencing
4179 by utilizing off-target reads. It allows for extracting uniformly distributed
4180 copy number information, can be used without reference, and can be applied to
4181 sequencing data obtained from various techniques including chromatin
4182 immunoprecipitation and target enrichment on small gene panels. Thereby,
4183 CopywriteR constitutes a widely applicable alternative to available copy
4184 number detection tools.")
4185 (license license:gpl2)))
4186
4187 (define-public r-deseq
4188 (package
4189 (name "r-deseq")
4190 (version "1.39.0")
4191 (source
4192 (origin
4193 (method url-fetch)
4194 (uri (bioconductor-uri "DESeq" version))
4195 (sha256
4196 (base32
4197 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
4198 (properties `((upstream-name . "DESeq")))
4199 (build-system r-build-system)
4200 (propagated-inputs
4201 (list r-biobase
4202 r-biocgenerics
4203 r-genefilter
4204 r-geneplotter
4205 r-lattice
4206 r-locfit
4207 r-mass
4208 r-rcolorbrewer))
4209 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
4210 (synopsis "Differential gene expression analysis")
4211 (description
4212 "This package provides tools for estimating variance-mean dependence in
4213 count data from high-throughput genetic sequencing assays and for testing for
4214 differential expression based on a model using the negative binomial
4215 distribution.")
4216 (license license:gpl3+)))
4217
4218 (define-public r-deseq2
4219 (package
4220 (name "r-deseq2")
4221 (version "1.36.0")
4222 (source
4223 (origin
4224 (method url-fetch)
4225 (uri (bioconductor-uri "DESeq2" version))
4226 (sha256
4227 (base32
4228 "06mvb0jqn2fg96wfwspv0kzpa8xpimzaldrcy8m2d4yk76xwsdr7"))))
4229 (properties `((upstream-name . "DESeq2")))
4230 (build-system r-build-system)
4231 (propagated-inputs
4232 (list r-biobase
4233 r-biocgenerics
4234 r-biocparallel
4235 r-genefilter
4236 r-geneplotter
4237 r-genomicranges
4238 r-ggplot2
4239 r-iranges
4240 r-locfit
4241 r-rcpp
4242 r-rcpparmadillo
4243 r-s4vectors
4244 r-summarizedexperiment))
4245 (native-inputs
4246 (list r-knitr))
4247 (home-page "https://bioconductor.org/packages/DESeq2")
4248 (synopsis "Differential gene expression analysis")
4249 (description
4250 "This package provides functions to estimate variance-mean dependence in
4251 count data from high-throughput nucleotide sequencing assays and test for
4252 differential expression based on a model using the negative binomial
4253 distribution.")
4254 (license license:lgpl3+)))
4255
4256 (define-public r-dexseq
4257 (package
4258 (name "r-dexseq")
4259 (version "1.42.0")
4260 (source
4261 (origin
4262 (method url-fetch)
4263 (uri (bioconductor-uri "DEXSeq" version))
4264 (sha256
4265 (base32
4266 "1dzx9mvm8pvcrwr88rin3flnpmzp3vq8mvspx9s8virqhv1102am"))))
4267 (properties `((upstream-name . "DEXSeq")))
4268 (build-system r-build-system)
4269 (propagated-inputs
4270 (list r-annotationdbi
4271 r-biobase
4272 r-biocgenerics
4273 r-biocparallel
4274 r-biomart
4275 r-deseq2
4276 r-genefilter
4277 r-geneplotter
4278 r-genomicranges
4279 r-hwriter
4280 r-iranges
4281 r-rcolorbrewer
4282 r-rsamtools
4283 r-s4vectors
4284 r-statmod
4285 r-stringr
4286 r-summarizedexperiment))
4287 (native-inputs
4288 (list r-knitr))
4289 (home-page "https://bioconductor.org/packages/DEXSeq")
4290 (synopsis "Inference of differential exon usage in RNA-Seq")
4291 (description
4292 "This package is focused on finding differential exon usage using RNA-seq
4293 exon counts between samples with different experimental designs. It provides
4294 functions that allows the user to make the necessary statistical tests based
4295 on a model that uses the negative binomial distribution to estimate the
4296 variance between biological replicates and generalized linear models for
4297 testing. The package also provides functions for the visualization and
4298 exploration of the results.")
4299 (license license:gpl3+)))
4300
4301 (define-public r-diffcyt
4302 (package
4303 (name "r-diffcyt")
4304 (version "1.16.0")
4305 (source
4306 (origin
4307 (method url-fetch)
4308 (uri (bioconductor-uri "diffcyt" version))
4309 (sha256
4310 (base32 "0mysylzmg24g7lm1xan4yklzqmskfgh53j6vjcz2gzakz5rq3rdb"))))
4311 (properties `((upstream-name . "diffcyt")))
4312 (build-system r-build-system)
4313 (propagated-inputs
4314 (list r-circlize
4315 r-complexheatmap
4316 r-dplyr
4317 r-edger
4318 r-flowcore
4319 r-flowsom
4320 r-limma
4321 r-lme4
4322 r-magrittr
4323 r-multcomp
4324 r-reshape2
4325 r-s4vectors
4326 r-summarizedexperiment
4327 r-tidyr))
4328 (native-inputs (list r-knitr))
4329 (home-page "https://github.com/lmweber/diffcyt")
4330 (synopsis "Differential discovery in high-dimensional cytometry")
4331 (description
4332 "This package provides statistical methods for differential discovery
4333 analyses in high-dimensional cytometry data (including flow cytometry, mass
4334 cytometry or CyTOF, and oligonucleotide-tagged cytometry), based on a
4335 combination of high-resolution clustering and empirical Bayes moderated tests
4336 adapted from transcriptomics.")
4337 (license license:expat)))
4338
4339 (define-public r-dirichletmultinomial
4340 (package
4341 (name "r-dirichletmultinomial")
4342 (version "1.38.0")
4343 (source
4344 (origin
4345 (method url-fetch)
4346 (uri (bioconductor-uri "DirichletMultinomial" version))
4347 (sha256
4348 (base32
4349 "15l0h2qz80lmrm5rva3v7lkgddn42igyxxwims57zwpwyhrk9bmx"))))
4350 (properties
4351 `((upstream-name . "DirichletMultinomial")))
4352 (build-system r-build-system)
4353 (inputs
4354 (list gsl))
4355 (propagated-inputs
4356 (list r-biocgenerics r-iranges r-s4vectors))
4357 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
4358 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
4359 (description
4360 "Dirichlet-multinomial mixture models can be used to describe variability
4361 in microbial metagenomic data. This package is an interface to code
4362 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
4363 1-15.")
4364 (license license:lgpl3)))
4365
4366 (define-public r-dittoseq
4367 (package
4368 (name "r-dittoseq")
4369 (version "1.8.1")
4370 (source (origin
4371 (method url-fetch)
4372 (uri (bioconductor-uri "dittoSeq" version))
4373 (sha256
4374 (base32
4375 "0vi0hcyffaxp6yxsrq95bdlrhr85dvbqm9c7rg6a6blkfgwhlzb4"))))
4376 (properties `((upstream-name . "dittoSeq")))
4377 (build-system r-build-system)
4378 (propagated-inputs
4379 (list r-colorspace
4380 r-cowplot
4381 r-ggplot2
4382 r-ggrepel
4383 r-ggridges
4384 r-gridextra
4385 r-pheatmap
4386 r-reshape2
4387 r-s4vectors
4388 r-singlecellexperiment
4389 r-summarizedexperiment))
4390 (native-inputs (list r-knitr))
4391 (home-page "https://bioconductor.org/packages/dittoSeq")
4392 (synopsis "Single-cell and bulk RNA sequencing visualization")
4393 (description
4394 "This package provides a universal, user friendly, single-cell and bulk RNA
4395 sequencing visualization toolkit that allows highly customizable creation of
4396 color blindness friendly, publication-quality figures. dittoSeq accepts both
4397 SingleCellExperiment (SCE) and Seurat objects, as well as the import and
4398 usage, via conversion to an SCE, of SummarizedExperiment or DGEList bulk data.
4399 Visualizations include dimensionality reduction plots, heatmaps, scatterplots,
4400 percent composition or expression across groups, and more. Customizations
4401 range from size and title adjustments to automatic generation of annotations
4402 for heatmaps, overlay of trajectory analysis onto any dimensionality reduciton
4403 plot, hidden data overlay upon cursor hovering via ggplotly conversion, and
4404 many more. All with simple, discrete inputs. Color blindness friendliness is
4405 powered by legend adjustments (enlarged keys), and by allowing the use of
4406 shapes or letter-overlay in addition to the carefully selected
4407 code{dittoColors()}.")
4408 (license license:expat)))
4409
4410 (define-public r-edaseq
4411 (package
4412 (name "r-edaseq")
4413 (version "2.30.0")
4414 (source
4415 (origin
4416 (method url-fetch)
4417 (uri (bioconductor-uri "EDASeq" version))
4418 (sha256
4419 (base32
4420 "1qnpbmhxvqsma7ihi6yp3ad962xcanlxald84k2szh011ipxj7ws"))))
4421 (properties `((upstream-name . "EDASeq")))
4422 (build-system r-build-system)
4423 (propagated-inputs
4424 (list r-annotationdbi
4425 r-aroma-light
4426 r-biobase
4427 r-biocgenerics
4428 r-biocmanager
4429 r-biomart
4430 r-biostrings
4431 r-genomicfeatures
4432 r-genomicranges
4433 r-iranges
4434 r-rsamtools
4435 r-shortread))
4436 (native-inputs
4437 (list r-knitr))
4438 (home-page "https://github.com/drisso/EDASeq")
4439 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
4440 (description
4441 "This package provides support for numerical and graphical summaries of
4442 RNA-Seq genomic read data. Provided within-lane normalization procedures to
4443 adjust for GC-content effect (or other gene-level effects) on read counts:
4444 loess robust local regression, global-scaling, and full-quantile
4445 normalization. Between-lane normalization procedures to adjust for
4446 distributional differences between lanes (e.g., sequencing depth):
4447 global-scaling and full-quantile normalization.")
4448 (license license:artistic2.0)))
4449
4450 (define-public r-edger
4451 (package
4452 (name "r-edger")
4453 (version "3.38.4")
4454 (source (origin
4455 (method url-fetch)
4456 (uri (bioconductor-uri "edgeR" version))
4457 (sha256
4458 (base32
4459 "1ww69xrg9qrmq7dix2k48j6akgn58ss3340hm7pjvzx508x1j6n6"))))
4460 (properties `((upstream-name . "edgeR")))
4461 (build-system r-build-system)
4462 (propagated-inputs
4463 (list r-limma r-locfit r-rcpp))
4464 (home-page "http://bioinf.wehi.edu.au/edgeR")
4465 (synopsis "EdgeR does empirical analysis of digital gene expression data")
4466 (description "This package can do differential expression analysis of
4467 RNA-seq expression profiles with biological replication. It implements a range
4468 of statistical methodology based on the negative binomial distributions,
4469 including empirical Bayes estimation, exact tests, generalized linear models
4470 and quasi-likelihood tests. It be applied to differential signal analysis of
4471 other types of genomic data that produce counts, including ChIP-seq, SAGE and
4472 CAGE.")
4473 (license license:gpl2+)))
4474
4475 (define-public r-ensembldb
4476 (package
4477 (name "r-ensembldb")
4478 (version "2.20.2")
4479 (source
4480 (origin
4481 (method url-fetch)
4482 (uri (bioconductor-uri "ensembldb" version))
4483 (sha256
4484 (base32
4485 "12n21dcimdhgyjzk33m6xbv0m9ihgyzcf66vr1jr5ycv3rq2s7xc"))))
4486 (build-system r-build-system)
4487 (propagated-inputs
4488 (list r-annotationdbi
4489 r-annotationfilter
4490 r-biobase
4491 r-biocgenerics
4492 r-biostrings
4493 r-curl
4494 r-dbi
4495 r-genomeinfodb
4496 r-genomicfeatures
4497 r-genomicranges
4498 r-iranges
4499 r-protgenerics
4500 r-rsamtools
4501 r-rsqlite
4502 r-rtracklayer
4503 r-s4vectors))
4504 (native-inputs
4505 (list r-knitr))
4506 (home-page "https://github.com/jotsetung/ensembldb")
4507 (synopsis "Utilities to create and use Ensembl-based annotation databases")
4508 (description
4509 "The package provides functions to create and use transcript-centric
4510 annotation databases/packages. The annotation for the databases are directly
4511 fetched from Ensembl using their Perl API. The functionality and data is
4512 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
4513 but, in addition to retrieve all gene/transcript models and annotations from
4514 the database, the @code{ensembldb} package also provides a filter framework
4515 allowing to retrieve annotations for specific entries like genes encoded on a
4516 chromosome region or transcript models of lincRNA genes.")
4517 ;; No version specified
4518 (license license:lgpl3+)))
4519
4520 (define-public r-fastseg
4521 (package
4522 (name "r-fastseg")
4523 (version "1.42.0")
4524 (source
4525 (origin
4526 (method url-fetch)
4527 (uri (bioconductor-uri "fastseg" version))
4528 (sha256
4529 (base32
4530 "1cr1b1jbgp1z1zpf71kl7mljbm2jpi6b97bf3bll3gnagfm489hy"))))
4531 (build-system r-build-system)
4532 (propagated-inputs
4533 (list r-biobase r-biocgenerics r-genomicranges r-iranges
4534 r-s4vectors))
4535 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
4536 (synopsis "Fast segmentation algorithm for genetic sequencing data")
4537 (description
4538 "Fastseg implements a very fast and efficient segmentation algorithm.
4539 It can segment data from DNA microarrays and data from next generation
4540 sequencing for example to detect copy number segments. Further it can segment
4541 data from RNA microarrays like tiling arrays to identify transcripts. Most
4542 generally, it can segment data given as a matrix or as a vector. Various data
4543 formats can be used as input to fastseg like expression set objects for
4544 microarrays or GRanges for sequencing data.")
4545 (license license:lgpl2.0+)))
4546
4547 (define-public r-gage
4548 (package
4549 (name "r-gage")
4550 (version "2.46.1")
4551 (source
4552 (origin
4553 (method url-fetch)
4554 (uri (bioconductor-uri "gage" version))
4555 (sha256
4556 (base32
4557 "01y04jcy7a9fksyhj0nq37n1inkrpqf4qv117lflvipbx0dsw4gl"))))
4558 (build-system r-build-system)
4559 (propagated-inputs
4560 (list r-annotationdbi r-go-db r-graph r-keggrest))
4561 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
4562 "articles/10.1186/1471-2105-10-161"))
4563 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
4564 (description
4565 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
4566 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
4567 data attributes including sample sizes, experimental designs, assay platforms,
4568 and other types of heterogeneity. The gage package provides functions for
4569 basic GAGE analysis, result processing and presentation. In addition, it
4570 provides demo microarray data and commonly used gene set data based on KEGG
4571 pathways and GO terms. These functions and data are also useful for gene set
4572 analysis using other methods.")
4573 (license license:gpl2+)))
4574
4575 (define-public r-genefilter
4576 (package
4577 (name "r-genefilter")
4578 (version "1.78.0")
4579 (source
4580 (origin
4581 (method url-fetch)
4582 (uri (bioconductor-uri "genefilter" version))
4583 (sha256
4584 (base32
4585 "1lp3alnljhsil8zylf8rvf8ik4wmsyciy3ij4rr9l4191dkkp4aq"))))
4586 (build-system r-build-system)
4587 (native-inputs
4588 (list gfortran r-knitr))
4589 (propagated-inputs
4590 (list r-annotate r-annotationdbi r-biobase r-biocgenerics
4591 r-survival))
4592 (home-page "https://bioconductor.org/packages/genefilter")
4593 (synopsis "Filter genes from high-throughput experiments")
4594 (description
4595 "This package provides basic functions for filtering genes from
4596 high-throughput sequencing experiments.")
4597 (license license:artistic2.0)))
4598
4599 (define-public r-geneoverlap
4600 (package
4601 (name "r-geneoverlap")
4602 (version "1.32.0")
4603 (source (origin
4604 (method url-fetch)
4605 (uri (bioconductor-uri "GeneOverlap" version))
4606 (sha256
4607 (base32
4608 "0nqwa3x9q1hl9nm06hqzzrn00rirc9kj6s320csjlf7x6rcidr93"))))
4609 (build-system r-build-system)
4610 (propagated-inputs
4611 (list r-rcolorbrewer r-gplots))
4612 (home-page "https://www.bioconductor.org/packages/GeneOverlap/")
4613 (synopsis "Test and visualize gene overlaps")
4614 (description "This package can be used to test two sets of gene lists
4615 and visualize the results.")
4616 (license license:gpl3)))
4617
4618 (define-public r-genomation
4619 (package
4620 (name "r-genomation")
4621 (version "1.28.0")
4622 (source (origin
4623 (method url-fetch)
4624 (uri (bioconductor-uri "genomation" version))
4625 (sha256
4626 (base32
4627 "0rvay7gs4g2wi6h42kln8xwy9b05axj1x8mkfayl6pnnlva6xj79"))))
4628 (build-system r-build-system)
4629 (propagated-inputs
4630 (list r-biostrings
4631 r-bsgenome
4632 r-data-table
4633 r-genomeinfodb
4634 r-genomicalignments
4635 r-genomicranges
4636 r-ggplot2
4637 r-gridbase
4638 r-impute
4639 r-iranges
4640 r-matrixstats
4641 r-plotrix
4642 r-plyr
4643 r-rcpp
4644 r-readr
4645 r-reshape2
4646 r-rsamtools
4647 r-rtracklayer
4648 r-s4vectors
4649 r-seqpattern))
4650 (native-inputs
4651 (list r-knitr))
4652 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
4653 (synopsis "Summary, annotation and visualization of genomic data")
4654 (description
4655 "This package provides a package for summary and annotation of genomic
4656 intervals. Users can visualize and quantify genomic intervals over
4657 pre-defined functional regions, such as promoters, exons, introns, etc. The
4658 genomic intervals represent regions with a defined chromosome position, which
4659 may be associated with a score, such as aligned reads from HT-seq experiments,
4660 TF binding sites, methylation scores, etc. The package can use any tabular
4661 genomic feature data as long as it has minimal information on the locations of
4662 genomic intervals. In addition, it can use BAM or BigWig files as input.")
4663 (license license:artistic2.0)))
4664
4665 (define-public r-genomeinfodb
4666 (package
4667 (name "r-genomeinfodb")
4668 (version "1.32.4")
4669 (source (origin
4670 (method url-fetch)
4671 (uri (bioconductor-uri "GenomeInfoDb" version))
4672 (sha256
4673 (base32
4674 "0z2bqr0zrl3r2kcqs72ny8p1psf8w1sgbr7qjjknxdv1qp8m2j7v"))))
4675 (properties
4676 `((upstream-name . "GenomeInfoDb")))
4677 (build-system r-build-system)
4678 (propagated-inputs
4679 (list r-biocgenerics r-genomeinfodbdata r-iranges r-rcurl
4680 r-s4vectors))
4681 (native-inputs
4682 (list r-knitr))
4683 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
4684 (synopsis "Utilities for manipulating chromosome identifiers")
4685 (description
4686 "This package contains data and functions that define and allow
4687 translation between different chromosome sequence naming conventions (e.g.,
4688 \"chr1\" versus \"1\"), including a function that attempts to place sequence
4689 names in their natural, rather than lexicographic, order.")
4690 (license license:artistic2.0)))
4691
4692 (define-public r-genomicalignments
4693 (package
4694 (name "r-genomicalignments")
4695 (version "1.32.1")
4696 (source (origin
4697 (method url-fetch)
4698 (uri (bioconductor-uri "GenomicAlignments" version))
4699 (sha256
4700 (base32
4701 "09pg7822camyav5zvlpv360sj5gz8q1bhk528qa2da2qsz74a3cz"))))
4702 (properties
4703 `((upstream-name . "GenomicAlignments")))
4704 (build-system r-build-system)
4705 (propagated-inputs
4706 (list r-biocgenerics
4707 r-biocparallel
4708 r-biostrings
4709 r-genomeinfodb
4710 r-genomicranges
4711 r-iranges
4712 r-rsamtools
4713 r-s4vectors
4714 r-summarizedexperiment))
4715 (home-page "https://bioconductor.org/packages/GenomicAlignments")
4716 (synopsis "Representation and manipulation of short genomic alignments")
4717 (description
4718 "This package provides efficient containers for storing and manipulating
4719 short genomic alignments (typically obtained by aligning short reads to a
4720 reference genome). This includes read counting, computing the coverage,
4721 junction detection, and working with the nucleotide content of the
4722 alignments.")
4723 (license license:artistic2.0)))
4724
4725 (define-public r-genomicfeatures
4726 (package
4727 (name "r-genomicfeatures")
4728 (version "1.48.4")
4729 (source (origin
4730 (method url-fetch)
4731 (uri (bioconductor-uri "GenomicFeatures" version))
4732 (sha256
4733 (base32
4734 "15kn5lmdqp7rsh2zlixj7ashsqnv50bs36hapw36qbaz9vgvim4v"))))
4735 (properties
4736 `((upstream-name . "GenomicFeatures")))
4737 (build-system r-build-system)
4738 (propagated-inputs
4739 (list r-annotationdbi
4740 r-biobase
4741 r-biocgenerics
4742 r-biocio
4743 r-biomart
4744 r-biostrings
4745 r-dbi
4746 r-genomeinfodb
4747 r-genomicranges
4748 r-iranges
4749 r-rcurl
4750 r-rsqlite
4751 r-rtracklayer
4752 r-s4vectors
4753 r-xvector))
4754 (native-inputs
4755 (list r-knitr))
4756 (home-page "https://bioconductor.org/packages/GenomicFeatures")
4757 (synopsis "Tools for working with transcript centric annotations")
4758 (description
4759 "This package provides a set of tools and methods for making and
4760 manipulating transcript centric annotations. With these tools the user can
4761 easily download the genomic locations of the transcripts, exons and cds of a
4762 given organism, from either the UCSC Genome Browser or a BioMart
4763 database (more sources will be supported in the future). This information is
4764 then stored in a local database that keeps track of the relationship between
4765 transcripts, exons, cds and genes. Flexible methods are provided for
4766 extracting the desired features in a convenient format.")
4767 (license license:artistic2.0)))
4768
4769 (define-public r-genomicfiles
4770 (package
4771 (name "r-genomicfiles")
4772 (version "1.32.1")
4773 (source
4774 (origin
4775 (method url-fetch)
4776 (uri (bioconductor-uri "GenomicFiles" version))
4777 (sha256
4778 (base32
4779 "06ycfna26klx27vvsnlpgv46bymfrc8z0zkpag7nm4m23153ivkz"))))
4780 (properties `((upstream-name . "GenomicFiles")))
4781 (build-system r-build-system)
4782 (propagated-inputs
4783 (list r-biocgenerics
4784 r-biocparallel
4785 r-genomeinfodb
4786 r-genomicalignments
4787 r-genomicranges
4788 r-iranges
4789 r-matrixgenerics
4790 r-rsamtools
4791 r-rtracklayer
4792 r-s4vectors
4793 r-summarizedexperiment
4794 r-variantannotation))
4795 (home-page "https://bioconductor.org/packages/GenomicFiles")
4796 (synopsis "Distributed computing by file or by range")
4797 (description
4798 "This package provides infrastructure for parallel computations
4799 distributed by file or by range. User defined mapper and reducer functions
4800 provide added flexibility for data combination and manipulation.")
4801 (license license:artistic2.0)))
4802
4803 (define-public r-genomicranges
4804 (package
4805 (name "r-genomicranges")
4806 (version "1.48.0")
4807 (source (origin
4808 (method url-fetch)
4809 (uri (bioconductor-uri "GenomicRanges" version))
4810 (sha256
4811 (base32
4812 "088rv1aclwq265pdg4hmks73nl0125vk0vigyi44n3djkrdx48yn"))))
4813 (properties
4814 `((upstream-name . "GenomicRanges")))
4815 (build-system r-build-system)
4816 (propagated-inputs
4817 (list r-biocgenerics r-genomeinfodb r-iranges r-s4vectors r-xvector))
4818 (native-inputs
4819 (list r-knitr))
4820 (home-page "https://bioconductor.org/packages/GenomicRanges")
4821 (synopsis "Representation and manipulation of genomic intervals")
4822 (description
4823 "This package provides tools to efficiently represent and manipulate
4824 genomic annotations and alignments is playing a central role when it comes to
4825 analyzing high-throughput sequencing data (a.k.a. NGS data). The
4826 GenomicRanges package defines general purpose containers for storing and
4827 manipulating genomic intervals and variables defined along a genome.")
4828 (license license:artistic2.0)))
4829
4830 (define-public r-gostats
4831 (package
4832 (name "r-gostats")
4833 (version "2.62.0")
4834 (source
4835 (origin
4836 (method url-fetch)
4837 (uri (bioconductor-uri "GOstats" version))
4838 (sha256
4839 (base32
4840 "121ly9vifarg8y7mc468571bbs0xv4sx6sflm5zcdqf0p83yvjrm"))))
4841 (properties `((upstream-name . "GOstats")))
4842 (build-system r-build-system)
4843 (propagated-inputs
4844 (list r-annotate
4845 r-annotationdbi
4846 r-annotationforge
4847 r-biobase
4848 r-category
4849 r-go-db
4850 r-graph
4851 r-rgraphviz
4852 r-rbgl))
4853 (home-page "https://bioconductor.org/packages/GOstats")
4854 (synopsis "Tools for manipulating GO and microarrays")
4855 (description
4856 "This package provides a set of tools for interacting with GO and
4857 microarray data. A variety of basic manipulation tools for graphs, hypothesis
4858 testing and other simple calculations.")
4859 (license license:artistic2.0)))
4860
4861 (define-public r-gseabase
4862 (package
4863 (name "r-gseabase")
4864 (version "1.58.0")
4865 (source
4866 (origin
4867 (method url-fetch)
4868 (uri (bioconductor-uri "GSEABase" version))
4869 (sha256
4870 (base32
4871 "1qhvgyg392fd98h2qnmfmhg7mil5hp9cy3qmkqs4x1bhpv1m978g"))))
4872 (properties `((upstream-name . "GSEABase")))
4873 (build-system r-build-system)
4874 (propagated-inputs
4875 (list r-annotate
4876 r-annotationdbi
4877 r-biobase
4878 r-biocgenerics
4879 r-graph
4880 r-xml))
4881 (native-inputs
4882 (list r-knitr))
4883 (home-page "https://bioconductor.org/packages/GSEABase")
4884 (synopsis "Gene set enrichment data structures and methods")
4885 (description
4886 "This package provides classes and methods to support @dfn{Gene Set
4887 Enrichment Analysis} (GSEA).")
4888 (license license:artistic2.0)))
4889
4890 (define-public r-hpar
4891 (package
4892 (name "r-hpar")
4893 (version "1.38.0")
4894 (source
4895 (origin
4896 (method url-fetch)
4897 (uri (bioconductor-uri "hpar" version))
4898 (sha256
4899 (base32
4900 "07c6r703d5xp7y9bqmqalxgna2qrbk1h5s0d992m7360k259mgrj"))))
4901 (build-system r-build-system)
4902 (native-inputs
4903 (list r-knitr))
4904 (home-page "https://bioconductor.org/packages/hpar/")
4905 (synopsis "Human Protein Atlas in R")
4906 (description "This package provides a simple interface to and data from
4907 the Human Protein Atlas project.")
4908 (license license:artistic2.0)))
4909
4910 (define-public r-rhtslib
4911 (package
4912 (name "r-rhtslib")
4913 (version "1.28.0")
4914 (source
4915 (origin
4916 (method url-fetch)
4917 (uri (bioconductor-uri "Rhtslib" version))
4918 (sha256
4919 (base32
4920 "07kws6afkxbmxq4w357mwwl712pdd16alvz7iqijjd2x7rjchj2f"))))
4921 (properties `((upstream-name . "Rhtslib")))
4922 (build-system r-build-system)
4923 ;; Without this a temporary directory ends up in the Rhtslib.so binary,
4924 ;; which makes R abort the build.
4925 (arguments '(#:configure-flags '("--no-staged-install")))
4926 (propagated-inputs
4927 (list curl zlib ; packages using rhtslib need to link with zlib
4928 r-zlibbioc))
4929 (native-inputs
4930 (list pkg-config r-knitr))
4931 (home-page "https://github.com/nhayden/Rhtslib")
4932 (synopsis "High-throughput sequencing library as an R package")
4933 (description
4934 "This package provides the HTSlib C library for high-throughput
4935 nucleotide sequence analysis. The package is primarily useful to developers
4936 of other R packages who wish to make use of HTSlib.")
4937 (license license:lgpl2.0+)))
4938
4939 (define-public r-impute
4940 (package
4941 (name "r-impute")
4942 (version "1.70.0")
4943 (source (origin
4944 (method url-fetch)
4945 (uri (bioconductor-uri "impute" version))
4946 (sha256
4947 (base32
4948 "11b0z7py0im6y43k55xpzz5jnvc0ram9rk3n1n4mwhvs0vhy39r2"))))
4949 (native-inputs
4950 (list gfortran))
4951 (build-system r-build-system)
4952 (home-page "https://bioconductor.org/packages/impute")
4953 (synopsis "Imputation for microarray data")
4954 (description
4955 "This package provides a function to impute missing gene expression
4956 microarray data, using nearest neighbor averaging.")
4957 (license license:gpl2+)))
4958
4959 (define-public r-interactivedisplaybase
4960 (package
4961 (name "r-interactivedisplaybase")
4962 (version "1.34.0")
4963 (source
4964 (origin
4965 (method url-fetch)
4966 (uri (bioconductor-uri "interactiveDisplayBase" version))
4967 (sha256
4968 (base32
4969 "0fdwx5ch0ch8axdkfiq7zzhhq5hwcvd6kf8fggw9nd3ah1yjwbdg"))))
4970 (properties
4971 `((upstream-name . "interactiveDisplayBase")))
4972 (build-system r-build-system)
4973 (propagated-inputs
4974 (list r-biocgenerics r-dt r-shiny))
4975 (native-inputs
4976 (list r-knitr))
4977 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
4978 (synopsis "Base package for web displays of Bioconductor objects")
4979 (description
4980 "This package contains the basic methods needed to generate interactive
4981 Shiny-based display methods for Bioconductor objects.")
4982 (license license:artistic2.0)))
4983
4984 (define-public r-keggrest
4985 (package
4986 (name "r-keggrest")
4987 (version "1.36.3")
4988 (source
4989 (origin
4990 (method url-fetch)
4991 (uri (bioconductor-uri "KEGGREST" version))
4992 (sha256
4993 (base32
4994 "0lzb3z6pzm323q70931b7220ygml7jb4g81dybwa79wqiqz15pni"))))
4995 (properties `((upstream-name . "KEGGREST")))
4996 (build-system r-build-system)
4997 (propagated-inputs
4998 (list r-biostrings r-httr r-png))
4999 (native-inputs
5000 (list r-knitr))
5001 (home-page "https://bioconductor.org/packages/KEGGREST")
5002 (synopsis "Client-side REST access to KEGG")
5003 (description
5004 "This package provides a package that provides a client interface to the
5005 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
5006 (license license:artistic2.0)))
5007
5008 (define-public r-lfa
5009 (package
5010 (name "r-lfa")
5011 (version "1.26.0")
5012 (source
5013 (origin
5014 (method url-fetch)
5015 (uri (bioconductor-uri "lfa" version))
5016 (sha256
5017 (base32 "044866h4fnxmzb3sh9vmrd2smgsbcqgvd19dgwxisi418cad577l"))))
5018 (properties `((upstream-name . "lfa")))
5019 (build-system r-build-system)
5020 (propagated-inputs (list r-corpcor))
5021 (native-inputs (list r-knitr))
5022 (home-page "https://github.com/StoreyLab/lfa")
5023 (synopsis "Logistic Factor Analysis for categorical data")
5024 (description
5025 "@dfn{Logistic Factor Analysis} (LFA) is a method for a PCA analogue on
5026 Binomial data via estimation of latent structure in the natural parameter.")
5027 (license license:gpl3)))
5028
5029 (define-public r-limma
5030 (package
5031 (name "r-limma")
5032 (version "3.52.4")
5033 (source (origin
5034 (method url-fetch)
5035 (uri (bioconductor-uri "limma" version))
5036 (sha256
5037 (base32
5038 "14xy3qyra2crz31sxgz768mhnhhvcpfhfcigf4xsii643lqcz75h"))))
5039 (build-system r-build-system)
5040 (home-page "http://bioinf.wehi.edu.au/limma")
5041 (synopsis "Package for linear models for microarray and RNA-seq data")
5042 (description "This package can be used for the analysis of gene expression
5043 studies, especially the use of linear models for analysing designed experiments
5044 and the assessment of differential expression. The analysis methods apply to
5045 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
5046 (license license:gpl2+)))
5047
5048 (define-public r-made4
5049 (package
5050 (name "r-made4")
5051 (version "1.70.0")
5052 (source (origin
5053 (method url-fetch)
5054 (uri (bioconductor-uri "made4" version))
5055 (sha256
5056 (base32
5057 "1wrv9d2mp799qzy1bsaj4w7wx12gdhfv9qvklz7z41vfz59d6bq5"))))
5058 (properties `((upstream-name . "made4")))
5059 (build-system r-build-system)
5060 (propagated-inputs
5061 (list r-ade4
5062 r-biobase
5063 r-gplots
5064 r-rcolorbrewer
5065 r-scatterplot3d
5066 r-summarizedexperiment))
5067 (native-inputs (list r-knitr))
5068 (home-page "http://www.hsph.harvard.edu/aedin-culhane/")
5069 (synopsis "Multivariate analysis of microarray data using ADE4")
5070 (description
5071 "This is a package for multivariate data analysis and graphical display
5072 of microarray data. Functions are included for supervised dimension
5073 reduction (between group analysis) and joint dimension reduction of two
5074 datasets (coinertia analysis).")
5075 (license license:artistic2.0)))
5076
5077 (define-public r-methylkit
5078 (package
5079 (name "r-methylkit")
5080 (version "1.22.0")
5081 (source (origin
5082 (method url-fetch)
5083 (uri (bioconductor-uri "methylKit" version))
5084 (sha256
5085 (base32
5086 "00asjzv05avfg0rrkmfbdqd6xx8d18zi72n3b1kf9wj81z2d2a35"))))
5087 (properties `((upstream-name . "methylKit")))
5088 (build-system r-build-system)
5089 (propagated-inputs
5090 (list r-data-table
5091 r-emdbook
5092 r-fastseg
5093 r-genomeinfodb
5094 r-genomicranges
5095 r-gtools
5096 r-iranges
5097 r-kernsmooth
5098 r-limma
5099 r-mclust
5100 r-mgcv
5101 r-qvalue
5102 r-r-utils
5103 r-rcpp
5104 r-rhtslib
5105 r-rsamtools
5106 r-rtracklayer
5107 r-s4vectors
5108 r-zlibbioc))
5109 (native-inputs
5110 (list r-knitr)) ; for vignettes
5111 (home-page "https://github.com/al2na/methylKit")
5112 (synopsis
5113 "DNA methylation analysis from high-throughput bisulfite sequencing results")
5114 (description
5115 "MethylKit is an R package for DNA methylation analysis and annotation
5116 from high-throughput bisulfite sequencing. The package is designed to deal
5117 with sequencing data from @dfn{Reduced representation bisulfite
5118 sequencing} (RRBS) and its variants, but also target-capture methods and whole
5119 genome bisulfite sequencing. It also has functions to analyze base-pair
5120 resolution 5hmC data from experimental protocols such as oxBS-Seq and
5121 TAB-Seq.")
5122 (license license:artistic2.0)))
5123
5124 (define-public r-motifrg
5125 (package
5126 (name "r-motifrg")
5127 (version "1.31.0")
5128 (source
5129 (origin
5130 (method url-fetch)
5131 (uri (bioconductor-uri "motifRG" version))
5132 (sha256
5133 (base32
5134 "1ml6zyzlk8yjbnfhga2qnw8nl43rankvka0kc1yljxr2b66aqbhn"))))
5135 (properties `((upstream-name . "motifRG")))
5136 (build-system r-build-system)
5137 (propagated-inputs
5138 (list r-biostrings
5139 r-bsgenome
5140 r-bsgenome-hsapiens-ucsc-hg19
5141 r-iranges
5142 r-seqlogo
5143 r-xvector))
5144 (home-page "https://bioconductor.org/packages/motifRG")
5145 (synopsis "Discover motifs in high throughput sequencing data")
5146 (description
5147 "This package provides tools for discriminative motif discovery in high
5148 throughput genetic sequencing data sets using regression methods.")
5149 (license license:artistic2.0)))
5150
5151 (define-public r-muscat
5152 (package
5153 (name "r-muscat")
5154 (version "1.10.1")
5155 (source
5156 (origin
5157 (method url-fetch)
5158 (uri (bioconductor-uri "muscat" version))
5159 (sha256
5160 (base32
5161 "1j3zkhqgza92vdykb1yia1jjwsdqra6q9c0jk6p5p2x0778xqgfd"))))
5162 (properties `((upstream-name . "muscat")))
5163 (build-system r-build-system)
5164 (propagated-inputs
5165 (list r-biocparallel
5166 r-blme
5167 r-complexheatmap
5168 r-data-table
5169 r-deseq2
5170 r-dplyr
5171 r-edger
5172 r-ggplot2
5173 r-glmmtmb
5174 r-limma
5175 r-lme4
5176 r-lmertest
5177 r-matrix
5178 r-matrixstats
5179 r-progress
5180 r-purrr
5181 r-s4vectors
5182 r-scales
5183 r-scater
5184 r-sctransform
5185 r-scuttle
5186 r-singlecellexperiment
5187 r-summarizedexperiment
5188 r-variancepartition
5189 r-viridis))
5190 (native-inputs (list r-knitr))
5191 (home-page "https://github.com/HelenaLC/muscat")
5192 (synopsis "Multi-sample multi-group scRNA-seq data analysis tools")
5193 (description
5194 "This package @code{muscat} provides various methods and visualization tools
5195 for @dfn{DS}(differential splicing) analysis in multi-sample, multi-group,
5196 multi-(cell-)subpopulation scRNA-seq data, including cell-level mixed models and
5197 methods based on aggregated \"pseudobulk\" data, as well as a flexible simulation
5198 platform that mimics both single and multi-sample scRNA-seq data.")
5199 (license license:gpl3)))
5200
5201 (define-public r-mutationalpatterns
5202 (package
5203 (name "r-mutationalpatterns")
5204 (version "3.6.0")
5205 (source
5206 (origin
5207 (method url-fetch)
5208 (uri (bioconductor-uri "MutationalPatterns" version))
5209 (sha256
5210 (base32
5211 "113b2hrc0n47qz144xhky93jcm6qh6flzadq5y0plga5jrz0rnwg"))))
5212 (build-system r-build-system)
5213 (native-inputs
5214 (list r-knitr))
5215 (propagated-inputs
5216 (list r-biocgenerics
5217 r-biostrings
5218 r-bsgenome
5219 ;; These two packages are suggested packages
5220 r-bsgenome-hsapiens-1000genomes-hs37d5
5221 r-bsgenome-hsapiens-ucsc-hg19
5222 r-cowplot
5223 r-dplyr
5224 r-genomeinfodb
5225 r-genomicranges
5226 r-ggalluvial
5227 r-ggdendro
5228 r-ggplot2
5229 r-iranges
5230 r-magrittr
5231 r-nmf
5232 r-pracma
5233 r-purrr
5234 r-rcolorbrewer
5235 r-s4vectors
5236 r-stringr
5237 r-tibble
5238 r-tidyr
5239 r-variantannotation))
5240 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
5241 (synopsis "Extract and visualize mutational patterns in genomic data")
5242 (description "This package provides an extensive toolset for the
5243 characterization and visualization of a wide range of mutational patterns
5244 in SNV base substitution data.")
5245 (license license:expat)))
5246
5247 (define-public r-msnbase
5248 (package
5249 (name "r-msnbase")
5250 (version "2.22.0")
5251 (source
5252 (origin
5253 (method url-fetch)
5254 (uri (bioconductor-uri "MSnbase" version))
5255 (sha256
5256 (base32
5257 "1xzn0k3c2wn6c6gv90hddy3c201sg927342zrw9ig2xap0r053x3"))))
5258 (properties `((upstream-name . "MSnbase")))
5259 (build-system r-build-system)
5260 (propagated-inputs
5261 (list r-affy
5262 r-biobase
5263 r-biocgenerics
5264 r-biocparallel
5265 r-digest
5266 r-ggplot2
5267 r-impute
5268 r-iranges
5269 r-lattice
5270 r-maldiquant
5271 r-mass
5272 r-mscoreutils
5273 r-mzid
5274 r-mzr
5275 r-pcamethods
5276 r-plyr
5277 r-protgenerics
5278 r-rcpp
5279 r-s4vectors
5280 r-scales
5281 r-vsn
5282 r-xml))
5283 (native-inputs
5284 (list r-knitr))
5285 (home-page "https://github.com/lgatto/MSnbase")
5286 (synopsis "Base functions and classes for MS-based proteomics")
5287 (description
5288 "This package provides basic plotting, data manipulation and processing
5289 of mass spectrometry based proteomics data.")
5290 (license license:artistic2.0)))
5291
5292 (define-public r-msnid
5293 (package
5294 (name "r-msnid")
5295 (version "1.30.0")
5296 (source
5297 (origin
5298 (method url-fetch)
5299 (uri (bioconductor-uri "MSnID" version))
5300 (sha256
5301 (base32
5302 "1yiw95p40nz0pvq7s4i0xg02r9yqmnknak00z4lkw8jij3w3rkkq"))))
5303 (properties `((upstream-name . "MSnID")))
5304 (build-system r-build-system)
5305 (arguments
5306 `(#:phases
5307 (modify-phases %standard-phases
5308 (add-after 'unpack 'set-HOME
5309 (lambda _ (setenv "HOME" "/tmp"))))))
5310 (propagated-inputs
5311 (list r-annotationdbi
5312 r-annotationhub
5313 r-biobase
5314 r-biocgenerics
5315 r-biocstyle
5316 r-biostrings
5317 r-data-table
5318 r-doparallel
5319 r-dplyr
5320 r-foreach
5321 r-ggplot2
5322 r-iterators
5323 r-msnbase
5324 r-msmstests
5325 r-mzid
5326 r-mzr
5327 r-protgenerics
5328 r-purrr
5329 r-r-cache
5330 r-rcpp
5331 r-reshape2
5332 r-rlang
5333 r-runit
5334 r-stringr
5335 r-tibble
5336 r-xtable))
5337 (home-page "https://bioconductor.org/packages/MSnID")
5338 (synopsis "Utilities for LC-MSn proteomics identifications")
5339 (description
5340 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
5341 from mzIdentML (leveraging the mzID package) or text files. After collating
5342 the search results from multiple datasets it assesses their identification
5343 quality and optimize filtering criteria to achieve the maximum number of
5344 identifications while not exceeding a specified false discovery rate. It also
5345 contains a number of utilities to explore the MS/MS results and assess missed
5346 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
5347 (license license:artistic2.0)))
5348
5349 (define-public r-mzid
5350 (package
5351 (name "r-mzid")
5352 (version "1.34.0")
5353 (source
5354 (origin
5355 (method url-fetch)
5356 (uri (bioconductor-uri "mzID" version))
5357 (sha256
5358 (base32
5359 "1q1aqyya9nd494s7m3rdaf3kixipdrwbj825g40kdljwrg85y961"))))
5360 (properties `((upstream-name . "mzID")))
5361 (build-system r-build-system)
5362 (propagated-inputs
5363 (list r-doparallel
5364 r-foreach
5365 r-iterators
5366 r-plyr
5367 r-protgenerics
5368 r-xml))
5369 (native-inputs
5370 (list r-knitr))
5371 (home-page "https://bioconductor.org/packages/mzID")
5372 (synopsis "Parser for mzIdentML files")
5373 (description
5374 "This package provides a parser for mzIdentML files implemented using the
5375 XML package. The parser tries to be general and able to handle all types of
5376 mzIdentML files with the drawback of having less pretty output than a vendor
5377 specific parser.")
5378 (license license:gpl2+)))
5379
5380 (define-public r-mzr
5381 (package
5382 (name "r-mzr")
5383 (version "2.30.0")
5384 (source
5385 (origin
5386 (method url-fetch)
5387 (uri (bioconductor-uri "mzR" version))
5388 (sha256
5389 (base32
5390 "1dqa03hb42kbqfg15ksijdkyf9pr54gcl3in4mzjkld5sdi8ncds"))
5391 (modules '((guix build utils)))
5392 (snippet
5393 '(delete-file-recursively "src/boost"))))
5394 (properties `((upstream-name . "mzR")))
5395 (build-system r-build-system)
5396 (arguments
5397 `(#:phases
5398 (modify-phases %standard-phases
5399 (add-after 'unpack 'use-system-boost
5400 (lambda _
5401 (substitute* "src/Makevars"
5402 (("\\./boost/libs.*") "")
5403 (("PKG_LIBS=") "PKG_LIBS=$(BOOST_LIBS) ")
5404 (("\\ARCH_OBJS=" line)
5405 (string-append line
5406 "\nBOOST_LIBS=-lboost_system -lboost_regex \
5407 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n"))))))))
5408 (inputs
5409 (list boost ; use this instead of the bundled boost sources
5410 zlib))
5411 (propagated-inputs
5412 (list r-biobase
5413 r-biocgenerics
5414 r-ncdf4
5415 r-protgenerics
5416 r-rcpp
5417 r-rhdf5lib))
5418 (native-inputs
5419 (list r-knitr))
5420 (home-page "https://github.com/sneumann/mzR/")
5421 (synopsis "Parser for mass spectrometry data files")
5422 (description
5423 "The mzR package provides a unified API to the common file formats and
5424 parsers available for mass spectrometry data. It comes with a wrapper for the
5425 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
5426 The package contains the original code written by the ISB, and a subset of the
5427 proteowizard library for mzML and mzIdentML. The netCDF reading code has
5428 previously been used in XCMS.")
5429 (license license:artistic2.0)))
5430
5431 (define-public r-organism-dplyr
5432 (package
5433 (name "r-organism-dplyr")
5434 (version "1.24.0")
5435 (source
5436 (origin
5437 (method url-fetch)
5438 (uri (bioconductor-uri "Organism.dplyr" version))
5439 (sha256
5440 (base32
5441 "0j29f85d66c45ww3417xx376vpz0mmvga5n7h2cl1sd4h70b55as"))))
5442 (properties `((upstream-name . "Organism.dplyr")))
5443 (build-system r-build-system)
5444 (propagated-inputs
5445 (list r-annotationdbi
5446 r-annotationfilter
5447 r-biocfilecache
5448 r-dbi
5449 r-dbplyr
5450 r-dplyr
5451 r-genomeinfodb
5452 r-genomicfeatures
5453 r-genomicranges
5454 r-iranges
5455 r-rlang
5456 r-rsqlite
5457 r-s4vectors
5458 r-tibble))
5459 (native-inputs (list r-knitr))
5460 (home-page "https://bioconductor.org/packages/Organism.dplyr")
5461 (synopsis "Dplyr-based access to Bioconductor annotation resources")
5462 (description
5463 "This package provides an alternative interface to Bioconductor @code{
5464 annotation} resources, in particular the gene identifier mapping functionality
5465 of the @code{org} packages (e.g., @code{org.Hs.eg.db}) and the genome coordinate
5466 functionality of the @code{TxDb} packages (e.g.,
5467 @code{TxDb.Hsapiens.UCSC.hg38.knownGene}).")
5468 (license license:artistic2.0)))
5469
5470 (define-public r-organismdbi
5471 (package
5472 (name "r-organismdbi")
5473 (version "1.38.1")
5474 (source
5475 (origin
5476 (method url-fetch)
5477 (uri (bioconductor-uri "OrganismDbi" version))
5478 (sha256
5479 (base32
5480 "0mxnxj8x4hc21psz39mf7qwvh1fsn6qyjgl5qffk1xxmasf69619"))))
5481 (properties `((upstream-name . "OrganismDbi")))
5482 (build-system r-build-system)
5483 (propagated-inputs
5484 (list r-annotationdbi
5485 r-biobase
5486 r-biocgenerics
5487 r-biocmanager
5488 r-dbi
5489 r-genomicfeatures
5490 r-genomicranges
5491 r-graph
5492 r-iranges
5493 r-rbgl
5494 r-s4vectors))
5495 (home-page "https://bioconductor.org/packages/OrganismDbi")
5496 (synopsis "Software to enable the smooth interfacing of database packages")
5497 (description "The package enables a simple unified interface to several
5498 annotation packages each of which has its own schema by taking advantage of
5499 the fact that each of these packages implements a select methods.")
5500 (license license:artistic2.0)))
5501
5502 (define-public r-pcaexplorer
5503 (package
5504 (name "r-pcaexplorer")
5505 (version "2.22.0")
5506 (source
5507 (origin
5508 (method url-fetch)
5509 (uri (bioconductor-uri "pcaExplorer" version))
5510 (sha256
5511 (base32
5512 "0xkafpi6y5n8hljdaj183hd5z4ik7lpbklg2cbx1hwfz4n4hh1bl"))))
5513 (properties `((upstream-name . "pcaExplorer")))
5514 (build-system r-build-system)
5515 (propagated-inputs
5516 (list r-annotationdbi
5517 r-base64enc
5518 r-biomart
5519 r-deseq2
5520 r-dt
5521 r-genefilter
5522 r-genomicranges
5523 r-ggplot2
5524 r-ggrepel
5525 r-go-db
5526 r-gostats
5527 r-heatmaply
5528 r-iranges
5529 r-knitr
5530 r-limma
5531 r-nmf
5532 r-pheatmap
5533 r-plotly
5534 r-plyr
5535 r-rmarkdown
5536 r-s4vectors
5537 r-scales
5538 r-shiny
5539 r-shinyace
5540 r-shinybs
5541 r-shinydashboard
5542 r-summarizedexperiment
5543 r-threejs
5544 r-tidyr
5545 r-topgo))
5546 (native-inputs (list r-knitr))
5547 (home-page "https://github.com/federicomarini/pcaExplorer")
5548 (synopsis
5549 "Interactive Visualization of RNA-seq Data Using a Principal Components Approach")
5550 (description
5551 "This package provides functionality for interactive visualization of RNA-seq
5552 datasets based on Principal Components Analysis. The methods provided allow for
5553 quick information extraction and effective data exploration. A Shiny
5554 application encapsulates the whole analysis.")
5555 (license license:expat)))
5556
5557 (define-public r-pcamethods
5558 (package
5559 (name "r-pcamethods")
5560 (version "1.88.0")
5561 (source
5562 (origin
5563 (method url-fetch)
5564 (uri (bioconductor-uri "pcaMethods" version))
5565 (sha256
5566 (base32
5567 "1087sl7y707zld7zpf3ly51gnmdp93vn90dwa5440v7qawvg2h9b"))))
5568 (properties `((upstream-name . "pcaMethods")))
5569 (build-system r-build-system)
5570 (propagated-inputs
5571 (list r-biobase r-biocgenerics r-mass r-rcpp))
5572 (home-page "https://github.com/hredestig/pcamethods")
5573 (synopsis "Collection of PCA methods")
5574 (description
5575 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
5576 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
5577 for missing value estimation is included for comparison. BPCA, PPCA and
5578 NipalsPCA may be used to perform PCA on incomplete data as well as for
5579 accurate missing value estimation. A set of methods for printing and plotting
5580 the results is also provided. All PCA methods make use of the same data
5581 structure (pcaRes) to provide a common interface to the PCA results.")
5582 (license license:gpl3+)))
5583
5584 ;; This is a CRAN package, but it depends on a Bioconductor package:
5585 ;; r-aroma-light, r-dnacopy..
5586 (define-public r-pscbs
5587 (package
5588 (name "r-pscbs")
5589 (version "0.66.0")
5590 (source
5591 (origin
5592 (method url-fetch)
5593 (uri (cran-uri "PSCBS" version))
5594 (sha256
5595 (base32 "14rs2wywipbkia3dbzfhpnkmfgdvm2bf586lggsx63sywlv5d02q"))))
5596 (properties `((upstream-name . "PSCBS")))
5597 (build-system r-build-system)
5598 (arguments
5599 `(#:phases
5600 (modify-phases %standard-phases
5601 (add-before 'install 'change-home-dir
5602 (lambda _
5603 ;; Change from /homeless-shelter to /tmp for write permission.
5604 (setenv "HOME" "/tmp"))))))
5605 (propagated-inputs
5606 (list r-aroma-light
5607 r-dnacopy
5608 r-future
5609 r-listenv
5610 r-matrixstats
5611 r-r-cache
5612 r-r-methodss3
5613 r-r-oo
5614 r-r-utils))
5615 (native-inputs
5616 (list r-r-rsp ;used to build vignettes
5617 r-r-devices))
5618 (home-page "https://github.com/HenrikBengtsson/PSCBS")
5619 (synopsis "Analysis of parent-specific DNA copy numbers")
5620 (description
5621 "This is a package for segmentation of allele-specific DNA copy number
5622 data and detection of regions with abnormal copy number within each parental
5623 chromosome. Both tumor-normal paired and tumor-only analyses are supported.")
5624 (license license:gpl2+)))
5625
5626 (define-public r-protgenerics
5627 (package
5628 (name "r-protgenerics")
5629 (version "1.28.0")
5630 (source
5631 (origin
5632 (method url-fetch)
5633 (uri (bioconductor-uri "ProtGenerics" version))
5634 (sha256
5635 (base32
5636 "04hcgj4q8dbzp1a29rbww2bxxrg679pgys3m09p0ydkpsx76rq05"))))
5637 (properties `((upstream-name . "ProtGenerics")))
5638 (build-system r-build-system)
5639 (home-page "https://github.com/lgatto/ProtGenerics")
5640 (synopsis "S4 generic functions for proteomics infrastructure")
5641 (description
5642 "This package provides S4 generic functions needed by Bioconductor
5643 proteomics packages.")
5644 (license license:artistic2.0)))
5645
5646 (define-public r-rbgl
5647 (package
5648 (name "r-rbgl")
5649 (version "1.72.0")
5650 (source
5651 (origin
5652 (method url-fetch)
5653 (uri (bioconductor-uri "RBGL" version))
5654 (sha256
5655 (base32
5656 "0ph089vxla49sng0pdwiyh9rpk9i96cbsx5q2jn46jj4x51ijc7y"))))
5657 (properties `((upstream-name . "RBGL")))
5658 (build-system r-build-system)
5659 (propagated-inputs
5660 (list r-bh r-graph))
5661 (home-page "https://www.bioconductor.org/packages/RBGL")
5662 (synopsis "Interface to the Boost graph library")
5663 (description
5664 "This package provides a fairly extensive and comprehensive interface to
5665 the graph algorithms contained in the Boost library.")
5666 (license license:artistic2.0)))
5667
5668 (define-public r-rcas
5669 (package
5670 (name "r-rcas")
5671 (version "1.22.0")
5672 (source (origin
5673 (method url-fetch)
5674 (uri (bioconductor-uri "RCAS" version))
5675 (sha256
5676 (base32
5677 "05sj2ab7bxgf41gkmjaskhqm0198xlir1sw3f73x8rjg14rssmqf"))))
5678 (properties `((upstream-name . "RCAS")))
5679 (build-system r-build-system)
5680 (propagated-inputs
5681 (list r-biocgenerics
5682 r-biostrings
5683 r-bsgenome
5684 r-bsgenome-hsapiens-ucsc-hg19
5685 r-cowplot
5686 r-data-table
5687 r-dt
5688 r-genomation
5689 r-genomeinfodb
5690 r-genomicfeatures
5691 r-genomicranges
5692 r-ggplot2
5693 r-ggseqlogo
5694 r-gprofiler2
5695 r-iranges
5696 r-knitr
5697 r-pbapply
5698 r-pheatmap
5699 r-plotly
5700 r-plotrix
5701 r-proxy
5702 r-ranger
5703 r-rsqlite
5704 r-rtracklayer
5705 r-rmarkdown
5706 r-s4vectors
5707 pandoc))
5708 (native-inputs
5709 (list r-knitr))
5710 (synopsis "RNA-centric annotation system")
5711 (description
5712 "RCAS aims to be a standalone RNA-centric annotation system that provides
5713 intuitive reports and publication-ready graphics. This package provides the R
5714 library implementing most of the pipeline's features.")
5715 (home-page "https://github.com/BIMSBbioinfo/RCAS")
5716 (license license:artistic2.0)))
5717
5718 (define-public r-regioner
5719 (package
5720 (name "r-regioner")
5721 (version "1.28.0")
5722 (source
5723 (origin
5724 (method url-fetch)
5725 (uri (bioconductor-uri "regioneR" version))
5726 (sha256
5727 (base32
5728 "11whi2v211xiz9s7cjl14d8vavlry2fmhvx12rma25wkjmhrpa3f"))))
5729 (properties `((upstream-name . "regioneR")))
5730 (build-system r-build-system)
5731 (propagated-inputs
5732 (list r-biostrings
5733 r-bsgenome
5734 r-genomeinfodb
5735 r-genomicranges
5736 r-iranges
5737 r-memoise
5738 r-rtracklayer
5739 r-s4vectors))
5740 (native-inputs
5741 (list r-knitr))
5742 (home-page "https://bioconductor.org/packages/regioneR/")
5743 (synopsis "Association analysis of genomic regions")
5744 (description "This package offers a statistical framework based on
5745 customizable permutation tests to assess the association between genomic
5746 region sets and other genomic features.")
5747 (license license:artistic2.0)))
5748
5749 (define-public r-reportingtools
5750 (package
5751 (name "r-reportingtools")
5752 (version "2.36.0")
5753 (source
5754 (origin
5755 (method url-fetch)
5756 (uri (bioconductor-uri "ReportingTools" version))
5757 (sha256
5758 (base32
5759 "0r8cdqzfh1jxkghhk3j8x3y9kkmdyg9ibfhsic15jqkmp1im6khh"))))
5760 (properties
5761 `((upstream-name . "ReportingTools")))
5762 (build-system r-build-system)
5763 (propagated-inputs
5764 (list r-annotate
5765 r-annotationdbi
5766 r-biobase
5767 r-biocgenerics
5768 r-category
5769 r-deseq2
5770 r-edger
5771 r-ggbio
5772 r-ggplot2
5773 r-gostats
5774 r-gseabase
5775 r-hwriter
5776 r-iranges
5777 r-knitr
5778 r-lattice
5779 r-limma
5780 r-pfam-db
5781 r-r-utils
5782 r-xml))
5783 (native-inputs
5784 (list r-knitr))
5785 (home-page "https://bioconductor.org/packages/ReportingTools/")
5786 (synopsis "Tools for making reports in various formats")
5787 (description
5788 "The ReportingTools package enables users to easily display reports of
5789 analysis results generated from sources such as microarray and sequencing
5790 data. The package allows users to create HTML pages that may be viewed on a
5791 web browser, or in other formats. Users can generate tables with sortable and
5792 filterable columns, make and display plots, and link table entries to other
5793 data sources such as NCBI or larger plots within the HTML page. Using the
5794 package, users can also produce a table of contents page to link various
5795 reports together for a particular project that can be viewed in a web
5796 browser.")
5797 (license license:artistic2.0)))
5798
5799 (define-public r-rhdf5
5800 (package
5801 (name "r-rhdf5")
5802 (version "2.40.0")
5803 (source (origin
5804 (method url-fetch)
5805 (uri (bioconductor-uri "rhdf5" version))
5806 (sha256
5807 (base32
5808 "00cp90mnb8p83jiflm6x4x0qf4p7gvgh47jk9jry6j3qyvfqaiff"))))
5809 (build-system r-build-system)
5810 (propagated-inputs
5811 (list r-rhdf5filters r-rhdf5lib))
5812 (native-inputs
5813 (list r-knitr))
5814 (home-page "https://bioconductor.org/packages/rhdf5")
5815 (synopsis "HDF5 interface to R")
5816 (description
5817 "This R/Bioconductor package provides an interface between HDF5 and R.
5818 HDF5's main features are the ability to store and access very large and/or
5819 complex datasets and a wide variety of metadata on mass storage (disk) through
5820 a completely portable file format. The rhdf5 package is thus suited for the
5821 exchange of large and/or complex datasets between R and other software
5822 package, and for letting R applications work on datasets that are larger than
5823 the available RAM.")
5824 (license license:artistic2.0)))
5825
5826 (define-public r-rhdf5filters
5827 (package
5828 (name "r-rhdf5filters")
5829 (version "1.8.0")
5830 (source
5831 (origin
5832 (method url-fetch)
5833 (uri (bioconductor-uri "rhdf5filters" version))
5834 (sha256
5835 (base32
5836 "1ipg0v8nqz1imj63scqmpiswcxbl4ankg3knfq4p06ic6ypbbmvs"))))
5837 (properties `((upstream-name . "rhdf5filters")))
5838 (build-system r-build-system)
5839 (propagated-inputs
5840 (list r-rhdf5lib))
5841 (inputs
5842 (list zlib))
5843 (native-inputs
5844 (list r-knitr))
5845 (home-page "https://github.com/grimbough/rhdf5filters")
5846 (synopsis "HDF5 compression filters")
5847 (description
5848 "This package provides a collection of compression filters for use with
5849 HDF5 datasets.")
5850 (license license:bsd-2)))
5851
5852 (define-public r-rsamtools
5853 (package
5854 (name "r-rsamtools")
5855 (version "2.12.0")
5856 (source (origin
5857 (method url-fetch)
5858 (uri (bioconductor-uri "Rsamtools" version))
5859 (sha256
5860 (base32
5861 "1wll703if12qrn0d11ljwf7rqhs4lb27fzyyz1hqwvzn3v361s10"))))
5862 (properties
5863 `((upstream-name . "Rsamtools")))
5864 (build-system r-build-system)
5865 (arguments
5866 `(#:phases
5867 (modify-phases %standard-phases
5868 (add-after 'unpack 'use-system-zlib
5869 (lambda _
5870 (substitute* "DESCRIPTION"
5871 (("zlibbioc, ") ""))
5872 (substitute* "NAMESPACE"
5873 (("import\\(zlibbioc\\)") "")))))))
5874 (propagated-inputs
5875 (list r-biocgenerics
5876 r-biocparallel
5877 r-biostrings
5878 r-bitops
5879 r-genomeinfodb
5880 r-genomicranges
5881 r-iranges
5882 r-rhtslib
5883 r-s4vectors
5884 r-xvector))
5885 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
5886 (synopsis "Interface to samtools, bcftools, and tabix")
5887 (description
5888 "This package provides an interface to the @code{samtools},
5889 @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence
5890 Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
5891 tab-delimited (tabix) files.")
5892 (license license:expat)))
5893
5894 ;; This is a CRAN package, but it depends on a Bioconductor package:
5895 ;; s4vectors.
5896 (define-public r-restfulr
5897 (package
5898 (name "r-restfulr")
5899 (version "0.0.15")
5900 (source
5901 (origin
5902 (method url-fetch)
5903 (uri (cran-uri "restfulr" version))
5904 (sha256
5905 (base32
5906 "14p6h0gjknqy5z2fprxw7waf4p0cd2qmp18s7qig4ylqn8gqzzs0"))))
5907 (properties `((upstream-name . "restfulr")))
5908 (build-system r-build-system)
5909 (propagated-inputs
5910 (list r-rcurl r-rjson r-s4vectors r-xml r-yaml))
5911 (home-page "https://cran.r-project.org/package=restfulr")
5912 (synopsis "R interface to RESTful web services")
5913 (description
5914 "This package models a RESTful service as if it were a nested R list.")
5915 (license license:artistic2.0)))
5916
5917 (define-public r-rtracklayer
5918 (package
5919 (name "r-rtracklayer")
5920 (version "1.56.1")
5921 (source (origin
5922 (method url-fetch)
5923 (uri (bioconductor-uri "rtracklayer" version))
5924 (sha256
5925 (base32
5926 "10qy9s6253mgj871qfqn03i8yw10mz7id4cxfyf67qxczz2xmjls"))))
5927 (build-system r-build-system)
5928 (arguments
5929 `(#:phases
5930 (modify-phases %standard-phases
5931 (add-after 'unpack 'use-system-zlib
5932 (lambda _
5933 (substitute* "DESCRIPTION"
5934 ((" zlibbioc,") ""))
5935 (substitute* "NAMESPACE"
5936 (("import\\(zlibbioc\\)") "")))))))
5937 (native-inputs
5938 (list pkg-config))
5939 (inputs
5940 (list zlib))
5941 (propagated-inputs
5942 (list r-biocgenerics
5943 r-biocio
5944 r-biostrings
5945 r-genomeinfodb
5946 r-genomicalignments
5947 r-genomicranges
5948 r-iranges
5949 r-rcurl
5950 r-restfulr
5951 r-rsamtools
5952 r-s4vectors
5953 r-xml
5954 r-xvector
5955 r-zlibbioc))
5956 (home-page "https://bioconductor.org/packages/rtracklayer")
5957 (synopsis "R interface to genome browsers and their annotation tracks")
5958 (description
5959 "rtracklayer is an extensible framework for interacting with multiple
5960 genome browsers (currently UCSC built-in) and manipulating annotation tracks
5961 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
5962 built-in). The user may export/import tracks to/from the supported browsers,
5963 as well as query and modify the browser state, such as the current viewport.")
5964 (license license:artistic2.0)))
5965
5966 ;; This is a CRAN package, but it depends on a Bioconductor package.
5967 (define-public r-samr
5968 (package
5969 (name "r-samr")
5970 (version "3.0")
5971 (source
5972 (origin
5973 (method url-fetch)
5974 (uri (cran-uri "samr" version))
5975 (sha256
5976 (base32
5977 "01km0f7qgm73x19vbvsxl083hs1dq4dj8qm5h64cxbf20b08my15"))))
5978 (properties `((upstream-name . "samr")))
5979 (build-system r-build-system)
5980 (propagated-inputs
5981 (list r-gsa
5982 r-impute
5983 r-matrixstats
5984 r-openxlsx
5985 r-shiny
5986 r-shinyfiles))
5987 (native-inputs (list gfortran))
5988 (home-page "https://statweb.stanford.edu/~tibs/SAM/")
5989 (synopsis "Significance analysis of Microarrays")
5990 (description
5991 "This is a package for significance analysis of Microarrays for
5992 differential expression analysis, RNAseq data and related problems.")
5993 ;; Any version of the LGPL
5994 (license license:lgpl3+)))
5995
5996 (define-public r-scannotatr
5997 (package
5998 (name "r-scannotatr")
5999 (version "1.2.0")
6000 (source
6001 (origin
6002 (method url-fetch)
6003 (uri (bioconductor-uri "scAnnotatR" version))
6004 (sha256
6005 (base32 "067q57kabhqd1z8l3d91fw74aaw89nb48gm6fll4hv00nqza3n5b"))))
6006 (properties `((upstream-name . "scAnnotatR")))
6007 (build-system r-build-system)
6008 (propagated-inputs
6009 (list r-annotationhub
6010 r-ape
6011 r-caret
6012 r-data-tree
6013 r-dplyr
6014 r-e1071
6015 r-ggplot2
6016 r-kernlab
6017 r-proc
6018 r-rocr
6019 r-seurat
6020 r-singlecellexperiment
6021 r-summarizedexperiment))
6022 (native-inputs (list r-knitr))
6023 (home-page "https://github.com/grisslab/scAnnotatR")
6024 (synopsis "Pretrained models for prediction on single cell RNA-sequencing data")
6025 (description
6026 "This package comprises a set of pretrained machine learning models to
6027 predict basic immune cell types. This enables to quickly get a first
6028 annotation of the cell types present in the dataset without requiring prior
6029 knowledge. The package also lets you train using own models to predict new
6030 cell types based on specific research needs.")
6031 (license license:expat)))
6032
6033 (define-public r-scdblfinder
6034 (package
6035 (name "r-scdblfinder")
6036 (version "1.10.0")
6037 (source
6038 (origin
6039 (method url-fetch)
6040 (uri (bioconductor-uri "scDblFinder" version))
6041 (sha256
6042 (base32 "0y14dvdm16b3bvlrnz03adfylm1kj6jrp2fwciyldij2lfal90y0"))))
6043 (properties `((upstream-name . "scDblFinder")))
6044 (build-system r-build-system)
6045 (propagated-inputs
6046 (list r-biocgenerics
6047 r-biocneighbors
6048 r-biocparallel
6049 r-biocsingular
6050 r-bluster
6051 r-delayedarray
6052 r-genomeinfodb
6053 r-genomicranges
6054 r-igraph
6055 r-iranges
6056 r-mass
6057 r-matrix
6058 r-rsamtools
6059 r-rtracklayer
6060 r-s4vectors
6061 r-scater
6062 r-scran
6063 r-scuttle
6064 r-singlecellexperiment
6065 r-summarizedexperiment
6066 r-xgboost))
6067 (native-inputs (list r-knitr))
6068 (home-page "https://github.com/plger/scDblFinder")
6069 (synopsis "Detect multiplets in single-cell RNA sequencing data")
6070 (description
6071 "The scDblFinder package gathers various methods for the detection and
6072 handling of doublets/multiplets in single-cell RNA sequencing data (i.e.
6073 multiple cells captured within the same droplet or reaction volume). It
6074 includes methods formerly found in the scran package, and the new fast and
6075 comprehensive scDblFinder method.")
6076 (license license:gpl3)))
6077
6078 (define-public r-scmap
6079 (package
6080 (name "r-scmap")
6081 (version "1.18.0")
6082 (source
6083 (origin
6084 (method url-fetch)
6085 (uri (bioconductor-uri "scmap" version))
6086 (sha256
6087 (base32 "0pfwaa9pgml11b84rpf7afdkmg8kxb4srgpc56571vaz388xrv7l"))))
6088 (properties `((upstream-name . "scmap")))
6089 (build-system r-build-system)
6090 (propagated-inputs
6091 (list r-biobase
6092 r-biocgenerics
6093 r-dplyr
6094 r-e1071
6095 r-ggplot2
6096 r-googlevis
6097 r-matrixstats
6098 r-proxy
6099 r-randomforest
6100 r-rcpp
6101 r-rcpparmadillo
6102 r-reshape2
6103 r-s4vectors
6104 r-singlecellexperiment
6105 r-summarizedexperiment))
6106 (native-inputs (list r-knitr))
6107 (home-page "https://github.com/hemberg-lab/scmap")
6108 (synopsis "Tool for unsupervised projection of single cell RNA-seq data")
6109 (description
6110 "@dfn{Single-cell RNA-seq} (scRNA-seq) is widely used to investigate the
6111 composition of complex tissues since the technology allows researchers to
6112 define cell-types using unsupervised clustering of the transcriptome.
6113 However, due to differences in experimental methods and computational
6114 analyses, it is often challenging to directly compare the cells identified in
6115 two different experiments. @code{scmap} is a method for projecting cells from
6116 a scRNA-seq experiment onto the cell-types or individual cells identified in a
6117 different experiment.")
6118 (license license:gpl3)))
6119
6120 (define-public r-scry
6121 (package
6122 (name "r-scry")
6123 (version "1.8.0")
6124 (source (origin
6125 (method url-fetch)
6126 (uri (bioconductor-uri "scry" version))
6127 (sha256
6128 (base32
6129 "16mj21r91jy8ircdz8rfrdli9gjy0hrx90kf6ghs305d3d4dl193"))))
6130 (properties `((upstream-name . "scry")))
6131 (build-system r-build-system)
6132 (propagated-inputs
6133 (list r-biocsingular
6134 r-delayedarray
6135 r-glmpca
6136 r-hdf5array
6137 r-matrix
6138 r-singlecellexperiment
6139 r-summarizedexperiment))
6140 (native-inputs (list r-knitr))
6141 (home-page "https://bioconductor.org/packages/scry.html")
6142 (synopsis "Small-count analysis methods for high-dimensional data")
6143 (description
6144 "Many modern biological datasets consist of small counts that are not
6145 well fit by standard linear-Gaussian methods such as principal component
6146 analysis. This package provides implementations of count-based feature
6147 selection and dimension reduction algorithms. These methods can be used to
6148 facilitate unsupervised analysis of any high-dimensional data such as
6149 single-cell RNA-seq.")
6150 (license license:artistic2.0)))
6151
6152 (define-public r-seqlogo
6153 (package
6154 (name "r-seqlogo")
6155 (version "1.62.0")
6156 (source
6157 (origin
6158 (method url-fetch)
6159 (uri (bioconductor-uri "seqLogo" version))
6160 (sha256
6161 (base32
6162 "1lk3238m17acmd6lgjjbpscyxw8fm63wv34kbbr478wcih1wbwxr"))))
6163 (properties `((upstream-name . "seqLogo")))
6164 (build-system r-build-system)
6165 (native-inputs
6166 (list r-knitr))
6167 (home-page "https://bioconductor.org/packages/seqLogo")
6168 (synopsis "Sequence logos for DNA sequence alignments")
6169 (description
6170 "seqLogo takes the position weight matrix of a DNA sequence motif and
6171 plots the corresponding sequence logo as introduced by Schneider and
6172 Stephens (1990).")
6173 (license license:lgpl2.0+)))
6174
6175 (define-public r-seqpattern
6176 (package
6177 (name "r-seqpattern")
6178 (version "1.28.0")
6179 (source (origin
6180 (method url-fetch)
6181 (uri (bioconductor-uri "seqPattern" version))
6182 (sha256
6183 (base32
6184 "0nrrlr1nl9zxmp88qq8jn7wgmda6jh0xvp4nph94w4nwjsyb7xqn"))))
6185 (properties
6186 `((upstream-name . "seqPattern")))
6187 (build-system r-build-system)
6188 (propagated-inputs
6189 (list r-biostrings r-genomicranges r-iranges r-kernsmooth r-plotrix))
6190 (home-page "https://bioconductor.org/packages/seqPattern")
6191 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
6192 (description
6193 "This package provides tools to visualize oligonucleotide patterns and
6194 sequence motif occurrences across a large set of sequences centred at a common
6195 reference point and sorted by a user defined feature.")
6196 (license license:gpl3+)))
6197
6198 (define-public r-shortread
6199 (package
6200 (name "r-shortread")
6201 (version "1.54.0")
6202 (source
6203 (origin
6204 (method url-fetch)
6205 (uri (bioconductor-uri "ShortRead" version))
6206 (sha256
6207 (base32
6208 "0303198b4v2wjah9kc829kn01030996l6di4jpf8q5ccd212rjhq"))))
6209 (properties `((upstream-name . "ShortRead")))
6210 (build-system r-build-system)
6211 (inputs
6212 (list zlib))
6213 (propagated-inputs
6214 (list r-biobase
6215 r-biocgenerics
6216 r-biocparallel
6217 r-biostrings
6218 r-genomeinfodb
6219 r-genomicalignments
6220 r-genomicranges
6221 r-rhtslib
6222 r-hwriter
6223 r-iranges
6224 r-lattice
6225 r-latticeextra
6226 r-rsamtools
6227 r-s4vectors
6228 r-xvector
6229 r-zlibbioc))
6230 (home-page "https://bioconductor.org/packages/ShortRead")
6231 (synopsis "FASTQ input and manipulation tools")
6232 (description
6233 "This package implements sampling, iteration, and input of FASTQ files.
6234 It includes functions for filtering and trimming reads, and for generating a
6235 quality assessment report. Data are represented as
6236 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
6237 purposes. The package also contains legacy support for early single-end,
6238 ungapped alignment formats.")
6239 (license license:artistic2.0)))
6240
6241 (define-public r-simplifyenrichment
6242 (package
6243 (name "r-simplifyenrichment")
6244 (version "1.6.1")
6245 (source
6246 (origin
6247 (method url-fetch)
6248 (uri (bioconductor-uri "simplifyEnrichment" version))
6249 (sha256
6250 (base32
6251 "0qblgdxmr7zc981529cca3ykakql618q1im6gaxw8pwws5jgpyk6"))))
6252 (properties
6253 `((upstream-name . "simplifyEnrichment")))
6254 (build-system r-build-system)
6255 (propagated-inputs
6256 (list r-annotationdbi
6257 r-biocgenerics
6258 r-circlize
6259 r-clue
6260 r-cluster
6261 r-colorspace
6262 r-complexheatmap
6263 r-digest
6264 r-getoptlong
6265 r-globaloptions
6266 r-go-db
6267 r-gosemsim
6268 r-matrix
6269 r-org-hs-eg-db
6270 r-proxyc
6271 r-slam
6272 r-tm))
6273 (native-inputs (list r-knitr))
6274 (home-page "https://github.com/jokergoo/simplifyEnrichment")
6275 (synopsis "Simplify functional enrichment results")
6276 (description "This package provides a new clustering algorithm, binary
6277 cut, for clustering similarity matrices of functional terms is implemented in
6278 this package. It also provides functionalities for visualizing, summarizing
6279 and comparing the clusterings.")
6280 (license license:expat)))
6281
6282 (define-public r-transcriptr
6283 (package
6284 (name "r-transcriptr")
6285 (version "1.24.0")
6286 (source
6287 (origin
6288 (method url-fetch)
6289 (uri (bioconductor-uri "transcriptR" version))
6290 (sha256
6291 (base32 "1zc6aasd5nzwl9jxr0rdriiq85adqdbfi5b9m3jyf69pa71sgy03"))))
6292 (properties `((upstream-name . "transcriptR")))
6293 (build-system r-build-system)
6294 (propagated-inputs
6295 (list r-biocgenerics
6296 r-caret
6297 r-chipseq
6298 r-e1071
6299 r-genomeinfodb
6300 r-genomicalignments
6301 r-genomicfeatures
6302 r-genomicranges
6303 r-ggplot2
6304 r-iranges
6305 r-proc
6306 r-reshape2
6307 r-rsamtools
6308 r-rtracklayer
6309 r-s4vectors))
6310 (native-inputs (list r-knitr))
6311 (home-page "https://bioconductor.org/packages/transcriptR")
6312 (synopsis "Primary transcripts detection and quantification")
6313 (description
6314 "The differences in the RNA types being sequenced have an impact on the
6315 resulting sequencing profiles. mRNA-seq data is enriched with reads derived
6316 from exons, while GRO-, nucRNA- and chrRNA-seq demonstrate a substantial
6317 broader coverage of both exonic and intronic regions. The presence of
6318 intronic reads in GRO-seq type of data makes it possible to use it to
6319 computationally identify and quantify all de novo continuous regions of
6320 transcription distributed across the genome. This type of data, however, is
6321 more challenging to interpret and less common practice compared to mRNA-seq.
6322 One of the challenges for primary transcript detection concerns the
6323 simultaneous transcription of closely spaced genes, which needs to be properly
6324 divided into individually transcribed units. The R package transcriptR
6325 combines RNA-seq data with ChIP-seq data of histone modifications that mark
6326 active Transcription Start Sites (TSSs), such as, H3K4me3 or H3K9/14Ac to
6327 overcome this challenge. The advantage of this approach over the use of, for
6328 example, gene annotations is that this approach is data driven and therefore
6329 able to deal also with novel and case specific events.")
6330 (license license:gpl3)))
6331
6332 (define-public r-trajectoryutils
6333 (package
6334 (name "r-trajectoryutils")
6335 (version "1.4.0")
6336 (source
6337 (origin
6338 (method url-fetch)
6339 (uri (bioconductor-uri "TrajectoryUtils" version))
6340 (sha256
6341 (base32
6342 "07hcr3zplxlzlwc13wh9006m5kaqm57cm1b2x74bpp857f2q93dj"))))
6343 (properties
6344 `((upstream-name . "TrajectoryUtils")))
6345 (build-system r-build-system)
6346 (propagated-inputs
6347 (list r-igraph r-matrix r-s4vectors r-singlecellexperiment
6348 r-summarizedexperiment))
6349 (native-inputs (list r-knitr))
6350 (home-page "https://bioconductor.org/packages/TrajectoryUtils")
6351 (synopsis "Single-cell trajectory analysis utilities")
6352 (description
6353 "This package implements low-level utilities for single-cell trajectory
6354 analysis, primarily intended for re-use inside higher-level packages. It
6355 includes a function to create a cluster-level minimum spanning tree and data
6356 structures to hold pseudotime inference results.")
6357 (license license:gpl3)))
6358
6359 (define-public r-slingshot
6360 (package
6361 (name "r-slingshot")
6362 (version "2.4.0")
6363 (source (origin
6364 (method url-fetch)
6365 (uri (bioconductor-uri "slingshot" version))
6366 (sha256
6367 (base32
6368 "0xapi66l5z2qdqns3fcjqcjal6npqj7rxra60lwjvbrq49pq69p2"))))
6369 (build-system r-build-system)
6370 (propagated-inputs
6371 (list r-igraph
6372 r-matrixstats
6373 r-princurve
6374 r-s4vectors
6375 r-singlecellexperiment
6376 r-summarizedexperiment
6377 r-trajectoryutils))
6378 (native-inputs
6379 (list r-knitr))
6380 (home-page "https://bioconductor.org/packages/slingshot")
6381 (synopsis "Tools for ordering single-cell sequencing")
6382 (description "This package provides functions for inferring continuous,
6383 branching lineage structures in low-dimensional data. Slingshot was designed
6384 to model developmental trajectories in single-cell RNA sequencing data and
6385 serve as a component in an analysis pipeline after dimensionality reduction
6386 and clustering. It is flexible enough to handle arbitrarily many branching
6387 events and allows for the incorporation of prior knowledge through supervised
6388 graph construction.")
6389 (license license:artistic2.0)))
6390
6391 (define-public r-stager
6392 (package
6393 (name "r-stager")
6394 (version "1.18.0")
6395 (source
6396 (origin
6397 (method url-fetch)
6398 (uri (bioconductor-uri "stageR" version))
6399 (sha256
6400 (base32 "0ns3ih6l4na6irshrc5iy4d9qf7hrnqq3ndnlcjb2i1cn38l2w9y"))))
6401 (properties `((upstream-name . "stageR")))
6402 (build-system r-build-system)
6403 (propagated-inputs (list r-summarizedexperiment))
6404 (native-inputs (list r-knitr))
6405 (home-page "https://bioconductor.org/packages/stageR")
6406 (synopsis "Stage-wise analysis of high throughput gene expression data")
6407 (description
6408 "The stageR package allows automated stage-wise analysis of
6409 high-throughput gene expression data. The method is published in Genome
6410 Biology at
6411 @url{https://genomebiology.biomedcentral.com/articles/10.1186/s13059-017-1277-0}.")
6412 (license license:gpl3)))
6413
6414 (define-public r-stringdb
6415 (package
6416 (name "r-stringdb")
6417 (version "2.8.4")
6418 (source
6419 (origin
6420 (method url-fetch)
6421 (uri (bioconductor-uri "STRINGdb" version))
6422 (sha256
6423 (base32 "1jn6080v6097zpqsr4gfbx31gqqdhpzjrk63avk3v3xwawmf2379"))))
6424 (properties `((upstream-name . "STRINGdb")))
6425 (build-system r-build-system)
6426 (propagated-inputs
6427 (list r-gplots
6428 r-hash
6429 r-igraph
6430 r-plotrix
6431 r-plyr
6432 r-png
6433 r-rcolorbrewer
6434 r-rcurl
6435 r-sqldf))
6436 (home-page "https://git.bioconductor.org/packages/STRINGdb")
6437 (synopsis "Search tool for the retrieval of interacting proteins database")
6438 (description
6439 "The @code{STRINGdb} package provides an R interface to the STRING
6440 protein-protein interactions database. @url{https://www.string-db.org,
6441 STRING} is a database of known and predicted protein-protein interactions.
6442 The interactions include direct (physical) and indirect (functional)
6443 associations. Each interaction is associated with a combined confidence score
6444 that integrates the various evidences.")
6445 (license license:gpl2)))
6446
6447 (define-public r-structuralvariantannotation
6448 (package
6449 (name "r-structuralvariantannotation")
6450 (version "1.12.0")
6451 (source
6452 (origin
6453 (method url-fetch)
6454 (uri (bioconductor-uri "StructuralVariantAnnotation" version))
6455 (sha256
6456 (base32 "0f3x74ic3blg8nm5xlv79k0n8j3fpl98mmhfanqfzmdl0g3j6wx6"))))
6457 (build-system r-build-system)
6458 (propagated-inputs
6459 (list r-assertthat
6460 r-biocgenerics
6461 r-biostrings
6462 r-dplyr
6463 r-genomeinfodb
6464 r-genomicfeatures
6465 r-genomicranges
6466 r-iranges
6467 r-rlang
6468 r-rtracklayer
6469 r-s4vectors
6470 r-stringr
6471 r-summarizedexperiment
6472 r-variantannotation))
6473 (native-inputs
6474 (list r-knitr))
6475 (home-page "https://bioconductor.org/packages/StructuralVariantAnnotation/")
6476 (synopsis "R package designed to simplify structural variant analysis")
6477 (description
6478 "This package contains useful helper functions for dealing with structural
6479 variants in VCF format. The packages contains functions for parsing VCFs from
6480 a number of popular callers as well as functions for dealing with breakpoints
6481 involving two separate genomic loci encoded as GRanges objects.")
6482 (license license:gpl3)))
6483
6484 (define-public r-summarizedexperiment
6485 (package
6486 (name "r-summarizedexperiment")
6487 (version "1.26.1")
6488 (source (origin
6489 (method url-fetch)
6490 (uri (bioconductor-uri "SummarizedExperiment" version))
6491 (sha256
6492 (base32
6493 "02vlqzmslyijs09jl0gdjxqjjnnl4yqbqqqlb4vb7nr0fspmyz39"))))
6494 (properties
6495 `((upstream-name . "SummarizedExperiment")))
6496 (build-system r-build-system)
6497 (propagated-inputs
6498 (list r-biobase
6499 r-biocgenerics
6500 r-delayedarray
6501 r-genomeinfodb
6502 r-genomicranges
6503 r-iranges
6504 r-matrix
6505 r-matrixgenerics
6506 r-s4vectors))
6507 (native-inputs
6508 (list r-knitr))
6509 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
6510 (synopsis "Container for representing genomic ranges by sample")
6511 (description
6512 "The SummarizedExperiment container contains one or more assays, each
6513 represented by a matrix-like object of numeric or other mode. The rows
6514 typically represent genomic ranges of interest and the columns represent
6515 samples.")
6516 (license license:artistic2.0)))
6517
6518 (define-public r-sva
6519 (package
6520 (name "r-sva")
6521 (version "3.44.0")
6522 (source
6523 (origin
6524 (method url-fetch)
6525 (uri (bioconductor-uri "sva" version))
6526 (sha256
6527 (base32
6528 "0ka259rn0la0hjslj7w24q1dyyh79h84nw6mxp7armqbfjb207a4"))))
6529 (build-system r-build-system)
6530 (propagated-inputs
6531 (list r-edger
6532 r-genefilter
6533 r-mgcv
6534 r-biocparallel
6535 r-matrixstats
6536 r-limma))
6537 (home-page "https://bioconductor.org/packages/sva")
6538 (synopsis "Surrogate variable analysis")
6539 (description
6540 "This package contains functions for removing batch effects and other
6541 unwanted variation in high-throughput experiment. It also contains functions
6542 for identifying and building surrogate variables for high-dimensional data
6543 sets. Surrogate variables are covariates constructed directly from
6544 high-dimensional data like gene expression/RNA sequencing/methylation/brain
6545 imaging data that can be used in subsequent analyses to adjust for unknown,
6546 unmodeled, or latent sources of noise.")
6547 (license license:artistic2.0)))
6548
6549 (define-public r-systempiper
6550 (package
6551 (name "r-systempiper")
6552 (version "2.2.2")
6553 (source
6554 (origin
6555 (method url-fetch)
6556 (uri (bioconductor-uri "systemPipeR" version))
6557 (sha256
6558 (base32
6559 "1yybbff29gwv6rm0nw4yjw73bbl5prfj8gj4zky917smjfd459im"))))
6560 (properties `((upstream-name . "systemPipeR")))
6561 (build-system r-build-system)
6562 (propagated-inputs
6563 (list r-biocgenerics
6564 r-biostrings
6565 r-crayon
6566 r-genomicranges
6567 r-ggplot2
6568 r-htmlwidgets
6569 r-magrittr
6570 r-rsamtools
6571 r-s4vectors
6572 r-shortread
6573 r-stringr
6574 r-summarizedexperiment
6575 r-yaml))
6576 (native-inputs
6577 (list r-knitr))
6578 (home-page "https://github.com/tgirke/systemPipeR")
6579 (synopsis "Next generation sequencing workflow and reporting environment")
6580 (description
6581 "This R package provides tools for building and running automated
6582 end-to-end analysis workflows for a wide range of @dfn{next generation
6583 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
6584 Important features include a uniform workflow interface across different NGS
6585 applications, automated report generation, and support for running both R and
6586 command-line software, such as NGS aligners or peak/variant callers, on local
6587 computers or compute clusters. Efficient handling of complex sample sets and
6588 experimental designs is facilitated by a consistently implemented sample
6589 annotation infrastructure.")
6590 (license license:artistic2.0)))
6591
6592 (define-public r-topgo
6593 (package
6594 (name "r-topgo")
6595 (version "2.48.0")
6596 (source (origin
6597 (method url-fetch)
6598 (uri (bioconductor-uri "topGO" version))
6599 (sha256
6600 (base32
6601 "125r42ymk1irjmwk4sywjkcshs71s26p3zsvryfdvf56k5w162v6"))))
6602 (properties
6603 `((upstream-name . "topGO")))
6604 (build-system r-build-system)
6605 (propagated-inputs
6606 (list r-annotationdbi
6607 r-dbi
6608 r-biobase
6609 r-biocgenerics
6610 r-go-db
6611 r-graph
6612 r-lattice
6613 r-matrixstats
6614 r-sparsem))
6615 (home-page "https://bioconductor.org/packages/topGO")
6616 (synopsis "Enrichment analysis for gene ontology")
6617 (description
6618 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
6619 terms while accounting for the topology of the GO graph. Different test
6620 statistics and different methods for eliminating local similarities and
6621 dependencies between GO terms can be implemented and applied.")
6622 ;; Any version of the LGPL applies.
6623 (license license:lgpl2.1+)))
6624
6625 (define-public r-tximport
6626 (package
6627 (name "r-tximport")
6628 (version "1.24.0")
6629 (source (origin
6630 (method url-fetch)
6631 (uri (bioconductor-uri "tximport" version))
6632 (sha256
6633 (base32
6634 "1cnra82pvwz79a1hkw0phc6aa3v43r5p4nx8xyx5wzmkd7rjkc8x"))))
6635 (build-system r-build-system)
6636 (native-inputs
6637 (list r-knitr))
6638 (home-page "https://bioconductor.org/packages/tximport")
6639 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
6640 (description
6641 "This package provides tools to import transcript-level abundance,
6642 estimated counts and transcript lengths, and to summarize them into matrices
6643 for use with downstream gene-level analysis packages. Average transcript
6644 length, weighted by sample-specific transcript abundance estimates, is
6645 provided as a matrix which can be used as an offset for different expression
6646 of gene-level counts.")
6647 (license license:gpl2+)))
6648
6649 ;; This is a CRAN package, but it depends on a Bioconductor package.
6650 (define-public r-valr
6651 (package
6652 (name "r-valr")
6653 (version "0.6.5")
6654 (source
6655 (origin
6656 (method url-fetch)
6657 (uri (cran-uri "valr" version))
6658 (sha256
6659 (base32
6660 "1674sqclgi4l5r544pjjsblzl1ix2cy961jpkncb3ym47y6c1msw"))))
6661 (build-system r-build-system)
6662 (propagated-inputs
6663 (list r-broom
6664 r-dplyr
6665 r-ggplot2
6666 r-rcpp
6667 r-readr
6668 r-rlang
6669 r-rtracklayer ;bioconductor package
6670 r-stringr
6671 r-tibble))
6672 (native-inputs
6673 (list r-knitr))
6674 (home-page "https://github.com/rnabioco/valr")
6675 (synopsis "Genome interval arithmetic in R")
6676 (description
6677 "This package enables you to read and manipulate genome intervals and
6678 signals. It provides functionality similar to command-line tool suites within
6679 R, enabling interactive analysis and visualization of genome-scale data.")
6680 (license license:expat)))
6681
6682 (define-public r-variantannotation
6683 (package
6684 (name "r-variantannotation")
6685 (version "1.42.1")
6686 (source (origin
6687 (method url-fetch)
6688 (uri (bioconductor-uri "VariantAnnotation" version))
6689 (sha256
6690 (base32
6691 "12d5hkx6pby6l2asyg4jp4jb2x17ybwhqd55rl64h37mwcndbdg1"))))
6692 (properties
6693 `((upstream-name . "VariantAnnotation")))
6694 (propagated-inputs
6695 (list r-annotationdbi
6696 r-biobase
6697 r-biocgenerics
6698 r-biostrings
6699 r-bsgenome
6700 r-dbi
6701 r-genomeinfodb
6702 r-genomicfeatures
6703 r-genomicranges
6704 r-iranges
6705 r-matrixgenerics
6706 r-summarizedexperiment
6707 r-rhtslib
6708 r-rsamtools
6709 r-rtracklayer
6710 r-s4vectors
6711 r-xvector
6712 r-zlibbioc))
6713 (build-system r-build-system)
6714 (home-page "https://bioconductor.org/packages/VariantAnnotation")
6715 (synopsis "Package for annotation of genetic variants")
6716 (description "This R package can annotate variants, compute amino acid
6717 coding changes and predict coding outcomes.")
6718 (license license:artistic2.0)))
6719
6720 (define-public r-vsn
6721 (package
6722 (name "r-vsn")
6723 (version "3.64.0")
6724 (source
6725 (origin
6726 (method url-fetch)
6727 (uri (bioconductor-uri "vsn" version))
6728 (sha256
6729 (base32
6730 "1ja7vdjvgx671l57f9fzfn4vc6q7xzfmqs4krg2rdyfaaf531gqf"))))
6731 (build-system r-build-system)
6732 (propagated-inputs
6733 (list r-affy r-biobase r-ggplot2 r-lattice r-limma))
6734 (native-inputs
6735 (list r-knitr)) ; for vignettes
6736 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
6737 (synopsis "Variance stabilization and calibration for microarray data")
6738 (description
6739 "The package implements a method for normalising microarray intensities,
6740 and works for single- and multiple-color arrays. It can also be used for data
6741 from other technologies, as long as they have similar format. The method uses
6742 a robust variant of the maximum-likelihood estimator for an
6743 additive-multiplicative error model and affine calibration. The model
6744 incorporates data calibration step (a.k.a. normalization), a model for the
6745 dependence of the variance on the mean intensity and a variance stabilizing
6746 data transformation. Differences between transformed intensities are
6747 analogous to \"normalized log-ratios\". However, in contrast to the latter,
6748 their variance is independent of the mean, and they are usually more sensitive
6749 and specific in detecting differential transcription.")
6750 (license license:artistic2.0)))
6751
6752 ;; There is no source tarball, so we fetch the code from the Bioconductor git
6753 ;; repository.
6754 (define-public r-xcir
6755 (let ((commit "3b59d456f2ad7f70285915b036b1dc4279687277")
6756 (revision "1"))
6757 (package
6758 (name "r-xcir")
6759 (version (git-version "1.8.0" revision commit))
6760 (source (origin
6761 (method git-fetch)
6762 (uri (git-reference
6763 (url "https://git.bioconductor.org/packages/XCIR")
6764 (commit commit)))
6765 (file-name (git-file-name name version))
6766 (sha256
6767 (base32
6768 "1xxw5ady5j2p7z7zjxgx7lhm85x7fxbljiv49lc2ghsvh9wm937p"))))
6769 (properties `((upstream-name . "XCIR")))
6770 (build-system r-build-system)
6771 (propagated-inputs (list r-biomart
6772 r-biostrings
6773 r-data-table
6774 r-ggplot2
6775 r-iranges
6776 r-readxl
6777 r-s4vectors
6778 r-seqminer
6779 r-variantannotation))
6780 (native-inputs (list r-knitr))
6781 (home-page "https://github.com/SRenan/XCIR")
6782 (synopsis "Analysis of X chromosome inactivation")
6783 (description
6784 "This package is an R package that offers models and tools for subject
6785 level analysis of @dfn{X chromosome inactivation} (XCI) and XCI-escape
6786 inference.")
6787 (license license:gpl2))))
6788
6789 (define-public r-xina
6790 (package
6791 (name "r-xina")
6792 (version "1.14.0")
6793 (source
6794 (origin
6795 (method url-fetch)
6796 (uri (bioconductor-uri "XINA" version))
6797 (sha256
6798 (base32 "03gf7mqpnwx12kny9fsaskgrw83b0wi2cf1j4dbq46pfxjx34v1g"))))
6799 (properties `((upstream-name . "XINA")))
6800 (build-system r-build-system)
6801 (propagated-inputs
6802 (list r-alluvial
6803 r-ggplot2
6804 r-gridextra
6805 r-igraph
6806 r-mclust
6807 r-plyr
6808 r-stringdb))
6809 (native-inputs (list r-knitr))
6810 (home-page "https://git.bioconductor.org/packages/XINA")
6811 (synopsis "Identifying proteins that exhibit similar patterns")
6812 (description
6813 "The aim of @code{XINA} is to determine which proteins exhibit similar
6814 patterns within and across experimental conditions, since proteins with
6815 co-abundance patterns may have common molecular functions. @code{XINA} imports
6816 multiple datasets, tags dataset in silico, and combines the data for subsequent
6817 subgrouping into multiple clusters. The result is a single output depicting
6818 the variation across all conditions. @code{XINA} not only extracts
6819 coabundance profiles within and across experiments, but also incorporates
6820 protein-protein interaction databases and integrative resources such as
6821 @dfn{Kyoto encyclopedia of genes and genomes} (KEGG) to infer interactors and
6822 molecular functions, respectively, and produces intuitive graphical outputs.")
6823 (license license:gpl3)))
6824
6825 (define-public r-xmapbridge
6826 (package
6827 (name "r-xmapbridge")
6828 (version "1.54.0")
6829 (source
6830 (origin
6831 (method url-fetch)
6832 (uri (bioconductor-uri "xmapbridge" version))
6833 (sha256
6834 (base32 "1n3nxc4jwxf5z32i70sza52nyk29adhp8vc3hac7r5b8mbi6gg10"))))
6835 (properties `((upstream-name . "xmapbridge")))
6836 (build-system r-build-system)
6837 (home-page "https://git.bioconductor.org/packages/xmapbridge")
6838 (synopsis "Display numeric data in the web based genome browser X:MAP")
6839 (description
6840 "The package @code{xmapbridge} can plot graphs in the X:Map genome
6841 browser. X:Map uses the Google Maps API to provide a scrollable view of the
6842 genome. It supports a number of species, and can be accessed at
6843 @url{http://xmap.picr.man.ac.uk}. This package exports plotting files in a
6844 suitable format. Graph plotting in R is done using calls to the functions
6845 @code{xmap.plot} and @code{xmap.points}, which have parameters that aim to be
6846 similar to those used by the standard plot methods in R. These result in data
6847 being written to a set of files (in a specific directory structure) that
6848 contain the data to be displayed, as well as some additional meta-data
6849 describing each of the graphs.")
6850 (license license:lgpl3)))
6851
6852 (define-public r-xvector
6853 (package
6854 (name "r-xvector")
6855 (version "0.36.0")
6856 (source (origin
6857 (method url-fetch)
6858 (uri (bioconductor-uri "XVector" version))
6859 (sha256
6860 (base32
6861 "1f3sbqy279gb9k13l73j00ixywa1havlqy81zx766r1xkz15nvhk"))))
6862 (properties
6863 `((upstream-name . "XVector")))
6864 (build-system r-build-system)
6865 (arguments
6866 `(#:phases
6867 (modify-phases %standard-phases
6868 (add-after 'unpack 'use-system-zlib
6869 (lambda _
6870 (substitute* "DESCRIPTION"
6871 (("zlibbioc, ") ""))
6872 (substitute* "NAMESPACE"
6873 (("import\\(zlibbioc\\)") ""))
6874 #t)))))
6875 (inputs
6876 (list zlib))
6877 (propagated-inputs
6878 (list r-biocgenerics r-iranges r-s4vectors))
6879 (home-page "https://bioconductor.org/packages/XVector")
6880 (synopsis "Representation and manpulation of external sequences")
6881 (description
6882 "This package provides memory efficient S4 classes for storing sequences
6883 \"externally\" (behind an R external pointer, or on disk).")
6884 (license license:artistic2.0)))
6885
6886 (define-public r-zlibbioc
6887 (package
6888 (name "r-zlibbioc")
6889 (version "1.42.0")
6890 (source (origin
6891 (method url-fetch)
6892 (uri (bioconductor-uri "zlibbioc" version))
6893 (sha256
6894 (base32
6895 "0w0y9jixdk6akmasn55g9g0nhlh93hbca5bwx5w1fypnvqrqpxzv"))))
6896 (properties
6897 `((upstream-name . "zlibbioc")))
6898 (build-system r-build-system)
6899 (home-page "https://bioconductor.org/packages/zlibbioc")
6900 (synopsis "Provider for zlib-1.2.5 to R packages")
6901 (description "This package uses the source code of zlib-1.2.5 to create
6902 libraries for systems that do not have these available via other means.")
6903 (license license:artistic2.0)))
6904
6905 (define-public r-zellkonverter
6906 (package
6907 (name "r-zellkonverter")
6908 (version "1.6.5")
6909 (source
6910 (origin
6911 (method url-fetch)
6912 (uri (bioconductor-uri "zellkonverter" version))
6913 (sha256
6914 (base32 "0rxpjkisjj1xjchjjm72k8za5hn48wbdahmbllljvxm5ii6k36k6"))))
6915 (properties `((upstream-name . "zellkonverter")))
6916 (build-system r-build-system)
6917 (propagated-inputs
6918 (list r-basilisk
6919 r-cli
6920 r-delayedarray
6921 r-matrix
6922 r-reticulate
6923 r-s4vectors
6924 r-singlecellexperiment
6925 r-summarizedexperiment))
6926 (native-inputs (list r-knitr))
6927 (home-page "https://github.com/theislab/zellkonverter")
6928 (synopsis "Conversion between AnnData and single-cell experiments objects")
6929 (description
6930 "This package provides methods to convert between Python AnnData objects
6931 and SingleCellExperiment objects. These are primarily intended for use by
6932 downstream Bioconductor packages that wrap Python methods for single-cell data
6933 analysis. It also includes functions to read and write H5AD files used for
6934 saving AnnData objects to disk.")
6935 (license license:expat)))
6936
6937 (define-public r-geneplotter
6938 (package
6939 (name "r-geneplotter")
6940 (version "1.74.0")
6941 (source
6942 (origin
6943 (method url-fetch)
6944 (uri (bioconductor-uri "geneplotter" version))
6945 (sha256
6946 (base32
6947 "13230mzrdralnvf9jp032s16a8mk3kx5476nnvpa4pvcgp1i1ijc"))))
6948 (build-system r-build-system)
6949 (propagated-inputs
6950 (list r-annotate
6951 r-annotationdbi
6952 r-biobase
6953 r-biocgenerics
6954 r-lattice
6955 r-rcolorbrewer))
6956 (home-page "https://bioconductor.org/packages/geneplotter")
6957 (synopsis "Graphics functions for genomic data")
6958 (description
6959 "This package provides functions for plotting genomic data.")
6960 (license license:artistic2.0)))
6961
6962 (define-public r-oligoclasses
6963 (package
6964 (name "r-oligoclasses")
6965 (version "1.58.0")
6966 (source
6967 (origin
6968 (method url-fetch)
6969 (uri (bioconductor-uri "oligoClasses" version))
6970 (sha256
6971 (base32
6972 "1m4x50gl1fm5waa531v7ml0q229q65qn9cgiwnvjg721fvra7mdk"))))
6973 (properties `((upstream-name . "oligoClasses")))
6974 (build-system r-build-system)
6975 (propagated-inputs
6976 (list r-affyio
6977 r-biobase
6978 r-biocgenerics
6979 r-biocmanager
6980 r-biostrings
6981 r-dbi
6982 r-ff
6983 r-foreach
6984 r-genomicranges
6985 r-iranges
6986 r-rsqlite
6987 r-s4vectors
6988 r-summarizedexperiment))
6989 (home-page "https://bioconductor.org/packages/oligoClasses/")
6990 (synopsis "Classes for high-throughput arrays")
6991 (description
6992 "This package contains class definitions, validity checks, and
6993 initialization methods for classes used by the @code{oligo} and @code{crlmm}
6994 packages.")
6995 (license license:gpl2+)))
6996
6997 (define-public r-oligo
6998 (package
6999 (name "r-oligo")
7000 (version "1.60.0")
7001 (source
7002 (origin
7003 (method url-fetch)
7004 (uri (bioconductor-uri "oligo" version))
7005 (sha256
7006 (base32
7007 "0y7j96rafm9b85sxq2483i73685i3j67lk33fn8nfcav6lmsv5vy"))))
7008 (properties `((upstream-name . "oligo")))
7009 (build-system r-build-system)
7010 (inputs (list zlib))
7011 (propagated-inputs
7012 (list r-affxparser
7013 r-affyio
7014 r-biobase
7015 r-biocgenerics
7016 r-biostrings
7017 r-dbi
7018 r-ff
7019 r-oligoclasses
7020 r-preprocesscore
7021 r-rsqlite
7022 r-zlibbioc))
7023 (native-inputs
7024 (list r-knitr))
7025 (home-page "https://bioconductor.org/packages/oligo/")
7026 (synopsis "Preprocessing tools for oligonucleotide arrays")
7027 (description
7028 "This package provides a package to analyze oligonucleotide
7029 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
7030 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
7031 (license license:lgpl2.0+)))
7032
7033 (define-public r-qvalue
7034 (package
7035 (name "r-qvalue")
7036 (version "2.28.0")
7037 (source
7038 (origin
7039 (method url-fetch)
7040 (uri (bioconductor-uri "qvalue" version))
7041 (sha256
7042 (base32
7043 "0cvhm5cldcnnxwa293dig1pj9lvj2hnz9zh4gfr25sw0xlcjzmyw"))))
7044 (build-system r-build-system)
7045 (propagated-inputs
7046 (list r-ggplot2 r-reshape2))
7047 (native-inputs
7048 (list r-knitr))
7049 (home-page "https://github.com/StoreyLab/qvalue")
7050 (synopsis "Q-value estimation for false discovery rate control")
7051 (description
7052 "This package takes a list of p-values resulting from the simultaneous
7053 testing of many hypotheses and estimates their q-values and local @dfn{false
7054 discovery rate} (FDR) values. The q-value of a test measures the proportion
7055 of false positives incurred when that particular test is called significant.
7056 The local FDR measures the posterior probability the null hypothesis is true
7057 given the test's p-value. Various plots are automatically generated, allowing
7058 one to make sensible significance cut-offs. The software can be applied to
7059 problems in genomics, brain imaging, astrophysics, and data mining.")
7060 ;; Any version of the LGPL.
7061 (license license:lgpl3+)))
7062
7063 (define r-rcppnumerical
7064 (package
7065 (name "r-rcppnumerical")
7066 (version "0.4-0")
7067 (source (origin
7068 (method url-fetch)
7069 (uri (cran-uri "RcppNumerical" version))
7070 (sha256
7071 (base32
7072 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
7073 (properties `((upstream-name . "RcppNumerical")))
7074 (build-system r-build-system)
7075 (propagated-inputs
7076 `(("r-rcpp" ,r-rcpp)
7077 ("r-rcppeigen" ,r-rcppeigen)))
7078 (native-inputs
7079 `(("r-knitr" ,r-knitr)))
7080 (home-page "https://github.com/yixuan/RcppNumerical")
7081 (synopsis "Rcpp integration for numerical computing libraries")
7082 (description
7083 "This package provides a collection of libraries for numerical computing
7084 (numerical integration, optimization, etc.) and their integration with
7085 @code{Rcpp}.")
7086 (license license:gpl2+)))
7087
7088 (define-public r-apeglm
7089 (package
7090 (name "r-apeglm")
7091 (version "1.18.0")
7092 (source (origin
7093 (method url-fetch)
7094 (uri (bioconductor-uri "apeglm" version))
7095 (sha256
7096 (base32
7097 "1ppwk4g66x46hpqsfsvhl12398d1srqr47nmp0y2gz212kff0rby"))))
7098 (properties `((upstream-name . "apeglm")))
7099 (build-system r-build-system)
7100 (propagated-inputs
7101 (list r-emdbook
7102 r-genomicranges
7103 r-rcpp
7104 r-rcppeigen
7105 r-rcppnumerical
7106 r-summarizedexperiment))
7107 (native-inputs (list r-knitr))
7108 (home-page "https://bioconductor.org/packages/apeglm")
7109 (synopsis "Approximate posterior estimation for GLM coefficients")
7110 (description "This package provides Bayesian shrinkage estimators for
7111 effect sizes for a variety of GLM models, using approximation of the
7112 posterior for individual coefficients.")
7113 (license license:gpl2)))
7114
7115 (define-public r-greylistchip
7116 (package
7117 (name "r-greylistchip")
7118 (version "1.28.1")
7119 (source (origin
7120 (method url-fetch)
7121 (uri (bioconductor-uri "GreyListChIP" version))
7122 (sha256
7123 (base32
7124 "0w52vwvjarql19bsv40b80yn701qx8c9d0clsjhj85wmzj2p6dhg"))))
7125 (properties `((upstream-name . "GreyListChIP")))
7126 (build-system r-build-system)
7127 (propagated-inputs
7128 (list r-bsgenome
7129 r-genomeinfodb
7130 r-genomicalignments
7131 r-genomicranges
7132 r-mass
7133 r-rsamtools
7134 r-rtracklayer
7135 r-summarizedexperiment))
7136 (home-page "https://bioconductor.org/packages/GreyListChIP")
7137 (synopsis "Greylist artefact regions based on ChIP inputs")
7138 (description "This package identifies regions of ChIP experiments with high
7139 signal in the input, that lead to spurious peaks during peak calling.")
7140 (license license:artistic2.0)))
7141
7142 (define-public r-diffbind
7143 (package
7144 (name "r-diffbind")
7145 (version "3.6.4")
7146 (source
7147 (origin
7148 (method url-fetch)
7149 (uri (bioconductor-uri "DiffBind" version))
7150 (sha256
7151 (base32
7152 "035xczcir4q7yj6x9m3yq3dpvbfas9la925avni8147cwhybagqr"))))
7153 (properties `((upstream-name . "DiffBind")))
7154 (build-system r-build-system)
7155 (propagated-inputs
7156 (list r-amap
7157 r-apeglm
7158 r-ashr
7159 r-biocparallel
7160 r-deseq2
7161 r-dplyr
7162 r-genomicalignments
7163 r-genomicranges
7164 r-ggplot2
7165 r-ggrepel
7166 r-gplots
7167 r-greylistchip
7168 r-iranges
7169 r-lattice
7170 r-limma
7171 r-locfit
7172 r-rcolorbrewer
7173 r-rcpp
7174 r-rhtslib
7175 r-rsamtools
7176 r-s4vectors
7177 r-summarizedexperiment
7178 r-systempiper))
7179 (home-page "https://bioconductor.org/packages/DiffBind")
7180 (synopsis "Differential binding analysis of ChIP-Seq peak data")
7181 (description
7182 "This package computes differentially bound sites from multiple
7183 ChIP-seq experiments using affinity (quantitative) data. Also enables
7184 occupancy (overlap) analysis and plotting functions.")
7185 (license license:artistic2.0)))
7186
7187 (define-public r-ripseeker
7188 (package
7189 (name "r-ripseeker")
7190 (version "1.26.0")
7191 (source
7192 (origin
7193 (method url-fetch)
7194 (uri (bioconductor-uri "RIPSeeker" version))
7195 (sha256
7196 (base32
7197 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
7198 (properties `((upstream-name . "RIPSeeker")))
7199 (build-system r-build-system)
7200 (propagated-inputs
7201 (list r-s4vectors
7202 r-iranges
7203 r-genomicranges
7204 r-summarizedexperiment
7205 r-rsamtools
7206 r-genomicalignments
7207 r-rtracklayer))
7208 (home-page "https://bioconductor.org/packages/RIPSeeker")
7209 (synopsis
7210 "Identifying protein-associated transcripts from RIP-seq experiments")
7211 (description
7212 "This package infers and discriminates RIP peaks from RIP-seq alignments
7213 using two-state HMM with negative binomial emission probability. While
7214 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
7215 a suite of bioinformatics tools integrated within this self-contained software
7216 package comprehensively addressing issues ranging from post-alignments
7217 processing to visualization and annotation.")
7218 (license license:gpl2)))
7219
7220 (define-public r-mbkmeans
7221 (package
7222 (name "r-mbkmeans")
7223 (version "1.12.0")
7224 (source (origin
7225 (method url-fetch)
7226 (uri (bioconductor-uri "mbkmeans" version))
7227 (sha256
7228 (base32
7229 "1f5krzlyqljz763vkp1a50danjn78xhn35s8qqdvzrmwyx0fzphg"))))
7230 (build-system r-build-system)
7231 (native-inputs
7232 (list r-knitr))
7233 (propagated-inputs
7234 (list r-beachmat
7235 r-benchmarkme
7236 r-biocparallel
7237 r-clusterr
7238 r-delayedarray
7239 r-matrix
7240 r-rcpp
7241 r-rcpparmadillo
7242 r-rhdf5lib
7243 r-s4vectors
7244 r-singlecellexperiment
7245 r-summarizedexperiment))
7246 (home-page "https://bioconductor.org/packages/mbkmeans")
7247 (synopsis "Mini-batch k-means clustering for single-cell RNA-seq")
7248 (description "This package implements the mini-batch k-means algorithm for
7249 large datasets, including support for on-disk data representation.")
7250 (license license:expat)))
7251
7252 (define-public r-multtest
7253 (package
7254 (name "r-multtest")
7255 (version "2.52.0")
7256 (source
7257 (origin
7258 (method url-fetch)
7259 (uri (bioconductor-uri "multtest" version))
7260 (sha256
7261 (base32
7262 "037wcmwk1wvhjxgmlvnk289pkwishi1753ajkmy9x14xlmldix82"))))
7263 (build-system r-build-system)
7264 (propagated-inputs
7265 (list r-survival r-biocgenerics r-biobase r-mass))
7266 (home-page "https://bioconductor.org/packages/multtest")
7267 (synopsis "Resampling-based multiple hypothesis testing")
7268 (description
7269 "This package can do non-parametric bootstrap and permutation
7270 resampling-based multiple testing procedures (including empirical Bayes
7271 methods) for controlling the family-wise error rate (FWER), generalized
7272 family-wise error rate (gFWER), tail probability of the proportion of
7273 false positives (TPPFP), and false discovery rate (FDR). Several choices
7274 of bootstrap-based null distribution are implemented (centered, centered
7275 and scaled, quantile-transformed). Single-step and step-wise methods are
7276 available. Tests based on a variety of T- and F-statistics (including
7277 T-statistics based on regression parameters from linear and survival models
7278 as well as those based on correlation parameters) are included. When probing
7279 hypotheses with T-statistics, users may also select a potentially faster null
7280 distribution which is multivariate normal with mean zero and variance
7281 covariance matrix derived from the vector influence function. Results are
7282 reported in terms of adjusted P-values, confidence regions and test statistic
7283 cutoffs. The procedures are directly applicable to identifying differentially
7284 expressed genes in DNA microarray experiments.")
7285 (license license:lgpl3)))
7286
7287 (define-public r-graph
7288 (package
7289 (name "r-graph")
7290 (version "1.74.0")
7291 (source (origin
7292 (method url-fetch)
7293 (uri (bioconductor-uri "graph" version))
7294 (sha256
7295 (base32
7296 "1b8hrjwjg82kicls1496fxfzv75xjvq2k6r9apzsd3qlbyg3ilg4"))))
7297 (build-system r-build-system)
7298 (propagated-inputs
7299 (list r-biocgenerics))
7300 (home-page "https://bioconductor.org/packages/graph")
7301 (synopsis "Handle graph data structures in R")
7302 (description
7303 "This package implements some simple graph handling capabilities for R.")
7304 (license license:artistic2.0)))
7305
7306 ;; This is a CRAN package, but it depends on a Bioconductor package.
7307 (define-public r-ggm
7308 (package
7309 (name "r-ggm")
7310 (version "2.5")
7311 (source
7312 (origin
7313 (method url-fetch)
7314 (uri (cran-uri "ggm" version))
7315 (sha256
7316 (base32
7317 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
7318 (properties `((upstream-name . "ggm")))
7319 (build-system r-build-system)
7320 (propagated-inputs
7321 (list r-graph r-igraph))
7322 (home-page "https://cran.r-project.org/package=ggm")
7323 (synopsis "Functions for graphical Markov models")
7324 (description
7325 "This package provides functions and datasets for maximum likelihood
7326 fitting of some classes of graphical Markov models.")
7327 (license license:gpl2+)))
7328
7329 ;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
7330 (define-public r-perfmeas
7331 (package
7332 (name "r-perfmeas")
7333 (version "1.2.5")
7334 (source
7335 (origin
7336 (method url-fetch)
7337 (uri (cran-uri "PerfMeas" version))
7338 (sha256
7339 (base32
7340 "13yjk0kwpbsqwl056hzf0zj2br1mk4faqcn1whdfxmq348c14hjb"))))
7341 (properties `((upstream-name . "PerfMeas")))
7342 (build-system r-build-system)
7343 (propagated-inputs
7344 (list r-graph r-limma r-rbgl))
7345 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
7346 (synopsis "Performance measures for ranking and classification tasks")
7347 (description
7348 "This package implements different performance measures for
7349 classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
7350 a given recall, F-score for single and multiple classes are available.")
7351 (license license:gpl2+)))
7352
7353 ;; This is a CRAN package, but it depends on a Bioconductor package.
7354 (define-public r-codedepends
7355 (package
7356 (name "r-codedepends")
7357 (version "0.6.5")
7358 (source
7359 (origin
7360 (method url-fetch)
7361 (uri (cran-uri "CodeDepends" version))
7362 (sha256
7363 (base32
7364 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
7365 (properties `((upstream-name . "CodeDepends")))
7366 (build-system r-build-system)
7367 (propagated-inputs
7368 (list r-codetools r-graph r-xml))
7369 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
7370 (synopsis "Analysis of R code for reproducible research and code comprehension")
7371 (description
7372 "This package provides tools for analyzing R expressions or blocks of
7373 code and determining the dependencies between them. It focuses on R scripts,
7374 but can be used on the bodies of functions. There are many facilities
7375 including the ability to summarize or get a high-level view of code,
7376 determining dependencies between variables, code improvement suggestions.")
7377 ;; Any version of the GPL
7378 (license (list license:gpl2+ license:gpl3+))))
7379
7380 (define-public r-chippeakanno
7381 (package
7382 (name "r-chippeakanno")
7383 (version "3.30.1")
7384 (source
7385 (origin
7386 (method url-fetch)
7387 (uri (bioconductor-uri "ChIPpeakAnno" version))
7388 (sha256
7389 (base32
7390 "0a26glldxczcfymjvd45gv5m4hympziivm6wwx4ab9wld7n43l8y"))))
7391 (properties `((upstream-name . "ChIPpeakAnno")))
7392 (build-system r-build-system)
7393 (propagated-inputs
7394 (list r-annotationdbi
7395 r-biocgenerics
7396 r-biomart
7397 r-biostrings
7398 r-dbi
7399 r-dplyr
7400 r-ensembldb
7401 r-genomeinfodb
7402 r-genomicalignments
7403 r-genomicfeatures
7404 r-genomicranges
7405 r-ggplot2
7406 r-graph
7407 r-interactionset
7408 r-iranges
7409 r-keggrest
7410 r-matrixstats
7411 r-multtest
7412 r-rbgl
7413 r-regioner
7414 r-rsamtools
7415 r-rtracklayer
7416 r-s4vectors
7417 r-summarizedexperiment
7418 r-venndiagram))
7419 (native-inputs
7420 (list r-knitr))
7421 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
7422 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
7423 (description
7424 "The package includes functions to retrieve the sequences around the peak,
7425 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
7426 custom features such as most conserved elements and other transcription factor
7427 binding sites supplied by users. Starting 2.0.5, new functions have been added
7428 for finding the peaks with bi-directional promoters with summary statistics
7429 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
7430 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
7431 enrichedGO (addGeneIDs).")
7432 (license license:gpl2+)))
7433
7434 (define-public r-matrixgenerics
7435 (package
7436 (name "r-matrixgenerics")
7437 (version "1.8.1")
7438 (source (origin
7439 (method url-fetch)
7440 (uri (bioconductor-uri "MatrixGenerics" version))
7441 (sha256
7442 (base32
7443 "1liblnpziyyjxzrhdd5d89ilvfqqhbl87h3hsmdm0kwnmc73r37f"))))
7444 (properties
7445 `((upstream-name . "MatrixGenerics")))
7446 (build-system r-build-system)
7447 (propagated-inputs
7448 (list r-matrixstats))
7449 (home-page "https://bioconductor.org/packages/MatrixGenerics")
7450 (synopsis "S4 generic summary statistic functions for matrix-like objects")
7451 (description
7452 "This package provides S4 generic functions modeled after the
7453 @code{matrixStats} API for alternative matrix implementations. Packages with
7454 alternative matrix implementation can depend on this package and implement the
7455 generic functions that are defined here for a useful set of row and column
7456 summary statistics. Other package developers can import this package and
7457 handle a different matrix implementations without worrying about
7458 incompatibilities.")
7459 (license license:artistic2.0)))
7460
7461 (define-public r-marray
7462 (package
7463 (name "r-marray")
7464 (version "1.74.0")
7465 (source (origin
7466 (method url-fetch)
7467 (uri (bioconductor-uri "marray" version))
7468 (sha256
7469 (base32 "0awfz0akz3sylyw1jxhxgadv1rqdzvy9v11933yxkl9a8m9ngm8i"))))
7470 (build-system r-build-system)
7471 (propagated-inputs
7472 (list r-limma))
7473 (home-page "https://bioconductor.org/packages/marray")
7474 (synopsis "Exploratory analysis for two-color spotted microarray data")
7475 (description "This package contains class definitions for two-color spotted
7476 microarray data. It also includes functions for data input, diagnostic plots,
7477 normalization and quality checking.")
7478 (license license:lgpl2.0+)))
7479
7480 (define-public r-cghbase
7481 (package
7482 (name "r-cghbase")
7483 (version "1.56.0")
7484 (source (origin
7485 (method url-fetch)
7486 (uri (bioconductor-uri "CGHbase" version))
7487 (sha256
7488 (base32 "1q8yy60r4g5nyv2gbfdgk192xd73c0rrjr668d5616ddb7sx8wcr"))))
7489 (properties `((upstream-name . "CGHbase")))
7490 (build-system r-build-system)
7491 (propagated-inputs
7492 (list r-biobase r-marray))
7493 (home-page "https://bioconductor.org/packages/CGHbase")
7494 (synopsis "Base functions and classes for arrayCGH data analysis")
7495 (description "This package contains functions and classes that are needed by
7496 the @code{arrayCGH} packages.")
7497 (license license:gpl2+)))
7498
7499 (define-public r-cghcall
7500 (package
7501 (name "r-cghcall")
7502 (version "2.58.0")
7503 (source (origin
7504 (method url-fetch)
7505 (uri (bioconductor-uri "CGHcall" version))
7506 (sha256
7507 (base32 "1qpsibp4gb09sn6fkwwrdjkh3a28lqfbk18c6fvn4m386j96ps65"))))
7508 (properties `((upstream-name . "CGHcall")))
7509 (build-system r-build-system)
7510 (propagated-inputs
7511 (list r-biobase r-cghbase r-impute r-dnacopy r-snowfall))
7512 (home-page "https://bioconductor.org/packages/CGHcall")
7513 (synopsis "Base functions and classes for arrayCGH data analysis")
7514 (description "This package contains functions and classes that are needed by
7515 @code{arrayCGH} packages.")
7516 (license license:gpl2+)))
7517
7518 (define-public r-qdnaseq
7519 (package
7520 (name "r-qdnaseq")
7521 (version "1.32.0")
7522 (source (origin
7523 (method url-fetch)
7524 (uri (bioconductor-uri "QDNAseq" version))
7525 (sha256
7526 (base32 "0s360s72lfn9vjml88gg1m40n61s0dc66ilzgfjdcp65djdxxfvm"))))
7527 (properties `((upstream-name . "QDNAseq")))
7528 (build-system r-build-system)
7529 (propagated-inputs
7530 (list r-biobase
7531 r-cghbase
7532 r-cghcall
7533 r-dnacopy
7534 r-future-apply
7535 r-genomicranges
7536 r-iranges
7537 r-matrixstats
7538 r-r-utils
7539 r-rsamtools))
7540 (home-page "https://bioconductor.org/packages/QDNAseq")
7541 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
7542 (description "The genome is divided into non-overlapping fixed-sized bins,
7543 number of sequence reads in each counted, adjusted with a simultaneous
7544 two-dimensional loess correction for sequence mappability and GC content, and
7545 filtered to remove spurious regions in the genome. Downstream steps of
7546 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
7547 respectively.")
7548 (license license:gpl2+)))
7549
7550 (define-public r-bayseq
7551 (package
7552 (name "r-bayseq")
7553 (version "2.30.0")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (bioconductor-uri "baySeq" version))
7558 (sha256
7559 (base32
7560 "1yqykndyv32s2rk7x86qf410qr0pigc8z4gdkl8vhj4dgyr47n2j"))))
7561 (properties `((upstream-name . "baySeq")))
7562 (build-system r-build-system)
7563 (propagated-inputs
7564 (list r-abind r-edger r-genomicranges))
7565 (home-page "https://bioconductor.org/packages/baySeq/")
7566 (synopsis "Bayesian analysis of differential expression patterns in count data")
7567 (description
7568 "This package identifies differential expression in high-throughput count
7569 data, such as that derived from next-generation sequencing machines,
7570 calculating estimated posterior likelihoods of differential expression (or
7571 more complex hypotheses) via empirical Bayesian methods.")
7572 (license license:gpl3)))
7573
7574 (define-public r-chipcomp
7575 (package
7576 (name "r-chipcomp")
7577 (version "1.26.0")
7578 (source
7579 (origin
7580 (method url-fetch)
7581 (uri (bioconductor-uri "ChIPComp" version))
7582 (sha256
7583 (base32
7584 "06q34y59gf1iz0rs7y5x8ndy1wa95j65rfmz37aym5c46ijqsnq0"))))
7585 (properties `((upstream-name . "ChIPComp")))
7586 (build-system r-build-system)
7587 (propagated-inputs
7588 (list r-biocgenerics
7589 r-bsgenome-hsapiens-ucsc-hg19
7590 r-bsgenome-mmusculus-ucsc-mm9
7591 r-genomeinfodb
7592 r-genomicranges
7593 r-iranges
7594 r-limma
7595 r-rsamtools
7596 r-rtracklayer
7597 r-s4vectors))
7598 (home-page "https://bioconductor.org/packages/ChIPComp")
7599 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
7600 (description
7601 "ChIPComp implements a statistical method for quantitative comparison of
7602 multiple ChIP-seq datasets. It detects differentially bound sharp binding
7603 sites across multiple conditions considering matching control in ChIP-seq
7604 datasets.")
7605 ;; Any version of the GPL.
7606 (license license:gpl3+)))
7607
7608 (define-public r-riboprofiling
7609 (package
7610 (name "r-riboprofiling")
7611 (version "1.26.0")
7612 (source
7613 (origin
7614 (method url-fetch)
7615 (uri (bioconductor-uri "RiboProfiling" version))
7616 (sha256
7617 (base32
7618 "08m4rc530bkzcc43iwzg2fw9cjlf4wc2d8akv5vblsb42xdn8sqp"))))
7619 (properties `((upstream-name . "RiboProfiling")))
7620 (build-system r-build-system)
7621 (propagated-inputs
7622 (list r-biocgenerics
7623 r-biostrings
7624 r-data-table
7625 r-genomeinfodb
7626 r-genomicalignments
7627 r-genomicfeatures
7628 r-genomicranges
7629 r-ggbio
7630 r-ggplot2
7631 r-iranges
7632 r-plyr
7633 r-reshape2
7634 r-rsamtools
7635 r-rtracklayer
7636 r-s4vectors
7637 r-sqldf))
7638 (native-inputs
7639 (list r-knitr))
7640 (home-page "https://bioconductor.org/packages/RiboProfiling/")
7641 (synopsis "Ribosome profiling data analysis")
7642 (description "Starting with a BAM file, this package provides the
7643 necessary functions for quality assessment, read start position recalibration,
7644 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
7645 of count data: pairs, log fold-change, codon frequency and coverage
7646 assessment, principal component analysis on codon coverage.")
7647 (license license:gpl3)))
7648
7649 (define-public r-riboseqr
7650 (package
7651 (name "r-riboseqr")
7652 (version "1.30.0")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (bioconductor-uri "riboSeqR" version))
7657 (sha256
7658 (base32
7659 "1zs3y0icsqrndjp9wwqz3jxysvyc9pch45y49j6g9b5b2l44ma26"))))
7660 (properties `((upstream-name . "riboSeqR")))
7661 (build-system r-build-system)
7662 (propagated-inputs
7663 (list r-abind
7664 r-bayseq
7665 r-genomeinfodb
7666 r-genomicranges
7667 r-iranges
7668 r-rsamtools
7669 r-seqlogo))
7670 (home-page "https://bioconductor.org/packages/riboSeqR/")
7671 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
7672 (description
7673 "This package provides plotting functions, frameshift detection and
7674 parsing of genetic sequencing data from ribosome profiling experiments.")
7675 (license license:gpl3)))
7676
7677 (define-public r-interactionset
7678 (package
7679 (name "r-interactionset")
7680 (version "1.24.0")
7681 (source
7682 (origin
7683 (method url-fetch)
7684 (uri (bioconductor-uri "InteractionSet" version))
7685 (sha256
7686 (base32
7687 "0qjimx25jvm8siq8hmlbf2z6mknzpbq945p06fsj826k57bpcsm5"))))
7688 (properties
7689 `((upstream-name . "InteractionSet")))
7690 (build-system r-build-system)
7691 (propagated-inputs
7692 (list r-biocgenerics
7693 r-genomeinfodb
7694 r-genomicranges
7695 r-iranges
7696 r-matrix
7697 r-rcpp
7698 r-s4vectors
7699 r-summarizedexperiment))
7700 (native-inputs
7701 (list r-knitr))
7702 (home-page "https://bioconductor.org/packages/InteractionSet")
7703 (synopsis "Base classes for storing genomic interaction data")
7704 (description
7705 "This package provides the @code{GInteractions},
7706 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
7707 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
7708 experiments.")
7709 (license license:gpl3)))
7710
7711 (define-public r-genomicinteractions
7712 (package
7713 (name "r-genomicinteractions")
7714 (version "1.30.0")
7715 (source
7716 (origin
7717 (method url-fetch)
7718 (uri (bioconductor-uri "GenomicInteractions" version))
7719 (sha256
7720 (base32
7721 "0aph1hja5vfprxs3jl4zd1inhvih6m3v1p3jkm6w7xpj3jzvmgbx"))))
7722 (properties
7723 `((upstream-name . "GenomicInteractions")))
7724 (build-system r-build-system)
7725 (propagated-inputs
7726 (list r-biobase
7727 r-biocgenerics
7728 r-data-table
7729 r-dplyr
7730 r-genomeinfodb
7731 r-genomicranges
7732 r-ggplot2
7733 r-gridextra
7734 r-gviz
7735 r-igraph
7736 r-interactionset
7737 r-iranges
7738 r-rsamtools
7739 r-rtracklayer
7740 r-s4vectors
7741 r-stringr))
7742 (native-inputs
7743 (list r-knitr))
7744 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
7745 (synopsis "R package for handling genomic interaction data")
7746 (description
7747 "This R package provides tools for handling genomic interaction data,
7748 such as ChIA-PET/Hi-C, annotating genomic features with interaction
7749 information and producing various plots and statistics.")
7750 (license license:gpl3)))
7751
7752 (define-public r-ctc
7753 (package
7754 (name "r-ctc")
7755 (version "1.70.0")
7756 (source
7757 (origin
7758 (method url-fetch)
7759 (uri (bioconductor-uri "ctc" version))
7760 (sha256
7761 (base32
7762 "0c9pgp25dqx12fmi4cqm7xyxjmy6g7wv9vbljgdjghaij2lrc4pb"))))
7763 (build-system r-build-system)
7764 (propagated-inputs (list r-amap))
7765 (home-page "https://bioconductor.org/packages/ctc/")
7766 (synopsis "Cluster and tree conversion")
7767 (description
7768 "This package provides tools for exporting and importing classification
7769 trees and clusters to other programs.")
7770 (license license:gpl2)))
7771
7772 (define-public r-goseq
7773 (package
7774 (name "r-goseq")
7775 (version "1.48.0")
7776 (source
7777 (origin
7778 (method url-fetch)
7779 (uri (bioconductor-uri "goseq" version))
7780 (sha256
7781 (base32
7782 "1w0rwzhqkvp2x7y5v0qcyjbss0p95gb1jrnx5sdkqginbvrmrd48"))))
7783 (build-system r-build-system)
7784 (propagated-inputs
7785 (list r-annotationdbi
7786 r-biasedurn
7787 r-biocgenerics
7788 r-genelendatabase
7789 r-go-db
7790 r-mgcv))
7791 (home-page "https://bioconductor.org/packages/goseq/")
7792 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
7793 (description
7794 "This package provides tools to detect Gene Ontology and/or other user
7795 defined categories which are over/under represented in RNA-seq data.")
7796 (license license:lgpl2.0+)))
7797
7798 (define-public r-glimma
7799 (package
7800 (name "r-glimma")
7801 (version "2.6.0")
7802 (source
7803 (origin
7804 (method url-fetch)
7805 (uri (bioconductor-uri "Glimma" version))
7806 (sha256
7807 (base32
7808 "1k17ay09vhb2hakg1vrgvpp1zliavlj7cdkxaal162bc3v8pyvyz"))))
7809 (properties `((upstream-name . "Glimma")))
7810 (build-system r-build-system)
7811 (propagated-inputs
7812 (list r-deseq2
7813 r-edger
7814 r-htmlwidgets
7815 r-jsonlite
7816 r-limma
7817 r-s4vectors
7818 r-summarizedexperiment))
7819 (native-inputs
7820 (list r-knitr))
7821 (home-page "https://github.com/Shians/Glimma")
7822 (synopsis "Interactive HTML graphics")
7823 (description
7824 "This package generates interactive visualisations for analysis of
7825 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
7826 HTML page. The interactions are built on top of the popular static
7827 representations of analysis results in order to provide additional
7828 information.")
7829 (license license:lgpl3)))
7830
7831 (define-public r-rots
7832 (package
7833 (name "r-rots")
7834 (version "1.24.0")
7835 (source
7836 (origin
7837 (method url-fetch)
7838 (uri (bioconductor-uri "ROTS" version))
7839 (sha256
7840 (base32
7841 "021a578p8kcl5yd9myiy0h2qp10r30ggnip2kp6xs7dx8nzic96r"))))
7842 (properties `((upstream-name . "ROTS")))
7843 (build-system r-build-system)
7844 (propagated-inputs
7845 (list r-biobase r-rcpp))
7846 (home-page "https://bioconductor.org/packages/ROTS/")
7847 (synopsis "Reproducibility-Optimized Test Statistic")
7848 (description
7849 "This package provides tools for calculating the
7850 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
7851 in omics data.")
7852 (license license:gpl2+)))
7853
7854 (define-public r-plgem
7855 (package
7856 (name "r-plgem")
7857 (version "1.68.0")
7858 (source
7859 (origin
7860 (method url-fetch)
7861 (uri (bioconductor-uri "plgem" version))
7862 (sha256
7863 (base32
7864 "07zxflxcay17hxjw3wh5kfdwl2x8537csb18p1qzmyrkvscnja77"))))
7865 (build-system r-build-system)
7866 (propagated-inputs
7867 (list r-biobase r-mass))
7868 (home-page "http://www.genopolis.it")
7869 (synopsis "Detect differential expression in microarray and proteomics datasets")
7870 (description
7871 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
7872 model the variance-versus-mean dependence that exists in a variety of
7873 genome-wide datasets, including microarray and proteomics data. The use of
7874 PLGEM has been shown to improve the detection of differentially expressed
7875 genes or proteins in these datasets.")
7876 (license license:gpl2)))
7877
7878 (define-public r-inspect
7879 (package
7880 (name "r-inspect")
7881 (version "1.26.0")
7882 (source
7883 (origin
7884 (method url-fetch)
7885 (uri (bioconductor-uri "INSPEcT" version))
7886 (sha256
7887 (base32
7888 "0jx887vhxwd8zlqajr9czvn9nx88ryyxlnl58hxrlajjpcjkz9ax"))))
7889 (properties `((upstream-name . "INSPEcT")))
7890 (build-system r-build-system)
7891 (propagated-inputs
7892 (list r-biobase
7893 r-biocgenerics
7894 r-biocparallel
7895 r-deseq2
7896 r-desolve
7897 r-gdata
7898 r-genomeinfodb
7899 r-genomicalignments
7900 r-genomicfeatures
7901 r-genomicranges
7902 r-iranges
7903 r-kernsmooth
7904 r-plgem
7905 r-proc
7906 r-rootsolve
7907 r-rsamtools
7908 r-rtracklayer
7909 r-s4vectors
7910 r-shiny
7911 r-summarizedexperiment
7912 r-txdb-mmusculus-ucsc-mm9-knowngene))
7913 (native-inputs
7914 (list r-knitr))
7915 (home-page "https://bioconductor.org/packages/INSPEcT")
7916 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
7917 (description
7918 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
7919 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
7920 order to evaluate synthesis, processing and degradation rates and assess via
7921 modeling the rates that determines changes in mature mRNA levels.")
7922 (license license:gpl2)))
7923
7924 (define-public r-dnabarcodes
7925 (package
7926 (name "r-dnabarcodes")
7927 (version "1.26.0")
7928 (source
7929 (origin
7930 (method url-fetch)
7931 (uri (bioconductor-uri "DNABarcodes" version))
7932 (sha256
7933 (base32
7934 "0n2qlvpcjhrxr3br27gz9vhwcpf7sn6g4xdjazvvi3gqcgk90xc6"))))
7935 (properties `((upstream-name . "DNABarcodes")))
7936 (build-system r-build-system)
7937 (propagated-inputs
7938 (list r-bh r-matrix r-rcpp))
7939 (native-inputs
7940 (list r-knitr))
7941 (home-page "https://bioconductor.org/packages/DNABarcodes")
7942 (synopsis "Create and analyze DNA barcodes")
7943 (description
7944 "This package offers tools to create DNA barcode sets capable of
7945 correcting insertion, deletion, and substitution errors. Existing barcodes
7946 can be analyzed regarding their minimal, maximal and average distances between
7947 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
7948 demultiplexed, i.e. assigned to their original reference barcode.")
7949 (license license:gpl2)))
7950
7951 (define-public r-ruvseq
7952 (package
7953 (name "r-ruvseq")
7954 (version "1.30.0")
7955 (source
7956 (origin
7957 (method url-fetch)
7958 (uri (bioconductor-uri "RUVSeq" version))
7959 (sha256
7960 (base32
7961 "001h07b074hvj16bjdp9llb9psphw7r6kpwhq61bj4519y6lpg7x"))))
7962 (properties `((upstream-name . "RUVSeq")))
7963 (build-system r-build-system)
7964 (propagated-inputs
7965 (list r-biobase r-edaseq r-edger r-mass))
7966 (native-inputs
7967 (list r-knitr))
7968 (home-page "https://github.com/drisso/RUVSeq")
7969 (synopsis "Remove unwanted variation from RNA-Seq data")
7970 (description
7971 "This package implements methods to @dfn{remove unwanted variation} (RUV)
7972 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
7973 samples.")
7974 (license license:artistic2.0)))
7975
7976 (define-public r-biocneighbors
7977 (package
7978 (name "r-biocneighbors")
7979 (version "1.14.0")
7980 (source
7981 (origin
7982 (method url-fetch)
7983 (uri (bioconductor-uri "BiocNeighbors" version))
7984 (sha256
7985 (base32
7986 "1a43hzmcpxviqa9723hkafr6gm358amfpqj9d56imclkkfkdz95x"))))
7987 (properties `((upstream-name . "BiocNeighbors")))
7988 (build-system r-build-system)
7989 (propagated-inputs
7990 (list r-biocparallel r-matrix r-rcpp r-rcpphnsw r-s4vectors))
7991 (native-inputs
7992 (list r-knitr))
7993 (home-page "https://bioconductor.org/packages/BiocNeighbors")
7994 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
7995 (description
7996 "This package implements exact and approximate methods for nearest
7997 neighbor detection, in a framework that allows them to be easily switched
7998 within Bioconductor packages or workflows. The exact algorithm is implemented
7999 using pre-clustering with the k-means algorithm. Functions are also provided
8000 to search for all neighbors within a given distance. Parallelization is
8001 achieved for all methods using the BiocParallel framework.")
8002 (license license:gpl3)))
8003
8004 (define-public r-scaledmatrix
8005 (package
8006 (name "r-scaledmatrix")
8007 (version "1.4.1")
8008 (source
8009 (origin
8010 (method url-fetch)
8011 (uri (bioconductor-uri "ScaledMatrix" version))
8012 (sha256
8013 (base32
8014 "05gxr41nb1jqhv357rfha4062kszvrmkr36mhkjsf7kgnzf0p8hz"))))
8015 (properties `((upstream-name . "ScaledMatrix")))
8016 (build-system r-build-system)
8017 (propagated-inputs
8018 (list r-delayedarray r-matrix r-s4vectors))
8019 (native-inputs (list r-knitr))
8020 (home-page "https://github.com/LTLA/ScaledMatrix")
8021 (synopsis "Create a DelayedMatrix of scaled and centered values")
8022 (description
8023 "This package provides delayed computation of a matrix of scaled and
8024 centered values. The result is equivalent to using the @code{scale} function
8025 but avoids explicit realization of a dense matrix during block processing.
8026 This permits greater efficiency in common operations, most notably matrix
8027 multiplication.")
8028 (license license:gpl3)))
8029
8030 (define-public r-treeio
8031 (package
8032 (name "r-treeio")
8033 (version "1.20.2")
8034 (source
8035 (origin
8036 (method url-fetch)
8037 (uri (bioconductor-uri "treeio" version))
8038 (sha256
8039 (base32
8040 "1jymbyl82n88ckw0nkbj72rvlxbk5m7xmcmq3fyi885z7aasc0x1"))))
8041 (properties `((upstream-name . "treeio")))
8042 (build-system r-build-system)
8043 (propagated-inputs
8044 (list r-ape
8045 r-dplyr
8046 r-jsonlite
8047 r-magrittr
8048 r-rlang
8049 r-tibble
8050 r-tidytree))
8051 (native-inputs (list r-knitr))
8052 (home-page "https://github.com/YuLab-SMU/treeio")
8053 (synopsis "Base classes and functions for Phylogenetic tree input and output")
8054 (description
8055 "This is an R package to make it easier to import and store phylogenetic
8056 trees with associated data; and to link external data from different sources
8057 to phylogeny. It also supports exporting phylogenetic trees with
8058 heterogeneous associated data to a single tree file and can be served as a
8059 platform for merging tree with associated data and converting file formats.")
8060 (license license:artistic2.0)))
8061
8062 (define-public r-ggtree
8063 (package
8064 (name "r-ggtree")
8065 (version "3.4.4")
8066 (source
8067 (origin
8068 (method url-fetch)
8069 (uri (bioconductor-uri "ggtree" version))
8070 (sha256
8071 (base32
8072 "0h1qlhn4rj7jgd9vrja7lykaglyfvnzwkghvsqj1mvp4niwli7y5"))))
8073 (properties `((upstream-name . "ggtree")))
8074 (build-system r-build-system)
8075 (propagated-inputs
8076 (list r-ape
8077 r-aplot
8078 r-dplyr
8079 r-ggfun
8080 r-ggplot2
8081 r-magrittr
8082 r-purrr
8083 r-rlang
8084 r-scales
8085 r-tidyr
8086 r-tidytree
8087 r-treeio
8088 r-yulab-utils))
8089 (native-inputs (list r-knitr))
8090 (home-page "https://yulab-smu.top/treedata-book/")
8091 (synopsis "R package for visualization of trees and annotation data")
8092 (description
8093 "This package extends the ggplot2 plotting system which implements a
8094 grammar of graphics. ggtree is designed for visualization and annotation of
8095 phylogenetic trees and other tree-like structures with their annotation
8096 data.")
8097 (license license:artistic2.0)))
8098
8099 (define-public r-metapod
8100 (package
8101 (name "r-metapod")
8102 (version "1.4.0")
8103 (source
8104 (origin
8105 (method url-fetch)
8106 (uri (bioconductor-uri "metapod" version))
8107 (sha256
8108 (base32
8109 "19g9c08alg4qqr710si465wlb5dy759m5d8wn91zwj24077dds7b"))))
8110 (properties `((upstream-name . "metapod")))
8111 (build-system r-build-system)
8112 (propagated-inputs
8113 (list r-rcpp))
8114 (native-inputs
8115 (list r-knitr))
8116 (home-page "https://bioconductor.org/packages/metapod")
8117 (synopsis "Meta-analyses on p-values of differential analyses")
8118 (description
8119 "This package implements a variety of methods for combining p-values in
8120 differential analyses of genome-scale datasets. Functions can combine
8121 p-values across different tests in the same analysis (e.g., genomic windows in
8122 ChIP-seq, exons in RNA-seq) or for corresponding tests across separate
8123 analyses (e.g., replicated comparisons, effect of different treatment
8124 conditions). Support is provided for handling log-transformed input p-values,
8125 missing values and weighting where appropriate.")
8126 (license license:gpl3)))
8127
8128 (define-public r-biocsingular
8129 (package
8130 (name "r-biocsingular")
8131 (version "1.12.0")
8132 (source
8133 (origin
8134 (method url-fetch)
8135 (uri (bioconductor-uri "BiocSingular" version))
8136 (sha256
8137 (base32
8138 "1sraycnn0jahpi8kni1y8ik00ga89fvwqjmbr8388968q22mvm3x"))))
8139 (properties `((upstream-name . "BiocSingular")))
8140 (build-system r-build-system)
8141 (propagated-inputs
8142 (list r-beachmat
8143 r-biocgenerics
8144 r-biocparallel
8145 r-delayedarray
8146 r-irlba
8147 r-matrix
8148 r-rcpp
8149 r-rsvd
8150 r-s4vectors
8151 r-scaledmatrix))
8152 (native-inputs
8153 (list r-knitr))
8154 (home-page "https://github.com/LTLA/BiocSingular")
8155 (synopsis "Singular value decomposition for Bioconductor packages")
8156 (description
8157 "This package implements exact and approximate methods for singular value
8158 decomposition and principal components analysis, in a framework that allows
8159 them to be easily switched within Bioconductor packages or workflows. Where
8160 possible, parallelization is achieved using the BiocParallel framework.")
8161 (license license:gpl3)))
8162
8163 (define-public r-destiny
8164 (package
8165 (name "r-destiny")
8166 (version "3.10.0")
8167 (source
8168 (origin
8169 (method url-fetch)
8170 (uri (bioconductor-uri "destiny" version))
8171 (sha256
8172 (base32
8173 "1c85ky5ggdsi0ab1l4ipl85gc1kj1zv3wp08qrvslax3z0yw0ljy"))))
8174 (build-system r-build-system)
8175 (propagated-inputs
8176 (list r-biobase
8177 r-biocgenerics
8178 r-ggplot-multistats
8179 r-ggplot2
8180 r-ggthemes
8181 r-irlba
8182 r-knn-covertree
8183 r-matrix
8184 r-pcamethods
8185 r-proxy
8186 r-rcpp
8187 r-rcppeigen
8188 r-rcpphnsw
8189 r-rspectra
8190 r-scales
8191 r-scatterplot3d
8192 r-singlecellexperiment
8193 r-smoother
8194 r-summarizedexperiment
8195 r-tidyr
8196 r-tidyselect
8197 r-vim))
8198 (native-inputs
8199 (list r-knitr r-nbconvertr)) ; for vignettes
8200 (home-page "https://bioconductor.org/packages/destiny/")
8201 (synopsis "Create and plot diffusion maps")
8202 (description "This package provides tools to create and plot diffusion
8203 maps.")
8204 ;; Any version of the GPL
8205 (license license:gpl3+)))
8206
8207 (define-public r-savr
8208 (package
8209 (name "r-savr")
8210 (version "1.34.0")
8211 (source
8212 (origin
8213 (method url-fetch)
8214 (uri (bioconductor-uri "savR" version))
8215 (sha256
8216 (base32
8217 "04zlf3lyr6vnpj80m6fd2is2f7302sxwih8nzzjnc4ss972jid2k"))))
8218 (properties `((upstream-name . "savR")))
8219 (build-system r-build-system)
8220 (propagated-inputs
8221 (list r-ggplot2 r-gridextra r-reshape2 r-scales r-xml))
8222 (home-page "https://github.com/bcalder/savR")
8223 (synopsis "Parse and analyze Illumina SAV files")
8224 (description
8225 "This package provides tools to parse Illumina Sequence Analysis
8226 Viewer (SAV) files, access data, and generate QC plots.")
8227 (license license:agpl3+)))
8228
8229 (define-public r-chipexoqual
8230 (package
8231 (name "r-chipexoqual")
8232 (version "1.20.0")
8233 (source
8234 (origin
8235 (method url-fetch)
8236 (uri (bioconductor-uri "ChIPexoQual" version))
8237 (sha256
8238 (base32
8239 "1r4s8awvwwj1g33jpnzfxji23mfy0chkhi14i0ml5sh090xijpaz"))))
8240 (properties `((upstream-name . "ChIPexoQual")))
8241 (build-system r-build-system)
8242 (propagated-inputs
8243 (list r-biocparallel
8244 r-biovizbase
8245 r-broom
8246 r-data-table
8247 r-dplyr
8248 r-genomeinfodb
8249 r-genomicalignments
8250 r-genomicranges
8251 r-ggplot2
8252 r-hexbin
8253 r-iranges
8254 r-rcolorbrewer
8255 r-rmarkdown
8256 r-rsamtools
8257 r-s4vectors
8258 r-scales
8259 r-viridis))
8260 (native-inputs
8261 (list r-knitr))
8262 (home-page "https://github.com/keleslab/ChIPexoQual")
8263 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
8264 (description
8265 "This package provides a quality control pipeline for ChIP-exo/nexus
8266 sequencing data.")
8267 (license license:gpl2+)))
8268
8269 (define-public r-copynumber
8270 (package
8271 (name "r-copynumber")
8272 (version "1.36.0")
8273 (source (origin
8274 (method url-fetch)
8275 (uri (bioconductor-uri "copynumber" version))
8276 (sha256
8277 (base32
8278 "1gr8q9ri49x8qlmbsi6k6wcak1w9v48wr1qy7axc86brzx6z6mhd"))))
8279 (build-system r-build-system)
8280 (propagated-inputs
8281 (list r-s4vectors r-iranges r-genomicranges r-biocgenerics))
8282 (home-page "https://bioconductor.org/packages/copynumber")
8283 (synopsis "Segmentation of single- and multi-track copy number data")
8284 (description
8285 "This package segments single- and multi-track copy number data by a
8286 penalized least squares regression method.")
8287 (license license:artistic2.0)))
8288
8289 (define-public r-dnacopy
8290 (package
8291 (name "r-dnacopy")
8292 (version "1.70.0")
8293 (source
8294 (origin
8295 (method url-fetch)
8296 (uri (bioconductor-uri "DNAcopy" version))
8297 (sha256
8298 (base32
8299 "10bh4p8nbl84rfngsm3bi9w542m159kff95f8c2hvjcxv5yw7iwc"))))
8300 (properties `((upstream-name . "DNAcopy")))
8301 (build-system r-build-system)
8302 (native-inputs (list gfortran))
8303 (home-page "https://bioconductor.org/packages/DNAcopy")
8304 (synopsis "DNA copy number data analysis")
8305 (description
8306 "This package implements the @dfn{circular binary segmentation} (CBS)
8307 algorithm to segment DNA copy number data and identify genomic regions with
8308 abnormal copy number.")
8309 (license license:gpl2+)))
8310
8311 ;; This is a CRAN package, but it uncharacteristically depends on a
8312 ;; Bioconductor package.
8313 (define-public r-htscluster
8314 (package
8315 (name "r-htscluster")
8316 (version "2.0.10")
8317 (source
8318 (origin
8319 (method url-fetch)
8320 (uri (cran-uri "HTSCluster" version))
8321 (sha256
8322 (base32
8323 "0scn4fsfmlkzxibfhsh6krm2cl9c8hsmyjgn48k9dyjf0ylyxg9n"))))
8324 (properties `((upstream-name . "HTSCluster")))
8325 (build-system r-build-system)
8326 (propagated-inputs
8327 (list r-capushe r-edger r-plotrix))
8328 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
8329 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
8330 (description
8331 "This package provides a Poisson mixture model is implemented to cluster
8332 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
8333 estimation is performed using either the EM or CEM algorithm, and the slope
8334 heuristics are used for model selection (i.e., to choose the number of
8335 clusters).")
8336 (license license:gpl3+)))
8337
8338 (define-public r-deds
8339 (package
8340 (name "r-deds")
8341 (version "1.60.0")
8342 (source
8343 (origin
8344 (method url-fetch)
8345 (uri (bioconductor-uri "DEDS" version))
8346 (sha256
8347 (base32
8348 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
8349 (properties `((upstream-name . "DEDS")))
8350 (build-system r-build-system)
8351 (home-page "https://bioconductor.org/packages/DEDS/")
8352 (synopsis "Differential expression via distance summary for microarray data")
8353 (description
8354 "This library contains functions that calculate various statistics of
8355 differential expression for microarray data, including t statistics, fold
8356 change, F statistics, SAM, moderated t and F statistics and B statistics. It
8357 also implements a new methodology called DEDS (Differential Expression via
8358 Distance Summary), which selects differentially expressed genes by integrating
8359 and summarizing a set of statistics using a weighted distance approach.")
8360 ;; Any version of the LGPL.
8361 (license license:lgpl3+)))
8362
8363 ;; This is a CRAN package, but since it depends on a Bioconductor package we
8364 ;; put it here.
8365 (define-public r-nbpseq
8366 (package
8367 (name "r-nbpseq")
8368 (version "0.3.1")
8369 (source
8370 (origin
8371 (method url-fetch)
8372 (uri (cran-uri "NBPSeq" version))
8373 (sha256
8374 (base32
8375 "07mnnk4n0cyksp1mw36y6369is62kxsfg3wb8d3dwswycdmj8m14"))))
8376 (properties `((upstream-name . "NBPSeq")))
8377 (build-system r-build-system)
8378 (propagated-inputs
8379 (list r-qvalue))
8380 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
8381 (synopsis "Negative binomial models for RNA-Seq data")
8382 (description
8383 "This package provides negative binomial models for two-group comparisons
8384 and regression inferences from RNA-sequencing data.")
8385 (license license:gpl2)))
8386
8387 (define-public r-ebseq
8388 (package
8389 (name "r-ebseq")
8390 (version "1.36.0")
8391 (source
8392 (origin
8393 (method url-fetch)
8394 (uri (bioconductor-uri "EBSeq" version))
8395 (sha256
8396 (base32
8397 "192xl9fwsh04w563yk33mfl303d1kqby2ssbqkckqsdr4jb7d57y"))))
8398 (properties `((upstream-name . "EBSeq")))
8399 (build-system r-build-system)
8400 (propagated-inputs
8401 (list r-blockmodeling r-gplots r-testthat))
8402 (home-page "https://bioconductor.org/packages/EBSeq")
8403 (synopsis "Differential expression analysis of RNA-seq data")
8404 (description
8405 "This package provides tools for differential expression analysis at both
8406 gene and isoform level using RNA-seq data")
8407 (license license:artistic2.0)))
8408
8409 (define-public r-karyoploter
8410 (package
8411 (name "r-karyoploter")
8412 (version "1.22.0")
8413 (source (origin
8414 (method url-fetch)
8415 (uri (bioconductor-uri "karyoploteR" version))
8416 (sha256
8417 (base32
8418 "0hawq9wi3ikvlcdgnjfy5fiiwfq22zwx1p8xf5h4bpypp96pknsk"))))
8419 (build-system r-build-system)
8420 (propagated-inputs
8421 (list r-annotationdbi
8422 r-bamsignals
8423 r-bezier
8424 r-biovizbase
8425 r-digest
8426 r-genomeinfodb
8427 r-genomicfeatures
8428 r-genomicranges
8429 r-iranges
8430 r-memoise
8431 r-regioner
8432 r-rsamtools
8433 r-rtracklayer
8434 r-s4vectors
8435 r-variantannotation))
8436 (native-inputs
8437 (list r-knitr))
8438 (home-page "https://bioconductor.org/packages/karyoploteR/")
8439 (synopsis "Plot customizable linear genomes displaying arbitrary data")
8440 (description "This package creates karyotype plots of arbitrary genomes and
8441 offers a complete set of functions to plot arbitrary data on them. It mimics
8442 many R base graphics functions coupling them with a coordinate change function
8443 automatically mapping the chromosome and data coordinates into the plot
8444 coordinates.")
8445 (license license:artistic2.0)))
8446
8447 (define-public r-lpsymphony
8448 (package
8449 (name "r-lpsymphony")
8450 (version "1.24.0")
8451 (source
8452 (origin
8453 (method url-fetch)
8454 (uri (bioconductor-uri "lpsymphony" version))
8455 (sha256
8456 (base32
8457 "0kc708ss5byzw8qh439mb4nq6hsfmz73gfamiznw3lv352brd33g"))))
8458 (build-system r-build-system)
8459 (arguments
8460 (list
8461 #:phases
8462 '(modify-phases %standard-phases
8463 (add-after 'unpack 'make-build-order-reproducible
8464 (lambda _
8465 (substitute* '("src/SYMPHONY/Cgl/configure.ac"
8466 "src/SYMPHONY/Cgl/configure")
8467 (("for file in `ls \\*/Makefile.in`")
8468 "for file in `ls */Makefile.in | sort`")))))))
8469 (inputs
8470 (list zlib))
8471 (native-inputs
8472 (list pkg-config r-knitr))
8473 (home-page "https://r-forge.r-project.org/projects/rsymphony")
8474 (synopsis "Symphony integer linear programming solver in R")
8475 (description
8476 "This package was derived from Rsymphony. The package provides an R
8477 interface to SYMPHONY, a linear programming solver written in C++. The main
8478 difference between this package and Rsymphony is that it includes the solver
8479 source code, while Rsymphony expects to find header and library files on the
8480 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
8481 to install interface to SYMPHONY.")
8482 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
8483 ;; lpsimphony is released under the same terms.
8484 (license license:epl1.0)))
8485
8486 (define-public r-ihw
8487 (package
8488 (name "r-ihw")
8489 (version "1.24.0")
8490 (source
8491 (origin
8492 (method url-fetch)
8493 (uri (bioconductor-uri "IHW" version))
8494 (sha256
8495 (base32
8496 "1gsfy75dz7xh16z844llcmjnp0a0ridszmrbbv2bdaa43na5msmf"))))
8497 (properties `((upstream-name . "IHW")))
8498 (build-system r-build-system)
8499 (propagated-inputs
8500 (list r-biocgenerics r-fdrtool r-lpsymphony r-slam))
8501 (native-inputs
8502 (list r-knitr))
8503 (home-page "https://bioconductor.org/packages/IHW")
8504 (synopsis "Independent hypothesis weighting")
8505 (description
8506 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
8507 procedure that increases power compared to the method of Benjamini and
8508 Hochberg by assigning data-driven weights to each hypothesis. The input to
8509 IHW is a two-column table of p-values and covariates. The covariate can be
8510 any continuous-valued or categorical variable that is thought to be
8511 informative on the statistical properties of each hypothesis test, while it is
8512 independent of the p-value under the null hypothesis.")
8513 (license license:artistic2.0)))
8514
8515 (define-public r-icobra
8516 (package
8517 (name "r-icobra")
8518 (version "1.24.1")
8519 (source
8520 (origin
8521 (method url-fetch)
8522 (uri (bioconductor-uri "iCOBRA" version))
8523 (sha256
8524 (base32
8525 "1gvra5bgsf6lvs4f2md3xx7xxsx4j8079c2nr8vz9lvy2sfyl6s9"))))
8526 (properties `((upstream-name . "iCOBRA")))
8527 (build-system r-build-system)
8528 (propagated-inputs
8529 (list r-dplyr
8530 r-dt
8531 r-ggplot2
8532 r-limma
8533 r-markdown
8534 r-reshape2
8535 r-rocr
8536 r-scales
8537 r-shiny
8538 r-shinybs
8539 r-shinydashboard
8540 r-upsetr))
8541 (native-inputs
8542 (list r-knitr))
8543 (home-page "https://bioconductor.org/packages/iCOBRA")
8544 (synopsis "Comparison and visualization of ranking and assignment methods")
8545 (description
8546 "This package provides functions for calculation and visualization of
8547 performance metrics for evaluation of ranking and binary
8548 classification (assignment) methods. It also contains a Shiny application for
8549 interactive exploration of results.")
8550 (license license:gpl2+)))
8551
8552 (define-public r-residualmatrix
8553 (package
8554 (name "r-residualmatrix")
8555 (version "1.6.1")
8556 (source
8557 (origin
8558 (method url-fetch)
8559 (uri (bioconductor-uri "ResidualMatrix" version))
8560 (sha256
8561 (base32
8562 "1530706c7b53h9m8smgnaj63rgdbm3hd09n7jwy6zc0y6qcffckd"))))
8563 (properties
8564 `((upstream-name . "ResidualMatrix")))
8565 (build-system r-build-system)
8566 (propagated-inputs
8567 (list r-delayedarray r-matrix r-s4vectors))
8568 (native-inputs
8569 (list r-knitr))
8570 (home-page "https://github.com/LTLA/ResidualMatrix")
8571 (synopsis "Create a DelayedMatrix of regression residuals")
8572 (description
8573 "This package implements tools for delayed computation of a matrix of
8574 residuals after fitting a linear model to each column of an input matrix. It
8575 also supports partial computation of residuals where selected factors are to
8576 be preserved in the output matrix. It implements a number of efficient
8577 methods for operating on the delayed matrix of residuals, most notably matrix
8578 multiplication and calculation of row/column sums or means.")
8579 (license license:gpl3)))
8580
8581 (define-public r-batchelor
8582 (package
8583 (name "r-batchelor")
8584 (version "1.12.3")
8585 (source
8586 (origin
8587 (method url-fetch)
8588 (uri (bioconductor-uri "batchelor" version))
8589 (sha256
8590 (base32
8591 "00ix3hvhgalxg63qnynv2waa273jk336lg47k72qwxfzimsxfjxc"))))
8592 (properties `((upstream-name . "batchelor")))
8593 (build-system r-build-system)
8594 (propagated-inputs
8595 (list r-beachmat
8596 r-biocgenerics
8597 r-biocneighbors
8598 r-biocparallel
8599 r-biocsingular
8600 r-delayedarray
8601 r-delayedmatrixstats
8602 r-igraph
8603 r-matrix
8604 r-rcpp
8605 r-residualmatrix
8606 r-s4vectors
8607 r-scaledmatrix
8608 r-scuttle
8609 r-singlecellexperiment
8610 r-summarizedexperiment))
8611 (native-inputs (list r-knitr))
8612 (home-page "https://bioconductor.org/packages/batchelor")
8613 (synopsis "Single-Cell Batch Correction Methods")
8614 (description
8615 "This package implements a variety of methods for batch correction of
8616 single-cell (RNA sequencing) data. This includes methods based on detecting
8617 mutually nearest neighbors, as well as several efficient variants of linear
8618 regression of the log-expression values. Functions are also provided to
8619 perform global rescaling to remove differences in depth between batches, and
8620 to perform a principal components analysis that is robust to differences in
8621 the numbers of cells across batches.")
8622 (license license:gpl3)))
8623
8624 (define-public r-mast
8625 (package
8626 (name "r-mast")
8627 (version "1.22.0")
8628 (source
8629 (origin
8630 (method url-fetch)
8631 (uri (bioconductor-uri "MAST" version))
8632 (sha256
8633 (base32
8634 "1kmrqxcfzzcs8l33n9qn0vahc6wxq6ks3cjx95vg96maf2qzhzzi"))))
8635 (properties `((upstream-name . "MAST")))
8636 (build-system r-build-system)
8637 (propagated-inputs
8638 (list r-abind
8639 r-biobase
8640 r-biocgenerics
8641 r-data-table
8642 r-ggplot2
8643 r-plyr
8644 r-progress
8645 r-reshape2
8646 r-s4vectors
8647 r-singlecellexperiment
8648 r-stringr
8649 r-summarizedexperiment))
8650 (native-inputs
8651 (list r-knitr))
8652 (home-page "https://github.com/RGLab/MAST/")
8653 (synopsis "Model-based analysis of single cell transcriptomics")
8654 (description
8655 "This package provides methods and models for handling zero-inflated
8656 single cell assay data.")
8657 (license license:gpl2+)))
8658
8659 (define-public r-monocle
8660 (package
8661 (name "r-monocle")
8662 (version "2.24.1")
8663 (source
8664 (origin
8665 (method url-fetch)
8666 (uri (bioconductor-uri "monocle" version))
8667 (sha256
8668 (base32
8669 "11g1wx0f1yzhg3x1aa3d5l7pqlzxj16s0gha21skxkgld8k2x8xn"))))
8670 (build-system r-build-system)
8671 (propagated-inputs
8672 (list r-biobase
8673 r-biocgenerics
8674 r-biocviews
8675 r-cluster
8676 r-combinat
8677 r-ddrtree
8678 r-dplyr
8679 r-fastica
8680 r-ggplot2
8681 r-hsmmsinglecell
8682 r-igraph
8683 r-irlba
8684 r-leidenbase
8685 r-limma
8686 r-mass
8687 r-matrix
8688 r-matrixstats
8689 r-pheatmap
8690 r-plyr
8691 r-proxy
8692 r-qlcmatrix
8693 r-rann
8694 r-rcpp
8695 r-reshape2
8696 r-rtsne
8697 r-slam
8698 r-stringr
8699 r-tibble
8700 r-vgam
8701 r-viridis))
8702 (native-inputs
8703 (list r-knitr))
8704 (home-page "https://bioconductor.org/packages/monocle")
8705 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
8706 (description
8707 "Monocle performs differential expression and time-series analysis for
8708 single-cell expression experiments. It orders individual cells according to
8709 progress through a biological process, without knowing ahead of time which
8710 genes define progress through that process. Monocle also performs
8711 differential expression analysis, clustering, visualization, and other useful
8712 tasks on single cell expression data. It is designed to work with RNA-Seq and
8713 qPCR data, but could be used with other types as well.")
8714 (license license:artistic2.0)))
8715
8716 (define-public r-leidenbase
8717 (let ((commit "a11b8455fa3307d9e3ac4e3a5accddf3c83b9a96")
8718 (revision "1"))
8719 (package
8720 (name "r-leidenbase")
8721 (version (git-version "0.1.9" revision commit))
8722 (source
8723 (origin
8724 (method git-fetch)
8725 (uri (git-reference
8726 (url "https://github.com/cole-trapnell-lab/leidenbase")
8727 (commit commit)))
8728 (file-name (git-file-name name version))
8729 (sha256
8730 (base32
8731 "1f54mycsffvzmblz5pzgs3v4jygnbvz0c9d3x710gw5mxkq2p84f"))))
8732 (properties `((upstream-name . "leidenbase")))
8733 (build-system r-build-system)
8734 (inputs
8735 (list zlib))
8736 (native-inputs
8737 (list gfortran))
8738 (propagated-inputs
8739 (list r-igraph))
8740 (home-page "https://github.com/cole-trapnell-lab/leidenbase")
8741 (synopsis "R and C wrappers to run the Leiden find_partition function")
8742 (description
8743 "This package provides an R to C interface that runs the Leiden
8744 community detection algorithm to find a basic partition. It runs the
8745 equivalent of the @code{find_partition} function. This package includes the
8746 required source code files from the official Leidenalg distribution and
8747 several functions from the R igraph package.")
8748 (license license:gpl3+))))
8749
8750 (define-public r-sanssouci
8751 ;; sansscouci doesn't have a (versioned) release yet.
8752 ;; This is the latest commit as of packaging for Guix.
8753 (let ((commit "5fe20a9aaf4ac637fa83d9cc73ff1c22de97ca6f")
8754 (revision "1"))
8755 (package
8756 (name "r-sanssouci")
8757 (version (git-version "0" revision commit))
8758 (source (origin
8759 (method git-fetch)
8760 (uri (git-reference
8761 (url "https://github.com/pneuvial/sanssouci.git")
8762 (commit commit)))
8763 (file-name (git-file-name name version))
8764 (sha256
8765 (base32
8766 "13ycdd790qw64qy2zdvcrpj3fc8as628rsly32438d3rifnlc5sk"))))
8767 (build-system r-build-system)
8768 (propagated-inputs
8769 (list r-generics r-matrix r-matrixstats r-rcpp r-rcpparmadillo))
8770 (home-page "https://pneuvial.github.io/sanssouci")
8771 (synopsis "Post Hoc multiple testing inference")
8772 (description
8773 "The goal of sansSouci is to perform post hoc inference: in a multiple
8774 testing context, sansSouci provides statistical guarantees on possibly
8775 user-defined and/or data-driven sets of hypotheses.")
8776 (license license:gpl3))))
8777
8778 (define-public r-monocle3
8779 (package
8780 (name "r-monocle3")
8781 (version "1.0.0")
8782 (source
8783 (origin
8784 (method git-fetch)
8785 (uri (git-reference
8786 (url "https://github.com/cole-trapnell-lab/monocle3")
8787 (commit version)))
8788 (file-name (git-file-name name version))
8789 (sha256
8790 (base32
8791 "16vpvlbms8fdvpfwzcig0rkg2mxnsq1h80d2l7q3953wm91qc9x4"))))
8792 (build-system r-build-system)
8793 (propagated-inputs
8794 (list r-assertthat
8795 r-batchelor
8796 r-biobase
8797 r-biocgenerics
8798 r-delayedmatrixstats
8799 r-dplyr
8800 r-ggplot2
8801 r-ggrepel
8802 r-grr
8803 r-htmlwidgets
8804 r-igraph
8805 r-irlba
8806 r-leidenbase
8807 r-limma
8808 r-lmtest
8809 r-mass
8810 r-matrix
8811 r-matrix-utils
8812 r-pbapply
8813 r-pbmcapply
8814 r-pheatmap
8815 r-plotly
8816 r-pryr
8817 r-proxy
8818 r-pscl
8819 r-purrr
8820 r-rann
8821 r-rcpp
8822 r-rcppparallel
8823 r-reshape2
8824 r-reticulate
8825 r-rhpcblasctl
8826 r-rsample
8827 r-rtsne
8828 r-shiny
8829 r-slam
8830 r-spdep
8831 r-speedglm
8832 r-stringr
8833 r-singlecellexperiment
8834 r-tibble
8835 r-tidyr
8836 r-uwot
8837 r-viridis))
8838 (home-page "https://github.com/cole-trapnell-lab/monocle3")
8839 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
8840 (description
8841 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
8842 (license license:expat)))
8843
8844 (define-public r-noiseq
8845 (package
8846 (name "r-noiseq")
8847 (version "2.40.0")
8848 (source
8849 (origin
8850 (method url-fetch)
8851 (uri (bioconductor-uri "NOISeq" version))
8852 (sha256
8853 (base32
8854 "0ah6adlhv4254jkssinn2ik8n811hd1nw85bnzqk2kwhl49nrk27"))))
8855 (properties `((upstream-name . "NOISeq")))
8856 (build-system r-build-system)
8857 (propagated-inputs
8858 (list r-biobase r-matrix))
8859 (home-page "https://bioconductor.org/packages/NOISeq")
8860 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
8861 (description
8862 "This package provides tools to support the analysis of RNA-seq
8863 expression data or other similar kind of data. It provides exploratory plots
8864 to evaluate saturation, count distribution, expression per chromosome, type of
8865 detected features, features length, etc. It also supports the analysis of
8866 differential expression between two experimental conditions with no parametric
8867 assumptions.")
8868 (license license:artistic2.0)))
8869
8870 (define-public r-scdd
8871 (package
8872 (name "r-scdd")
8873 (version "1.20.0")
8874 (source
8875 (origin
8876 (method url-fetch)
8877 (uri (bioconductor-uri "scDD" version))
8878 (sha256
8879 (base32
8880 "0bjww338z5qf2g97kbh85h9kpagjr59ff9f4alm33h16xz5mb7k0"))))
8881 (properties `((upstream-name . "scDD")))
8882 (build-system r-build-system)
8883 (propagated-inputs
8884 (list r-arm
8885 r-biocparallel
8886 r-ebseq
8887 r-fields
8888 r-ggplot2
8889 r-mclust
8890 r-outliers
8891 r-s4vectors
8892 r-scran
8893 r-singlecellexperiment
8894 r-summarizedexperiment))
8895 (native-inputs
8896 (list r-knitr))
8897 (home-page "https://github.com/kdkorthauer/scDD")
8898 (synopsis "Mixture modeling of single-cell RNA-seq data")
8899 (description
8900 "This package implements a method to analyze single-cell RNA-seq data
8901 utilizing flexible Dirichlet Process mixture models. Genes with differential
8902 distributions of expression are classified into several interesting patterns
8903 of differences between two conditions. The package also includes functions
8904 for simulating data with these patterns from negative binomial
8905 distributions.")
8906 (license license:gpl2)))
8907
8908 (define-public r-scone
8909 (package
8910 (name "r-scone")
8911 (version "1.20.0")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (bioconductor-uri "scone" version))
8916 (sha256
8917 (base32
8918 "05id34n6min03ha1chg5mrvx399qm2mby9kxkaz5w8fbidp97851"))))
8919 (build-system r-build-system)
8920 (propagated-inputs
8921 (list r-aroma-light
8922 r-biocparallel
8923 r-boot
8924 r-class
8925 r-cluster
8926 r-compositions
8927 r-diptest
8928 r-edger
8929 r-fpc
8930 r-gplots
8931 r-hexbin
8932 r-limma
8933 r-matrixgenerics
8934 r-matrixstats
8935 r-mixtools
8936 r-rarpack
8937 r-rcolorbrewer
8938 r-rhdf5
8939 r-ruvseq
8940 r-singlecellexperiment
8941 r-summarizedexperiment))
8942 (native-inputs
8943 (list r-knitr))
8944 (home-page "https://bioconductor.org/packages/scone")
8945 (synopsis "Single cell overview of normalized expression data")
8946 (description
8947 "SCONE is an R package for comparing and ranking the performance of
8948 different normalization schemes for single-cell RNA-seq and other
8949 high-throughput analyses.")
8950 (license license:artistic2.0)))
8951
8952 (define-public r-geoquery
8953 (package
8954 (name "r-geoquery")
8955 (version "2.64.2")
8956 (source
8957 (origin
8958 (method url-fetch)
8959 (uri (bioconductor-uri "GEOquery" version))
8960 (sha256
8961 (base32
8962 "1cvkvq2haz831qi8w0gd3ayvxfxsl0z5klhki4gkfi9xqdv1gi9x"))))
8963 (properties `((upstream-name . "GEOquery")))
8964 (build-system r-build-system)
8965 (propagated-inputs
8966 (list r-biobase
8967 r-curl
8968 r-data-table
8969 r-dplyr
8970 r-limma
8971 r-magrittr
8972 r-r-utils
8973 r-readr
8974 r-tidyr
8975 r-xml2))
8976 (native-inputs
8977 (list r-knitr))
8978 (home-page "https://github.com/seandavi/GEOquery/")
8979 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
8980 (description
8981 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
8982 microarray data. Given the rich and varied nature of this resource, it is
8983 only natural to want to apply BioConductor tools to these data. GEOquery is
8984 the bridge between GEO and BioConductor.")
8985 (license license:gpl2)))
8986
8987 (define-public r-illuminaio
8988 (package
8989 (name "r-illuminaio")
8990 (version "0.38.0")
8991 (source
8992 (origin
8993 (method url-fetch)
8994 (uri (bioconductor-uri "illuminaio" version))
8995 (sha256
8996 (base32
8997 "1xk057a9w4ps8xi8jyw8imkjcicfmzns8g92grn4af7yiip68h62"))))
8998 (build-system r-build-system)
8999 (propagated-inputs
9000 (list r-base64))
9001 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
9002 (synopsis "Parse Illumina microarray output files")
9003 (description
9004 "This package provides tools for parsing Illumina's microarray output
9005 files, including IDAT.")
9006 (license license:gpl2)))
9007
9008 (define-public r-siggenes
9009 (package
9010 (name "r-siggenes")
9011 (version "1.70.0")
9012 (source
9013 (origin
9014 (method url-fetch)
9015 (uri (bioconductor-uri "siggenes" version))
9016 (sha256
9017 (base32
9018 "0amjqm2c8p1vjzx109p7n81wbsbx8rljwn6mbkl7dpi834im9d7l"))))
9019 (build-system r-build-system)
9020 (propagated-inputs
9021 (list r-biobase r-multtest r-scrime))
9022 (home-page "https://bioconductor.org/packages/siggenes/")
9023 (synopsis
9024 "Multiple testing using SAM and Efron's empirical Bayes approaches")
9025 (description
9026 "This package provides tools for the identification of differentially
9027 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
9028 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
9029 Bayes Analyses of Microarrays} (EBAM).")
9030 (license license:lgpl2.0+)))
9031
9032 (define-public r-bumphunter
9033 (package
9034 (name "r-bumphunter")
9035 (version "1.38.0")
9036 (source
9037 (origin
9038 (method url-fetch)
9039 (uri (bioconductor-uri "bumphunter" version))
9040 (sha256
9041 (base32
9042 "0k92ps9chqsimbc7vsr8swg679zfv8nfn5zahbqq4nknhhy7hwxw"))))
9043 (build-system r-build-system)
9044 (propagated-inputs
9045 (list r-annotationdbi
9046 r-biocgenerics
9047 r-dorng
9048 r-foreach
9049 r-genomeinfodb
9050 r-genomicfeatures
9051 r-genomicranges
9052 r-iranges
9053 r-iterators
9054 r-limma
9055 r-locfit
9056 r-matrixstats
9057 r-s4vectors))
9058 (home-page "https://github.com/ririzarr/bumphunter")
9059 (synopsis "Find bumps in genomic data")
9060 (description
9061 "This package provides tools for finding bumps in genomic data in order
9062 to identify differentially methylated regions in epigenetic epidemiology
9063 studies.")
9064 (license license:artistic2.0)))
9065
9066 (define-public r-milor
9067 (package
9068 (name "r-milor")
9069 (version "1.4.0")
9070 (source (origin
9071 (method url-fetch)
9072 (uri (bioconductor-uri "miloR" version))
9073 (sha256
9074 (base32
9075 "1jz9p3grnczx0bpdw6j64x21in8zgm3qy19hmm296har2rx9m5zs"))))
9076 (properties `((upstream-name . "miloR")))
9077 (build-system r-build-system)
9078 (propagated-inputs
9079 (list r-biocgenerics
9080 r-biocneighbors
9081 r-biocparallel
9082 r-biocsingular
9083 r-cowplot
9084 r-dplyr
9085 r-edger
9086 r-ggbeeswarm
9087 r-ggplot2
9088 r-ggraph
9089 r-ggrepel
9090 r-gtools
9091 r-igraph
9092 r-irlba
9093 r-limma
9094 r-matrix
9095 r-matrixstats
9096 r-patchwork
9097 r-rcolorbrewer
9098 r-s4vectors
9099 r-singlecellexperiment
9100 r-stringr
9101 r-summarizedexperiment
9102 r-tibble
9103 r-tidyr))
9104 (native-inputs (list r-knitr))
9105 (home-page "https://marionilab.github.io/miloR")
9106 (synopsis "Differential neighbourhood abundance testing on a graph")
9107 (description
9108 "Milo performs single-cell differential abundance testing. Cell states
9109 are modelled as representative neighbourhoods on a nearest neighbour graph.
9110 Hypothesis testing is performed using a negative bionomial generalized linear
9111 model.")
9112 (license license:gpl3)))
9113
9114 (define-public r-minfi
9115 (package
9116 (name "r-minfi")
9117 (version "1.42.0")
9118 (source
9119 (origin
9120 (method url-fetch)
9121 (uri (bioconductor-uri "minfi" version))
9122 (sha256
9123 (base32
9124 "0255z7w5i5k01w8wn7jkb37h3q7m7vg0szqgk76h330yydnmkrq6"))))
9125 (build-system r-build-system)
9126 (propagated-inputs
9127 (list r-beanplot
9128 r-biobase
9129 r-biocgenerics
9130 r-biocparallel
9131 r-biostrings
9132 r-bumphunter
9133 r-data-table
9134 r-delayedarray
9135 r-delayedmatrixstats
9136 r-genefilter
9137 r-genomeinfodb
9138 r-genomicranges
9139 r-geoquery
9140 r-hdf5array
9141 r-illuminaio
9142 r-iranges
9143 r-lattice
9144 r-limma
9145 r-mass
9146 r-mclust
9147 r-nlme
9148 r-nor1mix
9149 r-preprocesscore
9150 r-quadprog
9151 r-rcolorbrewer
9152 r-reshape
9153 r-s4vectors
9154 r-siggenes
9155 r-summarizedexperiment))
9156 (native-inputs
9157 (list r-knitr))
9158 (home-page "https://github.com/hansenlab/minfi")
9159 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
9160 (description
9161 "This package provides tools to analyze and visualize Illumina Infinium
9162 methylation arrays.")
9163 (license license:artistic2.0)))
9164
9165 (define-public r-methylumi
9166 (package
9167 (name "r-methylumi")
9168 (version "2.42.0")
9169 (source
9170 (origin
9171 (method url-fetch)
9172 (uri (bioconductor-uri "methylumi" version))
9173 (sha256
9174 (base32
9175 "0klkinq55lfj1d4z8gkrv98849079x1l5gd15habw7jq9xxvhjww"))))
9176 (build-system r-build-system)
9177 (propagated-inputs
9178 (list r-annotate
9179 r-annotationdbi
9180 r-biobase
9181 r-biocgenerics
9182 r-fdb-infiniummethylation-hg19
9183 r-genefilter
9184 r-genomeinfodb
9185 r-genomicfeatures
9186 r-genomicranges
9187 r-ggplot2
9188 r-illuminaio
9189 r-iranges
9190 r-lattice
9191 r-matrixstats
9192 r-minfi
9193 r-reshape2
9194 r-s4vectors
9195 r-scales
9196 r-summarizedexperiment))
9197 (native-inputs
9198 (list r-knitr))
9199 (home-page "https://bioconductor.org/packages/methylumi")
9200 (synopsis "Handle Illumina methylation data")
9201 (description
9202 "This package provides classes for holding and manipulating Illumina
9203 methylation data. Based on eSet, it can contain MIAME information, sample
9204 information, feature information, and multiple matrices of data. An
9205 \"intelligent\" import function, methylumiR can read the Illumina text files
9206 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
9207 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
9208 background correction, and quality control features for GoldenGate, Infinium,
9209 and Infinium HD arrays are also included.")
9210 (license license:gpl2)))
9211
9212 (define-public r-lumi
9213 (package
9214 (name "r-lumi")
9215 (version "2.48.0")
9216 (source
9217 (origin
9218 (method url-fetch)
9219 (uri (bioconductor-uri "lumi" version))
9220 (sha256
9221 (base32
9222 "06zmll5j1yymsm3byarhllrz4q1w5mzv267a9g6visn73wan8y9d"))))
9223 (build-system r-build-system)
9224 (propagated-inputs
9225 (list r-affy
9226 r-annotate
9227 r-annotationdbi
9228 r-biobase
9229 r-dbi
9230 r-genomicfeatures
9231 r-genomicranges
9232 r-kernsmooth
9233 r-lattice
9234 r-mass
9235 r-methylumi
9236 r-mgcv
9237 r-nleqslv
9238 r-preprocesscore
9239 r-rsqlite))
9240 (home-page "https://bioconductor.org/packages/lumi")
9241 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
9242 (description
9243 "The lumi package provides an integrated solution for the Illumina
9244 microarray data analysis. It includes functions of Illumina
9245 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
9246 variance stabilization, normalization and gene annotation at the probe level.
9247 It also includes the functions of processing Illumina methylation microarrays,
9248 especially Illumina Infinium methylation microarrays.")
9249 (license license:lgpl2.0+)))
9250
9251 (define-public r-linnorm
9252 (package
9253 (name "r-linnorm")
9254 (version "2.20.0")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (bioconductor-uri "Linnorm" version))
9259 (sha256
9260 (base32
9261 "1002lllgns5klv3q2wsikkbypa2bafpka7a8mri0y5bfxncfr2zb"))))
9262 (properties `((upstream-name . "Linnorm")))
9263 (build-system r-build-system)
9264 (propagated-inputs
9265 (list r-amap
9266 r-apcluster
9267 r-ellipse
9268 r-fastcluster
9269 r-fpc
9270 r-ggdendro
9271 r-ggplot2
9272 r-gmodels
9273 r-igraph
9274 r-limma
9275 r-mass
9276 r-mclust
9277 r-rcpp
9278 r-rcpparmadillo
9279 r-rtsne
9280 r-statmod
9281 r-vegan
9282 r-zoo))
9283 (native-inputs
9284 (list r-knitr))
9285 (home-page "http://www.jjwanglab.org/Linnorm/")
9286 (synopsis "Linear model and normality based transformation method")
9287 (description
9288 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
9289 count data or any large scale count data. It transforms such datasets for
9290 parametric tests. In addition to the transformtion function (@code{Linnorm}),
9291 the following pipelines are implemented:
9292
9293 @enumerate
9294 @item Library size/batch effect normalization (@code{Linnorm.Norm})
9295 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
9296 clustering or hierarchical clustering (@code{Linnorm.tSNE},
9297 @code{Linnorm.PCA}, @code{Linnorm.HClust})
9298 @item Differential expression analysis or differential peak detection using
9299 limma (@code{Linnorm.limma})
9300 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
9301 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
9302 @item Stable gene selection for scRNA-seq data; for users without or who do
9303 not want to rely on spike-in genes (@code{Linnorm.SGenes})
9304 @item Data imputation (@code{Linnorm.DataImput}).
9305 @end enumerate
9306
9307 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
9308 @code{RnaXSim} function is included for simulating RNA-seq data for the
9309 evaluation of DEG analysis methods.")
9310 (license license:expat)))
9311
9312 (define-public r-ioniser
9313 (package
9314 (name "r-ioniser")
9315 (version "2.20.0")
9316 (source
9317 (origin
9318 (method url-fetch)
9319 (uri (bioconductor-uri "IONiseR" version))
9320 (sha256
9321 (base32
9322 "0cgx1dcfh617l9vr4r3ky8w7f0snl0vpavfd9n1h5n68p0p42dwi"))))
9323 (properties `((upstream-name . "IONiseR")))
9324 (build-system r-build-system)
9325 (propagated-inputs
9326 (list r-biocgenerics
9327 r-biocparallel
9328 r-biostrings
9329 r-bit64
9330 r-dplyr
9331 r-ggplot2
9332 r-magrittr
9333 r-rhdf5
9334 r-shortread
9335 r-stringr
9336 r-tibble
9337 r-tidyr
9338 r-xvector))
9339 (native-inputs
9340 (list r-knitr))
9341 (home-page "https://bioconductor.org/packages/IONiseR/")
9342 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
9343 (description
9344 "IONiseR provides tools for the quality assessment of Oxford Nanopore
9345 MinION data. It extracts summary statistics from a set of fast5 files and can
9346 be used either before or after base calling. In addition to standard
9347 summaries of the read-types produced, it provides a number of plots for
9348 visualising metrics relative to experiment run time or spatially over the
9349 surface of a flowcell.")
9350 (license license:expat)))
9351
9352 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
9353 (define-public r-mutoss
9354 (package
9355 (name "r-mutoss")
9356 (version "0.1-12")
9357 (source
9358 (origin
9359 (method url-fetch)
9360 (uri (cran-uri "mutoss" version))
9361 (sha256
9362 (base32
9363 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
9364 (properties `((upstream-name . "mutoss")))
9365 (build-system r-build-system)
9366 (propagated-inputs
9367 (list r-multcomp r-multtest r-mvtnorm r-plotrix))
9368 (home-page "https://github.com/kornl/mutoss/")
9369 (synopsis "Unified multiple testing procedures")
9370 (description
9371 "This package is designed to ease the application and comparison of
9372 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
9373 are standardized and usable by the accompanying mutossGUI package.")
9374 ;; Any version of the GPL.
9375 (license (list license:gpl2+ license:gpl3+))))
9376
9377 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
9378 ;; from Bioconductor, so we put it here.
9379 (define-public r-metap
9380 (package
9381 (name "r-metap")
9382 (version "1.8")
9383 (source
9384 (origin
9385 (method url-fetch)
9386 (uri (cran-uri "metap" version))
9387 (sha256
9388 (base32
9389 "0asmypxfxly4xmcjf3yzid5zqlzg88z0brij2splfk4avsl035gf"))))
9390 (build-system r-build-system)
9391 (propagated-inputs
9392 (list r-lattice
9393 r-mathjaxr
9394 r-mutoss
9395 r-qqconf
9396 r-rdpack
9397 r-tfisher))
9398 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
9399 (synopsis "Meta-analysis of significance values")
9400 (description
9401 "The canonical way to perform meta-analysis involves using effect sizes.
9402 When they are not available this package provides a number of methods for
9403 meta-analysis of significance values including the methods of Edgington,
9404 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
9405 published results; and a routine for graphical display.")
9406 (license license:gpl2)))
9407
9408 (define-public r-tradeseq
9409 (package
9410 (name "r-tradeseq")
9411 (version "1.10.0")
9412 (source (origin
9413 (method url-fetch)
9414 (uri (bioconductor-uri "tradeSeq" version))
9415 (sha256
9416 (base32
9417 "0v9nqxrwa69qhmyaicn2vvs8haha4kzs93iqim306331vadp9qm0"))))
9418 (build-system r-build-system)
9419 (propagated-inputs
9420 (list r-biobase
9421 r-biocparallel
9422 r-edger
9423 r-ggplot2
9424 r-igraph
9425 r-magrittr
9426 r-mass
9427 r-matrix
9428 r-matrixstats
9429 r-mgcv
9430 r-pbapply
9431 r-princurve
9432 r-rcolorbrewer
9433 r-s4vectors
9434 r-singlecellexperiment
9435 r-slingshot
9436 r-summarizedexperiment
9437 r-tibble
9438 r-trajectoryutils
9439 r-viridis))
9440 (native-inputs
9441 (list r-knitr))
9442 (home-page "https://statomics.github.io/tradeSeq/index.html")
9443 (synopsis "Trajectory-based differential expression analysis")
9444 (description
9445 "This package provides a flexible method for fitting regression models that
9446 can be used to find genes that are differentially expressed along one or
9447 multiple lineages in a trajectory. Based on the fitted models, it uses a
9448 variety of tests suited to answer different questions of interest, e.g. the
9449 discovery of genes for which expression is associated with pseudotime, or which
9450 are differentially expressed (in a specific region) along the trajectory. It
9451 fits a negative binomial generalized additive model (GAM) for each gene, and
9452 performs inference on the parameters of the GAM.")
9453 (license license:expat)))
9454
9455 (define-public r-triform
9456 (package
9457 (name "r-triform")
9458 (version "1.29.0")
9459 (source
9460 (origin
9461 (method url-fetch)
9462 (uri (bioconductor-uri "triform" version))
9463 (sha256
9464 (base32
9465 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
9466 (build-system r-build-system)
9467 (propagated-inputs
9468 (list r-biocgenerics r-iranges r-yaml))
9469 (home-page "https://bioconductor.org/packages/triform/")
9470 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
9471 (description
9472 "The Triform algorithm uses model-free statistics to identify peak-like
9473 distributions of TF ChIP sequencing reads, taking advantage of an improved
9474 peak definition in combination with known profile characteristics.")
9475 (license license:gpl2)))
9476
9477 (define-public r-varianttools
9478 (package
9479 (name "r-varianttools")
9480 (version "1.38.0")
9481 (source
9482 (origin
9483 (method url-fetch)
9484 (uri (bioconductor-uri "VariantTools" version))
9485 (sha256
9486 (base32
9487 "18nxcamfgnw4n2ab0czxglw0sqc9wzdqzpjv43lcyyal23lzzsix"))))
9488 (properties `((upstream-name . "VariantTools")))
9489 (build-system r-build-system)
9490 (propagated-inputs
9491 (list r-biobase
9492 r-biocgenerics
9493 r-biocparallel
9494 r-biostrings
9495 r-bsgenome
9496 r-genomeinfodb
9497 r-genomicfeatures
9498 r-genomicranges
9499 r-iranges
9500 r-matrix
9501 r-rsamtools
9502 r-rtracklayer
9503 r-s4vectors
9504 r-variantannotation))
9505 (home-page "https://bioconductor.org/packages/VariantTools/")
9506 (synopsis "Tools for exploratory analysis of variant calls")
9507 (description
9508 "Explore, diagnose, and compare variant calls using filters. The
9509 VariantTools package supports a workflow for loading data, calling single
9510 sample variants and tumor-specific somatic mutations or other sample-specific
9511 variant types (e.g., RNA editing). Most of the functions operate on
9512 alignments (BAM files) or datasets of called variants. The user is expected
9513 to have already aligned the reads with a separate tool, e.g., GSNAP via
9514 gmapR.")
9515 (license license:artistic2.0)))
9516
9517 (define-public r-heatplus
9518 (package
9519 (name "r-heatplus")
9520 (version "3.4.0")
9521 (source
9522 (origin
9523 (method url-fetch)
9524 (uri (bioconductor-uri "Heatplus" version))
9525 (sha256
9526 (base32
9527 "0b1mzxysmrqinp93p587apna8p0llmawblwj93icydqxxm2jkhb1"))))
9528 (properties `((upstream-name . "Heatplus")))
9529 (build-system r-build-system)
9530 (propagated-inputs
9531 (list r-rcolorbrewer))
9532 (home-page "https://github.com/alexploner/Heatplus")
9533 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
9534 (description
9535 "This package provides tools to display a rectangular heatmap (intensity
9536 plot) of a data matrix. By default, both samples (columns) and features (row)
9537 of the matrix are sorted according to a hierarchical clustering, and the
9538 corresponding dendrogram is plotted. Optionally, panels with additional
9539 information about samples and features can be added to the plot.")
9540 (license license:gpl2+)))
9541
9542 (define-public r-gosemsim
9543 (package
9544 (name "r-gosemsim")
9545 (version "2.22.0")
9546 (source
9547 (origin
9548 (method url-fetch)
9549 (uri (bioconductor-uri "GOSemSim" version))
9550 (sha256
9551 (base32
9552 "1hp15pzd0m0g9f8kglyfsgjqxnvxcmm9022xnsrkzfvmj2yw14vd"))))
9553 (properties `((upstream-name . "GOSemSim")))
9554 (build-system r-build-system)
9555 (propagated-inputs
9556 (list r-annotationdbi r-go-db r-rcpp))
9557 (native-inputs
9558 (list r-knitr))
9559 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
9560 (synopsis "GO-terms semantic similarity measures")
9561 (description
9562 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
9563 quantitative ways to compute similarities between genes and gene groups, and
9564 have became important basis for many bioinformatics analysis approaches.
9565 GOSemSim is an R package for semantic similarity computation among GO terms,
9566 sets of GO terms, gene products and gene clusters.")
9567 (license license:artistic2.0)))
9568
9569 (define-public r-anota
9570 (package
9571 (name "r-anota")
9572 (version "1.44.0")
9573 (source
9574 (origin
9575 (method url-fetch)
9576 (uri (bioconductor-uri "anota" version))
9577 (sha256
9578 (base32
9579 "1x75r5znl8jllqsgzpxsqj62ch11bpwhmyzmbjmb8sz8f8ww923c"))))
9580 (build-system r-build-system)
9581 (propagated-inputs
9582 (list r-multtest r-qvalue))
9583 (home-page "https://bioconductor.org/packages/anota/")
9584 (synopsis "Analysis of translational activity")
9585 (description
9586 "Genome wide studies of translational control is emerging as a tool to
9587 study various biological conditions. The output from such analysis is both
9588 the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
9589 involved in translation (the actively translating mRNA level) for each mRNA.
9590 The standard analysis of such data strives towards identifying differential
9591 translational between two or more sample classes - i.e., differences in
9592 actively translated mRNA levels that are independent of underlying differences
9593 in cytosolic mRNA levels. This package allows for such analysis using partial
9594 variances and the random variance model. As 10s of thousands of mRNAs are
9595 analyzed in parallel the library performs a number of tests to assure that
9596 the data set is suitable for such analysis.")
9597 (license license:gpl3)))
9598
9599 (define-public r-sigpathway
9600 (package
9601 (name "r-sigpathway")
9602 (version "1.64.0")
9603 (source
9604 (origin
9605 (method url-fetch)
9606 (uri (bioconductor-uri "sigPathway" version))
9607 (sha256
9608 (base32
9609 "1c2kwhbxgf66az7ssm2mab9n5x59zy4kxq8vblz5r9636xqaysif"))))
9610 (properties `((upstream-name . "sigPathway")))
9611 (build-system r-build-system)
9612 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
9613 (synopsis "Pathway analysis")
9614 (description
9615 "This package is used to conduct pathway analysis by calculating the NT_k
9616 and NE_k statistics in a statistical framework for determining whether a
9617 specified group of genes for a pathway has a coordinated association with a
9618 phenotype of interest.")
9619 (license license:gpl2)))
9620
9621 (define-public r-fcscan
9622 (package
9623 (name "r-fcscan")
9624 (version "1.10.0")
9625 (source
9626 (origin
9627 (method url-fetch)
9628 (uri (bioconductor-uri "fcScan" version))
9629 (sha256
9630 (base32 "0yv7ifw0xxx1v9z8dxszv0cb72q3frd74dyxfbvrcs6x9y9v3jzp"))))
9631 (properties `((upstream-name . "fcScan")))
9632 (build-system r-build-system)
9633 (propagated-inputs
9634 (list r-doparallel
9635 r-foreach
9636 r-genomicranges
9637 r-iranges
9638 r-plyr
9639 r-rtracklayer
9640 r-summarizedexperiment
9641 r-variantannotation))
9642 (native-inputs (list r-knitr))
9643 (home-page "https://bioconductor.org/packages/fcScan")
9644 (synopsis "Detect clusters of coordinates with user defined options")
9645 (description
9646 "This package is used to detect combination of genomic coordinates
9647 falling within a user defined window size along with user defined overlap
9648 between identified neighboring clusters. It can be used for genomic data
9649 where the clusters are built on a specific chromosome or specific strand.
9650 Clustering can be performed with a \"greedy\" option allowing thus the
9651 presence of additional sites within the allowed window size.")
9652 (license license:artistic2.0)))
9653
9654 (define-public r-fgsea
9655 (package
9656 (name "r-fgsea")
9657 (version "1.22.0")
9658 (source
9659 (origin
9660 (method url-fetch)
9661 (uri (bioconductor-uri "fgsea" version))
9662 (sha256
9663 (base32
9664 "0innyggai6l4fpl4qrblzdc52vqw9jaszmip0yr1lv7rzwyl6mpg"))))
9665 (build-system r-build-system)
9666 (propagated-inputs
9667 (list r-bh
9668 r-biocparallel
9669 r-data-table
9670 r-fastmatch
9671 r-ggplot2
9672 r-gridextra
9673 r-matrix
9674 r-rcpp))
9675 (native-inputs
9676 (list r-knitr))
9677 (home-page "https://github.com/ctlab/fgsea/")
9678 (synopsis "Fast gene set enrichment analysis")
9679 (description
9680 "The package implements an algorithm for fast gene set enrichment
9681 analysis. Using the fast algorithm makes more permutations and gets
9682 more fine grained p-values, which allows using accurate standard approaches
9683 to multiple hypothesis correction.")
9684 (license license:expat)))
9685
9686 (define-public r-dose
9687 (package
9688 (name "r-dose")
9689 (version "3.22.1")
9690 (source
9691 (origin
9692 (method url-fetch)
9693 (uri (bioconductor-uri "DOSE" version))
9694 (sha256
9695 (base32
9696 "1mch26kddrhhzgi4bssnyy7bvdhprrncmvxl6zn1cq7g07p5765i"))))
9697 (properties `((upstream-name . "DOSE")))
9698 (build-system r-build-system)
9699 (propagated-inputs
9700 (list r-annotationdbi
9701 r-biocparallel
9702 r-do-db
9703 r-fgsea
9704 r-ggplot2
9705 r-gosemsim
9706 r-qvalue
9707 r-reshape2))
9708 (native-inputs
9709 (list r-knitr))
9710 (home-page "https://guangchuangyu.github.io/software/DOSE/")
9711 (synopsis "Disease ontology semantic and enrichment analysis")
9712 (description
9713 "This package implements five methods proposed by Resnik, Schlicker,
9714 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
9715 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
9716 including hypergeometric model and gene set enrichment analysis are also
9717 implemented for discovering disease associations of high-throughput biological
9718 data.")
9719 (license license:artistic2.0)))
9720
9721 (define-public r-enrichplot
9722 (package
9723 (name "r-enrichplot")
9724 (version "1.16.2")
9725 (source
9726 (origin
9727 (method url-fetch)
9728 (uri (bioconductor-uri "enrichplot" version))
9729 (sha256
9730 (base32
9731 "0qh7bci3rn6y2fl45izrdb62jcm6j0zxxg4pyp4mvvgjvka5lnss"))))
9732 (build-system r-build-system)
9733 (propagated-inputs
9734 (list r-aplot
9735 r-dose
9736 r-ggplot2
9737 r-ggraph
9738 r-ggtree
9739 r-gosemsim
9740 r-igraph
9741 r-magrittr
9742 r-plyr
9743 r-purrr
9744 r-rcolorbrewer
9745 r-reshape2
9746 r-scatterpie
9747 r-shadowtext
9748 r-yulab-utils))
9749 (native-inputs
9750 (list r-knitr))
9751 (home-page "https://github.com/GuangchuangYu/enrichplot")
9752 (synopsis "Visualization of functional enrichment result")
9753 (description
9754 "The enrichplot package implements several visualization methods for
9755 interpreting functional enrichment results obtained from ORA or GSEA analyses.
9756 All the visualization methods are developed based on ggplot2 graphics.")
9757 (license license:artistic2.0)))
9758
9759 (define-public r-clusterprofiler
9760 (package
9761 (name "r-clusterprofiler")
9762 (version "4.4.4")
9763 (source
9764 (origin
9765 (method url-fetch)
9766 (uri (bioconductor-uri "clusterProfiler" version))
9767 (sha256
9768 (base32
9769 "0k5jhry0j6wa7779n3hrw4ld4bvyahpgpbwi2a0g704m3dd3mqp5"))))
9770 (properties
9771 `((upstream-name . "clusterProfiler")))
9772 (build-system r-build-system)
9773 (propagated-inputs
9774 (list r-annotationdbi
9775 r-dose
9776 r-downloader
9777 r-dplyr
9778 r-enrichplot
9779 r-go-db
9780 r-gosemsim
9781 r-magrittr
9782 r-plyr
9783 r-qvalue
9784 r-rlang
9785 r-tidyr
9786 r-yulab-utils))
9787 (native-inputs
9788 (list r-knitr))
9789 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
9790 (synopsis "Analysis and visualization of functional profiles for gene clusters")
9791 (description
9792 "This package implements methods to analyze and visualize functional
9793 profiles (GO and KEGG) of gene and gene clusters.")
9794 (license license:artistic2.0)))
9795
9796 (define-public r-clusterexperiment
9797 (package
9798 (name "r-clusterexperiment")
9799 (version "2.16.0")
9800 (source (origin
9801 (method url-fetch)
9802 (uri (bioconductor-uri "clusterExperiment" version))
9803 (sha256
9804 (base32
9805 "1xd2kxmdg51hhj0zvz7pxmpdvb1sya7prsf9ny2wj2y8ivrqgn4f"))))
9806 (build-system r-build-system)
9807 (native-inputs
9808 (list r-knitr))
9809 (propagated-inputs
9810 (list r-ape
9811 r-biocgenerics
9812 r-biocsingular
9813 r-cluster
9814 r-delayedarray
9815 r-edger
9816 r-hdf5array
9817 r-howmany
9818 r-kernlab
9819 r-limma
9820 r-locfdr
9821 r-matrix
9822 r-matrixstats
9823 r-mbkmeans
9824 r-nmf
9825 r-phylobase
9826 r-pracma
9827 r-rcolorbrewer
9828 r-rcpp
9829 r-s4vectors
9830 r-scales
9831 r-singlecellexperiment
9832 r-stringr
9833 r-summarizedexperiment
9834 r-zinbwave))
9835 (home-page "https://bioconductor.org/packages/clusterExperiment/")
9836 (synopsis "Compare clusterings for single-cell sequencing")
9837 (description "This package provides functionality for running and comparing
9838 many different clusterings of single-cell sequencing data or other large mRNA
9839 expression data sets.")
9840 (license license:artistic2.0)))
9841
9842 (define-public r-mlinterfaces
9843 (package
9844 (name "r-mlinterfaces")
9845 (version "1.76.0")
9846 (source
9847 (origin
9848 (method url-fetch)
9849 (uri (bioconductor-uri "MLInterfaces" version))
9850 (sha256
9851 (base32
9852 "179d19kxjipfkc40z15337x1vzqd7vz3gbmr2lw5w7x9l857ngs5"))))
9853 (properties `((upstream-name . "MLInterfaces")))
9854 (build-system r-build-system)
9855 (propagated-inputs
9856 (list r-annotate
9857 r-biobase
9858 r-biocgenerics
9859 r-cluster
9860 r-fpc
9861 r-gbm
9862 r-gdata
9863 r-genefilter
9864 r-ggvis
9865 r-hwriter
9866 r-magrittr
9867 r-mass
9868 r-mlbench
9869 r-pls
9870 r-rcolorbrewer
9871 r-rcpp
9872 r-rpart
9873 r-sfsmisc
9874 r-shiny
9875 r-threejs))
9876 (home-page "https://bioconductor.org/packages/MLInterfaces/")
9877 (synopsis "Interfaces to R machine learning procedures")
9878 (description
9879 "This package provides uniform interfaces to machine learning code for
9880 data in R and Bioconductor containers.")
9881 ;; Any version of the LGPL.
9882 (license license:lgpl2.1+)))
9883
9884 (define-public r-annaffy
9885 (package
9886 (name "r-annaffy")
9887 (version "1.68.0")
9888 (source
9889 (origin
9890 (method url-fetch)
9891 (uri (bioconductor-uri "annaffy" version))
9892 (sha256
9893 (base32
9894 "1fbqknwbl4534h66xrhcryg9pavm9fkja47gqbsxf8bd5yhk5mgq"))))
9895 (build-system r-build-system)
9896 (arguments
9897 `(#:phases
9898 (modify-phases %standard-phases
9899 (add-after 'unpack 'remove-reference-to-non-free-data
9900 (lambda _
9901 (substitute* "DESCRIPTION"
9902 ((", KEGG.db") "")))))))
9903 (propagated-inputs
9904 (list r-annotationdbi r-biobase r-biocmanager r-dbi r-go-db))
9905 (home-page "https://bioconductor.org/packages/annaffy/")
9906 (synopsis "Annotation tools for Affymetrix biological metadata")
9907 (description
9908 "This package provides functions for handling data from Bioconductor
9909 Affymetrix annotation data packages. It produces compact HTML and text
9910 reports including experimental data and URL links to many online databases.
9911 It allows searching of biological metadata using various criteria.")
9912 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
9913 ;; the LGPL 2.1 is included.
9914 (license license:lgpl2.1+)))
9915
9916 (define-public r-a4core
9917 (package
9918 (name "r-a4core")
9919 (version "1.44.0")
9920 (source
9921 (origin
9922 (method url-fetch)
9923 (uri (bioconductor-uri "a4Core" version))
9924 (sha256
9925 (base32
9926 "1ky1lphq6bqxj6h12pg06cvs451fziqam8gd56wmpk6r5pbg4390"))))
9927 (properties `((upstream-name . "a4Core")))
9928 (build-system r-build-system)
9929 (propagated-inputs
9930 (list r-biobase r-glmnet))
9931 (native-inputs
9932 (list r-knitr))
9933 (home-page "https://bioconductor.org/packages/a4Core")
9934 (synopsis "Automated Affymetrix array analysis core package")
9935 (description
9936 "This is the core package for the automated analysis of Affymetrix
9937 arrays.")
9938 (license license:gpl3)))
9939
9940 (define-public r-a4classif
9941 (package
9942 (name "r-a4classif")
9943 (version "1.44.0")
9944 (source
9945 (origin
9946 (method url-fetch)
9947 (uri (bioconductor-uri "a4Classif" version))
9948 (sha256
9949 (base32
9950 "1v61vgpqrf7bhk44n2gkxb8dm5d0rr8c9rd6fdcjs50nhij0lbiw"))))
9951 (properties `((upstream-name . "a4Classif")))
9952 (build-system r-build-system)
9953 (propagated-inputs
9954 (list r-a4core
9955 r-a4preproc
9956 r-biobase
9957 r-glmnet
9958 r-pamr
9959 r-rocr
9960 r-varselrf))
9961 (native-inputs
9962 (list r-knitr))
9963 (home-page "https://bioconductor.org/packages/a4Classif/")
9964 (synopsis "Automated Affymetrix array analysis classification package")
9965 (description
9966 "This is the classification package for the automated analysis of
9967 Affymetrix arrays.")
9968 (license license:gpl3)))
9969
9970 (define-public r-a4preproc
9971 (package
9972 (name "r-a4preproc")
9973 (version "1.44.0")
9974 (source
9975 (origin
9976 (method url-fetch)
9977 (uri (bioconductor-uri "a4Preproc" version))
9978 (sha256
9979 (base32
9980 "098yzy7x5536bj76iavismdsdn7x6x07aw0j3knj6i9www9y8yz9"))))
9981 (properties `((upstream-name . "a4Preproc")))
9982 (build-system r-build-system)
9983 (propagated-inputs
9984 (list r-biobase r-biocgenerics))
9985 (native-inputs
9986 (list r-knitr))
9987 (home-page "https://bioconductor.org/packages/a4Preproc/")
9988 (synopsis "Automated Affymetrix array analysis preprocessing package")
9989 (description
9990 "This is a package for the automated analysis of Affymetrix arrays. It
9991 is used for preprocessing the arrays.")
9992 (license license:gpl3)))
9993
9994 (define-public r-a4reporting
9995 (package
9996 (name "r-a4reporting")
9997 (version "1.44.0")
9998 (source
9999 (origin
10000 (method url-fetch)
10001 (uri (bioconductor-uri "a4Reporting" version))
10002 (sha256
10003 (base32
10004 "03sypayh187gqc6hykkqr1g0vb3zxc2c3xyp00jfbn12b35acnb0"))))
10005 (properties `((upstream-name . "a4Reporting")))
10006 (build-system r-build-system)
10007 (propagated-inputs
10008 (list r-xtable))
10009 (native-inputs
10010 (list r-knitr))
10011 (home-page "https://bioconductor.org/packages/a4Reporting/")
10012 (synopsis "Automated Affymetrix array analysis reporting package")
10013 (description
10014 "This is a package for the automated analysis of Affymetrix arrays. It
10015 provides reporting features.")
10016 (license license:gpl3)))
10017
10018 (define-public r-a4base
10019 (package
10020 (name "r-a4base")
10021 (version "1.44.0")
10022 (source
10023 (origin
10024 (method url-fetch)
10025 (uri (bioconductor-uri "a4Base" version))
10026 (sha256
10027 (base32
10028 "15zqirz16gpks9f5d3d76h85b936za2jih74vfr55l5arqrrvvsn"))))
10029 (properties `((upstream-name . "a4Base")))
10030 (build-system r-build-system)
10031 (propagated-inputs
10032 (list r-a4core
10033 r-a4preproc
10034 r-annaffy
10035 r-biobase
10036 r-genefilter
10037 r-glmnet
10038 r-gplots
10039 r-limma
10040 r-mpm
10041 r-multtest))
10042 (home-page "https://bioconductor.org/packages/a4Base/")
10043 (synopsis "Automated Affymetrix array analysis base package")
10044 (description
10045 "This package provides basic features for the automated analysis of
10046 Affymetrix arrays.")
10047 (license license:gpl3)))
10048
10049 (define-public r-a4
10050 (package
10051 (name "r-a4")
10052 (version "1.44.0")
10053 (source
10054 (origin
10055 (method url-fetch)
10056 (uri (bioconductor-uri "a4" version))
10057 (sha256
10058 (base32
10059 "1zs8fs6mdd7fhsmx4k824mid0jk400cm6dwfhl8z5lg85y8y2n0r"))))
10060 (build-system r-build-system)
10061 (propagated-inputs
10062 (list r-a4base r-a4classif r-a4core r-a4preproc r-a4reporting))
10063 (home-page "https://bioconductor.org/packages/a4/")
10064 (synopsis "Automated Affymetrix array analysis umbrella package")
10065 (description
10066 "This package provides a software suite for the automated analysis of
10067 Affymetrix arrays.")
10068 (license license:gpl3)))
10069
10070 (define-public r-abseqr
10071 (package
10072 (name "r-abseqr")
10073 (version "1.14.0")
10074 (source
10075 (origin
10076 (method url-fetch)
10077 (uri (bioconductor-uri "abseqR" version))
10078 (sha256
10079 (base32
10080 "0jh3rj6ag07vpw6fymqm6m4jkrm9mgf50zkjncahxdf52mna8a9b"))))
10081 (properties `((upstream-name . "abseqR")))
10082 (build-system r-build-system)
10083 (inputs
10084 (list pandoc))
10085 (propagated-inputs
10086 (list r-biocparallel
10087 r-biocstyle
10088 r-circlize
10089 r-flexdashboard
10090 r-ggcorrplot
10091 r-ggdendro
10092 r-ggplot2
10093 r-gridextra
10094 r-knitr
10095 r-plotly
10096 r-plyr
10097 r-png
10098 r-rcolorbrewer
10099 r-reshape2
10100 r-rmarkdown
10101 r-stringr
10102 r-vegan
10103 r-venndiagram))
10104 (native-inputs
10105 (list r-knitr))
10106 (home-page "https://github.com/malhamdoosh/abseqR")
10107 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
10108 (description
10109 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
10110 sequencing datasets generated from antibody libraries and abseqR is one of its
10111 packages. AbseqR empowers the users of abseqPy with plotting and reporting
10112 capabilities and allows them to generate interactive HTML reports for the
10113 convenience of viewing and sharing with other researchers. Additionally,
10114 abseqR extends abseqPy to compare multiple repertoire analyses and perform
10115 further downstream analysis on its output.")
10116 (license license:gpl3)))
10117
10118 (define-public r-bacon
10119 (package
10120 (name "r-bacon")
10121 (version "1.24.0")
10122 (source
10123 (origin
10124 (method url-fetch)
10125 (uri (bioconductor-uri "bacon" version))
10126 (sha256
10127 (base32
10128 "1zvcxdj3r892898ik5gq3jdbfig1438qws4bwd465ik8vi7g39v8"))))
10129 (build-system r-build-system)
10130 (propagated-inputs
10131 (list r-biocparallel r-ellipse r-ggplot2))
10132 (native-inputs
10133 (list r-knitr))
10134 (home-page "https://bioconductor.org/packages/bacon/")
10135 (synopsis "Controlling bias and inflation in association studies")
10136 (description
10137 "Bacon can be used to remove inflation and bias often observed in
10138 epigenome- and transcriptome-wide association studies. To this end bacon
10139 constructs an empirical null distribution using a Gibbs Sampling algorithm by
10140 fitting a three-component normal mixture on z-scores.")
10141 (license license:gpl2+)))
10142
10143 (define-public r-rgadem
10144 (package
10145 (name "r-rgadem")
10146 (version "2.44.1")
10147 (source
10148 (origin
10149 (method url-fetch)
10150 (uri (bioconductor-uri "rGADEM" version))
10151 (sha256
10152 (base32
10153 "052z9iavnmkaz9jzz7ycpb8z7qqq3s5k6a04icrwl00wff7zqa2q"))))
10154 (properties `((upstream-name . "rGADEM")))
10155 (build-system r-build-system)
10156 (propagated-inputs
10157 (list r-biostrings r-bsgenome r-genomicranges r-iranges r-seqlogo))
10158 (home-page "https://bioconductor.org/packages/rGADEM/")
10159 (synopsis "De novo sequence motif discovery")
10160 (description
10161 "rGADEM is an efficient de novo motif discovery tool for large-scale
10162 genomic sequence data.")
10163 (license license:artistic2.0)))
10164
10165 (define-public r-motiv
10166 (package
10167 (name "r-motiv")
10168 (version "1.43.0")
10169 (source
10170 (origin
10171 (method url-fetch)
10172 (uri (bioconductor-uri "MotIV" version))
10173 (sha256
10174 (base32
10175 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
10176 (properties `((upstream-name . "MotIV")))
10177 (build-system r-build-system)
10178 (inputs
10179 (list gsl))
10180 (propagated-inputs
10181 (list r-biocgenerics
10182 r-biostrings
10183 r-genomicranges
10184 r-iranges
10185 r-lattice
10186 r-rgadem
10187 r-s4vectors))
10188 (home-page "https://bioconductor.org/packages/MotIV/")
10189 (synopsis "Motif identification and validation")
10190 (description
10191 "This package is used for the identification and validation of sequence
10192 motifs. It makes use of STAMP for comparing a set of motifs to a given
10193 database (e.g. JASPAR). It can also be used to visualize motifs, motif
10194 distributions, modules and filter motifs.")
10195 (license license:gpl2)))
10196
10197 (define-public r-motifdb
10198 (package
10199 (name "r-motifdb")
10200 (version "1.38.0")
10201 (source (origin
10202 (method url-fetch)
10203 (uri (bioconductor-uri "MotifDb" version))
10204 (sha256
10205 (base32 "1cyfz0l0yvdii3idaiq5w39yzxlzfpifa4v5pv7hdjfjj83a8rbi"))))
10206 (properties `((upstream-name . "MotifDb")))
10207 (build-system r-build-system)
10208 (propagated-inputs
10209 (list r-biocgenerics
10210 r-biostrings
10211 r-genomicranges
10212 r-iranges
10213 r-rtracklayer
10214 r-s4vectors
10215 r-splitstackshape))
10216 (native-inputs
10217 (list r-knitr))
10218 (home-page "https://www.bioconductor.org/packages/MotifDb/")
10219 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
10220 (description "This package provides more than 2000 annotated position
10221 frequency matrices from nine public sources, for multiple organisms.")
10222 (license license:artistic2.0)))
10223
10224 (define-public r-motifbreakr
10225 (package
10226 (name "r-motifbreakr")
10227 (version "2.10.0")
10228 (source (origin
10229 (method url-fetch)
10230 (uri (bioconductor-uri "motifbreakR" version))
10231 (sha256
10232 (base32 "0sad73jjx52qzp1fmygp6xqvaxwl5szi69f00f94i1pdyq70qhlg"))))
10233 (properties `((upstream-name . "motifbreakR")))
10234 (build-system r-build-system)
10235 (propagated-inputs
10236 (list r-biocgenerics
10237 r-biocparallel
10238 r-biostrings
10239 r-bsgenome
10240 r-genomeinfodb
10241 r-genomicranges
10242 r-gviz
10243 r-iranges
10244 r-matrixstats
10245 r-motifdb
10246 r-motifstack
10247 r-rtracklayer
10248 r-s4vectors
10249 r-stringr
10250 r-summarizedexperiment
10251 r-tfmpvalue
10252 r-variantannotation))
10253 (native-inputs
10254 (list r-knitr))
10255 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
10256 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
10257 (description "This package allows biologists to judge in the first place
10258 whether the sequence surrounding the polymorphism is a good match, and in
10259 the second place how much information is gained or lost in one allele of
10260 the polymorphism relative to another. This package gives a choice of
10261 algorithms for interrogation of genomes with motifs from public sources:
10262 @enumerate
10263 @item a weighted-sum probability matrix;
10264 @item log-probabilities;
10265 @item weighted by relative entropy.
10266 @end enumerate
10267
10268 This package can predict effects for novel or previously described variants in
10269 public databases, making it suitable for tasks beyond the scope of its original
10270 design. Lastly, it can be used to interrogate any genome curated within
10271 Bioconductor.")
10272 (license license:gpl2+)))
10273
10274 (define-public r-motifstack
10275 (package
10276 (name "r-motifstack")
10277 (version "1.40.0")
10278 (source
10279 (origin
10280 (method url-fetch)
10281 (uri (bioconductor-uri "motifStack" version))
10282 (sha256
10283 (base32
10284 "0d2ihx73chczbv6f91n04qb372plrdv7k4qws8shyw1fmvb1rq0z"))))
10285 (properties `((upstream-name . "motifStack")))
10286 (build-system r-build-system)
10287 (propagated-inputs
10288 (list r-ade4
10289 r-biostrings
10290 r-ggplot2
10291 r-htmlwidgets
10292 r-tfbstools
10293 r-xml))
10294 (native-inputs
10295 (list r-knitr))
10296 (home-page "https://bioconductor.org/packages/motifStack/")
10297 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
10298 (description
10299 "The motifStack package is designed for graphic representation of
10300 multiple motifs with different similarity scores. It works with both DNA/RNA
10301 sequence motifs and amino acid sequence motifs. In addition, it provides the
10302 flexibility for users to customize the graphic parameters such as the font
10303 type and symbol colors.")
10304 (license license:gpl2+)))
10305
10306 (define-public r-genomicscores
10307 (package
10308 (name "r-genomicscores")
10309 (version "2.8.2")
10310 (source
10311 (origin
10312 (method url-fetch)
10313 (uri (bioconductor-uri "GenomicScores" version))
10314 (sha256
10315 (base32
10316 "12rcxw69an1d5q7ar58xy8s871l47imw2nm08j054ivxslx8597j"))))
10317 (properties `((upstream-name . "GenomicScores")))
10318 (build-system r-build-system)
10319 (propagated-inputs
10320 (list r-annotationhub
10321 r-biobase
10322 r-biocfilecache
10323 r-biocgenerics
10324 r-biocmanager
10325 r-biostrings
10326 r-delayedarray
10327 r-genomeinfodb
10328 r-genomicranges
10329 r-hdf5array
10330 r-httr
10331 r-iranges
10332 r-rhdf5
10333 r-s4vectors
10334 r-xml))
10335 (native-inputs
10336 (list r-knitr))
10337 (home-page "https://github.com/rcastelo/GenomicScores/")
10338 (synopsis "Work with genome-wide position-specific scores")
10339 (description
10340 "This package provides infrastructure to store and access genome-wide
10341 position-specific scores within R and Bioconductor.")
10342 (license license:artistic2.0)))
10343
10344 (define-public r-atacseqqc
10345 (package
10346 (name "r-atacseqqc")
10347 (version "1.20.2")
10348 (source
10349 (origin
10350 (method url-fetch)
10351 (uri (bioconductor-uri "ATACseqQC" version))
10352 (sha256
10353 (base32
10354 "0jj7n0mcj0gciw0ksazlksgmwzp51a40pwqhf0c7la0cc4bnrkqp"))))
10355 (properties `((upstream-name . "ATACseqQC")))
10356 (build-system r-build-system)
10357 (propagated-inputs
10358 (list r-biocgenerics
10359 r-biostrings
10360 r-bsgenome
10361 r-chippeakanno
10362 r-edger
10363 r-genomeinfodb
10364 r-genomicalignments
10365 r-genomicranges
10366 r-genomicscores
10367 r-iranges
10368 r-kernsmooth
10369 r-limma
10370 r-motifstack
10371 r-preseqr
10372 r-randomforest
10373 r-rsamtools
10374 r-rtracklayer
10375 r-s4vectors))
10376 (native-inputs
10377 (list r-knitr))
10378 (home-page "https://bioconductor.org/packages/ATACseqQC/")
10379 (synopsis "ATAC-seq quality control")
10380 (description
10381 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
10382 sequencing, is a rapid and sensitive method for chromatin accessibility
10383 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
10384 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
10385 assess whether their ATAC-seq experiment is successful. It includes
10386 diagnostic plots of fragment size distribution, proportion of mitochondria
10387 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
10388 footprints.")
10389 (license license:gpl2+)))
10390
10391 (define-public r-gofuncr
10392 (package
10393 (name "r-gofuncr")
10394 (version "1.16.0")
10395 (source
10396 (origin
10397 (method url-fetch)
10398 (uri (bioconductor-uri "GOfuncR" version))
10399 (sha256
10400 (base32
10401 "02vdfsjrqp0m06mfbspwkxjyqxfca0w1idgygpi1a9i5m4fqhwpk"))))
10402 (properties `((upstream-name . "GOfuncR")))
10403 (build-system r-build-system)
10404 (propagated-inputs
10405 (list r-annotationdbi
10406 r-genomicranges
10407 r-gtools
10408 r-iranges
10409 r-mapplots
10410 r-rcpp
10411 r-vioplot))
10412 (native-inputs
10413 (list r-knitr))
10414 (home-page "https://bioconductor.org/packages/GOfuncR/")
10415 (synopsis "Gene ontology enrichment using FUNC")
10416 (description
10417 "GOfuncR performs a gene ontology enrichment analysis based on the
10418 ontology enrichment software FUNC. GO-annotations are obtained from
10419 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
10420 included in the package and updated regularly. GOfuncR provides the standard
10421 candidate vs background enrichment analysis using the hypergeometric test, as
10422 well as three additional tests:
10423
10424 @enumerate
10425 @item the Wilcoxon rank-sum test that is used when genes are ranked,
10426 @item a binomial test that is used when genes are associated with two counts,
10427 and
10428 @item a Chi-square or Fisher's exact test that is used in cases when genes are
10429 associated with four counts.
10430 @end enumerate
10431
10432 To correct for multiple testing and interdependency of the tests, family-wise
10433 error rates are computed based on random permutations of the gene-associated
10434 variables. GOfuncR also provides tools for exploring the ontology graph and
10435 the annotations, and options to take gene-length or spatial clustering of
10436 genes into account. It is also possible to provide custom gene coordinates,
10437 annotations and ontologies.")
10438 (license license:gpl2+)))
10439
10440 (define-public r-abaenrichment
10441 (package
10442 (name "r-abaenrichment")
10443 (version "1.24.0")
10444 (source
10445 (origin
10446 (method url-fetch)
10447 (uri (bioconductor-uri "ABAEnrichment" version))
10448 (sha256
10449 (base32
10450 "1sp3f72rzlr822dxx42bswynrwwfx6f520hdhfdikqp13p2y4044"))))
10451 (properties `((upstream-name . "ABAEnrichment")))
10452 (build-system r-build-system)
10453 (propagated-inputs
10454 (list r-abadata
10455 r-data-table
10456 r-gofuncr
10457 r-gplots
10458 r-gtools
10459 r-rcpp))
10460 (native-inputs
10461 (list r-knitr))
10462 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
10463 (synopsis "Gene expression enrichment in human brain regions")
10464 (description
10465 "The package ABAEnrichment is designed to test for enrichment of user
10466 defined candidate genes in the set of expressed genes in different human brain
10467 regions. The core function @code{aba_enrich} integrates the expression of the
10468 candidate gene set (averaged across donors) and the structural information of
10469 the brain using an ontology, both provided by the Allen Brain Atlas project.")
10470 (license license:gpl2+)))
10471
10472 (define-public r-annotationfuncs
10473 (package
10474 (name "r-annotationfuncs")
10475 (version "1.40.0")
10476 (source
10477 (origin
10478 (method url-fetch)
10479 (uri (bioconductor-uri "AnnotationFuncs" version))
10480 (sha256
10481 (base32
10482 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
10483 (properties
10484 `((upstream-name . "AnnotationFuncs")))
10485 (build-system r-build-system)
10486 (propagated-inputs
10487 (list r-annotationdbi r-dbi))
10488 (home-page "https://www.iysik.com/r/annotationfuncs")
10489 (synopsis "Annotation translation functions")
10490 (description
10491 "This package provides functions for handling translating between
10492 different identifieres using the Biocore Data Team data-packages (e.g.
10493 @code{org.Bt.eg.db}).")
10494 (license license:gpl2)))
10495
10496 (define-public r-annotationtools
10497 (package
10498 (name "r-annotationtools")
10499 (version "1.70.0")
10500 (source
10501 (origin
10502 (method url-fetch)
10503 (uri (bioconductor-uri "annotationTools" version))
10504 (sha256
10505 (base32
10506 "122b424zida3j0vqkn8d06sg3jpc3ngsgidr8kgg00n4cjngkc51"))))
10507 (properties
10508 `((upstream-name . "annotationTools")))
10509 (build-system r-build-system)
10510 (propagated-inputs (list r-biobase))
10511 (home-page "https://bioconductor.org/packages/annotationTools/")
10512 (synopsis "Annotate microarrays and perform gene expression analyses")
10513 (description
10514 "This package provides functions to annotate microarrays, find orthologs,
10515 and integrate heterogeneous gene expression profiles using annotation and
10516 other molecular biology information available as flat file database (plain
10517 text files).")
10518 ;; Any version of the GPL.
10519 (license (list license:gpl2+))))
10520
10521 (define-public r-allelicimbalance
10522 (package
10523 (name "r-allelicimbalance")
10524 (version "1.34.0")
10525 (source
10526 (origin
10527 (method url-fetch)
10528 (uri (bioconductor-uri "AllelicImbalance" version))
10529 (sha256
10530 (base32
10531 "0w4xd0xzkwx7bbhrgqligpahlhg85rginknx520z891r8v0bim2z"))))
10532 (properties
10533 `((upstream-name . "AllelicImbalance")))
10534 (build-system r-build-system)
10535 (propagated-inputs
10536 (list r-annotationdbi
10537 r-biocgenerics
10538 r-biostrings
10539 r-bsgenome
10540 r-genomeinfodb
10541 r-genomicalignments
10542 r-genomicfeatures
10543 r-genomicranges
10544 r-gridextra
10545 r-gviz
10546 r-iranges
10547 r-lattice
10548 r-latticeextra
10549 r-nlme
10550 r-rsamtools
10551 r-s4vectors
10552 r-seqinr
10553 r-summarizedexperiment
10554 r-variantannotation))
10555 (native-inputs
10556 (list r-knitr))
10557 (home-page "https://github.com/pappewaio/AllelicImbalance")
10558 (synopsis "Investigate allele-specific expression")
10559 (description
10560 "This package provides a framework for allele-specific expression
10561 investigation using RNA-seq data.")
10562 (license license:gpl3)))
10563
10564 (define-public r-aucell
10565 (package
10566 (name "r-aucell")
10567 (version "1.18.1")
10568 (source
10569 (origin
10570 (method url-fetch)
10571 (uri (bioconductor-uri "AUCell" version))
10572 (sha256
10573 (base32
10574 "17wr7dycll0l1gax4w268qw7is163bs51rj6p1qnx1dgc9ibnsgr"))))
10575 (properties `((upstream-name . "AUCell")))
10576 (build-system r-build-system)
10577 (propagated-inputs
10578 (list r-biocgenerics
10579 r-data-table
10580 r-delayedarray
10581 r-delayedmatrixstats
10582 r-gseabase
10583 r-mixtools
10584 r-r-utils
10585 r-shiny
10586 r-summarizedexperiment))
10587 (native-inputs
10588 (list r-knitr))
10589 (home-page "https://bioconductor.org/packages/AUCell/")
10590 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
10591 (description
10592 "AUCell identifies cells with active gene sets (e.g. signatures,
10593 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
10594 Under the Curve} (AUC) to calculate whether a critical subset of the input
10595 gene set is enriched within the expressed genes for each cell. The
10596 distribution of AUC scores across all the cells allows exploring the relative
10597 expression of the signature. Since the scoring method is ranking-based,
10598 AUCell is independent of the gene expression units and the normalization
10599 procedure. In addition, since the cells are evaluated individually, it can
10600 easily be applied to bigger datasets, subsetting the expression matrix if
10601 needed.")
10602 (license license:gpl3)))
10603
10604 (define-public r-ebimage
10605 (package
10606 (name "r-ebimage")
10607 (version "4.38.0")
10608 (source
10609 (origin
10610 (method url-fetch)
10611 (uri (bioconductor-uri "EBImage" version))
10612 (sha256
10613 (base32
10614 "1vcx45bw36k9daw9dywj5bz77jmqk4gjfwsym8ajjnc1jmlq20si"))))
10615 (properties `((upstream-name . "EBImage")))
10616 (build-system r-build-system)
10617 (propagated-inputs
10618 (list r-abind
10619 r-biocgenerics
10620 r-fftwtools
10621 r-htmltools
10622 r-htmlwidgets
10623 r-jpeg
10624 r-locfit
10625 r-png
10626 r-rcurl
10627 r-tiff))
10628 (native-inputs
10629 (list r-knitr)) ; for vignettes
10630 (home-page "https://github.com/aoles/EBImage")
10631 (synopsis "Image processing and analysis toolbox for R")
10632 (description
10633 "EBImage provides general purpose functionality for image processing and
10634 analysis. In the context of (high-throughput) microscopy-based cellular
10635 assays, EBImage offers tools to segment cells and extract quantitative
10636 cellular descriptors. This allows the automation of such tasks using the R
10637 programming language and facilitates the use of other tools in the R
10638 environment for signal processing, statistical modeling, machine learning and
10639 visualization with image data.")
10640 ;; Any version of the LGPL.
10641 (license license:lgpl2.1+)))
10642
10643 (define-public r-yamss
10644 (package
10645 (name "r-yamss")
10646 (version "1.22.0")
10647 (source
10648 (origin
10649 (method url-fetch)
10650 (uri (bioconductor-uri "yamss" version))
10651 (sha256
10652 (base32
10653 "1lcfxw73cxvpy3bnq28pxdy5128mpq5xklsa0mzxdjyqc4g55hy8"))))
10654 (build-system r-build-system)
10655 (propagated-inputs
10656 (list r-biocgenerics
10657 r-data-table
10658 r-ebimage
10659 r-iranges
10660 r-limma
10661 r-matrix
10662 r-mzr
10663 r-s4vectors
10664 r-summarizedexperiment))
10665 (native-inputs
10666 (list r-knitr))
10667 (home-page "https://github.com/hansenlab/yamss")
10668 (synopsis "Tools for high-throughput metabolomics")
10669 (description
10670 "This package provides tools to analyze and visualize high-throughput
10671 metabolomics data acquired using chromatography-mass spectrometry. These tools
10672 preprocess data in a way that enables reliable and powerful differential
10673 analysis.")
10674 (license license:artistic2.0)))
10675
10676 (define-public r-gtrellis
10677 (package
10678 (name "r-gtrellis")
10679 (version "1.28.0")
10680 (source
10681 (origin
10682 (method url-fetch)
10683 (uri (bioconductor-uri "gtrellis" version))
10684 (sha256
10685 (base32
10686 "1s4xczzv6hz2kyv32xgcq84540w75qr3f644w1s4c3kwxgyq2gff"))))
10687 (build-system r-build-system)
10688 (propagated-inputs
10689 (list r-circlize r-genomicranges r-getoptlong r-iranges))
10690 (native-inputs
10691 (list r-knitr))
10692 (home-page "https://github.com/jokergoo/gtrellis")
10693 (synopsis "Genome level Trellis layout")
10694 (description
10695 "Genome level Trellis graph visualizes genomic data conditioned by
10696 genomic categories (e.g. chromosomes). For each genomic category, multiple
10697 dimensional data which are represented as tracks describe different features
10698 from different aspects. This package provides high flexibility to arrange
10699 genomic categories and to add self-defined graphics in the plot.")
10700 (license license:expat)))
10701
10702 (define-public r-somaticsignatures
10703 (package
10704 (name "r-somaticsignatures")
10705 (version "2.32.0")
10706 (source
10707 (origin
10708 (method url-fetch)
10709 (uri (bioconductor-uri "SomaticSignatures" version))
10710 (sha256
10711 (base32
10712 "1ydnp54laznzpi08s403kxhnr5nqhvm3iilaxlcdlz0ngxhm6vx6"))))
10713 (properties
10714 `((upstream-name . "SomaticSignatures")))
10715 (build-system r-build-system)
10716 (propagated-inputs
10717 (list r-biobase
10718 r-biostrings
10719 r-genomeinfodb
10720 r-genomicranges
10721 r-ggbio
10722 r-ggplot2
10723 r-iranges
10724 r-nmf
10725 r-pcamethods
10726 r-proxy
10727 r-reshape2
10728 r-s4vectors
10729 r-variantannotation))
10730 (native-inputs
10731 (list r-knitr))
10732 (home-page "https://github.com/juliangehring/SomaticSignatures")
10733 (synopsis "Somatic signatures")
10734 (description
10735 "This package identifies mutational signatures of @dfn{single nucleotide
10736 variants} (SNVs). It provides a infrastructure related to the methodology
10737 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
10738 decomposition algorithms.")
10739 (license license:expat)))
10740
10741 (define-public r-yapsa
10742 (package
10743 (name "r-yapsa")
10744 (version "1.22.0")
10745 (source
10746 (origin
10747 (method url-fetch)
10748 (uri (bioconductor-uri "YAPSA" version))
10749 (sha256
10750 (base32
10751 "1klqfif4sadkxw7agywk2ncvcdqsnfb1d6adnacdfdasr8abvhid"))))
10752 (properties `((upstream-name . "YAPSA")))
10753 (build-system r-build-system)
10754 (propagated-inputs
10755 (list r-biostrings
10756 r-bsgenome-hsapiens-ucsc-hg19
10757 r-circlize
10758 r-complexheatmap
10759 r-corrplot
10760 r-dendextend
10761 r-doparallel
10762 r-dplyr
10763 r-genomeinfodb
10764 r-genomicranges
10765 r-getoptlong
10766 r-ggbeeswarm
10767 r-ggplot2
10768 r-gridextra
10769 r-gtrellis
10770 r-keggrest
10771 r-limsolve
10772 r-magrittr
10773 r-pmcmrplus
10774 r-pracma
10775 r-reshape2
10776 r-somaticsignatures
10777 r-variantannotation))
10778 (native-inputs
10779 (list r-knitr))
10780 (home-page "https://bioconductor.org/packages/YAPSA/")
10781 (synopsis "Yet another package for signature analysis")
10782 (description
10783 "This package provides functions and routines useful in the analysis of
10784 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
10785 functions to perform a signature analysis with known signatures and a
10786 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
10787 provided.")
10788 (license license:gpl3)))
10789
10790 (define-public r-gcrma
10791 (package
10792 (name "r-gcrma")
10793 (version "2.68.0")
10794 (source
10795 (origin
10796 (method url-fetch)
10797 (uri (bioconductor-uri "gcrma" version))
10798 (sha256
10799 (base32
10800 "13a8igr2b02gsa6n3437kb33wg6h7si82fmqi35dzpfzhvx0qf6d"))))
10801 (build-system r-build-system)
10802 (propagated-inputs
10803 (list r-affy
10804 r-affyio
10805 r-biobase
10806 r-biocmanager
10807 r-biostrings
10808 r-xvector))
10809 (home-page "https://bioconductor.org/packages/gcrma/")
10810 (synopsis "Background adjustment using sequence information")
10811 (description
10812 "Gcrma adjusts for background intensities in Affymetrix array data which
10813 include optical noise and @dfn{non-specific binding} (NSB). The main function
10814 @code{gcrma} converts background adjusted probe intensities to expression
10815 measures using the same normalization and summarization methods as a
10816 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
10817 to estimate probe affinity to NSB. The sequence information is summarized in
10818 a more complex way than the simple GC content. Instead, the base types (A, T,
10819 G or C) at each position along the probe determine the affinity of each probe.
10820 The parameters of the position-specific base contributions to the probe
10821 affinity is estimated in an NSB experiment in which only NSB but no
10822 gene-specific binding is expected.")
10823 ;; Any version of the LGPL
10824 (license license:lgpl2.1+)))
10825
10826 (define-public r-simpleaffy
10827 (package
10828 (name "r-simpleaffy")
10829 (version "2.66.0")
10830 (source
10831 (origin
10832 (method url-fetch)
10833 (uri (bioconductor-uri "simpleaffy" version))
10834 (sha256
10835 (base32
10836 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
10837 (build-system r-build-system)
10838 (propagated-inputs
10839 (list r-affy r-biobase r-biocgenerics r-gcrma r-genefilter))
10840 (home-page "https://bioconductor.org/packages/simpleaffy/")
10841 (synopsis "Very simple high level analysis of Affymetrix data")
10842 (description
10843 "This package provides high level functions for reading Affy @file{.CEL}
10844 files, phenotypic data, and then computing simple things with it, such as
10845 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
10846 library. It also has some basic scatter plot functions and mechanisms for
10847 generating high resolution journal figures.")
10848 (license license:gpl2+)))
10849
10850 (define-public r-yaqcaffy
10851 (package
10852 (name "r-yaqcaffy")
10853 (version "1.50.0")
10854 (source
10855 (origin
10856 (method url-fetch)
10857 (uri (bioconductor-uri "yaqcaffy" version))
10858 (sha256
10859 (base32
10860 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
10861 (build-system r-build-system)
10862 (propagated-inputs
10863 (list r-simpleaffy))
10864 (home-page "https://bioconductor.org/packages/yaqcaffy/")
10865 (synopsis "Affymetrix quality control and reproducibility analysis")
10866 (description
10867 "This is a package that can be used for quality control of Affymetrix
10868 GeneChip expression data and reproducibility analysis of human whole genome
10869 chips with the MAQC reference datasets.")
10870 (license license:artistic2.0)))
10871
10872 (define-public r-quantro
10873 (package
10874 (name "r-quantro")
10875 (version "1.30.0")
10876 (source
10877 (origin
10878 (method url-fetch)
10879 (uri (bioconductor-uri "quantro" version))
10880 (sha256
10881 (base32
10882 "1zfrz7lxyrbf0c8d277npzj1h4six9whkqplvcjmn3li0xj5qng3"))))
10883 (build-system r-build-system)
10884 (propagated-inputs
10885 (list r-biobase
10886 r-doparallel
10887 r-foreach
10888 r-ggplot2
10889 r-iterators
10890 r-minfi
10891 r-rcolorbrewer))
10892 (native-inputs
10893 (list r-knitr))
10894 (home-page "https://bioconductor.org/packages/quantro/")
10895 (synopsis "Test for when to use quantile normalization")
10896 (description
10897 "This package provides a data-driven test for the assumptions of quantile
10898 normalization using raw data such as objects that inherit eSets (e.g.
10899 ExpressionSet, MethylSet). Group level information about each sample (such as
10900 Tumor / Normal status) must also be provided because the test assesses if
10901 there are global differences in the distributions between the user-defined
10902 groups.")
10903 (license license:gpl3+)))
10904
10905 (define-public r-yarn
10906 (package
10907 (name "r-yarn")
10908 (version "1.22.0")
10909 (source
10910 (origin
10911 (method url-fetch)
10912 (uri (bioconductor-uri "yarn" version))
10913 (sha256
10914 (base32
10915 "0z5202pqq02fwm8qf1g36004k7sv668s1xacbpr1cvw5sl452lbg"))))
10916 (build-system r-build-system)
10917 (propagated-inputs
10918 (list r-biobase
10919 r-biomart
10920 r-downloader
10921 r-edger
10922 r-gplots
10923 r-limma
10924 r-matrixstats
10925 r-preprocesscore
10926 r-quantro
10927 r-rcolorbrewer
10928 r-readr))
10929 (native-inputs
10930 (list r-knitr))
10931 (home-page "https://bioconductor.org/packages/yarn/")
10932 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
10933 (description
10934 "Expedite large RNA-Seq analyses using a combination of previously
10935 developed tools. YARN is meant to make it easier for the user in performing
10936 basic mis-annotation quality control, filtering, and condition-aware
10937 normalization. YARN leverages many Bioconductor tools and statistical
10938 techniques to account for the large heterogeneity and sparsity found in very
10939 large RNA-seq experiments.")
10940 (license license:artistic2.0)))
10941
10942 (define-public r-roar
10943 (package
10944 (name "r-roar")
10945 (version "1.32.0")
10946 (source
10947 (origin
10948 (method url-fetch)
10949 (uri (bioconductor-uri "roar" version))
10950 (sha256
10951 (base32
10952 "0zq1praf5h9294cvmrb06l3chx8v40xw2sfvhlnh1516x9sjkwfc"))))
10953 (build-system r-build-system)
10954 (propagated-inputs
10955 (list r-biocgenerics
10956 r-genomeinfodb
10957 r-genomicalignments
10958 r-genomicranges
10959 r-iranges
10960 r-rtracklayer
10961 r-s4vectors
10962 r-summarizedexperiment))
10963 (home-page "https://github.com/vodkatad/roar/")
10964 (synopsis "Identify differential APA usage from RNA-seq alignments")
10965 (description
10966 "This package provides tools for identifying preferential usage of APA
10967 sites, comparing two biological conditions, starting from known alternative
10968 sites and alignments obtained from standard RNA-seq experiments.")
10969 (license license:gpl3)))
10970
10971 (define-public r-xbseq
10972 (package
10973 (name "r-xbseq")
10974 (version "1.22.0")
10975 (source
10976 (origin
10977 (method url-fetch)
10978 (uri (bioconductor-uri "XBSeq" version))
10979 (sha256
10980 (base32
10981 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
10982 (properties `((upstream-name . "XBSeq")))
10983 (build-system r-build-system)
10984 (propagated-inputs
10985 (list r-biobase
10986 r-deseq2
10987 r-dplyr
10988 r-ggplot2
10989 r-locfit
10990 r-magrittr
10991 r-matrixstats
10992 r-pracma
10993 r-roar))
10994 (native-inputs
10995 (list r-knitr))
10996 (home-page "https://github.com/Liuy12/XBSeq")
10997 (synopsis "Test for differential expression for RNA-seq data")
10998 (description
10999 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
11000 expression} (DE), where a statistical model was established based on the
11001 assumption that observed signals are the convolution of true expression
11002 signals and sequencing noises. The mapped reads in non-exonic regions are
11003 considered as sequencing noises, which follows a Poisson distribution. Given
11004 measurable observed signal and background noise from RNA-seq data, true
11005 expression signals, assuming governed by the negative binomial distribution,
11006 can be delineated and thus the accurate detection of differential expressed
11007 genes.")
11008 (license license:gpl3+)))
11009
11010 (define-public r-massspecwavelet
11011 (package
11012 (name "r-massspecwavelet")
11013 (version "1.62.0")
11014 (source
11015 (origin
11016 (method url-fetch)
11017 (uri (bioconductor-uri "MassSpecWavelet" version))
11018 (sha256
11019 (base32
11020 "0g9izdy3f7h1zmsfbq45ahdz0ak5013rp3vxc4ijb1mpqx8ldd39"))))
11021 (properties
11022 `((upstream-name . "MassSpecWavelet")))
11023 (build-system r-build-system)
11024 (native-inputs
11025 (list r-knitr))
11026 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
11027 (synopsis "Mass spectrum processing by wavelet-based algorithms")
11028 (description
11029 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
11030 data mainly through the use of wavelet transforms. It supports peak detection
11031 based on @dfn{Continuous Wavelet Transform} (CWT).")
11032 (license license:lgpl2.0+)))
11033
11034 (define-public r-xcms
11035 (package
11036 (name "r-xcms")
11037 (version "3.18.0")
11038 (source
11039 (origin
11040 (method url-fetch)
11041 (uri (bioconductor-uri "xcms" version))
11042 (sha256
11043 (base32
11044 "0p2zd2728lj5q8y24gdfvsjijd6zl2i73hrcf017n32jq7vn71xm"))))
11045 (build-system r-build-system)
11046 (propagated-inputs
11047 (list r-biobase
11048 r-biocgenerics
11049 r-biocparallel
11050 r-iranges
11051 r-lattice
11052 r-massspecwavelet
11053 r-mscoreutils
11054 r-msfeatures
11055 r-msnbase
11056 r-mzr
11057 r-plyr
11058 r-protgenerics
11059 r-rann
11060 r-rcolorbrewer
11061 r-robustbase
11062 r-s4vectors
11063 r-summarizedexperiment))
11064 (native-inputs
11065 (list r-knitr))
11066 (home-page "https://bioconductor.org/packages/xcms/")
11067 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
11068 (description
11069 "This package provides a framework for processing and visualization of
11070 chromatographically separated and single-spectra mass spectral data. It
11071 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
11072 data for high-throughput, untargeted analyte profiling.")
11073 (license license:gpl2+)))
11074
11075 (define-public r-wppi
11076 (package
11077 (name "r-wppi")
11078 (version "1.4.0")
11079 (source (origin
11080 (method url-fetch)
11081 (uri (bioconductor-uri "wppi" version))
11082 (sha256
11083 (base32
11084 "1008s39bb7sd261cy1vfgdah7bmhfw9qq322fh7g4wvpfw63ii9f"))))
11085 (properties `((upstream-name . "wppi")))
11086 (build-system r-build-system)
11087 ;; This is necessary because omnipathr attempts to write a configuration
11088 ;; file to HOME.
11089 (arguments
11090 `(#:phases
11091 (modify-phases %standard-phases
11092 (add-after 'unpack 'set-HOME
11093 (lambda _ (setenv "HOME" "/tmp"))))))
11094 (propagated-inputs (list r-dplyr
11095 r-igraph
11096 r-logger
11097 r-magrittr
11098 r-matrix
11099 r-omnipathr
11100 r-progress
11101 r-purrr
11102 r-rcurl
11103 r-rlang
11104 r-tibble
11105 r-tidyr))
11106 (native-inputs (list r-knitr))
11107 (home-page "https://github.com/AnaGalhoz37/wppi")
11108 (synopsis "Weighting protein-protein interactions")
11109 (description
11110 "This package predicts functional relevance of protein-protein
11111 interactions based on functional annotations such as Human Protein Ontology
11112 and Gene Ontology, and prioritizes genes based on network topology, functional
11113 scores and a path search algorithm.")
11114 (license license:expat)))
11115
11116 (define-public r-wrench
11117 (package
11118 (name "r-wrench")
11119 (version "1.14.0")
11120 (source
11121 (origin
11122 (method url-fetch)
11123 (uri (bioconductor-uri "Wrench" version))
11124 (sha256
11125 (base32
11126 "1zx65s4m71wj85s2sq8ip54pq12r4sxfv8b2rxc41gfc5aj0zzca"))))
11127 (properties `((upstream-name . "Wrench")))
11128 (build-system r-build-system)
11129 (propagated-inputs
11130 (list r-limma r-locfit r-matrixstats))
11131 (native-inputs
11132 (list r-knitr))
11133 (home-page "https://github.com/HCBravoLab/Wrench")
11134 (synopsis "Wrench normalization for sparse count data")
11135 (description
11136 "Wrench is a package for normalization sparse genomic count data, like
11137 that arising from 16s metagenomic surveys.")
11138 (license license:artistic2.0)))
11139
11140 (define-public r-wiggleplotr
11141 (package
11142 (name "r-wiggleplotr")
11143 (version "1.20.0")
11144 (source
11145 (origin
11146 (method url-fetch)
11147 (uri (bioconductor-uri "wiggleplotr" version))
11148 (sha256
11149 (base32
11150 "0s128mm5w8n072k6j0fv1mxnxjpwisjp5lpz8a9z96cnn69bnr0i"))))
11151 (build-system r-build-system)
11152 (propagated-inputs
11153 (list r-assertthat
11154 r-cowplot
11155 r-dplyr
11156 r-genomeinfodb
11157 r-genomicranges
11158 r-ggplot2
11159 r-iranges
11160 r-purrr
11161 r-rtracklayer
11162 r-s4vectors))
11163 (native-inputs
11164 (list r-knitr))
11165 (home-page "https://bioconductor.org/packages/wiggleplotr/")
11166 (synopsis "Make read coverage plots from BigWig files")
11167 (description
11168 "This package provides tools to visualize read coverage from sequencing
11169 experiments together with genomic annotations (genes, transcripts, peaks).
11170 Introns of long transcripts can be rescaled to a fixed length for better
11171 visualization of exonic read coverage.")
11172 (license license:asl2.0)))
11173
11174 (define-public r-widgettools
11175 (package
11176 (name "r-widgettools")
11177 (version "1.74.0")
11178 (source
11179 (origin
11180 (method url-fetch)
11181 (uri (bioconductor-uri "widgetTools" version))
11182 (sha256
11183 (base32
11184 "10w1s5h4za6ibmphvj145ir3lp22qgah2z8fvmipmf8ciq1jf86d"))))
11185 (properties `((upstream-name . "widgetTools")))
11186 (build-system r-build-system)
11187 (home-page "https://bioconductor.org/packages/widgetTools/")
11188 (synopsis "Tools for creating interactive tcltk widgets")
11189 (description
11190 "This package contains tools to support the construction of tcltk
11191 widgets in R.")
11192 ;; Any version of the LGPL.
11193 (license license:lgpl3+)))
11194
11195 (define-public r-webbioc
11196 (package
11197 (name "r-webbioc")
11198 (version "1.68.0")
11199 (source
11200 (origin
11201 (method url-fetch)
11202 (uri (bioconductor-uri "webbioc" version))
11203 (sha256
11204 (base32
11205 "1g3srxsa2fqcn3r4wz4y19fwjmw3vawlcvdw6lbjdnvbgcafq1ah"))))
11206 (build-system r-build-system)
11207 (inputs
11208 (list netpbm perl))
11209 (propagated-inputs
11210 (list r-affy
11211 r-annaffy
11212 r-biobase
11213 r-biocmanager
11214 r-gcrma
11215 r-multtest
11216 r-qvalue
11217 r-vsn))
11218 (home-page "https://www.bioconductor.org/")
11219 (synopsis "Bioconductor web interface")
11220 (description
11221 "This package provides an integrated web interface for doing microarray
11222 analysis using several of the Bioconductor packages. It is intended to be
11223 deployed as a centralized bioinformatics resource for use by many users.
11224 Currently only Affymetrix oligonucleotide analysis is supported.")
11225 (license license:gpl2+)))
11226
11227 (define-public r-zinbwave
11228 (package
11229 (name "r-zinbwave")
11230 (version "1.18.0")
11231 (source
11232 (origin
11233 (method url-fetch)
11234 (uri (bioconductor-uri "zinbwave" version))
11235 (sha256
11236 (base32
11237 "0vpz721sciw5b4ypxj5lj8p53gwkpfwlwkn6k3y8i65zg80p1g6i"))))
11238 (build-system r-build-system)
11239 (propagated-inputs
11240 (list r-biocparallel
11241 r-edger
11242 r-genefilter
11243 r-matrix
11244 r-singlecellexperiment
11245 r-softimpute
11246 r-summarizedexperiment))
11247 (native-inputs
11248 (list r-knitr))
11249 (home-page "https://bioconductor.org/packages/zinbwave")
11250 (synopsis "Zero-inflated negative binomial model for RNA-seq data")
11251 (description "This package implements a general and flexible zero-inflated
11252 negative binomial model that can be used to provide a low-dimensional
11253 representations of single-cell RNA-seq data. The model accounts for zero
11254 inflation (dropouts), over-dispersion, and the count nature of the data.
11255 The model also accounts for the difference in library sizes and optionally
11256 for batch effects and/or other covariates, avoiding the need for pre-normalize
11257 the data.")
11258 (license license:artistic2.0)))
11259
11260 (define-public r-zfpkm
11261 (package
11262 (name "r-zfpkm")
11263 (version "1.18.0")
11264 (source
11265 (origin
11266 (method url-fetch)
11267 (uri (bioconductor-uri "zFPKM" version))
11268 (sha256
11269 (base32
11270 "1h7g553rgb5mkmmsp8dyqqs9n9x17xmmcg3iijhb54nyrr2j1mji"))))
11271 (properties `((upstream-name . "zFPKM")))
11272 (build-system r-build-system)
11273 (propagated-inputs
11274 (list r-checkmate r-dplyr r-ggplot2 r-summarizedexperiment r-tidyr))
11275 (native-inputs
11276 (list r-knitr))
11277 (home-page "https://github.com/ronammar/zFPKM/")
11278 (synopsis "Functions to facilitate zFPKM transformations")
11279 (description
11280 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
11281 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
11282 24215113).")
11283 (license license:gpl3)))
11284
11285 (define-public r-rbowtie2
11286 (package
11287 (name "r-rbowtie2")
11288 (version "2.2.0")
11289 (source
11290 (origin
11291 (method url-fetch)
11292 (uri (bioconductor-uri "Rbowtie2" version))
11293 (sha256
11294 (base32
11295 "0dhdx27vrkhd4fak0qb5q9amlcpi97xhf3ry39zk0ifx5zpjynkg"))))
11296 (properties `((upstream-name . "Rbowtie2")))
11297 (build-system r-build-system)
11298 (propagated-inputs
11299 (list r-magrittr r-rsamtools))
11300 (inputs
11301 (list samtools zlib))
11302 (native-inputs
11303 (list r-knitr))
11304 (home-page "https://bioconductor.org/packages/Rbowtie2/")
11305 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
11306 (description
11307 "This package provides an R wrapper of the popular @code{bowtie2}
11308 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
11309 rapid adapter trimming, identification, and read merging.")
11310 (license license:gpl3+)))
11311
11312 (define-public r-progeny
11313 (package
11314 (name "r-progeny")
11315 (version "1.18.0")
11316 (source
11317 (origin
11318 (method url-fetch)
11319 (uri (bioconductor-uri "progeny" version))
11320 (sha256
11321 (base32
11322 "1rhy2l2yf9ndxlvff8756s6n8qyi42nz7a75lgygj5aqqckkj21b"))))
11323 (build-system r-build-system)
11324 (propagated-inputs
11325 (list r-biobase
11326 r-decoupler
11327 r-dplyr
11328 r-ggplot2
11329 r-ggrepel
11330 r-gridextra
11331 r-reshape2
11332 r-tidyr))
11333 (native-inputs
11334 (list r-knitr))
11335 (home-page "https://github.com/saezlab/progeny")
11336 (synopsis "Pathway responsive gene activity inference")
11337 (description
11338 "This package provides a function to infer pathway activity from gene
11339 expression. It contains the linear model inferred in the publication
11340 \"Perturbation-response genes reveal signaling footprints in cancer gene
11341 expression\".")
11342 (license license:asl2.0)))
11343
11344 (define-public r-arrmnormalization
11345 (package
11346 (name "r-arrmnormalization")
11347 (version "1.36.0")
11348 (source
11349 (origin
11350 (method url-fetch)
11351 (uri (bioconductor-uri "ARRmNormalization" version))
11352 (sha256
11353 (base32
11354 "1pnvw8psbql787m8lrmhd9xbmgkc3dbc70yfds1aggv50dk3yjk1"))))
11355 (properties
11356 `((upstream-name . "ARRmNormalization")))
11357 (build-system r-build-system)
11358 (propagated-inputs (list r-arrmdata))
11359 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
11360 (synopsis "Adaptive robust regression normalization for methylation data")
11361 (description
11362 "This is a package to perform the @dfn{Adaptive Robust Regression
11363 method} (ARRm) for the normalization of methylation data from the Illumina
11364 Infinium HumanMethylation 450k assay.")
11365 (license license:artistic2.0)))
11366
11367 (define-public r-biocfilecache
11368 (package
11369 (name "r-biocfilecache")
11370 (version "2.4.0")
11371 (source
11372 (origin
11373 (method url-fetch)
11374 (uri (bioconductor-uri "BiocFileCache" version))
11375 (sha256
11376 (base32
11377 "1bdbmlixrd8wvs25nmzdksq5hwnsxf8b6ds9qwx01h284vky5vsw"))))
11378 (properties `((upstream-name . "BiocFileCache")))
11379 (build-system r-build-system)
11380 (propagated-inputs
11381 (list r-curl
11382 r-dbi
11383 r-dbplyr
11384 r-dplyr
11385 r-filelock
11386 r-httr
11387 r-rappdirs
11388 r-rsqlite))
11389 (native-inputs
11390 (list r-knitr))
11391 (home-page "https://bioconductor.org/packages/BiocFileCache/")
11392 (synopsis "Manage files across sessions")
11393 (description
11394 "This package creates a persistent on-disk cache of files that the user
11395 can add, update, and retrieve. It is useful for managing resources (such as
11396 custom Txdb objects) that are costly or difficult to create, web resources,
11397 and data files used across sessions.")
11398 (license license:artistic2.0)))
11399
11400 (define-public r-iclusterplus
11401 (package
11402 (name "r-iclusterplus")
11403 (version "1.32.0")
11404 (source
11405 (origin
11406 (method url-fetch)
11407 (uri (bioconductor-uri "iClusterPlus" version))
11408 (sha256
11409 (base32
11410 "0xzx3vly3p99zc5a69pra4jjp8d3bdhx7dl1l76w459cs58zy0sm"))))
11411 (properties `((upstream-name . "iClusterPlus")))
11412 (build-system r-build-system)
11413 (native-inputs (list gfortran))
11414 (home-page "https://bioconductor.org/packages/iClusterPlus/")
11415 (synopsis "Integrative clustering of multi-type genomic data")
11416 (description
11417 "iClusterPlus is developed for integrative clustering analysis of
11418 multi-type genomic data and is an enhanced version of iCluster proposed and
11419 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
11420 from the experiments where biological samples (e.g. tumor samples) are
11421 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
11422 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
11423 on. In the iClusterPlus model, binary observations such as somatic mutation
11424 are modeled as Binomial processes; categorical observations such as copy
11425 number states are realizations of Multinomial random variables; counts are
11426 modeled as Poisson random processes; and continuous measures are modeled by
11427 Gaussian distributions.")
11428 (license license:gpl2+)))
11429
11430 (define-public r-rbowtie
11431 (package
11432 (name "r-rbowtie")
11433 (version "1.36.0")
11434 (source
11435 (origin
11436 (method url-fetch)
11437 (uri (bioconductor-uri "Rbowtie" version))
11438 (sha256
11439 (base32
11440 "1ya1irwshsyy9l1fj51b04nv1ahq7a47ck7q19h2cly6yskc4x1q"))))
11441 (properties `((upstream-name . "Rbowtie")))
11442 (build-system r-build-system)
11443 (arguments
11444 `(#:phases
11445 ;; Disable unsupported `popcnt' instructions on
11446 ;; architectures other than x86_64
11447 ,(if (string-prefix? "x86_64"
11448 (or (%current-target-system)
11449 (%current-system)))
11450 '%standard-phases
11451 '(modify-phases %standard-phases
11452 (add-after 'unpack 'patch-sources
11453 (lambda _
11454 (setenv "POPCNT_CAPABILITY" "0")))))))
11455 (inputs (list zlib))
11456 (native-inputs
11457 (list r-knitr))
11458 (home-page "https://bioconductor.org/packages/Rbowtie/")
11459 (synopsis "R bowtie wrapper")
11460 (description
11461 "This package provides an R wrapper around the popular bowtie short read
11462 aligner and around SpliceMap, a de novo splice junction discovery and
11463 alignment tool.")
11464 (license license:artistic2.0)))
11465
11466 (define-public r-sgseq
11467 (package
11468 (name "r-sgseq")
11469 (version "1.30.0")
11470 (source
11471 (origin
11472 (method url-fetch)
11473 (uri (bioconductor-uri "SGSeq" version))
11474 (sha256
11475 (base32
11476 "0hz45367i70wl97silnimicdvs3g41zyf8syc6igz6471wbwkxwp"))))
11477 (properties `((upstream-name . "SGSeq")))
11478 (build-system r-build-system)
11479 (propagated-inputs
11480 (list r-annotationdbi
11481 r-biocgenerics
11482 r-biostrings
11483 r-genomeinfodb
11484 r-genomicalignments
11485 r-genomicfeatures
11486 r-genomicranges
11487 r-igraph
11488 r-iranges
11489 r-rsamtools
11490 r-rtracklayer
11491 r-runit
11492 r-s4vectors
11493 r-summarizedexperiment))
11494 (native-inputs
11495 (list r-knitr))
11496 (home-page "https://bioconductor.org/packages/SGSeq/")
11497 (synopsis "Splice event prediction and quantification from RNA-seq data")
11498 (description
11499 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
11500 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
11501 represented as a splice graph, which can be obtained from existing annotation
11502 or predicted from the mapped sequence reads. Splice events are identified
11503 from the graph and are quantified locally using structurally compatible reads
11504 at the start or end of each splice variant. The software includes functions
11505 for splice event prediction, quantification, visualization and
11506 interpretation.")
11507 (license license:artistic2.0)))
11508
11509 (define-public r-rhisat2
11510 (package
11511 (name "r-rhisat2")
11512 (version "1.12.0")
11513 (source
11514 (origin
11515 (method url-fetch)
11516 (uri (bioconductor-uri "Rhisat2" version))
11517 (sha256
11518 (base32
11519 "0hzair41l47kzykymd169a34pfhb98vrjgkgdf15m17csyz7pnv7"))))
11520 (properties `((upstream-name . "Rhisat2")))
11521 (build-system r-build-system)
11522 (arguments
11523 `(#:phases
11524 (modify-phases %standard-phases
11525 (add-after 'unpack 'make-reproducible
11526 (lambda _
11527 (substitute* "src/Makefile"
11528 (("`hostname`") "guix")
11529 (("`date`") "0")
11530 ;; Avoid shelling out to "which".
11531 (("^CC =.*") (which "gcc"))
11532 (("^CPP =.*") (which "g++")))
11533 #t)))))
11534 (propagated-inputs
11535 (list r-genomicfeatures r-genomicranges r-sgseq))
11536 (native-inputs
11537 (list r-knitr))
11538 (home-page "https://github.com/fmicompbio/Rhisat2")
11539 (synopsis "R Wrapper for HISAT2 sequence aligner")
11540 (description
11541 "This package provides an R interface to the HISAT2 spliced short-read
11542 aligner by Kim et al. (2015). The package contains wrapper functions to
11543 create a genome index and to perform the read alignment to the generated
11544 index.")
11545 (license license:gpl3)))
11546
11547 (define-public r-quasr
11548 (package
11549 (name "r-quasr")
11550 (version "1.36.0")
11551 (source
11552 (origin
11553 (method url-fetch)
11554 (uri (bioconductor-uri "QuasR" version))
11555 (sha256
11556 (base32
11557 "1m0c0rdakkdn4rr6dh51c6rs40cbxkvz93n6s0m2kc6fqjv9zplf"))))
11558 (properties `((upstream-name . "QuasR")))
11559 (build-system r-build-system)
11560 (propagated-inputs
11561 (list r-annotationdbi
11562 r-biobase
11563 r-biocgenerics
11564 r-biocparallel
11565 r-biostrings
11566 r-bsgenome
11567 r-genomeinfodb
11568 r-genomicfeatures
11569 r-genomicfiles
11570 r-genomicranges
11571 r-iranges
11572 r-rbowtie
11573 r-rhtslib
11574 r-rsamtools
11575 r-rtracklayer
11576 r-s4vectors
11577 r-shortread))
11578 (native-inputs
11579 (list r-knitr))
11580 (home-page "https://bioconductor.org/packages/QuasR/")
11581 (synopsis "Quantify and annotate short reads in R")
11582 (description
11583 "This package provides a framework for the quantification and analysis of
11584 short genomic reads. It covers a complete workflow starting from raw sequence
11585 reads, over creation of alignments and quality control plots, to the
11586 quantification of genomic regions of interest.")
11587 (license license:gpl2)))
11588
11589 (define-public r-rqc
11590 (package
11591 (name "r-rqc")
11592 (version "1.30.0")
11593 (source
11594 (origin
11595 (method url-fetch)
11596 (uri (bioconductor-uri "Rqc" version))
11597 (sha256
11598 (base32
11599 "11j8m69zdcmpjb3xzr4s8sqmv8aqgl8q7k81gnd09l3nyjzy0h1k"))))
11600 (properties `((upstream-name . "Rqc")))
11601 (build-system r-build-system)
11602 (propagated-inputs
11603 (list r-biocgenerics
11604 r-biocparallel
11605 r-biocstyle
11606 r-biostrings
11607 r-biovizbase
11608 r-genomicalignments
11609 r-genomicfiles
11610 r-ggplot2
11611 r-iranges
11612 r-knitr
11613 r-markdown
11614 r-plyr
11615 r-rcpp
11616 r-reshape2
11617 r-rsamtools
11618 r-s4vectors
11619 r-shiny
11620 r-shortread))
11621 (native-inputs
11622 (list r-knitr))
11623 (home-page "https://github.com/labbcb/Rqc")
11624 (synopsis "Quality control tool for high-throughput sequencing data")
11625 (description
11626 "Rqc is an optimized tool designed for quality control and assessment of
11627 high-throughput sequencing data. It performs parallel processing of entire
11628 files and produces a report which contains a set of high-resolution
11629 graphics.")
11630 (license license:gpl2+)))
11631
11632 (define-public r-birewire
11633 (package
11634 (name "r-birewire")
11635 (version "3.28.0")
11636 (source
11637 (origin
11638 (method url-fetch)
11639 (uri (bioconductor-uri "BiRewire" version))
11640 (sha256
11641 (base32
11642 "0r3i7n45qgj8wzdsx8wmfk0lc4xbcvxvmfziiqzig7r706q2c2hm"))))
11643 (properties `((upstream-name . "BiRewire")))
11644 (build-system r-build-system)
11645 (propagated-inputs
11646 (list r-igraph r-matrix r-rtsne r-slam))
11647 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
11648 (synopsis "Tools for randomization of bipartite graphs")
11649 (description
11650 "This package provides functions for bipartite network rewiring through N
11651 consecutive switching steps and for the computation of the minimal number of
11652 switching steps to be performed in order to maximise the dissimilarity with
11653 respect to the original network. It includes functions for the analysis of
11654 the introduced randomness across the switching steps and several other
11655 routines to analyse the resulting networks and their natural projections.")
11656 (license license:gpl3)))
11657
11658 (define-public r-birta
11659 (package
11660 (name "r-birta")
11661 (version "1.31.0")
11662 (source
11663 (origin
11664 (method url-fetch)
11665 (uri (bioconductor-uri "birta" version))
11666 (sha256
11667 (base32
11668 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
11669 (build-system r-build-system)
11670 (propagated-inputs
11671 (list r-biobase r-limma r-mass))
11672 (home-page "https://bioconductor.org/packages/birta")
11673 (synopsis "Bayesian inference of regulation of transcriptional activity")
11674 (description
11675 "Expression levels of mRNA molecules are regulated by different
11676 processes, comprising inhibition or activation by transcription factors and
11677 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
11678 Inference of Regulation of Transcriptional Activity) uses the regulatory
11679 networks of transcription factors and miRNAs together with mRNA and miRNA
11680 expression data to predict switches in regulatory activity between two
11681 conditions. A Bayesian network is used to model the regulatory structure and
11682 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
11683 (license license:gpl2+)))
11684
11685 (define-public r-multidataset
11686 (package
11687 (name "r-multidataset")
11688 (version "1.24.0")
11689 (source
11690 (origin
11691 (method url-fetch)
11692 (uri (bioconductor-uri "MultiDataSet" version))
11693 (sha256
11694 (base32
11695 "0rfs6jkzh1i4mj1pgfk4lwzmcl8pcwizra3q3282x3d8h2g98qnf"))))
11696 (properties `((upstream-name . "MultiDataSet")))
11697 (build-system r-build-system)
11698 (propagated-inputs
11699 (list r-biobase
11700 r-biocgenerics
11701 r-genomicranges
11702 r-ggplot2
11703 r-ggrepel
11704 r-iranges
11705 r-limma
11706 r-qqman
11707 r-s4vectors
11708 r-summarizedexperiment))
11709 (native-inputs
11710 (list r-knitr))
11711 (home-page "https://bioconductor.org/packages/MultiDataSet/")
11712 (synopsis "Implementation of MultiDataSet and ResultSet")
11713 (description
11714 "This package provides an implementation of the BRGE's (Bioinformatic
11715 Research Group in Epidemiology from Center for Research in Environmental
11716 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
11717 integrating multi omics data sets and ResultSet is a container for omics
11718 results. This package contains base classes for MEAL and rexposome
11719 packages.")
11720 (license license:expat)))
11721
11722 (define-public r-ropls
11723 (package
11724 (name "r-ropls")
11725 (version "1.28.2")
11726 (source
11727 (origin
11728 (method url-fetch)
11729 (uri (bioconductor-uri "ropls" version))
11730 (sha256
11731 (base32
11732 "07gpx15r8c3wljiwxnff2zp7wxbhzz9r7njk8zg8hpy2q5qm3i6c"))))
11733 (build-system r-build-system)
11734 (propagated-inputs
11735 (list r-biobase
11736 r-multiassayexperiment
11737 r-multidataset
11738 r-summarizedexperiment))
11739 (native-inputs
11740 (list r-knitr)) ; for vignettes
11741 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
11742 (synopsis "Multivariate analysis and feature selection of omics data")
11743 (description
11744 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
11745 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
11746 regression, classification, and feature selection of omics data where the
11747 number of variables exceeds the number of samples and with multicollinearity
11748 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
11749 separately model the variation correlated (predictive) to the factor of
11750 interest and the uncorrelated (orthogonal) variation. While performing
11751 similarly to PLS, OPLS facilitates interpretation.
11752
11753 This package provides imlementations of PCA, PLS, and OPLS for multivariate
11754 analysis and feature selection of omics data. In addition to scores, loadings
11755 and weights plots, the package provides metrics and graphics to determine the
11756 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
11757 validity of the model by permutation testing, detect outliers, and perform
11758 feature selection (e.g. with Variable Importance in Projection or regression
11759 coefficients).")
11760 (license license:cecill)))
11761
11762 (define-public r-biosigner
11763 (package
11764 (name "r-biosigner")
11765 (version "1.24.2")
11766 (source
11767 (origin
11768 (method url-fetch)
11769 (uri (bioconductor-uri "biosigner" version))
11770 (sha256
11771 (base32
11772 "0vdv2by3qv7y8vzr8qgg7apwwgsa0fhlfrhzns7g3nas7883c89m"))))
11773 (build-system r-build-system)
11774 (propagated-inputs
11775 (list r-biobase
11776 r-e1071
11777 r-multiassayexperiment
11778 r-multidataset
11779 r-randomforest
11780 r-ropls
11781 r-summarizedexperiment))
11782 (native-inputs
11783 (list r-knitr))
11784 (home-page "https://bioconductor.org/packages/biosigner/")
11785 (synopsis "Signature discovery from omics data")
11786 (description
11787 "Feature selection is critical in omics data analysis to extract
11788 restricted and meaningful molecular signatures from complex and high-dimension
11789 data, and to build robust classifiers. This package implements a method to
11790 assess the relevance of the variables for the prediction performances of the
11791 classifier. The approach can be run in parallel with the PLS-DA, Random
11792 Forest, and SVM binary classifiers. The signatures and the corresponding
11793 'restricted' models are returned, enabling future predictions on new
11794 datasets.")
11795 (license license:cecill)))
11796
11797 (define-public r-annotatr
11798 (package
11799 (name "r-annotatr")
11800 (version "1.22.0")
11801 (source
11802 (origin
11803 (method url-fetch)
11804 (uri (bioconductor-uri "annotatr" version))
11805 (sha256
11806 (base32
11807 "1fbax9v3d486c8lwf3yfjbf4w7zf53wmdpxk2clwm8ngm7w0pqm0"))))
11808 (build-system r-build-system)
11809 (propagated-inputs
11810 (list r-annotationdbi
11811 r-annotationhub
11812 r-dplyr
11813 r-genomeinfodb
11814 r-genomicfeatures
11815 r-genomicranges
11816 r-ggplot2
11817 r-iranges
11818 r-readr
11819 r-regioner
11820 r-reshape2
11821 r-rtracklayer
11822 r-s4vectors))
11823 (native-inputs
11824 (list r-knitr))
11825 (home-page "https://bioconductor.org/packages/annotatr/")
11826 (synopsis "Annotation of genomic regions to genomic annotations")
11827 (description
11828 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
11829 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
11830 to investigate the intersecting genomic annotations. Such annotations include
11831 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
11832 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
11833 enhancers. The annotatr package provides an easy way to summarize and
11834 visualize the intersection of genomic sites/regions with genomic
11835 annotations.")
11836 (license license:gpl3)))
11837
11838 (define-public r-rsubread
11839 (package
11840 (name "r-rsubread")
11841 (version "2.10.5")
11842 (source
11843 (origin
11844 (method url-fetch)
11845 (uri (bioconductor-uri "Rsubread" version))
11846 (sha256
11847 (base32
11848 "0n9qqbkj2lgxkia6kfpfz06wbc1lvw24qyvn88f48zw5nh0rsrs2"))))
11849 (properties `((upstream-name . "Rsubread")))
11850 (build-system r-build-system)
11851 (inputs (list zlib))
11852 (propagated-inputs
11853 (list r-matrix))
11854 (home-page "https://bioconductor.org/packages/Rsubread/")
11855 (synopsis "Subread sequence alignment and counting for R")
11856 (description
11857 "This package provides tools for alignment, quantification and analysis
11858 of second and third generation sequencing data. It includes functionality for
11859 read mapping, read counting, SNP calling, structural variant detection and
11860 gene fusion discovery. It can be applied to all major sequencing techologies
11861 and to both short and long sequence reads.")
11862 (license license:gpl3)))
11863
11864 (define-public r-flowutils
11865 (package
11866 (name "r-flowutils")
11867 (version "1.59.0")
11868 (source
11869 (origin
11870 (method url-fetch)
11871 (uri (bioconductor-uri "flowUtils" version))
11872 (sha256
11873 (base32
11874 "11x362dqb9mjlsbq6g1qkb8hhnkvm22z5s3wkgmpyy9kyifjkm26"))))
11875 (properties `((upstream-name . "flowUtils")))
11876 (build-system r-build-system)
11877 (propagated-inputs
11878 (list r-biobase
11879 r-corpcor
11880 r-flowcore
11881 r-graph
11882 r-runit
11883 r-xml))
11884 (home-page "https://github.com/jspidlen/flowUtils")
11885 (synopsis "Utilities for flow cytometry")
11886 (description
11887 "This package provides utilities for flow cytometry data.")
11888 (license license:artistic2.0)))
11889
11890 (define-public r-consensusclusterplus
11891 (package
11892 (name "r-consensusclusterplus")
11893 (version "1.60.0")
11894 (source
11895 (origin
11896 (method url-fetch)
11897 (uri (bioconductor-uri "ConsensusClusterPlus" version))
11898 (sha256
11899 (base32
11900 "1021cix4mr9qsafskw4kk1l3wdzx9pk2gcwjifz6f4zqxss9v07p"))))
11901 (properties
11902 `((upstream-name . "ConsensusClusterPlus")))
11903 (build-system r-build-system)
11904 (propagated-inputs
11905 (list r-all r-biobase r-cluster))
11906 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
11907 (synopsis "Clustering algorithm")
11908 (description
11909 "This package provides an implementation of an algorithm for determining
11910 cluster count and membership by stability evidence in unsupervised analysis.")
11911 (license license:gpl2)))
11912
11913 ;; This is the latest commit and it solves a bug from the latest release.
11914 (define-public r-cycombine
11915 (let ((commit "f18504bc83ff5daee2b5eb4b28f09abdaaa66698") (revision "1"))
11916 (package
11917 (name "r-cycombine")
11918 (version (git-version "0.2.6" revision commit))
11919 (source (origin
11920 (method git-fetch)
11921 (uri (git-reference
11922 (url "https://github.com/biosurf/cyCombine")
11923 (commit commit)))
11924 (file-name (git-file-name name version))
11925 (sha256
11926 (base32
11927 "1fiwnik8iahg01732fik85xhz359x32f1xc59h443pdf7jancskm"))))
11928 (properties `((upstream-name . "cyCombine")))
11929 (build-system r-build-system)
11930 (propagated-inputs
11931 (list r-biobase
11932 r-cytolib
11933 r-dplyr
11934 r-flowcore
11935 r-ggplot2
11936 r-knitr
11937 r-kohonen
11938 r-magrittr
11939 r-purrr
11940 r-rcolorbrewer
11941 r-readr
11942 r-readxl
11943 r-stringr
11944 r-sva
11945 r-tibble
11946 r-tidyr))
11947 (native-inputs (list r-knitr))
11948 (home-page "https://github.com/biosurf/cyCombine")
11949 (synopsis "Integration of single-cell cytometry datasets")
11950 (description
11951 "This package provides a method for combining single-cell cytometry
11952 datasets, which increases the analytical flexibility and the statistical power
11953 of the analyses while minimizing technical noise.")
11954 (license license:expat))))
11955
11956 (define-public r-cytolib
11957 (package
11958 (name "r-cytolib")
11959 (version "2.8.0")
11960 (source
11961 (origin
11962 (method url-fetch)
11963 (uri (bioconductor-uri "cytolib" version))
11964 (sha256
11965 (base32
11966 "18b532sicca5l8sn334prrm7g1z1cakiwydccz4i833168pnsjyg"))))
11967 (properties `((upstream-name . "cytolib")))
11968 (build-system r-build-system)
11969 (native-inputs
11970 (list r-knitr))
11971 (propagated-inputs
11972 (list r-bh
11973 r-rcpp
11974 r-rcpparmadillo
11975 r-rcppparallel
11976 r-rhdf5lib
11977 r-rprotobuflib))
11978 (home-page "https://bioconductor.org/packages/cytolib/")
11979 (synopsis "C++ infrastructure for working with gated cytometry")
11980 (description
11981 "This package provides the core data structure and API to represent and
11982 interact with gated cytometry data.")
11983 (license license:artistic2.0)))
11984
11985 (define-public r-flowcore
11986 (package
11987 (name "r-flowcore")
11988 (version "2.8.0")
11989 (source
11990 (origin
11991 (method url-fetch)
11992 (uri (bioconductor-uri "flowCore" version))
11993 (sha256
11994 (base32
11995 "17nci6rc4i0vs0ibw5q8zy30ap7q4550qpq4ifkbblqbyzxlzkhr"))))
11996 (properties `((upstream-name . "flowCore")))
11997 (build-system r-build-system)
11998 (propagated-inputs
11999 (list r-bh
12000 r-biobase
12001 r-biocgenerics
12002 r-cytolib
12003 r-matrixstats
12004 r-rcpp
12005 r-rcpparmadillo
12006 r-rprotobuflib
12007 r-s4vectors))
12008 (native-inputs
12009 (list r-knitr))
12010 (home-page "https://bioconductor.org/packages/flowCore")
12011 (synopsis "Basic structures for flow cytometry data")
12012 (description
12013 "This package provides S4 data structures and basic functions to deal
12014 with flow cytometry data.")
12015 (license license:artistic2.0)))
12016
12017 (define-public r-flowmeans
12018 (package
12019 (name "r-flowmeans")
12020 (version "1.56.0")
12021 (source
12022 (origin
12023 (method url-fetch)
12024 (uri (bioconductor-uri "flowMeans" version))
12025 (sha256
12026 (base32
12027 "1n4li43ydwwf5gvgmdml4ba28cxymybg5wnz6jvp35n959fwxv6y"))))
12028 (properties `((upstream-name . "flowMeans")))
12029 (build-system r-build-system)
12030 (propagated-inputs
12031 (list r-biobase r-feature r-flowcore r-rrcov))
12032 (home-page "https://bioconductor.org/packages/flowMeans")
12033 (synopsis "Non-parametric flow cytometry data gating")
12034 (description
12035 "This package provides tools to identify cell populations in Flow
12036 Cytometry data using non-parametric clustering and segmented-regression-based
12037 change point detection.")
12038 (license license:artistic2.0)))
12039
12040 (define-public r-ncdfflow
12041 (package
12042 (name "r-ncdfflow")
12043 (version "2.42.1")
12044 (source
12045 (origin
12046 (method url-fetch)
12047 (uri (bioconductor-uri "ncdfFlow" version))
12048 (sha256
12049 (base32
12050 "0759xvkp22dnbhq5wpgvpk8p61w0d50r5jrbh9n7sj8sga4lvvv7"))))
12051 (properties `((upstream-name . "ncdfFlow")))
12052 (build-system r-build-system)
12053 (propagated-inputs
12054 (list r-bh
12055 r-biobase
12056 r-biocgenerics
12057 r-flowcore
12058 r-rcpp
12059 r-rcpparmadillo
12060 r-rhdf5lib
12061 r-zlibbioc))
12062 (native-inputs
12063 (list r-knitr))
12064 (home-page "https://bioconductor.org/packages/ncdfFlow/")
12065 (synopsis "HDF5 based storage for flow cytometry data")
12066 (description
12067 "This package provides HDF5 storage based methods and functions for
12068 manipulation of flow cytometry data.")
12069 (license license:artistic2.0)))
12070
12071 (define-public r-ggcyto
12072 (package
12073 (name "r-ggcyto")
12074 (version "1.24.1")
12075 (source
12076 (origin
12077 (method url-fetch)
12078 (uri (bioconductor-uri "ggcyto" version))
12079 (sha256
12080 (base32
12081 "1cw60x78vqzjmgb5xd3sxyz6zwdaffp3byk34z8d4b3wkh530325"))))
12082 (properties `((upstream-name . "ggcyto")))
12083 (build-system r-build-system)
12084 (propagated-inputs
12085 (list r-data-table
12086 r-flowcore
12087 r-flowworkspace
12088 r-ggplot2
12089 r-gridextra
12090 r-hexbin
12091 r-ncdfflow
12092 r-plyr
12093 r-rcolorbrewer
12094 r-rlang
12095 r-scales))
12096 (native-inputs
12097 (list r-knitr))
12098 (home-page "https://github.com/RGLab/ggcyto/issues")
12099 (synopsis "Visualize Cytometry data with ggplot")
12100 (description
12101 "With the dedicated fortify method implemented for @code{flowSet},
12102 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
12103 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
12104 and some custom layers also make it easy to add gates and population
12105 statistics to the plot.")
12106 (license license:artistic2.0)))
12107
12108 (define-public r-flowviz
12109 (package
12110 (name "r-flowviz")
12111 (version "1.60.2")
12112 (source
12113 (origin
12114 (method url-fetch)
12115 (uri (bioconductor-uri "flowViz" version))
12116 (sha256
12117 (base32
12118 "08rwzc26jns0wwjsqqmf60bpxsckr5x8skdn9iwl8grp81npcc95"))))
12119 (properties `((upstream-name . "flowViz")))
12120 (build-system r-build-system)
12121 (propagated-inputs
12122 (list r-biobase
12123 r-flowcore
12124 r-hexbin
12125 r-idpmisc
12126 r-kernsmooth
12127 r-lattice
12128 r-latticeextra
12129 r-mass
12130 r-rcolorbrewer))
12131 (native-inputs
12132 (list r-knitr))
12133 (home-page "https://bioconductor.org/packages/flowViz/")
12134 (synopsis "Visualization for flow cytometry")
12135 (description
12136 "This package provides visualization tools for flow cytometry data.")
12137 (license license:artistic2.0)))
12138
12139 (define-public r-flowclust
12140 (package
12141 (name "r-flowclust")
12142 (version "3.34.0")
12143 (source
12144 (origin
12145 (method url-fetch)
12146 (uri (bioconductor-uri "flowClust" version))
12147 (sha256
12148 (base32
12149 "055vm9s8aha92znhpjqkipzprw8bkrinwjaik4ygmhym7w6vbblk"))))
12150 (properties `((upstream-name . "flowClust")))
12151 (build-system r-build-system)
12152 (arguments
12153 `(#:configure-flags
12154 (list "--configure-args=--enable-bundled-gsl=no")))
12155 (propagated-inputs
12156 (list r-biobase
12157 r-biocgenerics
12158 r-flowcore
12159 r-graph))
12160 (inputs
12161 (list gsl))
12162 (native-inputs
12163 (list pkg-config r-knitr))
12164 (home-page "https://bioconductor.org/packages/flowClust")
12165 (synopsis "Clustering for flow cytometry")
12166 (description
12167 "This package provides robust model-based clustering using a t-mixture
12168 model with Box-Cox transformation.")
12169 (license license:artistic2.0)))
12170
12171 ;; TODO: this package bundles an old version of protobuf. It's not easy to
12172 ;; make it use our protobuf package instead.
12173 (define-public r-rprotobuflib
12174 (package
12175 (name "r-rprotobuflib")
12176 (version "2.8.0")
12177 (source
12178 (origin
12179 (method url-fetch)
12180 (uri (bioconductor-uri "RProtoBufLib" version))
12181 (sha256
12182 (base32
12183 "1mvqwrm1y0vij66gdwgpf5l1h660wsi9jzjfs4ihw3zm4cb0q5pp"))))
12184 (properties `((upstream-name . "RProtoBufLib")))
12185 (build-system r-build-system)
12186 (arguments
12187 `(#:phases
12188 (modify-phases %standard-phases
12189 (add-after 'unpack 'unpack-bundled-sources
12190 (lambda _
12191 (with-directory-excursion "src"
12192 (invoke "tar" "xf" "protobuf-3.8.0.tar.gz")))))))
12193 (native-inputs
12194 (list r-knitr))
12195 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
12196 (synopsis "C++ headers and static libraries of Protocol buffers")
12197 (description
12198 "This package provides the headers and static library of Protocol buffers
12199 for other R packages to compile and link against.")
12200 (license license:bsd-3)))
12201
12202 (define-public r-flowworkspace
12203 (package
12204 (name "r-flowworkspace")
12205 (version "4.8.0")
12206 (source
12207 (origin
12208 (method url-fetch)
12209 (uri (bioconductor-uri "flowWorkspace" version))
12210 (sha256
12211 (base32
12212 "0riyi9628cx1j5x6hmdd28yq75xh25j8ckcdz8dnb94dpvnhaqss"))))
12213 (properties `((upstream-name . "flowWorkspace")))
12214 (build-system r-build-system)
12215 (propagated-inputs
12216 (list r-aws-s3
12217 r-aws-signature
12218 r-bh
12219 r-biobase
12220 r-biocgenerics
12221 r-cytolib
12222 r-data-table
12223 r-delayedarray
12224 r-digest
12225 r-dplyr
12226 r-flowcore
12227 r-ggplot2
12228 r-graph
12229 r-lattice
12230 r-latticeextra
12231 r-matrixstats
12232 r-ncdfflow
12233 r-rbgl
12234 r-rcpp
12235 r-rcpparmadillo
12236 r-rcppparallel
12237 r-rgraphviz
12238 r-rhdf5lib
12239 r-rprotobuflib
12240 r-s4vectors
12241 r-scales
12242 r-xml))
12243 (native-inputs
12244 (list r-knitr))
12245 (home-page "https://bioconductor.org/packages/flowWorkspace/")
12246 (synopsis "Infrastructure for working with cytometry data")
12247 (description
12248 "This package is designed to facilitate comparison of automated gating
12249 methods against manual gating done in flowJo. This package allows you to
12250 import basic flowJo workspaces into BioConductor and replicate the gating from
12251 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
12252 samples, compensation, and transformation are performed so that the output
12253 matches the flowJo analysis.")
12254 (license license:artistic2.0)))
12255
12256 (define-public r-flowstats
12257 (package
12258 (name "r-flowstats")
12259 (version "4.8.2")
12260 (source
12261 (origin
12262 (method url-fetch)
12263 (uri (bioconductor-uri "flowStats" version))
12264 (sha256
12265 (base32
12266 "1x01gg5ifxh3wp0cp5a23lr9v6l9q5qg8145q2pgn904jkx5wldc"))))
12267 (properties `((upstream-name . "flowStats")))
12268 (build-system r-build-system)
12269 (propagated-inputs
12270 (list r-biobase
12271 r-biocgenerics
12272 r-cluster
12273 r-corpcor
12274 r-fda
12275 r-flowcore
12276 r-flowviz
12277 r-flowworkspace
12278 r-kernsmooth
12279 r-ks
12280 r-lattice
12281 r-mass
12282 r-mnormt
12283 r-ncdfflow
12284 r-rcolorbrewer
12285 r-rrcov))
12286 (home-page "http://www.github.com/RGLab/flowStats")
12287 (synopsis "Statistical methods for the analysis of flow cytometry data")
12288 (description
12289 "This package provides methods and functionality to analyze flow data
12290 that is beyond the basic infrastructure provided by the @code{flowCore}
12291 package.")
12292 (license license:artistic2.0)))
12293
12294 (define-public r-opencyto
12295 (package
12296 (name "r-opencyto")
12297 (version "2.8.4")
12298 (source
12299 (origin
12300 (method url-fetch)
12301 (uri (bioconductor-uri "openCyto" version))
12302 (sha256
12303 (base32
12304 "0fa3hbbrjw458dhmxdjypcjgyxmphp9kdr3r62qqf803i4wsxfk0"))))
12305 (properties `((upstream-name . "openCyto")))
12306 (build-system r-build-system)
12307 (propagated-inputs
12308 (list r-biobase
12309 r-biocgenerics
12310 r-clue
12311 r-data-table
12312 r-flowclust
12313 r-flowcore
12314 r-flowstats
12315 r-flowviz
12316 r-flowworkspace
12317 r-graph
12318 r-gtools
12319 r-ks
12320 r-lattice
12321 r-mass
12322 r-ncdfflow
12323 r-plyr
12324 r-r-utils
12325 r-rbgl
12326 r-rcolorbrewer
12327 r-rcpp
12328 r-rrcov))
12329 (native-inputs
12330 (list r-knitr))
12331 (home-page "https://bioconductor.org/packages/openCyto")
12332 (synopsis "Hierarchical gating pipeline for flow cytometry data")
12333 (description
12334 "This package is designed to facilitate the automated gating methods in a
12335 sequential way to mimic the manual gating strategy.")
12336 (license license:artistic2.0)))
12337
12338 (define-public r-cytoml
12339 (package
12340 (name "r-cytoml")
12341 (version "2.8.1")
12342 (source
12343 (origin
12344 (method url-fetch)
12345 (uri (bioconductor-uri "CytoML" version))
12346 (sha256
12347 (base32
12348 "01yzdljpyq92bv318b5qs29f190226zwbqjnckvxmbb0k8m7s5hw"))))
12349 (properties `((upstream-name . "CytoML")))
12350 (build-system r-build-system)
12351 (inputs
12352 (list libxml2 zlib))
12353 (propagated-inputs
12354 (list r-base64enc
12355 r-bh
12356 r-biobase
12357 r-corpcor
12358 r-cytolib
12359 r-data-table
12360 r-dplyr
12361 r-flowcore
12362 r-flowworkspace
12363 r-ggcyto
12364 r-graph
12365 r-jsonlite
12366 r-lattice
12367 r-opencyto
12368 r-plyr
12369 r-rbgl
12370 r-rcpp
12371 r-rcpparmadillo
12372 r-rcppparallel
12373 r-rgraphviz
12374 r-rhdf5lib
12375 r-rprotobuflib
12376 r-runit
12377 r-tibble
12378 r-xml
12379 r-xml2
12380 r-yaml))
12381 (native-inputs
12382 (list r-knitr))
12383 (home-page "https://github.com/RGLab/CytoML")
12384 (synopsis "GatingML interface for cross platform cytometry data sharing")
12385 (description
12386 "This package provides an interface to implementations of the GatingML2.0
12387 standard to exchange gated cytometry data with other software platforms.")
12388 (license license:artistic2.0)))
12389
12390 (define-public r-flowsom
12391 (package
12392 (name "r-flowsom")
12393 (version "2.4.0")
12394 (source
12395 (origin
12396 (method url-fetch)
12397 (uri (bioconductor-uri "FlowSOM" version))
12398 (sha256
12399 (base32
12400 "0balsds5mm981cqamdjv3ndq1y9arharisd6f2lrpkzgvwawa645"))))
12401 (properties `((upstream-name . "FlowSOM")))
12402 (build-system r-build-system)
12403 (propagated-inputs
12404 (list r-biocgenerics
12405 r-colorramps
12406 r-consensusclusterplus
12407 r-cytoml
12408 r-dplyr
12409 r-flowcore
12410 r-flowworkspace
12411 r-ggforce
12412 r-ggnewscale
12413 r-ggplot2
12414 r-ggpointdensity
12415 r-ggpubr
12416 r-ggrepel
12417 r-igraph
12418 r-magrittr
12419 r-pheatmap
12420 r-rcolorbrewer
12421 r-rlang
12422 r-rtsne
12423 r-scattermore
12424 r-tidyr
12425 r-xml))
12426 (home-page "https://bioconductor.org/packages/FlowSOM/")
12427 (synopsis "Visualize and interpret cytometry data")
12428 (description
12429 "FlowSOM offers visualization options for cytometry data, by using
12430 self-organizing map clustering and minimal spanning trees.")
12431 (license license:gpl2+)))
12432
12433 (define-public r-mixomics
12434 (package
12435 (name "r-mixomics")
12436 (version "6.20.0")
12437 (source
12438 (origin
12439 (method url-fetch)
12440 (uri (bioconductor-uri "mixOmics" version))
12441 (sha256
12442 (base32
12443 "0fwc2w7frj0bjijzfckkxf7ipx1z13gw7907q4zr5qfl9mh127w7"))))
12444 (properties `((upstream-name . "mixOmics")))
12445 (build-system r-build-system)
12446 (propagated-inputs
12447 (list r-biocparallel
12448 r-corpcor
12449 r-dplyr
12450 r-ellipse
12451 r-ggrepel
12452 r-ggplot2
12453 r-gridextra
12454 r-igraph
12455 r-lattice
12456 r-mass
12457 r-matrixstats
12458 r-rarpack
12459 r-rcolorbrewer
12460 r-reshape2
12461 r-tidyr))
12462 (native-inputs
12463 (list r-knitr))
12464 (home-page "http://www.mixOmics.org")
12465 (synopsis "Multivariate methods for exploration of biological datasets")
12466 (description
12467 "mixOmics offers a wide range of multivariate methods for the exploration
12468 and integration of biological datasets with a particular focus on variable
12469 selection. The package proposes several sparse multivariate models we have
12470 developed to identify the key variables that are highly correlated, and/or
12471 explain the biological outcome of interest. The data that can be analysed
12472 with mixOmics may come from high throughput sequencing technologies, such as
12473 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
12474 also beyond the realm of omics (e.g. spectral imaging). The methods
12475 implemented in mixOmics can also handle missing values without having to
12476 delete entire rows with missing data.")
12477 (license license:gpl2+)))
12478
12479 (define-public r-depecher
12480 (package ;Source/Weave error
12481 (name "r-depecher")
12482 (version "1.12.0")
12483 (source
12484 (origin
12485 (method url-fetch)
12486 (uri (bioconductor-uri "DepecheR" version))
12487 (sha256
12488 (base32
12489 "0rixczdds5gpac50wap6s68kmpdj4208l38gcihkrysz5frbvqjp"))))
12490 (properties `((upstream-name . "DepecheR")))
12491 (build-system r-build-system)
12492 (propagated-inputs
12493 (list r-beanplot
12494 r-dosnow
12495 r-dplyr
12496 r-fnn
12497 r-foreach
12498 r-ggplot2
12499 r-gmodels
12500 r-gplots
12501 r-mass
12502 r-matrixstats
12503 r-mixomics
12504 r-moments
12505 r-rcpp
12506 r-rcppeigen
12507 r-reshape2
12508 r-robustbase
12509 r-viridis))
12510 (native-inputs
12511 (list r-knitr))
12512 (home-page "https://bioconductor.org/packages/DepecheR/")
12513 (synopsis "Identify traits of clusters in high-dimensional entities")
12514 (description
12515 "The purpose of this package is to identify traits in a dataset that can
12516 separate groups. This is done on two levels. First, clustering is performed,
12517 using an implementation of sparse K-means. Secondly, the generated clusters
12518 are used to predict outcomes of groups of individuals based on their
12519 distribution of observations in the different clusters. As certain clusters
12520 with separating information will be identified, and these clusters are defined
12521 by a sparse number of variables, this method can reduce the complexity of
12522 data, to only emphasize the data that actually matters.")
12523 (license license:expat)))
12524
12525 (define-public r-rcistarget
12526 (package
12527 (name "r-rcistarget")
12528 (version "1.16.0")
12529 (source
12530 (origin
12531 (method url-fetch)
12532 (uri (bioconductor-uri "RcisTarget" version))
12533 (sha256
12534 (base32
12535 "17fnjkg6rjqj33v7slg81skqag10y6dc14g5iv69gqshjal4w4im"))))
12536 (properties `((upstream-name . "RcisTarget")))
12537 (build-system r-build-system)
12538 (propagated-inputs
12539 (list r-arrow
12540 r-aucell
12541 r-biocgenerics
12542 r-data-table
12543 r-dplyr
12544 r-genomeinfodb
12545 r-genomicranges
12546 r-gseabase
12547 r-r-utils
12548 r-s4vectors
12549 r-summarizedexperiment
12550 r-tibble))
12551 (native-inputs
12552 (list r-knitr))
12553 (home-page "https://aertslab.org/#scenic")
12554 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
12555 (description
12556 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
12557 over-represented on a gene list. In a first step, RcisTarget selects DNA
12558 motifs that are significantly over-represented in the surroundings of the
12559 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
12560 achieved by using a database that contains genome-wide cross-species rankings
12561 for each motif. The motifs that are then annotated to TFs and those that have
12562 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
12563 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
12564 genes in the gene-set that are ranked above the leading edge).")
12565 (license license:gpl3)))
12566
12567 (define-public r-chicago
12568 (package
12569 (name "r-chicago")
12570 (version "1.24.0")
12571 (source
12572 (origin
12573 (method url-fetch)
12574 (uri (bioconductor-uri "Chicago" version))
12575 (sha256
12576 (base32
12577 "13vzxmvxpc3r9gii37zvhhr5nbnaggrva97g6m2n02qn9daf6vmm"))))
12578 (properties `((upstream-name . "Chicago")))
12579 (build-system r-build-system)
12580 (propagated-inputs
12581 (list r-data-table r-delaporte r-hmisc r-mass r-matrixstats))
12582 (native-inputs (list r-knitr))
12583 (home-page "https://bioconductor.org/packages/Chicago")
12584 (synopsis "Capture Hi-C analysis of genomic organization")
12585 (description
12586 "This package provides a pipeline for analysing Capture Hi-C data.")
12587 (license license:artistic2.0)))
12588
12589 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
12590 ;; it here.
12591 (define-public r-ciara
12592 (package
12593 (name "r-ciara")
12594 (version "0.1.0")
12595 (source (origin
12596 (method url-fetch)
12597 (uri (cran-uri "CIARA" version))
12598 (sha256
12599 (base32
12600 "0nr7wks9231326x0lhpbh824c6vcb5hr5jn89s9bmg9mci907bsf"))))
12601 (properties `((upstream-name . "CIARA")))
12602 (build-system r-build-system)
12603 (propagated-inputs (list r-biobase r-ggplot2 r-ggraph r-magrittr))
12604 (native-inputs (list r-knitr))
12605 (home-page "https://cran.r-project.org/package=CIARA")
12606 (synopsis "Cluster-independent algorithm for rare cell types identification")
12607 (description
12608 "This is a package to support identification of markers of rare cell
12609 types by looking at genes whose expression is confined in small regions of the
12610 expression space.")
12611 (license license:artistic2.0)))
12612
12613 (define-public r-cicero
12614 (package
12615 (name "r-cicero")
12616 (version "1.14.0")
12617 (source
12618 (origin
12619 (method url-fetch)
12620 (uri (bioconductor-uri "cicero" version))
12621 (sha256
12622 (base32
12623 "1ip12ijazlmcfbym078slxykpkz7d1zwvs8l8aqdnqpxjfk1ipx5"))))
12624 (build-system r-build-system)
12625 (propagated-inputs
12626 (list r-assertthat
12627 r-biobase
12628 r-biocgenerics
12629 r-data-table
12630 r-dplyr
12631 r-fnn
12632 r-genomicranges
12633 r-ggplot2
12634 r-glasso
12635 r-gviz
12636 r-igraph
12637 r-iranges
12638 r-matrix
12639 r-monocle
12640 r-plyr
12641 r-reshape2
12642 r-s4vectors
12643 r-stringi
12644 r-stringr
12645 r-tibble
12646 r-tidyr
12647 r-vgam))
12648 (native-inputs
12649 (list r-knitr))
12650 (home-page "https://bioconductor.org/packages/cicero/")
12651 (synopsis "Predict cis-co-accessibility from single-cell data")
12652 (description
12653 "Cicero computes putative cis-regulatory maps from single-cell chromatin
12654 accessibility data. It also extends the monocle package for use in chromatin
12655 accessibility data.")
12656 (license license:expat)))
12657
12658 ;; This is the latest commit on the "monocle3" branch.
12659 (define-public r-cicero-monocle3
12660 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
12661 (revision "1"))
12662 (package (inherit r-cicero)
12663 (name "r-cicero-monocle3")
12664 (version (git-version "1.3.2" revision commit))
12665 (source
12666 (origin
12667 (method git-fetch)
12668 (uri (git-reference
12669 (url "https://github.com/cole-trapnell-lab/cicero-release")
12670 (commit commit)))
12671 (file-name (git-file-name name version))
12672 (sha256
12673 (base32
12674 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
12675 (propagated-inputs
12676 (modify-inputs (package-propagated-inputs r-cicero)
12677 (delete "r-monocle")
12678 (prepend r-monocle3))))))
12679
12680 (define-public r-circrnaprofiler
12681 (package
12682 (name "r-circrnaprofiler")
12683 (version "1.10.0")
12684 (source
12685 (origin
12686 (method url-fetch)
12687 (uri (bioconductor-uri "circRNAprofiler" version))
12688 (sha256
12689 (base32
12690 "1gwm416shhv2p3gh1n6kv1rvx0n0imy25b7z62z4s8b3gs3nfp5j"))))
12691 (properties
12692 `((upstream-name . "circRNAprofiler")))
12693 (build-system r-build-system)
12694 (propagated-inputs
12695 (list r-annotationhub
12696 r-biostrings
12697 r-bsgenome
12698 r-bsgenome-hsapiens-ucsc-hg19
12699 r-deseq2
12700 r-dplyr
12701 r-edger
12702 r-genomeinfodb
12703 r-genomicranges
12704 r-ggplot2
12705 r-gwascat
12706 r-iranges
12707 r-magrittr
12708 r-r-utils
12709 r-readr
12710 r-reshape2
12711 r-rlang
12712 r-rtracklayer
12713 r-s4vectors
12714 r-seqinr
12715 r-stringi
12716 r-stringr
12717 r-universalmotif))
12718 (native-inputs
12719 (list r-knitr))
12720 (home-page
12721 "https://github.com/Aufiero/circRNAprofiler")
12722 (synopsis
12723 "Computational framework for the downstream analysis of circular RNA's")
12724 (description
12725 "@code{r-circrnaprofiler} is a computational framework for a comprehensive
12726 in silico analysis of @dfn{circular RNA} (circRNAs). This computational
12727 framework allows combining and analyzing circRNAs previously detected by
12728 multiple publicly available annotation-based circRNA detection tools. It
12729 covers different aspects of circRNAs analysis from differential expression
12730 analysis, evolutionary conservation, biogenesis to functional analysis.")
12731 (license license:gpl3)))
12732
12733 (define-public r-cistopic
12734 (package
12735 (name "r-cistopic")
12736 (version "2.1.0")
12737 (source
12738 (origin
12739 (method git-fetch)
12740 (uri (git-reference
12741 (url "https://github.com/aertslab/cisTopic")
12742 (commit (string-append "v" version))))
12743 (file-name (git-file-name name version))
12744 (sha256
12745 (base32
12746 "0c4553rnxq7b1w451kcc3iwvak4qa5h2b43xmfw6ii8096zd1gbf"))))
12747 (build-system r-build-system)
12748 (propagated-inputs
12749 (list r-aucell
12750 r-data-table
12751 r-dplyr
12752 r-dosnow
12753 r-dt
12754 r-feather
12755 r-fitdistrplus
12756 r-genomicranges
12757 r-ggplot2
12758 r-lda
12759 r-matrix
12760 r-plyr
12761 r-rcistarget
12762 r-rtracklayer
12763 r-s4vectors))
12764 (home-page "https://github.com/aertslab/cisTopic")
12765 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
12766 (description
12767 "The sparse nature of single cell epigenomics data can be overruled using
12768 probabilistic modelling methods such as @dfn{Latent Dirichlet
12769 Allocation} (LDA). This package allows the probabilistic modelling of
12770 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
12771 includes functionalities to identify cell states based on the contribution of
12772 cisTopics and explore the nature and regulatory proteins driving them.")
12773 (license license:gpl3)))
12774
12775 (define-public r-cistopic-next
12776 (let ((commit "04cecbb9d1112fcc1a6edc28b5a506bcb49f2803")
12777 (revision "1"))
12778 (package
12779 (inherit r-cistopic)
12780 (name "r-cistopic-next")
12781 ;; The DESCRIPTION file says this is version 0.3.0, which is a bit odd
12782 ;; since the previous release is 2.1.0. Oh well.
12783 (version (git-version "0.3.0" revision commit))
12784 (source
12785 (origin
12786 (method git-fetch)
12787 (uri (git-reference
12788 (url "https://github.com/aertslab/cisTopic")
12789 (commit commit)))
12790 (file-name (git-file-name name version))
12791 (sha256
12792 (base32
12793 "11cg9szlysnsjiaahda4k5v2vh4rxx27zhz53hafgaq9mdz0kgi2"))))
12794 (properties `((upstream-name . "cisTopic")))
12795 (propagated-inputs
12796 (list r-aucell
12797 r-data-table
12798 r-dosnow
12799 r-dplyr
12800 r-dt
12801 r-feather
12802 r-fitdistrplus
12803 r-genomicranges
12804 r-ggplot2
12805 r-lda
12806 r-matrix
12807 r-plyr
12808 r-rcistarget
12809 r-rtracklayer
12810 r-s4vectors
12811 r-text2vec))
12812 (native-inputs
12813 (list r-knitr)))))
12814
12815 (define-public r-genie3
12816 (package
12817 (name "r-genie3")
12818 (version "1.18.0")
12819 (source
12820 (origin
12821 (method url-fetch)
12822 (uri (bioconductor-uri "GENIE3" version))
12823 (sha256
12824 (base32
12825 "0h3vnpnznb9rda8gfwp4cnd2mqsvs1vzmfx90dchn5pqaphz1k2l"))))
12826 (properties `((upstream-name . "GENIE3")))
12827 (build-system r-build-system)
12828 (propagated-inputs
12829 (list r-dplyr r-reshape2))
12830 (native-inputs
12831 (list r-knitr))
12832 (home-page "https://bioconductor.org/packages/GENIE3")
12833 (synopsis "Gene network inference with ensemble of trees")
12834 (description
12835 "This package implements the GENIE3 algorithm for inferring gene
12836 regulatory networks from expression data.")
12837 (license license:gpl2+)))
12838
12839 (define-public r-roc
12840 (package
12841 (name "r-roc")
12842 (version "1.72.0")
12843 (source
12844 (origin
12845 (method url-fetch)
12846 (uri (bioconductor-uri "ROC" version))
12847 (sha256
12848 (base32
12849 "0yfq0d0j2bzqdnjs6l2h6p48kmv9wfphlqym3brgndlnadipq1v2"))))
12850 (properties `((upstream-name . "ROC")))
12851 (build-system r-build-system)
12852 (native-inputs
12853 (list r-knitr))
12854 (home-page "https://www.bioconductor.org/packages/ROC/")
12855 (synopsis "Utilities for ROC curves")
12856 (description
12857 "This package provides utilities for @dfn{Receiver Operating
12858 Characteristic} (ROC) curves, with a focus on micro arrays.")
12859 (license license:artistic2.0)))
12860
12861 (define-public r-watermelon
12862 (package
12863 (name "r-watermelon")
12864 (version "2.2.0")
12865 (source
12866 (origin
12867 (method url-fetch)
12868 (uri (bioconductor-uri "wateRmelon" version))
12869 (sha256
12870 (base32
12871 "0adqyfabrvfcaj3mwp0rbqlcgpj92yb205cyhibbrs5gdr5ri4pv"))))
12872 (properties `((upstream-name . "wateRmelon")))
12873 (build-system r-build-system)
12874 (propagated-inputs
12875 (list r-biobase
12876 r-illuminahumanmethylation450kanno-ilmn12-hg19
12877 r-illuminaio
12878 r-limma
12879 r-lumi
12880 r-matrixstats
12881 r-methylumi
12882 r-roc))
12883 (native-inputs
12884 (list r-knitr))
12885 (home-page "https://bioconductor.org/packages/wateRmelon/")
12886 (synopsis "Illumina 450 methylation array normalization and metrics")
12887 (description
12888 "The standard index of DNA methylation (beta) is computed from methylated
12889 and unmethylated signal intensities. Betas calculated from raw signal
12890 intensities perform well, but using 11 methylomic datasets we demonstrate that
12891 quantile normalization methods produce marked improvement. The commonly used
12892 procedure of normalizing betas is inferior to the separate normalization of M
12893 and U, and it is also advantageous to normalize Type I and Type II assays
12894 separately. This package provides 15 flavours of betas and three performance
12895 metrics, with methods for objects produced by the @code{methylumi} and
12896 @code{minfi} packages.")
12897 (license license:gpl3)))
12898
12899 (define-public r-gdsfmt
12900 (package
12901 (name "r-gdsfmt")
12902 (version "1.32.0")
12903 (source
12904 (origin
12905 (method url-fetch)
12906 (uri (bioconductor-uri "gdsfmt" version))
12907 (sha256
12908 (base32
12909 "1cdwyivgfc6yw5hj9b3j57wx55gckwhx6fwx2lvqynrjzjyzf3q0"))
12910 (modules '((guix build utils)))
12911 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
12912 ;; them and link with system libraries instead.
12913 (snippet
12914 '(begin
12915 (for-each delete-file-recursively
12916 '("src/LZ4"
12917 "src/XZ"
12918 "src/ZLIB"))
12919 (substitute* "src/Makevars"
12920 (("all: \\$\\(SHLIB\\)") "all:")
12921 (("\\$\\(SHLIB\\): liblzma.a") "")
12922 (("^ (ZLIB|LZ4)/.*") "")
12923 (("CoreArray/dVLIntGDS.cpp.*")
12924 "CoreArray/dVLIntGDS.cpp")
12925 (("CoreArray/dVLIntGDS.o.*")
12926 "CoreArray/dVLIntGDS.o")
12927 (("PKG_LIBS = ./liblzma.a")
12928 "PKG_LIBS = -llz4"))
12929 (substitute* "src/CoreArray/dStream.h"
12930 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
12931 (string-append "include <" header ">")))))))
12932 (properties `((upstream-name . "gdsfmt")))
12933 (build-system r-build-system)
12934 (inputs
12935 (list lz4 xz zlib))
12936 (native-inputs
12937 (list r-knitr))
12938 (home-page "http://corearray.sourceforge.net/")
12939 (synopsis
12940 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
12941 (description
12942 "This package provides a high-level R interface to CoreArray @dfn{Genomic
12943 Data Structure} (GDS) data files, which are portable across platforms with
12944 hierarchical structure to store multiple scalable array-oriented data sets
12945 with metadata information. It is suited for large-scale datasets, especially
12946 for data which are much larger than the available random-access memory. The
12947 @code{gdsfmt} package offers efficient operations specifically designed for
12948 integers of less than 8 bits, since a diploid genotype, like
12949 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
12950 byte. Data compression and decompression are available with relatively
12951 efficient random access. It is also allowed to read a GDS file in parallel
12952 with multiple R processes supported by the package @code{parallel}.")
12953 (license license:lgpl3)))
12954
12955 (define-public r-bigmelon
12956 (package
12957 (name "r-bigmelon")
12958 (version "1.22.0")
12959 (source
12960 (origin
12961 (method url-fetch)
12962 (uri (bioconductor-uri "bigmelon" version))
12963 (sha256
12964 (base32
12965 "1msch4qbifkdqv0bbw03xj6d9w28z91mf4ki41rqg6048cq17h2k"))))
12966 (properties `((upstream-name . "bigmelon")))
12967 (build-system r-build-system)
12968 (propagated-inputs
12969 (list r-biobase
12970 r-biocgenerics
12971 r-gdsfmt
12972 r-geoquery
12973 r-illuminaio
12974 r-methylumi
12975 r-minfi
12976 r-watermelon))
12977 (native-inputs
12978 (list r-knitr))
12979 (home-page "https://bioconductor.org/packages/bigmelon/")
12980 (synopsis "Illumina methylation array analysis for large experiments")
12981 (description
12982 "This package provides methods for working with Illumina arrays using the
12983 @code{gdsfmt} package.")
12984 (license license:gpl3)))
12985
12986 (define-public r-seqbias
12987 (package
12988 (name "r-seqbias")
12989 (version "1.44.0")
12990 (source
12991 (origin
12992 (method url-fetch)
12993 (uri (bioconductor-uri "seqbias" version))
12994 (sha256
12995 (base32
12996 "085nq6pf0bdn17wsbr5jnyy512v7rf67xff9rp5wz47mcifbv6rg"))))
12997 (properties `((upstream-name . "seqbias")))
12998 (build-system r-build-system)
12999 (propagated-inputs
13000 (list r-biostrings r-genomicranges r-rhtslib))
13001 (home-page "https://bioconductor.org/packages/seqbias/")
13002 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
13003 (description
13004 "This package implements a model of per-position sequencing bias in
13005 high-throughput sequencing data using a simple Bayesian network, the structure
13006 and parameters of which are trained on a set of aligned reads and a reference
13007 genome sequence.")
13008 (license license:lgpl3)))
13009
13010 (define-public r-reqon
13011 (package
13012 (name "r-reqon")
13013 (version "1.42.0")
13014 (source
13015 (origin
13016 (method url-fetch)
13017 (uri (bioconductor-uri "ReQON" version))
13018 (sha256
13019 (base32
13020 "1f5pplm8fy3wvl0b6n18gph4dq9i9x5qiyjrj0bk0kwlkbpba74r"))))
13021 (properties `((upstream-name . "ReQON")))
13022 (build-system r-build-system)
13023 (propagated-inputs
13024 (list r-rjava r-rsamtools r-seqbias))
13025 (home-page "https://bioconductor.org/packages/ReQON/")
13026 (synopsis "Recalibrating quality of nucleotides")
13027 (description
13028 "This package provides an implementation of an algorithm for
13029 recalibrating the base quality scores for aligned sequencing data in BAM
13030 format.")
13031 (license license:gpl2)))
13032
13033 (define-public r-wavcluster
13034 (package
13035 (name "r-wavcluster")
13036 (version "2.30.0")
13037 (source
13038 (origin
13039 (method url-fetch)
13040 (uri (bioconductor-uri "wavClusteR" version))
13041 (sha256
13042 (base32
13043 "04di095i9i19j9ppx8gdsk7n18vd02d4rjdi9d4a3p0xv05ihnb6"))))
13044 (properties `((upstream-name . "wavClusteR")))
13045 (build-system r-build-system)
13046 (propagated-inputs
13047 (list r-biocgenerics
13048 r-biostrings
13049 r-foreach
13050 r-genomicfeatures
13051 r-genomicranges
13052 r-ggplot2
13053 r-hmisc
13054 r-iranges
13055 r-mclust
13056 r-rsamtools
13057 r-rtracklayer
13058 r-s4vectors
13059 r-seqinr
13060 r-stringr))
13061 (native-inputs
13062 (list r-knitr))
13063 (home-page "https://bioconductor.org/packages/wavClusteR/")
13064 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
13065 (description
13066 "This package provides an integrated pipeline for the analysis of
13067 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
13068 sequencing errors, SNPs and additional non-experimental sources by a non-
13069 parametric mixture model. The protein binding sites (clusters) are then
13070 resolved at high resolution and cluster statistics are estimated using a
13071 rigorous Bayesian framework. Post-processing of the results, data export for
13072 UCSC genome browser visualization and motif search analysis are provided. In
13073 addition, the package integrates RNA-Seq data to estimate the False
13074 Discovery Rate of cluster detection. Key functions support parallel multicore
13075 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
13076 be applied to the analysis of other NGS data obtained from experimental
13077 procedures that induce nucleotide substitutions (e.g. BisSeq).")
13078 (license license:gpl2)))
13079
13080 (define-public r-timeseriesexperiment
13081 (package
13082 (name "r-timeseriesexperiment")
13083 (version "1.13.0")
13084 (source
13085 (origin
13086 (method url-fetch)
13087 (uri (bioconductor-uri "TimeSeriesExperiment" version))
13088 (sha256
13089 (base32
13090 "0bdpxxr739qdg92qabfx122k9f43vw2hyxp4yxqlbp37vzgcdf2c"))))
13091 (properties
13092 `((upstream-name . "TimeSeriesExperiment")))
13093 (build-system r-build-system)
13094 (propagated-inputs
13095 (list r-deseq2
13096 r-dplyr
13097 r-dynamictreecut
13098 r-edger
13099 r-ggplot2
13100 r-hmisc
13101 r-limma
13102 r-magrittr
13103 r-proxy
13104 r-s4vectors
13105 r-summarizedexperiment
13106 r-tibble
13107 r-tidyr
13108 r-vegan
13109 r-viridis))
13110 (native-inputs
13111 (list r-knitr))
13112 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
13113 (synopsis "Analysis for short time-series data")
13114 (description
13115 "This package is a visualization and analysis toolbox for short time
13116 course data which includes dimensionality reduction, clustering, two-sample
13117 differential expression testing and gene ranking techniques. The package also
13118 provides methods for retrieving enriched pathways.")
13119 (license license:lgpl3+)))
13120
13121 (define-public r-variantfiltering
13122 (package
13123 (name "r-variantfiltering")
13124 (version "1.32.0")
13125 (source
13126 (origin
13127 (method url-fetch)
13128 (uri (bioconductor-uri "VariantFiltering" version))
13129 (sha256
13130 (base32
13131 "1bjqn8qik221x0bqvgd99p87v45iihwp6cxckh4ks964pd0c1xk8"))))
13132 (properties
13133 `((upstream-name . "VariantFiltering")))
13134 (build-system r-build-system)
13135 (propagated-inputs
13136 (list r-annotationdbi
13137 r-biobase
13138 r-biocgenerics
13139 r-biocparallel
13140 r-biostrings
13141 r-bsgenome
13142 r-dt
13143 r-genomeinfodb
13144 r-genomicfeatures
13145 r-genomicranges
13146 r-genomicscores
13147 r-graph
13148 r-gviz
13149 r-iranges
13150 r-rbgl
13151 r-rsamtools
13152 r-s4vectors
13153 r-shiny
13154 r-shinyjs
13155 r-shinythemes
13156 r-shinytree
13157 r-summarizedexperiment
13158 r-variantannotation
13159 r-xvector))
13160 (home-page "https://github.com/rcastelo/VariantFiltering")
13161 (synopsis "Filtering of coding and non-coding genetic variants")
13162 (description
13163 "Filter genetic variants using different criteria such as inheritance
13164 model, amino acid change consequence, minor allele frequencies across human
13165 populations, splice site strength, conservation, etc.")
13166 (license license:artistic2.0)))
13167
13168 (define-public r-genomegraphs
13169 (package
13170 (name "r-genomegraphs")
13171 (version "1.46.0")
13172 (source
13173 (origin
13174 (method url-fetch)
13175 (uri (bioconductor-uri "GenomeGraphs" version))
13176 (sha256
13177 (base32
13178 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
13179 (properties `((upstream-name . "GenomeGraphs")))
13180 (build-system r-build-system)
13181 (propagated-inputs
13182 (list r-biomart))
13183 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
13184 (synopsis "Plotting genomic information from Ensembl")
13185 (description
13186 "Genomic data analyses requires integrated visualization of known genomic
13187 information and new experimental data. GenomeGraphs uses the biomaRt package
13188 to perform live annotation queries to Ensembl and translates this to e.g.
13189 gene/transcript structures in viewports of the grid graphics package. This
13190 results in genomic information plotted together with your data. Another
13191 strength of GenomeGraphs is to plot different data types such as array CGH,
13192 gene expression, sequencing and other data, together in one plot using the
13193 same genome coordinate system.")
13194 (license license:artistic2.0)))
13195
13196 (define-public r-wavetiling
13197 (package
13198 (name "r-wavetiling")
13199 (version "1.28.0")
13200 (source
13201 (origin
13202 (method url-fetch)
13203 (uri (bioconductor-uri "waveTiling" version))
13204 (sha256
13205 (base32
13206 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
13207 (properties `((upstream-name . "waveTiling")))
13208 (build-system r-build-system)
13209 (propagated-inputs
13210 (list r-affy
13211 r-biobase
13212 r-biostrings
13213 r-genomegraphs
13214 r-genomicranges
13215 r-iranges
13216 r-oligo
13217 r-oligoclasses
13218 r-preprocesscore
13219 r-waveslim))
13220 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
13221 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
13222 (description
13223 "This package is designed to conduct transcriptome analysis for tiling
13224 arrays based on fast wavelet-based functional models.")
13225 (license license:gpl2+)))
13226
13227 (define-public r-variancepartition
13228 (package
13229 (name "r-variancepartition")
13230 (version "1.26.0")
13231 (source
13232 (origin
13233 (method url-fetch)
13234 (uri (bioconductor-uri "variancePartition" version))
13235 (sha256
13236 (base32
13237 "0wk1xql8b0gxyrqz9hs54xvmp7qdw9b8jnv88p4vgv061iwyk7wv"))))
13238 (properties
13239 `((upstream-name . "variancePartition")))
13240 (build-system r-build-system)
13241 (propagated-inputs
13242 (list r-aod
13243 r-biobase
13244 r-biocparallel
13245 r-doparallel
13246 r-foreach
13247 r-ggplot2
13248 r-gplots
13249 r-iterators
13250 r-limma
13251 r-lme4
13252 r-lmertest
13253 r-mass
13254 r-matrix
13255 r-pbkrtest
13256 r-progress
13257 r-rdpack
13258 r-reshape2
13259 r-rhpcblasctl
13260 r-rlang
13261 r-scales))
13262 (native-inputs
13263 (list r-knitr))
13264 (home-page "https://bioconductor.org/packages/variancePartition/")
13265 (synopsis "Analyze variation in gene expression experiments")
13266 (description
13267 "This is a package providing tools to quantify and interpret multiple
13268 sources of biological and technical variation in gene expression experiments.
13269 It uses a linear mixed model to quantify variation in gene expression
13270 attributable to individual, tissue, time point, or technical variables. The
13271 package includes dream differential expression analysis for repeated
13272 measures.")
13273 (license license:gpl2+)))
13274
13275 (define-public r-htqpcr
13276 (package
13277 (name "r-htqpcr")
13278 (version "1.50.0")
13279 (source
13280 (origin
13281 (method url-fetch)
13282 (uri (bioconductor-uri "HTqPCR" version))
13283 (sha256
13284 (base32
13285 "0am98rzwpi3kybq1l27c5qn3n1pg5aqwmh6jq9q0lzbjjin3haqc"))))
13286 (properties `((upstream-name . "HTqPCR")))
13287 (build-system r-build-system)
13288 (propagated-inputs
13289 (list r-affy r-biobase r-gplots r-limma r-rcolorbrewer))
13290 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
13291 "groups/bertone/software/HTqPCR.pdf"))
13292 (synopsis "Automated analysis of high-throughput qPCR data")
13293 (description
13294 "Analysis of Ct values from high throughput quantitative real-time
13295 PCR (qPCR) assays across multiple conditions or replicates. The input data
13296 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
13297 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
13298 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
13299 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
13300 loading, quality assessment, normalization, visualization and parametric or
13301 non-parametric testing for statistical significance in Ct values between
13302 features (e.g. genes, microRNAs).")
13303 (license license:artistic2.0)))
13304
13305 (define-public r-unifiedwmwqpcr
13306 (package
13307 (name "r-unifiedwmwqpcr")
13308 (version "1.32.0")
13309 (source
13310 (origin
13311 (method url-fetch)
13312 (uri (bioconductor-uri "unifiedWMWqPCR" version))
13313 (sha256
13314 (base32
13315 "1skfs94a6bv05c844zf5vfqw1fbgxyppgdnckdbhxg2a2470a4wh"))))
13316 (properties
13317 `((upstream-name . "unifiedWMWqPCR")))
13318 (build-system r-build-system)
13319 (propagated-inputs
13320 (list r-biocgenerics r-htqpcr))
13321 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
13322 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
13323 (description
13324 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
13325 data. This modified test allows for testing differential expression in qPCR
13326 data.")
13327 (license license:gpl2+)))
13328
13329 (define-public r-universalmotif
13330 (package
13331 (name "r-universalmotif")
13332 (version "1.14.1")
13333 (source
13334 (origin
13335 (method url-fetch)
13336 (uri (bioconductor-uri "universalmotif" version))
13337 (sha256
13338 (base32
13339 "1sm54z8aq3534qjsa19wychhwcvwnjlkydmiqqvidiiwcxwqpjsr"))))
13340 (properties
13341 `((upstream-name . "universalmotif")))
13342 (build-system r-build-system)
13343 (arguments
13344 `(#:phases
13345 (modify-phases %standard-phases
13346 (add-after 'unpack 'fix-reference-to-strip
13347 (lambda _
13348 (substitute* "src/Makevars"
13349 (("/usr/bin/strip") (which "strip"))))))))
13350 (propagated-inputs
13351 (list r-biocgenerics
13352 r-biostrings
13353 r-ggplot2
13354 r-iranges
13355 r-mass
13356 r-rcpp
13357 r-rcppthread
13358 r-rlang
13359 r-s4vectors
13360 r-yaml))
13361 (native-inputs
13362 (list r-knitr))
13363 (home-page
13364 "https://bioconductor.org/packages/universalmotif/")
13365 (synopsis
13366 "Specific structures importer, modifier, and exporter for R")
13367 (description
13368 "This package allows importing most common @dfn{specific structure}
13369 (motif) types into R for use by functions provided by other Bioconductor
13370 motif-related packages. Motifs can be exported into most major motif formats
13371 from various classes as defined by other Bioconductor packages. A suite of
13372 motif and sequence manipulation and analysis functions are included, including
13373 enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
13374 motifs, and others.")
13375 (license license:gpl3)))
13376
13377 (define-public r-ace
13378 (package
13379 (name "r-ace")
13380 (version "1.14.0")
13381 (source (origin
13382 (method url-fetch)
13383 (uri (bioconductor-uri "ACE" version))
13384 (sha256
13385 (base32
13386 "1xnw288vz810vjkidar5h218wyc0q2hx0k4zi3r88vaz5rfhc05m"))))
13387 (properties `((upstream-name . "ACE")))
13388 (build-system r-build-system)
13389 (propagated-inputs (list r-biobase r-genomicranges r-ggplot2 r-qdnaseq))
13390 (native-inputs (list r-knitr))
13391 (home-page "https://github.com/tgac-vumc/ACE")
13392 (synopsis
13393 "Absolute copy number estimation from low-coverage whole genome sequencing")
13394 (description
13395 "This package uses segmented copy number data to estimate tumor cell
13396 percentage and produce copy number plots displaying absolute copy numbers. For
13397 this it uses segmented data from the @code{QDNAseq} package, which in turn uses
13398 a number of dependencies to turn mapped reads into segmented data. @code{ACE}
13399 will run @code{QDNAseq} or use its output rds-file of segmented data. It will
13400 subsequently run through all samples in the object(s), for which it will create
13401 individual subdirectories. For each sample, it will calculate how well the
13402 segments fit (the relative error) to integer copy numbers for each percentage
13403 of @dfn{tumor cells} (cells with divergent segments).")
13404 (license license:gpl2)))
13405
13406 (define-public r-acgh
13407 (package
13408 (name "r-acgh")
13409 (version "1.74.0")
13410 (source (origin
13411 (method url-fetch)
13412 (uri (bioconductor-uri "aCGH" version))
13413 (sha256
13414 (base32
13415 "00ni0kwy68v33ggfi8g5vffirhmbhaxg4l54hcqhx75m535z1x7d"))))
13416 (properties `((upstream-name . "aCGH")))
13417 (build-system r-build-system)
13418 (propagated-inputs (list r-biobase r-cluster r-multtest r-survival))
13419 (home-page "https://bioconductor.org/packages/aCGH")
13420 (synopsis
13421 "Classes and functions for array comparative genomic hybridization data")
13422 (description
13423 "This package provides functions for reading
13424 @dfn{array comparative genomic hybridization} (aCGH) data from image analysis
13425 output files and clone information files, creation of @code{aCGH} objects for
13426 storing these data. Basic methods are accessing/replacing, subsetting,
13427 printing and plotting @code{aCGH} objects.")
13428 (license license:gpl2)))
13429
13430 (define-public r-acme
13431 (package
13432 (name "r-acme")
13433 (version "2.52.0")
13434 (source (origin
13435 (method url-fetch)
13436 (uri (bioconductor-uri "ACME" version))
13437 (sha256
13438 (base32
13439 "0ilcsgpc4m47gifxc0yzx2xi3g4day515mncnnjvfdj3iq8xwk25"))))
13440 (properties `((upstream-name . "ACME")))
13441 (build-system r-build-system)
13442 (propagated-inputs (list r-biobase r-biocgenerics))
13443 (home-page "https://bioconductor.org/packages/aCGH/")
13444 (synopsis "Calculating microarray enrichment")
13445 (description
13446 "This package implements @dfn{algorithms for calculating microarray
13447 enrichment} (ACME), and it is a set of tools for analysing tiling array of
13448 @dfn{combined chromatin immunoprecipitation with DNA microarray} (ChIP/chip),
13449 DNAse hypersensitivity, or other experiments that result in regions of the
13450 genome showing enrichment. It does not rely on a specific array technology
13451 (although the array should be a tiling array), is very general (can be applied
13452 in experiments resulting in regions of enrichment), and is very insensitive to
13453 array noise or normalization methods. It is also very fast and can be applied
13454 on whole-genome tiling array experiments quite easily with enough memory.")
13455 (license license:gpl2+)))
13456
13457 (define-public r-acde
13458 (package
13459 (name "r-acde")
13460 (version "1.26.0")
13461 (source (origin
13462 (method url-fetch)
13463 (uri (bioconductor-uri "acde" version))
13464 (sha256
13465 (base32
13466 "0lgq546y4qklfzbc6fjr3d656hn76p6dn4694qfiafql2nlsjbj2"))))
13467 (properties `((upstream-name . "acde")))
13468 (build-system r-build-system)
13469 (propagated-inputs (list r-boot))
13470 (home-page "https://bioconductor.org/packages/acde")
13471 (synopsis
13472 "Identification of differentially expressed genes with artificial components")
13473 (description
13474 "This package provides a multivariate inferential analysis method for
13475 detecting differentially expressed genes in gene expression data. It uses
13476 artificial components, close to the data's principal components but with an
13477 exact interpretation in terms of differential genetic expression, to identify
13478 differentially expressed genes while controlling the @dfn{false discovery
13479 rate} (FDR).")
13480 (license license:gpl3)))
13481
13482 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
13483 ;; it here.
13484 (define-public r-activedriverwgs
13485 (package
13486 (name "r-activedriverwgs")
13487 (version "1.2.0")
13488 (source
13489 (origin
13490 (method url-fetch)
13491 (uri (cran-uri "ActiveDriverWGS" version))
13492 (sha256
13493 (base32
13494 "0xnplgwxd197a4d422bsxg753q158i12ils16awd1cw30wafdxkk"))))
13495 (properties
13496 `((upstream-name . "ActiveDriverWGS")))
13497 (build-system r-build-system)
13498 (propagated-inputs
13499 (list r-biostrings
13500 r-bsgenome
13501 r-bsgenome-hsapiens-ucsc-hg19
13502 r-bsgenome-hsapiens-ucsc-hg38
13503 r-bsgenome-mmusculus-ucsc-mm9
13504 r-bsgenome-mmusculus-ucsc-mm10
13505 r-genomeinfodb
13506 r-genomicranges
13507 r-iranges
13508 r-s4vectors))
13509 (native-inputs
13510 (list r-knitr))
13511 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
13512 (synopsis "Driver discovery tool for cancer whole genomes")
13513 (description
13514 "This package provides a method for finding an enrichment of cancer
13515 simple somatic mutations (SNVs and Indels) in functional elements across the
13516 human genome. ActiveDriverWGS detects coding and noncoding driver elements
13517 using whole genome sequencing data.")
13518 (license license:gpl3)))
13519
13520 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
13521 ;; it here.
13522 (define-public r-activepathways
13523 (package
13524 (name "r-activepathways")
13525 (version "1.1.1")
13526 (source
13527 (origin
13528 (method url-fetch)
13529 (uri (cran-uri "ActivePathways" version))
13530 (sha256
13531 (base32
13532 "1crq164vyqhdq5y3q09k3m5zljqrhcd5ak0jrc0xqvzf0pasml2m"))))
13533 (properties
13534 `((upstream-name . "ActivePathways")))
13535 (build-system r-build-system)
13536 (propagated-inputs
13537 (list r-data-table r-ggplot2))
13538 (native-inputs
13539 (list r-knitr))
13540 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
13541 (synopsis "Multivariate pathway enrichment analysis")
13542 (description
13543 "This package represents an integrative method of analyzing multi omics
13544 data that conducts enrichment analysis of annotated gene sets. ActivePathways
13545 uses a statistical data fusion approach, rationalizes contributing evidence
13546 and highlights associated genes, improving systems-level understanding of
13547 cellular organization in health and disease.")
13548 (license license:gpl3)))
13549
13550 (define-public r-bgmix
13551 (package
13552 (name "r-bgmix")
13553 (version "1.56.0")
13554 (source
13555 (origin
13556 (method url-fetch)
13557 (uri (bioconductor-uri "BGmix" version))
13558 (sha256
13559 (base32
13560 "03f6nknp3n49yvg2d9qsmds676rva70pr4wjz0md228jczgjk0vj"))))
13561 (properties `((upstream-name . "BGmix")))
13562 (build-system r-build-system)
13563 (propagated-inputs
13564 (list r-kernsmooth))
13565 (home-page "https://bioconductor.org/packages/BGmix/")
13566 (synopsis "Bayesian models for differential gene expression")
13567 (description
13568 "This package provides fully Bayesian mixture models for differential
13569 gene expression.")
13570 (license license:gpl2)))
13571
13572 (define-public r-bgx
13573 (package
13574 (name "r-bgx")
13575 (version "1.62.0")
13576 (source
13577 (origin
13578 (method url-fetch)
13579 (uri (bioconductor-uri "bgx" version))
13580 (sha256
13581 (base32
13582 "0q2y4n6bcc9pvz5sgfkw1lrb00rrp7q29i1vh7srdfmfhgpyz6bk"))))
13583 (properties `((upstream-name . "bgx")))
13584 (build-system r-build-system)
13585 (arguments
13586 (list
13587 #:phases
13588 '(modify-phases %standard-phases
13589 (add-after 'unpack 'do-not-tune-cflags-for-reproducibility
13590 (lambda _
13591 (substitute* "configure.ac"
13592 (("AX_GCC_ARCHFLAG.*") ""))
13593 (delete-file "configure")
13594 (invoke "autoreconf" "-vif"))))))
13595 (inputs
13596 (list boost))
13597 (propagated-inputs
13598 (list r-affy r-biobase r-gcrma r-rcpp))
13599 (native-inputs
13600 (list autoconf automake))
13601 (home-page "https://bioconductor.org/packages/bgx/")
13602 (synopsis "Bayesian gene expression")
13603 (description
13604 "This package provides tools for Bayesian integrated analysis of
13605 Affymetrix GeneChips.")
13606 (license license:gpl2)))
13607
13608 (define-public r-bhc
13609 (package
13610 (name "r-bhc")
13611 (version "1.48.0")
13612 (source
13613 (origin
13614 (method url-fetch)
13615 (uri (bioconductor-uri "BHC" version))
13616 (sha256
13617 (base32
13618 "1kqajd16981y5yaak2imaq1i7pilgqdr3nbhggsakh787j1d9rc5"))))
13619 (properties `((upstream-name . "BHC")))
13620 (build-system r-build-system)
13621 (home-page "https://bioconductor.org/packages/BHC/")
13622 (synopsis "Bayesian hierarchical clustering")
13623 (description
13624 "The method implemented in this package performs bottom-up hierarchical
13625 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
13626 in the data and Bayesian model selection to decide at each step which clusters
13627 to merge. This avoids several limitations of traditional methods, for example
13628 how many clusters there should be and how to choose a principled distance
13629 metric. This implementation accepts multinomial (i.e. discrete, with 2+
13630 categories) or time-series data. This version also includes a randomised
13631 algorithm which is more efficient for larger data sets.")
13632 (license license:gpl3)))
13633
13634 (define-public r-bicare
13635 (package
13636 (name "r-bicare")
13637 (version "1.54.0")
13638 (source
13639 (origin
13640 (method url-fetch)
13641 (uri (bioconductor-uri "BicARE" version))
13642 (sha256
13643 (base32
13644 "0qjh5bsjcjry6k1vzdaascwy2shjrkc2bw0w57w0qa458cbi89z2"))))
13645 (properties `((upstream-name . "BicARE")))
13646 (build-system r-build-system)
13647 (propagated-inputs
13648 (list r-biobase r-gseabase r-multtest))
13649 (home-page "http://bioinfo.curie.fr")
13650 (synopsis "Biclustering analysis and results exploration")
13651 (description
13652 "This is a package for biclustering analysis and exploration of
13653 results.")
13654 (license license:gpl2)))
13655
13656 (define-public r-bifet
13657 (package
13658 (name "r-bifet")
13659 (version "1.16.0")
13660 (source
13661 (origin
13662 (method url-fetch)
13663 (uri (bioconductor-uri "BiFET" version))
13664 (sha256
13665 (base32
13666 "03ypbbn8i0f4bl4m6wfdcv702jydniak56wqjb1vlrckd9aphwzq"))))
13667 (properties `((upstream-name . "BiFET")))
13668 (build-system r-build-system)
13669 (propagated-inputs
13670 (list r-genomicranges r-poibin))
13671 (native-inputs
13672 (list r-knitr))
13673 (home-page "https://bioconductor.org/packages/BiFET")
13674 (synopsis "Bias-free footprint enrichment test")
13675 (description
13676 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
13677 over-represented in target regions compared to background regions after
13678 correcting for the bias arising from the imbalance in read counts and GC
13679 contents between the target and background regions. For a given TF k, BiFET
13680 tests the null hypothesis that the target regions have the same probability of
13681 having footprints for the TF k as the background regions while correcting for
13682 the read count and GC content bias.")
13683 (license license:gpl3)))
13684
13685 (define-public r-rsbml
13686 (package
13687 (name "r-rsbml")
13688 (version "2.54.0")
13689 (source
13690 (origin
13691 (method url-fetch)
13692 (uri (bioconductor-uri "rsbml" version))
13693 (sha256
13694 (base32
13695 "1v11pspkml6xdsacgwxw8r4qdhbnn2h2sqgpm9aidaq9p2085b0v"))))
13696 (properties `((upstream-name . "rsbml")))
13697 (build-system r-build-system)
13698 (inputs
13699 (list libsbml))
13700 (propagated-inputs
13701 (list r-biocgenerics r-graph))
13702 (native-inputs
13703 (list pkg-config))
13704 (home-page "http://www.sbml.org")
13705 (synopsis "R support for SBML")
13706 (description
13707 "This package provides an R interface to libsbml for SBML parsing,
13708 validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
13709 (license license:artistic2.0)))
13710
13711 (define-public r-hypergraph
13712 (package
13713 (name "r-hypergraph")
13714 (version "1.68.0")
13715 (source
13716 (origin
13717 (method url-fetch)
13718 (uri (bioconductor-uri "hypergraph" version))
13719 (sha256
13720 (base32
13721 "0xmryqj5yw1ns6wbhjqbb6h14jlj89zrznzvqnvd4n03ci20kzzp"))))
13722 (properties `((upstream-name . "hypergraph")))
13723 (build-system r-build-system)
13724 (propagated-inputs
13725 (list r-graph))
13726 (home-page "https://bioconductor.org/packages/hypergraph")
13727 (synopsis "Hypergraph data structures")
13728 (description
13729 "This package implements some simple capabilities for representing and
13730 manipulating hypergraphs.")
13731 (license license:artistic2.0)))
13732
13733 (define-public r-hyperdraw
13734 (package
13735 (name "r-hyperdraw")
13736 (version "1.48.0")
13737 (source
13738 (origin
13739 (method url-fetch)
13740 (uri (bioconductor-uri "hyperdraw" version))
13741 (sha256
13742 (base32
13743 "0ndw4y6b15jy4w86vfkahmdc81d3ycjsvqy1mxi55dwvd8xq0ap6"))))
13744 (properties `((upstream-name . "hyperdraw")))
13745 (build-system r-build-system)
13746 (inputs (list graphviz))
13747 (propagated-inputs
13748 (list r-graph r-hypergraph r-rgraphviz))
13749 (home-page "https://bioconductor.org/packages/hyperdraw")
13750 (synopsis "Visualizing hypergraphs")
13751 (description
13752 "This package provides functions for visualizing hypergraphs.")
13753 (license license:gpl2+)))
13754
13755 (define-public r-biggr
13756 (package
13757 (name "r-biggr")
13758 (version "1.32.0")
13759 (source
13760 (origin
13761 (method url-fetch)
13762 (uri (bioconductor-uri "BiGGR" version))
13763 (sha256
13764 (base32
13765 "0n57bgl6xz5b1gpw4isimq2pqxmlabn7jzhbjg2fbxcklabdvrcw"))))
13766 (properties `((upstream-name . "BiGGR")))
13767 (build-system r-build-system)
13768 (propagated-inputs
13769 (list r-hyperdraw
13770 r-hypergraph
13771 r-lim
13772 r-limsolve
13773 r-rsbml
13774 r-stringr))
13775 (home-page "https://bioconductor.org/packages/BiGGR/")
13776 (synopsis "Constraint based modeling using metabolic reconstruction databases")
13777 (description
13778 "This package provides an interface to simulate metabolic reconstruction
13779 from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
13780 reconstruction databases. The package facilitates @dfn{flux balance
13781 analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
13782 networks and estimated fluxes can be visualized with hypergraphs.")
13783 (license license:gpl3+)))
13784
13785 (define-public r-bigmemoryextras
13786 (package
13787 (name "r-bigmemoryextras")
13788 (version "1.38.0")
13789 (source
13790 (origin
13791 (method url-fetch)
13792 (uri (bioconductor-uri "bigmemoryExtras" version))
13793 (sha256
13794 (base32
13795 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
13796 (properties
13797 `((upstream-name . "bigmemoryExtras")))
13798 (build-system r-build-system)
13799 (propagated-inputs
13800 (list r-bigmemory))
13801 (native-inputs
13802 (list r-knitr))
13803 (home-page "https://github.com/phaverty/bigmemoryExtras")
13804 (synopsis "Extension of the bigmemory package")
13805 (description
13806 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
13807 safety and convenience features to the @code{filebacked.big.matrix} class from
13808 the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
13809 monitoring and gracefully restoring the connection to on-disk data and it also
13810 protects against accidental data modification with a file-system-based
13811 permissions system. Utilities are provided for using @code{BigMatrix}-derived
13812 classes as @code{assayData} matrices within the @code{Biobase} package's
13813 @code{eSet} family of classes. @code{BigMatrix} provides some optimizations
13814 related to attaching to, and indexing into, file-backed matrices with
13815 dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
13816 a file-backed matrix with factor properties.")
13817 (license license:artistic2.0)))
13818
13819 (define-public r-bigpint
13820 (package
13821 (name "r-bigpint")
13822 (version "1.12.0")
13823 (source
13824 (origin
13825 (method url-fetch)
13826 (uri (bioconductor-uri "bigPint" version))
13827 (sha256
13828 (base32
13829 "1hp69j2qcidrxqs3dxjjngb09nbzp5x2yy4jz1rjmv6ghif9ccfj"))))
13830 (properties `((upstream-name . "bigPint")))
13831 (build-system r-build-system)
13832 (propagated-inputs
13833 (list r-delayedarray
13834 r-dplyr
13835 r-ggally
13836 r-ggplot2
13837 r-gridextra
13838 r-hexbin
13839 r-hmisc
13840 r-htmlwidgets
13841 r-plotly
13842 r-plyr
13843 r-rcolorbrewer
13844 r-reshape
13845 r-shiny
13846 r-shinycssloaders
13847 r-shinydashboard
13848 r-stringr
13849 r-summarizedexperiment
13850 r-tidyr))
13851 (native-inputs
13852 (list r-knitr))
13853 (home-page "https://github.com/lindsayrutter/bigPint")
13854 (synopsis "Big multivariate data plotted interactively")
13855 (description
13856 "This package provides methods for visualizing large multivariate
13857 datasets using static and interactive scatterplot matrices, parallel
13858 coordinate plots, volcano plots, and litre plots. It includes examples for
13859 visualizing RNA-sequencing datasets and differentially expressed genes.")
13860 (license license:gpl3)))
13861
13862 (define-public r-chemminer
13863 (package
13864 (name "r-chemminer")
13865 (version "3.48.0")
13866 (source
13867 (origin
13868 (method url-fetch)
13869 (uri (bioconductor-uri "ChemmineR" version))
13870 (sha256
13871 (base32
13872 "1nri4zkc9lp1mqgsi0h58486vixwiv2989b6pmx2aj5c3575i0ma"))))
13873 (properties `((upstream-name . "ChemmineR")))
13874 (build-system r-build-system)
13875 (propagated-inputs
13876 (list r-base64enc
13877 r-bh
13878 r-biocgenerics
13879 r-dbi
13880 r-digest
13881 r-dt
13882 r-ggplot2
13883 r-gridextra
13884 r-jsonlite
13885 r-png
13886 r-rcpp
13887 r-rcurl
13888 r-rjson
13889 r-rsvg
13890 r-stringi))
13891 (native-inputs
13892 (list r-knitr))
13893 (home-page "https://github.com/girke-lab/ChemmineR")
13894 (synopsis "Cheminformatics toolkit for R")
13895 (description
13896 "ChemmineR is a cheminformatics package for analyzing drug-like small
13897 molecule data in R. It contains functions for efficient processing of large
13898 numbers of molecules, physicochemical/structural property predictions,
13899 structural similarity searching, classification and clustering of compound
13900 libraries with a wide spectrum of algorithms. In addition, it offers
13901 visualization functions for compound clustering results and chemical
13902 structures.")
13903 (license license:artistic2.0)))
13904
13905 (define-public r-fmcsr
13906 (package
13907 (name "r-fmcsr")
13908 (version "1.38.0")
13909 (source
13910 (origin
13911 (method url-fetch)
13912 (uri (bioconductor-uri "fmcsR" version))
13913 (sha256
13914 (base32 "1mblmk21dxc9v2fikhvfg2njwgl190gkysppl6msxizwcmxsmh30"))))
13915 (properties `((upstream-name . "fmcsR")))
13916 (build-system r-build-system)
13917 (propagated-inputs
13918 (list r-biocgenerics r-chemminer r-runit))
13919 (native-inputs (list r-knitr))
13920 (home-page "https://github.com/girke-lab/fmcsR")
13921 (synopsis "Mismatch tolerant maximum common substructure searching")
13922 (description
13923 "The fmcsR package introduces an efficient @dfn{maximum common
13924 substructure} (MCS) algorithms combined with a novel matching strategy that
13925 allows for atom and/or bond mismatches in the substructures shared among two
13926 small molecules. The resulting flexible MCSs (FMCSs) are often larger than
13927 strict MCSs, resulting in the identification of more common features in their
13928 source structures, as well as a higher sensitivity in finding compounds with
13929 weak structural similarities. The fmcsR package provides several utilities to
13930 use the FMCS algorithm for pairwise compound comparisons, structure similarity
13931 searching and clustering.")
13932 (license license:artistic2.0)))
13933
13934 (define-public r-bioassayr
13935 (package
13936 (name "r-bioassayr")
13937 (version "1.34.0")
13938 (source
13939 (origin
13940 (method url-fetch)
13941 (uri (bioconductor-uri "bioassayR" version))
13942 (sha256
13943 (base32
13944 "0zbrci0vgk4qca28i0qb2izhyrz3r95l1w54h9h3zj9f3vd61wrz"))))
13945 (properties `((upstream-name . "bioassayR")))
13946 (build-system r-build-system)
13947 (propagated-inputs
13948 (list r-biocgenerics
13949 r-chemminer
13950 r-dbi
13951 r-matrix
13952 r-rjson
13953 r-rsqlite
13954 r-xml))
13955 (native-inputs
13956 (list r-knitr))
13957 (home-page "https://github.com/girke-lab/bioassayR")
13958 (synopsis "Cross-target analysis of small molecule bioactivity")
13959 (description
13960 "bioassayR is a computational tool that enables simultaneous analysis of
13961 thousands of bioassay experiments performed over a diverse set of compounds
13962 and biological targets. Unique features include support for large-scale
13963 cross-target analyses of both public and custom bioassays, generation of
13964 @dfn{high throughput screening fingerprints} (HTSFPs), and an optional
13965 preloaded database that provides access to a substantial portion of publicly
13966 available bioactivity data.")
13967 (license license:artistic2.0)))
13968
13969 (define-public r-biobroom
13970 (package
13971 (name "r-biobroom")
13972 (version "1.28.0")
13973 (source
13974 (origin
13975 (method url-fetch)
13976 (uri (bioconductor-uri "biobroom" version))
13977 (sha256
13978 (base32
13979 "04x1z9nchm4mbhqr31011zdprc4md156j4zf003s7xx0n278xsgh"))))
13980 (properties `((upstream-name . "biobroom")))
13981 (build-system r-build-system)
13982 (propagated-inputs
13983 (list r-biobase r-broom r-dplyr r-tidyr))
13984 (native-inputs
13985 (list r-knitr))
13986 (home-page "https://github.com/StoreyLab/biobroom")
13987 (synopsis "Turn Bioconductor objects into tidy data frames")
13988 (description
13989 "This package contains methods for converting standard objects
13990 constructed by bioinformatics packages, especially those in Bioconductor, and
13991 converting them to @code{tidy} data. It thus serves as a complement to the
13992 @code{broom} package, and follows the same tidy, augment, glance division of
13993 tidying methods. Tidying data makes it easy to recombine, reshape and
13994 visualize bioinformatics analyses.")
13995 ;; Any version of the LGPL.
13996 (license license:lgpl3+)))
13997
13998 (define-public r-graphite
13999 (package
14000 (name "r-graphite")
14001 (version "1.42.0")
14002 (source
14003 (origin
14004 (method url-fetch)
14005 (uri (bioconductor-uri "graphite" version))
14006 (sha256
14007 (base32
14008 "0nl5mkgrvf7vsqjy48ij9b1dmxfvp9lf8cpay55h93c4qz4x606g"))))
14009 (properties `((upstream-name . "graphite")))
14010 (build-system r-build-system)
14011 (propagated-inputs
14012 (list r-annotationdbi r-graph r-httr r-rappdirs r-rlang))
14013 (home-page "https://bioconductor.org/packages/graphite/")
14014 (synopsis "Networks from pathway databases")
14015 (description
14016 "Graphite provides networks derived from eight public pathway databases,
14017 and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
14018 symbols).")
14019 (license license:agpl3+)))
14020
14021 (define-public r-reactomepa
14022 (package
14023 (name "r-reactomepa")
14024 (version "1.40.0")
14025 (source
14026 (origin
14027 (method url-fetch)
14028 (uri (bioconductor-uri "ReactomePA" version))
14029 (sha256
14030 (base32
14031 "1fd72m2afxbbvbgwy8knp6fiq1h561plmsh4r8a08w21ngmkz2s5"))))
14032 (properties `((upstream-name . "ReactomePA")))
14033 (build-system r-build-system)
14034 (propagated-inputs
14035 (list r-annotationdbi
14036 r-dose
14037 r-enrichplot
14038 r-ggplot2
14039 r-ggraph
14040 r-graphite
14041 r-igraph
14042 r-reactome-db))
14043 (native-inputs
14044 (list r-knitr))
14045 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
14046 (synopsis "Reactome pathway analysis")
14047 (description
14048 "This package provides functions for pathway analysis based on the
14049 REACTOME pathway database. It implements enrichment analysis, gene set
14050 enrichment analysis and several functions for visualization.")
14051 (license license:gpl2)))
14052
14053 (define-public r-ebarrays
14054 (package
14055 (name "r-ebarrays")
14056 (version "2.60.0")
14057 (source
14058 (origin
14059 (method url-fetch)
14060 (uri (bioconductor-uri "EBarrays" version))
14061 (sha256
14062 (base32
14063 "027zarnpxpdnyl877swp5ypxj7zvq0cjp2q2xs6g6yn5dpqjvxxk"))))
14064 (properties `((upstream-name . "EBarrays")))
14065 (build-system r-build-system)
14066 (propagated-inputs
14067 (list r-biobase r-cluster r-lattice))
14068 (home-page "https://bioconductor.org/packages/EBarrays/")
14069 (synopsis "Gene clustering and differential expression identification")
14070 (description
14071 "EBarrays provides tools for the analysis of replicated/unreplicated
14072 microarray data.")
14073 (license license:gpl2+)))
14074
14075 (define-public r-bioccasestudies
14076 (package
14077 (name "r-bioccasestudies")
14078 (version "1.52.0")
14079 (source
14080 (origin
14081 (method url-fetch)
14082 (uri (bioconductor-uri "BiocCaseStudies" version))
14083 (sha256
14084 (base32
14085 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
14086 (properties
14087 `((upstream-name . "BiocCaseStudies")))
14088 (build-system r-build-system)
14089 (propagated-inputs (list r-biobase))
14090 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
14091 (synopsis "Support for the case studies monograph")
14092 (description
14093 "This package provides software and data to support the case studies
14094 monograph.")
14095 (license license:artistic2.0)))
14096
14097 (define-public r-bioccheck
14098 (package
14099 (name "r-bioccheck")
14100 (version "1.32.1")
14101 (source (origin
14102 (method url-fetch)
14103 (uri (bioconductor-uri "BiocCheck" version))
14104 (sha256
14105 (base32
14106 "0bq4xrz1spp0bmbccxydkw6yw03by5dysz85mn152ab6xixm52lw"))))
14107 (properties
14108 `((upstream-name . "BiocCheck")))
14109 (build-system r-build-system)
14110 (propagated-inputs
14111 (list r-codetools
14112 r-graph
14113 r-httr
14114 r-knitr
14115 r-biocmanager
14116 r-biocviews
14117 r-stringdist))
14118 (native-inputs
14119 (list r-knitr))
14120 (home-page "https://bioconductor.org/packages/BiocCheck")
14121 (synopsis "Executes Bioconductor-specific package checks")
14122 (description "This package contains tools to perform additional quality
14123 checks on R packages that are to be submitted to the Bioconductor repository.")
14124 (license license:artistic2.0)))
14125
14126 (define-public r-biocgraph
14127 (package
14128 (name "r-biocgraph")
14129 (version "1.58.0")
14130 (source
14131 (origin
14132 (method url-fetch)
14133 (uri (bioconductor-uri "biocGraph" version))
14134 (sha256
14135 (base32
14136 "1y59a7c4ahhn1g2wz2hkx83izfn8i85mmxxp63jdd0rg7zwhr6nn"))))
14137 (properties `((upstream-name . "biocGraph")))
14138 (build-system r-build-system)
14139 (propagated-inputs
14140 (list r-biocgenerics r-geneplotter r-graph r-rgraphviz))
14141 (home-page "https://bioconductor.org/packages/biocGraph/")
14142 (synopsis "Graph examples and use cases in Bioinformatics")
14143 (description
14144 "This package provides examples and code that make use of the
14145 different graph related packages produced by Bioconductor.")
14146 (license license:artistic2.0)))
14147
14148 (define-public r-biocstyle
14149 (package
14150 (name "r-biocstyle")
14151 (version "2.24.0")
14152 (source (origin
14153 (method url-fetch)
14154 (uri (bioconductor-uri "BiocStyle" version))
14155 (sha256
14156 (base32
14157 "1nwiib201b9q1x19ihqjqr5jl0vnid8wfgpi8sa3y02bn722g5a5"))))
14158 (properties
14159 `((upstream-name . "BiocStyle")))
14160 (build-system r-build-system)
14161 (propagated-inputs
14162 (list r-biocmanager r-bookdown r-knitr r-rmarkdown r-yaml))
14163 (native-inputs
14164 (list r-knitr))
14165 (home-page "https://bioconductor.org/packages/BiocStyle")
14166 (synopsis "Bioconductor formatting styles")
14167 (description "This package provides standard formatting styles for
14168 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
14169 functionality.")
14170 (license license:artistic2.0)))
14171
14172 (define-public r-biocviews
14173 (package
14174 (name "r-biocviews")
14175 (version "1.64.1")
14176 (source (origin
14177 (method url-fetch)
14178 (uri (bioconductor-uri "biocViews" version))
14179 (sha256
14180 (base32
14181 "0ixcx9qqpmwmnhml3klk5z075km8g2l4q0iqc1dbniga87qgyl38"))))
14182 (properties
14183 `((upstream-name . "biocViews")))
14184 (build-system r-build-system)
14185 (propagated-inputs
14186 (list r-biobase
14187 r-biocmanager
14188 r-graph
14189 r-rbgl
14190 r-rcurl
14191 r-xml
14192 r-runit))
14193 (home-page "https://bioconductor.org/packages/biocViews")
14194 (synopsis "Bioconductor package categorization helper")
14195 (description "The purpose of biocViews is to create HTML pages that
14196 categorize packages in a Bioconductor package repository according to keywords,
14197 also known as views, in a controlled vocabulary.")
14198 (license license:artistic2.0)))
14199
14200 (define-public r-experimenthub
14201 (package
14202 (name "r-experimenthub")
14203 (version "2.4.0")
14204 (source
14205 (origin
14206 (method url-fetch)
14207 (uri (bioconductor-uri "ExperimentHub" version))
14208 (sha256
14209 (base32
14210 "11hna8vrm1az1zk7pw2dv0wh84sd0hw2bi55w40hqvs36csb7lkl"))))
14211 (properties `((upstream-name . "ExperimentHub")))
14212 (build-system r-build-system)
14213 (propagated-inputs
14214 (list r-annotationhub
14215 r-biocfilecache
14216 r-biocgenerics
14217 r-biocmanager
14218 r-curl
14219 r-rappdirs
14220 r-s4vectors))
14221 (native-inputs
14222 (list r-knitr))
14223 (home-page "https://bioconductor.org/packages/ExperimentHub/")
14224 (synopsis "Client to access ExperimentHub resources")
14225 (description
14226 "This package provides a client for the Bioconductor ExperimentHub web
14227 resource. ExperimentHub provides a central location where curated data from
14228 experiments, publications or training courses can be accessed. Each resource
14229 has associated metadata, tags and date of modification. The client creates
14230 and manages a local cache of files retrieved enabling quick and reproducible
14231 access.")
14232 (license license:artistic2.0)))
14233
14234 (define-public r-grohmm
14235 (package
14236 (name "r-grohmm")
14237 (version "1.30.1")
14238 (source
14239 (origin
14240 (method url-fetch)
14241 (uri (bioconductor-uri "groHMM" version))
14242 (sha256
14243 (base32
14244 "0v2mk7xcy483w2nygpmyjp73kj3v5pkk1kf1wr41n33dxqlddqai"))))
14245 (properties `((upstream-name . "groHMM")))
14246 (build-system r-build-system)
14247 (propagated-inputs
14248 (list r-genomeinfodb
14249 r-genomicalignments
14250 r-genomicranges
14251 r-iranges
14252 r-mass
14253 r-rtracklayer
14254 r-s4vectors))
14255 (home-page "https://github.com/Kraus-Lab/groHMM")
14256 (synopsis "GRO-seq analysis pipeline")
14257 (description
14258 "This package provides a pipeline for the analysis of GRO-seq data.")
14259 (license license:gpl3+)))
14260
14261 (define-public r-multiassayexperiment
14262 (package
14263 (name "r-multiassayexperiment")
14264 (version "1.22.0")
14265 (source
14266 (origin
14267 (method url-fetch)
14268 (uri (bioconductor-uri "MultiAssayExperiment" version))
14269 (sha256
14270 (base32
14271 "1wnp52l9vifxn1wzqgndzp9b6ih0s1cflxx1fhw32k32d05cw9q1"))))
14272 (properties
14273 `((upstream-name . "MultiAssayExperiment")))
14274 (build-system r-build-system)
14275 (propagated-inputs
14276 (list r-biobase
14277 r-biocgenerics
14278 r-genomicranges
14279 r-iranges
14280 r-s4vectors
14281 r-summarizedexperiment
14282 r-tidyr))
14283 (native-inputs
14284 (list r-knitr))
14285 (home-page "https://waldronlab.io/MultiAssayExperiment/")
14286 (synopsis "Integration of multi-omics experiments in Bioconductor")
14287 (description
14288 "MultiAssayExperiment harmonizes data management of multiple assays
14289 performed on an overlapping set of specimens. It provides a familiar
14290 Bioconductor user experience by extending concepts from
14291 @code{SummarizedExperiment}, supporting an open-ended mix of standard data
14292 classes for individual assays, and allowing subsetting by genomic ranges or
14293 rownames.")
14294 (license license:artistic2.0)))
14295
14296 (define-public r-bioconcotk
14297 (package
14298 (name "r-bioconcotk")
14299 (version "1.16.0")
14300 (source
14301 (origin
14302 (method url-fetch)
14303 (uri (bioconductor-uri "BiocOncoTK" version))
14304 (sha256
14305 (base32
14306 "1alplszw84vqa1mvzp996f94s40scmh4qwbrqhg43hrnyvbnq7pi"))))
14307 (properties `((upstream-name . "BiocOncoTK")))
14308 (build-system r-build-system)
14309 (propagated-inputs
14310 (list r-bigrquery
14311 r-car
14312 r-complexheatmap
14313 r-curatedtcgadata
14314 r-dbi
14315 r-dplyr
14316 r-dt
14317 r-genomicfeatures
14318 r-genomicranges
14319 r-ggplot2
14320 r-ggpubr
14321 r-graph
14322 r-httr
14323 r-iranges
14324 r-magrittr
14325 r-plyr
14326 r-rgraphviz
14327 r-rjson
14328 r-s4vectors
14329 r-scales
14330 r-shiny
14331 r-summarizedexperiment))
14332 (native-inputs
14333 (list r-knitr))
14334 (home-page "https://bioconductor.org/packages/BiocOncoTK")
14335 (synopsis "Bioconductor components for general cancer genomics")
14336 (description
14337 "The purpose of this package is to provide a central interface to various
14338 tools for genome-scale analysis of cancer studies.")
14339 (license license:artistic2.0)))
14340
14341 (define-public r-biocor
14342 (package
14343 (name "r-biocor")
14344 (version "1.20.0")
14345 (source
14346 (origin
14347 (method url-fetch)
14348 (uri (bioconductor-uri "BioCor" version))
14349 (sha256
14350 (base32
14351 "004mksswampwisljcdz6fswwbgdjdii3y86gjzib0gf8v4w7w4q3"))))
14352 (properties `((upstream-name . "BioCor")))
14353 (build-system r-build-system)
14354 (propagated-inputs
14355 (list r-biocparallel r-gseabase r-matrix))
14356 (native-inputs
14357 (list r-knitr))
14358 (home-page "https://llrs.github.io/BioCor/")
14359 (synopsis "Functional similarities")
14360 (description
14361 "This package provides tools to calculate functional similarities based
14362 on the pathways described on KEGG and REACTOME or in gene sets. These
14363 similarities can be calculated for pathways or gene sets, genes, or clusters
14364 and combined with other similarities. They can be used to improve networks,
14365 gene selection, testing relationships, and so on.")
14366 (license license:expat)))
14367
14368 (define-public r-biocpkgtools
14369 (package
14370 (name "r-biocpkgtools")
14371 (version "1.14.1")
14372 (source
14373 (origin
14374 (method url-fetch)
14375 (uri (bioconductor-uri "BiocPkgTools" version))
14376 (sha256
14377 (base32
14378 "0akryshjdn227a8ir8r0lb59v060h58rhy5vjmdxax8p81ajzxkd"))))
14379 (properties `((upstream-name . "BiocPkgTools")))
14380 (build-system r-build-system)
14381 (propagated-inputs
14382 (list r-biocfilecache
14383 r-biocmanager
14384 r-biocviews
14385 r-dplyr
14386 r-dt
14387 r-gh
14388 r-graph
14389 r-htmltools
14390 r-htmlwidgets
14391 r-httr
14392 r-igraph
14393 r-jsonlite
14394 r-magrittr
14395 r-rbgl
14396 r-readr
14397 r-rlang
14398 r-rvest
14399 r-stringr
14400 r-tibble
14401 r-tidyr
14402 r-tidyselect
14403 r-xml2))
14404 (native-inputs
14405 (list r-knitr))
14406 (home-page "https://github.com/seandavi/BiocPkgTools")
14407 (synopsis "Collection of tools for learning about Bioconductor packages")
14408 (description
14409 "Bioconductor has a rich ecosystem of metadata around packages, usage,
14410 and build status. This package is a simple collection of functions to access
14411 that metadata from R. The goal is to expose metadata for data mining and
14412 value-added functionality such as package searching, text mining, and
14413 analytics on packages.")
14414 (license license:expat)))
14415
14416 (define-public r-biocset
14417 (package
14418 (name "r-biocset")
14419 (version "1.10.0")
14420 (source
14421 (origin
14422 (method url-fetch)
14423 (uri (bioconductor-uri "BiocSet" version))
14424 (sha256
14425 (base32
14426 "1ghba7020inrdxlbrrgds9gjymjxjma2p89b9lgkjin89zalqglh"))))
14427 (properties `((upstream-name . "BiocSet")))
14428 (build-system r-build-system)
14429 (propagated-inputs
14430 (list r-annotationdbi
14431 r-biocio
14432 r-dplyr
14433 r-keggrest
14434 r-ontologyindex
14435 r-plyr
14436 r-rlang
14437 r-s4vectors
14438 r-tibble
14439 r-tidyr))
14440 (native-inputs
14441 (list r-knitr))
14442 (home-page
14443 "https://bioconductor.org/packages/BiocSet")
14444 (synopsis
14445 "Representing Different Biological Sets")
14446 (description
14447 "BiocSet displays different biological sets in a triple tibble format.
14448 These three tibbles are @code{element}, @code{set}, and @code{elementset}.
14449 The user has the ability to activate one of these three tibbles to perform
14450 common functions from the @code{dplyr} package. Mapping functionality and
14451 accessing web references for elements/sets are also available in BiocSet.")
14452 (license license:artistic2.0)))
14453
14454 (define-public r-biocworkflowtools
14455 (package
14456 (name "r-biocworkflowtools")
14457 (version "1.22.0")
14458 (source
14459 (origin
14460 (method url-fetch)
14461 (uri (bioconductor-uri "BiocWorkflowTools" version))
14462 (sha256
14463 (base32
14464 "1jj4icpkhrv9f6yx3vghkpdil1pfghf3yvc9756wmndvhs100r5l"))))
14465 (properties
14466 `((upstream-name . "BiocWorkflowTools")))
14467 (build-system r-build-system)
14468 (propagated-inputs
14469 (list r-biocstyle
14470 r-bookdown
14471 r-git2r
14472 r-httr
14473 r-knitr
14474 r-rmarkdown
14475 r-rstudioapi
14476 r-stringr
14477 r-usethis))
14478 (native-inputs
14479 (list r-knitr))
14480 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
14481 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
14482 (description
14483 "This package provides functions to ease the transition between
14484 Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
14485 (license license:expat)))
14486
14487 (define-public r-biodist
14488 (package
14489 (name "r-biodist")
14490 (version "1.68.0")
14491 (source
14492 (origin
14493 (method url-fetch)
14494 (uri (bioconductor-uri "bioDist" version))
14495 (sha256
14496 (base32
14497 "04nrvrcvpj0sn8p2i8n3ggsl2s7r4na576174i7bn1sj21vr0yb0"))))
14498 (properties `((upstream-name . "bioDist")))
14499 (build-system r-build-system)
14500 (propagated-inputs
14501 (list r-biobase r-kernsmooth))
14502 (home-page "https://bioconductor.org/packages/bioDist/")
14503 (synopsis "Different distance measures")
14504 (description
14505 "This package provides a collection of software tools for calculating
14506 distance measures.")
14507 (license license:artistic2.0)))
14508
14509 (define-public r-pcatools
14510 (package
14511 (name "r-pcatools")
14512 (version "2.8.0")
14513 (source
14514 (origin
14515 (method url-fetch)
14516 (uri (bioconductor-uri "PCAtools" version))
14517 (sha256
14518 (base32
14519 "03s4dh008fys2rrcpzanc0892p63f6jyyvzc9m42jbi1dlkyx26v"))))
14520 (properties `((upstream-name . "PCAtools")))
14521 (build-system r-build-system)
14522 (propagated-inputs
14523 (list r-beachmat
14524 r-bh
14525 r-biocparallel
14526 r-biocsingular
14527 r-cowplot
14528 r-delayedarray
14529 r-delayedmatrixstats
14530 r-dqrng
14531 r-ggplot2
14532 r-ggrepel
14533 r-lattice
14534 r-matrix
14535 r-rcpp
14536 r-reshape2))
14537 (native-inputs (list r-knitr))
14538 (home-page "https://github.com/kevinblighe/PCAtools")
14539 (synopsis "PCAtools: everything Principal Components Analysis")
14540 (description
14541 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
14542 structure of the data without the need to build any model to represent it.
14543 This \"summary\" of the data is arrived at through a process of reduction that
14544 can transform the large number of variables into a lesser number that are
14545 uncorrelated (i.e. the 'principal components'), while at the same time being
14546 capable of easy interpretation on the original data. PCAtools provides
14547 functions for data exploration via PCA, and allows the user to generate
14548 publication-ready figures. PCA is performed via @code{BiocSingular}; users
14549 can also identify an optimal number of principal components via different
14550 metrics, such as the elbow method and Horn's parallel analysis, which has
14551 relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
14552 dimensional mass cytometry data.")
14553 (license license:gpl3)))
14554
14555 (define-public r-rgreat
14556 (package
14557 (name "r-rgreat")
14558 (version "1.28.0")
14559 (source
14560 (origin
14561 (method url-fetch)
14562 (uri (bioconductor-uri "rGREAT" version))
14563 (sha256
14564 (base32
14565 "0px72r8mjimf5mxfwb9qz46kqpgjw5gaqq41hy0212ymjd8whaky"))))
14566 (properties `((upstream-name . "rGREAT")))
14567 (build-system r-build-system)
14568 (propagated-inputs
14569 (list r-genomicranges r-getoptlong r-iranges r-rcurl r-rjson))
14570 (native-inputs (list r-knitr))
14571 (home-page "https://github.com/jokergoo/rGREAT")
14572 (synopsis "Client for GREAT analysis")
14573 (description
14574 "This package makes GREAT (Genomic Regions Enrichment of Annotations
14575 Tool) analysis automatic by constructing a HTTP POST request according to
14576 user's input and automatically retrieving results from GREAT web server.")
14577 (license license:expat)))
14578
14579 (define-public r-m3c
14580 (package
14581 (name "r-m3c")
14582 (version "1.18.0")
14583 (source
14584 (origin
14585 (method url-fetch)
14586 (uri (bioconductor-uri "M3C" version))
14587 (sha256
14588 (base32
14589 "120gd7gkgc98d1l6hl2ij799b3jksdnga5iyb44ps9mbc79hl012"))))
14590 (properties `((upstream-name . "M3C")))
14591 (build-system r-build-system)
14592 (propagated-inputs
14593 (list r-cluster
14594 r-corpcor
14595 r-doparallel
14596 r-dosnow
14597 r-foreach
14598 r-ggplot2
14599 r-matrix
14600 r-matrixcalc
14601 r-rtsne
14602 r-umap))
14603 (native-inputs (list r-knitr))
14604 (home-page "https://bioconductor.org/packages/M3C")
14605 (synopsis "Monte Carlo reference-based consensus clustering")
14606 (description
14607 "M3C is a consensus clustering algorithm that uses a Monte Carlo
14608 simulation to eliminate overestimation of @code{K} and can reject the null
14609 hypothesis @code{K=1}.")
14610 (license license:agpl3+)))
14611
14612 (define-public r-icens
14613 (package
14614 (name "r-icens")
14615 (version "1.68.0")
14616 (source
14617 (origin
14618 (method url-fetch)
14619 (uri (bioconductor-uri "Icens" version))
14620 (sha256
14621 (base32
14622 "0jnbfv7js8bw0ginql90krrpk0p54whj9igw0zk3jc45jqvj2vyc"))))
14623 (properties `((upstream-name . "Icens")))
14624 (build-system r-build-system)
14625 (propagated-inputs
14626 (list r-survival))
14627 (home-page "https://bioconductor.org/packages/Icens")
14628 (synopsis "NPMLE for censored and truncated data")
14629 (description
14630 "This package provides many functions for computing the
14631 @dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
14632 truncated data.")
14633 (license license:artistic2.0)))
14634
14635 ;; This is a CRAN package but it depends on r-icens, which is published on
14636 ;; Bioconductor.
14637 (define-public r-interval
14638 (package
14639 (name "r-interval")
14640 (version "1.1-0.8")
14641 (source
14642 (origin
14643 (method url-fetch)
14644 (uri (cran-uri "interval" version))
14645 (sha256
14646 (base32
14647 "0g0k9nri19p3y3s70ic1w3i3sxq8fbsxaikd7c4d6afqzr8hk2nl"))))
14648 (properties `((upstream-name . "interval")))
14649 (build-system r-build-system)
14650 (propagated-inputs
14651 (list r-icens r-mlecens r-perm r-survival))
14652 (home-page "https://cran.r-project.org/web/packages/interval/")
14653 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
14654 (description
14655 "This package provides functions to fit nonparametric survival curves,
14656 plot them, and perform logrank or Wilcoxon type tests.")
14657 (license license:gpl2+)))
14658
14659 ;; This is a CRAN package, but it depends on r-interval, which depends on a
14660 ;; Bioconductor package.
14661 (define-public r-fhtest
14662 (package
14663 (name "r-fhtest")
14664 (version "1.5")
14665 (source
14666 (origin
14667 (method url-fetch)
14668 (uri (cran-uri "FHtest" version))
14669 (sha256
14670 (base32
14671 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
14672 (properties `((upstream-name . "FHtest")))
14673 (build-system r-build-system)
14674 (propagated-inputs
14675 (list r-interval r-kmsurv r-mass r-perm r-survival))
14676 (home-page "https://cran.r-project.org/web/packages/FHtest/")
14677 (synopsis "Tests for survival data based on the Fleming-Harrington class")
14678 (description
14679 "This package provides functions to compare two or more survival curves
14680 with:
14681
14682 @itemize
14683 @item The Fleming-Harrington test for right-censored data based on
14684 permutations and on counting processes.
14685 @item An extension of the Fleming-Harrington test for interval-censored data
14686 based on a permutation distribution and on a score vector distribution.
14687 @end itemize
14688 ")
14689 (license license:gpl2+)))
14690
14691 (define-public r-fourcseq
14692 (package
14693 (name "r-fourcseq")
14694 (version "1.24.0")
14695 (source
14696 (origin
14697 (method url-fetch)
14698 (uri (bioconductor-uri "FourCSeq" version))
14699 (sha256
14700 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
14701 (properties `((upstream-name . "FourCSeq")))
14702 (build-system r-build-system)
14703 (propagated-inputs
14704 (list r-biobase
14705 r-biostrings
14706 r-deseq2
14707 r-fda
14708 r-genomicalignments
14709 r-genomicranges
14710 r-ggbio
14711 r-ggplot2
14712 r-gtools
14713 r-lsd
14714 r-matrix
14715 r-reshape2
14716 r-rsamtools
14717 r-rtracklayer
14718 r-summarizedexperiment))
14719 (native-inputs
14720 (list r-knitr))
14721 (home-page
14722 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
14723 (synopsis "Analysis of multiplexed 4C sequencing data")
14724 (description
14725 "This package is an R package dedicated to the analysis of (multiplexed)
14726 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
14727 interactions between DNA elements and identify differential interactions
14728 between conditions. The statistical analysis in R starts with individual bam
14729 files for each sample as inputs. To obtain these files, the package contains
14730 a Python script to demultiplex libraries and trim off primer sequences. With
14731 a standard alignment software the required bam files can be then be
14732 generated.")
14733 (license license:gpl3+)))
14734
14735 (define-public r-preprocesscore
14736 (package
14737 (name "r-preprocesscore")
14738 (version "1.58.0")
14739 (source
14740 (origin
14741 (method url-fetch)
14742 (uri (bioconductor-uri "preprocessCore" version))
14743 (sha256
14744 (base32
14745 "1sqpp00hhv6gypflrjw8qpqyqgdcp29m86gmi1di1574x8casdkf"))))
14746 (properties
14747 `((upstream-name . "preprocessCore")))
14748 (build-system r-build-system)
14749 (home-page "https://github.com/bmbolstad/preprocessCore")
14750 (synopsis "Collection of pre-processing functions")
14751 (description
14752 "This package provides a library of core pre-processing and normalization
14753 routines.")
14754 (license license:lgpl2.0+)))
14755
14756 (define-public r-s4vectors
14757 (package
14758 (name "r-s4vectors")
14759 (version "0.34.0")
14760 (source (origin
14761 (method url-fetch)
14762 (uri (bioconductor-uri "S4Vectors" version))
14763 (sha256
14764 (base32
14765 "0j3ybhzdhlhw8527nks3mjja28asjya2n0m0rjkh4bw66rkfys4k"))))
14766 (properties
14767 `((upstream-name . "S4Vectors")))
14768 (build-system r-build-system)
14769 (propagated-inputs
14770 (list r-biocgenerics))
14771 (home-page "https://bioconductor.org/packages/S4Vectors")
14772 (synopsis "S4 implementation of vectors and lists")
14773 (description
14774 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
14775 classes and a set of generic functions that extend the semantic of ordinary
14776 vectors and lists in R. Package developers can easily implement vector-like
14777 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
14778 In addition, a few low-level concrete subclasses of general interest (e.g.
14779 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
14780 S4Vectors package itself.")
14781 (license license:artistic2.0)))
14782
14783 ;; This is a CRAN package, but it depends on preprocessorcore, which is a
14784 ;; Bioconductor package.
14785 (define-public r-wgcna
14786 (package
14787 (name "r-wgcna")
14788 (version "1.71")
14789 (source
14790 (origin
14791 (method url-fetch)
14792 (uri (cran-uri "WGCNA" version))
14793 (sha256
14794 (base32
14795 "027pkc4pyn9bifqbjs05318gvlm06mffw016j50n59wfi2g39x91"))))
14796 (properties `((upstream-name . "WGCNA")))
14797 (build-system r-build-system)
14798 (propagated-inputs
14799 (list r-annotationdbi
14800 r-doparallel
14801 r-dynamictreecut
14802 r-fastcluster
14803 r-foreach
14804 r-go-db
14805 r-hmisc
14806 r-impute
14807 r-rcpp
14808 r-survival
14809 r-matrixstats
14810 r-preprocesscore))
14811 (home-page
14812 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14813 (synopsis "Weighted correlation network analysis")
14814 (description
14815 "This package provides functions necessary to perform Weighted
14816 Correlation Network Analysis on high-dimensional data. It includes functions
14817 for rudimentary data cleaning, construction and summarization of correlation
14818 networks, module identification and functions for relating both variables and
14819 modules to sample traits. It also includes a number of utility functions for
14820 data manipulation and visualization.")
14821 (license license:gpl2+)))
14822
14823 (define-public r-rgraphviz
14824 (package
14825 (name "r-rgraphviz")
14826 (version "2.40.0")
14827 (source
14828 (origin
14829 (method url-fetch)
14830 (uri (bioconductor-uri "Rgraphviz" version))
14831 (sha256
14832 (base32
14833 "1r6ff7w2bmyfl1vzjvpgnhb8f5arwjlpab8fw5ph8fgyiqbcx94l"))))
14834 (properties `((upstream-name . "Rgraphviz")))
14835 (build-system r-build-system)
14836 (arguments
14837 `(#:phases
14838 (modify-phases %standard-phases
14839 (add-after 'unpack 'make-reproducible
14840 (lambda _
14841 ;; The replacement value is taken from src/graphviz/builddate.h
14842 (substitute* "src/graphviz/configure"
14843 (("VERSION_DATE=.*")
14844 "VERSION_DATE=20200427.2341\n"))
14845 #t)))))
14846 ;; FIXME: Rgraphviz bundles the sources of an older variant of
14847 ;; graphviz. It does not build with the latest version of graphviz, so
14848 ;; we do not add graphviz to the inputs.
14849 (inputs (list zlib))
14850 (propagated-inputs
14851 (list r-graph))
14852 (native-inputs
14853 (list pkg-config))
14854 (home-page "https://bioconductor.org/packages/Rgraphviz")
14855 (synopsis "Plotting capabilities for R graph objects")
14856 (description
14857 "This package interfaces R with the graphviz library for plotting R graph
14858 objects from the @code{graph} package.")
14859 (license license:epl1.0)))
14860
14861 (define-public r-fishpond
14862 (package
14863 (name "r-fishpond")
14864 (version "2.2.0")
14865 (source (origin
14866 (method url-fetch)
14867 (uri (bioconductor-uri "fishpond" version))
14868 (sha256
14869 (base32
14870 "0svp4yh0srhzbbxy1grchzdd9yzchadjp3d2sy2n9xpwxzpkhrym"))))
14871 (properties `((upstream-name . "fishpond")))
14872 (build-system r-build-system)
14873 (inputs (list zlib))
14874 (propagated-inputs
14875 (list r-abind
14876 r-genomicranges
14877 r-gtools
14878 r-iranges
14879 r-jsonlite
14880 r-matrix
14881 r-matrixstats
14882 r-qvalue
14883 r-rcpp
14884 r-s4vectors
14885 r-singlecellexperiment
14886 r-summarizedexperiment
14887 r-svmisc))
14888 (native-inputs (list r-knitr))
14889 (home-page "https://github.com/mikelove/fishpond")
14890 (synopsis "Downstream methods and tools for expression data")
14891 (description
14892 "The @code{fishpond} package contains methods for differential transcript
14893 and gene expression analysis of RNA-seq data using inferential replicates for
14894 uncertainty of abundance quantification, as generated by Gibbs sampling or
14895 bootstrap sampling. Also the package contains a number of utilities for
14896 working with Salmon and Alevin quantification files.")
14897 (license license:gpl2)))
14898
14899 (define-public r-fithic
14900 (package
14901 (name "r-fithic")
14902 (version "1.22.0")
14903 (source (origin
14904 (method url-fetch)
14905 (uri (bioconductor-uri "FitHiC" version))
14906 (sha256
14907 (base32
14908 "0iv14yx3g7shzl8qrjknyxbmiylj51sbd1wzr1ff9lc5shgl55kq"))))
14909 (properties `((upstream-name . "FitHiC")))
14910 (build-system r-build-system)
14911 (propagated-inputs
14912 (list r-data-table r-fdrtool r-rcpp))
14913 (native-inputs
14914 (list r-knitr))
14915 (home-page "https://bioconductor.org/packages/FitHiC")
14916 (synopsis "Confidence estimation for intra-chromosomal contact maps")
14917 (description
14918 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
14919 intra-chromosomal contact maps produced by genome-wide genome architecture
14920 assays such as Hi-C.")
14921 (license license:gpl2+)))
14922
14923 (define-public r-hitc
14924 (package
14925 (name "r-hitc")
14926 (version "1.40.0")
14927 (source (origin
14928 (method url-fetch)
14929 (uri (bioconductor-uri "HiTC" version))
14930 (sha256
14931 (base32
14932 "1pkshlrra26cad0hf8a54brlkazni6rsvrplh36azxapx5rpps4s"))))
14933 (properties `((upstream-name . "HiTC")))
14934 (build-system r-build-system)
14935 (propagated-inputs
14936 (list r-biostrings
14937 r-genomeinfodb
14938 r-genomicranges
14939 r-iranges
14940 r-matrix
14941 r-rcolorbrewer
14942 r-rtracklayer))
14943 (home-page "https://bioconductor.org/packages/HiTC")
14944 (synopsis "High throughput chromosome conformation capture analysis")
14945 (description
14946 "The HiTC package was developed to explore high-throughput \"C\" data
14947 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
14948 quality controls, normalization, visualization, and further analysis are also
14949 provided.")
14950 (license license:artistic2.0)))
14951
14952 (define-public r-hdf5array
14953 (package
14954 (name "r-hdf5array")
14955 (version "1.24.2")
14956 (source
14957 (origin
14958 (method url-fetch)
14959 (uri (bioconductor-uri "HDF5Array" version))
14960 (sha256
14961 (base32
14962 "1dzx5463ig3ag72a47slc4jbq5id11w77cj0zgzr85h0dbxklrr9"))))
14963 (properties `((upstream-name . "HDF5Array")))
14964 (build-system r-build-system)
14965 (inputs
14966 (list zlib))
14967 (propagated-inputs
14968 (list r-biocgenerics
14969 r-delayedarray
14970 r-iranges
14971 r-matrix
14972 r-rhdf5
14973 r-rhdf5filters
14974 r-rhdf5lib
14975 r-s4vectors))
14976 (home-page "https://bioconductor.org/packages/HDF5Array")
14977 (synopsis "HDF5 back end for DelayedArray objects")
14978 (description "This package provides an array-like container for convenient
14979 access and manipulation of HDF5 datasets. It supports delayed operations and
14980 block processing.")
14981 (license license:artistic2.0)))
14982
14983 (define-public r-rhdf5lib
14984 (package
14985 (name "r-rhdf5lib")
14986 (version "1.18.2")
14987 (source
14988 (origin
14989 (method url-fetch)
14990 (uri (bioconductor-uri "Rhdf5lib" version))
14991 (sha256
14992 (base32
14993 "1jpb8h7c724yz51zjfqs90bsqxgmy1rry2ra9qamsgqpr2j9764g"))
14994 (modules '((guix build utils)))
14995 (snippet
14996 '(begin
14997 ;; Delete bundled binaries
14998 (delete-file-recursively "src/wininclude/")
14999 (delete-file-recursively "src/winlib/")
15000 (delete-file "src/hdf5small_cxx_hl_1.10.7.tar.gz")))))
15001 (properties `((upstream-name . "Rhdf5lib")))
15002 (build-system r-build-system)
15003 (arguments
15004 `(#:phases
15005 (modify-phases %standard-phases
15006 (add-after 'unpack 'do-not-use-bundled-hdf5
15007 (lambda* (#:key inputs #:allow-other-keys)
15008 (for-each delete-file '("configure" "configure.ac"))
15009 (substitute* "R/zzz.R"
15010 (("return\\(links\\)") "return(\" -lz\")"))
15011 (with-directory-excursion "src"
15012 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
15013 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
15014 "hdf5")
15015 ;; Remove timestamp and host system information to make
15016 ;; the build reproducible.
15017 (substitute* "hdf5/src/libhdf5.settings.in"
15018 (("Configured on: @CONFIG_DATE@")
15019 "Configured on: Guix")
15020 (("Uname information:.*")
15021 "Uname information: Linux\n")
15022 ;; Remove unnecessary store reference.
15023 (("C Compiler:.*")
15024 "C Compiler: GCC\n"))
15025 (rename-file "hdf5/src/libhdf5.settings.in"
15026 "hdf5/src/libhdf5.settings")
15027 (rename-file "Makevars.in" "Makevars")
15028 (substitute* "Makevars"
15029 (("@BUILD_HDF5@") "")
15030 (("@COPY_SZIP@") "")
15031 (("@ZLIB_LIB@") "-lz")
15032 (("@ZLIB_INCLUDE@") "")
15033 (("HDF5_CXX_LIB=.*")
15034 (string-append "HDF5_CXX_LIB="
15035 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
15036 (("HDF5_LIB=.*")
15037 (string-append "HDF5_LIB="
15038 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
15039 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
15040 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
15041 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
15042 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
15043 (("HDF5_HL_LIB=.*")
15044 (string-append "HDF5_HL_LIB="
15045 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
15046 (("HDF5_HL_CXX_LIB=.*")
15047 (string-append "HDF5_HL_CXX_LIB="
15048 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
15049 ;; szip is non-free software
15050 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
15051 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n"))))))))
15052 (propagated-inputs
15053 (list hdf5-1.10 zlib))
15054 (native-inputs
15055 `(("hdf5-source" ,(package-source hdf5-1.10))
15056 ("r-knitr" ,r-knitr)))
15057 (home-page "https://bioconductor.org/packages/Rhdf5lib")
15058 (synopsis "HDF5 library as an R package")
15059 (description "This package provides C and C++ HDF5 libraries for use in R
15060 packages.")
15061 (license license:artistic2.0)))
15062
15063 (define-public r-beachmat
15064 (package
15065 (name "r-beachmat")
15066 (version "2.12.0")
15067 (source
15068 (origin
15069 (method url-fetch)
15070 (uri (bioconductor-uri "beachmat" version))
15071 (sha256
15072 (base32
15073 "0fc6vvjjq1mfjfj2zqkap3rwvinnfqjs0cpk1447sspvd1rjya8c"))))
15074 (build-system r-build-system)
15075 (propagated-inputs
15076 (list r-biocgenerics r-delayedarray r-matrix r-rcpp))
15077 (native-inputs
15078 (list r-knitr))
15079 (home-page "https://bioconductor.org/packages/beachmat")
15080 (synopsis "Compiling Bioconductor to handle each matrix type")
15081 (description "This package provides a consistent C++ class interface for a
15082 variety of commonly used matrix types, including sparse and HDF5-backed
15083 matrices.")
15084 (license license:gpl3)))
15085
15086 ;; This package includes files that have been taken from kentutils. Some
15087 ;; parts of kentutils are not released under a free license, but this package
15088 ;; only uses files that are also found in the free parts of kentutils.
15089 (define-public r-cner
15090 (package
15091 (name "r-cner")
15092 (version "1.32.0")
15093 (source
15094 (origin
15095 (method url-fetch)
15096 (uri (bioconductor-uri "CNEr" version))
15097 (sha256
15098 (base32 "05zvr5fv8nprxqh2wvvrlf737dq242i20p1rpyqjaxihl6xl62kq"))))
15099 (properties `((upstream-name . "CNEr")))
15100 (build-system r-build-system)
15101 (inputs (list zlib))
15102 (propagated-inputs
15103 (list r-annotate
15104 r-biocgenerics
15105 r-biostrings
15106 r-dbi
15107 r-genomeinfodb
15108 r-genomicalignments
15109 r-genomicranges
15110 r-ggplot2
15111 r-go-db
15112 r-iranges
15113 r-keggrest
15114 r-powerlaw
15115 r-r-utils
15116 r-readr
15117 r-reshape2
15118 r-rsqlite
15119 r-rtracklayer
15120 r-s4vectors
15121 r-xvector))
15122 (native-inputs
15123 (list r-knitr))
15124 (home-page "https://github.com/ge11232002/CNEr")
15125 (synopsis "CNE Detection and Visualization")
15126 (description
15127 "This package provides tools for large-scale identification and
15128 advanced visualization of sets of conserved noncoding elements.")
15129 ;; For all files in src/ucsc "license is hereby granted for all use -
15130 ;; public, private or commercial"; this includes those files that don't
15131 ;; have a license header, because they are included in the free parts of
15132 ;; the kentutils package.
15133 (license (list license:gpl2
15134 (license:non-copyleft
15135 "https://raw.githubusercontent.com/ucscGenomeBrowser/kent/v410_base/src/lib/LICENSE")))))
15136
15137 (define-public r-tfbstools
15138 (package
15139 (name "r-tfbstools")
15140 (version "1.34.0")
15141 (source
15142 (origin
15143 (method url-fetch)
15144 (uri (bioconductor-uri "TFBSTools" version))
15145 (sha256
15146 (base32
15147 "0l6j1r2cx7jfd39qzbyynk4jvzd81ys6yypzxjc97js4kkyrx29w"))))
15148 (properties `((upstream-name . "TFBSTools")))
15149 (build-system r-build-system)
15150 (propagated-inputs
15151 (list r-biobase
15152 r-biocgenerics
15153 r-biocparallel
15154 r-biostrings
15155 r-bsgenome
15156 r-catools
15157 r-cner
15158 r-dbi
15159 r-dirichletmultinomial
15160 r-genomeinfodb
15161 r-genomicranges
15162 r-gtools
15163 r-iranges
15164 r-rsqlite
15165 r-rtracklayer
15166 r-s4vectors
15167 r-seqlogo
15168 r-tfmpvalue
15169 r-xml
15170 r-xvector))
15171 (native-inputs (list r-knitr))
15172 (home-page "https://github.com/ge11232002/TFBSTools")
15173 (synopsis "Transcription factor binding site (TFBS) analysis")
15174 (description
15175 "TFBSTools is a package for the analysis and manipulation of
15176 transcription factor binding sites. It includes matrices conversion
15177 between @dfn{Position Frequency Matrix} (PFM), @dfn{Position Weight
15178 Matrix} (PWM) and @dfn{Information Content Matrix} (ICM). It can also
15179 scan putative TFBS from sequence/alignment, query JASPAR database and
15180 provides a wrapper of de novo motif discovery software.")
15181 (license license:gpl2)))
15182
15183 (define-public r-maftools
15184 (package
15185 (name "r-maftools")
15186 (version "2.12.0")
15187 (source
15188 (origin
15189 (method url-fetch)
15190 (uri (bioconductor-uri "maftools" version))
15191 (sha256
15192 (base32 "1gqfi95v4fs64n4walij0g2kds3fbbwp6lih5yakmgf6kj8fpkk6"))))
15193 (properties `((upstream-name . "maftools")))
15194 (build-system r-build-system)
15195 (propagated-inputs
15196 (list r-data-table
15197 r-dnacopy
15198 r-rcolorbrewer
15199 r-rhtslib
15200 r-survival
15201 r-zlibbioc))
15202 (native-inputs (list r-knitr))
15203 (home-page "https://github.com/PoisonAlien/maftools")
15204 (synopsis "Summarize, analyze and visualize MAF files")
15205 (description
15206 "Analyze and visualize Mutation Annotation Format (MAF) files from large
15207 scale sequencing studies. This package provides various functions to perform
15208 most commonly used analyses in cancer genomics and to create feature rich
15209 customizable visualzations with minimal effort.")
15210 (license license:expat)))
15211
15212 (define-public r-motifmatchr
15213 (package
15214 (name "r-motifmatchr")
15215 (version "1.18.0")
15216 (source
15217 (origin
15218 (method url-fetch)
15219 (uri (bioconductor-uri "motifmatchr" version))
15220 (sha256
15221 (base32
15222 "1ssn00mxwk23zr5na0vcmxvm69i68f0ga0wqlv1nk2isg0wpv878"))))
15223 (properties `((upstream-name . "motifmatchr")))
15224 (build-system r-build-system)
15225 (propagated-inputs
15226 (list r-biostrings
15227 r-bsgenome
15228 r-genomeinfodb
15229 r-genomicranges
15230 r-iranges
15231 r-matrix
15232 r-rcpp
15233 r-rcpparmadillo
15234 r-rsamtools
15235 r-s4vectors
15236 r-summarizedexperiment
15237 r-tfbstools))
15238 (native-inputs (list r-knitr))
15239 (home-page "https://bioconductor.org/packages/motifmatchr")
15240 (synopsis "Fast motif matching in R")
15241 (description
15242 "Quickly find motif matches for many motifs and many sequences.
15243 This package wraps C++ code from the MOODS motif calling library.")
15244 (license license:gpl3)))
15245
15246 (define-public r-chromvar
15247 (package
15248 (name "r-chromvar")
15249 (version "1.18.0")
15250 (source
15251 (origin
15252 (method url-fetch)
15253 (uri (bioconductor-uri "chromVAR" version))
15254 (sha256
15255 (base32 "0vhsvkm4kvln0002f13ayk57f9fmiz1kw9vwpsm1vds1vahd656m"))))
15256 (properties `((upstream-name . "chromVAR")))
15257 (build-system r-build-system)
15258 (propagated-inputs
15259 (list r-biocgenerics
15260 r-biocparallel
15261 r-biostrings
15262 r-bsgenome
15263 r-dt
15264 r-genomeinfodb
15265 r-genomicranges
15266 r-ggplot2
15267 r-iranges
15268 r-matrix
15269 r-miniui
15270 r-nabor
15271 r-plotly
15272 r-rcolorbrewer
15273 r-rcpp
15274 r-rcpparmadillo
15275 r-rsamtools
15276 r-rtsne
15277 r-s4vectors
15278 r-shiny
15279 r-summarizedexperiment
15280 r-tfbstools))
15281 (native-inputs (list r-knitr))
15282 (home-page "https://bioconductor.org/packages/release/bioc/html/chromVAR.html")
15283 (synopsis "Determine chromatin variation across regions")
15284 (description
15285 "This package @code{r-chromvar} determines variation in chromatin
15286 accessibility across sets of annotations or peaks. @code{r-chromvar} is
15287 designed primarily for single-cell or sparse chromatin accessibility data like
15288 single cell assay for transposase-accessible chromatin using
15289 sequencing (@code{scATAC-seq} or sparse bulk ATAC or deoxyribonuclease
15290 sequence (@code{DNAse-seq}) experiments.")
15291 (license license:expat)))
15292
15293 (define-public r-singlecellexperiment
15294 (package
15295 (name "r-singlecellexperiment")
15296 (version "1.18.0")
15297 (source
15298 (origin
15299 (method url-fetch)
15300 (uri (bioconductor-uri "SingleCellExperiment" version))
15301 (sha256
15302 (base32
15303 "0s1aqbvlfnzijzfywjfpinqmxqj269dq2d3zlgf4xw9c1nwwnv7p"))))
15304 (properties
15305 `((upstream-name . "SingleCellExperiment")))
15306 (build-system r-build-system)
15307 (propagated-inputs
15308 (list r-biocgenerics r-delayedarray r-genomicranges r-s4vectors
15309 r-summarizedexperiment))
15310 (native-inputs
15311 (list r-knitr))
15312 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
15313 (synopsis "S4 classes for single cell data")
15314 (description "This package defines an S4 class for storing data from
15315 single-cell experiments. This includes specialized methods to store and
15316 retrieve spike-in information, dimensionality reduction coordinates and size
15317 factors for each cell, along with the usual metadata for genes and
15318 libraries.")
15319 (license license:gpl3)))
15320
15321 (define-public r-singler
15322 (package
15323 (name "r-singler")
15324 (version "1.10.0")
15325 (source
15326 (origin
15327 (method url-fetch)
15328 (uri (bioconductor-uri "SingleR" version))
15329 (sha256
15330 (base32 "0qbyc6ygw2xv3li9187i3axsw6ihwpa7pkvxvy9cagv7xck45c5y"))))
15331 (properties `((upstream-name . "SingleR")))
15332 (build-system r-build-system)
15333 (propagated-inputs
15334 (list r-beachmat
15335 r-biocneighbors
15336 r-biocparallel
15337 r-biocsingular
15338 r-delayedarray
15339 r-delayedmatrixstats
15340 r-matrix
15341 r-rcpp
15342 r-s4vectors
15343 r-summarizedexperiment))
15344 (native-inputs (list r-knitr))
15345 (home-page "https://github.com/LTLA/SingleR")
15346 (synopsis "Reference-based single-cell RNA-seq annotation")
15347 (description
15348 "This package performs unbiased cell type recognition from single-cell
15349 RNA sequencing data, by leveraging reference transcriptomic datasets of pure
15350 cell types to infer the cell of origin of each single cell independently.")
15351 (license license:gpl3)))
15352
15353 (define-public r-scuttle
15354 (package
15355 (name "r-scuttle")
15356 (version "1.6.3")
15357 (source
15358 (origin
15359 (method url-fetch)
15360 (uri (bioconductor-uri "scuttle" version))
15361 (sha256
15362 (base32
15363 "1w1jy5fqkp2d03lp84d49fsksnl0pcg0wgqyd49d5k1mipdw4671"))))
15364 (properties `((upstream-name . "scuttle")))
15365 (build-system r-build-system)
15366 (propagated-inputs
15367 (list r-beachmat
15368 r-biocgenerics
15369 r-biocparallel
15370 r-delayedarray
15371 r-delayedmatrixstats
15372 r-genomicranges
15373 r-matrix
15374 r-rcpp
15375 r-s4vectors
15376 r-singlecellexperiment
15377 r-summarizedexperiment))
15378 (native-inputs (list r-knitr))
15379 (home-page "https://bioconductor.org/packages/scuttle")
15380 (synopsis "Single-cell RNA-Seq analysis utilities")
15381 (description
15382 "This package provides basic utility functions for performing single-cell
15383 analyses, focusing on simple normalization, quality control and data
15384 transformations. It also provides some helper functions to assist development
15385 of other packages.")
15386 (license license:gpl3)))
15387
15388 (define-public r-scater
15389 (package
15390 (name "r-scater")
15391 (version "1.24.0")
15392 (source (origin
15393 (method url-fetch)
15394 (uri (bioconductor-uri "scater" version))
15395 (sha256
15396 (base32
15397 "0dqirggw7my5nq4ln9q0ya18ciqplkz9gx318ffias9ag3yii5rw"))))
15398 (build-system r-build-system)
15399 (propagated-inputs
15400 (list r-beachmat
15401 r-biocgenerics
15402 r-biocneighbors
15403 r-biocparallel
15404 r-biocsingular
15405 r-delayedarray
15406 r-delayedmatrixstats
15407 r-ggbeeswarm
15408 r-ggplot2
15409 r-ggrepel
15410 r-gridextra
15411 r-matrix
15412 r-rcolorbrewer
15413 r-rcppml
15414 r-rlang
15415 r-rtsne
15416 r-s4vectors
15417 r-scuttle
15418 r-singlecellexperiment
15419 r-summarizedexperiment
15420 r-viridis))
15421 (native-inputs
15422 (list r-knitr))
15423 (home-page "https://github.com/davismcc/scater")
15424 (synopsis "Single-cell analysis toolkit for gene expression data in R")
15425 (description "This package provides a collection of tools for doing
15426 various analyses of single-cell RNA-seq gene expression data, with a focus on
15427 quality control.")
15428 (license license:gpl2+)))
15429
15430 (define-public r-scran
15431 (package
15432 (name "r-scran")
15433 (version "1.24.1")
15434 (source
15435 (origin
15436 (method url-fetch)
15437 (uri (bioconductor-uri "scran" version))
15438 (sha256
15439 (base32
15440 "1a6vlq8i5gh7zxm6igmy75187pkx42z28qjag50m49xy5valw3ni"))))
15441 (build-system r-build-system)
15442 (propagated-inputs
15443 (list r-beachmat
15444 r-bh
15445 r-biocgenerics
15446 r-biocparallel
15447 r-biocsingular
15448 r-bluster
15449 r-delayedarray
15450 r-delayedmatrixstats
15451 r-dqrng
15452 r-edger
15453 r-igraph
15454 r-limma
15455 r-matrix
15456 r-metapod
15457 r-rcpp
15458 r-s4vectors
15459 r-scuttle
15460 r-singlecellexperiment
15461 r-statmod
15462 r-summarizedexperiment))
15463 (native-inputs
15464 (list r-knitr))
15465 (home-page "https://bioconductor.org/packages/scran")
15466 (synopsis "Methods for single-cell RNA-Seq data analysis")
15467 (description "This package implements a variety of low-level analyses of
15468 single-cell RNA-seq data. Methods are provided for normalization of
15469 cell-specific biases, assignment of cell cycle phase, and detection of highly
15470 variable and significantly correlated genes.")
15471 (license license:gpl3)))
15472
15473 (define-public r-sparsematrixstats
15474 (package
15475 (name "r-sparsematrixstats")
15476 (version "1.8.0")
15477 (source
15478 (origin
15479 (method url-fetch)
15480 (uri (bioconductor-uri "sparseMatrixStats" version))
15481 (sha256
15482 (base32
15483 "0p12kay7p5zbfm2589wdx0n9jhgpf5fb2fsmkhn3p4ck4xcy13x2"))))
15484 (properties
15485 `((upstream-name . "sparseMatrixStats")))
15486 (build-system r-build-system)
15487 (propagated-inputs
15488 (list r-matrix r-matrixgenerics r-matrixstats r-rcpp))
15489 (native-inputs (list r-knitr))
15490 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
15491 (synopsis "Summary statistics for rows and columns of sparse matrices")
15492 (description
15493 "This package provides high performance functions for row and column
15494 operations on sparse matrices. Currently, the optimizations are limited to
15495 data in the column sparse format.")
15496 (license license:expat)))
15497
15498 (define-public r-delayedmatrixstats
15499 (package
15500 (name "r-delayedmatrixstats")
15501 (version "1.18.1")
15502 (source
15503 (origin
15504 (method url-fetch)
15505 (uri (bioconductor-uri "DelayedMatrixStats" version))
15506 (sha256
15507 (base32
15508 "1kq643fmfzq1qjvpj3kc092ahc3qamqgx53layqsyvz5mil55jjv"))))
15509 (properties
15510 `((upstream-name . "DelayedMatrixStats")))
15511 (build-system r-build-system)
15512 (propagated-inputs
15513 (list r-delayedarray
15514 r-iranges
15515 r-matrix
15516 r-matrixgenerics
15517 r-matrixstats
15518 r-s4vectors
15519 r-sparsematrixstats))
15520 (native-inputs
15521 (list r-knitr))
15522 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
15523 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
15524 (description
15525 "This package provides a port of the @code{matrixStats} API for use with
15526 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
15527 contains high-performing functions operating on rows and columns of
15528 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
15529 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
15530 are optimized per data type and for subsetted calculations such that both
15531 memory usage and processing time is minimized.")
15532 (license license:expat)))
15533
15534 (define-public r-mscoreutils
15535 (package
15536 (name "r-mscoreutils")
15537 (version "1.8.0")
15538 (source
15539 (origin
15540 (method url-fetch)
15541 (uri (bioconductor-uri "MsCoreUtils" version))
15542 (sha256
15543 (base32
15544 "077x1zcy27x8akmagjn75j97082cgnahrbfw0qx08q455m5x3xzh"))))
15545 (properties `((upstream-name . "MsCoreUtils")))
15546 (build-system r-build-system)
15547 (propagated-inputs
15548 (list r-clue r-mass r-rcpp r-s4vectors))
15549 (native-inputs
15550 (list r-knitr))
15551 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
15552 (synopsis "Core utils for mass spectrometry data")
15553 (description
15554 "This package defines low-level functions for mass spectrometry data and
15555 is independent of any high-level data structures. These functions include
15556 mass spectra processing functions (noise estimation, smoothing, binning),
15557 quantitative aggregation functions (median polish, robust summarisation,
15558 etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
15559 well as misc helper functions, that are used across high-level data structure
15560 within the R for Mass Spectrometry packages.")
15561 (license license:artistic2.0)))
15562
15563 (define-public r-msfeatures
15564 (package
15565 (name "r-msfeatures")
15566 (version "1.4.0")
15567 (source
15568 (origin
15569 (method url-fetch)
15570 (uri (bioconductor-uri "MsFeatures" version))
15571 (sha256
15572 (base32 "111iqcq4q315pb4j8z427shin9b00p179m2s9h6dd7imvbd68yq3"))))
15573 (properties `((upstream-name . "MsFeatures")))
15574 (build-system r-build-system)
15575 (propagated-inputs
15576 (list r-mscoreutils r-protgenerics r-summarizedexperiment))
15577 (native-inputs
15578 (list r-knitr))
15579 (home-page "https://github.com/RforMassSpectrometry/MsFeatures")
15580 (synopsis "Functionality for mass spectrometry features")
15581 (description
15582 "The MsFeature package defines functionality for Mass Spectrometry
15583 features. This includes functions to group (LC-MS) features based on some of
15584 their properties, such as retention time (coeluting features), or correlation
15585 of signals across samples. This package hence can be used to group features, and
15586 its results can be used as an input for the @code{QFeatures} package which
15587 allows aggregating abundance levels of features within each group. This
15588 package defines concepts and functions for base and common data types,
15589 implementations for more specific data types are expected to be implemented in
15590 the respective packages (such as e.g. @code{xcms}).")
15591 (license license:artistic2.0)))
15592
15593 (define-public r-biocio
15594 (package
15595 (name "r-biocio")
15596 (version "1.6.0")
15597 (source
15598 (origin
15599 (method url-fetch)
15600 (uri (bioconductor-uri "BiocIO" version))
15601 (sha256
15602 (base32
15603 "16j826w4zrmbgpmq6nyglcrjailsfv48ih1rz1qn383g7v503ydp"))))
15604 (properties `((upstream-name . "BiocIO")))
15605 (build-system r-build-system)
15606 (propagated-inputs
15607 (list r-biocgenerics r-s4vectors))
15608 (native-inputs
15609 (list r-knitr))
15610 (home-page "https://bioconductor.org/packages/BiocIO")
15611 (synopsis "Standard input and output for Bioconductor packages")
15612 (description
15613 "This package implements `import()` and `export()` standard generics for
15614 importing and exporting biological data formats. `import()` supports
15615 whole-file as well as chunk-wise iterative import. The `import()` interface
15616 optionally provides a standard mechanism for 'lazy' access via `filter()` (on
15617 row or element-like components of the file resource), `select()` (on
15618 column-like components of the file resource) and `collect()`. The `import()`
15619 interface optionally provides transparent access to remote (e.g. via https)
15620 as well as local access. Developers can register a file extension, e.g.,
15621 `.loom` for dispatch from character-based URIs to specific `import()` /
15622 `export()` methods based on classes representing file types, e.g.,
15623 `LoomFile()`.")
15624 (license license:artistic2.0)))
15625
15626 (define-public r-msmseda
15627 (package
15628 (name "r-msmseda")
15629 (version "1.34.0")
15630 (source
15631 (origin
15632 (method url-fetch)
15633 (uri (bioconductor-uri "msmsEDA" version))
15634 (sha256
15635 (base32
15636 "0jnaq9ar4mnf3pfhka9hvk61p51ny9jws49xi8z29dq288b42b42"))))
15637 (properties `((upstream-name . "msmsEDA")))
15638 (build-system r-build-system)
15639 (propagated-inputs
15640 (list r-gplots r-mass r-msnbase r-rcolorbrewer))
15641 (home-page
15642 "https://bioconductor.org/packages/msmsEDA")
15643 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
15644 (description
15645 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
15646 experiments, and visualize de influence of the involved factors.")
15647 (license license:gpl2)))
15648
15649 (define-public r-msmstests
15650 (package
15651 (name "r-msmstests")
15652 (version "1.34.0")
15653 (source
15654 (origin
15655 (method url-fetch)
15656 (uri (bioconductor-uri "msmsTests" version))
15657 (sha256
15658 (base32
15659 "1wzdz0p9wmr243xkmymx9fwskafkyxgmlip4sd1fy2s06px7r0xi"))))
15660 (properties `((upstream-name . "msmsTests")))
15661 (build-system r-build-system)
15662 (propagated-inputs
15663 (list r-edger r-msmseda r-msnbase r-qvalue))
15664 (home-page
15665 "https://bioconductor.org/packages/msmsTests")
15666 (synopsis "Differential LC-MS/MS expression tests")
15667 (description
15668 "This package provides statistical tests for label-free LC-MS/MS data
15669 by spectral counts, to discover differentially expressed proteins between two
15670 biological conditions. Three tests are available: Poisson GLM regression,
15671 quasi-likelihood GLM regression, and the negative binomial of the edgeR
15672 package. The three models admit blocking factors to control for nuisance
15673 variables. To assure a good level of reproducibility a post-test filter is
15674 available, where we may set the minimum effect size considered biologicaly
15675 relevant, and the minimum expression of the most abundant condition.")
15676 (license license:gpl2)))
15677
15678 (define-public r-catalyst
15679 (package
15680 (name "r-catalyst")
15681 (version "1.20.1")
15682 (source
15683 (origin
15684 (method url-fetch)
15685 (uri (bioconductor-uri "CATALYST" version))
15686 (sha256
15687 (base32
15688 "05vfqwa9qsm16px77s9bzygs6zymcxshymmpvz86a9l1cy1yxbza"))))
15689 (properties `((upstream-name . "CATALYST")))
15690 (build-system r-build-system)
15691 (propagated-inputs
15692 (list r-circlize
15693 r-complexheatmap
15694 r-consensusclusterplus
15695 r-cowplot
15696 r-data-table
15697 r-dplyr
15698 r-drc
15699 r-flowcore
15700 r-flowsom
15701 r-ggplot2
15702 r-ggrepel
15703 r-ggridges
15704 r-gridextra
15705 r-magrittr
15706 r-matrix
15707 r-matrixstats
15708 r-nnls
15709 r-purrr
15710 r-rcolorbrewer
15711 r-reshape2
15712 r-rtsne
15713 r-s4vectors
15714 r-scales
15715 r-scater
15716 r-singlecellexperiment
15717 r-summarizedexperiment))
15718 (native-inputs
15719 (list r-knitr))
15720 (home-page "https://github.com/HelenaLC/CATALYST")
15721 (synopsis "Cytometry data analysis tools")
15722 (description
15723 "This package is @dfn{Cytometry dATa anALYSis Tools} (CATALYST). Mass
15724 cytometry like @dfn{Cytometry by time of flight} (CyTOF) uses heavy metal
15725 isotopes rather than fluorescent tags as reporters to label antibodies,
15726 thereby substantially decreasing spectral overlap and allowing for examination
15727 of over 50 parameters at the single cell level. While spectral overlap is
15728 significantly less pronounced in CyTOF than flow cytometry, spillover due to
15729 detection sensitivity, isotopic impurities, and oxide formation can impede
15730 data interpretability. @code{CATALYST} was designed to provide a pipeline for
15731 preprocessing of cytometry data, including:
15732
15733 @enumerate
15734 @item normalization using bead standards;
15735 @item single-cell deconvolution;
15736 @item bead-based compensation.
15737 @end enumerate
15738 ")
15739 (license license:gpl2+)))
15740
15741 (define-public r-erma
15742 (package
15743 (name "r-erma")
15744 (version "1.12.0")
15745 (source
15746 (origin
15747 (method url-fetch)
15748 (uri (bioconductor-uri "erma" version))
15749 (sha256
15750 (base32
15751 "1ilq01cr2ipxpmp422fikiz6nj4nasjhj0ikcagjn2zmmarpgi1b"))))
15752 (build-system r-build-system)
15753 (propagated-inputs
15754 (list r-annotationdbi
15755 r-biobase
15756 r-biocgenerics
15757 r-biocparallel
15758 r-genomeinfodb
15759 r-genomicfiles
15760 r-genomicranges
15761 r-ggplot2
15762 r-homo-sapiens
15763 r-iranges
15764 r-rtracklayer
15765 r-s4vectors
15766 r-shiny
15767 r-summarizedexperiment))
15768 (native-inputs
15769 (list r-knitr))
15770 (home-page "https://bioconductor.org/packages/erma")
15771 (synopsis "Epigenomic road map adventures")
15772 (description
15773 "The epigenomics road map describes locations of epigenetic marks in DNA
15774 from a variety of cell types. Of interest are locations of histone
15775 modifications, sites of DNA methylation, and regions of accessible chromatin.
15776 This package presents a selection of elements of the road map including
15777 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
15778 by Ernst and Kellis.")
15779 (license license:artistic2.0)))
15780
15781 (define-public r-ggbio
15782 (package
15783 (name "r-ggbio")
15784 (version "1.44.1")
15785 (source
15786 (origin
15787 (method url-fetch)
15788 (uri (bioconductor-uri "ggbio" version))
15789 (sha256
15790 (base32
15791 "0iyhjalwq1jmldpn20iv8l2kmz6sm20ddry2yz2zn7yq0wszp3vg"))))
15792 (build-system r-build-system)
15793 (arguments
15794 `(#:phases
15795 (modify-phases %standard-phases
15796 ;; See https://github.com/tengfei/ggbio/issues/117
15797 ;; This fix will be included in the next release.
15798 (add-after 'unpack 'fix-typo
15799 (lambda _
15800 (substitute* "R/GGbio-class.R"
15801 (("fechable") "fetchable"))
15802 #t)))))
15803 (propagated-inputs
15804 (list r-annotationdbi
15805 r-annotationfilter
15806 r-biobase
15807 r-biocgenerics
15808 r-biostrings
15809 r-biovizbase
15810 r-bsgenome
15811 r-ensembldb
15812 r-genomeinfodb
15813 r-genomicalignments
15814 r-genomicfeatures
15815 r-genomicranges
15816 r-ggally
15817 r-ggplot2
15818 r-gridextra
15819 r-gtable
15820 r-hmisc
15821 r-iranges
15822 r-organismdbi
15823 r-reshape2
15824 r-rlang
15825 r-rsamtools
15826 r-rtracklayer
15827 r-s4vectors
15828 r-scales
15829 r-summarizedexperiment
15830 r-variantannotation))
15831 (native-inputs
15832 (list r-knitr))
15833 (home-page "http://www.tengfei.name/ggbio/")
15834 (synopsis "Visualization tools for genomic data")
15835 (description
15836 "The ggbio package extends and specializes the grammar of graphics for
15837 biological data. The graphics are designed to answer common scientific
15838 questions, in particular those often asked of high throughput genomics data.
15839 All core Bioconductor data structures are supported, where appropriate. The
15840 package supports detailed views of particular genomic regions, as well as
15841 genome-wide overviews. Supported overviews include ideograms and grand linear
15842 views. High-level plots include sequence fragment length, edge-linked
15843 interval to data view, mismatch pileup, and several splicing summaries.")
15844 (license license:artistic2.0)))
15845
15846 (define-public r-gqtlbase
15847 (package
15848 (name "r-gqtlbase")
15849 (version "1.21.1")
15850 (source
15851 (origin
15852 (method url-fetch)
15853 (uri (bioconductor-uri "gQTLBase" version))
15854 (sha256
15855 (base32
15856 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
15857 (properties `((upstream-name . "gQTLBase")))
15858 (build-system r-build-system)
15859 (arguments
15860 `(#:phases
15861 (modify-phases %standard-phases
15862 ;; This is an upstream bug.
15863 (add-after 'unpack 'fix-imports
15864 (lambda _
15865 (substitute* "NAMESPACE"
15866 ((".*maxffmode.*") "")
15867 (("importFrom\\(ff,.*") "import(ff)\n"))
15868 #t)))))
15869 (propagated-inputs
15870 (list r-batchjobs
15871 r-bbmisc
15872 r-biocgenerics
15873 r-bit
15874 r-doparallel
15875 r-ff
15876 r-ffbase
15877 r-foreach
15878 r-genomicfiles
15879 r-genomicranges
15880 r-rtracklayer
15881 r-s4vectors
15882 r-summarizedexperiment))
15883 (native-inputs
15884 (list r-knitr))
15885 (home-page "https://bioconductor.org/packages/gQTLBase")
15886 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
15887 (description
15888 "The purpose of this package is to simplify the storage and interrogation
15889 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
15890 and more.")
15891 (license license:artistic2.0)))
15892
15893 (define-public r-gqtlstats
15894 (package
15895 (name "r-gqtlstats")
15896 (version "1.21.3")
15897 (source
15898 (origin
15899 (method url-fetch)
15900 (uri (bioconductor-uri "gQTLstats" version))
15901 (sha256
15902 (base32
15903 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
15904 (properties `((upstream-name . "gQTLstats")))
15905 (build-system r-build-system)
15906 (propagated-inputs
15907 (list r-annotationdbi
15908 r-batchjobs
15909 r-bbmisc
15910 r-beeswarm
15911 r-biobase
15912 r-biocgenerics
15913 r-doparallel
15914 r-dplyr
15915 r-erma
15916 r-ffbase
15917 r-foreach
15918 r-genomeinfodb
15919 r-genomicfeatures
15920 r-genomicfiles
15921 r-genomicranges
15922 r-ggbeeswarm
15923 r-ggplot2
15924 r-gqtlbase
15925 r-hardyweinberg
15926 r-homo-sapiens
15927 r-iranges
15928 r-limma
15929 r-mgcv
15930 r-plotly
15931 r-reshape2
15932 r-s4vectors
15933 r-shiny
15934 r-snpstats
15935 r-summarizedexperiment
15936 r-variantannotation))
15937 (native-inputs
15938 (list r-knitr))
15939 (home-page "https://bioconductor.org/packages/gQTLstats")
15940 (synopsis "Computationally efficient analysis for eQTL and allied studies")
15941 (description
15942 "This package provides tools for the computationally efficient analysis
15943 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
15944 The software in this package aims to support refinements and functional
15945 interpretation of members of a collection of association statistics on a
15946 family of feature/genome hypotheses.")
15947 (license license:artistic2.0)))
15948
15949 (define-public r-gviz
15950 (package
15951 (name "r-gviz")
15952 (version "1.40.1")
15953 (source
15954 (origin
15955 (method url-fetch)
15956 (uri (bioconductor-uri "Gviz" version))
15957 (sha256
15958 (base32
15959 "0as3sxhv21bqqrpvafcqim7798hhkzj3q40hy1rqyhv2lhj4rbvi"))))
15960 (properties `((upstream-name . "Gviz")))
15961 (build-system r-build-system)
15962 (propagated-inputs
15963 (list r-annotationdbi
15964 r-biobase
15965 r-biocgenerics
15966 r-biomart
15967 r-biostrings
15968 r-biovizbase
15969 r-bsgenome
15970 r-digest
15971 r-ensembldb
15972 r-genomeinfodb
15973 r-genomicalignments
15974 r-genomicfeatures
15975 r-genomicranges
15976 r-iranges
15977 r-lattice
15978 r-latticeextra
15979 r-matrixstats
15980 r-rcolorbrewer
15981 r-rsamtools
15982 r-rtracklayer
15983 r-s4vectors
15984 r-xvector))
15985 (native-inputs
15986 (list r-knitr))
15987 (home-page "https://bioconductor.org/packages/Gviz")
15988 (synopsis "Plotting data and annotation information along genomic coordinates")
15989 (description
15990 "Genomic data analyses requires integrated visualization of known genomic
15991 information and new experimental data. Gviz uses the biomaRt and the
15992 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
15993 and translates this to e.g. gene/transcript structures in viewports of the
15994 grid graphics package. This results in genomic information plotted together
15995 with your data.")
15996 (license license:artistic2.0)))
15997
15998 (define-public r-gwascat
15999 (package
16000 (name "r-gwascat")
16001 (version "2.28.1")
16002 (source
16003 (origin
16004 (method url-fetch)
16005 (uri (bioconductor-uri "gwascat" version))
16006 (sha256
16007 (base32
16008 "19ymdxj8966i4yk0zalfw23938cpv4q7pywg4qb242p44na5y9sl"))))
16009 (build-system r-build-system)
16010 (propagated-inputs
16011 (list r-annotationdbi
16012 r-annotationhub
16013 r-biocfilecache
16014 r-biostrings
16015 r-genomeinfodb
16016 r-genomicfeatures
16017 r-genomicranges
16018 r-iranges
16019 r-readr
16020 r-s4vectors
16021 r-snpstats
16022 r-variantannotation))
16023 (native-inputs
16024 (list r-knitr))
16025 (home-page "https://bioconductor.org/packages/gwascat")
16026 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
16027 (description
16028 "This package provides tools for representing and modeling data in the
16029 EMBL-EBI GWAS catalog.")
16030 (license license:artistic2.0)))
16031
16032 (define-public r-kegggraph
16033 (package
16034 (name "r-kegggraph")
16035 (version "1.56.0")
16036 (source
16037 (origin
16038 (method url-fetch)
16039 (uri (bioconductor-uri "KEGGgraph" version))
16040 (sha256
16041 (base32 "15pq040pcg8hr18xixmjp59xb7mgvygjv6kisqk8yv99l1611ndx"))))
16042 (properties `((upstream-name . "KEGGgraph")))
16043 (build-system r-build-system)
16044 (propagated-inputs
16045 (list r-graph r-rcurl r-rgraphviz r-xml))
16046 (home-page "https://bioconductor.org/packages/KEGGgraph")
16047 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
16048 (description
16049 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
16050 object as well as a collection of tools to analyze, dissect and visualize these
16051 graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
16052 maintaining all essential pathway attributes. The package offers
16053 functionalities including parsing, graph operation, visualization and etc.")
16054 (license license:gpl2+)))
16055
16056 (define-public r-ldblock
16057 (package
16058 (name "r-ldblock")
16059 (version "1.26.0")
16060 (source
16061 (origin
16062 (method url-fetch)
16063 (uri (bioconductor-uri "ldblock" version))
16064 (sha256
16065 (base32
16066 "08ss03b93czwb4x60hsi30ad4lmamvq5mxa8nj0g18z68qcraijm"))))
16067 (build-system r-build-system)
16068 (propagated-inputs
16069 (list r-biocgenerics
16070 r-ensdb-hsapiens-v75
16071 r-ensembldb
16072 r-genomeinfodb
16073 r-genomicfiles
16074 r-httr
16075 r-matrix
16076 r-rsamtools
16077 r-snpstats
16078 r-variantannotation))
16079 (native-inputs
16080 (list r-knitr))
16081 (home-page "https://bioconductor.org/packages/ldblock")
16082 (synopsis "Data structures for linkage disequilibrium measures in populations")
16083 (description
16084 "This package defines data structures for @dfn{linkage
16085 disequilibrium} (LD) measures in populations. Its purpose is to simplify
16086 handling of existing population-level data for the purpose of flexibly
16087 defining LD blocks.")
16088 (license license:artistic2.0)))
16089
16090 ;; This is a CRAN package, but it depends on r-snpstats, which is a
16091 ;; Bioconductor package.
16092 (define-public r-ldheatmap
16093 (package
16094 (name "r-ldheatmap")
16095 (version "1.0-6")
16096 (source
16097 (origin
16098 (method url-fetch)
16099 (uri (cran-uri "LDheatmap" version))
16100 (sha256
16101 (base32
16102 "0gr99kys1ahyl8s6cbj6rmh4vwid8kn92lcbjnwh0ahb73m2xjjc"))))
16103 (properties `((upstream-name . "LDheatmap")))
16104 (build-system r-build-system)
16105 (propagated-inputs
16106 (list r-genetics r-rcpp r-snpstats))
16107 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
16108 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
16109 (description
16110 "This package provides tools to produce a graphical display, as a heat
16111 map, of measures of pairwise linkage disequilibria between SNPs. Users may
16112 optionally include the physical locations or genetic map distances of each SNP
16113 on the plot.")
16114 (license license:gpl3)))
16115
16116 ;; This is a CRAN package, but it depends on r-rgraphviz, which is a
16117 ;; Bioconductor package.
16118 (define-public r-abn
16119 (package
16120 (name "r-abn")
16121 (version "2.7-1")
16122 (source
16123 (origin
16124 (method url-fetch)
16125 (uri (cran-uri "abn" version))
16126 (sha256
16127 (base32
16128 "1w3jns96m8b9scvaa4hcla3i88a0cfh9qis2l04yixvda5q91gpr"))))
16129 (build-system r-build-system)
16130 (inputs
16131 (list gsl))
16132 (propagated-inputs
16133 (list r-doparallel
16134 r-foreach
16135 r-graph
16136 r-lme4
16137 r-nnet
16138 r-rcpp
16139 r-rcpparmadillo
16140 r-rgraphviz
16141 r-rjags))
16142 (home-page "https://r-bayesian-networks.org/")
16143 (synopsis "Modelling multivariate data with additive bayesian networks")
16144 (description
16145 "Bayesian network analysis is a form of probabilistic graphical models
16146 which derives from empirical data a directed acyclic graph, DAG, describing
16147 the dependency structure between random variables. An additive Bayesian
16148 network model consists of a form of a DAG where each node comprises a
16149 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
16150 equivalent to Bayesian multivariate regression using graphical modelling, they
16151 generalises the usual multivariable regression, GLM, to multiple dependent
16152 variables. This package provides routines to help determine optimal Bayesian
16153 network models for a given data set, where these models are used to identify
16154 statistical dependencies in messy, complex data.")
16155 (license license:gpl2+)))
16156
16157 ;; This is a CRAN package, but it depends on r-rsamtools, which is a
16158 ;; Bioconductor package.
16159 (define-public r-spp
16160 (package
16161 (name "r-spp")
16162 (version "1.16.0")
16163 (source (origin
16164 (method url-fetch)
16165 (uri (cran-uri "spp" version))
16166 (sha256
16167 (base32
16168 "08zxxgyp0h6733b08jmml7k4rhfd3mi5dda3jrzid0s184y0z29w"))))
16169 (build-system r-build-system)
16170 (inputs
16171 (list zlib))
16172 (propagated-inputs
16173 (list r-bh r-catools r-rcpp r-rsamtools))
16174 (home-page "https://cran.r-project.org/web/packages/spp/")
16175 (synopsis "ChIP-Seq processing pipeline")
16176 (description "This package provides tools for analysis of ChIP-seq and
16177 other functional sequencing data.")
16178 (license license:gpl2)))
16179
16180 (define-public r-pathview
16181 (package
16182 (name "r-pathview")
16183 (version "1.36.1")
16184 (source
16185 (origin
16186 (method url-fetch)
16187 (uri (bioconductor-uri "pathview" version))
16188 (sha256
16189 (base32 "11g4zhy4qfq0gmy588334f7s2w1acs2dz9kimax5ya2b8jjibk71"))))
16190 (properties `((upstream-name . "pathview")))
16191 (build-system r-build-system)
16192 (propagated-inputs
16193 (list r-annotationdbi
16194 r-graph
16195 r-kegggraph
16196 r-keggrest
16197 r-org-hs-eg-db
16198 r-png
16199 r-rgraphviz
16200 r-xml))
16201 (home-page "https://pathview.uncc.edu/")
16202 (synopsis "Tool set for pathway based data integration and visualization")
16203 (description
16204 "@code{r-pathview} is a tool set for pathway based data integration and
16205 visualization. It maps and renders a wide variety of biological data on
16206 relevant pathway graphs. All users need is to supply their data and specify
16207 the target pathway. This package automatically downloads the pathway graph
16208 data, parses the data file, maps user data to the pathway, and render pathway
16209 graph with the mapped data. In addition, @code{r-pathview} also seamlessly
16210 integrates with pathway and gene set (enrichment) analysis tools for
16211 large-scale and fully automated analysis.")
16212 (license license:gpl3+)))
16213
16214 (define-public r-snpstats
16215 (package
16216 (name "r-snpstats")
16217 (version "1.46.0")
16218 (source
16219 (origin
16220 (method url-fetch)
16221 (uri (bioconductor-uri "snpStats" version))
16222 (sha256
16223 (base32
16224 "0a5b5nqc7n965jk45ijwkzbn416ib4gfhp8xl39z8f2bdskip4a2"))))
16225 (properties `((upstream-name . "snpStats")))
16226 (build-system r-build-system)
16227 (inputs (list zlib))
16228 (propagated-inputs
16229 (list r-biocgenerics r-matrix r-survival r-zlibbioc))
16230 (home-page "https://bioconductor.org/packages/snpStats")
16231 (synopsis "Methods for SNP association studies")
16232 (description
16233 "This package provides classes and statistical methods for large
16234 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
16235 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
16236 (license license:gpl3)))
16237
16238 (define-public r-chromstar
16239 (package
16240 (name "r-chromstar")
16241 (version "1.22.0")
16242 (source
16243 (origin
16244 (method url-fetch)
16245 (uri (bioconductor-uri "chromstaR" version))
16246 (sha256
16247 (base32
16248 "1xjwmnr4hk8v3nwvhqd6ixk5qr2dv0n4mb9wd6nl7cgjfhjsdgj7"))))
16249 (properties `((upstream-name . "chromstaR")))
16250 (build-system r-build-system)
16251 (propagated-inputs
16252 (list r-bamsignals
16253 r-biocgenerics
16254 r-chromstardata
16255 r-doparallel
16256 r-foreach
16257 r-genomeinfodb
16258 r-genomicalignments
16259 r-genomicranges
16260 r-ggplot2
16261 r-iranges
16262 r-mvtnorm
16263 r-reshape2
16264 r-rsamtools
16265 r-s4vectors))
16266 (native-inputs (list r-knitr))
16267 (home-page "https://github.com/ataudt/chromstaR")
16268 (synopsis "Chromatin state analysis for ChIP-Seq data")
16269 (description
16270 "This package implements functions for combinatorial and differential
16271 analysis of ChIP-seq data. It includes uni- and multivariate peak-calling,
16272 export to genome browser viewable files, and functions for enrichment
16273 analyses.")
16274 (license license:artistic2.0)))
16275
16276 (define-public r-guitar
16277 (package
16278 (name "r-guitar")
16279 (version "2.12.0")
16280 (source
16281 (origin
16282 (method url-fetch)
16283 (uri (bioconductor-uri "Guitar" version))
16284 (sha256
16285 (base32
16286 "09grsasnnk7rmlzjh4lhas9r5spzcsrvmdqj6fx1dk22sckcqahh"))))
16287 (properties `((upstream-name . "Guitar")))
16288 (build-system r-build-system)
16289 (propagated-inputs
16290 (list r-annotationdbi
16291 r-dplyr
16292 r-genomicfeatures
16293 r-genomicranges
16294 r-ggplot2
16295 r-knitr
16296 r-magrittr
16297 r-rtracklayer))
16298 (native-inputs
16299 (list r-knitr))
16300 (home-page "https://bioconductor.org/packages/Guitar")
16301 (synopsis "Visualize genomic features")
16302 (description
16303 "This package is designed for visualization of RNA-related genomic
16304 features with respect to the landmarks of RNA transcripts, i.e., transcription
16305 starting site, start codon, stop codon and transcription ending site.")
16306 (license license:gpl2)))
16307
16308 (define-public r-sushi
16309 (package
16310 (name "r-sushi")
16311 (version "1.34.0")
16312 (source (origin
16313 (method url-fetch)
16314 (uri (bioconductor-uri "Sushi" version))
16315 (sha256
16316 (base32
16317 "0adswrbzd93rhy3q56ypwkrk6155vd4zxapvznswyjlxp8ha813q"))))
16318 (properties `((upstream-name . "Sushi")))
16319 (build-system r-build-system)
16320 (propagated-inputs
16321 (list r-biomart r-zoo))
16322 (home-page "https://bioconductor.org/packages/Sushi")
16323 (synopsis "Tools for visualizing genomics data")
16324 (description
16325 "This package provides flexible, quantitative, and integrative genomic
16326 visualizations for publication-quality multi-panel figures.")
16327 (license license:gpl2+)))
16328
16329 (define-public r-ballgown
16330 (package
16331 (name "r-ballgown")
16332 (version "2.28.0")
16333 (source
16334 (origin
16335 (method url-fetch)
16336 (uri (bioconductor-uri "ballgown" version))
16337 (sha256
16338 (base32
16339 "0l8q3fymskxmsi5jcikzjz5xi66lpzgv7bjymir4izah2v68z708"))))
16340 (properties `((upstream-name . "ballgown")))
16341 (build-system r-build-system)
16342 (propagated-inputs
16343 (list r-biobase
16344 r-genomeinfodb
16345 r-genomicranges
16346 r-iranges
16347 r-limma
16348 r-rcolorbrewer
16349 r-rtracklayer
16350 r-s4vectors
16351 r-sva))
16352 (native-inputs
16353 (list r-knitr))
16354 (home-page "https://bioconductor.org/packages/ballgown")
16355 (synopsis "Flexible, isoform-level differential expression analysis")
16356 (description
16357 "This package provides tools for statistical analysis of assembled
16358 transcriptomes, including flexible differential expression analysis,
16359 visualization of transcript structures, and matching of assembled transcripts
16360 to annotation.")
16361 (license license:artistic2.0)))
16362
16363 (define-public r-megadepth
16364 (package
16365 (name "r-megadepth")
16366 (version "1.6.0")
16367 (source
16368 (origin
16369 (method url-fetch)
16370 (uri (bioconductor-uri "megadepth" version))
16371 (sha256
16372 (base32
16373 "0qq82dmd3drr2bhn51bgbc6ml40klfmmhj6wdj72n9ya6n60lwy8"))))
16374 (properties `((upstream-name . "megadepth")))
16375 (build-system r-build-system)
16376 (inputs (list megadepth))
16377 (propagated-inputs
16378 (list r-cmdfun
16379 r-dplyr
16380 r-fs
16381 r-genomicranges
16382 r-magrittr
16383 r-readr
16384 r-xfun))
16385 (native-inputs
16386 (list r-knitr))
16387 (home-page "https://github.com/LieberInstitute/megadepth")
16388 (synopsis "BigWig and BAM related utilities")
16389 (description
16390 "This package provides an R interface to Megadepth. It is particularly
16391 useful for computing the coverage of a set of genomic regions across bigWig or
16392 BAM files. With this package, you can build base-pair coverage matrices for
16393 regions or annotations of your choice from BigWig files.")
16394 (license license:artistic2.0)))
16395
16396 (define-public r-beclear
16397 (package
16398 (name "r-beclear")
16399 (version "2.12.0")
16400 (source
16401 (origin
16402 (method url-fetch)
16403 (uri (bioconductor-uri "BEclear" version))
16404 (sha256
16405 (base32
16406 "0x43yfnmb2d782g3g52nqdfs90i3zrrlqz8qy3ybmgv5f8n92p15"))))
16407 (properties `((upstream-name . "BEclear")))
16408 (build-system r-build-system)
16409 (propagated-inputs
16410 (list r-abind
16411 r-biocparallel
16412 r-data-table
16413 r-dixontest
16414 r-futile-logger
16415 r-matrix
16416 r-rcpp
16417 r-rdpack))
16418 (native-inputs
16419 (list r-knitr))
16420 (home-page "https://github.com/uds-helms/BEclear")
16421 (synopsis "Correction of batch effects in DNA methylation data")
16422 (description
16423 "This package provides functions to detect and correct for batch effects
16424 in DNA methylation data. The core function is based on latent factor models
16425 and can also be used to predict missing values in any other matrix containing
16426 real numbers.")
16427 (license license:gpl3)))
16428
16429 (define-public r-bgeecall
16430 (package
16431 (name "r-bgeecall")
16432 (version "1.12.2")
16433 (source
16434 (origin
16435 (method url-fetch)
16436 (uri (bioconductor-uri "BgeeCall" version))
16437 (sha256
16438 (base32
16439 "0l6smwy55mm4clb71l4bpch3bayyyf87nq1asbrv6s6fd22mmwil"))))
16440 (properties `((upstream-name . "BgeeCall")))
16441 (build-system r-build-system)
16442 (propagated-inputs
16443 (list kallisto
16444 r-biomart
16445 r-biostrings
16446 r-data-table
16447 r-dplyr
16448 r-genomicfeatures
16449 r-jsonlite
16450 r-rhdf5
16451 r-rslurm
16452 r-rtracklayer
16453 r-sjmisc
16454 r-tximport))
16455 (native-inputs (list r-knitr))
16456 (home-page "https://github.com/BgeeDB/BgeeCall")
16457 (synopsis "RNA-Seq present/absent gene expression calls generation")
16458 (description
16459 "BgeeCall allows generating present/absent gene expression calls without
16460 using an arbitrary cutoff like TPM<1. Calls are generated based on reference
16461 intergenic sequences. These sequences are generated based on expression of
16462 all RNA-Seq libraries of each species integrated in Bgee.")
16463 (license license:gpl3)))
16464
16465 (define-public r-bgeedb
16466 (package
16467 (name "r-bgeedb")
16468 (version "2.22.3")
16469 (source
16470 (origin
16471 (method url-fetch)
16472 (uri (bioconductor-uri "BgeeDB" version))
16473 (sha256
16474 (base32
16475 "1f6lrazaibbz21sqvj59rq6ps9m1riw2y0kyidbn29mxf4ibwh3k"))))
16476 (properties `((upstream-name . "BgeeDB")))
16477 (build-system r-build-system)
16478 (propagated-inputs
16479 (list r-biobase
16480 r-curl
16481 r-data-table
16482 r-digest
16483 r-dplyr
16484 r-graph
16485 r-r-utils
16486 r-rcurl
16487 r-rsqlite
16488 r-tidyr
16489 r-topgo))
16490 (native-inputs (list r-knitr))
16491 (home-page "https://github.com/BgeeDB/BgeeDB_R")
16492 (synopsis "Annotation and gene expression data retrieval from Bgee database")
16493 (description
16494 "This package provides a package for the annotation and gene expression
16495 data download from Bgee database, and TopAnat analysis: GO-like enrichment of
16496 anatomical terms, mapped to genes by expression patterns.")
16497 (license license:gpl3)))
16498
16499 (define-public r-biobtreer
16500 (package
16501 (name "r-biobtreer")
16502 (version "1.8.0")
16503 (source
16504 (origin
16505 (method url-fetch)
16506 (uri (bioconductor-uri "biobtreeR" version))
16507 (sha256
16508 (base32
16509 "0cx46hdqqm6mbj0vp4y86axv0qccd4sgk2jwwjvnqp5pynq9bbqa"))))
16510 (properties `((upstream-name . "biobtreeR")))
16511 (build-system r-build-system)
16512 (propagated-inputs
16513 (list r-httpuv r-httr r-jsonlite r-stringi))
16514 (native-inputs (list r-knitr))
16515 (home-page "https://github.com/tamerh/biobtreeR")
16516 (synopsis "Use biobtree tool from R")
16517 (description
16518 "The biobtreeR package provides an interface to biobtree, a tool which
16519 covers large sets of bioinformatics datasets and allows search and chain
16520 mappings functionalities.")
16521 (license license:expat)))
16522
16523 (define-public r-minet
16524 (package
16525 (name "r-minet")
16526 (version "3.54.0")
16527 (source
16528 (origin
16529 (method url-fetch)
16530 (uri (bioconductor-uri "minet" version))
16531 (sha256
16532 (base32
16533 "0q6jw2jqkl9qynjpzaygz45c7dmx1l5y2d8s1illpcf87siawcam"))))
16534 (properties `((upstream-name . "minet")))
16535 (build-system r-build-system)
16536 (propagated-inputs
16537 (list r-infotheo))
16538 (home-page "http://minet.meyerp.com")
16539 (synopsis "Mutual information networks")
16540 (description
16541 "This package implements various algorithms for inferring mutual
16542 information networks from data.")
16543 (license license:artistic2.0)))
16544
16545 (define-public r-genetclassifier
16546 (package
16547 (name "r-genetclassifier")
16548 (version "1.36.0")
16549 (source
16550 (origin
16551 (method url-fetch)
16552 (uri (bioconductor-uri "geNetClassifier" version))
16553 (sha256
16554 (base32
16555 "1kh7mp5h0n7yd1klcd7w4v7i3fh9pkmvgf7189wangfzbcsr4f70"))))
16556 (properties
16557 `((upstream-name . "geNetClassifier")))
16558 (build-system r-build-system)
16559 (propagated-inputs
16560 (list r-biobase r-e1071 r-ebarrays r-minet))
16561 (home-page "https://www.cicancer.org")
16562 (synopsis "Classify diseases and build gene networks using expression profiles")
16563 (description
16564 "This is a comprehensive package to automatically train and validate a
16565 multi-class SVM classifier based on gene expression data. It provides
16566 transparent selection of gene markers, their coexpression networks, and an
16567 interface to query the classifier.")
16568 (license license:gpl2+)))
16569
16570 (define-public r-dir-expiry
16571 (package
16572 (name "r-dir-expiry")
16573 (version "1.4.0")
16574 (source
16575 (origin
16576 (method url-fetch)
16577 (uri (bioconductor-uri "dir.expiry" version))
16578 (sha256
16579 (base32
16580 "098wzm8hlpy70c99k2sl4k8z2dllhw7rwdj8dhcskr7kaw71k3sq"))))
16581 (properties `((upstream-name . "dir.expiry")))
16582 (build-system r-build-system)
16583 (propagated-inputs (list r-filelock))
16584 (native-inputs (list r-knitr))
16585 (home-page "https://bioconductor.org/packages/dir.expiry")
16586 (synopsis "Managing expiration for cache directories")
16587 (description
16588 "This package implements an expiration system for access to versioned
16589 directories. Directories that have not been accessed by a registered function
16590 within a certain time frame are deleted. This aims to reduce disk usage by
16591 eliminating obsolete caches generated by old versions of packages.")
16592 (license license:gpl3)))
16593
16594 (define-public r-basilisk-utils
16595 (package
16596 (name "r-basilisk-utils")
16597 (version "1.8.0")
16598 (source
16599 (origin
16600 (method url-fetch)
16601 (uri (bioconductor-uri "basilisk.utils" version))
16602 (sha256
16603 (base32
16604 "1jnqv0rlljkq27rd4ixl763v335f2aanm4fzr386yc81fj4vnmhk"))))
16605 (properties
16606 `((upstream-name . "basilisk.utils")))
16607 (build-system r-build-system)
16608 (propagated-inputs
16609 (list r-dir-expiry))
16610 (native-inputs (list r-knitr))
16611 (home-page "https://bioconductor.org/packages/basilisk.utils")
16612 (synopsis "Basilisk installation utilities")
16613 (description
16614 "This package implements utilities for installation of the basilisk
16615 package, primarily for creation of the underlying Conda instance.")
16616 (license license:gpl3)))
16617
16618 (define-public r-basilisk
16619 (package
16620 (name "r-basilisk")
16621 (version "1.8.1")
16622 (source
16623 (origin
16624 (method url-fetch)
16625 (uri (bioconductor-uri "basilisk" version))
16626 (sha256
16627 (base32
16628 "134xix2iq5l7783dng2jjklxd3m5lh4snb7bjhslrs2r1j3p8jpk"))))
16629 (properties `((upstream-name . "basilisk")))
16630 (build-system r-build-system)
16631 (propagated-inputs
16632 (list r-basilisk-utils r-dir-expiry r-reticulate))
16633 (native-inputs (list r-knitr))
16634 (home-page "https://bioconductor.org/packages/basilisk")
16635 (synopsis "Freeze Python dependencies inside Bioconductor packages")
16636 (description
16637 "This package installs a self-contained Conda instance that is managed by
16638 the R/Bioconductor installation machinery. This aims to provide a consistent
16639 Python environment that can be used reliably by Bioconductor packages.
16640 Functions are also provided to enable smooth interoperability of multiple
16641 Python environments in a single R session.")
16642 (license license:gpl3)))
16643
16644 (define-public r-biocthis
16645 (package
16646 (name "r-biocthis")
16647 (version "1.6.0")
16648 (source
16649 (origin
16650 (method url-fetch)
16651 (uri (bioconductor-uri "biocthis" version))
16652 (sha256
16653 (base32
16654 "1hdgjp00d2si3mr7m1d289i9wn7g927z6n8n27d5sm94lb91qln0"))))
16655 (properties `((upstream-name . "biocthis")))
16656 (build-system r-build-system)
16657 (arguments
16658 `(#:phases
16659 (modify-phases %standard-phases
16660 (add-after 'unpack 'set-HOME
16661 (lambda _ (setenv "HOME" "/tmp"))))))
16662 (propagated-inputs
16663 (list r-biocmanager
16664 r-fs
16665 r-glue
16666 r-rlang
16667 r-styler
16668 r-usethis))
16669 (native-inputs (list r-knitr))
16670 (home-page "https://github.com/lcolladotor/biocthis")
16671 (synopsis "Automate package and project setup for Bioconductor packages")
16672 (description
16673 "This package expands the @code{usethis} package with the goal of helping
16674 automate the process of creating R packages for Bioconductor or making them
16675 Bioconductor-friendly.")
16676 (license license:artistic2.0)))
16677
16678 (define-public r-biocdockermanager
16679 (package
16680 (name "r-biocdockermanager")
16681 (version "1.8.1")
16682 (source
16683 (origin
16684 (method url-fetch)
16685 (uri (bioconductor-uri "BiocDockerManager" version))
16686 (sha256
16687 (base32
16688 "0a4dcga18bw5mvzmsml28bf4zclz32pp9iflnbvps7pdxvhmmg9d"))))
16689 (properties
16690 `((upstream-name . "BiocDockerManager")))
16691 (build-system r-build-system)
16692 (propagated-inputs
16693 (list docker
16694 r-dplyr
16695 r-httr
16696 r-memoise
16697 r-readr
16698 r-whisker))
16699 (native-inputs (list r-knitr))
16700 (home-page "https://bioconductor.org/packages/BiocDockerManager")
16701 (synopsis "Access and manage Bioconductor Docker images")
16702 (description
16703 "This package works analogous to BiocManager but for Docker images. Use
16704 the BiocDockerManager package to install and manage Docker images provided by
16705 the Bioconductor project.")
16706 (license license:artistic2.0)))
16707
16708 (define-public r-biodb
16709 (package
16710 (name "r-biodb")
16711 (version "1.4.2")
16712 (source
16713 (origin
16714 (method url-fetch)
16715 (uri (bioconductor-uri "biodb" version))
16716 (sha256
16717 (base32
16718 "0f3clqmrpaawhjjyb4x5mnbhsam56r0av05b5cl5p4waylp8qbs1"))))
16719 (properties `((upstream-name . "biodb")))
16720 (build-system r-build-system)
16721 (propagated-inputs
16722 (list r-biocfilecache
16723 r-chk
16724 r-jsonlite
16725 r-lgr
16726 r-lifecycle
16727 r-openssl
16728 r-plyr
16729 r-progress
16730 r-r6
16731 r-rappdirs
16732 r-rcpp
16733 r-rcurl
16734 r-rsqlite
16735 r-stringr
16736 r-testthat
16737 r-withr
16738 r-xml
16739 r-yaml))
16740 (native-inputs (list r-knitr))
16741 (home-page "https://bioconductor.org/packages/biodb")
16742 (synopsis "Library for connecting to chemical and biological databases")
16743 (description
16744 "The biodb package provides access to standard remote chemical and
16745 biological databases (ChEBI, KEGG, HMDB, ...), as well as to in-house local
16746 database files (CSV, SQLite), with easy retrieval of entries, access to web
16747 services, search of compounds by mass and/or name, and mass spectra matching
16748 for LCMS and MSMS. Its architecture as a development framework facilitates
16749 the development of new database connectors for local projects or inside
16750 separate published packages.")
16751 (license license:agpl3+)))
16752
16753 (define-public r-biomformat
16754 (package
16755 (name "r-biomformat")
16756 (version "1.24.0")
16757 (source
16758 (origin
16759 (method url-fetch)
16760 (uri (bioconductor-uri "biomformat" version))
16761 (sha256
16762 (base32
16763 "12wqjipxhngmlnrdmx329dqmkmy2wa4nkkrhwaqv2nwy90dncs9n"))))
16764 (properties `((upstream-name . "biomformat")))
16765 (build-system r-build-system)
16766 (propagated-inputs
16767 (list r-jsonlite r-matrix r-plyr r-rhdf5))
16768 (native-inputs (list r-knitr))
16769 (home-page "https://github.com/joey711/biomformat/")
16770 (synopsis "Interface package for the BIOM file format")
16771 (description
16772 "This is an R package for interfacing with the BIOM format. This package
16773 includes basic tools for reading biom-format files, accessing and subsetting
16774 data tables from a biom object (which is more complex than a single table), as
16775 well as limited support for writing a biom-object back to a biom-format file.
16776 The design of this API is intended to match the Python API and other tools
16777 included with the biom-format project, but with a decidedly \"R flavor\" that
16778 should be familiar to R users. This includes S4 classes and methods, as well
16779 as extensions of common core functions/methods.")
16780 (license license:gpl2)))
16781
16782 (define-public r-mvcclass
16783 (package
16784 (name "r-mvcclass")
16785 (version "1.70.0")
16786 (source
16787 (origin
16788 (method url-fetch)
16789 (uri (bioconductor-uri "MVCClass" version))
16790 (sha256
16791 (base32
16792 "0apcjlq4i2mg8mlfqgvlcsqkiy51whzid3nd0m830jff0ywgh47g"))))
16793 (properties `((upstream-name . "MVCClass")))
16794 (build-system r-build-system)
16795 (home-page "https://bioconductor.org/packages/MVCClass")
16796 (synopsis "Model-View-Controller (MVC) classes")
16797 (description
16798 "This package contains classes used in model-view-controller (MVC)
16799 design.")
16800 (license license:lgpl2.1+)))
16801
16802 (define-public r-biomvcclass
16803 (package
16804 (name "r-biomvcclass")
16805 (version "1.64.0")
16806 (source
16807 (origin
16808 (method url-fetch)
16809 (uri (bioconductor-uri "BioMVCClass" version))
16810 (sha256
16811 (base32
16812 "078pnyygbvbfxziqspfr1nn78w67xyb4qmiwc34czga5psblvfwz"))))
16813 (properties `((upstream-name . "BioMVCClass")))
16814 (build-system r-build-system)
16815 (propagated-inputs
16816 (list r-biobase r-graph r-mvcclass r-rgraphviz))
16817 (home-page "https://bioconductor.org/packages/BioMVCClass")
16818 (synopsis "Model-View-Controller (MVC) classes that use Biobase")
16819 (description
16820 "This package contains classes used in model-view-controller (MVC)
16821 design.")
16822 (license license:lgpl2.1+)))
16823
16824 (define-public r-biomvrcns
16825 (package
16826 (name "r-biomvrcns")
16827 (version "1.36.0")
16828 (source
16829 (origin
16830 (method url-fetch)
16831 (uri (bioconductor-uri "biomvRCNS" version))
16832 (sha256
16833 (base32
16834 "0i576g7pkivqaxff1pkb760mdpx8v9fh071aic1mwfnlfa7k87ln"))))
16835 (properties `((upstream-name . "biomvRCNS")))
16836 (build-system r-build-system)
16837 (propagated-inputs
16838 (list r-genomicranges r-gviz r-iranges r-mvtnorm))
16839 (home-page "https://bioconductor.org/packages/biomvRCNS")
16840 (synopsis "Copy number study and segmentation for multivariate biological data")
16841 (description
16842 "In this package, a @dfn{Hidden Semi Markov Model} (HSMM) and one
16843 homogeneous segmentation model are designed and implemented for segmentation
16844 genomic data, with the aim of assisting in transcripts detection using high
16845 throughput technology like RNA-seq or tiling array, and copy number analysis
16846 using aCGH or sequencing.")
16847 (license license:gpl2+)))
16848
16849 (define-public r-bionero
16850 (package
16851 (name "r-bionero")
16852 (version "1.4.2")
16853 (source
16854 (origin
16855 (method url-fetch)
16856 (uri (bioconductor-uri "BioNERO" version))
16857 (sha256
16858 (base32
16859 "0dsznfnhidbmf52rv8l26f1ms2k9yy4q4c6cf3x8ylc79c1sjrcp"))))
16860 (properties `((upstream-name . "BioNERO")))
16861 (build-system r-build-system)
16862 (propagated-inputs
16863 (list r-biocparallel
16864 r-complexheatmap
16865 r-dynamictreecut
16866 r-genie3
16867 r-ggnetwork
16868 r-ggnewscale
16869 r-ggplot2
16870 r-ggrepel
16871 r-igraph
16872 r-intergraph
16873 r-matrixstats
16874 r-minet
16875 r-netrep
16876 r-networkd3
16877 r-patchwork
16878 r-rcolorbrewer
16879 r-reshape2
16880 r-summarizedexperiment
16881 r-sva
16882 r-wgcna))
16883 (native-inputs
16884 (list r-knitr))
16885 (home-page "https://github.com/almeidasilvaf/BioNERO")
16886 (synopsis "Biological network reconstruction omnibus")
16887 (description
16888 "BioNERO aims to integrate all aspects of biological network inference in
16889 a single package, including data preprocessing, exploratory analyses, network
16890 inference, and analyses for biological interpretations. BioNERO can be used
16891 to infer gene coexpression networks (GCNs) and gene regulatory networks (GRNs)
16892 from gene expression data. Additionally, it can be used to explore
16893 topological properties of protein-protein interaction (PPI) networks. GCN
16894 inference relies on the popular WGCNA algorithm. GRN inference is based on
16895 the \"wisdom of the crowds\" principle, which consists in inferring GRNs with
16896 multiple algorithms (here, CLR, GENIE3 and ARACNE) and calculating the average
16897 rank for each interaction pair. As all steps of network analyses are included
16898 in this package, BioNERO makes users avoid having to learn the syntaxes of
16899 several packages and how to communicate between them. Finally, users can also
16900 identify consensus modules across independent expression sets and calculate
16901 intra and interspecies module preservation statistics between different
16902 networks.")
16903 (license license:gpl3)))
16904
16905 (define-public r-bionet
16906 (package
16907 (name "r-bionet")
16908 (version "1.56.0")
16909 (source
16910 (origin
16911 (method url-fetch)
16912 (uri (bioconductor-uri "BioNet" version))
16913 (sha256
16914 (base32
16915 "0kcw71j4nmdkn373wk21ak6h0v4gycivnfrklb72kk1qcmsy1wrm"))))
16916 (properties `((upstream-name . "BioNet")))
16917 (build-system r-build-system)
16918 (propagated-inputs
16919 (list r-annotationdbi r-biobase r-graph r-igraph r-rbgl))
16920 (home-page "http://bioconductor.org/packages/release/bioc/html/BioNet.html")
16921 (synopsis "Functional analysis of biological networks")
16922 (description
16923 "This package provides functions for the integrated analysis of
16924 protein-protein interaction networks and the detection of functional modules.
16925 Different datasets can be integrated into the network by assigning p-values of
16926 statistical tests to the nodes of the network. E.g. p-values obtained from
16927 the differential expression of the genes from an Affymetrix array are assigned
16928 to the nodes of the network. By fitting a beta-uniform mixture model and
16929 calculating scores from the p-values, overall scores of network regions can be
16930 calculated and an integer linear programming algorithm identifies the maximum
16931 scoring subnetwork.")
16932 (license license:gpl2+)))
16933
16934 (define-public r-bionetstat
16935 (package
16936 (name "r-bionetstat")
16937 (version "1.16.1")
16938 (source
16939 (origin
16940 (method url-fetch)
16941 (uri (bioconductor-uri "BioNetStat" version))
16942 (sha256
16943 (base32
16944 "0zs6pymvxb95sji0rnnzaz3whj7hsvj2kl4n4gzj7w1q0prbfpb2"))))
16945 (properties `((upstream-name . "BioNetStat")))
16946 (build-system r-build-system)
16947 (propagated-inputs
16948 (list r-biocparallel
16949 r-dt
16950 r-ggplot2
16951 r-hmisc
16952 r-igraph
16953 r-knitr
16954 r-markdown
16955 r-pathview
16956 r-pheatmap
16957 r-plyr
16958 r-psych
16959 r-rcolorbrewer
16960 r-rjsonio
16961 r-rmarkdown
16962 r-shiny
16963 r-shinybs
16964 r-whisker
16965 r-yaml))
16966 (native-inputs
16967 (list r-knitr))
16968 (home-page "https://github.com/jardimViniciusC/BioNetStat")
16969 (synopsis "Biological network analysis")
16970 (description
16971 "This package provides a package to perform differential network
16972 analysis, differential node analysis (differential coexpression analysis),
16973 network and metabolic pathways view.")
16974 (license license:gpl3+)))
16975
16976 (define-public r-bioqc
16977 (package
16978 (name "r-bioqc")
16979 (version "1.24.0")
16980 (source
16981 (origin
16982 (method url-fetch)
16983 (uri (bioconductor-uri "BioQC" version))
16984 (sha256
16985 (base32
16986 "0vb2nnzqvyv25pw8qshcmijravswafg0858pkgqjgiv7wsr2mn3m"))))
16987 (properties `((upstream-name . "BioQC")))
16988 (build-system r-build-system)
16989 (propagated-inputs
16990 (list r-biobase r-edger r-rcpp))
16991 (native-inputs
16992 (list r-knitr))
16993 (home-page "https://accio.github.io/BioQC/")
16994 (synopsis "Detect tissue heterogeneity in expression profiles with gene sets")
16995 (description
16996 "BioQC performs quality control of high-throughput expression data based
16997 on tissue gene signatures. It can detect tissue heterogeneity in gene
16998 expression data. The core algorithm is a Wilcoxon-Mann-Whitney test that is
16999 optimised for high performance.")
17000 (license license:gpl3+)))
17001
17002 (define-public r-biotip
17003 (package
17004 (name "r-biotip")
17005 (version "1.10.0")
17006 (source
17007 (origin
17008 (method url-fetch)
17009 (uri (bioconductor-uri "BioTIP" version))
17010 (sha256
17011 (base32
17012 "1sihi5zy7mlabh3ix1wvdqz8ibfq1avl8bnxjhvxyzq40zbcklh6"))))
17013 (properties `((upstream-name . "BioTIP")))
17014 (build-system r-build-system)
17015 (propagated-inputs
17016 (list r-cluster
17017 r-genomicranges
17018 r-igraph
17019 r-mass
17020 r-psych
17021 r-scran
17022 r-stringr))
17023 (native-inputs
17024 (list r-knitr))
17025 (home-page "https://github.com/xyang2uchicago/BioTIP")
17026 (synopsis "R package for characterization of biological tipping-point")
17027 (description
17028 "This package adopts tipping-point theory to transcriptome profiles to
17029 help unravel disease regulatory trajectory.")
17030 (license license:gpl2)))
17031
17032 (define-public r-biotmle
17033 (package
17034 (name "r-biotmle")
17035 (version "1.20.0")
17036 (source
17037 (origin
17038 (method url-fetch)
17039 (uri (bioconductor-uri "biotmle" version))
17040 (sha256
17041 (base32
17042 "1frig90krvfdk6nwpmslpj0pvligyzwzfwwci7hzwcmbglk5jj22"))))
17043 (properties `((upstream-name . "biotmle")))
17044 (build-system r-build-system)
17045 (propagated-inputs
17046 (list r-assertthat
17047 r-biocgenerics
17048 r-biocparallel
17049 r-dplyr
17050 r-drtmle
17051 r-ggplot2
17052 r-ggsci
17053 r-limma
17054 r-s4vectors
17055 r-summarizedexperiment
17056 r-superheat
17057 r-tibble))
17058 (native-inputs
17059 (list r-knitr))
17060 (home-page "https://code.nimahejazi.org/biotmle/")
17061 (synopsis "Targeted learning with moderated statistics for biomarker discovery")
17062 (description
17063 "This package provides tools for differential expression biomarker
17064 discovery based on microarray and next-generation sequencing data that
17065 leverage efficient semiparametric estimators of the average treatment effect
17066 for variable importance analysis. Estimation and inference of the (marginal)
17067 average treatment effects of potential biomarkers are computed by targeted
17068 minimum loss-based estimation, with joint, stable inference constructed across
17069 all biomarkers using a generalization of moderated statistics for use with the
17070 estimated efficient influence function. The procedure accommodates the use of
17071 ensemble machine learning for the estimation of nuisance functions.")
17072 (license license:expat)))
17073
17074 (define-public r-bsseq
17075 (package
17076 (name "r-bsseq")
17077 (version "1.32.0")
17078 (source
17079 (origin
17080 (method url-fetch)
17081 (uri (bioconductor-uri "bsseq" version))
17082 (sha256
17083 (base32
17084 "1jpfib2vb6hd7pgh3d33jgch24lba175zmbalwsbgvlmmyyf1ki5"))))
17085 (properties `((upstream-name . "bsseq")))
17086 (build-system r-build-system)
17087 (propagated-inputs
17088 (list r-beachmat
17089 r-biobase
17090 r-biocgenerics
17091 r-biocparallel
17092 r-biostrings
17093 r-bsgenome
17094 r-data-table
17095 r-delayedarray
17096 r-delayedmatrixstats
17097 r-genomeinfodb
17098 r-genomicranges
17099 r-gtools
17100 r-hdf5array
17101 r-iranges
17102 r-limma
17103 r-locfit
17104 r-permute
17105 r-r-utils
17106 r-rcpp
17107 r-rhdf5
17108 r-s4vectors
17109 r-scales
17110 r-summarizedexperiment))
17111 (native-inputs
17112 (list r-knitr))
17113 (home-page "https://github.com/hansenlab/bsseq")
17114 (synopsis "Analyze, manage and store bisulfite sequencing data")
17115 (description
17116 "This package provides a collection of tools for analyzing and
17117 visualizing bisulfite sequencing data.")
17118 (license license:artistic2.0)))
17119
17120 (define-public r-dada2
17121 (package
17122 (name "r-dada2")
17123 (version "1.24.0")
17124 (source (origin
17125 (method url-fetch)
17126 (uri (bioconductor-uri "dada2" version))
17127 (sha256
17128 (base32
17129 "0nvjnmcjh0i660y8s3rh9b3zl163wxdx7qm2n36m6vf0iy987l4x"))))
17130 (properties `((upstream-name . "dada2")))
17131 (build-system r-build-system)
17132 (propagated-inputs
17133 (list r-biocgenerics
17134 r-biostrings
17135 r-ggplot2
17136 r-iranges
17137 r-rcpp
17138 r-rcppparallel
17139 r-reshape2
17140 r-shortread
17141 r-xvector))
17142 (native-inputs (list r-knitr))
17143 (home-page "https://benjjneb.github.io/dada2/")
17144 (synopsis
17145 "Accurate, high-resolution sample inference from amplicon sequencing data")
17146 (description
17147 "The dada2 package infers exact @dfn{amplicon sequence variants} (ASVs)
17148 from high-throughput amplicon sequencing data, replacing the coarser and less
17149 accurate OTU clustering approach. The dada2 pipeline takes as input
17150 demultiplexed fastq files, and outputs the sequence variants and their
17151 sample-wise abundances after removing substitution and chimera errors.
17152 Taxonomic classification is available via a native implementation of the RDP
17153 naive Bayesian classifier, and species-level assignment to 16S rRNA gene
17154 fragments by exact matching.")
17155 (license license:lgpl2.0)))
17156
17157 (define-public r-dmrseq
17158 (package
17159 (name "r-dmrseq")
17160 (version "1.16.0")
17161 (source
17162 (origin
17163 (method url-fetch)
17164 (uri (bioconductor-uri "dmrseq" version))
17165 (sha256
17166 (base32
17167 "1c99l62fi26bnbvpzrlsvvs722za0l5vfhddcrhzzzasabhccb4n"))))
17168 (properties `((upstream-name . "dmrseq")))
17169 (build-system r-build-system)
17170 (propagated-inputs
17171 (list r-annotationhub
17172 r-annotatr
17173 r-biocparallel
17174 r-bsseq
17175 r-bumphunter
17176 r-delayedmatrixstats
17177 r-genomeinfodb
17178 r-genomicranges
17179 r-ggplot2
17180 r-iranges
17181 r-locfit
17182 r-matrixstats
17183 r-nlme
17184 r-outliers
17185 r-rcolorbrewer
17186 r-rtracklayer
17187 r-s4vectors))
17188 (native-inputs
17189 (list r-knitr))
17190 (home-page "https://bioconductor.org/packages/dmrseq")
17191 (synopsis "Detection and inference of differentially methylated regions")
17192 (description
17193 "This package implements an approach for scanning the genome to detect
17194 and perform accurate inference on differentially methylated regions from Whole
17195 Genome Bisulfite Sequencing data. The method is based on comparing detected
17196 regions to a pooled null distribution, that can be implemented even when as
17197 few as two samples per population are available. Region-level statistics are
17198 obtained by fitting a @dfn{generalized least squares} (GLS) regression model
17199 with a nested autoregressive correlated error structure for the effect of
17200 interest on transformed methylation proportions.")
17201 (license license:expat)))
17202
17203 (define-public r-omicade4
17204 (package
17205 (name "r-omicade4")
17206 (version "1.36.0")
17207 (source (origin
17208 (method url-fetch)
17209 (uri (bioconductor-uri "omicade4" version))
17210 (sha256
17211 (base32
17212 "1l7w3sczsimg640klq8navgdcwjj090wjqd40n4mw76pny2xj2lj"))))
17213 (properties `((upstream-name . "omicade4")))
17214 (build-system r-build-system)
17215 (propagated-inputs (list r-ade4 r-biobase r-made4))
17216 (home-page "https://bioconductor.org/packages/omicade4")
17217 (synopsis "Multiple co-inertia analysis of omics datasets")
17218 (description
17219 "This package performes multiple co-inertia analysis of omics datasets.")
17220 (license license:gpl2)))
17221
17222 (define-public r-omnipathr
17223 (package
17224 (name "r-omnipathr")
17225 (version "3.4.0")
17226 (source
17227 (origin
17228 (method url-fetch)
17229 (uri (bioconductor-uri "OmnipathR" version))
17230 (sha256
17231 (base32 "0vk0fv09j3ql78mzzhdxwxb2b83qqdz2qfd8wpp1vydmcx2vvgni"))))
17232 (properties `((upstream-name . "OmnipathR")))
17233 (build-system r-build-system)
17234 (arguments
17235 `(#:phases
17236 (modify-phases %standard-phases
17237 (add-after 'unpack 'set-HOME
17238 (lambda _ (setenv "HOME" "/tmp"))))))
17239 (propagated-inputs
17240 (list r-checkmate
17241 r-crayon
17242 r-curl
17243 r-digest
17244 r-dplyr
17245 r-httr
17246 r-igraph
17247 r-jsonlite
17248 r-later
17249 r-logger
17250 r-magrittr
17251 r-progress
17252 r-purrr
17253 r-rappdirs
17254 r-readr
17255 r-readxl
17256 r-rlang
17257 r-stringr
17258 r-tibble
17259 r-tidyr
17260 r-tidyselect
17261 r-withr
17262 r-xml2
17263 r-yaml))
17264 (native-inputs (list r-knitr))
17265 (home-page "https://saezlab.github.io/OmnipathR/")
17266 (synopsis "OmniPath web service client and more")
17267 (description
17268 "This package provides a client for the OmniPath web service and many
17269 other resources. It also includes functions to transform and pretty print
17270 some of the downloaded data, functions to access a number of other resources.
17271 Furthermore, OmnipathR features a close integration with the NicheNet method
17272 for ligand activity prediction from transcriptomics data.")
17273 (license license:expat)))
17274
17275 (define-public r-biscuiteer
17276 (package
17277 (name "r-biscuiteer")
17278 (version "1.10.0")
17279 (source
17280 (origin
17281 (method url-fetch)
17282 (uri (bioconductor-uri "biscuiteer" version))
17283 (sha256
17284 (base32
17285 "0y7vbdaafiga16yr0d22w1v4p0jmczndcar0r0km06f5y1b74amr"))))
17286 (properties `((upstream-name . "biscuiteer")))
17287 (build-system r-build-system)
17288 (propagated-inputs
17289 (list r-biobase
17290 r-biocgenerics
17291 r-biocparallel
17292 r-biscuiteerdata
17293 r-bsseq
17294 r-data-table
17295 r-delayedmatrixstats
17296 r-dmrseq
17297 r-genomeinfodb
17298 r-genomicranges
17299 r-gtools
17300 r-hdf5array
17301 r-homo-sapiens
17302 r-impute
17303 r-iranges
17304 r-matrix
17305 r-matrixstats
17306 r-mus-musculus
17307 r-qdnaseq
17308 r-qualv
17309 r-r-utils
17310 r-readr
17311 r-rsamtools
17312 r-rtracklayer
17313 r-s4vectors
17314 r-summarizedexperiment
17315 r-variantannotation))
17316 (native-inputs
17317 (list r-knitr))
17318 (home-page "https://github.com/trichelab/biscuiteer")
17319 (synopsis "Convenience functions for the Biscuit package")
17320 (description
17321 "This package provides a test harness for bsseq loading of Biscuit
17322 output, summarization of WGBS data over defined regions and in mappable
17323 samples, with or without imputation, dropping of mostly-NA rows, age
17324 estimates, etc.")
17325 (license license:gpl3)))
17326
17327 (define-public r-tcgabiolinks
17328 (package
17329 (name "r-tcgabiolinks")
17330 (version "2.24.3")
17331 (source
17332 (origin
17333 (method url-fetch)
17334 (uri (bioconductor-uri "TCGAbiolinks" version))
17335 (sha256
17336 (base32 "0visvfhzaf0p1rb5vjkmw1c91zfxpks8nl9nbl9xlnpm8lkmmkms"))))
17337 (properties `((upstream-name . "TCGAbiolinks")))
17338 (build-system r-build-system)
17339 (propagated-inputs
17340 (list r-biomart
17341 r-data-table
17342 r-downloader
17343 r-dplyr
17344 r-genomicranges
17345 r-ggplot2
17346 r-httr
17347 r-iranges
17348 r-jsonlite
17349 r-knitr
17350 r-plyr
17351 r-purrr
17352 r-r-utils
17353 r-readr
17354 r-rvest
17355 r-s4vectors
17356 r-stringr
17357 r-summarizedexperiment
17358 r-tcgabiolinksgui-data
17359 r-tibble
17360 r-tidyr
17361 r-xml
17362 r-xml2))
17363 (native-inputs (list r-knitr))
17364 (home-page "https://github.com/BioinformaticsFMRP/TCGAbiolinks")
17365 (synopsis "Integrative analysis with GDC data")
17366 (description
17367 "The aim of TCGAbiolinks is:
17368
17369 @enumerate
17370 @item facilitate GDC open-access data retrieval;
17371 @item prepare the data using the appropriate pre-processing strategies;
17372 @item provide the means to carry out different standard analyses, and;
17373 @item to easily reproduce earlier research results.
17374 @end enumerate
17375
17376 In more detail, the package provides multiple methods for analysis (e.g.,
17377 differential expression analysis, identifying differentially methylated
17378 regions) and methods for visualization (e.g., survival plots, volcano plots,
17379 starburst plots) in order to easily develop complete analysis pipelines.")
17380 (license license:gpl3+)))
17381
17382 (define-public r-tricycle
17383 (package
17384 (name "r-tricycle")
17385 (version "1.4.0")
17386 (source (origin
17387 (method url-fetch)
17388 (uri (bioconductor-uri "tricycle" version))
17389 (sha256
17390 (base32
17391 "0bjkajcz6xcfak6071d0ihakrvgf7s0pmkn6vqkjd6yxbfld7zln"))))
17392 (properties `((upstream-name . "tricycle")))
17393 (build-system r-build-system)
17394 (propagated-inputs
17395 (list r-annotationdbi
17396 r-circular
17397 r-dplyr
17398 r-genomicranges
17399 r-ggnewscale
17400 r-ggplot2
17401 r-iranges
17402 r-rcolorbrewer
17403 r-s4vectors
17404 r-scater
17405 r-scattermore
17406 r-singlecellexperiment
17407 r-summarizedexperiment))
17408 (native-inputs (list r-knitr))
17409 (home-page "https://github.com/hansenlab/tricycle")
17410 (synopsis "Transferable representation and inference of cell cycle")
17411 (description
17412 "The package contains functions to infer and visualize cell cycle process
17413 using Single-cell RNA-Seq data. It exploits the idea of transfer learning,
17414 projecting new data to the previous learned biologically interpretable space.
17415 The @code{tricycle} provides a pre-learned cell cycle space, which could be
17416 used to infer cell cycle time of human and mouse single cell samples. In
17417 addition, it also offer functions to visualize cell cycle time on different
17418 embeddings and functions to build new reference.")
17419 (license license:gpl3)))
17420
17421 (define-public r-tximeta
17422 (package
17423 (name "r-tximeta")
17424 (version "1.14.1")
17425 (source
17426 (origin
17427 (method url-fetch)
17428 (uri (bioconductor-uri "tximeta" version))
17429 (sha256
17430 (base32
17431 "0hxq5lkrdiz0a3xpl88adrv4m55jr6g46a5m9pamc0w4bxddirr8"))))
17432 (properties `((upstream-name . "tximeta")))
17433 (build-system r-build-system)
17434 (propagated-inputs
17435 (list r-annotationdbi
17436 r-annotationhub
17437 r-biocfilecache
17438 r-biostrings
17439 r-ensembldb
17440 r-genomeinfodb
17441 r-genomicfeatures
17442 r-genomicranges
17443 r-iranges
17444 r-jsonlite
17445 r-matrix
17446 r-s4vectors
17447 r-summarizedexperiment
17448 r-tibble
17449 r-tximport))
17450 (native-inputs
17451 (list r-knitr))
17452 (home-page "https://github.com/mikelove/tximeta")
17453 (synopsis "Transcript quantification import with automatic metadata")
17454 (description
17455 "This package implements transcript quantification import from Salmon and
17456 alevin with automatic attachment of transcript ranges and release information,
17457 and other associated metadata. De novo transcriptomes can be linked to the
17458 appropriate sources with linkedTxomes and shared for computational
17459 reproducibility.")
17460 (license license:gpl2)))
17461
17462 (define-public r-phyloseq
17463 (package
17464 (name "r-phyloseq")
17465 (version "1.40.0")
17466 (source
17467 (origin
17468 (method url-fetch)
17469 (uri (bioconductor-uri "phyloseq" version))
17470 (sha256
17471 (base32 "0hcyv4ziyaw74mc9vf7bad3q9izi9p0whg3hspbs6w8b3hp34y2k"))))
17472 (properties `((upstream-name . "phyloseq")))
17473 (build-system r-build-system)
17474 (propagated-inputs
17475 (list r-ade4
17476 r-ape
17477 r-biobase
17478 r-biocgenerics
17479 r-biomformat
17480 r-biostrings
17481 r-cluster
17482 r-data-table
17483 r-foreach
17484 r-ggplot2
17485 r-igraph
17486 r-multtest
17487 r-plyr
17488 r-reshape2
17489 r-scales
17490 r-vegan))
17491 (native-inputs
17492 (list r-knitr))
17493 (home-page "https://github.com/joey711/phyloseq")
17494 (synopsis "Handling and analysis of high-throughput microbiome census data")
17495 (description
17496 "Phyloseq provides a set of classes and tools to facilitate the import,
17497 storage, analysis, and graphical display of microbiome census data.")
17498 (license license:agpl3)))
17499
17500 ;;;
17501 ;;; Avoid adding new packages to the end of this file. To reduce the chances
17502 ;;; of a merge conflict, place them above by existing packages with similar
17503 ;;; functionality or similar names.
17504 ;;;