gnu: Remove ‘open source’ from package descriptions.
[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 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-biscuiteerdata
1225 (package
1226 (name "r-biscuiteerdata")
1227 (version "1.10.0")
1228 (source
1229 (origin
1230 (method url-fetch)
1231 (uri (bioconductor-uri "biscuiteerData" version 'experiment))
1232 (sha256
1233 (base32 "0nda6b8mkv93s513y0xfgxvi7zn8v07jx323ii709rknlncm6qqw"))))
1234 (properties
1235 `((upstream-name . "biscuiteerData")))
1236 (build-system r-build-system)
1237 (propagated-inputs
1238 (list r-annotationhub r-curl r-experimenthub))
1239 (native-inputs (list r-knitr))
1240 (home-page "https://bioconductor.org/packages/biscuiteerData")
1241 (synopsis "Data package for Biscuiteer")
1242 (description
1243 "This package contains default datasets used by the Bioconductor package
1244 biscuiteer.")
1245 (license license:gpl3)))
1246
1247 (define-public r-celldex
1248 (package
1249 (name "r-celldex")
1250 (version "1.6.0")
1251 (source
1252 (origin
1253 (method url-fetch)
1254 (uri (bioconductor-uri "celldex" version 'experiment))
1255 (sha256
1256 (base32 "1fjldmhb9yg6yr3aq5ldvc8xwqw71ix4cdlr53xxckgwljjq7x10"))))
1257 (properties `((upstream-name . "celldex")))
1258 (build-system r-build-system)
1259 (propagated-inputs
1260 (list r-annotationdbi
1261 r-annotationhub
1262 r-delayedarray
1263 r-delayedmatrixstats
1264 r-experimenthub
1265 r-s4vectors
1266 r-summarizedexperiment))
1267 (native-inputs (list r-knitr))
1268 (home-page "https://github.com/LTLA/celldex")
1269 (synopsis "Reference index for cell types")
1270 (description
1271 "This package provides a collection of reference expression datasets with
1272 curated cell type labels, for use in procedures like automated annotation of
1273 single-cell data or deconvolution of bulk RNA-seq.")
1274 (license license:gpl3)))
1275
1276 (define-public r-chromstardata
1277 (package
1278 (name "r-chromstardata")
1279 (version "1.22.0")
1280 (source
1281 (origin
1282 (method url-fetch)
1283 (uri (bioconductor-uri "chromstaRData" version 'experiment))
1284 (sha256
1285 (base32 "1ajwnkibpi01c93nrplxhy6grw8jj5219g4pii4rkan4k5815kv1"))))
1286 (properties `((upstream-name . "chromstaRData")))
1287 (build-system r-build-system)
1288 (home-page "https://bioconductor.org/packages/chromstaRData/")
1289 (synopsis "ChIP-seq data for demonstration purposes")
1290 (description
1291 "This package provides ChIP-seq data for demonstration purposes in the
1292 chromstaR package.")
1293 (license license:gpl3)))
1294
1295 (define-public r-copyhelper
1296 (package
1297 (name "r-copyhelper")
1298 (version "1.28.0")
1299 (source
1300 (origin
1301 (method url-fetch)
1302 (uri (bioconductor-uri "CopyhelpeR" version 'experiment))
1303 (sha256
1304 (base32 "0klrnxck0q14birnpwzkiwmj77hwdn6gazvdg0lqn9y6j5mbkyx1"))))
1305 (properties `((upstream-name . "CopyhelpeR")))
1306 (build-system r-build-system)
1307 (home-page "https://bioconductor.org/packages/CopyhelpeR/")
1308 (synopsis "Helper files for CopywriteR")
1309 (description
1310 "This package contains the helper files that are required to run the
1311 Bioconductor package CopywriteR. It contains pre-assembled 1kb bin GC-content
1312 and mappability files for the reference genomes hg18, hg19, hg38, mm9 and
1313 mm10. In addition, it contains a blacklist filter to remove regions that
1314 display copy number variation. Files are stored as GRanges objects from the
1315 GenomicRanges Bioconductor package.")
1316 (license license:gpl2)))
1317
1318 (define-public r-genelendatabase
1319 (package
1320 (name "r-genelendatabase")
1321 (version "1.32.0")
1322 (source
1323 (origin
1324 (method url-fetch)
1325 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
1326 (sha256
1327 (base32 "0p4rmd3qszsnyn47mfbk96zfa0bhpyyvsh4ma1ligjrsnmkicsaz"))))
1328 (properties
1329 `((upstream-name . "geneLenDataBase")))
1330 (build-system r-build-system)
1331 (propagated-inputs
1332 (list r-rtracklayer r-genomicfeatures))
1333 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
1334 (synopsis "Lengths of mRNA transcripts for a number of genomes")
1335 (description
1336 "This package provides the lengths of mRNA transcripts for a number of
1337 genomes and gene ID formats, largely based on the UCSC table browser.")
1338 (license license:lgpl2.0+)))
1339
1340 (define-public r-genomationdata
1341 (package
1342 (name "r-genomationdata")
1343 (version "1.28.0")
1344 (source
1345 (origin
1346 (method url-fetch)
1347 (uri (bioconductor-uri "genomationData" version 'experiment))
1348 (sha256
1349 (base32 "0ckdgmarndpz6r0y9sd4nmypzjgivj32w2890yl15xmxkx4397fh"))))
1350 (properties
1351 `((upstream-name . "genomationData")))
1352 (build-system r-build-system)
1353 ;; As this package provides little more than large data files, it doesn't
1354 ;; make sense to build substitutes.
1355 (arguments `(#:substitutable? #f))
1356 (native-inputs
1357 (list r-knitr))
1358 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
1359 (synopsis "Experimental data for use with the genomation package")
1360 (description
1361 "This package contains experimental genetic data for use with the
1362 genomation package. Included are Chip Seq, Methylation and Cage data,
1363 downloaded from Encode.")
1364 (license license:gpl3+)))
1365
1366 (define-public r-msdata
1367 (package
1368 (name "r-msdata")
1369 (version "0.36.0")
1370 (source
1371 (origin
1372 (method url-fetch)
1373 (uri (bioconductor-uri "msdata" version 'experiment))
1374 (sha256
1375 (base32 "0nqb7d7fa9l15bxy3s9wmy2h79jb6ldwww0hzk5mifabacmzx691"))))
1376 (properties `((upstream-name . "msdata")))
1377 (build-system r-build-system)
1378 (home-page "https://bioconductor.org/packages/msdata")
1379 (synopsis "Various Mass Spectrometry raw data example files")
1380 (description
1381 "This package provides Ion Trap positive ionization mode data in mzML file
1382 format. It includes a subset from 500-850 m/z and 1190-1310 seconds,
1383 including MS2 and MS3, intensity threshold 100.000; extracts from FTICR Apex
1384 III, m/z 400-450; a subset of UPLC - Bruker micrOTOFq data, both mzML and mz5;
1385 LC-MSMS and MRM files from proteomics experiments; and PSI mzIdentML example
1386 files for various search engines.")
1387 (license license:gpl2+)))
1388
1389 (define-public r-pasilla
1390 (package
1391 (name "r-pasilla")
1392 (version "1.24.0")
1393 (source
1394 (origin
1395 (method url-fetch)
1396 (uri (bioconductor-uri "pasilla" version 'experiment))
1397 (sha256
1398 (base32 "1vsxh7mv2krkbdqs5gsgjsxarjbll0bpyk94syrwh56z67n7jyib"))))
1399 (build-system r-build-system)
1400 (propagated-inputs (list r-dexseq))
1401 (native-inputs (list r-knitr))
1402 (home-page "https://www.bioconductor.org/packages/pasilla/")
1403 (synopsis "Data package with per-exon and per-gene read counts")
1404 (description "This package provides per-exon and per-gene read counts
1405 computed for selected genes from RNA-seq data that were presented in the
1406 article 'Conservation of an RNA regulatory map between Drosophila and mammals'
1407 by Brooks et al., Genome Research 2011.")
1408 (license license:lgpl2.1+)))
1409
1410 (define-public r-hsmmsinglecell
1411 (package
1412 (name "r-hsmmsinglecell")
1413 (version "1.16.0")
1414 (source
1415 (origin
1416 (method url-fetch)
1417 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
1418 (sha256
1419 (base32 "12whx0pl9461xbak5r9zi6ggx5is8sk6mgrbjwlmx3mbr9am116v"))))
1420 (properties
1421 `((upstream-name . "HSMMSingleCell")))
1422 (build-system r-build-system)
1423 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
1424 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
1425 (description
1426 "Skeletal myoblasts undergo a well-characterized sequence of
1427 morphological and transcriptional changes during differentiation. In this
1428 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
1429 under high mitogen conditions (GM) and then differentiated by switching to
1430 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
1431 hundred cells taken over a time-course of serum-induced differentiation.
1432 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
1433 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
1434 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
1435 which were then sequenced to a depth of ~4 million reads per library,
1436 resulting in a complete gene expression profile for each cell.")
1437 (license license:artistic2.0)))
1438
1439 (define-public r-all
1440 (package
1441 (name "r-all")
1442 (version "1.38.0")
1443 (source
1444 (origin
1445 (method url-fetch)
1446 (uri (bioconductor-uri "ALL" version 'experiment))
1447 (sha256
1448 (base32 "0410045x327wmfkksshd8yishw4yxij08vn8p65cdj7hb3qy3p0z"))))
1449 (properties `((upstream-name . "ALL")))
1450 (build-system r-build-system)
1451 (propagated-inputs
1452 (list r-biobase))
1453 (home-page "https://bioconductor.org/packages/ALL")
1454 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
1455 (description
1456 "The data consist of microarrays from 128 different individuals with
1457 @dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
1458 are available. The data have been normalized (using rma) and it is the
1459 jointly normalized data that are available here. The data are presented in
1460 the form of an @code{exprSet} object.")
1461 (license license:artistic2.0)))
1462
1463 (define-public r-affydata
1464 (package
1465 (name "r-affydata")
1466 (version "1.44.0")
1467 (source
1468 (origin
1469 (method url-fetch)
1470 (uri (bioconductor-uri "affydata" version 'experiment))
1471 (sha256
1472 (base32 "1d8ims7hks536v739r5hhfkkzyzqrf398aqal3hzyfm0psv15jbp"))))
1473 (properties `((upstream-name . "affydata")))
1474 (build-system r-build-system)
1475 (propagated-inputs
1476 (list r-affy))
1477 (home-page "https://bioconductor.org/packages/affydata/")
1478 (synopsis "Affymetrix data for demonstration purposes")
1479 (description
1480 "This package provides example datasets that represent 'real world
1481 examples' of Affymetrix data, unlike the artificial examples included in the
1482 package @code{affy}.")
1483 (license license:gpl2+)))
1484
1485 (define-public r-gagedata
1486 (package
1487 (name "r-gagedata")
1488 (version "2.34.0")
1489 (source
1490 (origin
1491 (method url-fetch)
1492 (uri (bioconductor-uri "gageData" version 'experiment))
1493 (sha256
1494 (base32 "00s2aig9r0bvk45brc0shildrgl2z0i0k8xlvqc9h1s274nnslk9"))))
1495 (properties `((upstream-name . "gageData")))
1496 (build-system r-build-system)
1497 (home-page "https://bioconductor.org/packages/gageData")
1498 (synopsis "Auxiliary data for the gage package")
1499 (description
1500 "This is a supportive data package for the software package @code{gage}.
1501 However, the data supplied here are also useful for gene set or pathway
1502 analysis or microarray data analysis in general. In this package, we provide
1503 two demo microarray dataset: GSE16873 (a breast cancer dataset from GEO) and
1504 BMP6 (originally published as an demo dataset for GAGE, also registered as
1505 GSE13604 in GEO). This package also includes commonly used gene set data based
1506 on KEGG pathways and GO terms for major research species, including human,
1507 mouse, rat and budding yeast. Mapping data between common gene IDs for budding
1508 yeast are also included.")
1509 (license license:gpl2+)))
1510
1511 (define-public r-curatedtcgadata
1512 (package
1513 (name "r-curatedtcgadata")
1514 (version "1.18.0")
1515 (source
1516 (origin
1517 (method url-fetch)
1518 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
1519 (sha256
1520 (base32 "0h3mpwy6lhyn8hfry13sdjgb35gqyi3g26igfjqzshc5wvsniwpr"))))
1521 (properties
1522 `((upstream-name . "curatedTCGAData")))
1523 (build-system r-build-system)
1524 (propagated-inputs
1525 (list r-annotationhub
1526 r-experimenthub
1527 r-hdf5array
1528 r-multiassayexperiment
1529 r-s4vectors
1530 r-summarizedexperiment))
1531 (native-inputs (list r-knitr))
1532 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
1533 (synopsis "Curated data from The Cancer Genome Atlas")
1534 (description
1535 "This package provides publicly available data from The Cancer Genome
1536 Atlas (TCGA) as @code{MultiAssayExperiment} objects.
1537 @code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
1538 number, mutation, microRNA, protein, and others) with clinical / pathological
1539 data. It also links assay barcodes with patient identifiers, enabling
1540 harmonized subsetting of rows (features) and columns (patients / samples)
1541 across the entire multi-'omics experiment.")
1542 (license license:artistic2.0)))
1543
1544 (define-public r-tcgabiolinksgui-data
1545 (package
1546 (name "r-tcgabiolinksgui-data")
1547 (version "1.16.0")
1548 (source
1549 (origin
1550 (method url-fetch)
1551 (uri (bioconductor-uri "TCGAbiolinksGUI.data" version 'experiment))
1552 (sha256
1553 (base32 "1mb2z59acs1pi1gqvgjyh62wnmbxskc5l0p42gpjajsjip5x1x7g"))))
1554 (properties `((upstream-name . "TCGAbiolinksGUI.data")))
1555 (build-system r-build-system)
1556 (native-inputs (list r-knitr))
1557 (home-page "https://github.com/BioinformaticsFMRP/TCGAbiolinksGUI.data")
1558 (synopsis "Data for the TCGAbiolinksGUI package")
1559 (description "This package provides supporting data for the
1560 TCGAbiolinksGUI package.")
1561 (license license:gpl3)))
1562
1563 \f
1564 ;;; Packages
1565
1566 (define-public r-abarray
1567 (package
1568 (name "r-abarray")
1569 (version "1.64.0")
1570 (source (origin
1571 (method url-fetch)
1572 (uri (bioconductor-uri "ABarray" version))
1573 (sha256
1574 (base32
1575 "0kjq00i2mb21xyjjs3jy09ps80f11cy37wywzjvmxyjxzbsk4d7r"))))
1576 (properties `((upstream-name . "ABarray")))
1577 (build-system r-build-system)
1578 (propagated-inputs (list r-biobase r-multtest))
1579 (home-page "https://bioconductor.org/packages/ABarray")
1580 (synopsis
1581 "Gene expression analysis for Applied Biosystems Genome Survey Microarray")
1582 (description
1583 "The package @code{ABarray} is designed to work with Applied Biosystems
1584 whole genome microarray platform, as well as any other platform whose data can
1585 be transformed into expression data matrix. Functions include data
1586 preprocessing, filtering, control probe analysis, statistical analysis in one
1587 single function. A @dfn{graphical user interface} (GUI) is also provided. The
1588 raw data, processed data, graphics output and statistical results are organized
1589 into folders according to the analysis settings used.")
1590 (license license:gpl2+)))
1591
1592 (define-public r-absseq
1593 (package
1594 (name "r-absseq")
1595 (version "1.50.0")
1596 (source (origin
1597 (method url-fetch)
1598 (uri (bioconductor-uri "ABSSeq" version))
1599 (sha256
1600 (base32
1601 "1kwl0gcqwbgblwvpbvqlgnsi91km77j11f0q1f0gd6hhnv38mmlv"))))
1602 (properties `((upstream-name . "ABSSeq")))
1603 (build-system r-build-system)
1604 (propagated-inputs (list r-limma r-locfit))
1605 (home-page "https://bioconductor.org/packages/ABSSeq")
1606 (synopsis
1607 "RNA-Seq analysis based on modelling absolute expression differences")
1608 (description
1609 "This package implements a new RNA-Seq analysis method and integrates two
1610 modules: a basic model for pairwise comparison and a linear model for complex
1611 design. RNA-Seq quantifies gene expression with reads count, which usually
1612 consists of conditions (or treatments) and several replicates for each
1613 condition. This software infers differential expression directly by the
1614 counts difference between conditions. It assumes that the sum counts
1615 difference between conditions follow a negative binomial distribution. In
1616 addition, @code{ABSSeq} moderates the fold-changes by two steps: the
1617 expression level and gene-specific dispersion, that might facilitate the gene
1618 ranking by fold-change and visualization.")
1619 (license license:gpl3+)))
1620
1621 (define-public r-adam
1622 (package
1623 (name "r-adam")
1624 (version "1.12.0")
1625 (source (origin
1626 (method url-fetch)
1627 (uri (bioconductor-uri "ADAM" version))
1628 (sha256
1629 (base32
1630 "1cgcjykik9hjrwlvvgaccprcrimgq5kwh9cj6367yk9m574a4gmn"))))
1631 (properties `((upstream-name . "ADAM")))
1632 (build-system r-build-system)
1633 (propagated-inputs (list r-dplyr
1634 r-dt
1635 r-go-db
1636 r-keggrest
1637 r-knitr
1638 r-pbapply
1639 r-rcpp
1640 r-stringr
1641 r-summarizedexperiment))
1642 (native-inputs (list r-knitr))
1643 (home-page "https://bioconductor.org/packages/ADAM")
1644 (synopsis "Gene activity and diversity analysis module")
1645 (description
1646 "This software @code{ADAM} is a @dfn{Gene set enrichment analysis} (GSEA)
1647 package created to group a set of genes from comparative samples (control
1648 versus experiment) belonging to different species according to their respective
1649 functions. The corresponding roles are extracted from the default collections
1650 like Gene ontology and @dfn{Kyoto encyclopedia of genes and genomes} (KEGG).
1651 @code{ADAM} show their significance by calculating the p-values referring to
1652 gene diversity and activity. Each group of genes is called @dfn{Group of
1653 functionally associated genes} (GFAG).")
1654 (license license:gpl2+)))
1655
1656 (define-public r-adamgui
1657 (package
1658 (name "r-adamgui")
1659 (version "1.12.0")
1660 (source (origin
1661 (method url-fetch)
1662 (uri (bioconductor-uri "ADAMgui" version))
1663 (sha256
1664 (base32
1665 "0vvd5qdwkfcr7zg7z63x3vvrcg63r6c9p383yvcg2lp8zmx8hsbs"))))
1666 (properties `((upstream-name . "ADAMgui")))
1667 (build-system r-build-system)
1668 (propagated-inputs
1669 (list r-adam
1670 r-colorramps
1671 r-data-table
1672 r-dplyr
1673 r-dt
1674 r-ggplot2
1675 r-ggpubr
1676 r-ggrepel
1677 r-ggsignif
1678 r-go-db
1679 r-gridextra
1680 r-knitr
1681 r-rcolorbrewer
1682 r-reshape2
1683 r-shiny
1684 r-shinyjs
1685 r-stringi
1686 r-stringr
1687 r-testthat
1688 r-varhandle))
1689 (native-inputs (list r-knitr))
1690 (home-page "https://bioconductor.org/packages/ADAMgui/")
1691 (synopsis "GUI for gene activity and diversity analysis")
1692 (description
1693 "This package @code{ADAMgui} is a @dfn{graphical user interface} (GUI)
1694 for the @code{ADAM} package. The @code{ADAMgui} package provides two
1695 shiny-based applications that allows the user to study the output of the
1696 @code{ADAM} package files through different plots. It's possible, for
1697 example, to choose a specific @dfn{group of functionally associated
1698 genes} (GFAG) and observe the gene expression behavior with the plots created
1699 with the @code{GFAGtargetUi} function. Features such as differential
1700 expression and fold change can be easily seen with aid of the plots made with
1701 the @code{GFAGpathUi} function.")
1702 (license license:gpl2+)))
1703
1704 (define-public r-adimpute
1705 (package
1706 (name "r-adimpute")
1707 (version "1.6.0")
1708 (source (origin
1709 (method url-fetch)
1710 (uri (bioconductor-uri "ADImpute" version))
1711 (sha256
1712 (base32
1713 "0885kd8mpmwjpzpx14pi6l3mqcvsixk10vkf5h4sqb7di0nnna4w"))))
1714 (properties `((upstream-name . "ADImpute")))
1715 (build-system r-build-system)
1716 (propagated-inputs
1717 (list r-biocparallel
1718 r-checkmate
1719 r-data-table
1720 r-drimpute
1721 r-kernlab
1722 r-mass
1723 r-matrix
1724 r-rsvd
1725 r-s4vectors
1726 r-saver
1727 r-singlecellexperiment
1728 r-summarizedexperiment))
1729 (native-inputs (list r-knitr))
1730 (home-page "https://bioconductor.org/packages/ADImpute")
1731 (synopsis "Adaptive computational prediction for dropout imputations")
1732 (description
1733 "@dfn{Single-cell RNA sequencing} (scRNA-seq) methods are typically
1734 unable to quantify the expression levels of all genes in a cell, creating a
1735 need for the computational prediction of missing values (dropout imputation).
1736 Most existing dropout imputation methods are limited in the sense that they
1737 exclusively use the scRNA-seq dataset at hand and do not exploit external
1738 gene-gene relationship information. The @code{ADImpute} package proposes two
1739 methods to address this issue:
1740
1741 @enumerate
1742 @item a gene regulatory network-based approach using gene-gene relationships
1743 learnt from external data;
1744 @item a baseline approach corresponding to a sample-wide average.
1745 @end enumerate
1746
1747 @code{ADImpute} implements these novel methods and also combines them with
1748 existing imputation methods like @code{DrImpute} and @code{SAVER}.
1749 @code{ADImpute} can learn the best performing method per gene and combine the
1750 results from different methods into an ensemble.")
1751 (license license:gpl3+)))
1752
1753 (define-public r-adsplit
1754 (package
1755 (name "r-adsplit")
1756 (version "1.66.0")
1757 (source (origin
1758 (method url-fetch)
1759 (uri (bioconductor-uri "adSplit" version))
1760 (sha256
1761 (base32
1762 "1wl2gd0b7krf485clw67cxayp0g9argklkzn8nw1vrkil0vvr4jm"))))
1763 (properties `((upstream-name . "adSplit")))
1764 (build-system r-build-system)
1765 (propagated-inputs
1766 (list r-annotationdbi
1767 r-biobase
1768 r-cluster
1769 r-go-db
1770 r-keggrest
1771 r-multtest))
1772 (home-page "https://compdiag.molgen.mpg.de/software/adSplit.shtml")
1773 (synopsis "Annotation-driven splits in microarray data")
1774 (description
1775 "This package implements clustering of microarray gene expression
1776 profiles according to functional annotations. For each term genes are
1777 annotated to, splits into two subclasses are computed and a significance of
1778 the supporting gene set is determined.")
1779 (license license:gpl2+)))
1780
1781 (define-public r-affixcan
1782 (package
1783 (name "r-affixcan")
1784 (version "1.14.0")
1785 (source (origin
1786 (method url-fetch)
1787 (uri (bioconductor-uri "AffiXcan" version))
1788 (sha256
1789 (base32
1790 "0wj9shzmlxpksbxny571xzfcmmqqzjlk1vq4mx1is2r6ma7jkblq"))))
1791 (properties `((upstream-name . "AffiXcan")))
1792 (build-system r-build-system)
1793 (propagated-inputs
1794 (list r-biocparallel
1795 r-crayon
1796 r-multiassayexperiment
1797 r-summarizedexperiment))
1798 (native-inputs (list r-knitr))
1799 (home-page "https://bioconductor.org/packages/AffiXcan")
1800 (synopsis "Functional approach to impute genetically regulated expression")
1801 (description
1802 "The @code{AffiXcan} package imputes a @dfn{genetically regulated
1803 expression} (GReX) for a set of genes in a sample of individuals, using a
1804 method based on the @dfn{total binding affinity} (TBA). Statistical models to
1805 impute GReX can be trained with a training dataset where the real total
1806 expression values are known.")
1807 (license license:gpl3)))
1808
1809 (define-public r-affyrnadegradation
1810 (package
1811 (name "r-affyrnadegradation")
1812 (version "1.42.0")
1813 (source (origin
1814 (method url-fetch)
1815 (uri (bioconductor-uri "AffyRNADegradation" version))
1816 (sha256
1817 (base32
1818 "16akwmpzwxai7ks5bvc1yyb9sx2scv9b9gas5avb0sk5fk0h3nsf"))))
1819 (properties `((upstream-name . "AffyRNADegradation")))
1820 (build-system r-build-system)
1821 (propagated-inputs (list r-affy))
1822 (home-page "https://bioconductor.org/packages/AffyRNADegradation")
1823 (synopsis
1824 "Analyze and correct probe positional bias in data due to RNA degradation")
1825 (description
1826 "The @code{AffyRNADegradation} package helps with the assessment and
1827 correction of RNA degradation effects in Affymetrix 3 expression arrays. The
1828 parameter @code{d} gives a robust and accurate measure of RNA integrity. The
1829 correction removes the probe positional bias, and thus improves comparability
1830 of samples that are affected by RNA degradation.")
1831 ;; the R file header specifies GPL2 or later
1832 (license license:gpl2+)))
1833
1834 (define-public r-agdex
1835 (package
1836 (name "r-agdex")
1837 (version "1.44.0")
1838 (source (origin
1839 (method url-fetch)
1840 (uri (bioconductor-uri "AGDEX" version))
1841 (sha256
1842 (base32
1843 "0c44fw5ajdjc13409rn3lsv0jhlqa2qcak9b1k8hpig486xxzsr9"))))
1844 (properties `((upstream-name . "AGDEX")))
1845 (build-system r-build-system)
1846 (propagated-inputs (list r-biobase r-gseabase))
1847 (home-page "https://bioconductor.org/packages/AGDEX")
1848 (synopsis
1849 "Evaluate agreement of differential expression for cross-species genomics")
1850 (description
1851 "The objective of @code{AGDEX} is to evaluate whether the results of a
1852 pair of two-group differential expression analysis comparisons show a level of
1853 agreement that is greater than expected if the group labels for each two-group
1854 comparison are randomly assigned. The agreement is evaluated for the entire
1855 transcriptome and (optionally) for a collection of pre-defined gene-sets.
1856 Additionally, the procedure performs permutation-based differential expression
1857 and meta analysis at both gene and gene-set levels of the data from each
1858 experiment.")
1859 (license license:gpl2+)))
1860
1861 (define-public r-aggregatebiovar
1862 (package
1863 (name "r-aggregatebiovar")
1864 (version "1.6.0")
1865 (source (origin
1866 (method url-fetch)
1867 (uri (bioconductor-uri "aggregateBioVar" version))
1868 (sha256
1869 (base32
1870 "0ngg12bgr95m4wm12scmrb55dgy4909c6qrg169l6dkng99v4nx1"))))
1871 (properties `((upstream-name . "aggregateBioVar")))
1872 (build-system r-build-system)
1873 (propagated-inputs
1874 (list r-matrix
1875 r-rlang
1876 r-s4vectors
1877 r-singlecellexperiment
1878 r-summarizedexperiment
1879 r-tibble))
1880 (native-inputs (list r-knitr))
1881 (home-page "https://github.com/jasonratcliff/aggregateBioVar")
1882 (synopsis "Differential gene expression analysis for multi-subject scRNA-seq")
1883 (description
1884 "This package @code{aggregateBioVar} contains tools to summarize single
1885 cell gene expression profiles at the level of subject for single cell RNA-seq
1886 data collected from more than one subject (e.g. biological sample or technical
1887 replicates). A @code{SingleCellExperiment} object is taken as input and
1888 converted to a list of @code{SummarizedExperiment} objects, where each list
1889 element corresponds to an assigned cell type. The @code{SummarizedExperiment}
1890 objects contain aggregate gene-by-subject count matrices and inter-subject
1891 column metadata for individual subjects that can be processed using downstream
1892 bulk RNA-seq tools.")
1893 (license license:gpl3)))
1894
1895 (define-public r-agilp
1896 (package
1897 (name "r-agilp")
1898 (version "3.28.0")
1899 (source (origin
1900 (method url-fetch)
1901 (uri (bioconductor-uri "agilp" version))
1902 (sha256
1903 (base32
1904 "1pm329y2nfcnx98ggxq0prdd5pxfcl5iylvsjjnhw5lyz1awg1yf"))))
1905 (properties `((upstream-name . "agilp")))
1906 (build-system r-build-system)
1907 (home-page "https://bioconductor.org/packages/agilp")
1908 (synopsis "Processing of Agilent expression array")
1909 (description
1910 "This package aims to provide a pipeline for the low-level analysis of
1911 gene expression microarray data, primarily focused on the Agilent platform,
1912 but which also provides utilities which may be useful for other platforms.")
1913 ;; Some files are under GPLv2+ but the combined work is released under the
1914 ;; GPLv3.
1915 (license license:gpl3)))
1916
1917 (define-public r-adductomicsr
1918 (package
1919 (name "r-adductomicsr")
1920 (version "1.12.0")
1921 (source (origin
1922 (method url-fetch)
1923 (uri (bioconductor-uri "adductomicsR" version))
1924 (sha256
1925 (base32
1926 "0623qf06xgdsyz0in2wnxwvpdw8kj6cnwf8vlqmgp7g0n3w701ys"))))
1927 (properties `((upstream-name . "adductomicsR")))
1928 (build-system r-build-system)
1929 (propagated-inputs
1930 (list r-adductdata
1931 r-ade4
1932 r-annotationhub
1933 r-bootstrap
1934 r-data-table
1935 r-dosnow
1936 r-dplyr
1937 r-dt
1938 r-experimenthub
1939 r-fastcluster
1940 r-foreach
1941 r-fpc
1942 r-mzr
1943 r-orgmassspecr
1944 r-pastecs
1945 r-pracma
1946 r-rcppeigen
1947 r-reshape2
1948 r-rvest
1949 r-smoother
1950 r-zoo))
1951 (native-inputs (list r-knitr))
1952 (home-page "https://bioconductor.org/packages/adductomicsR")
1953 (synopsis "Processing of adductomic mass spectral datasets")
1954 (description
1955 "This package @code{adductomicsR} processes data generated by the
1956 @dfn{second stage of mass spectrometry} (MS2) to identify potentially adducted
1957 peptides from spectra that has been corrected for mass drift and retention
1958 time drift and quantifies level mass spectral peaks from @dfn{first stage of
1959 mass spectrometry} (MS1) data.")
1960 (license license:artistic2.0)))
1961
1962 (define-public r-agimicrorna
1963 (package
1964 (name "r-agimicrorna")
1965 (version "2.46.0")
1966 (source (origin
1967 (method url-fetch)
1968 (uri (bioconductor-uri "AgiMicroRna" version))
1969 (sha256
1970 (base32
1971 "0jic89gyphbv7jzlfgm9bh1aq48lp86rq6hr34gsg9z0pa1192xa"))))
1972 (properties `((upstream-name . "AgiMicroRna")))
1973 (build-system r-build-system)
1974 (propagated-inputs
1975 (list r-affy
1976 r-affycoretools
1977 r-biobase
1978 r-limma
1979 r-preprocesscore))
1980 (home-page "https://git.bioconductor.org/packages/AgiMicroRna")
1981 (synopsis
1982 "Processing and differential expression analysis of Agilent microRNA chips")
1983 (description
1984 "@code{AgiMicroRna} provides useful functionality for the processing,
1985 quality assessment and differential expression analysis of Agilent microRNA
1986 array data. The package uses a limma-like structure to generate the processed
1987 data in order to make statistical inferences about differential expression
1988 using the linear model features implemented in limma. Standard Bioconductor
1989 objects are used so that other packages could be used as well.")
1990 (license license:gpl3)))
1991
1992 (define-public r-amountain
1993 (package
1994 (name "r-amountain")
1995 (version "1.22.0")
1996 (source (origin
1997 (method url-fetch)
1998 (uri (bioconductor-uri "AMOUNTAIN" version))
1999 (sha256
2000 (base32
2001 "0vdfabsrisdd7qq28f5ivd0v8zz49szqn677i5lhwnlaix220c54"))))
2002 (properties `((upstream-name . "AMOUNTAIN")))
2003 (build-system r-build-system)
2004 (inputs (list gsl))
2005 (native-inputs (list r-knitr))
2006 (home-page "https://bioconductor.org/packages/AMOUNTAIN")
2007 (synopsis "Modules for multilayer weighted gene co-expression networks")
2008 (description
2009 "This package provides a pure data-driven gene network, @dfn{WGCN}(weighted
2010 gene co-expression network) could be constructed only from expression profile.
2011 Different layers in such networks may represent different time points, multiple
2012 conditions or various species. @code{AMOUNTAIN} aims to search active modules
2013 in multi-layer WGCN using a continuous optimization approach.")
2014 (license license:gpl2+)))
2015
2016 (define-public r-amaretto
2017 (package
2018 (name "r-amaretto")
2019 (version "1.12.0")
2020 (source (origin
2021 (method url-fetch)
2022 (uri (bioconductor-uri "AMARETTO" version))
2023 (sha256
2024 (base32
2025 "111dk19b9910icksyr592cvhc5gwvgknr5q4887j9yxbajd7hcmx"))))
2026 (properties `((upstream-name . "AMARETTO")))
2027 (build-system r-build-system)
2028 (propagated-inputs
2029 (list r-biocfilecache
2030 r-callr
2031 r-circlize
2032 r-complexheatmap
2033 r-curatedtcgadata
2034 r-doparallel
2035 r-dplyr
2036 r-dt
2037 r-foreach
2038 r-ggplot2
2039 r-glmnet
2040 r-gridextra
2041 r-httr
2042 r-impute
2043 r-knitr
2044 r-limma
2045 r-matrix
2046 r-matrixstats
2047 r-multiassayexperiment
2048 r-rcpp
2049 r-readr
2050 r-reshape2
2051 r-rmarkdown
2052 r-tibble))
2053 (native-inputs (list r-knitr))
2054 (home-page "https://bioconductor.org/packages/AMARETTO")
2055 (synopsis "Regulatory network inference and driver gene evaluation")
2056 (description
2057 "This package @code{AMARETTO} represents an algorithm that integrates copy
2058 number, DNA methylation and gene expression data to identify a set of driver
2059 genes by analyzing cancer samples and connects them to clusters of co-expressed
2060 genes, which we define as modules. @code{AMARETTO} can be applied in a pancancer
2061 setting to identify cancer driver genes and their modules on multiple cancer
2062 sites. @code{AMARETTO} captures modules enriched in angiogenesis, cell cycle
2063 and EMT, and modules that accurately predict survival and molecular subtypes.
2064 This allows @code{AMARETTO} to identify novel cancer driver genes directing
2065 canonical cancer pathways.")
2066 (license license:asl2.0)))
2067
2068 (define-public r-anaquin
2069 (package
2070 (name "r-anaquin")
2071 (version "2.20.0")
2072 (source (origin
2073 (method url-fetch)
2074 (uri (bioconductor-uri "Anaquin" version))
2075 (sha256
2076 (base32
2077 "1jgpnls2djl1yzvnk64qc83mljmlci7wflwkza3wr0sv6r47b0dd"))))
2078 (properties `((upstream-name . "Anaquin")))
2079 (build-system r-build-system)
2080 (propagated-inputs
2081 (list r-deseq2
2082 r-ggplot2
2083 r-knitr
2084 r-locfit
2085 r-plyr
2086 r-qvalue
2087 r-rocr))
2088 (native-inputs (list r-knitr))
2089 (home-page "https://www.sequinstandards.com/")
2090 (synopsis "Statistical analysis of sequins")
2091 (description
2092 "The project is intended to support the use of @dfn{sequins}(synthetic
2093 sequencing spike-in controls) owned and made available by the Garvan Institute
2094 of Medical Research. The goal is to provide a standard library for quantitative
2095 analysis, modelling, and visualization of spike-in controls.")
2096 (license license:bsd-3)))
2097
2098 (define-public r-aneufinder
2099 (package
2100 (name "r-aneufinder")
2101 (version "1.24.0")
2102 (source (origin
2103 (method url-fetch)
2104 (uri (bioconductor-uri "AneuFinder" version))
2105 (sha256
2106 (base32
2107 "1acsp987jv2x4qwbgy3y7ff4r2qz7680b0nbr37m4lmncqfgh8yl"))))
2108 (build-system r-build-system)
2109 (native-inputs
2110 (list r-knitr))
2111 (propagated-inputs
2112 (list r-genomicranges
2113 r-aneufinderdata
2114 r-ecp
2115 r-foreach
2116 r-doparallel
2117 r-biocgenerics
2118 r-s4vectors
2119 r-genomeinfodb
2120 r-iranges
2121 r-rsamtools
2122 r-bamsignals
2123 r-dnacopy
2124 r-biostrings
2125 r-genomicalignments
2126 r-ggplot2
2127 r-reshape2
2128 r-ggdendro
2129 r-ggrepel
2130 r-reordercluster
2131 r-mclust
2132 r-cowplot))
2133 (home-page "https://bioconductor.org/packages/AneuFinder/")
2134 (synopsis "Copy number variation analysis in single-cell-sequencing data")
2135 (description "This package implements functions for copy number variant
2136 calling, plotting, export and analysis from whole-genome single cell
2137 sequencing data.")
2138 (license license:artistic2.0)))
2139
2140 (define-public r-anf
2141 (package
2142 (name "r-anf")
2143 (version "1.18.0")
2144 (source (origin
2145 (method url-fetch)
2146 (uri (bioconductor-uri "ANF" version))
2147 (sha256
2148 (base32
2149 "1fa2pbdapymrpz01ws0m2fbzf11d723x6rbsys29v06is57f5lpj"))))
2150 (properties `((upstream-name . "ANF")))
2151 (build-system r-build-system)
2152 (propagated-inputs
2153 (list r-biobase
2154 r-igraph
2155 r-mass
2156 r-rcolorbrewer
2157 r-survival))
2158 (native-inputs (list r-knitr))
2159 (home-page "https://bioconductor.org/packages/ANF")
2160 (synopsis "Affinity network fusion for complex patient clustering")
2161 (description
2162 "The package @dfn{ANF}(Affinity Network Fusion) provides methods for affinity
2163 matrix construction and fusion as well as spectral clustering. This package is
2164 used for complex patient clustering by integrating multi-omic data through affinity
2165 network fusion.")
2166 (license license:gpl3)))
2167
2168 (define-public r-annmap
2169 (package
2170 (name "r-annmap")
2171 (version "1.38.0")
2172 (source (origin
2173 (method url-fetch)
2174 (uri (bioconductor-uri "annmap" version))
2175 (sha256
2176 (base32
2177 "0ywqbb8jia7rrkzcsf6a11kqf8dnx96z8n8xw7067mahycykbixv"))))
2178 (properties `((upstream-name . "annmap")))
2179 (build-system r-build-system)
2180 (propagated-inputs
2181 (list r-biobase
2182 r-biocgenerics
2183 r-dbi
2184 r-digest
2185 r-genefilter
2186 r-genomicranges
2187 r-iranges
2188 r-lattice
2189 r-rmysql
2190 r-rsamtools))
2191 (home-page "https://github.com/cruk-mi/annmap")
2192 (synopsis
2193 "Genome annotation and visualisation for Affymetrix arrays and NGS analysis")
2194 (description
2195 "This package @code{annmap} provides annotation mappings for Affymetrix exon
2196 arrays and coordinate based queries to support deep sequencing data analysis.
2197 Database access is hidden behind the API which provides a set of functions such
2198 as @code{genesInRange()}, @code{geneToExon()}, @code{exonDetails()}, etc.
2199 Functions to plot gene architecture and BAM file data are also provided.")
2200 (license license:gpl2)))
2201
2202 (define-public r-antiprofiles
2203 (package
2204 (name "r-antiprofiles")
2205 (version "1.36.0")
2206 (source (origin
2207 (method url-fetch)
2208 (uri (bioconductor-uri "antiProfiles" version))
2209 (sha256
2210 (base32
2211 "1277kg5xpyb2yriyjy18p437q5lj22h4al7z7pygkzxzywxv9g40"))))
2212 (properties `((upstream-name . "antiProfiles")))
2213 (build-system r-build-system)
2214 (propagated-inputs
2215 (list r-locfit
2216 r-matrixstats))
2217 (home-page "https://github.com/HCBravoLab/antiProfiles")
2218 (synopsis "Implementation of gene expression anti-profiles")
2219 (description
2220 "This package implements the gene expression anti-profiles method.
2221 Anti-profiles are a new approach for developing cancer genomic signatures that
2222 specifically take advantage of gene expression heterogeneity. They explicitly
2223 model increased gene expression variability in cancer to define robust and
2224 reproducible gene expression signatures capable of accurately distinguishing
2225 tumor samples from healthy controls.")
2226 (license license:artistic2.0)))
2227
2228 (define-public r-biocversion
2229 (package
2230 (name "r-biocversion")
2231 (version "3.15.2")
2232 (source
2233 (origin
2234 (method url-fetch)
2235 (uri (bioconductor-uri "BiocVersion" version))
2236 (sha256
2237 (base32
2238 "0rs4nyza4hqqk204d037gi013135wgfhx5asq2dsdjc9vk5nwzfn"))))
2239 (properties `((upstream-name . "BiocVersion")))
2240 (build-system r-build-system)
2241 (home-page "https://bioconductor.org/packages/BiocVersion/")
2242 (synopsis "Set the appropriate version of Bioconductor packages")
2243 (description
2244 "This package provides repository information for the appropriate version
2245 of Bioconductor.")
2246 (license license:artistic2.0)))
2247
2248 (define-public r-biocgenerics
2249 (package
2250 (name "r-biocgenerics")
2251 (version "0.42.0")
2252 (source (origin
2253 (method url-fetch)
2254 (uri (bioconductor-uri "BiocGenerics" version))
2255 (sha256
2256 (base32
2257 "0iv9bnpw2hycndwbmjsszqfwrksz6dfr6qcz78jkssc9ldsgmdhc"))))
2258 (properties
2259 `((upstream-name . "BiocGenerics")))
2260 (build-system r-build-system)
2261 (home-page "https://bioconductor.org/packages/BiocGenerics")
2262 (synopsis "S4 generic functions for Bioconductor")
2263 (description
2264 "This package provides S4 generic functions needed by many Bioconductor
2265 packages.")
2266 (license license:artistic2.0)))
2267
2268 (define-public r-coverageview
2269 (package
2270 (name "r-coverageview")
2271 (version "1.34.0")
2272 (source (origin
2273 (method url-fetch)
2274 (uri (bioconductor-uri "CoverageView" version))
2275 (sha256
2276 (base32
2277 "0mh66l4yh6rpd1r7qbqwh5jkklqyvpfiap0zcqhz9kimssm2pbbp"))))
2278 (build-system r-build-system)
2279 (propagated-inputs
2280 (list r-s4vectors
2281 r-iranges
2282 r-genomicranges
2283 r-genomicalignments
2284 r-rtracklayer
2285 r-rsamtools))
2286 (home-page "https://bioconductor.org/packages/CoverageView/")
2287 (synopsis "Coverage visualization package for R")
2288 (description "This package provides a framework for the visualization of
2289 genome coverage profiles. It can be used for ChIP-seq experiments, but it can
2290 be also used for genome-wide nucleosome positioning experiments or other
2291 experiment types where it is important to have a framework in order to inspect
2292 how the coverage distributed across the genome.")
2293 (license license:artistic2.0)))
2294
2295 (define-public r-cummerbund
2296 (package
2297 (name "r-cummerbund")
2298 (version "2.38.0")
2299 (source (origin
2300 (method url-fetch)
2301 (uri (bioconductor-uri "cummeRbund" version))
2302 (sha256
2303 (base32
2304 "1p4anmi436zykp0ir307g75g23kj8b7shxg4r65qq6zdwflphm0q"))))
2305 (build-system r-build-system)
2306 (propagated-inputs
2307 (list r-biobase
2308 r-biocgenerics
2309 r-fastcluster
2310 r-ggplot2
2311 r-gviz
2312 r-plyr
2313 r-reshape2
2314 r-rsqlite
2315 r-rtracklayer
2316 r-s4vectors))
2317 (home-page "https://bioconductor.org/packages/cummeRbund/")
2318 (synopsis "Analyze Cufflinks high-throughput sequencing data")
2319 (description "This package allows for persistent storage, access,
2320 exploration, and manipulation of Cufflinks high-throughput sequencing
2321 data. In addition, provides numerous plotting functions for commonly
2322 used visualizations.")
2323 (license license:artistic2.0)))
2324
2325 (define-public r-dearseq
2326 (package
2327 (name "r-dearseq")
2328 (version "1.8.1")
2329 (source
2330 (origin
2331 (method url-fetch)
2332 (uri (bioconductor-uri "dearseq" version))
2333 (sha256
2334 (base32
2335 "1f144k5gsclcmsnlsbisr2mivk91dbkci83wx1kznw6i15p4cpj1"))))
2336 (build-system r-build-system)
2337 (propagated-inputs
2338 (list r-compquadform
2339 r-dplyr
2340 r-ggplot2
2341 r-kernsmooth
2342 r-magrittr
2343 r-matrixstats
2344 r-patchwork
2345 r-pbapply
2346 r-reshape2
2347 r-rlang
2348 r-statmod
2349 r-survey
2350 r-tibble
2351 r-viridislite))
2352 (native-inputs
2353 (list r-knitr))
2354 (home-page "https://github.com/borishejblum/dearseq")
2355 (synopsis "DEA for RNA-seq data through a robust variance component test")
2356 (description
2357 "This is a package for Differential Expression Analysis of RNA-seq data.
2358 It features a variance component score test accounting for data
2359 heteroscedasticity through precision weights. Perform both gene-wise and gene
2360 set analyses, and can deal with repeated or longitudinal data.")
2361 (license license:gpl2)))
2362
2363 (define-public r-decipher
2364 (package
2365 (name "r-decipher")
2366 (version "2.24.0")
2367 (source (origin
2368 (method url-fetch)
2369 (uri (bioconductor-uri "DECIPHER" version))
2370 (sha256
2371 (base32
2372 "045q2bfzgq1yzhyrzvrhrnmlpka4gikrajxxwv05szksy5nvp7q5"))))
2373 (build-system r-build-system)
2374 (propagated-inputs
2375 (list r-biostrings
2376 r-dbi
2377 r-iranges
2378 r-rsqlite
2379 r-s4vectors
2380 r-xvector))
2381 (home-page "https://www.bioconductor.org/packages/DECIPHER/")
2382 (synopsis "Tools for deciphering and managing biological sequences")
2383 (description "This package provides a toolset for deciphering and managing
2384 biological sequences.")
2385 (license license:gpl3)))
2386
2387 (define-public r-deconvr
2388 (package
2389 (name "r-deconvr")
2390 (version "1.2.0")
2391 (source (origin
2392 (method url-fetch)
2393 (uri (bioconductor-uri "deconvR" version))
2394 (sha256
2395 (base32
2396 "091z3lncamscsvzj63zzbw7dr7vnkn0jwfkm5ljq4112w4rxgrm3"))))
2397 (properties `((upstream-name . "deconvR")))
2398 (build-system r-build-system)
2399 (propagated-inputs
2400 (list r-assertthat
2401 r-biocgenerics
2402 r-data-table
2403 r-dplyr
2404 r-e1071
2405 r-foreach
2406 r-genomicranges
2407 r-iranges
2408 r-magrittr
2409 r-mass
2410 r-matrixstats
2411 r-methylkit
2412 r-nnls
2413 r-quadprog
2414 r-rsq
2415 r-s4vectors
2416 r-tidyr))
2417 (native-inputs (list r-knitr))
2418 (home-page "https://github.com/BIMSBbioinfo/deconvR")
2419 (synopsis "Simulation and deconvolution of omic profiles")
2420 (description
2421 "This package provides a collection of functions designed for analyzing
2422 deconvolution of the bulk sample(s) using an atlas of reference omic signature
2423 profiles and a user-selected model. Users are given the option to create or
2424 extend a reference atlas and,also simulate the desired size of the bulk
2425 signature profile of the reference cell types. The package includes the
2426 cell-type-specific methylation atlas and, Illumina Epic B5 probe ids that can
2427 be used in deconvolution. Additionally, we included @code{BSmeth2Probe}, to
2428 make mapping WGBS data to their probe IDs easier.")
2429 (license license:artistic2.0)))
2430
2431 (define-public r-decoupler
2432 (package
2433 (name "r-decoupler")
2434 (version "2.2.2")
2435 (source
2436 (origin
2437 (method url-fetch)
2438 (uri (bioconductor-uri "decoupleR" version))
2439 (sha256
2440 (base32 "0q1w8yw3bwx8ai5z8rw8lz97w4cplxijq93634hza2vgkig1ck9m"))))
2441 (properties `((upstream-name . "decoupleR")))
2442 (build-system r-build-system)
2443 (propagated-inputs
2444 (list r-broom
2445 r-dplyr
2446 r-magrittr
2447 r-matrix
2448 r-purrr
2449 r-rlang
2450 r-stringr
2451 r-tibble
2452 r-tidyr
2453 r-tidyselect
2454 r-withr))
2455 (native-inputs (list r-knitr))
2456 (home-page "https://saezlab.github.io/decoupleR/")
2457 (synopsis "Computational methods to infer biological activities from omics data")
2458 (description
2459 "Many methods allow us to extract biological activities from omics data using
2460 information from prior knowledge resources, reducing the dimensionality for
2461 increased statistical power and better interpretability. decoupleR is a
2462 Bioconductor package containing different statistical methods to extract these
2463 signatures within a unified framework. decoupleR allows the user to flexibly
2464 test any method with any resource. It incorporates methods that take into
2465 account the sign and weight of network interactions. decoupleR can be used
2466 with any omic, as long as its features can be linked to a biological process
2467 based on prior knowledge. For example, in transcriptomics gene sets regulated
2468 by a transcription factor, or in phospho-proteomics phosphosites that are
2469 targeted by a kinase.")
2470 (license license:gpl3)))
2471
2472 (define-public r-deepsnv
2473 (package
2474 (name "r-deepsnv")
2475 (version "1.42.1")
2476 (source (origin
2477 (method url-fetch)
2478 (uri (bioconductor-uri "deepSNV" version))
2479 (sha256
2480 (base32
2481 "0bgj1grv3a5bqhcdsw445x49kl3pz367svy6fnrzfsk9bmj46kgn"))))
2482 (properties `((upstream-name . "deepSNV")))
2483 (build-system r-build-system)
2484 (propagated-inputs
2485 (list r-biostrings
2486 r-genomicranges
2487 r-iranges
2488 r-rhtslib
2489 r-summarizedexperiment
2490 r-variantannotation
2491 r-vgam))
2492 (native-inputs
2493 (list r-knitr))
2494 (home-page "https://github.com/gerstung-lab/deepSNV/")
2495 (synopsis "Detection of subclonal SNVs in deep sequencing data")
2496 (description
2497 "This package provides quantitative variant callers for detecting
2498 subclonal mutations in ultra-deep (>=100x coverage) sequencing experiments.
2499 The deepSNV algorithm is used for a comparative setup with a control experiment
2500 of the same loci and uses a beta-binomial model and a likelihood ratio test to
2501 discriminate sequencing errors and subclonal SNVs. The shearwater algorithm
2502 computes a Bayes classifier based on a beta-binomial model for variant calling
2503 with multiple samples for precisely estimating model parameters - such as local
2504 error rates and dispersion - and prior knowledge, e.g. from variation data
2505 bases such as COSMIC.")
2506 (license license:gpl3)))
2507
2508 (define-public r-delayedarray
2509 (package
2510 (name "r-delayedarray")
2511 (version "0.22.0")
2512 (source (origin
2513 (method url-fetch)
2514 (uri (bioconductor-uri "DelayedArray" version))
2515 (sha256
2516 (base32
2517 "11id63qza9dxl1364gllqafxmx25a0q22jv5q8h709bgc3f0grqy"))))
2518 (properties
2519 `((upstream-name . "DelayedArray")))
2520 (build-system r-build-system)
2521 (propagated-inputs
2522 (list r-biocgenerics r-s4vectors r-iranges r-matrix
2523 r-matrixgenerics))
2524 (native-inputs
2525 (list r-knitr))
2526 (home-page "https://bioconductor.org/packages/DelayedArray")
2527 (synopsis "Delayed operations on array-like objects")
2528 (description
2529 "Wrapping an array-like object (typically an on-disk object) in a
2530 @code{DelayedArray} object allows one to perform common array operations on it
2531 without loading the object in memory. In order to reduce memory usage and
2532 optimize performance, operations on the object are either delayed or executed
2533 using a block processing mechanism. Note that this also works on in-memory
2534 array-like objects like @code{DataFrame} objects (typically with Rle columns),
2535 @code{Matrix} objects, and ordinary arrays and data frames.")
2536 (license license:artistic2.0)))
2537
2538 (define-public r-derfinderhelper
2539 (package
2540 (name "r-derfinderhelper")
2541 (version "1.30.0")
2542 (source
2543 (origin
2544 (method url-fetch)
2545 (uri (bioconductor-uri "derfinderHelper" version))
2546 (sha256
2547 (base32 "0r7zbx5bfmh5cjs12y8d9qwz53nz340gdy3sx7zcn4rzn7rpslp5"))))
2548 (properties `((upstream-name . "derfinderHelper")))
2549 (build-system r-build-system)
2550 (propagated-inputs
2551 (list r-iranges r-matrix r-s4vectors))
2552 (native-inputs
2553 (list r-knitr))
2554 (home-page "https://github.com/leekgroup/derfinderHelper")
2555 (synopsis "Helper for derfinder")
2556 (description
2557 "This package speeds up the derfinder package when using multiple cores.
2558 It is particularly useful when using BiocParallel and it helps reduce the time
2559 spent loading the full derfinder package when running the F-statistics
2560 calculation in parallel.")
2561 (license license:artistic2.0)))
2562
2563 (define-public r-drimseq
2564 (package
2565 (name "r-drimseq")
2566 (version "1.24.0")
2567 (source
2568 (origin
2569 (method url-fetch)
2570 (uri (bioconductor-uri "DRIMSeq" version))
2571 (sha256
2572 (base32 "1dph483ij43ayw0z5dbnp6gwp53ka7k5si1hp3miac7z8dqzv94l"))))
2573 (properties `((upstream-name . "DRIMSeq")))
2574 (build-system r-build-system)
2575 (propagated-inputs
2576 (list r-biocgenerics
2577 r-biocparallel
2578 r-edger
2579 r-genomicranges
2580 r-ggplot2
2581 r-iranges
2582 r-limma
2583 r-mass
2584 r-reshape2
2585 r-s4vectors))
2586 (native-inputs (list r-knitr))
2587 (home-page "https://bioconductor.org/packages/DRIMSeq")
2588 (synopsis "Differential transcript usage and tuQTL analyses with Dirichlet-multinomial model in RNA-seq")
2589 (description
2590 "The package provides two frameworks. One for the differential
2591 transcript usage analysis between different conditions and one for the tuQTL
2592 analysis. Both are based on modeling the counts of genomic features (i.e.,
2593 transcripts) with the Dirichlet-multinomial distribution. The package also
2594 makes available functions for visualization and exploration of the data and
2595 results.")
2596 (license license:gpl3+)))
2597
2598 (define-public r-bluster
2599 (package
2600 (name "r-bluster")
2601 (version "1.6.0")
2602 (source (origin
2603 (method url-fetch)
2604 (uri (bioconductor-uri "bluster" version))
2605 (sha256
2606 (base32
2607 "1g496yc7mdhshf6r0n8xhj7ax936ia5z2cx72lqyk2vzzzl5c4v8"))))
2608 (properties `((upstream-name . "bluster")))
2609 (build-system r-build-system)
2610 (propagated-inputs
2611 (list r-biocneighbors
2612 r-biocparallel
2613 r-cluster
2614 r-igraph
2615 r-matrix
2616 r-rcpp
2617 r-s4vectors))
2618 (native-inputs
2619 (list r-knitr))
2620 (home-page "https://bioconductor.org/packages/bluster")
2621 (synopsis "Clustering algorithms for Bioconductor")
2622 (description"This package wraps common clustering algorithms in an easily
2623 extended S4 framework. Backends are implemented for hierarchical, k-means
2624 and graph-based clustering. Several utilities are also provided to compare
2625 and evaluate clustering results.")
2626 (license license:gpl3)))
2627
2628 (define-public r-ideoviz
2629 (package
2630 (name "r-ideoviz")
2631 (version "1.32.0")
2632 (source (origin
2633 (method url-fetch)
2634 (uri (bioconductor-uri "IdeoViz" version))
2635 (sha256
2636 (base32
2637 "1wwh3ifdijhpm58lw7cmnx084xwfxnc7i0206w8rhrjnvnq6ljh3"))))
2638 (build-system r-build-system)
2639 (propagated-inputs
2640 (list r-biobase
2641 r-iranges
2642 r-genomicranges
2643 r-rcolorbrewer
2644 r-rtracklayer
2645 r-genomeinfodb))
2646 (home-page "https://bioconductor.org/packages/IdeoViz/")
2647 (synopsis "Plots data along a chromosomal ideogram")
2648 (description "This package provides functions to plot data associated with
2649 arbitrary genomic intervals along chromosomal ideogram.")
2650 (license license:gpl2)))
2651
2652 (define-public r-infercnv
2653 (package
2654 (name "r-infercnv")
2655 (version "1.12.0")
2656 (source
2657 (origin
2658 (method url-fetch)
2659 (uri (bioconductor-uri "infercnv" version))
2660 (sha256
2661 (base32
2662 "01f021fdxm058733rky46dlvqg7dmf5mn5x9lnq0fspp5665w3bl"))))
2663 (properties `((upstream-name . "infercnv")))
2664 (build-system r-build-system)
2665 (inputs (list python))
2666 (propagated-inputs
2667 (list r-ape
2668 r-argparse
2669 r-biocgenerics
2670 r-catools
2671 r-coda
2672 r-coin
2673 r-digest
2674 r-doparallel
2675 r-dplyr
2676 r-edger
2677 r-fastcluster
2678 r-fitdistrplus
2679 r-foreach
2680 r-futile-logger
2681 r-future
2682 r-ggplot2
2683 r-gplots
2684 r-gridextra
2685 r-hiddenmarkov
2686 r-leiden
2687 r-matrix
2688 r-paralleldist
2689 r-phyclust
2690 r-rann
2691 r-rcolorbrewer
2692 r-reshape
2693 r-rjags
2694 r-singlecellexperiment
2695 r-summarizedexperiment
2696 r-tidyr))
2697 (native-inputs (list r-knitr))
2698 (home-page "https://github.com/broadinstitute/inferCNV/wiki")
2699 (synopsis "Infer copy number variation from single-cell RNA-Seq data")
2700 (description
2701 "@code{InferCNV} is used to explore tumor single cell RNA-Seq data to identify
2702 evidence for somatic large-scale chromosomal copy number alterations, such as gains
2703 or deletions of entire chromosomes or large segments of chromosomes. This is done
2704 by exploring expression intensity of genes across positions of a tumor genome in
2705 comparison to a set of reference \"normal\" cells. A heatmap is generated
2706 illustrating the relative expression intensities across each chromosome, and it
2707 often becomes readily apparent as to which regions of the tumor genome are
2708 over-abundant or less-abundant as compared to that of normal cells.")
2709 (license license:bsd-3)))
2710
2711 (define-public r-iranges
2712 (package
2713 (name "r-iranges")
2714 (version "2.30.0")
2715 (source (origin
2716 (method url-fetch)
2717 (uri (bioconductor-uri "IRanges" version))
2718 (sha256
2719 (base32
2720 "0hfx5n0b4pqrrc1w2dik596803ly8ffnxfs768iy5l5kr8wwyc8k"))))
2721 (properties
2722 `((upstream-name . "IRanges")))
2723 (build-system r-build-system)
2724 (propagated-inputs
2725 (list r-biocgenerics r-s4vectors))
2726 (home-page "https://bioconductor.org/packages/IRanges")
2727 (synopsis "Infrastructure for manipulating intervals on sequences")
2728 (description
2729 "This package provides efficient low-level and highly reusable S4 classes
2730 for storing ranges of integers, RLE vectors (Run-Length Encoding), and, more
2731 generally, data that can be organized sequentially (formally defined as
2732 @code{Vector} objects), as well as views on these @code{Vector} objects.
2733 Efficient list-like classes are also provided for storing big collections of
2734 instances of the basic classes. All classes in the package use consistent
2735 naming and share the same rich and consistent \"Vector API\" as much as
2736 possible.")
2737 (license license:artistic2.0)))
2738
2739 (define-public r-isoformswitchanalyzer
2740 (package
2741 (name "r-isoformswitchanalyzer")
2742 (version "1.18.0")
2743 (source
2744 (origin
2745 (method url-fetch)
2746 (uri (bioconductor-uri "IsoformSwitchAnalyzeR" version))
2747 (sha256
2748 (base32 "0n1gb9azxa1mxpsqvw3i3kf72f45nyjj1kgwwrzhd88n3g63lvkd"))))
2749 (properties `((upstream-name . "IsoformSwitchAnalyzeR")))
2750 (build-system r-build-system)
2751 (propagated-inputs
2752 (list r-biobase
2753 r-biocgenerics
2754 r-biostrings
2755 r-bsgenome
2756 r-dbi
2757 r-dexseq
2758 r-dplyr
2759 r-drimseq
2760 r-edger
2761 r-futile-logger
2762 r-genomeinfodb
2763 r-genomicranges
2764 r-ggplot2
2765 r-gridextra
2766 r-iranges
2767 r-limma
2768 r-magrittr
2769 r-plyr
2770 r-rcolorbrewer
2771 r-rcurl
2772 r-readr
2773 r-reshape2
2774 r-rtracklayer
2775 r-stringr
2776 r-tibble
2777 r-tximeta
2778 r-tximport
2779 r-venndiagram
2780 r-xvector))
2781 (native-inputs
2782 (list r-knitr))
2783 (home-page "https://bioconductor.org/packages/IsoformSwitchAnalyzeR/")
2784 (synopsis "Analyze alternative splicing in RNA-seq data")
2785 (description
2786 "This is a package for the analysis of alternative splicing and isoform
2787 switches with predicted functional consequences (e.g. gain/loss of protein
2788 domains etc.) from quantification of all types of RNASeq by tools such as
2789 Kallisto, Salmon, StringTie, Cufflinks/Cuffdiff etc.")
2790 (license license:gpl2+)))
2791
2792 ;; This is a CRAN package, but it depends on r-biobase and r-limma from Bioconductor.
2793 (define-public r-absfiltergsea
2794 (package
2795 (name "r-absfiltergsea")
2796 (version "1.5.1")
2797 (source
2798 (origin
2799 (method url-fetch)
2800 (uri (cran-uri "AbsFilterGSEA" version))
2801 (sha256
2802 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
2803 (properties `((upstream-name . "AbsFilterGSEA")))
2804 (build-system r-build-system)
2805 (propagated-inputs
2806 (list r-biobase r-deseq r-limma r-rcpp r-rcpparmadillo))
2807 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
2808 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
2809 (description
2810 "This package provides a function that performs gene-permuting of a gene-set
2811 enrichment analysis (GSEA) calculation with or without the absolute filtering.
2812 Without filtering, users can perform (original) two-tailed or one-tailed
2813 absolute GSEA.")
2814 (license license:gpl2)))
2815
2816 ;; This is a CRAN package, but it depends on r-biobase from Bioconductor.
2817 (define-public r-bisquerna
2818 (package
2819 (name "r-bisquerna")
2820 (version "1.0.5")
2821 (source (origin
2822 (method url-fetch)
2823 (uri (cran-uri "BisqueRNA" version))
2824 (sha256
2825 (base32
2826 "0p3p5lp69gri7vs6qfpm7br4ksbs4l7clm4nj8ki99wpqiqni23n"))))
2827 (properties `((upstream-name . "BisqueRNA")))
2828 (build-system r-build-system)
2829 (propagated-inputs
2830 (list r-biobase r-limsolve))
2831 (native-inputs
2832 (list r-knitr))
2833 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
2834 (synopsis "Decomposition of bulk expression with single-cell sequencing")
2835 (description "This package provides tools to accurately estimate cell type
2836 abundances from heterogeneous bulk expression. A reference-based method
2837 utilizes single-cell information to generate a signature matrix and
2838 transformation of bulk expression for accurate regression based estimates.
2839 A marker-based method utilizes known cell-specific marker genes to measure
2840 relative abundances across samples.")
2841 (license license:gpl3)))
2842
2843 ;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
2844 ;; from Bioconductor.
2845 (define-public r-deconstructsigs
2846 (package
2847 (name "r-deconstructsigs")
2848 (version "1.8.0")
2849 (source (origin
2850 (method url-fetch)
2851 (uri (cran-uri "deconstructSigs" version))
2852 (sha256
2853 (base32
2854 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
2855 (properties
2856 `((upstream-name . "deconstructSigs")))
2857 (build-system r-build-system)
2858 (propagated-inputs
2859 (list r-bsgenome r-bsgenome-hsapiens-ucsc-hg19 r-genomeinfodb
2860 r-reshape2))
2861 (home-page "https://github.com/raerose01/deconstructSigs")
2862 (synopsis "Identifies signatures present in a tumor sample")
2863 (description "This package takes sample information in the form of the
2864 fraction of mutations in each of 96 trinucleotide contexts and identifies
2865 the weighted combination of published signatures that, when summed, most
2866 closely reconstructs the mutational profile.")
2867 (license license:gpl2+)))
2868
2869 ;; This is a CRAN package, but it depends on Bioconductor packages.
2870 (define-public r-jetset
2871 (package
2872 (name "r-jetset")
2873 (version "3.4.0")
2874 (source
2875 (origin
2876 (method url-fetch)
2877 (uri (cran-uri "jetset" version))
2878 (sha256
2879 (base32 "0c99h5npsv2gf5d59s4qhkaqmjhbwa3prcykk24wzhnpfq6y6xhp"))))
2880 (properties `((upstream-name . "jetset")))
2881 (build-system r-build-system)
2882 (propagated-inputs (list r-annotationdbi r-org-hs-eg-db))
2883 (home-page "http://www.cbs.dtu.dk/biotools/jetset/")
2884 (synopsis "One-to-one gene-probeset mapping for Affymetrix human microarrays")
2885 (description
2886 "This package provides a one-to-one mapping from gene to \"best\" probe
2887 set for four Affymetrix human gene expression microarrays: hgu95av2, hgu133a,
2888 hgu133plus2, and u133x3p. On Affymetrix gene expression microarrays, a single
2889 gene may be measured by multiple probe sets. This can present a mild
2890 conundrum when attempting to evaluate a gene \"signature\" that is defined by
2891 gene names rather than by specific probe sets. This package also includes the
2892 pre-calculated probe set quality scores that were used to define the
2893 mapping.")
2894 (license license:artistic2.0)))
2895
2896 ;; This is a CRAN package, but it depends on Bioconductor packages.
2897 (define-public r-nmf
2898 (package
2899 (name "r-nmf")
2900 (version "0.24.0")
2901 (source
2902 (origin
2903 (method url-fetch)
2904 (uri (cran-uri "NMF" version))
2905 (sha256
2906 (base32
2907 "14yxra6in5c1md5nr75y8cdmh9pg0lxqabqflvlhgg1vbg9i2628"))))
2908 (properties `((upstream-name . "NMF")))
2909 (build-system r-build-system)
2910 (propagated-inputs
2911 (list r-cluster
2912 r-biobase
2913 r-biocmanager
2914 r-bigmemory ; suggested
2915 r-synchronicity ; suggested
2916 r-colorspace
2917 r-digest
2918 r-doparallel
2919 r-foreach
2920 r-ggplot2
2921 r-gridbase
2922 r-pkgmaker
2923 r-rcolorbrewer
2924 r-registry
2925 r-reshape2
2926 r-rngtools
2927 r-stringr))
2928 (native-inputs
2929 (list r-knitr))
2930 (home-page "http://renozao.github.io/NMF")
2931 (synopsis "Algorithms and framework for nonnegative matrix factorization")
2932 (description
2933 "This package provides a framework to perform Non-negative Matrix
2934 Factorization (NMF). The package implements a set of already published
2935 algorithms and seeding methods, and provides a framework to test, develop and
2936 plug new or custom algorithms. Most of the built-in algorithms have been
2937 optimized in C++, and the main interface function provides an easy way of
2938 performing parallel computations on multicore machines.")
2939 (license license:gpl2+)))
2940
2941 (define-public r-affy
2942 (package
2943 (name "r-affy")
2944 (version "1.74.0")
2945 (source
2946 (origin
2947 (method url-fetch)
2948 (uri (bioconductor-uri "affy" version))
2949 (sha256
2950 (base32
2951 "02l77y4d4m4jwgkb3jdaskv6shmba5292whp0i29mg9asxv4rdc7"))))
2952 (build-system r-build-system)
2953 (propagated-inputs
2954 (list r-affyio
2955 r-biobase
2956 r-biocgenerics
2957 r-biocmanager
2958 r-preprocesscore
2959 r-zlibbioc))
2960 (inputs
2961 (list zlib))
2962 (home-page "https://bioconductor.org/packages/affy")
2963 (synopsis "Methods for affymetrix oligonucleotide arrays")
2964 (description
2965 "This package contains functions for exploratory oligonucleotide array
2966 analysis.")
2967 (license license:lgpl2.0+)))
2968
2969 (define-public r-affycomp
2970 (package
2971 (name "r-affycomp")
2972 (version "1.72.0")
2973 (source
2974 (origin
2975 (method url-fetch)
2976 (uri (bioconductor-uri "affycomp" version))
2977 (sha256
2978 (base32
2979 "0aq5p56sqpvba0yhgd75302s9bazchh1izgymng6cpb78y5wfpj0"))))
2980 (properties `((upstream-name . "affycomp")))
2981 (build-system r-build-system)
2982 (propagated-inputs (list r-biobase))
2983 (home-page "https://bioconductor.org/packages/affycomp/")
2984 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
2985 (description
2986 "The package contains functions that can be used to compare expression
2987 measures for Affymetrix Oligonucleotide Arrays.")
2988 (license license:gpl2+)))
2989
2990 (define-public r-affycompatible
2991 (package
2992 (name "r-affycompatible")
2993 (version "1.56.0")
2994 (source
2995 (origin
2996 (method url-fetch)
2997 (uri (bioconductor-uri "AffyCompatible" version))
2998 (sha256
2999 (base32
3000 "0x3lj1jgqq67389rzfklah5p878ns9b4fpdpz455m2gq9sk7qsda"))))
3001 (properties
3002 `((upstream-name . "AffyCompatible")))
3003 (build-system r-build-system)
3004 (arguments
3005 (list
3006 #:phases
3007 `(modify-phases %standard-phases
3008 (add-after 'unpack 'make-reproducible
3009 (lambda _
3010 ;; Order DTD elements before generating R code from them.
3011 (substitute* "R/methods-AffyCompatible.R"
3012 (("dtd <- .*" m)
3013 (string-append m "
3014 elements <- dtd$elements
3015 ordered <- elements[order(names(elements))]\n"))
3016 (("elt in dtd\\$elements")
3017 "elt in ordered"))
3018 ;; Use a predictable directory name for code generation.
3019 (mkdir-p "/tmp/NetAffxResourcePrototype")
3020 (substitute* "R/DataClasses.R"
3021 (("directory=tempdir\\(\\)")
3022 "directory=\"/tmp/NetAffxResourcePrototype\"")))))))
3023 (propagated-inputs
3024 (list r-biostrings r-rcurl r-xml))
3025 (home-page "https://bioconductor.org/packages/AffyCompatible/")
3026 (synopsis "Work with Affymetrix GeneChip files")
3027 (description
3028 "This package provides an interface to Affymetrix chip annotation and
3029 sample attribute files. The package allows an easy way for users to download
3030 and manage local data bases of Affynmetrix NetAffx annotation files. It also
3031 provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
3032 Command Console} (AGCC)-compatible sample annotation files.")
3033 (license license:artistic2.0)))
3034
3035 (define-public r-affycontam
3036 (package
3037 (name "r-affycontam")
3038 (version "1.54.0")
3039 (source
3040 (origin
3041 (method url-fetch)
3042 (uri (bioconductor-uri "affyContam" version))
3043 (sha256
3044 (base32
3045 "1pyd4rj6pp139kvhh97whi4afvx029w5lglr4mnscw7m3f618v0p"))))
3046 (properties `((upstream-name . "affyContam")))
3047 (build-system r-build-system)
3048 (propagated-inputs
3049 (list r-affy r-affydata r-biobase))
3050 (home-page "https://bioconductor.org/packages/affyContam/")
3051 (synopsis "Structured corruption of Affymetrix CEL file data")
3052 (description
3053 "Microarray quality assessment is a major concern of microarray analysts.
3054 This package provides some simple approaches to in silico creation of quality
3055 problems in CEL-level data to help evaluate performance of quality metrics.")
3056 (license license:artistic2.0)))
3057
3058 (define-public r-affycoretools
3059 (package
3060 (name "r-affycoretools")
3061 (version "1.68.1")
3062 (source
3063 (origin
3064 (method url-fetch)
3065 (uri (bioconductor-uri "affycoretools" version))
3066 (sha256
3067 (base32
3068 "05x64hy5jpmg973biwq4q9gzy1n0iqc0pxrix1f6bri1w6vil3ww"))))
3069 (properties `((upstream-name . "affycoretools")))
3070 (build-system r-build-system)
3071 (propagated-inputs
3072 (list r-affy
3073 r-annotationdbi
3074 r-biobase
3075 r-biocgenerics
3076 r-dbi
3077 r-edger
3078 r-gcrma
3079 r-glimma
3080 r-ggplot2
3081 r-gostats
3082 r-gplots
3083 r-hwriter
3084 r-lattice
3085 r-limma
3086 r-oligoclasses
3087 r-reportingtools
3088 r-rsqlite
3089 r-s4vectors
3090 r-xtable))
3091 (native-inputs
3092 (list r-knitr))
3093 (home-page "https://bioconductor.org/packages/affycoretools/")
3094 (synopsis "Functions for analyses with Affymetrix GeneChips")
3095 (description
3096 "This package provides various wrapper functions that have been written
3097 to streamline the more common analyses that a Biostatistician might see.")
3098 (license license:artistic2.0)))
3099
3100 (define-public r-affyio
3101 (package
3102 (name "r-affyio")
3103 (version "1.66.0")
3104 (source
3105 (origin
3106 (method url-fetch)
3107 (uri (bioconductor-uri "affyio" version))
3108 (sha256
3109 (base32
3110 "19cw82qvzkz6vh2gm302y7digsf6xif7c9l2q9s6lkx2yflqpgfp"))))
3111 (build-system r-build-system)
3112 (propagated-inputs
3113 (list r-zlibbioc))
3114 (inputs
3115 (list zlib))
3116 (home-page "https://github.com/bmbolstad/affyio")
3117 (synopsis "Tools for parsing Affymetrix data files")
3118 (description
3119 "This package provides routines for parsing Affymetrix data files based
3120 upon file format information. The primary focus is on accessing the CEL and
3121 CDF file formats.")
3122 (license license:lgpl2.0+)))
3123
3124 (define-public r-affxparser
3125 (package
3126 (name "r-affxparser")
3127 (version "1.68.1")
3128 (source
3129 (origin
3130 (method url-fetch)
3131 (uri (bioconductor-uri "affxparser" version))
3132 (sha256
3133 (base32
3134 "16x92gwsy7zdyz4md4cw847xn2ymqd6gqsn0rlr2nnf3qmnjnils"))))
3135 (properties `((upstream-name . "affxparser")))
3136 (build-system r-build-system)
3137 (home-page "https://github.com/HenrikBengtsson/affxparser")
3138 (synopsis "Affymetrix File Parsing SDK")
3139 (description
3140 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
3141 BAR). It provides methods for fast and memory efficient parsing of Affymetrix
3142 files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
3143 are supported. Currently, there are methods for reading @dfn{chip definition
3144 file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
3145 either in full or in part. For example, probe signals from a few probesets
3146 can be extracted very quickly from a set of CEL files into a convenient list
3147 structure.")
3148 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
3149 ;; under LGPLv2+.
3150 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
3151
3152 (define-public r-annotate
3153 (package
3154 (name "r-annotate")
3155 (version "1.74.0")
3156 (source
3157 (origin
3158 (method url-fetch)
3159 (uri (bioconductor-uri "annotate" version))
3160 (sha256
3161 (base32
3162 "0x6vddpiw2g713vicf70198x8dlrwf36p8jjygdsfnl56ls5bh2g"))))
3163 (build-system r-build-system)
3164 (propagated-inputs
3165 (list r-annotationdbi
3166 r-biobase
3167 r-biocgenerics
3168 r-dbi
3169 r-httr
3170 r-xml
3171 r-xtable))
3172 (home-page
3173 "https://bioconductor.org/packages/annotate")
3174 (synopsis "Annotation for microarrays")
3175 (description "This package provides R environments for the annotation of
3176 microarrays.")
3177 (license license:artistic2.0)))
3178
3179 (define-public r-annotationdbi
3180 (package
3181 (name "r-annotationdbi")
3182 (version "1.58.0")
3183 (source (origin
3184 (method url-fetch)
3185 (uri (bioconductor-uri "AnnotationDbi" version))
3186 (sha256
3187 (base32
3188 "15cwy7lic89jwl3dr7j4pb5bx457jdpvzvylr71624s0p0j9rgwn"))))
3189 (properties
3190 `((upstream-name . "AnnotationDbi")))
3191 (build-system r-build-system)
3192 (propagated-inputs
3193 (list r-biobase
3194 r-biocgenerics
3195 r-dbi
3196 r-keggrest
3197 r-iranges
3198 r-rsqlite
3199 r-s4vectors))
3200 (native-inputs
3201 (list r-knitr))
3202 (home-page "https://bioconductor.org/packages/AnnotationDbi")
3203 (synopsis "Annotation database interface")
3204 (description
3205 "This package provides user interface and database connection code for
3206 annotation data packages using SQLite data storage.")
3207 (license license:artistic2.0)))
3208
3209 (define-public r-annotationfilter
3210 (package
3211 (name "r-annotationfilter")
3212 (version "1.20.0")
3213 (source (origin
3214 (method url-fetch)
3215 (uri (bioconductor-uri "AnnotationFilter" version))
3216 (sha256
3217 (base32
3218 "082lpcd6yr2nkxndlck2wqqd3nfdx7lnpw8barxgv41q4l7v4ald"))))
3219 (properties
3220 `((upstream-name . "AnnotationFilter")))
3221 (build-system r-build-system)
3222 (propagated-inputs
3223 (list r-genomicranges r-lazyeval))
3224 (native-inputs
3225 (list r-knitr))
3226 (home-page "https://github.com/Bioconductor/AnnotationFilter")
3227 (synopsis "Facilities for filtering Bioconductor annotation resources")
3228 (description
3229 "This package provides classes and other infrastructure to implement
3230 filters for manipulating Bioconductor annotation resources. The filters are
3231 used by @code{ensembldb}, @code{Organism.dplyr}, and other packages.")
3232 (license license:artistic2.0)))
3233
3234 (define-public r-annotationforge
3235 (package
3236 (name "r-annotationforge")
3237 (version "1.38.0")
3238 (source
3239 (origin
3240 (method url-fetch)
3241 (uri (bioconductor-uri "AnnotationForge" version))
3242 (sha256
3243 (base32
3244 "18rcfadxdaggyjj3rj17nbvgddlqs6zlr5jmq9a02kin59czvzz8"))))
3245 (properties
3246 `((upstream-name . "AnnotationForge")))
3247 (build-system r-build-system)
3248 (propagated-inputs
3249 (list r-annotationdbi
3250 r-biobase
3251 r-biocgenerics
3252 r-dbi
3253 r-rcurl
3254 r-rsqlite
3255 r-s4vectors
3256 r-xml))
3257 (native-inputs
3258 (list r-knitr))
3259 (home-page "https://bioconductor.org/packages/AnnotationForge")
3260 (synopsis "Code for building annotation database packages")
3261 (description
3262 "This package provides code for generating Annotation packages and their
3263 databases. Packages produced are intended to be used with AnnotationDbi.")
3264 (license license:artistic2.0)))
3265
3266 (define-public r-annotationhub
3267 (package
3268 (name "r-annotationhub")
3269 (version "3.4.0")
3270 (source
3271 (origin
3272 (method url-fetch)
3273 (uri (bioconductor-uri "AnnotationHub" version))
3274 (sha256
3275 (base32
3276 "03dmbx43rsv9xv94lk12gpraq47ryc13jijwma3q05hl9wn8xjxs"))))
3277 (properties `((upstream-name . "AnnotationHub")))
3278 (build-system r-build-system)
3279 (propagated-inputs
3280 (list r-annotationdbi
3281 r-biocfilecache
3282 r-biocgenerics
3283 r-biocmanager
3284 r-biocversion
3285 r-curl
3286 r-dplyr
3287 r-httr
3288 r-interactivedisplaybase
3289 r-rappdirs
3290 r-rsqlite
3291 r-s4vectors
3292 r-yaml))
3293 (native-inputs
3294 (list r-knitr))
3295 (home-page "https://bioconductor.org/packages/AnnotationHub")
3296 (synopsis "Client to access AnnotationHub resources")
3297 (description
3298 "This package provides a client for the Bioconductor AnnotationHub web
3299 resource. The AnnotationHub web resource provides a central location where
3300 genomic files (e.g. VCF, bed, wig) and other resources from standard
3301 locations (e.g. UCSC, Ensembl) can be discovered. The resource includes
3302 metadata about each resource, e.g., a textual description, tags, and date of
3303 modification. The client creates and manages a local cache of files retrieved
3304 by the user, helping with quick and reproducible access.")
3305 (license license:artistic2.0)))
3306
3307 (define-public r-aroma-light
3308 (package
3309 (name "r-aroma-light")
3310 (version "3.26.0")
3311 (source
3312 (origin
3313 (method url-fetch)
3314 (uri (bioconductor-uri "aroma.light" version))
3315 (sha256
3316 (base32
3317 "1240v9wvsf205g998ms19hncki8g6shidg09dy5np9pqpiix4vys"))))
3318 (properties `((upstream-name . "aroma.light")))
3319 (build-system r-build-system)
3320 (propagated-inputs
3321 (list r-matrixstats r-r-methodss3 r-r-oo r-r-utils))
3322 (home-page "https://github.com/HenrikBengtsson/aroma.light")
3323 (synopsis "Methods for normalization and visualization of microarray data")
3324 (description
3325 "This package provides methods for microarray analysis that take basic
3326 data types such as matrices and lists of vectors. These methods can be used
3327 standalone, be utilized in other packages, or be wrapped up in higher-level
3328 classes.")
3329 (license license:gpl2+)))
3330
3331 (define-public r-bamsignals
3332 (package
3333 (name "r-bamsignals")
3334 (version "1.28.0")
3335 (source
3336 (origin
3337 (method url-fetch)
3338 (uri (bioconductor-uri "bamsignals" version))
3339 (sha256
3340 (base32
3341 "0ywbxq829hclhr5bb6p77rspxvfs580zlwd2f5kr3an6rdgyx9ky"))))
3342 (build-system r-build-system)
3343 (propagated-inputs
3344 (list r-biocgenerics
3345 r-genomicranges
3346 r-iranges
3347 r-rcpp
3348 r-rhtslib
3349 r-zlibbioc))
3350 (native-inputs
3351 (list r-knitr))
3352 (home-page "https://bioconductor.org/packages/bamsignals")
3353 (synopsis "Extract read count signals from bam files")
3354 (description
3355 "This package efficiently obtains count vectors from indexed bam
3356 files. It counts the number of nucleotide sequence reads in given genomic
3357 ranges and it computes reads profiles and coverage profiles. It also handles
3358 paired-end data.")
3359 (license license:gpl2+)))
3360
3361 (define-public r-biobase
3362 (package
3363 (name "r-biobase")
3364 (version "2.56.0")
3365 (source (origin
3366 (method url-fetch)
3367 (uri (bioconductor-uri "Biobase" version))
3368 (sha256
3369 (base32
3370 "1mnxky78an079p60427cjvk4fzilp0xzy6b85fq274qvdcrz8jbv"))))
3371 (properties
3372 `((upstream-name . "Biobase")))
3373 (build-system r-build-system)
3374 (propagated-inputs
3375 (list r-biocgenerics))
3376 (home-page "https://bioconductor.org/packages/Biobase")
3377 (synopsis "Base functions for Bioconductor")
3378 (description
3379 "This package provides functions that are needed by many other packages
3380 on Bioconductor or which replace R functions.")
3381 (license license:artistic2.0)))
3382
3383 (define-public r-biomart
3384 (package
3385 (name "r-biomart")
3386 (version "2.52.0")
3387 (source (origin
3388 (method url-fetch)
3389 (uri (bioconductor-uri "biomaRt" version))
3390 (sha256
3391 (base32
3392 "0yn3kanyrplc89a900xiz33nw1v23mkljvd5isizgs8gzvwzf8xg"))))
3393 (properties
3394 `((upstream-name . "biomaRt")))
3395 (build-system r-build-system)
3396 (propagated-inputs
3397 (list r-annotationdbi
3398 r-biocfilecache
3399 r-digest
3400 r-httr
3401 r-progress
3402 r-rappdirs
3403 r-stringr
3404 r-xml
3405 r-xml2))
3406 (native-inputs
3407 (list r-knitr))
3408 (home-page "https://bioconductor.org/packages/biomaRt")
3409 (synopsis "Interface to BioMart databases")
3410 (description
3411 "biomaRt provides an interface to a growing collection of databases
3412 implementing the @url{BioMart software suite, http://www.biomart.org}. The
3413 package enables retrieval of large amounts of data in a uniform way without
3414 the need to know the underlying database schemas or write complex SQL queries.
3415 Examples of BioMart databases are Ensembl, COSMIC, Uniprot, HGNC, Gramene,
3416 Wormbase and dbSNP mapped to Ensembl. These major databases give biomaRt
3417 users direct access to a diverse set of data and enable a wide range of
3418 powerful online queries from gene annotation to database mining.")
3419 (license license:artistic2.0)))
3420
3421 ;; This is a CRAN package, but it depends on a Bioconductor package:
3422 ;; r-biomart
3423 (define-public r-biomartr
3424 (package
3425 (name "r-biomartr")
3426 (version "1.0.2")
3427 (source (origin
3428 (method url-fetch)
3429 (uri (cran-uri "biomartr" version))
3430 (sha256
3431 (base32
3432 "0hr7wks88lbfcqzjzm4x265dk4lpmc3i2ndp7xcrx8ssj76wrmkz"))))
3433 (properties `((upstream-name . "biomartr")))
3434 (build-system r-build-system)
3435 (propagated-inputs
3436 (list r-biomart
3437 r-biostrings
3438 r-curl
3439 r-data-table
3440 r-downloader
3441 r-dplyr
3442 r-fs
3443 r-httr
3444 r-jsonlite
3445 r-philentropy
3446 r-purrr
3447 r-r-utils
3448 r-rcurl
3449 r-readr
3450 r-stringr
3451 r-tibble
3452 r-withr
3453 r-xml))
3454 (native-inputs (list r-knitr))
3455 (home-page "https://docs.ropensci.org/biomartr/")
3456 (synopsis "Genomic data retrieval")
3457 (description
3458 "Perform large scale genomic data retrieval and functional annotation
3459 retrieval. This package aims to provide users with a standardized way to
3460 automate genome, proteome, RNA, coding sequence (CDS), GFF, and metagenome
3461 retrieval from NCBI RefSeq, NCBI Genbank, ENSEMBL, and UniProt databases.
3462 Furthermore, an interface to the BioMart database allows users to retrieve
3463 functional annotation for genomic loci. In addition, users can download
3464 entire databases such as NCBI RefSeq, NCBI nr, NCBI nt, NCBI Genbank, etc with
3465 only one command.")
3466 (license license:gpl2)))
3467
3468 (define-public r-biocparallel
3469 (package
3470 (name "r-biocparallel")
3471 (version "1.30.3")
3472 (source (origin
3473 (method url-fetch)
3474 (uri (bioconductor-uri "BiocParallel" version))
3475 (sha256
3476 (base32
3477 "1rs3wmasl9mx7f399iclvm0bnvggvjj2a88zbi294r5m8wxqlc92"))))
3478 (properties
3479 `((upstream-name . "BiocParallel")))
3480 (build-system r-build-system)
3481 (arguments
3482 `(#:phases
3483 (modify-phases %standard-phases
3484 (add-after 'unpack 'make-reproducible
3485 (lambda _
3486 ;; Remove generated documentation.
3487 (for-each delete-file
3488 '("inst/doc/BiocParallel_BatchtoolsParam.pdf"
3489 "inst/doc/Introduction_To_BiocParallel.pdf"
3490 "inst/doc/Errors_Logs_And_Debugging.pdf"
3491 "inst/doc/BiocParallel_BatchtoolsParam.R"
3492 "inst/doc/Introduction_To_BiocParallel.R"
3493 "inst/doc/Errors_Logs_And_Debugging.R"))
3494
3495 ;; Remove time-dependent macro
3496 (substitute* '("inst/doc/BiocParallel_BatchtoolsParam.Rnw"
3497 "inst/doc/Introduction_To_BiocParallel.Rnw"
3498 "inst/doc/Errors_Logs_And_Debugging.Rnw"
3499 "vignettes/BiocParallel_BatchtoolsParam.Rnw"
3500 "vignettes/Introduction_To_BiocParallel.Rnw"
3501 "vignettes/Errors_Logs_And_Debugging.Rnw")
3502 (("\\today") "later"))
3503
3504 ;; Initialize the random number generator seed when building.
3505 (substitute* "R/rng.R"
3506 (("\"L'Ecuyer-CMRG\"\\)" m)
3507 (string-append
3508 m "; if (!is.na(Sys.getenv(\"SOURCE_DATE_EPOCH\"))) {set.seed(100)}\n"))))))))
3509 (propagated-inputs
3510 (list r-bh r-codetools r-futile-logger r-snow))
3511 (native-inputs
3512 (list r-knitr))
3513 (home-page "https://bioconductor.org/packages/BiocParallel")
3514 (synopsis "Bioconductor facilities for parallel evaluation")
3515 (description
3516 "This package provides modified versions and novel implementation of
3517 functions for parallel evaluation, tailored to use with Bioconductor
3518 objects.")
3519 (license (list license:gpl2+ license:gpl3+))))
3520
3521 (define-public r-biostrings
3522 (package
3523 (name "r-biostrings")
3524 (version "2.64.0")
3525 (source (origin
3526 (method url-fetch)
3527 (uri (bioconductor-uri "Biostrings" version))
3528 (sha256
3529 (base32
3530 "1sz52hz89l9w2y2bvyis7kczslk1xnskls9l2bn1s3dhnjzdzhg8"))))
3531 (properties
3532 `((upstream-name . "Biostrings")))
3533 (build-system r-build-system)
3534 (propagated-inputs
3535 (list r-biocgenerics
3536 r-crayon
3537 r-genomeinfodb
3538 r-iranges
3539 r-s4vectors
3540 r-xvector))
3541 (home-page "https://bioconductor.org/packages/Biostrings")
3542 (synopsis "String objects and algorithms for biological sequences")
3543 (description
3544 "This package provides memory efficient string containers, string
3545 matching algorithms, and other utilities, for fast manipulation of large
3546 biological sequences or sets of sequences.")
3547 (license license:artistic2.0)))
3548
3549 (define-public r-biovizbase
3550 (package
3551 (name "r-biovizbase")
3552 (version "1.44.0")
3553 (source
3554 (origin
3555 (method url-fetch)
3556 (uri (bioconductor-uri "biovizBase" version))
3557 (sha256
3558 (base32
3559 "1ffzf7yvl47l8v8a50m8g9q33hgwvxg4fcm8ld2yy8hd2zl86zyd"))))
3560 (properties `((upstream-name . "biovizBase")))
3561 (build-system r-build-system)
3562 (propagated-inputs
3563 (list r-annotationdbi
3564 r-annotationfilter
3565 r-biocgenerics
3566 r-biostrings
3567 r-dichromat
3568 r-ensembldb
3569 r-genomeinfodb
3570 r-genomicalignments
3571 r-genomicfeatures
3572 r-genomicranges
3573 r-hmisc
3574 r-iranges
3575 r-rcolorbrewer
3576 r-rlang
3577 r-rsamtools
3578 r-s4vectors
3579 r-scales
3580 r-summarizedexperiment
3581 r-variantannotation))
3582 (home-page "https://bioconductor.org/packages/biovizBase")
3583 (synopsis "Basic graphic utilities for visualization of genomic data")
3584 (description
3585 "The biovizBase package is designed to provide a set of utilities, color
3586 schemes and conventions for genomic data. It serves as the base for various
3587 high-level packages for biological data visualization. This saves development
3588 effort and encourages consistency.")
3589 (license license:artistic2.0)))
3590
3591 (define-public r-bsgenome
3592 (package
3593 (name "r-bsgenome")
3594 (version "1.64.0")
3595 (source (origin
3596 (method url-fetch)
3597 (uri (bioconductor-uri "BSgenome" version))
3598 (sha256
3599 (base32
3600 "17gqrmaf6xxghgrzcansl9gfw3ghkrqp87swlnwgyghqvflr5qxc"))))
3601 (properties
3602 `((upstream-name . "BSgenome")))
3603 (build-system r-build-system)
3604 (propagated-inputs
3605 (list r-biocgenerics
3606 r-biostrings
3607 r-genomeinfodb
3608 r-genomicranges
3609 r-iranges
3610 r-matrixstats
3611 r-rsamtools
3612 r-rtracklayer
3613 r-s4vectors
3614 r-xvector))
3615 (home-page "https://bioconductor.org/packages/BSgenome")
3616 (synopsis "Infrastructure for Biostrings-based genome data packages")
3617 (description
3618 "This package provides infrastructure shared by all Biostrings-based
3619 genome data packages and support for efficient SNP representation.")
3620 (license license:artistic2.0)))
3621
3622 (define-public r-category
3623 (package
3624 (name "r-category")
3625 (version "2.62.0")
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (bioconductor-uri "Category" version))
3630 (sha256
3631 (base32
3632 "07js03cfdd6gzbzw14iavlqxynfcqszh988v6k1a3h074wxiivqd"))))
3633 (properties `((upstream-name . "Category")))
3634 (build-system r-build-system)
3635 (propagated-inputs
3636 (list r-annotate
3637 r-annotationdbi
3638 r-biobase
3639 r-biocgenerics
3640 r-genefilter
3641 r-graph
3642 r-gseabase
3643 r-matrix
3644 r-rbgl
3645 r-dbi))
3646 (home-page "https://bioconductor.org/packages/Category")
3647 (synopsis "Category analysis")
3648 (description
3649 "This package provides a collection of tools for performing category
3650 analysis.")
3651 (license license:artistic2.0)))
3652
3653 (define-public r-chipseeker
3654 (package
3655 (name "r-chipseeker")
3656 (version "1.32.0")
3657 (source (origin
3658 (method url-fetch)
3659 (uri (bioconductor-uri "ChIPseeker" version))
3660 (sha256
3661 (base32
3662 "001f85nk4myk9vgs05inlj2dfby4802p1iyzkfqg332yk52gsbl7"))))
3663 (build-system r-build-system)
3664 (native-inputs
3665 (list r-knitr))
3666 (propagated-inputs
3667 (list r-annotationdbi
3668 r-biocgenerics
3669 r-boot
3670 r-enrichplot
3671 r-iranges
3672 r-genomeinfodb
3673 r-genomicranges
3674 r-genomicfeatures
3675 r-ggplot2
3676 r-gplots
3677 r-gtools
3678 r-dplyr
3679 r-plotrix
3680 r-dplyr
3681 r-magrittr
3682 r-rcolorbrewer
3683 r-rtracklayer
3684 r-s4vectors
3685 r-txdb-hsapiens-ucsc-hg19-knowngene))
3686 (home-page "https://www.bioconductor.org/packages/ChIPseeker/")
3687 (synopsis "ChIPseeker for ChIP peak annotation, comparison, and visualization")
3688 (description "This package implements functions to retrieve the nearest
3689 genes around the peak, annotate genomic region of the peak, statstical methods
3690 for estimate the significance of overlap among ChIP peak data sets, and
3691 incorporate GEO database for user to compare the own dataset with those
3692 deposited in database. The comparison can be used to infer cooperative
3693 regulation and thus can be used to generate hypotheses. Several visualization
3694 functions are implemented to summarize the coverage of the peak experiment,
3695 average profile and heatmap of peaks binding to TSS regions, genomic
3696 annotation, distance to TSS, and overlap of peaks or genes.")
3697 (license license:artistic2.0)))
3698
3699 (define-public r-chipseq
3700 (package
3701 (name "r-chipseq")
3702 (version "1.46.0")
3703 (source
3704 (origin
3705 (method url-fetch)
3706 (uri (bioconductor-uri "chipseq" version))
3707 (sha256
3708 (base32
3709 "1vh0hvgnw7ykj401v1q807sl14s4nixp1d8xbm41n01q6w8x834i"))))
3710 (build-system r-build-system)
3711 (propagated-inputs
3712 (list r-biocgenerics
3713 r-genomicranges
3714 r-iranges
3715 r-lattice
3716 r-s4vectors
3717 r-shortread))
3718 (home-page "https://bioconductor.org/packages/chipseq")
3719 (synopsis "Package for analyzing ChIPseq data")
3720 (description
3721 "This package provides tools for processing short read data from ChIPseq
3722 experiments.")
3723 (license license:artistic2.0)))
3724
3725 (define-public r-complexheatmap
3726 (package
3727 (name "r-complexheatmap")
3728 (version "2.12.0")
3729 (source
3730 (origin
3731 (method url-fetch)
3732 (uri (bioconductor-uri "ComplexHeatmap" version))
3733 (sha256
3734 (base32
3735 "15b49vlkl89prcw70mlw066z0gxhs26x8dpfn6qr3gz7hihygs65"))))
3736 (properties
3737 `((upstream-name . "ComplexHeatmap")))
3738 (build-system r-build-system)
3739 (propagated-inputs
3740 (list r-circlize
3741 r-clue
3742 r-codetools
3743 r-colorspace
3744 r-digest
3745 r-doparallel
3746 r-foreach
3747 r-getoptlong
3748 r-globaloptions
3749 r-iranges
3750 r-matrixstats
3751 r-png
3752 r-rcolorbrewer))
3753 (native-inputs
3754 (list r-knitr))
3755 (home-page
3756 "https://github.com/jokergoo/ComplexHeatmap")
3757 (synopsis "Making Complex Heatmaps")
3758 (description
3759 "Complex heatmaps are efficient to visualize associations between
3760 different sources of data sets and reveal potential structures. This package
3761 provides a highly flexible way to arrange multiple heatmaps and supports
3762 self-defined annotation graphics.")
3763 (license license:gpl2+)))
3764
3765 (define-public r-copywriter
3766 (package
3767 (name "r-copywriter")
3768 (version "2.28.0")
3769 (source
3770 (origin
3771 (method url-fetch)
3772 (uri (bioconductor-uri "CopywriteR" version))
3773 (sha256
3774 (base32
3775 "1k11kvam96hpg71hz2n9cfzizmb7d1bmq5zfvm34s7fn09is60xb"))))
3776 (properties `((upstream-name . "CopywriteR")))
3777 (build-system r-build-system)
3778 (propagated-inputs
3779 (list r-biocparallel
3780 r-chipseq
3781 r-copyhelper
3782 r-data-table
3783 r-dnacopy
3784 r-futile-logger
3785 r-genomeinfodb
3786 r-genomicalignments
3787 r-genomicranges
3788 r-gtools
3789 r-iranges
3790 r-matrixstats
3791 r-rsamtools
3792 r-s4vectors))
3793 (home-page "https://github.com/PeeperLab/CopywriteR")
3794 (synopsis "Copy number information from targeted sequencing")
3795 (description
3796 "CopywriteR extracts DNA copy number information from targeted sequencing
3797 by utilizing off-target reads. It allows for extracting uniformly distributed
3798 copy number information, can be used without reference, and can be applied to
3799 sequencing data obtained from various techniques including chromatin
3800 immunoprecipitation and target enrichment on small gene panels. Thereby,
3801 CopywriteR constitutes a widely applicable alternative to available copy
3802 number detection tools.")
3803 (license license:gpl2)))
3804
3805 (define-public r-deseq
3806 (package
3807 (name "r-deseq")
3808 (version "1.39.0")
3809 (source
3810 (origin
3811 (method url-fetch)
3812 (uri (bioconductor-uri "DESeq" version))
3813 (sha256
3814 (base32
3815 "047hph5aqmjnz1aqprziw0smdn5lf96hmwpnvqrxv1j2yfvcf3h1"))))
3816 (properties `((upstream-name . "DESeq")))
3817 (build-system r-build-system)
3818 (propagated-inputs
3819 (list r-biobase
3820 r-biocgenerics
3821 r-genefilter
3822 r-geneplotter
3823 r-lattice
3824 r-locfit
3825 r-mass
3826 r-rcolorbrewer))
3827 (home-page "https://www-huber.embl.de/users/anders/DESeq/")
3828 (synopsis "Differential gene expression analysis")
3829 (description
3830 "This package provides tools for estimating variance-mean dependence in
3831 count data from high-throughput genetic sequencing assays and for testing for
3832 differential expression based on a model using the negative binomial
3833 distribution.")
3834 (license license:gpl3+)))
3835
3836 (define-public r-deseq2
3837 (package
3838 (name "r-deseq2")
3839 (version "1.36.0")
3840 (source
3841 (origin
3842 (method url-fetch)
3843 (uri (bioconductor-uri "DESeq2" version))
3844 (sha256
3845 (base32
3846 "06mvb0jqn2fg96wfwspv0kzpa8xpimzaldrcy8m2d4yk76xwsdr7"))))
3847 (properties `((upstream-name . "DESeq2")))
3848 (build-system r-build-system)
3849 (propagated-inputs
3850 (list r-biobase
3851 r-biocgenerics
3852 r-biocparallel
3853 r-genefilter
3854 r-geneplotter
3855 r-genomicranges
3856 r-ggplot2
3857 r-iranges
3858 r-locfit
3859 r-rcpp
3860 r-rcpparmadillo
3861 r-s4vectors
3862 r-summarizedexperiment))
3863 (native-inputs
3864 (list r-knitr))
3865 (home-page "https://bioconductor.org/packages/DESeq2")
3866 (synopsis "Differential gene expression analysis")
3867 (description
3868 "This package provides functions to estimate variance-mean dependence in
3869 count data from high-throughput nucleotide sequencing assays and test for
3870 differential expression based on a model using the negative binomial
3871 distribution.")
3872 (license license:lgpl3+)))
3873
3874 (define-public r-dexseq
3875 (package
3876 (name "r-dexseq")
3877 (version "1.42.0")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (bioconductor-uri "DEXSeq" version))
3882 (sha256
3883 (base32
3884 "1dzx9mvm8pvcrwr88rin3flnpmzp3vq8mvspx9s8virqhv1102am"))))
3885 (properties `((upstream-name . "DEXSeq")))
3886 (build-system r-build-system)
3887 (propagated-inputs
3888 (list r-annotationdbi
3889 r-biobase
3890 r-biocgenerics
3891 r-biocparallel
3892 r-biomart
3893 r-deseq2
3894 r-genefilter
3895 r-geneplotter
3896 r-genomicranges
3897 r-hwriter
3898 r-iranges
3899 r-rcolorbrewer
3900 r-rsamtools
3901 r-s4vectors
3902 r-statmod
3903 r-stringr
3904 r-summarizedexperiment))
3905 (native-inputs
3906 (list r-knitr))
3907 (home-page "https://bioconductor.org/packages/DEXSeq")
3908 (synopsis "Inference of differential exon usage in RNA-Seq")
3909 (description
3910 "This package is focused on finding differential exon usage using RNA-seq
3911 exon counts between samples with different experimental designs. It provides
3912 functions that allows the user to make the necessary statistical tests based
3913 on a model that uses the negative binomial distribution to estimate the
3914 variance between biological replicates and generalized linear models for
3915 testing. The package also provides functions for the visualization and
3916 exploration of the results.")
3917 (license license:gpl3+)))
3918
3919 (define-public r-diffcyt
3920 (package
3921 (name "r-diffcyt")
3922 (version "1.16.0")
3923 (source
3924 (origin
3925 (method url-fetch)
3926 (uri (bioconductor-uri "diffcyt" version))
3927 (sha256
3928 (base32 "0mysylzmg24g7lm1xan4yklzqmskfgh53j6vjcz2gzakz5rq3rdb"))))
3929 (properties `((upstream-name . "diffcyt")))
3930 (build-system r-build-system)
3931 (propagated-inputs
3932 (list r-circlize
3933 r-complexheatmap
3934 r-dplyr
3935 r-edger
3936 r-flowcore
3937 r-flowsom
3938 r-limma
3939 r-lme4
3940 r-magrittr
3941 r-multcomp
3942 r-reshape2
3943 r-s4vectors
3944 r-summarizedexperiment
3945 r-tidyr))
3946 (native-inputs (list r-knitr))
3947 (home-page "https://github.com/lmweber/diffcyt")
3948 (synopsis "Differential discovery in high-dimensional cytometry")
3949 (description
3950 "This package provides statistical methods for differential discovery
3951 analyses in high-dimensional cytometry data (including flow cytometry, mass
3952 cytometry or CyTOF, and oligonucleotide-tagged cytometry), based on a
3953 combination of high-resolution clustering and empirical Bayes moderated tests
3954 adapted from transcriptomics.")
3955 (license license:expat)))
3956
3957 (define-public r-dirichletmultinomial
3958 (package
3959 (name "r-dirichletmultinomial")
3960 (version "1.38.0")
3961 (source
3962 (origin
3963 (method url-fetch)
3964 (uri (bioconductor-uri "DirichletMultinomial" version))
3965 (sha256
3966 (base32
3967 "15l0h2qz80lmrm5rva3v7lkgddn42igyxxwims57zwpwyhrk9bmx"))))
3968 (properties
3969 `((upstream-name . "DirichletMultinomial")))
3970 (build-system r-build-system)
3971 (inputs
3972 (list gsl))
3973 (propagated-inputs
3974 (list r-biocgenerics r-iranges r-s4vectors))
3975 (home-page "https://bioconductor.org/packages/DirichletMultinomial")
3976 (synopsis "Dirichlet-Multinomial mixture models for microbiome data")
3977 (description
3978 "Dirichlet-multinomial mixture models can be used to describe variability
3979 in microbial metagenomic data. This package is an interface to code
3980 originally made available by Holmes, Harris, and Quince, 2012, PLoS ONE 7(2):
3981 1-15.")
3982 (license license:lgpl3)))
3983
3984 (define-public r-dittoseq
3985 (package
3986 (name "r-dittoseq")
3987 (version "1.8.1")
3988 (source (origin
3989 (method url-fetch)
3990 (uri (bioconductor-uri "dittoSeq" version))
3991 (sha256
3992 (base32
3993 "0vi0hcyffaxp6yxsrq95bdlrhr85dvbqm9c7rg6a6blkfgwhlzb4"))))
3994 (properties `((upstream-name . "dittoSeq")))
3995 (build-system r-build-system)
3996 (propagated-inputs
3997 (list r-colorspace
3998 r-cowplot
3999 r-ggplot2
4000 r-ggrepel
4001 r-ggridges
4002 r-gridextra
4003 r-pheatmap
4004 r-reshape2
4005 r-s4vectors
4006 r-singlecellexperiment
4007 r-summarizedexperiment))
4008 (native-inputs (list r-knitr))
4009 (home-page "https://bioconductor.org/packages/dittoSeq")
4010 (synopsis "Single-cell and bulk RNA sequencing visualization")
4011 (description
4012 "This package provides a universal, user friendly, single-cell and bulk RNA
4013 sequencing visualization toolkit that allows highly customizable creation of
4014 color blindness friendly, publication-quality figures. dittoSeq accepts both
4015 SingleCellExperiment (SCE) and Seurat objects, as well as the import and
4016 usage, via conversion to an SCE, of SummarizedExperiment or DGEList bulk data.
4017 Visualizations include dimensionality reduction plots, heatmaps, scatterplots,
4018 percent composition or expression across groups, and more. Customizations
4019 range from size and title adjustments to automatic generation of annotations
4020 for heatmaps, overlay of trajectory analysis onto any dimensionality reduciton
4021 plot, hidden data overlay upon cursor hovering via ggplotly conversion, and
4022 many more. All with simple, discrete inputs. Color blindness friendliness is
4023 powered by legend adjustments (enlarged keys), and by allowing the use of
4024 shapes or letter-overlay in addition to the carefully selected
4025 code{dittoColors()}.")
4026 (license license:expat)))
4027
4028 (define-public r-edaseq
4029 (package
4030 (name "r-edaseq")
4031 (version "2.30.0")
4032 (source
4033 (origin
4034 (method url-fetch)
4035 (uri (bioconductor-uri "EDASeq" version))
4036 (sha256
4037 (base32
4038 "1qnpbmhxvqsma7ihi6yp3ad962xcanlxald84k2szh011ipxj7ws"))))
4039 (properties `((upstream-name . "EDASeq")))
4040 (build-system r-build-system)
4041 (propagated-inputs
4042 (list r-annotationdbi
4043 r-aroma-light
4044 r-biobase
4045 r-biocgenerics
4046 r-biocmanager
4047 r-biomart
4048 r-biostrings
4049 r-genomicfeatures
4050 r-genomicranges
4051 r-iranges
4052 r-rsamtools
4053 r-shortread))
4054 (native-inputs
4055 (list r-knitr))
4056 (home-page "https://github.com/drisso/EDASeq")
4057 (synopsis "Exploratory data analysis and normalization for RNA-Seq")
4058 (description
4059 "This package provides support for numerical and graphical summaries of
4060 RNA-Seq genomic read data. Provided within-lane normalization procedures to
4061 adjust for GC-content effect (or other gene-level effects) on read counts:
4062 loess robust local regression, global-scaling, and full-quantile
4063 normalization. Between-lane normalization procedures to adjust for
4064 distributional differences between lanes (e.g., sequencing depth):
4065 global-scaling and full-quantile normalization.")
4066 (license license:artistic2.0)))
4067
4068 (define-public r-edger
4069 (package
4070 (name "r-edger")
4071 (version "3.38.1")
4072 (source (origin
4073 (method url-fetch)
4074 (uri (bioconductor-uri "edgeR" version))
4075 (sha256
4076 (base32
4077 "1q933m76155gy30wgps2gdd8pxzsfhppydjqn0fhjrwj6kqz8mik"))))
4078 (properties `((upstream-name . "edgeR")))
4079 (build-system r-build-system)
4080 (propagated-inputs
4081 (list r-limma r-locfit r-rcpp r-statmod)) ;for estimateDisp
4082 (home-page "http://bioinf.wehi.edu.au/edgeR")
4083 (synopsis "EdgeR does empirical analysis of digital gene expression data")
4084 (description "This package can do differential expression analysis of
4085 RNA-seq expression profiles with biological replication. It implements a range
4086 of statistical methodology based on the negative binomial distributions,
4087 including empirical Bayes estimation, exact tests, generalized linear models
4088 and quasi-likelihood tests. It be applied to differential signal analysis of
4089 other types of genomic data that produce counts, including ChIP-seq, SAGE and
4090 CAGE.")
4091 (license license:gpl2+)))
4092
4093 (define-public r-ensembldb
4094 (package
4095 (name "r-ensembldb")
4096 (version "2.20.2")
4097 (source
4098 (origin
4099 (method url-fetch)
4100 (uri (bioconductor-uri "ensembldb" version))
4101 (sha256
4102 (base32
4103 "12n21dcimdhgyjzk33m6xbv0m9ihgyzcf66vr1jr5ycv3rq2s7xc"))))
4104 (build-system r-build-system)
4105 (propagated-inputs
4106 (list r-annotationdbi
4107 r-annotationfilter
4108 r-biobase
4109 r-biocgenerics
4110 r-biostrings
4111 r-curl
4112 r-dbi
4113 r-genomeinfodb
4114 r-genomicfeatures
4115 r-genomicranges
4116 r-iranges
4117 r-protgenerics
4118 r-rsamtools
4119 r-rsqlite
4120 r-rtracklayer
4121 r-s4vectors))
4122 (native-inputs
4123 (list r-knitr))
4124 (home-page "https://github.com/jotsetung/ensembldb")
4125 (synopsis "Utilities to create and use Ensembl-based annotation databases")
4126 (description
4127 "The package provides functions to create and use transcript-centric
4128 annotation databases/packages. The annotation for the databases are directly
4129 fetched from Ensembl using their Perl API. The functionality and data is
4130 similar to that of the TxDb packages from the @code{GenomicFeatures} package,
4131 but, in addition to retrieve all gene/transcript models and annotations from
4132 the database, the @code{ensembldb} package also provides a filter framework
4133 allowing to retrieve annotations for specific entries like genes encoded on a
4134 chromosome region or transcript models of lincRNA genes.")
4135 ;; No version specified
4136 (license license:lgpl3+)))
4137
4138 (define-public r-fastseg
4139 (package
4140 (name "r-fastseg")
4141 (version "1.42.0")
4142 (source
4143 (origin
4144 (method url-fetch)
4145 (uri (bioconductor-uri "fastseg" version))
4146 (sha256
4147 (base32
4148 "1cr1b1jbgp1z1zpf71kl7mljbm2jpi6b97bf3bll3gnagfm489hy"))))
4149 (build-system r-build-system)
4150 (propagated-inputs
4151 (list r-biobase r-biocgenerics r-genomicranges r-iranges
4152 r-s4vectors))
4153 (home-page "https://www.bioinf.jku.at/software/fastseg/index.html")
4154 (synopsis "Fast segmentation algorithm for genetic sequencing data")
4155 (description
4156 "Fastseg implements a very fast and efficient segmentation algorithm.
4157 It can segment data from DNA microarrays and data from next generation
4158 sequencing for example to detect copy number segments. Further it can segment
4159 data from RNA microarrays like tiling arrays to identify transcripts. Most
4160 generally, it can segment data given as a matrix or as a vector. Various data
4161 formats can be used as input to fastseg like expression set objects for
4162 microarrays or GRanges for sequencing data.")
4163 (license license:lgpl2.0+)))
4164
4165 (define-public r-gage
4166 (package
4167 (name "r-gage")
4168 (version "2.46.0")
4169 (source
4170 (origin
4171 (method url-fetch)
4172 (uri (bioconductor-uri "gage" version))
4173 (sha256
4174 (base32
4175 "03hx188h98qrbpjlf8v9sg2vqyfv49rp4c18ir11pg6hwqqrxh7b"))))
4176 (build-system r-build-system)
4177 (propagated-inputs
4178 (list r-annotationdbi r-go-db r-graph r-keggrest))
4179 (home-page (string-append "https://bmcbioinformatics.biomedcentral.com/"
4180 "articles/10.1186/1471-2105-10-161"))
4181 (synopsis "Generally applicable gene-set enrichment for pathway analysis")
4182 (description
4183 "GAGE is a published method for gene set (enrichment or GSEA) or pathway
4184 analysis. GAGE is generally applicable independent of microarray or RNA-Seq
4185 data attributes including sample sizes, experimental designs, assay platforms,
4186 and other types of heterogeneity. The gage package provides functions for
4187 basic GAGE analysis, result processing and presentation. In addition, it
4188 provides demo microarray data and commonly used gene set data based on KEGG
4189 pathways and GO terms. These functions and data are also useful for gene set
4190 analysis using other methods.")
4191 (license license:gpl2+)))
4192
4193 (define-public r-genefilter
4194 (package
4195 (name "r-genefilter")
4196 (version "1.78.0")
4197 (source
4198 (origin
4199 (method url-fetch)
4200 (uri (bioconductor-uri "genefilter" version))
4201 (sha256
4202 (base32
4203 "1lp3alnljhsil8zylf8rvf8ik4wmsyciy3ij4rr9l4191dkkp4aq"))))
4204 (build-system r-build-system)
4205 (native-inputs
4206 (list gfortran r-knitr))
4207 (propagated-inputs
4208 (list r-annotate r-annotationdbi r-biobase r-biocgenerics
4209 r-survival))
4210 (home-page "https://bioconductor.org/packages/genefilter")
4211 (synopsis "Filter genes from high-throughput experiments")
4212 (description
4213 "This package provides basic functions for filtering genes from
4214 high-throughput sequencing experiments.")
4215 (license license:artistic2.0)))
4216
4217 (define-public r-geneoverlap
4218 (package
4219 (name "r-geneoverlap")
4220 (version "1.32.0")
4221 (source (origin
4222 (method url-fetch)
4223 (uri (bioconductor-uri "GeneOverlap" version))
4224 (sha256
4225 (base32
4226 "0nqwa3x9q1hl9nm06hqzzrn00rirc9kj6s320csjlf7x6rcidr93"))))
4227 (build-system r-build-system)
4228 (propagated-inputs
4229 (list r-rcolorbrewer r-gplots))
4230 (home-page "https://www.bioconductor.org/packages/GeneOverlap/")
4231 (synopsis "Test and visualize gene overlaps")
4232 (description "This package can be used to test two sets of gene lists
4233 and visualize the results.")
4234 (license license:gpl3)))
4235
4236 (define-public r-genomation
4237 (package
4238 (name "r-genomation")
4239 (version "1.28.0")
4240 (source (origin
4241 (method url-fetch)
4242 (uri (bioconductor-uri "genomation" version))
4243 (sha256
4244 (base32
4245 "0rvay7gs4g2wi6h42kln8xwy9b05axj1x8mkfayl6pnnlva6xj79"))))
4246 (build-system r-build-system)
4247 (propagated-inputs
4248 (list r-biostrings
4249 r-bsgenome
4250 r-data-table
4251 r-genomeinfodb
4252 r-genomicalignments
4253 r-genomicranges
4254 r-ggplot2
4255 r-gridbase
4256 r-impute
4257 r-iranges
4258 r-matrixstats
4259 r-plotrix
4260 r-plyr
4261 r-rcpp
4262 r-readr
4263 r-reshape2
4264 r-rsamtools
4265 r-rtracklayer
4266 r-s4vectors
4267 r-seqpattern))
4268 (native-inputs
4269 (list r-knitr))
4270 (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
4271 (synopsis "Summary, annotation and visualization of genomic data")
4272 (description
4273 "This package provides a package for summary and annotation of genomic
4274 intervals. Users can visualize and quantify genomic intervals over
4275 pre-defined functional regions, such as promoters, exons, introns, etc. The
4276 genomic intervals represent regions with a defined chromosome position, which
4277 may be associated with a score, such as aligned reads from HT-seq experiments,
4278 TF binding sites, methylation scores, etc. The package can use any tabular
4279 genomic feature data as long as it has minimal information on the locations of
4280 genomic intervals. In addition, it can use BAM or BigWig files as input.")
4281 (license license:artistic2.0)))
4282
4283 (define-public r-genomeinfodb
4284 (package
4285 (name "r-genomeinfodb")
4286 (version "1.32.2")
4287 (source (origin
4288 (method url-fetch)
4289 (uri (bioconductor-uri "GenomeInfoDb" version))
4290 (sha256
4291 (base32
4292 "1n37bwb2fqmdgqbn19rgsd2qn8vbdhv6khdwjr7v12bwabcbx9xh"))))
4293 (properties
4294 `((upstream-name . "GenomeInfoDb")))
4295 (build-system r-build-system)
4296 (propagated-inputs
4297 (list r-biocgenerics r-genomeinfodbdata r-iranges r-rcurl
4298 r-s4vectors))
4299 (native-inputs
4300 (list r-knitr))
4301 (home-page "https://bioconductor.org/packages/GenomeInfoDb")
4302 (synopsis "Utilities for manipulating chromosome identifiers")
4303 (description
4304 "This package contains data and functions that define and allow
4305 translation between different chromosome sequence naming conventions (e.g.,
4306 \"chr1\" versus \"1\"), including a function that attempts to place sequence
4307 names in their natural, rather than lexicographic, order.")
4308 (license license:artistic2.0)))
4309
4310 (define-public r-genomicalignments
4311 (package
4312 (name "r-genomicalignments")
4313 (version "1.32.0")
4314 (source (origin
4315 (method url-fetch)
4316 (uri (bioconductor-uri "GenomicAlignments" version))
4317 (sha256
4318 (base32
4319 "1ifmlc0488f5yzcf4p92dmdc7psxl5c0aa7qpxjk0a07gf7lldbi"))))
4320 (properties
4321 `((upstream-name . "GenomicAlignments")))
4322 (build-system r-build-system)
4323 (propagated-inputs
4324 (list r-biocgenerics
4325 r-biocparallel
4326 r-biostrings
4327 r-genomeinfodb
4328 r-genomicranges
4329 r-iranges
4330 r-rsamtools
4331 r-s4vectors
4332 r-summarizedexperiment))
4333 (home-page "https://bioconductor.org/packages/GenomicAlignments")
4334 (synopsis "Representation and manipulation of short genomic alignments")
4335 (description
4336 "This package provides efficient containers for storing and manipulating
4337 short genomic alignments (typically obtained by aligning short reads to a
4338 reference genome). This includes read counting, computing the coverage,
4339 junction detection, and working with the nucleotide content of the
4340 alignments.")
4341 (license license:artistic2.0)))
4342
4343 (define-public r-genomicfeatures
4344 (package
4345 (name "r-genomicfeatures")
4346 (version "1.48.3")
4347 (source (origin
4348 (method url-fetch)
4349 (uri (bioconductor-uri "GenomicFeatures" version))
4350 (sha256
4351 (base32
4352 "0f14p1ma2y8l60p9sxmh5j0axws9by1cznczb2jxipphpb4slpl1"))))
4353 (properties
4354 `((upstream-name . "GenomicFeatures")))
4355 (build-system r-build-system)
4356 (propagated-inputs
4357 (list r-annotationdbi
4358 r-biobase
4359 r-biocgenerics
4360 r-biocio
4361 r-biomart
4362 r-biostrings
4363 r-dbi
4364 r-genomeinfodb
4365 r-genomicranges
4366 r-iranges
4367 r-rcurl
4368 r-rsqlite
4369 r-rtracklayer
4370 r-s4vectors
4371 r-xvector))
4372 (native-inputs
4373 (list r-knitr))
4374 (home-page "https://bioconductor.org/packages/GenomicFeatures")
4375 (synopsis "Tools for working with transcript centric annotations")
4376 (description
4377 "This package provides a set of tools and methods for making and
4378 manipulating transcript centric annotations. With these tools the user can
4379 easily download the genomic locations of the transcripts, exons and cds of a
4380 given organism, from either the UCSC Genome Browser or a BioMart
4381 database (more sources will be supported in the future). This information is
4382 then stored in a local database that keeps track of the relationship between
4383 transcripts, exons, cds and genes. Flexible methods are provided for
4384 extracting the desired features in a convenient format.")
4385 (license license:artistic2.0)))
4386
4387 (define-public r-genomicfiles
4388 (package
4389 (name "r-genomicfiles")
4390 (version "1.32.1")
4391 (source
4392 (origin
4393 (method url-fetch)
4394 (uri (bioconductor-uri "GenomicFiles" version))
4395 (sha256
4396 (base32
4397 "06ycfna26klx27vvsnlpgv46bymfrc8z0zkpag7nm4m23153ivkz"))))
4398 (properties `((upstream-name . "GenomicFiles")))
4399 (build-system r-build-system)
4400 (propagated-inputs
4401 (list r-biocgenerics
4402 r-biocparallel
4403 r-genomeinfodb
4404 r-genomicalignments
4405 r-genomicranges
4406 r-iranges
4407 r-matrixgenerics
4408 r-rsamtools
4409 r-rtracklayer
4410 r-s4vectors
4411 r-summarizedexperiment
4412 r-variantannotation))
4413 (home-page "https://bioconductor.org/packages/GenomicFiles")
4414 (synopsis "Distributed computing by file or by range")
4415 (description
4416 "This package provides infrastructure for parallel computations
4417 distributed by file or by range. User defined mapper and reducer functions
4418 provide added flexibility for data combination and manipulation.")
4419 (license license:artistic2.0)))
4420
4421 (define-public r-genomicranges
4422 (package
4423 (name "r-genomicranges")
4424 (version "1.48.0")
4425 (source (origin
4426 (method url-fetch)
4427 (uri (bioconductor-uri "GenomicRanges" version))
4428 (sha256
4429 (base32
4430 "088rv1aclwq265pdg4hmks73nl0125vk0vigyi44n3djkrdx48yn"))))
4431 (properties
4432 `((upstream-name . "GenomicRanges")))
4433 (build-system r-build-system)
4434 (propagated-inputs
4435 (list r-biocgenerics r-genomeinfodb r-iranges r-s4vectors r-xvector))
4436 (native-inputs
4437 (list r-knitr))
4438 (home-page "https://bioconductor.org/packages/GenomicRanges")
4439 (synopsis "Representation and manipulation of genomic intervals")
4440 (description
4441 "This package provides tools to efficiently represent and manipulate
4442 genomic annotations and alignments is playing a central role when it comes to
4443 analyzing high-throughput sequencing data (a.k.a. NGS data). The
4444 GenomicRanges package defines general purpose containers for storing and
4445 manipulating genomic intervals and variables defined along a genome.")
4446 (license license:artistic2.0)))
4447
4448 (define-public r-gostats
4449 (package
4450 (name "r-gostats")
4451 (version "2.62.0")
4452 (source
4453 (origin
4454 (method url-fetch)
4455 (uri (bioconductor-uri "GOstats" version))
4456 (sha256
4457 (base32
4458 "121ly9vifarg8y7mc468571bbs0xv4sx6sflm5zcdqf0p83yvjrm"))))
4459 (properties `((upstream-name . "GOstats")))
4460 (build-system r-build-system)
4461 (propagated-inputs
4462 (list r-annotate
4463 r-annotationdbi
4464 r-annotationforge
4465 r-biobase
4466 r-category
4467 r-go-db
4468 r-graph
4469 r-rgraphviz
4470 r-rbgl))
4471 (home-page "https://bioconductor.org/packages/GOstats")
4472 (synopsis "Tools for manipulating GO and microarrays")
4473 (description
4474 "This package provides a set of tools for interacting with GO and
4475 microarray data. A variety of basic manipulation tools for graphs, hypothesis
4476 testing and other simple calculations.")
4477 (license license:artistic2.0)))
4478
4479 (define-public r-gseabase
4480 (package
4481 (name "r-gseabase")
4482 (version "1.58.0")
4483 (source
4484 (origin
4485 (method url-fetch)
4486 (uri (bioconductor-uri "GSEABase" version))
4487 (sha256
4488 (base32
4489 "1qhvgyg392fd98h2qnmfmhg7mil5hp9cy3qmkqs4x1bhpv1m978g"))))
4490 (properties `((upstream-name . "GSEABase")))
4491 (build-system r-build-system)
4492 (propagated-inputs
4493 (list r-annotate
4494 r-annotationdbi
4495 r-biobase
4496 r-biocgenerics
4497 r-graph
4498 r-xml))
4499 (native-inputs
4500 (list r-knitr))
4501 (home-page "https://bioconductor.org/packages/GSEABase")
4502 (synopsis "Gene set enrichment data structures and methods")
4503 (description
4504 "This package provides classes and methods to support @dfn{Gene Set
4505 Enrichment Analysis} (GSEA).")
4506 (license license:artistic2.0)))
4507
4508 (define-public r-hpar
4509 (package
4510 (name "r-hpar")
4511 (version "1.38.0")
4512 (source
4513 (origin
4514 (method url-fetch)
4515 (uri (bioconductor-uri "hpar" version))
4516 (sha256
4517 (base32
4518 "07c6r703d5xp7y9bqmqalxgna2qrbk1h5s0d992m7360k259mgrj"))))
4519 (build-system r-build-system)
4520 (native-inputs
4521 (list r-knitr))
4522 (home-page "https://bioconductor.org/packages/hpar/")
4523 (synopsis "Human Protein Atlas in R")
4524 (description "This package provides a simple interface to and data from
4525 the Human Protein Atlas project.")
4526 (license license:artistic2.0)))
4527
4528 (define-public r-rhtslib
4529 (package
4530 (name "r-rhtslib")
4531 (version "1.28.0")
4532 (source
4533 (origin
4534 (method url-fetch)
4535 (uri (bioconductor-uri "Rhtslib" version))
4536 (sha256
4537 (base32
4538 "07kws6afkxbmxq4w357mwwl712pdd16alvz7iqijjd2x7rjchj2f"))))
4539 (properties `((upstream-name . "Rhtslib")))
4540 (build-system r-build-system)
4541 ;; Without this a temporary directory ends up in the Rhtslib.so binary,
4542 ;; which makes R abort the build.
4543 (arguments '(#:configure-flags '("--no-staged-install")))
4544 (propagated-inputs
4545 (list curl zlib ; packages using rhtslib need to link with zlib
4546 r-zlibbioc))
4547 (native-inputs
4548 (list pkg-config r-knitr))
4549 (home-page "https://github.com/nhayden/Rhtslib")
4550 (synopsis "High-throughput sequencing library as an R package")
4551 (description
4552 "This package provides the HTSlib C library for high-throughput
4553 nucleotide sequence analysis. The package is primarily useful to developers
4554 of other R packages who wish to make use of HTSlib.")
4555 (license license:lgpl2.0+)))
4556
4557 (define-public r-impute
4558 (package
4559 (name "r-impute")
4560 (version "1.70.0")
4561 (source (origin
4562 (method url-fetch)
4563 (uri (bioconductor-uri "impute" version))
4564 (sha256
4565 (base32
4566 "11b0z7py0im6y43k55xpzz5jnvc0ram9rk3n1n4mwhvs0vhy39r2"))))
4567 (native-inputs
4568 (list gfortran))
4569 (build-system r-build-system)
4570 (home-page "https://bioconductor.org/packages/impute")
4571 (synopsis "Imputation for microarray data")
4572 (description
4573 "This package provides a function to impute missing gene expression
4574 microarray data, using nearest neighbor averaging.")
4575 (license license:gpl2+)))
4576
4577 (define-public r-interactivedisplaybase
4578 (package
4579 (name "r-interactivedisplaybase")
4580 (version "1.34.0")
4581 (source
4582 (origin
4583 (method url-fetch)
4584 (uri (bioconductor-uri "interactiveDisplayBase" version))
4585 (sha256
4586 (base32
4587 "0fdwx5ch0ch8axdkfiq7zzhhq5hwcvd6kf8fggw9nd3ah1yjwbdg"))))
4588 (properties
4589 `((upstream-name . "interactiveDisplayBase")))
4590 (build-system r-build-system)
4591 (propagated-inputs
4592 (list r-biocgenerics r-dt r-shiny))
4593 (native-inputs
4594 (list r-knitr))
4595 (home-page "https://bioconductor.org/packages/interactiveDisplayBase")
4596 (synopsis "Base package for web displays of Bioconductor objects")
4597 (description
4598 "This package contains the basic methods needed to generate interactive
4599 Shiny-based display methods for Bioconductor objects.")
4600 (license license:artistic2.0)))
4601
4602 (define-public r-keggrest
4603 (package
4604 (name "r-keggrest")
4605 (version "1.36.2")
4606 (source
4607 (origin
4608 (method url-fetch)
4609 (uri (bioconductor-uri "KEGGREST" version))
4610 (sha256
4611 (base32
4612 "1rn03w8y80prbvzahkvf8275haiymnjj1ijcgn55p3d0sb54yzgw"))))
4613 (properties `((upstream-name . "KEGGREST")))
4614 (build-system r-build-system)
4615 (propagated-inputs
4616 (list r-biostrings r-httr r-png))
4617 (native-inputs
4618 (list r-knitr))
4619 (home-page "https://bioconductor.org/packages/KEGGREST")
4620 (synopsis "Client-side REST access to KEGG")
4621 (description
4622 "This package provides a package that provides a client interface to the
4623 @dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
4624 (license license:artistic2.0)))
4625
4626 (define-public r-lfa
4627 (package
4628 (name "r-lfa")
4629 (version "1.26.0")
4630 (source
4631 (origin
4632 (method url-fetch)
4633 (uri (bioconductor-uri "lfa" version))
4634 (sha256
4635 (base32 "044866h4fnxmzb3sh9vmrd2smgsbcqgvd19dgwxisi418cad577l"))))
4636 (properties `((upstream-name . "lfa")))
4637 (build-system r-build-system)
4638 (propagated-inputs (list r-corpcor))
4639 (native-inputs (list r-knitr))
4640 (home-page "https://github.com/StoreyLab/lfa")
4641 (synopsis "Logistic Factor Analysis for categorical data")
4642 (description
4643 "@dfn{Logistic Factor Analysis} (LFA) is a method for a PCA analogue on
4644 Binomial data via estimation of latent structure in the natural parameter.")
4645 (license license:gpl3)))
4646
4647 (define-public r-limma
4648 (package
4649 (name "r-limma")
4650 (version "3.52.2")
4651 (source (origin
4652 (method url-fetch)
4653 (uri (bioconductor-uri "limma" version))
4654 (sha256
4655 (base32
4656 "0m8p8pqmf48f2zdf3qs66hmychbc58g2hfg1wyxzsv180m6xkk65"))))
4657 (build-system r-build-system)
4658 (home-page "http://bioinf.wehi.edu.au/limma")
4659 (synopsis "Package for linear models for microarray and RNA-seq data")
4660 (description "This package can be used for the analysis of gene expression
4661 studies, especially the use of linear models for analysing designed experiments
4662 and the assessment of differential expression. The analysis methods apply to
4663 different technologies, including microarrays, RNA-seq, and quantitative PCR.")
4664 (license license:gpl2+)))
4665
4666 (define-public r-methylkit
4667 (package
4668 (name "r-methylkit")
4669 (version "1.22.0")
4670 (source (origin
4671 (method url-fetch)
4672 (uri (bioconductor-uri "methylKit" version))
4673 (sha256
4674 (base32
4675 "00asjzv05avfg0rrkmfbdqd6xx8d18zi72n3b1kf9wj81z2d2a35"))))
4676 (properties `((upstream-name . "methylKit")))
4677 (build-system r-build-system)
4678 (propagated-inputs
4679 (list r-data-table
4680 r-emdbook
4681 r-fastseg
4682 r-genomeinfodb
4683 r-genomicranges
4684 r-gtools
4685 r-iranges
4686 r-kernsmooth
4687 r-limma
4688 r-mclust
4689 r-mgcv
4690 r-qvalue
4691 r-r-utils
4692 r-rcpp
4693 r-rhtslib
4694 r-rsamtools
4695 r-rtracklayer
4696 r-s4vectors
4697 r-zlibbioc))
4698 (native-inputs
4699 (list r-knitr)) ; for vignettes
4700 (home-page "https://github.com/al2na/methylKit")
4701 (synopsis
4702 "DNA methylation analysis from high-throughput bisulfite sequencing results")
4703 (description
4704 "MethylKit is an R package for DNA methylation analysis and annotation
4705 from high-throughput bisulfite sequencing. The package is designed to deal
4706 with sequencing data from @dfn{Reduced representation bisulfite
4707 sequencing} (RRBS) and its variants, but also target-capture methods and whole
4708 genome bisulfite sequencing. It also has functions to analyze base-pair
4709 resolution 5hmC data from experimental protocols such as oxBS-Seq and
4710 TAB-Seq.")
4711 (license license:artistic2.0)))
4712
4713 (define-public r-motifrg
4714 (package
4715 (name "r-motifrg")
4716 (version "1.31.0")
4717 (source
4718 (origin
4719 (method url-fetch)
4720 (uri (bioconductor-uri "motifRG" version))
4721 (sha256
4722 (base32
4723 "1ml6zyzlk8yjbnfhga2qnw8nl43rankvka0kc1yljxr2b66aqbhn"))))
4724 (properties `((upstream-name . "motifRG")))
4725 (build-system r-build-system)
4726 (propagated-inputs
4727 (list r-biostrings
4728 r-bsgenome
4729 r-bsgenome-hsapiens-ucsc-hg19
4730 r-iranges
4731 r-seqlogo
4732 r-xvector))
4733 (home-page "https://bioconductor.org/packages/motifRG")
4734 (synopsis "Discover motifs in high throughput sequencing data")
4735 (description
4736 "This package provides tools for discriminative motif discovery in high
4737 throughput genetic sequencing data sets using regression methods.")
4738 (license license:artistic2.0)))
4739
4740 (define-public r-muscat
4741 (package
4742 (name "r-muscat")
4743 (version "1.10.1")
4744 (source
4745 (origin
4746 (method url-fetch)
4747 (uri (bioconductor-uri "muscat" version))
4748 (sha256
4749 (base32
4750 "1j3zkhqgza92vdykb1yia1jjwsdqra6q9c0jk6p5p2x0778xqgfd"))))
4751 (properties `((upstream-name . "muscat")))
4752 (build-system r-build-system)
4753 (propagated-inputs
4754 (list r-biocparallel
4755 r-blme
4756 r-complexheatmap
4757 r-data-table
4758 r-deseq2
4759 r-dplyr
4760 r-edger
4761 r-ggplot2
4762 r-glmmtmb
4763 r-limma
4764 r-lme4
4765 r-lmertest
4766 r-matrix
4767 r-matrixstats
4768 r-progress
4769 r-purrr
4770 r-s4vectors
4771 r-scales
4772 r-scater
4773 r-sctransform
4774 r-scuttle
4775 r-singlecellexperiment
4776 r-summarizedexperiment
4777 r-variancepartition
4778 r-viridis))
4779 (native-inputs (list r-knitr))
4780 (home-page "https://github.com/HelenaLC/muscat")
4781 (synopsis "Multi-sample multi-group scRNA-seq data analysis tools")
4782 (description
4783 "This package @code{muscat} provides various methods and visualization tools
4784 for @dfn{DS}(differential splicing) analysis in multi-sample, multi-group,
4785 multi-(cell-)subpopulation scRNA-seq data, including cell-level mixed models and
4786 methods based on aggregated \"pseudobulk\" data, as well as a flexible simulation
4787 platform that mimics both single and multi-sample scRNA-seq data.")
4788 (license license:gpl3)))
4789
4790 (define-public r-mutationalpatterns
4791 (package
4792 (name "r-mutationalpatterns")
4793 (version "3.6.0")
4794 (source
4795 (origin
4796 (method url-fetch)
4797 (uri (bioconductor-uri "MutationalPatterns" version))
4798 (sha256
4799 (base32
4800 "113b2hrc0n47qz144xhky93jcm6qh6flzadq5y0plga5jrz0rnwg"))))
4801 (build-system r-build-system)
4802 (native-inputs
4803 (list r-knitr))
4804 (propagated-inputs
4805 (list r-biocgenerics
4806 r-biostrings
4807 r-bsgenome
4808 ;; These two packages are suggested packages
4809 r-bsgenome-hsapiens-1000genomes-hs37d5
4810 r-bsgenome-hsapiens-ucsc-hg19
4811 r-cowplot
4812 r-dplyr
4813 r-genomeinfodb
4814 r-genomicranges
4815 r-ggalluvial
4816 r-ggdendro
4817 r-ggplot2
4818 r-iranges
4819 r-magrittr
4820 r-nmf
4821 r-pracma
4822 r-purrr
4823 r-rcolorbrewer
4824 r-s4vectors
4825 r-stringr
4826 r-tibble
4827 r-tidyr
4828 r-variantannotation))
4829 (home-page "https://bioconductor.org/packages/MutationalPatterns/")
4830 (synopsis "Extract and visualize mutational patterns in genomic data")
4831 (description "This package provides an extensive toolset for the
4832 characterization and visualization of a wide range of mutational patterns
4833 in SNV base substitution data.")
4834 (license license:expat)))
4835
4836 (define-public r-msnbase
4837 (package
4838 (name "r-msnbase")
4839 (version "2.22.0")
4840 (source
4841 (origin
4842 (method url-fetch)
4843 (uri (bioconductor-uri "MSnbase" version))
4844 (sha256
4845 (base32
4846 "1xzn0k3c2wn6c6gv90hddy3c201sg927342zrw9ig2xap0r053x3"))))
4847 (properties `((upstream-name . "MSnbase")))
4848 (build-system r-build-system)
4849 (propagated-inputs
4850 (list r-affy
4851 r-biobase
4852 r-biocgenerics
4853 r-biocparallel
4854 r-digest
4855 r-ggplot2
4856 r-impute
4857 r-iranges
4858 r-lattice
4859 r-maldiquant
4860 r-mass
4861 r-mscoreutils
4862 r-mzid
4863 r-mzr
4864 r-pcamethods
4865 r-plyr
4866 r-protgenerics
4867 r-rcpp
4868 r-s4vectors
4869 r-scales
4870 r-vsn
4871 r-xml))
4872 (native-inputs
4873 (list r-knitr))
4874 (home-page "https://github.com/lgatto/MSnbase")
4875 (synopsis "Base functions and classes for MS-based proteomics")
4876 (description
4877 "This package provides basic plotting, data manipulation and processing
4878 of mass spectrometry based proteomics data.")
4879 (license license:artistic2.0)))
4880
4881 (define-public r-msnid
4882 (package
4883 (name "r-msnid")
4884 (version "1.30.0")
4885 (source
4886 (origin
4887 (method url-fetch)
4888 (uri (bioconductor-uri "MSnID" version))
4889 (sha256
4890 (base32
4891 "1yiw95p40nz0pvq7s4i0xg02r9yqmnknak00z4lkw8jij3w3rkkq"))))
4892 (properties `((upstream-name . "MSnID")))
4893 (build-system r-build-system)
4894 (arguments
4895 `(#:phases
4896 (modify-phases %standard-phases
4897 (add-after 'unpack 'set-HOME
4898 (lambda _ (setenv "HOME" "/tmp"))))))
4899 (propagated-inputs
4900 (list r-annotationdbi
4901 r-annotationhub
4902 r-biobase
4903 r-biocgenerics
4904 r-biocstyle
4905 r-biostrings
4906 r-data-table
4907 r-doparallel
4908 r-dplyr
4909 r-foreach
4910 r-ggplot2
4911 r-iterators
4912 r-msnbase
4913 r-msmstests
4914 r-mzid
4915 r-mzr
4916 r-protgenerics
4917 r-purrr
4918 r-r-cache
4919 r-rcpp
4920 r-reshape2
4921 r-rlang
4922 r-runit
4923 r-stringr
4924 r-tibble
4925 r-xtable))
4926 (home-page "https://bioconductor.org/packages/MSnID")
4927 (synopsis "Utilities for LC-MSn proteomics identifications")
4928 (description
4929 "This package extracts @dfn{tandem mass spectrometry} (MS/MS) ID data
4930 from mzIdentML (leveraging the mzID package) or text files. After collating
4931 the search results from multiple datasets it assesses their identification
4932 quality and optimize filtering criteria to achieve the maximum number of
4933 identifications while not exceeding a specified false discovery rate. It also
4934 contains a number of utilities to explore the MS/MS results and assess missed
4935 and irregular enzymatic cleavages, mass measurement accuracy, etc.")
4936 (license license:artistic2.0)))
4937
4938 (define-public r-mzid
4939 (package
4940 (name "r-mzid")
4941 (version "1.34.0")
4942 (source
4943 (origin
4944 (method url-fetch)
4945 (uri (bioconductor-uri "mzID" version))
4946 (sha256
4947 (base32
4948 "1q1aqyya9nd494s7m3rdaf3kixipdrwbj825g40kdljwrg85y961"))))
4949 (properties `((upstream-name . "mzID")))
4950 (build-system r-build-system)
4951 (propagated-inputs
4952 (list r-doparallel
4953 r-foreach
4954 r-iterators
4955 r-plyr
4956 r-protgenerics
4957 r-xml))
4958 (native-inputs
4959 (list r-knitr))
4960 (home-page "https://bioconductor.org/packages/mzID")
4961 (synopsis "Parser for mzIdentML files")
4962 (description
4963 "This package provides a parser for mzIdentML files implemented using the
4964 XML package. The parser tries to be general and able to handle all types of
4965 mzIdentML files with the drawback of having less pretty output than a vendor
4966 specific parser.")
4967 (license license:gpl2+)))
4968
4969 (define-public r-mzr
4970 (package
4971 (name "r-mzr")
4972 (version "2.30.0")
4973 (source
4974 (origin
4975 (method url-fetch)
4976 (uri (bioconductor-uri "mzR" version))
4977 (sha256
4978 (base32
4979 "1dqa03hb42kbqfg15ksijdkyf9pr54gcl3in4mzjkld5sdi8ncds"))
4980 (modules '((guix build utils)))
4981 (snippet
4982 '(delete-file-recursively "src/boost"))))
4983 (properties `((upstream-name . "mzR")))
4984 (build-system r-build-system)
4985 (arguments
4986 `(#:phases
4987 (modify-phases %standard-phases
4988 (add-after 'unpack 'use-system-boost
4989 (lambda _
4990 (substitute* "src/Makevars"
4991 (("\\./boost/libs.*") "")
4992 (("PKG_LIBS=") "PKG_LIBS=$(BOOST_LIBS) ")
4993 (("\\ARCH_OBJS=" line)
4994 (string-append line
4995 "\nBOOST_LIBS=-lboost_system -lboost_regex \
4996 -lboost_iostreams -lboost_thread -lboost_filesystem -lboost_chrono\n"))))))))
4997 (inputs
4998 (list boost ; use this instead of the bundled boost sources
4999 zlib))
5000 (propagated-inputs
5001 (list r-biobase
5002 r-biocgenerics
5003 r-ncdf4
5004 r-protgenerics
5005 r-rcpp
5006 r-rhdf5lib))
5007 (native-inputs
5008 (list r-knitr))
5009 (home-page "https://github.com/sneumann/mzR/")
5010 (synopsis "Parser for mass spectrometry data files")
5011 (description
5012 "The mzR package provides a unified API to the common file formats and
5013 parsers available for mass spectrometry data. It comes with a wrapper for the
5014 ISB random access parser for mass spectrometry mzXML, mzData and mzML files.
5015 The package contains the original code written by the ISB, and a subset of the
5016 proteowizard library for mzML and mzIdentML. The netCDF reading code has
5017 previously been used in XCMS.")
5018 (license license:artistic2.0)))
5019
5020 (define-public r-organismdbi
5021 (package
5022 (name "r-organismdbi")
5023 (version "1.38.1")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (bioconductor-uri "OrganismDbi" version))
5028 (sha256
5029 (base32
5030 "0mxnxj8x4hc21psz39mf7qwvh1fsn6qyjgl5qffk1xxmasf69619"))))
5031 (properties `((upstream-name . "OrganismDbi")))
5032 (build-system r-build-system)
5033 (propagated-inputs
5034 (list r-annotationdbi
5035 r-biobase
5036 r-biocgenerics
5037 r-biocmanager
5038 r-dbi
5039 r-genomicfeatures
5040 r-genomicranges
5041 r-graph
5042 r-iranges
5043 r-rbgl
5044 r-s4vectors))
5045 (home-page "https://bioconductor.org/packages/OrganismDbi")
5046 (synopsis "Software to enable the smooth interfacing of database packages")
5047 (description "The package enables a simple unified interface to several
5048 annotation packages each of which has its own schema by taking advantage of
5049 the fact that each of these packages implements a select methods.")
5050 (license license:artistic2.0)))
5051
5052 (define-public r-pcamethods
5053 (package
5054 (name "r-pcamethods")
5055 (version "1.88.0")
5056 (source
5057 (origin
5058 (method url-fetch)
5059 (uri (bioconductor-uri "pcaMethods" version))
5060 (sha256
5061 (base32
5062 "1087sl7y707zld7zpf3ly51gnmdp93vn90dwa5440v7qawvg2h9b"))))
5063 (properties `((upstream-name . "pcaMethods")))
5064 (build-system r-build-system)
5065 (propagated-inputs
5066 (list r-biobase r-biocgenerics r-mass r-rcpp))
5067 (home-page "https://github.com/hredestig/pcamethods")
5068 (synopsis "Collection of PCA methods")
5069 (description
5070 "This package provides Bayesian PCA, Probabilistic PCA, Nipals PCA,
5071 Inverse Non-Linear PCA and the conventional SVD PCA. A cluster based method
5072 for missing value estimation is included for comparison. BPCA, PPCA and
5073 NipalsPCA may be used to perform PCA on incomplete data as well as for
5074 accurate missing value estimation. A set of methods for printing and plotting
5075 the results is also provided. All PCA methods make use of the same data
5076 structure (pcaRes) to provide a common interface to the PCA results.")
5077 (license license:gpl3+)))
5078
5079 ;; This is a CRAN package, but it depends on a Bioconductor package:
5080 ;; r-aroma-light, r-dnacopy..
5081 (define-public r-pscbs
5082 (package
5083 (name "r-pscbs")
5084 (version "0.66.0")
5085 (source
5086 (origin
5087 (method url-fetch)
5088 (uri (cran-uri "PSCBS" version))
5089 (sha256
5090 (base32 "14rs2wywipbkia3dbzfhpnkmfgdvm2bf586lggsx63sywlv5d02q"))))
5091 (properties `((upstream-name . "PSCBS")))
5092 (build-system r-build-system)
5093 (arguments
5094 `(#:phases
5095 (modify-phases %standard-phases
5096 (add-before 'install 'change-home-dir
5097 (lambda _
5098 ;; Change from /homeless-shelter to /tmp for write permission.
5099 (setenv "HOME" "/tmp"))))))
5100 (propagated-inputs
5101 (list r-aroma-light
5102 r-dnacopy
5103 r-future
5104 r-listenv
5105 r-matrixstats
5106 r-r-cache
5107 r-r-methodss3
5108 r-r-oo
5109 r-r-utils))
5110 (native-inputs
5111 (list r-r-rsp ;used to build vignettes
5112 r-r-devices))
5113 (home-page "https://github.com/HenrikBengtsson/PSCBS")
5114 (synopsis "Analysis of parent-specific DNA copy numbers")
5115 (description
5116 "This is a package for segmentation of allele-specific DNA copy number
5117 data and detection of regions with abnormal copy number within each parental
5118 chromosome. Both tumor-normal paired and tumor-only analyses are supported.")
5119 (license license:gpl2+)))
5120
5121 (define-public r-protgenerics
5122 (package
5123 (name "r-protgenerics")
5124 (version "1.28.0")
5125 (source
5126 (origin
5127 (method url-fetch)
5128 (uri (bioconductor-uri "ProtGenerics" version))
5129 (sha256
5130 (base32
5131 "04hcgj4q8dbzp1a29rbww2bxxrg679pgys3m09p0ydkpsx76rq05"))))
5132 (properties `((upstream-name . "ProtGenerics")))
5133 (build-system r-build-system)
5134 (home-page "https://github.com/lgatto/ProtGenerics")
5135 (synopsis "S4 generic functions for proteomics infrastructure")
5136 (description
5137 "This package provides S4 generic functions needed by Bioconductor
5138 proteomics packages.")
5139 (license license:artistic2.0)))
5140
5141 (define-public r-rbgl
5142 (package
5143 (name "r-rbgl")
5144 (version "1.72.0")
5145 (source
5146 (origin
5147 (method url-fetch)
5148 (uri (bioconductor-uri "RBGL" version))
5149 (sha256
5150 (base32
5151 "0ph089vxla49sng0pdwiyh9rpk9i96cbsx5q2jn46jj4x51ijc7y"))))
5152 (properties `((upstream-name . "RBGL")))
5153 (build-system r-build-system)
5154 (propagated-inputs
5155 (list r-bh r-graph))
5156 (home-page "https://www.bioconductor.org/packages/RBGL")
5157 (synopsis "Interface to the Boost graph library")
5158 (description
5159 "This package provides a fairly extensive and comprehensive interface to
5160 the graph algorithms contained in the Boost library.")
5161 (license license:artistic2.0)))
5162
5163 (define-public r-rcas
5164 (package
5165 (name "r-rcas")
5166 (version "1.22.0")
5167 (source (origin
5168 (method url-fetch)
5169 (uri (bioconductor-uri "RCAS" version))
5170 (sha256
5171 (base32
5172 "05sj2ab7bxgf41gkmjaskhqm0198xlir1sw3f73x8rjg14rssmqf"))))
5173 (properties `((upstream-name . "RCAS")))
5174 (build-system r-build-system)
5175 (propagated-inputs
5176 (list r-biocgenerics
5177 r-biostrings
5178 r-bsgenome
5179 r-bsgenome-hsapiens-ucsc-hg19
5180 r-cowplot
5181 r-data-table
5182 r-dt
5183 r-genomation
5184 r-genomeinfodb
5185 r-genomicfeatures
5186 r-genomicranges
5187 r-ggplot2
5188 r-ggseqlogo
5189 r-gprofiler2
5190 r-iranges
5191 r-knitr
5192 r-pbapply
5193 r-pheatmap
5194 r-plotly
5195 r-plotrix
5196 r-proxy
5197 r-ranger
5198 r-rsqlite
5199 r-rtracklayer
5200 r-rmarkdown
5201 r-s4vectors
5202 pandoc))
5203 (native-inputs
5204 (list r-knitr))
5205 (synopsis "RNA-centric annotation system")
5206 (description
5207 "RCAS aims to be a standalone RNA-centric annotation system that provides
5208 intuitive reports and publication-ready graphics. This package provides the R
5209 library implementing most of the pipeline's features.")
5210 (home-page "https://github.com/BIMSBbioinfo/RCAS")
5211 (license license:artistic2.0)))
5212
5213 (define-public r-regioner
5214 (package
5215 (name "r-regioner")
5216 (version "1.28.0")
5217 (source
5218 (origin
5219 (method url-fetch)
5220 (uri (bioconductor-uri "regioneR" version))
5221 (sha256
5222 (base32
5223 "11whi2v211xiz9s7cjl14d8vavlry2fmhvx12rma25wkjmhrpa3f"))))
5224 (properties `((upstream-name . "regioneR")))
5225 (build-system r-build-system)
5226 (propagated-inputs
5227 (list r-biostrings
5228 r-bsgenome
5229 r-genomeinfodb
5230 r-genomicranges
5231 r-iranges
5232 r-memoise
5233 r-rtracklayer
5234 r-s4vectors))
5235 (native-inputs
5236 (list r-knitr))
5237 (home-page "https://bioconductor.org/packages/regioneR/")
5238 (synopsis "Association analysis of genomic regions")
5239 (description "This package offers a statistical framework based on
5240 customizable permutation tests to assess the association between genomic
5241 region sets and other genomic features.")
5242 (license license:artistic2.0)))
5243
5244 (define-public r-reportingtools
5245 (package
5246 (name "r-reportingtools")
5247 (version "2.36.0")
5248 (source
5249 (origin
5250 (method url-fetch)
5251 (uri (bioconductor-uri "ReportingTools" version))
5252 (sha256
5253 (base32
5254 "0r8cdqzfh1jxkghhk3j8x3y9kkmdyg9ibfhsic15jqkmp1im6khh"))))
5255 (properties
5256 `((upstream-name . "ReportingTools")))
5257 (build-system r-build-system)
5258 (propagated-inputs
5259 (list r-annotate
5260 r-annotationdbi
5261 r-biobase
5262 r-biocgenerics
5263 r-category
5264 r-deseq2
5265 r-edger
5266 r-ggbio
5267 r-ggplot2
5268 r-gostats
5269 r-gseabase
5270 r-hwriter
5271 r-iranges
5272 r-knitr
5273 r-lattice
5274 r-limma
5275 r-pfam-db
5276 r-r-utils
5277 r-xml))
5278 (native-inputs
5279 (list r-knitr))
5280 (home-page "https://bioconductor.org/packages/ReportingTools/")
5281 (synopsis "Tools for making reports in various formats")
5282 (description
5283 "The ReportingTools package enables users to easily display reports of
5284 analysis results generated from sources such as microarray and sequencing
5285 data. The package allows users to create HTML pages that may be viewed on a
5286 web browser, or in other formats. Users can generate tables with sortable and
5287 filterable columns, make and display plots, and link table entries to other
5288 data sources such as NCBI or larger plots within the HTML page. Using the
5289 package, users can also produce a table of contents page to link various
5290 reports together for a particular project that can be viewed in a web
5291 browser.")
5292 (license license:artistic2.0)))
5293
5294 (define-public r-rhdf5
5295 (package
5296 (name "r-rhdf5")
5297 (version "2.40.0")
5298 (source (origin
5299 (method url-fetch)
5300 (uri (bioconductor-uri "rhdf5" version))
5301 (sha256
5302 (base32
5303 "00cp90mnb8p83jiflm6x4x0qf4p7gvgh47jk9jry6j3qyvfqaiff"))))
5304 (build-system r-build-system)
5305 (propagated-inputs
5306 (list r-rhdf5filters r-rhdf5lib))
5307 (native-inputs
5308 (list r-knitr))
5309 (home-page "https://bioconductor.org/packages/rhdf5")
5310 (synopsis "HDF5 interface to R")
5311 (description
5312 "This R/Bioconductor package provides an interface between HDF5 and R.
5313 HDF5's main features are the ability to store and access very large and/or
5314 complex datasets and a wide variety of metadata on mass storage (disk) through
5315 a completely portable file format. The rhdf5 package is thus suited for the
5316 exchange of large and/or complex datasets between R and other software
5317 package, and for letting R applications work on datasets that are larger than
5318 the available RAM.")
5319 (license license:artistic2.0)))
5320
5321 (define-public r-rhdf5filters
5322 (package
5323 (name "r-rhdf5filters")
5324 (version "1.8.0")
5325 (source
5326 (origin
5327 (method url-fetch)
5328 (uri (bioconductor-uri "rhdf5filters" version))
5329 (sha256
5330 (base32
5331 "1ipg0v8nqz1imj63scqmpiswcxbl4ankg3knfq4p06ic6ypbbmvs"))))
5332 (properties `((upstream-name . "rhdf5filters")))
5333 (build-system r-build-system)
5334 (propagated-inputs
5335 (list r-rhdf5lib))
5336 (inputs
5337 (list zlib))
5338 (native-inputs
5339 (list r-knitr))
5340 (home-page "https://github.com/grimbough/rhdf5filters")
5341 (synopsis "HDF5 compression filters")
5342 (description
5343 "This package provides a collection of compression filters for use with
5344 HDF5 datasets.")
5345 (license license:bsd-2)))
5346
5347 (define-public r-rsamtools
5348 (package
5349 (name "r-rsamtools")
5350 (version "2.12.0")
5351 (source (origin
5352 (method url-fetch)
5353 (uri (bioconductor-uri "Rsamtools" version))
5354 (sha256
5355 (base32
5356 "1wll703if12qrn0d11ljwf7rqhs4lb27fzyyz1hqwvzn3v361s10"))))
5357 (properties
5358 `((upstream-name . "Rsamtools")))
5359 (build-system r-build-system)
5360 (arguments
5361 `(#:phases
5362 (modify-phases %standard-phases
5363 (add-after 'unpack 'use-system-zlib
5364 (lambda _
5365 (substitute* "DESCRIPTION"
5366 (("zlibbioc, ") ""))
5367 (substitute* "NAMESPACE"
5368 (("import\\(zlibbioc\\)") "")))))))
5369 (propagated-inputs
5370 (list r-biocgenerics
5371 r-biocparallel
5372 r-biostrings
5373 r-bitops
5374 r-genomeinfodb
5375 r-genomicranges
5376 r-iranges
5377 r-rhtslib
5378 r-s4vectors
5379 r-xvector))
5380 (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html")
5381 (synopsis "Interface to samtools, bcftools, and tabix")
5382 (description
5383 "This package provides an interface to the @code{samtools},
5384 @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence
5385 Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed
5386 tab-delimited (tabix) files.")
5387 (license license:expat)))
5388
5389 ;; This is a CRAN package, but it depends on a Bioconductor package:
5390 ;; s4vectors.
5391 (define-public r-restfulr
5392 (package
5393 (name "r-restfulr")
5394 (version "0.0.15")
5395 (source
5396 (origin
5397 (method url-fetch)
5398 (uri (cran-uri "restfulr" version))
5399 (sha256
5400 (base32
5401 "14p6h0gjknqy5z2fprxw7waf4p0cd2qmp18s7qig4ylqn8gqzzs0"))))
5402 (properties `((upstream-name . "restfulr")))
5403 (build-system r-build-system)
5404 (propagated-inputs
5405 (list r-rcurl r-rjson r-s4vectors r-xml r-yaml))
5406 (home-page "https://cran.r-project.org/package=restfulr")
5407 (synopsis "R interface to RESTful web services")
5408 (description
5409 "This package models a RESTful service as if it were a nested R list.")
5410 (license license:artistic2.0)))
5411
5412 (define-public r-rtracklayer
5413 (package
5414 (name "r-rtracklayer")
5415 (version "1.56.1")
5416 (source (origin
5417 (method url-fetch)
5418 (uri (bioconductor-uri "rtracklayer" version))
5419 (sha256
5420 (base32
5421 "10qy9s6253mgj871qfqn03i8yw10mz7id4cxfyf67qxczz2xmjls"))))
5422 (build-system r-build-system)
5423 (arguments
5424 `(#:phases
5425 (modify-phases %standard-phases
5426 (add-after 'unpack 'use-system-zlib
5427 (lambda _
5428 (substitute* "DESCRIPTION"
5429 ((" zlibbioc,") ""))
5430 (substitute* "NAMESPACE"
5431 (("import\\(zlibbioc\\)") "")))))))
5432 (native-inputs
5433 (list pkg-config))
5434 (inputs
5435 (list zlib))
5436 (propagated-inputs
5437 (list r-biocgenerics
5438 r-biocio
5439 r-biostrings
5440 r-genomeinfodb
5441 r-genomicalignments
5442 r-genomicranges
5443 r-iranges
5444 r-rcurl
5445 r-restfulr
5446 r-rsamtools
5447 r-s4vectors
5448 r-xml
5449 r-xvector
5450 r-zlibbioc))
5451 (home-page "https://bioconductor.org/packages/rtracklayer")
5452 (synopsis "R interface to genome browsers and their annotation tracks")
5453 (description
5454 "rtracklayer is an extensible framework for interacting with multiple
5455 genome browsers (currently UCSC built-in) and manipulating annotation tracks
5456 in various formats (currently GFF, BED, bedGraph, BED15, WIG, BigWig and 2bit
5457 built-in). The user may export/import tracks to/from the supported browsers,
5458 as well as query and modify the browser state, such as the current viewport.")
5459 (license license:artistic2.0)))
5460
5461 ;; This is a CRAN package, but it depends on a Bioconductor package.
5462 (define-public r-samr
5463 (package
5464 (name "r-samr")
5465 (version "3.0")
5466 (source
5467 (origin
5468 (method url-fetch)
5469 (uri (cran-uri "samr" version))
5470 (sha256
5471 (base32
5472 "01km0f7qgm73x19vbvsxl083hs1dq4dj8qm5h64cxbf20b08my15"))))
5473 (properties `((upstream-name . "samr")))
5474 (build-system r-build-system)
5475 (propagated-inputs
5476 (list r-gsa
5477 r-impute
5478 r-matrixstats
5479 r-openxlsx
5480 r-shiny
5481 r-shinyfiles))
5482 (native-inputs (list gfortran))
5483 (home-page "https://statweb.stanford.edu/~tibs/SAM/")
5484 (synopsis "Significance analysis of Microarrays")
5485 (description
5486 "This is a package for significance analysis of Microarrays for
5487 differential expression analysis, RNAseq data and related problems.")
5488 ;; Any version of the LGPL
5489 (license license:lgpl3+)))
5490
5491 (define-public r-scannotatr
5492 (package
5493 (name "r-scannotatr")
5494 (version "1.2.0")
5495 (source
5496 (origin
5497 (method url-fetch)
5498 (uri (bioconductor-uri "scAnnotatR" version))
5499 (sha256
5500 (base32 "067q57kabhqd1z8l3d91fw74aaw89nb48gm6fll4hv00nqza3n5b"))))
5501 (properties `((upstream-name . "scAnnotatR")))
5502 (build-system r-build-system)
5503 (propagated-inputs
5504 (list r-annotationhub
5505 r-ape
5506 r-caret
5507 r-data-tree
5508 r-dplyr
5509 r-e1071
5510 r-ggplot2
5511 r-kernlab
5512 r-proc
5513 r-rocr
5514 r-seurat
5515 r-singlecellexperiment
5516 r-summarizedexperiment))
5517 (native-inputs (list r-knitr))
5518 (home-page "https://github.com/grisslab/scAnnotatR")
5519 (synopsis "Pretrained models for prediction on single cell RNA-sequencing data")
5520 (description
5521 "This package comprises a set of pretrained machine learning models to
5522 predict basic immune cell types. This enables to quickly get a first
5523 annotation of the cell types present in the dataset without requiring prior
5524 knowledge. The package also lets you train using own models to predict new
5525 cell types based on specific research needs.")
5526 (license license:expat)))
5527
5528 (define-public r-scdblfinder
5529 (package
5530 (name "r-scdblfinder")
5531 (version "1.10.0")
5532 (source
5533 (origin
5534 (method url-fetch)
5535 (uri (bioconductor-uri "scDblFinder" version))
5536 (sha256
5537 (base32 "0y14dvdm16b3bvlrnz03adfylm1kj6jrp2fwciyldij2lfal90y0"))))
5538 (properties `((upstream-name . "scDblFinder")))
5539 (build-system r-build-system)
5540 (propagated-inputs
5541 (list r-biocgenerics
5542 r-biocneighbors
5543 r-biocparallel
5544 r-biocsingular
5545 r-bluster
5546 r-delayedarray
5547 r-genomeinfodb
5548 r-genomicranges
5549 r-igraph
5550 r-iranges
5551 r-mass
5552 r-matrix
5553 r-rsamtools
5554 r-rtracklayer
5555 r-s4vectors
5556 r-scater
5557 r-scran
5558 r-scuttle
5559 r-singlecellexperiment
5560 r-summarizedexperiment
5561 r-xgboost))
5562 (native-inputs (list r-knitr))
5563 (home-page "https://github.com/plger/scDblFinder")
5564 (synopsis "Detect multiplets in single-cell RNA sequencing data")
5565 (description
5566 "The scDblFinder package gathers various methods for the detection and
5567 handling of doublets/multiplets in single-cell RNA sequencing data (i.e.
5568 multiple cells captured within the same droplet or reaction volume). It
5569 includes methods formerly found in the scran package, and the new fast and
5570 comprehensive scDblFinder method.")
5571 (license license:gpl3)))
5572
5573 (define-public r-scmap
5574 (package
5575 (name "r-scmap")
5576 (version "1.18.0")
5577 (source
5578 (origin
5579 (method url-fetch)
5580 (uri (bioconductor-uri "scmap" version))
5581 (sha256
5582 (base32 "0pfwaa9pgml11b84rpf7afdkmg8kxb4srgpc56571vaz388xrv7l"))))
5583 (properties `((upstream-name . "scmap")))
5584 (build-system r-build-system)
5585 (propagated-inputs
5586 (list r-biobase
5587 r-biocgenerics
5588 r-dplyr
5589 r-e1071
5590 r-ggplot2
5591 r-googlevis
5592 r-matrixstats
5593 r-proxy
5594 r-randomforest
5595 r-rcpp
5596 r-rcpparmadillo
5597 r-reshape2
5598 r-s4vectors
5599 r-singlecellexperiment
5600 r-summarizedexperiment))
5601 (native-inputs (list r-knitr))
5602 (home-page "https://github.com/hemberg-lab/scmap")
5603 (synopsis "Tool for unsupervised projection of single cell RNA-seq data")
5604 (description
5605 "@dfn{Single-cell RNA-seq} (scRNA-seq) is widely used to investigate the
5606 composition of complex tissues since the technology allows researchers to
5607 define cell-types using unsupervised clustering of the transcriptome.
5608 However, due to differences in experimental methods and computational
5609 analyses, it is often challenging to directly compare the cells identified in
5610 two different experiments. @code{scmap} is a method for projecting cells from
5611 a scRNA-seq experiment onto the cell-types or individual cells identified in a
5612 different experiment.")
5613 (license license:gpl3)))
5614
5615 (define-public r-seqlogo
5616 (package
5617 (name "r-seqlogo")
5618 (version "1.62.0")
5619 (source
5620 (origin
5621 (method url-fetch)
5622 (uri (bioconductor-uri "seqLogo" version))
5623 (sha256
5624 (base32
5625 "1lk3238m17acmd6lgjjbpscyxw8fm63wv34kbbr478wcih1wbwxr"))))
5626 (properties `((upstream-name . "seqLogo")))
5627 (build-system r-build-system)
5628 (native-inputs
5629 (list r-knitr))
5630 (home-page "https://bioconductor.org/packages/seqLogo")
5631 (synopsis "Sequence logos for DNA sequence alignments")
5632 (description
5633 "seqLogo takes the position weight matrix of a DNA sequence motif and
5634 plots the corresponding sequence logo as introduced by Schneider and
5635 Stephens (1990).")
5636 (license license:lgpl2.0+)))
5637
5638 (define-public r-seqpattern
5639 (package
5640 (name "r-seqpattern")
5641 (version "1.28.0")
5642 (source (origin
5643 (method url-fetch)
5644 (uri (bioconductor-uri "seqPattern" version))
5645 (sha256
5646 (base32
5647 "0nrrlr1nl9zxmp88qq8jn7wgmda6jh0xvp4nph94w4nwjsyb7xqn"))))
5648 (properties
5649 `((upstream-name . "seqPattern")))
5650 (build-system r-build-system)
5651 (propagated-inputs
5652 (list r-biostrings r-genomicranges r-iranges r-kernsmooth r-plotrix))
5653 (home-page "https://bioconductor.org/packages/seqPattern")
5654 (synopsis "Visualising oligonucleotide patterns and motif occurrences")
5655 (description
5656 "This package provides tools to visualize oligonucleotide patterns and
5657 sequence motif occurrences across a large set of sequences centred at a common
5658 reference point and sorted by a user defined feature.")
5659 (license license:gpl3+)))
5660
5661 (define-public r-shortread
5662 (package
5663 (name "r-shortread")
5664 (version "1.54.0")
5665 (source
5666 (origin
5667 (method url-fetch)
5668 (uri (bioconductor-uri "ShortRead" version))
5669 (sha256
5670 (base32
5671 "0303198b4v2wjah9kc829kn01030996l6di4jpf8q5ccd212rjhq"))))
5672 (properties `((upstream-name . "ShortRead")))
5673 (build-system r-build-system)
5674 (inputs
5675 (list zlib))
5676 (propagated-inputs
5677 (list r-biobase
5678 r-biocgenerics
5679 r-biocparallel
5680 r-biostrings
5681 r-genomeinfodb
5682 r-genomicalignments
5683 r-genomicranges
5684 r-rhtslib
5685 r-hwriter
5686 r-iranges
5687 r-lattice
5688 r-latticeextra
5689 r-rsamtools
5690 r-s4vectors
5691 r-xvector
5692 r-zlibbioc))
5693 (home-page "https://bioconductor.org/packages/ShortRead")
5694 (synopsis "FASTQ input and manipulation tools")
5695 (description
5696 "This package implements sampling, iteration, and input of FASTQ files.
5697 It includes functions for filtering and trimming reads, and for generating a
5698 quality assessment report. Data are represented as
5699 @code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
5700 purposes. The package also contains legacy support for early single-end,
5701 ungapped alignment formats.")
5702 (license license:artistic2.0)))
5703
5704 (define-public r-simplifyenrichment
5705 (package
5706 (name "r-simplifyenrichment")
5707 (version "1.6.1")
5708 (source
5709 (origin
5710 (method url-fetch)
5711 (uri (bioconductor-uri "simplifyEnrichment" version))
5712 (sha256
5713 (base32
5714 "0qblgdxmr7zc981529cca3ykakql618q1im6gaxw8pwws5jgpyk6"))))
5715 (properties
5716 `((upstream-name . "simplifyEnrichment")))
5717 (build-system r-build-system)
5718 (propagated-inputs
5719 (list r-annotationdbi
5720 r-biocgenerics
5721 r-circlize
5722 r-clue
5723 r-cluster
5724 r-colorspace
5725 r-complexheatmap
5726 r-digest
5727 r-getoptlong
5728 r-globaloptions
5729 r-go-db
5730 r-gosemsim
5731 r-matrix
5732 r-org-hs-eg-db
5733 r-proxyc
5734 r-slam
5735 r-tm))
5736 (native-inputs (list r-knitr))
5737 (home-page "https://github.com/jokergoo/simplifyEnrichment")
5738 (synopsis "Simplify functional enrichment results")
5739 (description "This package provides a new clustering algorithm, binary
5740 cut, for clustering similarity matrices of functional terms is implemented in
5741 this package. It also provides functionalities for visualizing, summarizing
5742 and comparing the clusterings.")
5743 (license license:expat)))
5744
5745 (define-public r-transcriptr
5746 (package
5747 (name "r-transcriptr")
5748 (version "1.24.0")
5749 (source
5750 (origin
5751 (method url-fetch)
5752 (uri (bioconductor-uri "transcriptR" version))
5753 (sha256
5754 (base32 "1zc6aasd5nzwl9jxr0rdriiq85adqdbfi5b9m3jyf69pa71sgy03"))))
5755 (properties `((upstream-name . "transcriptR")))
5756 (build-system r-build-system)
5757 (propagated-inputs
5758 (list r-biocgenerics
5759 r-caret
5760 r-chipseq
5761 r-e1071
5762 r-genomeinfodb
5763 r-genomicalignments
5764 r-genomicfeatures
5765 r-genomicranges
5766 r-ggplot2
5767 r-iranges
5768 r-proc
5769 r-reshape2
5770 r-rsamtools
5771 r-rtracklayer
5772 r-s4vectors))
5773 (native-inputs (list r-knitr))
5774 (home-page "https://bioconductor.org/packages/transcriptR")
5775 (synopsis "Primary transcripts detection and quantification")
5776 (description
5777 "The differences in the RNA types being sequenced have an impact on the
5778 resulting sequencing profiles. mRNA-seq data is enriched with reads derived
5779 from exons, while GRO-, nucRNA- and chrRNA-seq demonstrate a substantial
5780 broader coverage of both exonic and intronic regions. The presence of
5781 intronic reads in GRO-seq type of data makes it possible to use it to
5782 computationally identify and quantify all de novo continuous regions of
5783 transcription distributed across the genome. This type of data, however, is
5784 more challenging to interpret and less common practice compared to mRNA-seq.
5785 One of the challenges for primary transcript detection concerns the
5786 simultaneous transcription of closely spaced genes, which needs to be properly
5787 divided into individually transcribed units. The R package transcriptR
5788 combines RNA-seq data with ChIP-seq data of histone modifications that mark
5789 active Transcription Start Sites (TSSs), such as, H3K4me3 or H3K9/14Ac to
5790 overcome this challenge. The advantage of this approach over the use of, for
5791 example, gene annotations is that this approach is data driven and therefore
5792 able to deal also with novel and case specific events.")
5793 (license license:gpl3)))
5794
5795 (define-public r-trajectoryutils
5796 (package
5797 (name "r-trajectoryutils")
5798 (version "1.4.0")
5799 (source
5800 (origin
5801 (method url-fetch)
5802 (uri (bioconductor-uri "TrajectoryUtils" version))
5803 (sha256
5804 (base32
5805 "07hcr3zplxlzlwc13wh9006m5kaqm57cm1b2x74bpp857f2q93dj"))))
5806 (properties
5807 `((upstream-name . "TrajectoryUtils")))
5808 (build-system r-build-system)
5809 (propagated-inputs
5810 (list r-igraph r-matrix r-s4vectors r-singlecellexperiment
5811 r-summarizedexperiment))
5812 (native-inputs (list r-knitr))
5813 (home-page "https://bioconductor.org/packages/TrajectoryUtils")
5814 (synopsis "Single-cell trajectory analysis utilities")
5815 (description
5816 "This package implements low-level utilities for single-cell trajectory
5817 analysis, primarily intended for re-use inside higher-level packages. It
5818 includes a function to create a cluster-level minimum spanning tree and data
5819 structures to hold pseudotime inference results.")
5820 (license license:gpl3)))
5821
5822 (define-public r-slingshot
5823 (package
5824 (name "r-slingshot")
5825 (version "2.4.0")
5826 (source (origin
5827 (method url-fetch)
5828 (uri (bioconductor-uri "slingshot" version))
5829 (sha256
5830 (base32
5831 "0xapi66l5z2qdqns3fcjqcjal6npqj7rxra60lwjvbrq49pq69p2"))))
5832 (build-system r-build-system)
5833 (propagated-inputs
5834 (list r-igraph
5835 r-matrixstats
5836 r-princurve
5837 r-s4vectors
5838 r-singlecellexperiment
5839 r-summarizedexperiment
5840 r-trajectoryutils))
5841 (native-inputs
5842 (list r-knitr))
5843 (home-page "https://bioconductor.org/packages/slingshot")
5844 (synopsis "Tools for ordering single-cell sequencing")
5845 (description "This package provides functions for inferring continuous,
5846 branching lineage structures in low-dimensional data. Slingshot was designed
5847 to model developmental trajectories in single-cell RNA sequencing data and
5848 serve as a component in an analysis pipeline after dimensionality reduction
5849 and clustering. It is flexible enough to handle arbitrarily many branching
5850 events and allows for the incorporation of prior knowledge through supervised
5851 graph construction.")
5852 (license license:artistic2.0)))
5853
5854 (define-public r-stager
5855 (package
5856 (name "r-stager")
5857 (version "1.18.0")
5858 (source
5859 (origin
5860 (method url-fetch)
5861 (uri (bioconductor-uri "stageR" version))
5862 (sha256
5863 (base32 "0ns3ih6l4na6irshrc5iy4d9qf7hrnqq3ndnlcjb2i1cn38l2w9y"))))
5864 (properties `((upstream-name . "stageR")))
5865 (build-system r-build-system)
5866 (propagated-inputs (list r-summarizedexperiment))
5867 (native-inputs (list r-knitr))
5868 (home-page "https://bioconductor.org/packages/stageR")
5869 (synopsis "Stage-wise analysis of high throughput gene expression data")
5870 (description
5871 "The stageR package allows automated stage-wise analysis of
5872 high-throughput gene expression data. The method is published in Genome
5873 Biology at
5874 @url{https://genomebiology.biomedcentral.com/articles/10.1186/s13059-017-1277-0}.")
5875 (license license:gpl3)))
5876
5877 (define-public r-stringdb
5878 (package
5879 (name "r-stringdb")
5880 (version "2.8.4")
5881 (source
5882 (origin
5883 (method url-fetch)
5884 (uri (bioconductor-uri "STRINGdb" version))
5885 (sha256
5886 (base32 "1jn6080v6097zpqsr4gfbx31gqqdhpzjrk63avk3v3xwawmf2379"))))
5887 (properties `((upstream-name . "STRINGdb")))
5888 (build-system r-build-system)
5889 (propagated-inputs
5890 (list r-gplots
5891 r-hash
5892 r-igraph
5893 r-plotrix
5894 r-plyr
5895 r-png
5896 r-rcolorbrewer
5897 r-rcurl
5898 r-sqldf))
5899 (home-page "https://git.bioconductor.org/packages/STRINGdb")
5900 (synopsis "Search tool for the retrieval of interacting proteins database")
5901 (description
5902 "The @code{STRINGdb} package provides an R interface to the STRING
5903 protein-protein interactions database. @url{https://www.string-db.org,
5904 STRING} is a database of known and predicted protein-protein interactions.
5905 The interactions include direct (physical) and indirect (functional)
5906 associations. Each interaction is associated with a combined confidence score
5907 that integrates the various evidences.")
5908 (license license:gpl2)))
5909
5910 (define-public r-structuralvariantannotation
5911 (package
5912 (name "r-structuralvariantannotation")
5913 (version "1.12.0")
5914 (source
5915 (origin
5916 (method url-fetch)
5917 (uri (bioconductor-uri "StructuralVariantAnnotation" version))
5918 (sha256
5919 (base32 "0f3x74ic3blg8nm5xlv79k0n8j3fpl98mmhfanqfzmdl0g3j6wx6"))))
5920 (build-system r-build-system)
5921 (propagated-inputs
5922 (list r-assertthat
5923 r-biocgenerics
5924 r-biostrings
5925 r-dplyr
5926 r-genomeinfodb
5927 r-genomicfeatures
5928 r-genomicranges
5929 r-iranges
5930 r-rlang
5931 r-rtracklayer
5932 r-s4vectors
5933 r-stringr
5934 r-summarizedexperiment
5935 r-variantannotation))
5936 (native-inputs
5937 (list r-knitr))
5938 (home-page "https://bioconductor.org/packages/StructuralVariantAnnotation/")
5939 (synopsis "R package designed to simplify structural variant analysis")
5940 (description
5941 "This package contains useful helper functions for dealing with structural
5942 variants in VCF format. The packages contains functions for parsing VCFs from
5943 a number of popular callers as well as functions for dealing with breakpoints
5944 involving two separate genomic loci encoded as GRanges objects.")
5945 (license license:gpl3)))
5946
5947 (define-public r-summarizedexperiment
5948 (package
5949 (name "r-summarizedexperiment")
5950 (version "1.26.1")
5951 (source (origin
5952 (method url-fetch)
5953 (uri (bioconductor-uri "SummarizedExperiment" version))
5954 (sha256
5955 (base32
5956 "02vlqzmslyijs09jl0gdjxqjjnnl4yqbqqqlb4vb7nr0fspmyz39"))))
5957 (properties
5958 `((upstream-name . "SummarizedExperiment")))
5959 (build-system r-build-system)
5960 (propagated-inputs
5961 (list r-biobase
5962 r-biocgenerics
5963 r-delayedarray
5964 r-genomeinfodb
5965 r-genomicranges
5966 r-iranges
5967 r-matrix
5968 r-matrixgenerics
5969 r-s4vectors))
5970 (native-inputs
5971 (list r-knitr))
5972 (home-page "https://bioconductor.org/packages/SummarizedExperiment")
5973 (synopsis "Container for representing genomic ranges by sample")
5974 (description
5975 "The SummarizedExperiment container contains one or more assays, each
5976 represented by a matrix-like object of numeric or other mode. The rows
5977 typically represent genomic ranges of interest and the columns represent
5978 samples.")
5979 (license license:artistic2.0)))
5980
5981 (define-public r-sva
5982 (package
5983 (name "r-sva")
5984 (version "3.44.0")
5985 (source
5986 (origin
5987 (method url-fetch)
5988 (uri (bioconductor-uri "sva" version))
5989 (sha256
5990 (base32
5991 "0ka259rn0la0hjslj7w24q1dyyh79h84nw6mxp7armqbfjb207a4"))))
5992 (build-system r-build-system)
5993 (propagated-inputs
5994 (list r-edger
5995 r-genefilter
5996 r-mgcv
5997 r-biocparallel
5998 r-matrixstats
5999 r-limma))
6000 (home-page "https://bioconductor.org/packages/sva")
6001 (synopsis "Surrogate variable analysis")
6002 (description
6003 "This package contains functions for removing batch effects and other
6004 unwanted variation in high-throughput experiment. It also contains functions
6005 for identifying and building surrogate variables for high-dimensional data
6006 sets. Surrogate variables are covariates constructed directly from
6007 high-dimensional data like gene expression/RNA sequencing/methylation/brain
6008 imaging data that can be used in subsequent analyses to adjust for unknown,
6009 unmodeled, or latent sources of noise.")
6010 (license license:artistic2.0)))
6011
6012 (define-public r-systempiper
6013 (package
6014 (name "r-systempiper")
6015 (version "2.2.2")
6016 (source
6017 (origin
6018 (method url-fetch)
6019 (uri (bioconductor-uri "systemPipeR" version))
6020 (sha256
6021 (base32
6022 "1yybbff29gwv6rm0nw4yjw73bbl5prfj8gj4zky917smjfd459im"))))
6023 (properties `((upstream-name . "systemPipeR")))
6024 (build-system r-build-system)
6025 (propagated-inputs
6026 (list r-biocgenerics
6027 r-biostrings
6028 r-crayon
6029 r-genomicranges
6030 r-ggplot2
6031 r-htmlwidgets
6032 r-magrittr
6033 r-rsamtools
6034 r-s4vectors
6035 r-shortread
6036 r-stringr
6037 r-summarizedexperiment
6038 r-yaml))
6039 (native-inputs
6040 (list r-knitr))
6041 (home-page "https://github.com/tgirke/systemPipeR")
6042 (synopsis "Next generation sequencing workflow and reporting environment")
6043 (description
6044 "This R package provides tools for building and running automated
6045 end-to-end analysis workflows for a wide range of @dfn{next generation
6046 sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
6047 Important features include a uniform workflow interface across different NGS
6048 applications, automated report generation, and support for running both R and
6049 command-line software, such as NGS aligners or peak/variant callers, on local
6050 computers or compute clusters. Efficient handling of complex sample sets and
6051 experimental designs is facilitated by a consistently implemented sample
6052 annotation infrastructure.")
6053 (license license:artistic2.0)))
6054
6055 (define-public r-topgo
6056 (package
6057 (name "r-topgo")
6058 (version "2.48.0")
6059 (source (origin
6060 (method url-fetch)
6061 (uri (bioconductor-uri "topGO" version))
6062 (sha256
6063 (base32
6064 "125r42ymk1irjmwk4sywjkcshs71s26p3zsvryfdvf56k5w162v6"))))
6065 (properties
6066 `((upstream-name . "topGO")))
6067 (build-system r-build-system)
6068 (propagated-inputs
6069 (list r-annotationdbi
6070 r-dbi
6071 r-biobase
6072 r-biocgenerics
6073 r-go-db
6074 r-graph
6075 r-lattice
6076 r-matrixstats
6077 r-sparsem))
6078 (home-page "https://bioconductor.org/packages/topGO")
6079 (synopsis "Enrichment analysis for gene ontology")
6080 (description
6081 "The topGO package provides tools for testing @dfn{gene ontology} (GO)
6082 terms while accounting for the topology of the GO graph. Different test
6083 statistics and different methods for eliminating local similarities and
6084 dependencies between GO terms can be implemented and applied.")
6085 ;; Any version of the LGPL applies.
6086 (license license:lgpl2.1+)))
6087
6088 (define-public r-tximport
6089 (package
6090 (name "r-tximport")
6091 (version "1.24.0")
6092 (source (origin
6093 (method url-fetch)
6094 (uri (bioconductor-uri "tximport" version))
6095 (sha256
6096 (base32
6097 "1cnra82pvwz79a1hkw0phc6aa3v43r5p4nx8xyx5wzmkd7rjkc8x"))))
6098 (build-system r-build-system)
6099 (native-inputs
6100 (list r-knitr))
6101 (home-page "https://bioconductor.org/packages/tximport")
6102 (synopsis "Import and summarize transcript-level estimates for gene-level analysis")
6103 (description
6104 "This package provides tools to import transcript-level abundance,
6105 estimated counts and transcript lengths, and to summarize them into matrices
6106 for use with downstream gene-level analysis packages. Average transcript
6107 length, weighted by sample-specific transcript abundance estimates, is
6108 provided as a matrix which can be used as an offset for different expression
6109 of gene-level counts.")
6110 (license license:gpl2+)))
6111
6112 ;; This is a CRAN package, but it depends on a Bioconductor package.
6113 (define-public r-valr
6114 (package
6115 (name "r-valr")
6116 (version "0.6.4")
6117 (source
6118 (origin
6119 (method url-fetch)
6120 (uri (cran-uri "valr" version))
6121 (sha256
6122 (base32
6123 "0dd41irvibh6rwi52bw4zg4m7wpyihlp1kdkb8fdji3csw2fiz4k"))))
6124 (build-system r-build-system)
6125 (propagated-inputs
6126 (list r-broom
6127 r-dplyr
6128 r-ggplot2
6129 r-rcpp
6130 r-readr
6131 r-rlang
6132 r-rtracklayer ;bioconductor package
6133 r-stringr
6134 r-tibble))
6135 (native-inputs
6136 (list r-knitr))
6137 (home-page "https://github.com/rnabioco/valr")
6138 (synopsis "Genome interval arithmetic in R")
6139 (description
6140 "This package enables you to read and manipulate genome intervals and
6141 signals. It provides functionality similar to command-line tool suites within
6142 R, enabling interactive analysis and visualization of genome-scale data.")
6143 (license license:expat)))
6144
6145 (define-public r-variantannotation
6146 (package
6147 (name "r-variantannotation")
6148 (version "1.42.1")
6149 (source (origin
6150 (method url-fetch)
6151 (uri (bioconductor-uri "VariantAnnotation" version))
6152 (sha256
6153 (base32
6154 "12d5hkx6pby6l2asyg4jp4jb2x17ybwhqd55rl64h37mwcndbdg1"))))
6155 (properties
6156 `((upstream-name . "VariantAnnotation")))
6157 (propagated-inputs
6158 (list r-annotationdbi
6159 r-biobase
6160 r-biocgenerics
6161 r-biostrings
6162 r-bsgenome
6163 r-dbi
6164 r-genomeinfodb
6165 r-genomicfeatures
6166 r-genomicranges
6167 r-iranges
6168 r-matrixgenerics
6169 r-summarizedexperiment
6170 r-rhtslib
6171 r-rsamtools
6172 r-rtracklayer
6173 r-s4vectors
6174 r-xvector
6175 r-zlibbioc))
6176 (build-system r-build-system)
6177 (home-page "https://bioconductor.org/packages/VariantAnnotation")
6178 (synopsis "Package for annotation of genetic variants")
6179 (description "This R package can annotate variants, compute amino acid
6180 coding changes and predict coding outcomes.")
6181 (license license:artistic2.0)))
6182
6183 (define-public r-vsn
6184 (package
6185 (name "r-vsn")
6186 (version "3.64.0")
6187 (source
6188 (origin
6189 (method url-fetch)
6190 (uri (bioconductor-uri "vsn" version))
6191 (sha256
6192 (base32
6193 "1ja7vdjvgx671l57f9fzfn4vc6q7xzfmqs4krg2rdyfaaf531gqf"))))
6194 (build-system r-build-system)
6195 (propagated-inputs
6196 (list r-affy r-biobase r-ggplot2 r-lattice r-limma))
6197 (native-inputs
6198 (list r-knitr)) ; for vignettes
6199 (home-page "https://bioconductor.org/packages/release/bioc/html/vsn.html")
6200 (synopsis "Variance stabilization and calibration for microarray data")
6201 (description
6202 "The package implements a method for normalising microarray intensities,
6203 and works for single- and multiple-color arrays. It can also be used for data
6204 from other technologies, as long as they have similar format. The method uses
6205 a robust variant of the maximum-likelihood estimator for an
6206 additive-multiplicative error model and affine calibration. The model
6207 incorporates data calibration step (a.k.a. normalization), a model for the
6208 dependence of the variance on the mean intensity and a variance stabilizing
6209 data transformation. Differences between transformed intensities are
6210 analogous to \"normalized log-ratios\". However, in contrast to the latter,
6211 their variance is independent of the mean, and they are usually more sensitive
6212 and specific in detecting differential transcription.")
6213 (license license:artistic2.0)))
6214
6215 ;; There is no source tarball, so we fetch the code from the Bioconductor git
6216 ;; repository.
6217 (define-public r-xcir
6218 (let ((commit "3b59d456f2ad7f70285915b036b1dc4279687277")
6219 (revision "1"))
6220 (package
6221 (name "r-xcir")
6222 (version (git-version "1.8.0" revision commit))
6223 (source (origin
6224 (method git-fetch)
6225 (uri (git-reference
6226 (url "https://git.bioconductor.org/packages/XCIR")
6227 (commit commit)))
6228 (file-name (git-file-name name version))
6229 (sha256
6230 (base32
6231 "1xxw5ady5j2p7z7zjxgx7lhm85x7fxbljiv49lc2ghsvh9wm937p"))))
6232 (properties `((upstream-name . "XCIR")))
6233 (build-system r-build-system)
6234 (propagated-inputs (list r-biomart
6235 r-biostrings
6236 r-data-table
6237 r-ggplot2
6238 r-iranges
6239 r-readxl
6240 r-s4vectors
6241 r-seqminer
6242 r-variantannotation))
6243 (native-inputs (list r-knitr))
6244 (home-page "https://github.com/SRenan/XCIR")
6245 (synopsis "Analysis of X chromosome inactivation")
6246 (description
6247 "This package is an R package that offers models and tools for subject
6248 level analysis of @dfn{X chromosome inactivation} (XCI) and XCI-escape
6249 inference.")
6250 (license license:gpl2))))
6251
6252 (define-public r-xina
6253 (package
6254 (name "r-xina")
6255 (version "1.14.0")
6256 (source
6257 (origin
6258 (method url-fetch)
6259 (uri (bioconductor-uri "XINA" version))
6260 (sha256
6261 (base32 "03gf7mqpnwx12kny9fsaskgrw83b0wi2cf1j4dbq46pfxjx34v1g"))))
6262 (properties `((upstream-name . "XINA")))
6263 (build-system r-build-system)
6264 (propagated-inputs
6265 (list r-alluvial
6266 r-ggplot2
6267 r-gridextra
6268 r-igraph
6269 r-mclust
6270 r-plyr
6271 r-stringdb))
6272 (native-inputs (list r-knitr))
6273 (home-page "https://git.bioconductor.org/packages/XINA")
6274 (synopsis "Identifying proteins that exhibit similar patterns")
6275 (description
6276 "The aim of @code{XINA} is to determine which proteins exhibit similar
6277 patterns within and across experimental conditions, since proteins with
6278 co-abundance patterns may have common molecular functions. @code{XINA} imports
6279 multiple datasets, tags dataset in silico, and combines the data for subsequent
6280 subgrouping into multiple clusters. The result is a single output depicting
6281 the variation across all conditions. @code{XINA} not only extracts
6282 coabundance profiles within and across experiments, but also incorporates
6283 protein-protein interaction databases and integrative resources such as
6284 @dfn{Kyoto encyclopedia of genes and genomes} (KEGG) to infer interactors and
6285 molecular functions, respectively, and produces intuitive graphical outputs.")
6286 (license license:gpl3)))
6287
6288 (define-public r-xmapbridge
6289 (package
6290 (name "r-xmapbridge")
6291 (version "1.54.0")
6292 (source
6293 (origin
6294 (method url-fetch)
6295 (uri (bioconductor-uri "xmapbridge" version))
6296 (sha256
6297 (base32 "1n3nxc4jwxf5z32i70sza52nyk29adhp8vc3hac7r5b8mbi6gg10"))))
6298 (properties `((upstream-name . "xmapbridge")))
6299 (build-system r-build-system)
6300 (home-page "https://git.bioconductor.org/packages/xmapbridge")
6301 (synopsis "Display numeric data in the web based genome browser X:MAP")
6302 (description
6303 "The package @code{xmapbridge} can plot graphs in the X:Map genome
6304 browser. X:Map uses the Google Maps API to provide a scrollable view of the
6305 genome. It supports a number of species, and can be accessed at
6306 @url{http://xmap.picr.man.ac.uk}. This package exports plotting files in a
6307 suitable format. Graph plotting in R is done using calls to the functions
6308 @code{xmap.plot} and @code{xmap.points}, which have parameters that aim to be
6309 similar to those used by the standard plot methods in R. These result in data
6310 being written to a set of files (in a specific directory structure) that
6311 contain the data to be displayed, as well as some additional meta-data
6312 describing each of the graphs.")
6313 (license license:lgpl3)))
6314
6315 (define-public r-xvector
6316 (package
6317 (name "r-xvector")
6318 (version "0.36.0")
6319 (source (origin
6320 (method url-fetch)
6321 (uri (bioconductor-uri "XVector" version))
6322 (sha256
6323 (base32
6324 "1f3sbqy279gb9k13l73j00ixywa1havlqy81zx766r1xkz15nvhk"))))
6325 (properties
6326 `((upstream-name . "XVector")))
6327 (build-system r-build-system)
6328 (arguments
6329 `(#:phases
6330 (modify-phases %standard-phases
6331 (add-after 'unpack 'use-system-zlib
6332 (lambda _
6333 (substitute* "DESCRIPTION"
6334 (("zlibbioc, ") ""))
6335 (substitute* "NAMESPACE"
6336 (("import\\(zlibbioc\\)") ""))
6337 #t)))))
6338 (inputs
6339 (list zlib))
6340 (propagated-inputs
6341 (list r-biocgenerics r-iranges r-s4vectors))
6342 (home-page "https://bioconductor.org/packages/XVector")
6343 (synopsis "Representation and manpulation of external sequences")
6344 (description
6345 "This package provides memory efficient S4 classes for storing sequences
6346 \"externally\" (behind an R external pointer, or on disk).")
6347 (license license:artistic2.0)))
6348
6349 (define-public r-zlibbioc
6350 (package
6351 (name "r-zlibbioc")
6352 (version "1.42.0")
6353 (source (origin
6354 (method url-fetch)
6355 (uri (bioconductor-uri "zlibbioc" version))
6356 (sha256
6357 (base32
6358 "0w0y9jixdk6akmasn55g9g0nhlh93hbca5bwx5w1fypnvqrqpxzv"))))
6359 (properties
6360 `((upstream-name . "zlibbioc")))
6361 (build-system r-build-system)
6362 (home-page "https://bioconductor.org/packages/zlibbioc")
6363 (synopsis "Provider for zlib-1.2.5 to R packages")
6364 (description "This package uses the source code of zlib-1.2.5 to create
6365 libraries for systems that do not have these available via other means.")
6366 (license license:artistic2.0)))
6367
6368 (define-public r-zellkonverter
6369 (package
6370 (name "r-zellkonverter")
6371 (version "1.6.3")
6372 (source
6373 (origin
6374 (method url-fetch)
6375 (uri (bioconductor-uri "zellkonverter" version))
6376 (sha256
6377 (base32 "0l6v7a2zyxpq2w3vm85z439ldi3ld3pkc3wx95a1vxzbr31cpdzz"))))
6378 (properties `((upstream-name . "zellkonverter")))
6379 (build-system r-build-system)
6380 (propagated-inputs
6381 (list r-basilisk
6382 r-cli
6383 r-delayedarray
6384 r-matrix
6385 r-reticulate
6386 r-s4vectors
6387 r-singlecellexperiment
6388 r-summarizedexperiment))
6389 (native-inputs (list r-knitr))
6390 (home-page "https://github.com/theislab/zellkonverter")
6391 (synopsis "Conversion between AnnData and single-cell experiments objects")
6392 (description
6393 "This package provides methods to convert between Python AnnData objects
6394 and SingleCellExperiment objects. These are primarily intended for use by
6395 downstream Bioconductor packages that wrap Python methods for single-cell data
6396 analysis. It also includes functions to read and write H5AD files used for
6397 saving AnnData objects to disk.")
6398 (license license:expat)))
6399
6400 (define-public r-geneplotter
6401 (package
6402 (name "r-geneplotter")
6403 (version "1.74.0")
6404 (source
6405 (origin
6406 (method url-fetch)
6407 (uri (bioconductor-uri "geneplotter" version))
6408 (sha256
6409 (base32
6410 "13230mzrdralnvf9jp032s16a8mk3kx5476nnvpa4pvcgp1i1ijc"))))
6411 (build-system r-build-system)
6412 (propagated-inputs
6413 (list r-annotate
6414 r-annotationdbi
6415 r-biobase
6416 r-biocgenerics
6417 r-lattice
6418 r-rcolorbrewer))
6419 (home-page "https://bioconductor.org/packages/geneplotter")
6420 (synopsis "Graphics functions for genomic data")
6421 (description
6422 "This package provides functions for plotting genomic data.")
6423 (license license:artistic2.0)))
6424
6425 (define-public r-oligoclasses
6426 (package
6427 (name "r-oligoclasses")
6428 (version "1.58.0")
6429 (source
6430 (origin
6431 (method url-fetch)
6432 (uri (bioconductor-uri "oligoClasses" version))
6433 (sha256
6434 (base32
6435 "1m4x50gl1fm5waa531v7ml0q229q65qn9cgiwnvjg721fvra7mdk"))))
6436 (properties `((upstream-name . "oligoClasses")))
6437 (build-system r-build-system)
6438 (propagated-inputs
6439 (list r-affyio
6440 r-biobase
6441 r-biocgenerics
6442 r-biocmanager
6443 r-biostrings
6444 r-dbi
6445 r-ff
6446 r-foreach
6447 r-genomicranges
6448 r-iranges
6449 r-rsqlite
6450 r-s4vectors
6451 r-summarizedexperiment))
6452 (home-page "https://bioconductor.org/packages/oligoClasses/")
6453 (synopsis "Classes for high-throughput arrays")
6454 (description
6455 "This package contains class definitions, validity checks, and
6456 initialization methods for classes used by the @code{oligo} and @code{crlmm}
6457 packages.")
6458 (license license:gpl2+)))
6459
6460 (define-public r-oligo
6461 (package
6462 (name "r-oligo")
6463 (version "1.60.0")
6464 (source
6465 (origin
6466 (method url-fetch)
6467 (uri (bioconductor-uri "oligo" version))
6468 (sha256
6469 (base32
6470 "0y7j96rafm9b85sxq2483i73685i3j67lk33fn8nfcav6lmsv5vy"))))
6471 (properties `((upstream-name . "oligo")))
6472 (build-system r-build-system)
6473 (inputs (list zlib))
6474 (propagated-inputs
6475 (list r-affxparser
6476 r-affyio
6477 r-biobase
6478 r-biocgenerics
6479 r-biostrings
6480 r-dbi
6481 r-ff
6482 r-oligoclasses
6483 r-preprocesscore
6484 r-rsqlite
6485 r-zlibbioc))
6486 (native-inputs
6487 (list r-knitr))
6488 (home-page "https://bioconductor.org/packages/oligo/")
6489 (synopsis "Preprocessing tools for oligonucleotide arrays")
6490 (description
6491 "This package provides a package to analyze oligonucleotide
6492 arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
6493 Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
6494 (license license:lgpl2.0+)))
6495
6496 (define-public r-qvalue
6497 (package
6498 (name "r-qvalue")
6499 (version "2.28.0")
6500 (source
6501 (origin
6502 (method url-fetch)
6503 (uri (bioconductor-uri "qvalue" version))
6504 (sha256
6505 (base32
6506 "0cvhm5cldcnnxwa293dig1pj9lvj2hnz9zh4gfr25sw0xlcjzmyw"))))
6507 (build-system r-build-system)
6508 (propagated-inputs
6509 (list r-ggplot2 r-reshape2))
6510 (native-inputs
6511 (list r-knitr))
6512 (home-page "https://github.com/StoreyLab/qvalue")
6513 (synopsis "Q-value estimation for false discovery rate control")
6514 (description
6515 "This package takes a list of p-values resulting from the simultaneous
6516 testing of many hypotheses and estimates their q-values and local @dfn{false
6517 discovery rate} (FDR) values. The q-value of a test measures the proportion
6518 of false positives incurred when that particular test is called significant.
6519 The local FDR measures the posterior probability the null hypothesis is true
6520 given the test's p-value. Various plots are automatically generated, allowing
6521 one to make sensible significance cut-offs. The software can be applied to
6522 problems in genomics, brain imaging, astrophysics, and data mining.")
6523 ;; Any version of the LGPL.
6524 (license license:lgpl3+)))
6525
6526 (define r-rcppnumerical
6527 (package
6528 (name "r-rcppnumerical")
6529 (version "0.4-0")
6530 (source (origin
6531 (method url-fetch)
6532 (uri (cran-uri "RcppNumerical" version))
6533 (sha256
6534 (base32
6535 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
6536 (properties `((upstream-name . "RcppNumerical")))
6537 (build-system r-build-system)
6538 (propagated-inputs
6539 `(("r-rcpp" ,r-rcpp)
6540 ("r-rcppeigen" ,r-rcppeigen)))
6541 (native-inputs
6542 `(("r-knitr" ,r-knitr)))
6543 (home-page "https://github.com/yixuan/RcppNumerical")
6544 (synopsis "Rcpp integration for numerical computing libraries")
6545 (description
6546 "This package provides a collection of libraries for numerical computing
6547 (numerical integration, optimization, etc.) and their integration with
6548 @code{Rcpp}.")
6549 (license license:gpl2+)))
6550
6551 (define-public r-apeglm
6552 (package
6553 (name "r-apeglm")
6554 (version "1.18.0")
6555 (source (origin
6556 (method url-fetch)
6557 (uri (bioconductor-uri "apeglm" version))
6558 (sha256
6559 (base32
6560 "1ppwk4g66x46hpqsfsvhl12398d1srqr47nmp0y2gz212kff0rby"))))
6561 (properties `((upstream-name . "apeglm")))
6562 (build-system r-build-system)
6563 (propagated-inputs
6564 (list r-emdbook
6565 r-genomicranges
6566 r-rcpp
6567 r-rcppeigen
6568 r-rcppnumerical
6569 r-summarizedexperiment))
6570 (native-inputs (list r-knitr))
6571 (home-page "https://bioconductor.org/packages/apeglm")
6572 (synopsis "Approximate posterior estimation for GLM coefficients")
6573 (description "This package provides Bayesian shrinkage estimators for
6574 effect sizes for a variety of GLM models, using approximation of the
6575 posterior for individual coefficients.")
6576 (license license:gpl2)))
6577
6578 (define-public r-greylistchip
6579 (package
6580 (name "r-greylistchip")
6581 (version "1.28.1")
6582 (source (origin
6583 (method url-fetch)
6584 (uri (bioconductor-uri "GreyListChIP" version))
6585 (sha256
6586 (base32
6587 "0w52vwvjarql19bsv40b80yn701qx8c9d0clsjhj85wmzj2p6dhg"))))
6588 (properties `((upstream-name . "GreyListChIP")))
6589 (build-system r-build-system)
6590 (propagated-inputs
6591 (list r-bsgenome
6592 r-genomeinfodb
6593 r-genomicalignments
6594 r-genomicranges
6595 r-mass
6596 r-rsamtools
6597 r-rtracklayer
6598 r-summarizedexperiment))
6599 (home-page "https://bioconductor.org/packages/GreyListChIP")
6600 (synopsis "Greylist artefact regions based on ChIP inputs")
6601 (description "This package identifies regions of ChIP experiments with high
6602 signal in the input, that lead to spurious peaks during peak calling.")
6603 (license license:artistic2.0)))
6604
6605 (define-public r-diffbind
6606 (package
6607 (name "r-diffbind")
6608 (version "3.6.1")
6609 (source
6610 (origin
6611 (method url-fetch)
6612 (uri (bioconductor-uri "DiffBind" version))
6613 (sha256
6614 (base32
6615 "0izlk8vmmal4dj0bjxhgzr25arfa9zgdv06rm70w7ylr0gl84pzr"))))
6616 (properties `((upstream-name . "DiffBind")))
6617 (build-system r-build-system)
6618 (propagated-inputs
6619 (list r-amap
6620 r-apeglm
6621 r-ashr
6622 r-biocparallel
6623 r-deseq2
6624 r-dplyr
6625 r-genomicalignments
6626 r-genomicranges
6627 r-ggplot2
6628 r-ggrepel
6629 r-gplots
6630 r-greylistchip
6631 r-iranges
6632 r-lattice
6633 r-limma
6634 r-locfit
6635 r-rcolorbrewer
6636 r-rcpp
6637 r-rhtslib
6638 r-rsamtools
6639 r-s4vectors
6640 r-summarizedexperiment
6641 r-systempiper))
6642 (home-page "https://bioconductor.org/packages/DiffBind")
6643 (synopsis "Differential binding analysis of ChIP-Seq peak data")
6644 (description
6645 "This package computes differentially bound sites from multiple
6646 ChIP-seq experiments using affinity (quantitative) data. Also enables
6647 occupancy (overlap) analysis and plotting functions.")
6648 (license license:artistic2.0)))
6649
6650 (define-public r-ripseeker
6651 (package
6652 (name "r-ripseeker")
6653 (version "1.26.0")
6654 (source
6655 (origin
6656 (method url-fetch)
6657 (uri (bioconductor-uri "RIPSeeker" version))
6658 (sha256
6659 (base32
6660 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
6661 (properties `((upstream-name . "RIPSeeker")))
6662 (build-system r-build-system)
6663 (propagated-inputs
6664 (list r-s4vectors
6665 r-iranges
6666 r-genomicranges
6667 r-summarizedexperiment
6668 r-rsamtools
6669 r-genomicalignments
6670 r-rtracklayer))
6671 (home-page "https://bioconductor.org/packages/RIPSeeker")
6672 (synopsis
6673 "Identifying protein-associated transcripts from RIP-seq experiments")
6674 (description
6675 "This package infers and discriminates RIP peaks from RIP-seq alignments
6676 using two-state HMM with negative binomial emission probability. While
6677 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
6678 a suite of bioinformatics tools integrated within this self-contained software
6679 package comprehensively addressing issues ranging from post-alignments
6680 processing to visualization and annotation.")
6681 (license license:gpl2)))
6682
6683 (define-public r-mbkmeans
6684 (package
6685 (name "r-mbkmeans")
6686 (version "1.12.0")
6687 (source (origin
6688 (method url-fetch)
6689 (uri (bioconductor-uri "mbkmeans" version))
6690 (sha256
6691 (base32
6692 "1f5krzlyqljz763vkp1a50danjn78xhn35s8qqdvzrmwyx0fzphg"))))
6693 (build-system r-build-system)
6694 (native-inputs
6695 (list r-knitr))
6696 (propagated-inputs
6697 (list r-beachmat
6698 r-benchmarkme
6699 r-biocparallel
6700 r-clusterr
6701 r-delayedarray
6702 r-matrix
6703 r-rcpp
6704 r-rcpparmadillo
6705 r-rhdf5lib
6706 r-s4vectors
6707 r-singlecellexperiment
6708 r-summarizedexperiment))
6709 (home-page "https://bioconductor.org/packages/mbkmeans")
6710 (synopsis "Mini-batch k-means clustering for single-cell RNA-seq")
6711 (description "This package implements the mini-batch k-means algorithm for
6712 large datasets, including support for on-disk data representation.")
6713 (license license:expat)))
6714
6715 (define-public r-multtest
6716 (package
6717 (name "r-multtest")
6718 (version "2.52.0")
6719 (source
6720 (origin
6721 (method url-fetch)
6722 (uri (bioconductor-uri "multtest" version))
6723 (sha256
6724 (base32
6725 "037wcmwk1wvhjxgmlvnk289pkwishi1753ajkmy9x14xlmldix82"))))
6726 (build-system r-build-system)
6727 (propagated-inputs
6728 (list r-survival r-biocgenerics r-biobase r-mass))
6729 (home-page "https://bioconductor.org/packages/multtest")
6730 (synopsis "Resampling-based multiple hypothesis testing")
6731 (description
6732 "This package can do non-parametric bootstrap and permutation
6733 resampling-based multiple testing procedures (including empirical Bayes
6734 methods) for controlling the family-wise error rate (FWER), generalized
6735 family-wise error rate (gFWER), tail probability of the proportion of
6736 false positives (TPPFP), and false discovery rate (FDR). Several choices
6737 of bootstrap-based null distribution are implemented (centered, centered
6738 and scaled, quantile-transformed). Single-step and step-wise methods are
6739 available. Tests based on a variety of T- and F-statistics (including
6740 T-statistics based on regression parameters from linear and survival models
6741 as well as those based on correlation parameters) are included. When probing
6742 hypotheses with T-statistics, users may also select a potentially faster null
6743 distribution which is multivariate normal with mean zero and variance
6744 covariance matrix derived from the vector influence function. Results are
6745 reported in terms of adjusted P-values, confidence regions and test statistic
6746 cutoffs. The procedures are directly applicable to identifying differentially
6747 expressed genes in DNA microarray experiments.")
6748 (license license:lgpl3)))
6749
6750 (define-public r-graph
6751 (package
6752 (name "r-graph")
6753 (version "1.74.0")
6754 (source (origin
6755 (method url-fetch)
6756 (uri (bioconductor-uri "graph" version))
6757 (sha256
6758 (base32
6759 "1b8hrjwjg82kicls1496fxfzv75xjvq2k6r9apzsd3qlbyg3ilg4"))))
6760 (build-system r-build-system)
6761 (propagated-inputs
6762 (list r-biocgenerics))
6763 (home-page "https://bioconductor.org/packages/graph")
6764 (synopsis "Handle graph data structures in R")
6765 (description
6766 "This package implements some simple graph handling capabilities for R.")
6767 (license license:artistic2.0)))
6768
6769 ;; This is a CRAN package, but it depends on a Bioconductor package.
6770 (define-public r-ggm
6771 (package
6772 (name "r-ggm")
6773 (version "2.5")
6774 (source
6775 (origin
6776 (method url-fetch)
6777 (uri (cran-uri "ggm" version))
6778 (sha256
6779 (base32
6780 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
6781 (properties `((upstream-name . "ggm")))
6782 (build-system r-build-system)
6783 (propagated-inputs
6784 (list r-graph r-igraph))
6785 (home-page "https://cran.r-project.org/package=ggm")
6786 (synopsis "Functions for graphical Markov models")
6787 (description
6788 "This package provides functions and datasets for maximum likelihood
6789 fitting of some classes of graphical Markov models.")
6790 (license license:gpl2+)))
6791
6792 ;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
6793 (define-public r-perfmeas
6794 (package
6795 (name "r-perfmeas")
6796 (version "1.2.1")
6797 (source
6798 (origin
6799 (method url-fetch)
6800 (uri (cran-uri "PerfMeas" version))
6801 (sha256
6802 (base32
6803 "1x7ancmb41zd1js24rx94plgbssyc71z2bvpic6mg34xjkwdjw93"))))
6804 (properties `((upstream-name . "PerfMeas")))
6805 (build-system r-build-system)
6806 (propagated-inputs
6807 (list r-graph r-limma r-rbgl))
6808 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
6809 (synopsis "Performance measures for ranking and classification tasks")
6810 (description
6811 "This package implements different performance measures for
6812 classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
6813 a given recall, F-score for single and multiple classes are available.")
6814 (license license:gpl2+)))
6815
6816 ;; This is a CRAN package, but it depends on a Bioconductor package.
6817 (define-public r-codedepends
6818 (package
6819 (name "r-codedepends")
6820 (version "0.6.5")
6821 (source
6822 (origin
6823 (method url-fetch)
6824 (uri (cran-uri "CodeDepends" version))
6825 (sha256
6826 (base32
6827 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
6828 (properties `((upstream-name . "CodeDepends")))
6829 (build-system r-build-system)
6830 (propagated-inputs
6831 (list r-codetools r-graph r-xml))
6832 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
6833 (synopsis "Analysis of R code for reproducible research and code comprehension")
6834 (description
6835 "This package provides tools for analyzing R expressions or blocks of
6836 code and determining the dependencies between them. It focuses on R scripts,
6837 but can be used on the bodies of functions. There are many facilities
6838 including the ability to summarize or get a high-level view of code,
6839 determining dependencies between variables, code improvement suggestions.")
6840 ;; Any version of the GPL
6841 (license (list license:gpl2+ license:gpl3+))))
6842
6843 (define-public r-chippeakanno
6844 (package
6845 (name "r-chippeakanno")
6846 (version "3.30.1")
6847 (source
6848 (origin
6849 (method url-fetch)
6850 (uri (bioconductor-uri "ChIPpeakAnno" version))
6851 (sha256
6852 (base32
6853 "0a26glldxczcfymjvd45gv5m4hympziivm6wwx4ab9wld7n43l8y"))))
6854 (properties `((upstream-name . "ChIPpeakAnno")))
6855 (build-system r-build-system)
6856 (propagated-inputs
6857 (list r-annotationdbi
6858 r-biocgenerics
6859 r-biomart
6860 r-biostrings
6861 r-dbi
6862 r-dplyr
6863 r-ensembldb
6864 r-genomeinfodb
6865 r-genomicalignments
6866 r-genomicfeatures
6867 r-genomicranges
6868 r-ggplot2
6869 r-graph
6870 r-interactionset
6871 r-iranges
6872 r-keggrest
6873 r-matrixstats
6874 r-multtest
6875 r-rbgl
6876 r-regioner
6877 r-rsamtools
6878 r-rtracklayer
6879 r-s4vectors
6880 r-summarizedexperiment
6881 r-venndiagram))
6882 (native-inputs
6883 (list r-knitr))
6884 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
6885 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
6886 (description
6887 "The package includes functions to retrieve the sequences around the peak,
6888 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
6889 custom features such as most conserved elements and other transcription factor
6890 binding sites supplied by users. Starting 2.0.5, new functions have been added
6891 for finding the peaks with bi-directional promoters with summary statistics
6892 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
6893 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
6894 enrichedGO (addGeneIDs).")
6895 (license license:gpl2+)))
6896
6897 (define-public r-matrixgenerics
6898 (package
6899 (name "r-matrixgenerics")
6900 (version "1.8.1")
6901 (source (origin
6902 (method url-fetch)
6903 (uri (bioconductor-uri "MatrixGenerics" version))
6904 (sha256
6905 (base32
6906 "1liblnpziyyjxzrhdd5d89ilvfqqhbl87h3hsmdm0kwnmc73r37f"))))
6907 (properties
6908 `((upstream-name . "MatrixGenerics")))
6909 (build-system r-build-system)
6910 (propagated-inputs
6911 (list r-matrixstats))
6912 (home-page "https://bioconductor.org/packages/MatrixGenerics")
6913 (synopsis "S4 generic summary statistic functions for matrix-like objects")
6914 (description
6915 "This package provides S4 generic functions modeled after the
6916 @code{matrixStats} API for alternative matrix implementations. Packages with
6917 alternative matrix implementation can depend on this package and implement the
6918 generic functions that are defined here for a useful set of row and column
6919 summary statistics. Other package developers can import this package and
6920 handle a different matrix implementations without worrying about
6921 incompatibilities.")
6922 (license license:artistic2.0)))
6923
6924 (define-public r-marray
6925 (package
6926 (name "r-marray")
6927 (version "1.74.0")
6928 (source (origin
6929 (method url-fetch)
6930 (uri (bioconductor-uri "marray" version))
6931 (sha256
6932 (base32 "0awfz0akz3sylyw1jxhxgadv1rqdzvy9v11933yxkl9a8m9ngm8i"))))
6933 (build-system r-build-system)
6934 (propagated-inputs
6935 (list r-limma))
6936 (home-page "https://bioconductor.org/packages/marray")
6937 (synopsis "Exploratory analysis for two-color spotted microarray data")
6938 (description "This package contains class definitions for two-color spotted
6939 microarray data. It also includes functions for data input, diagnostic plots,
6940 normalization and quality checking.")
6941 (license license:lgpl2.0+)))
6942
6943 (define-public r-cghbase
6944 (package
6945 (name "r-cghbase")
6946 (version "1.56.0")
6947 (source (origin
6948 (method url-fetch)
6949 (uri (bioconductor-uri "CGHbase" version))
6950 (sha256
6951 (base32 "1q8yy60r4g5nyv2gbfdgk192xd73c0rrjr668d5616ddb7sx8wcr"))))
6952 (properties `((upstream-name . "CGHbase")))
6953 (build-system r-build-system)
6954 (propagated-inputs
6955 (list r-biobase r-marray))
6956 (home-page "https://bioconductor.org/packages/CGHbase")
6957 (synopsis "Base functions and classes for arrayCGH data analysis")
6958 (description "This package contains functions and classes that are needed by
6959 the @code{arrayCGH} packages.")
6960 (license license:gpl2+)))
6961
6962 (define-public r-cghcall
6963 (package
6964 (name "r-cghcall")
6965 (version "2.58.0")
6966 (source (origin
6967 (method url-fetch)
6968 (uri (bioconductor-uri "CGHcall" version))
6969 (sha256
6970 (base32 "1qpsibp4gb09sn6fkwwrdjkh3a28lqfbk18c6fvn4m386j96ps65"))))
6971 (properties `((upstream-name . "CGHcall")))
6972 (build-system r-build-system)
6973 (propagated-inputs
6974 (list r-biobase r-cghbase r-impute r-dnacopy r-snowfall))
6975 (home-page "https://bioconductor.org/packages/CGHcall")
6976 (synopsis "Base functions and classes for arrayCGH data analysis")
6977 (description "This package contains functions and classes that are needed by
6978 @code{arrayCGH} packages.")
6979 (license license:gpl2+)))
6980
6981 (define-public r-qdnaseq
6982 (package
6983 (name "r-qdnaseq")
6984 (version "1.32.0")
6985 (source (origin
6986 (method url-fetch)
6987 (uri (bioconductor-uri "QDNAseq" version))
6988 (sha256
6989 (base32 "0s360s72lfn9vjml88gg1m40n61s0dc66ilzgfjdcp65djdxxfvm"))))
6990 (properties `((upstream-name . "QDNAseq")))
6991 (build-system r-build-system)
6992 (propagated-inputs
6993 (list r-biobase
6994 r-cghbase
6995 r-cghcall
6996 r-dnacopy
6997 r-future-apply
6998 r-genomicranges
6999 r-iranges
7000 r-matrixstats
7001 r-r-utils
7002 r-rsamtools))
7003 (home-page "https://bioconductor.org/packages/QDNAseq")
7004 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
7005 (description "The genome is divided into non-overlapping fixed-sized bins,
7006 number of sequence reads in each counted, adjusted with a simultaneous
7007 two-dimensional loess correction for sequence mappability and GC content, and
7008 filtered to remove spurious regions in the genome. Downstream steps of
7009 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
7010 respectively.")
7011 (license license:gpl2+)))
7012
7013 (define-public r-bayseq
7014 (package
7015 (name "r-bayseq")
7016 (version "2.30.0")
7017 (source
7018 (origin
7019 (method url-fetch)
7020 (uri (bioconductor-uri "baySeq" version))
7021 (sha256
7022 (base32
7023 "1yqykndyv32s2rk7x86qf410qr0pigc8z4gdkl8vhj4dgyr47n2j"))))
7024 (properties `((upstream-name . "baySeq")))
7025 (build-system r-build-system)
7026 (propagated-inputs
7027 (list r-abind r-edger r-genomicranges))
7028 (home-page "https://bioconductor.org/packages/baySeq/")
7029 (synopsis "Bayesian analysis of differential expression patterns in count data")
7030 (description
7031 "This package identifies differential expression in high-throughput count
7032 data, such as that derived from next-generation sequencing machines,
7033 calculating estimated posterior likelihoods of differential expression (or
7034 more complex hypotheses) via empirical Bayesian methods.")
7035 (license license:gpl3)))
7036
7037 (define-public r-chipcomp
7038 (package
7039 (name "r-chipcomp")
7040 (version "1.26.0")
7041 (source
7042 (origin
7043 (method url-fetch)
7044 (uri (bioconductor-uri "ChIPComp" version))
7045 (sha256
7046 (base32
7047 "06q34y59gf1iz0rs7y5x8ndy1wa95j65rfmz37aym5c46ijqsnq0"))))
7048 (properties `((upstream-name . "ChIPComp")))
7049 (build-system r-build-system)
7050 (propagated-inputs
7051 (list r-biocgenerics
7052 r-bsgenome-hsapiens-ucsc-hg19
7053 r-bsgenome-mmusculus-ucsc-mm9
7054 r-genomeinfodb
7055 r-genomicranges
7056 r-iranges
7057 r-limma
7058 r-rsamtools
7059 r-rtracklayer
7060 r-s4vectors))
7061 (home-page "https://bioconductor.org/packages/ChIPComp")
7062 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
7063 (description
7064 "ChIPComp implements a statistical method for quantitative comparison of
7065 multiple ChIP-seq datasets. It detects differentially bound sharp binding
7066 sites across multiple conditions considering matching control in ChIP-seq
7067 datasets.")
7068 ;; Any version of the GPL.
7069 (license license:gpl3+)))
7070
7071 (define-public r-riboprofiling
7072 (package
7073 (name "r-riboprofiling")
7074 (version "1.26.0")
7075 (source
7076 (origin
7077 (method url-fetch)
7078 (uri (bioconductor-uri "RiboProfiling" version))
7079 (sha256
7080 (base32
7081 "08m4rc530bkzcc43iwzg2fw9cjlf4wc2d8akv5vblsb42xdn8sqp"))))
7082 (properties `((upstream-name . "RiboProfiling")))
7083 (build-system r-build-system)
7084 (propagated-inputs
7085 (list r-biocgenerics
7086 r-biostrings
7087 r-data-table
7088 r-genomeinfodb
7089 r-genomicalignments
7090 r-genomicfeatures
7091 r-genomicranges
7092 r-ggbio
7093 r-ggplot2
7094 r-iranges
7095 r-plyr
7096 r-reshape2
7097 r-rsamtools
7098 r-rtracklayer
7099 r-s4vectors
7100 r-sqldf))
7101 (native-inputs
7102 (list r-knitr))
7103 (home-page "https://bioconductor.org/packages/RiboProfiling/")
7104 (synopsis "Ribosome profiling data analysis")
7105 (description "Starting with a BAM file, this package provides the
7106 necessary functions for quality assessment, read start position recalibration,
7107 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
7108 of count data: pairs, log fold-change, codon frequency and coverage
7109 assessment, principal component analysis on codon coverage.")
7110 (license license:gpl3)))
7111
7112 (define-public r-riboseqr
7113 (package
7114 (name "r-riboseqr")
7115 (version "1.30.0")
7116 (source
7117 (origin
7118 (method url-fetch)
7119 (uri (bioconductor-uri "riboSeqR" version))
7120 (sha256
7121 (base32
7122 "1zs3y0icsqrndjp9wwqz3jxysvyc9pch45y49j6g9b5b2l44ma26"))))
7123 (properties `((upstream-name . "riboSeqR")))
7124 (build-system r-build-system)
7125 (propagated-inputs
7126 (list r-abind
7127 r-bayseq
7128 r-genomeinfodb
7129 r-genomicranges
7130 r-iranges
7131 r-rsamtools
7132 r-seqlogo))
7133 (home-page "https://bioconductor.org/packages/riboSeqR/")
7134 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
7135 (description
7136 "This package provides plotting functions, frameshift detection and
7137 parsing of genetic sequencing data from ribosome profiling experiments.")
7138 (license license:gpl3)))
7139
7140 (define-public r-interactionset
7141 (package
7142 (name "r-interactionset")
7143 (version "1.24.0")
7144 (source
7145 (origin
7146 (method url-fetch)
7147 (uri (bioconductor-uri "InteractionSet" version))
7148 (sha256
7149 (base32
7150 "0qjimx25jvm8siq8hmlbf2z6mknzpbq945p06fsj826k57bpcsm5"))))
7151 (properties
7152 `((upstream-name . "InteractionSet")))
7153 (build-system r-build-system)
7154 (propagated-inputs
7155 (list r-biocgenerics
7156 r-genomeinfodb
7157 r-genomicranges
7158 r-iranges
7159 r-matrix
7160 r-rcpp
7161 r-s4vectors
7162 r-summarizedexperiment))
7163 (native-inputs
7164 (list r-knitr))
7165 (home-page "https://bioconductor.org/packages/InteractionSet")
7166 (synopsis "Base classes for storing genomic interaction data")
7167 (description
7168 "This package provides the @code{GInteractions},
7169 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
7170 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
7171 experiments.")
7172 (license license:gpl3)))
7173
7174 (define-public r-genomicinteractions
7175 (package
7176 (name "r-genomicinteractions")
7177 (version "1.30.0")
7178 (source
7179 (origin
7180 (method url-fetch)
7181 (uri (bioconductor-uri "GenomicInteractions" version))
7182 (sha256
7183 (base32
7184 "0aph1hja5vfprxs3jl4zd1inhvih6m3v1p3jkm6w7xpj3jzvmgbx"))))
7185 (properties
7186 `((upstream-name . "GenomicInteractions")))
7187 (build-system r-build-system)
7188 (propagated-inputs
7189 (list r-biobase
7190 r-biocgenerics
7191 r-data-table
7192 r-dplyr
7193 r-genomeinfodb
7194 r-genomicranges
7195 r-ggplot2
7196 r-gridextra
7197 r-gviz
7198 r-igraph
7199 r-interactionset
7200 r-iranges
7201 r-rsamtools
7202 r-rtracklayer
7203 r-s4vectors
7204 r-stringr))
7205 (native-inputs
7206 (list r-knitr))
7207 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
7208 (synopsis "R package for handling genomic interaction data")
7209 (description
7210 "This R package provides tools for handling genomic interaction data,
7211 such as ChIA-PET/Hi-C, annotating genomic features with interaction
7212 information and producing various plots and statistics.")
7213 (license license:gpl3)))
7214
7215 (define-public r-ctc
7216 (package
7217 (name "r-ctc")
7218 (version "1.70.0")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (bioconductor-uri "ctc" version))
7223 (sha256
7224 (base32
7225 "0c9pgp25dqx12fmi4cqm7xyxjmy6g7wv9vbljgdjghaij2lrc4pb"))))
7226 (build-system r-build-system)
7227 (propagated-inputs (list r-amap))
7228 (home-page "https://bioconductor.org/packages/ctc/")
7229 (synopsis "Cluster and tree conversion")
7230 (description
7231 "This package provides tools for exporting and importing classification
7232 trees and clusters to other programs.")
7233 (license license:gpl2)))
7234
7235 (define-public r-goseq
7236 (package
7237 (name "r-goseq")
7238 (version "1.48.0")
7239 (source
7240 (origin
7241 (method url-fetch)
7242 (uri (bioconductor-uri "goseq" version))
7243 (sha256
7244 (base32
7245 "1w0rwzhqkvp2x7y5v0qcyjbss0p95gb1jrnx5sdkqginbvrmrd48"))))
7246 (build-system r-build-system)
7247 (propagated-inputs
7248 (list r-annotationdbi
7249 r-biasedurn
7250 r-biocgenerics
7251 r-genelendatabase
7252 r-go-db
7253 r-mgcv))
7254 (home-page "https://bioconductor.org/packages/goseq/")
7255 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
7256 (description
7257 "This package provides tools to detect Gene Ontology and/or other user
7258 defined categories which are over/under represented in RNA-seq data.")
7259 (license license:lgpl2.0+)))
7260
7261 (define-public r-glimma
7262 (package
7263 (name "r-glimma")
7264 (version "2.6.0")
7265 (source
7266 (origin
7267 (method url-fetch)
7268 (uri (bioconductor-uri "Glimma" version))
7269 (sha256
7270 (base32
7271 "1k17ay09vhb2hakg1vrgvpp1zliavlj7cdkxaal162bc3v8pyvyz"))))
7272 (properties `((upstream-name . "Glimma")))
7273 (build-system r-build-system)
7274 (propagated-inputs
7275 (list r-deseq2
7276 r-edger
7277 r-htmlwidgets
7278 r-jsonlite
7279 r-limma
7280 r-s4vectors
7281 r-summarizedexperiment))
7282 (native-inputs
7283 (list r-knitr))
7284 (home-page "https://github.com/Shians/Glimma")
7285 (synopsis "Interactive HTML graphics")
7286 (description
7287 "This package generates interactive visualisations for analysis of
7288 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
7289 HTML page. The interactions are built on top of the popular static
7290 representations of analysis results in order to provide additional
7291 information.")
7292 (license license:lgpl3)))
7293
7294 (define-public r-rots
7295 (package
7296 (name "r-rots")
7297 (version "1.24.0")
7298 (source
7299 (origin
7300 (method url-fetch)
7301 (uri (bioconductor-uri "ROTS" version))
7302 (sha256
7303 (base32
7304 "021a578p8kcl5yd9myiy0h2qp10r30ggnip2kp6xs7dx8nzic96r"))))
7305 (properties `((upstream-name . "ROTS")))
7306 (build-system r-build-system)
7307 (propagated-inputs
7308 (list r-biobase r-rcpp))
7309 (home-page "https://bioconductor.org/packages/ROTS/")
7310 (synopsis "Reproducibility-Optimized Test Statistic")
7311 (description
7312 "This package provides tools for calculating the
7313 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
7314 in omics data.")
7315 (license license:gpl2+)))
7316
7317 (define-public r-plgem
7318 (package
7319 (name "r-plgem")
7320 (version "1.68.0")
7321 (source
7322 (origin
7323 (method url-fetch)
7324 (uri (bioconductor-uri "plgem" version))
7325 (sha256
7326 (base32
7327 "07zxflxcay17hxjw3wh5kfdwl2x8537csb18p1qzmyrkvscnja77"))))
7328 (build-system r-build-system)
7329 (propagated-inputs
7330 (list r-biobase r-mass))
7331 (home-page "http://www.genopolis.it")
7332 (synopsis "Detect differential expression in microarray and proteomics datasets")
7333 (description
7334 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
7335 model the variance-versus-mean dependence that exists in a variety of
7336 genome-wide datasets, including microarray and proteomics data. The use of
7337 PLGEM has been shown to improve the detection of differentially expressed
7338 genes or proteins in these datasets.")
7339 (license license:gpl2)))
7340
7341 (define-public r-inspect
7342 (package
7343 (name "r-inspect")
7344 (version "1.26.0")
7345 (source
7346 (origin
7347 (method url-fetch)
7348 (uri (bioconductor-uri "INSPEcT" version))
7349 (sha256
7350 (base32
7351 "0jx887vhxwd8zlqajr9czvn9nx88ryyxlnl58hxrlajjpcjkz9ax"))))
7352 (properties `((upstream-name . "INSPEcT")))
7353 (build-system r-build-system)
7354 (propagated-inputs
7355 (list r-biobase
7356 r-biocgenerics
7357 r-biocparallel
7358 r-deseq2
7359 r-desolve
7360 r-gdata
7361 r-genomeinfodb
7362 r-genomicalignments
7363 r-genomicfeatures
7364 r-genomicranges
7365 r-iranges
7366 r-kernsmooth
7367 r-plgem
7368 r-proc
7369 r-rootsolve
7370 r-rsamtools
7371 r-rtracklayer
7372 r-s4vectors
7373 r-shiny
7374 r-summarizedexperiment
7375 r-txdb-mmusculus-ucsc-mm9-knowngene))
7376 (native-inputs
7377 (list r-knitr))
7378 (home-page "https://bioconductor.org/packages/INSPEcT")
7379 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
7380 (description
7381 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
7382 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
7383 order to evaluate synthesis, processing and degradation rates and assess via
7384 modeling the rates that determines changes in mature mRNA levels.")
7385 (license license:gpl2)))
7386
7387 (define-public r-dnabarcodes
7388 (package
7389 (name "r-dnabarcodes")
7390 (version "1.26.0")
7391 (source
7392 (origin
7393 (method url-fetch)
7394 (uri (bioconductor-uri "DNABarcodes" version))
7395 (sha256
7396 (base32
7397 "0n2qlvpcjhrxr3br27gz9vhwcpf7sn6g4xdjazvvi3gqcgk90xc6"))))
7398 (properties `((upstream-name . "DNABarcodes")))
7399 (build-system r-build-system)
7400 (propagated-inputs
7401 (list r-bh r-matrix r-rcpp))
7402 (native-inputs
7403 (list r-knitr))
7404 (home-page "https://bioconductor.org/packages/DNABarcodes")
7405 (synopsis "Create and analyze DNA barcodes")
7406 (description
7407 "This package offers tools to create DNA barcode sets capable of
7408 correcting insertion, deletion, and substitution errors. Existing barcodes
7409 can be analyzed regarding their minimal, maximal and average distances between
7410 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
7411 demultiplexed, i.e. assigned to their original reference barcode.")
7412 (license license:gpl2)))
7413
7414 (define-public r-ruvseq
7415 (package
7416 (name "r-ruvseq")
7417 (version "1.30.0")
7418 (source
7419 (origin
7420 (method url-fetch)
7421 (uri (bioconductor-uri "RUVSeq" version))
7422 (sha256
7423 (base32
7424 "001h07b074hvj16bjdp9llb9psphw7r6kpwhq61bj4519y6lpg7x"))))
7425 (properties `((upstream-name . "RUVSeq")))
7426 (build-system r-build-system)
7427 (propagated-inputs
7428 (list r-biobase r-edaseq r-edger r-mass))
7429 (native-inputs
7430 (list r-knitr))
7431 (home-page "https://github.com/drisso/RUVSeq")
7432 (synopsis "Remove unwanted variation from RNA-Seq data")
7433 (description
7434 "This package implements methods to @dfn{remove unwanted variation} (RUV)
7435 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
7436 samples.")
7437 (license license:artistic2.0)))
7438
7439 (define-public r-biocneighbors
7440 (package
7441 (name "r-biocneighbors")
7442 (version "1.14.0")
7443 (source
7444 (origin
7445 (method url-fetch)
7446 (uri (bioconductor-uri "BiocNeighbors" version))
7447 (sha256
7448 (base32
7449 "1a43hzmcpxviqa9723hkafr6gm358amfpqj9d56imclkkfkdz95x"))))
7450 (properties `((upstream-name . "BiocNeighbors")))
7451 (build-system r-build-system)
7452 (propagated-inputs
7453 (list r-biocparallel r-matrix r-rcpp r-rcpphnsw r-s4vectors))
7454 (native-inputs
7455 (list r-knitr))
7456 (home-page "https://bioconductor.org/packages/BiocNeighbors")
7457 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
7458 (description
7459 "This package implements exact and approximate methods for nearest
7460 neighbor detection, in a framework that allows them to be easily switched
7461 within Bioconductor packages or workflows. The exact algorithm is implemented
7462 using pre-clustering with the k-means algorithm. Functions are also provided
7463 to search for all neighbors within a given distance. Parallelization is
7464 achieved for all methods using the BiocParallel framework.")
7465 (license license:gpl3)))
7466
7467 (define-public r-scaledmatrix
7468 (package
7469 (name "r-scaledmatrix")
7470 (version "1.4.0")
7471 (source
7472 (origin
7473 (method url-fetch)
7474 (uri (bioconductor-uri "ScaledMatrix" version))
7475 (sha256
7476 (base32
7477 "0p6065mbn77hphpjfchz3r3raspl127f11n39mwh9bih4zg375cl"))))
7478 (properties `((upstream-name . "ScaledMatrix")))
7479 (build-system r-build-system)
7480 (propagated-inputs
7481 (list r-delayedarray r-matrix r-s4vectors))
7482 (native-inputs (list r-knitr))
7483 (home-page "https://github.com/LTLA/ScaledMatrix")
7484 (synopsis "Create a DelayedMatrix of scaled and centered values")
7485 (description
7486 "This package provides delayed computation of a matrix of scaled and
7487 centered values. The result is equivalent to using the @code{scale} function
7488 but avoids explicit realization of a dense matrix during block processing.
7489 This permits greater efficiency in common operations, most notably matrix
7490 multiplication.")
7491 (license license:gpl3)))
7492
7493 (define-public r-treeio
7494 (package
7495 (name "r-treeio")
7496 (version "1.20.0")
7497 (source
7498 (origin
7499 (method url-fetch)
7500 (uri (bioconductor-uri "treeio" version))
7501 (sha256
7502 (base32
7503 "1hc5m0b2qqxrh3z0inny2jizrpn9d4yn9pn3k1h18xb4ggyijyla"))))
7504 (properties `((upstream-name . "treeio")))
7505 (build-system r-build-system)
7506 (propagated-inputs
7507 (list r-ape
7508 r-dplyr
7509 r-jsonlite
7510 r-magrittr
7511 r-rlang
7512 r-tibble
7513 r-tidytree))
7514 (native-inputs (list r-knitr))
7515 (home-page "https://github.com/YuLab-SMU/treeio")
7516 (synopsis "Base classes and functions for Phylogenetic tree input and output")
7517 (description
7518 "This is an R package to make it easier to import and store phylogenetic
7519 trees with associated data; and to link external data from different sources
7520 to phylogeny. It also supports exporting phylogenetic trees with
7521 heterogeneous associated data to a single tree file and can be served as a
7522 platform for merging tree with associated data and converting file formats.")
7523 (license license:artistic2.0)))
7524
7525 (define-public r-ggtree
7526 (package
7527 (name "r-ggtree")
7528 (version "3.4.0")
7529 (source
7530 (origin
7531 (method url-fetch)
7532 (uri (bioconductor-uri "ggtree" version))
7533 (sha256
7534 (base32
7535 "033r748npv0l72yb9sk6lqnj0l7cd36ykf788145qv8ck5i2gyk4"))))
7536 (properties `((upstream-name . "ggtree")))
7537 (build-system r-build-system)
7538 (propagated-inputs
7539 (list r-ape
7540 r-aplot
7541 r-dplyr
7542 r-ggfun
7543 r-ggplot2
7544 r-magrittr
7545 r-purrr
7546 r-rlang
7547 r-scales
7548 r-tidyr
7549 r-tidytree
7550 r-treeio
7551 r-yulab-utils))
7552 (native-inputs (list r-knitr))
7553 (home-page "https://yulab-smu.top/treedata-book/")
7554 (synopsis "R package for visualization of trees and annotation data")
7555 (description
7556 "This package extends the ggplot2 plotting system which implements a
7557 grammar of graphics. ggtree is designed for visualization and annotation of
7558 phylogenetic trees and other tree-like structures with their annotation
7559 data.")
7560 (license license:artistic2.0)))
7561
7562 (define-public r-metapod
7563 (package
7564 (name "r-metapod")
7565 (version "1.4.0")
7566 (source
7567 (origin
7568 (method url-fetch)
7569 (uri (bioconductor-uri "metapod" version))
7570 (sha256
7571 (base32
7572 "19g9c08alg4qqr710si465wlb5dy759m5d8wn91zwj24077dds7b"))))
7573 (properties `((upstream-name . "metapod")))
7574 (build-system r-build-system)
7575 (propagated-inputs
7576 (list r-rcpp))
7577 (native-inputs
7578 (list r-knitr))
7579 (home-page "https://bioconductor.org/packages/metapod")
7580 (synopsis "Meta-analyses on p-values of differential analyses")
7581 (description
7582 "This package implements a variety of methods for combining p-values in
7583 differential analyses of genome-scale datasets. Functions can combine
7584 p-values across different tests in the same analysis (e.g., genomic windows in
7585 ChIP-seq, exons in RNA-seq) or for corresponding tests across separate
7586 analyses (e.g., replicated comparisons, effect of different treatment
7587 conditions). Support is provided for handling log-transformed input p-values,
7588 missing values and weighting where appropriate.")
7589 (license license:gpl3)))
7590
7591 (define-public r-biocsingular
7592 (package
7593 (name "r-biocsingular")
7594 (version "1.12.0")
7595 (source
7596 (origin
7597 (method url-fetch)
7598 (uri (bioconductor-uri "BiocSingular" version))
7599 (sha256
7600 (base32
7601 "1sraycnn0jahpi8kni1y8ik00ga89fvwqjmbr8388968q22mvm3x"))))
7602 (properties `((upstream-name . "BiocSingular")))
7603 (build-system r-build-system)
7604 (propagated-inputs
7605 (list r-beachmat
7606 r-biocgenerics
7607 r-biocparallel
7608 r-delayedarray
7609 r-irlba
7610 r-matrix
7611 r-rcpp
7612 r-rsvd
7613 r-s4vectors
7614 r-scaledmatrix))
7615 (native-inputs
7616 (list r-knitr))
7617 (home-page "https://github.com/LTLA/BiocSingular")
7618 (synopsis "Singular value decomposition for Bioconductor packages")
7619 (description
7620 "This package implements exact and approximate methods for singular value
7621 decomposition and principal components analysis, in a framework that allows
7622 them to be easily switched within Bioconductor packages or workflows. Where
7623 possible, parallelization is achieved using the BiocParallel framework.")
7624 (license license:gpl3)))
7625
7626 (define-public r-destiny
7627 (package
7628 (name "r-destiny")
7629 (version "3.10.0")
7630 (source
7631 (origin
7632 (method url-fetch)
7633 (uri (bioconductor-uri "destiny" version))
7634 (sha256
7635 (base32
7636 "1c85ky5ggdsi0ab1l4ipl85gc1kj1zv3wp08qrvslax3z0yw0ljy"))))
7637 (build-system r-build-system)
7638 (propagated-inputs
7639 (list r-biobase
7640 r-biocgenerics
7641 r-ggplot-multistats
7642 r-ggplot2
7643 r-ggthemes
7644 r-irlba
7645 r-knn-covertree
7646 r-matrix
7647 r-pcamethods
7648 r-proxy
7649 r-rcpp
7650 r-rcppeigen
7651 r-rcpphnsw
7652 r-rspectra
7653 r-scales
7654 r-scatterplot3d
7655 r-singlecellexperiment
7656 r-smoother
7657 r-summarizedexperiment
7658 r-tidyr
7659 r-tidyselect
7660 r-vim))
7661 (native-inputs
7662 (list r-knitr r-nbconvertr)) ; for vignettes
7663 (home-page "https://bioconductor.org/packages/destiny/")
7664 (synopsis "Create and plot diffusion maps")
7665 (description "This package provides tools to create and plot diffusion
7666 maps.")
7667 ;; Any version of the GPL
7668 (license license:gpl3+)))
7669
7670 (define-public r-savr
7671 (package
7672 (name "r-savr")
7673 (version "1.34.0")
7674 (source
7675 (origin
7676 (method url-fetch)
7677 (uri (bioconductor-uri "savR" version))
7678 (sha256
7679 (base32
7680 "04zlf3lyr6vnpj80m6fd2is2f7302sxwih8nzzjnc4ss972jid2k"))))
7681 (properties `((upstream-name . "savR")))
7682 (build-system r-build-system)
7683 (propagated-inputs
7684 (list r-ggplot2 r-gridextra r-reshape2 r-scales r-xml))
7685 (home-page "https://github.com/bcalder/savR")
7686 (synopsis "Parse and analyze Illumina SAV files")
7687 (description
7688 "This package provides tools to parse Illumina Sequence Analysis
7689 Viewer (SAV) files, access data, and generate QC plots.")
7690 (license license:agpl3+)))
7691
7692 (define-public r-chipexoqual
7693 (package
7694 (name "r-chipexoqual")
7695 (version "1.20.0")
7696 (source
7697 (origin
7698 (method url-fetch)
7699 (uri (bioconductor-uri "ChIPexoQual" version))
7700 (sha256
7701 (base32
7702 "1r4s8awvwwj1g33jpnzfxji23mfy0chkhi14i0ml5sh090xijpaz"))))
7703 (properties `((upstream-name . "ChIPexoQual")))
7704 (build-system r-build-system)
7705 (propagated-inputs
7706 (list r-biocparallel
7707 r-biovizbase
7708 r-broom
7709 r-data-table
7710 r-dplyr
7711 r-genomeinfodb
7712 r-genomicalignments
7713 r-genomicranges
7714 r-ggplot2
7715 r-hexbin
7716 r-iranges
7717 r-rcolorbrewer
7718 r-rmarkdown
7719 r-rsamtools
7720 r-s4vectors
7721 r-scales
7722 r-viridis))
7723 (native-inputs
7724 (list r-knitr))
7725 (home-page "https://github.com/keleslab/ChIPexoQual")
7726 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
7727 (description
7728 "This package provides a quality control pipeline for ChIP-exo/nexus
7729 sequencing data.")
7730 (license license:gpl2+)))
7731
7732 (define-public r-copynumber
7733 (package
7734 (name "r-copynumber")
7735 (version "1.36.0")
7736 (source (origin
7737 (method url-fetch)
7738 (uri (bioconductor-uri "copynumber" version))
7739 (sha256
7740 (base32
7741 "1gr8q9ri49x8qlmbsi6k6wcak1w9v48wr1qy7axc86brzx6z6mhd"))))
7742 (build-system r-build-system)
7743 (propagated-inputs
7744 (list r-s4vectors r-iranges r-genomicranges r-biocgenerics))
7745 (home-page "https://bioconductor.org/packages/copynumber")
7746 (synopsis "Segmentation of single- and multi-track copy number data")
7747 (description
7748 "This package segments single- and multi-track copy number data by a
7749 penalized least squares regression method.")
7750 (license license:artistic2.0)))
7751
7752 (define-public r-dnacopy
7753 (package
7754 (name "r-dnacopy")
7755 (version "1.70.0")
7756 (source
7757 (origin
7758 (method url-fetch)
7759 (uri (bioconductor-uri "DNAcopy" version))
7760 (sha256
7761 (base32
7762 "10bh4p8nbl84rfngsm3bi9w542m159kff95f8c2hvjcxv5yw7iwc"))))
7763 (properties `((upstream-name . "DNAcopy")))
7764 (build-system r-build-system)
7765 (native-inputs (list gfortran))
7766 (home-page "https://bioconductor.org/packages/DNAcopy")
7767 (synopsis "DNA copy number data analysis")
7768 (description
7769 "This package implements the @dfn{circular binary segmentation} (CBS)
7770 algorithm to segment DNA copy number data and identify genomic regions with
7771 abnormal copy number.")
7772 (license license:gpl2+)))
7773
7774 ;; This is a CRAN package, but it uncharacteristically depends on a
7775 ;; Bioconductor package.
7776 (define-public r-htscluster
7777 (package
7778 (name "r-htscluster")
7779 (version "2.0.8")
7780 (source
7781 (origin
7782 (method url-fetch)
7783 (uri (cran-uri "HTSCluster" version))
7784 (sha256
7785 (base32
7786 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
7787 (properties `((upstream-name . "HTSCluster")))
7788 (build-system r-build-system)
7789 (propagated-inputs
7790 (list r-capushe r-edger r-plotrix))
7791 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
7792 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
7793 (description
7794 "This package provides a Poisson mixture model is implemented to cluster
7795 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
7796 estimation is performed using either the EM or CEM algorithm, and the slope
7797 heuristics are used for model selection (i.e., to choose the number of
7798 clusters).")
7799 (license license:gpl3+)))
7800
7801 (define-public r-deds
7802 (package
7803 (name "r-deds")
7804 (version "1.60.0")
7805 (source
7806 (origin
7807 (method url-fetch)
7808 (uri (bioconductor-uri "DEDS" version))
7809 (sha256
7810 (base32
7811 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
7812 (properties `((upstream-name . "DEDS")))
7813 (build-system r-build-system)
7814 (home-page "https://bioconductor.org/packages/DEDS/")
7815 (synopsis "Differential expression via distance summary for microarray data")
7816 (description
7817 "This library contains functions that calculate various statistics of
7818 differential expression for microarray data, including t statistics, fold
7819 change, F statistics, SAM, moderated t and F statistics and B statistics. It
7820 also implements a new methodology called DEDS (Differential Expression via
7821 Distance Summary), which selects differentially expressed genes by integrating
7822 and summarizing a set of statistics using a weighted distance approach.")
7823 ;; Any version of the LGPL.
7824 (license license:lgpl3+)))
7825
7826 ;; This is a CRAN package, but since it depends on a Bioconductor package we
7827 ;; put it here.
7828 (define-public r-nbpseq
7829 (package
7830 (name "r-nbpseq")
7831 (version "0.3.1")
7832 (source
7833 (origin
7834 (method url-fetch)
7835 (uri (cran-uri "NBPSeq" version))
7836 (sha256
7837 (base32
7838 "07mnnk4n0cyksp1mw36y6369is62kxsfg3wb8d3dwswycdmj8m14"))))
7839 (properties `((upstream-name . "NBPSeq")))
7840 (build-system r-build-system)
7841 (propagated-inputs
7842 (list r-qvalue))
7843 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
7844 (synopsis "Negative binomial models for RNA-Seq data")
7845 (description
7846 "This package provides negative binomial models for two-group comparisons
7847 and regression inferences from RNA-sequencing data.")
7848 (license license:gpl2)))
7849
7850 (define-public r-ebseq
7851 (package
7852 (name "r-ebseq")
7853 (version "1.36.0")
7854 (source
7855 (origin
7856 (method url-fetch)
7857 (uri (bioconductor-uri "EBSeq" version))
7858 (sha256
7859 (base32
7860 "192xl9fwsh04w563yk33mfl303d1kqby2ssbqkckqsdr4jb7d57y"))))
7861 (properties `((upstream-name . "EBSeq")))
7862 (build-system r-build-system)
7863 (propagated-inputs
7864 (list r-blockmodeling r-gplots r-testthat))
7865 (home-page "https://bioconductor.org/packages/EBSeq")
7866 (synopsis "Differential expression analysis of RNA-seq data")
7867 (description
7868 "This package provides tools for differential expression analysis at both
7869 gene and isoform level using RNA-seq data")
7870 (license license:artistic2.0)))
7871
7872 (define-public r-karyoploter
7873 (package
7874 (name "r-karyoploter")
7875 (version "1.22.0")
7876 (source (origin
7877 (method url-fetch)
7878 (uri (bioconductor-uri "karyoploteR" version))
7879 (sha256
7880 (base32
7881 "0hawq9wi3ikvlcdgnjfy5fiiwfq22zwx1p8xf5h4bpypp96pknsk"))))
7882 (build-system r-build-system)
7883 (propagated-inputs
7884 (list r-annotationdbi
7885 r-bamsignals
7886 r-bezier
7887 r-biovizbase
7888 r-digest
7889 r-genomeinfodb
7890 r-genomicfeatures
7891 r-genomicranges
7892 r-iranges
7893 r-memoise
7894 r-regioner
7895 r-rsamtools
7896 r-rtracklayer
7897 r-s4vectors
7898 r-variantannotation))
7899 (native-inputs
7900 (list r-knitr))
7901 (home-page "https://bioconductor.org/packages/karyoploteR/")
7902 (synopsis "Plot customizable linear genomes displaying arbitrary data")
7903 (description "This package creates karyotype plots of arbitrary genomes and
7904 offers a complete set of functions to plot arbitrary data on them. It mimics
7905 many R base graphics functions coupling them with a coordinate change function
7906 automatically mapping the chromosome and data coordinates into the plot
7907 coordinates.")
7908 (license license:artistic2.0)))
7909
7910 (define-public r-lpsymphony
7911 (package
7912 (name "r-lpsymphony")
7913 (version "1.24.0")
7914 (source
7915 (origin
7916 (method url-fetch)
7917 (uri (bioconductor-uri "lpsymphony" version))
7918 (sha256
7919 (base32
7920 "0kc708ss5byzw8qh439mb4nq6hsfmz73gfamiznw3lv352brd33g"))))
7921 (build-system r-build-system)
7922 (arguments
7923 (list
7924 #:phases
7925 '(modify-phases %standard-phases
7926 (add-after 'unpack 'make-build-order-reproducible
7927 (lambda _
7928 (substitute* '("src/SYMPHONY/Cgl/configure.ac"
7929 "src/SYMPHONY/Cgl/configure")
7930 (("for file in `ls \\*/Makefile.in`")
7931 "for file in `ls */Makefile.in | sort`")))))))
7932 (inputs
7933 (list zlib))
7934 (native-inputs
7935 (list pkg-config r-knitr))
7936 (home-page "https://r-forge.r-project.org/projects/rsymphony")
7937 (synopsis "Symphony integer linear programming solver in R")
7938 (description
7939 "This package was derived from Rsymphony. The package provides an R
7940 interface to SYMPHONY, a linear programming solver written in C++. The main
7941 difference between this package and Rsymphony is that it includes the solver
7942 source code, while Rsymphony expects to find header and library files on the
7943 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
7944 to install interface to SYMPHONY.")
7945 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
7946 ;; lpsimphony is released under the same terms.
7947 (license license:epl1.0)))
7948
7949 (define-public r-ihw
7950 (package
7951 (name "r-ihw")
7952 (version "1.24.0")
7953 (source
7954 (origin
7955 (method url-fetch)
7956 (uri (bioconductor-uri "IHW" version))
7957 (sha256
7958 (base32
7959 "1gsfy75dz7xh16z844llcmjnp0a0ridszmrbbv2bdaa43na5msmf"))))
7960 (properties `((upstream-name . "IHW")))
7961 (build-system r-build-system)
7962 (propagated-inputs
7963 (list r-biocgenerics r-fdrtool r-lpsymphony r-slam))
7964 (native-inputs
7965 (list r-knitr))
7966 (home-page "https://bioconductor.org/packages/IHW")
7967 (synopsis "Independent hypothesis weighting")
7968 (description
7969 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
7970 procedure that increases power compared to the method of Benjamini and
7971 Hochberg by assigning data-driven weights to each hypothesis. The input to
7972 IHW is a two-column table of p-values and covariates. The covariate can be
7973 any continuous-valued or categorical variable that is thought to be
7974 informative on the statistical properties of each hypothesis test, while it is
7975 independent of the p-value under the null hypothesis.")
7976 (license license:artistic2.0)))
7977
7978 (define-public r-icobra
7979 (package
7980 (name "r-icobra")
7981 (version "1.24.1")
7982 (source
7983 (origin
7984 (method url-fetch)
7985 (uri (bioconductor-uri "iCOBRA" version))
7986 (sha256
7987 (base32
7988 "1gvra5bgsf6lvs4f2md3xx7xxsx4j8079c2nr8vz9lvy2sfyl6s9"))))
7989 (properties `((upstream-name . "iCOBRA")))
7990 (build-system r-build-system)
7991 (propagated-inputs
7992 (list r-dplyr
7993 r-dt
7994 r-ggplot2
7995 r-limma
7996 r-markdown
7997 r-reshape2
7998 r-rocr
7999 r-scales
8000 r-shiny
8001 r-shinybs
8002 r-shinydashboard
8003 r-upsetr))
8004 (native-inputs
8005 (list r-knitr))
8006 (home-page "https://bioconductor.org/packages/iCOBRA")
8007 (synopsis "Comparison and visualization of ranking and assignment methods")
8008 (description
8009 "This package provides functions for calculation and visualization of
8010 performance metrics for evaluation of ranking and binary
8011 classification (assignment) methods. It also contains a Shiny application for
8012 interactive exploration of results.")
8013 (license license:gpl2+)))
8014
8015 (define-public r-residualmatrix
8016 (package
8017 (name "r-residualmatrix")
8018 (version "1.6.0")
8019 (source
8020 (origin
8021 (method url-fetch)
8022 (uri (bioconductor-uri "ResidualMatrix" version))
8023 (sha256
8024 (base32
8025 "1pjr3gva0jwj2pgqr4k4nl1ir1153hhrk1d400r30w0di472hns4"))))
8026 (properties
8027 `((upstream-name . "ResidualMatrix")))
8028 (build-system r-build-system)
8029 (propagated-inputs
8030 (list r-delayedarray r-matrix r-s4vectors))
8031 (native-inputs
8032 (list r-knitr))
8033 (home-page "https://github.com/LTLA/ResidualMatrix")
8034 (synopsis "Create a DelayedMatrix of regression residuals")
8035 (description
8036 "This package implements tools for delayed computation of a matrix of
8037 residuals after fitting a linear model to each column of an input matrix. It
8038 also supports partial computation of residuals where selected factors are to
8039 be preserved in the output matrix. It implements a number of efficient
8040 methods for operating on the delayed matrix of residuals, most notably matrix
8041 multiplication and calculation of row/column sums or means.")
8042 (license license:gpl3)))
8043
8044 (define-public r-batchelor
8045 (package
8046 (name "r-batchelor")
8047 (version "1.12.3")
8048 (source
8049 (origin
8050 (method url-fetch)
8051 (uri (bioconductor-uri "batchelor" version))
8052 (sha256
8053 (base32
8054 "00ix3hvhgalxg63qnynv2waa273jk336lg47k72qwxfzimsxfjxc"))))
8055 (properties `((upstream-name . "batchelor")))
8056 (build-system r-build-system)
8057 (propagated-inputs
8058 (list r-beachmat
8059 r-biocgenerics
8060 r-biocneighbors
8061 r-biocparallel
8062 r-biocsingular
8063 r-delayedarray
8064 r-delayedmatrixstats
8065 r-igraph
8066 r-matrix
8067 r-rcpp
8068 r-residualmatrix
8069 r-s4vectors
8070 r-scaledmatrix
8071 r-scuttle
8072 r-singlecellexperiment
8073 r-summarizedexperiment))
8074 (native-inputs (list r-knitr))
8075 (home-page "https://bioconductor.org/packages/batchelor")
8076 (synopsis "Single-Cell Batch Correction Methods")
8077 (description
8078 "This package implements a variety of methods for batch correction of
8079 single-cell (RNA sequencing) data. This includes methods based on detecting
8080 mutually nearest neighbors, as well as several efficient variants of linear
8081 regression of the log-expression values. Functions are also provided to
8082 perform global rescaling to remove differences in depth between batches, and
8083 to perform a principal components analysis that is robust to differences in
8084 the numbers of cells across batches.")
8085 (license license:gpl3)))
8086
8087 (define-public r-mast
8088 (package
8089 (name "r-mast")
8090 (version "1.22.0")
8091 (source
8092 (origin
8093 (method url-fetch)
8094 (uri (bioconductor-uri "MAST" version))
8095 (sha256
8096 (base32
8097 "1kmrqxcfzzcs8l33n9qn0vahc6wxq6ks3cjx95vg96maf2qzhzzi"))))
8098 (properties `((upstream-name . "MAST")))
8099 (build-system r-build-system)
8100 (propagated-inputs
8101 (list r-abind
8102 r-biobase
8103 r-biocgenerics
8104 r-data-table
8105 r-ggplot2
8106 r-plyr
8107 r-progress
8108 r-reshape2
8109 r-s4vectors
8110 r-singlecellexperiment
8111 r-stringr
8112 r-summarizedexperiment))
8113 (native-inputs
8114 (list r-knitr))
8115 (home-page "https://github.com/RGLab/MAST/")
8116 (synopsis "Model-based analysis of single cell transcriptomics")
8117 (description
8118 "This package provides methods and models for handling zero-inflated
8119 single cell assay data.")
8120 (license license:gpl2+)))
8121
8122 (define-public r-monocle
8123 (package
8124 (name "r-monocle")
8125 (version "2.24.1")
8126 (source
8127 (origin
8128 (method url-fetch)
8129 (uri (bioconductor-uri "monocle" version))
8130 (sha256
8131 (base32
8132 "11g1wx0f1yzhg3x1aa3d5l7pqlzxj16s0gha21skxkgld8k2x8xn"))))
8133 (build-system r-build-system)
8134 (propagated-inputs
8135 (list r-biobase
8136 r-biocgenerics
8137 r-biocviews
8138 r-cluster
8139 r-combinat
8140 r-ddrtree
8141 r-dplyr
8142 r-fastica
8143 r-ggplot2
8144 r-hsmmsinglecell
8145 r-igraph
8146 r-irlba
8147 r-leidenbase
8148 r-limma
8149 r-mass
8150 r-matrix
8151 r-matrixstats
8152 r-pheatmap
8153 r-plyr
8154 r-proxy
8155 r-qlcmatrix
8156 r-rann
8157 r-rcpp
8158 r-reshape2
8159 r-rtsne
8160 r-slam
8161 r-stringr
8162 r-tibble
8163 r-vgam
8164 r-viridis))
8165 (native-inputs
8166 (list r-knitr))
8167 (home-page "https://bioconductor.org/packages/monocle")
8168 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
8169 (description
8170 "Monocle performs differential expression and time-series analysis for
8171 single-cell expression experiments. It orders individual cells according to
8172 progress through a biological process, without knowing ahead of time which
8173 genes define progress through that process. Monocle also performs
8174 differential expression analysis, clustering, visualization, and other useful
8175 tasks on single cell expression data. It is designed to work with RNA-Seq and
8176 qPCR data, but could be used with other types as well.")
8177 (license license:artistic2.0)))
8178
8179 (define-public r-leidenbase
8180 (let ((commit "a11b8455fa3307d9e3ac4e3a5accddf3c83b9a96")
8181 (revision "1"))
8182 (package
8183 (name "r-leidenbase")
8184 (version (git-version "0.1.9" revision commit))
8185 (source
8186 (origin
8187 (method git-fetch)
8188 (uri (git-reference
8189 (url "https://github.com/cole-trapnell-lab/leidenbase")
8190 (commit commit)))
8191 (file-name (git-file-name name version))
8192 (sha256
8193 (base32
8194 "1f54mycsffvzmblz5pzgs3v4jygnbvz0c9d3x710gw5mxkq2p84f"))))
8195 (properties `((upstream-name . "leidenbase")))
8196 (build-system r-build-system)
8197 (inputs
8198 (list zlib))
8199 (native-inputs
8200 (list gfortran))
8201 (propagated-inputs
8202 (list r-igraph))
8203 (home-page "https://github.com/cole-trapnell-lab/leidenbase")
8204 (synopsis "R and C wrappers to run the Leiden find_partition function")
8205 (description
8206 "This package provides an R to C interface that runs the Leiden
8207 community detection algorithm to find a basic partition. It runs the
8208 equivalent of the @code{find_partition} function. This package includes the
8209 required source code files from the official Leidenalg distribution and
8210 several functions from the R igraph package.")
8211 (license license:gpl3+))))
8212
8213 (define-public r-sanssouci
8214 ;; sansscouci doesn't have a (versioned) release yet.
8215 ;; This is the latest commit as of packaging for Guix.
8216 (let ((commit "5fe20a9aaf4ac637fa83d9cc73ff1c22de97ca6f")
8217 (revision "1"))
8218 (package
8219 (name "r-sanssouci")
8220 (version (git-version "0" revision commit))
8221 (source (origin
8222 (method git-fetch)
8223 (uri (git-reference
8224 (url "https://github.com/pneuvial/sanssouci.git")
8225 (commit commit)))
8226 (file-name (git-file-name name version))
8227 (sha256
8228 (base32
8229 "13ycdd790qw64qy2zdvcrpj3fc8as628rsly32438d3rifnlc5sk"))))
8230 (build-system r-build-system)
8231 (propagated-inputs
8232 (list r-generics r-matrix r-matrixstats r-rcpp r-rcpparmadillo))
8233 (home-page "https://pneuvial.github.io/sanssouci")
8234 (synopsis "Post Hoc multiple testing inference")
8235 (description
8236 "The goal of sansSouci is to perform post hoc inference: in a multiple
8237 testing context, sansSouci provides statistical guarantees on possibly
8238 user-defined and/or data-driven sets of hypotheses.")
8239 (license license:gpl3))))
8240
8241 (define-public r-monocle3
8242 (package
8243 (name "r-monocle3")
8244 (version "1.0.0")
8245 (source
8246 (origin
8247 (method git-fetch)
8248 (uri (git-reference
8249 (url "https://github.com/cole-trapnell-lab/monocle3")
8250 (commit version)))
8251 (file-name (git-file-name name version))
8252 (sha256
8253 (base32
8254 "16vpvlbms8fdvpfwzcig0rkg2mxnsq1h80d2l7q3953wm91qc9x4"))))
8255 (build-system r-build-system)
8256 (propagated-inputs
8257 (list r-assertthat
8258 r-batchelor
8259 r-biobase
8260 r-biocgenerics
8261 r-delayedmatrixstats
8262 r-dplyr
8263 r-ggplot2
8264 r-ggrepel
8265 r-grr
8266 r-htmlwidgets
8267 r-igraph
8268 r-irlba
8269 r-leidenbase
8270 r-limma
8271 r-lmtest
8272 r-mass
8273 r-matrix
8274 r-matrix-utils
8275 r-pbapply
8276 r-pbmcapply
8277 r-pheatmap
8278 r-plotly
8279 r-pryr
8280 r-proxy
8281 r-pscl
8282 r-purrr
8283 r-rann
8284 r-rcpp
8285 r-rcppparallel
8286 r-reshape2
8287 r-reticulate
8288 r-rhpcblasctl
8289 r-rsample
8290 r-rtsne
8291 r-shiny
8292 r-slam
8293 r-spdep
8294 r-speedglm
8295 r-stringr
8296 r-singlecellexperiment
8297 r-tibble
8298 r-tidyr
8299 r-uwot
8300 r-viridis))
8301 (home-page "https://github.com/cole-trapnell-lab/monocle3")
8302 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
8303 (description
8304 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
8305 (license license:expat)))
8306
8307 (define-public r-noiseq
8308 (package
8309 (name "r-noiseq")
8310 (version "2.40.0")
8311 (source
8312 (origin
8313 (method url-fetch)
8314 (uri (bioconductor-uri "NOISeq" version))
8315 (sha256
8316 (base32
8317 "0ah6adlhv4254jkssinn2ik8n811hd1nw85bnzqk2kwhl49nrk27"))))
8318 (properties `((upstream-name . "NOISeq")))
8319 (build-system r-build-system)
8320 (propagated-inputs
8321 (list r-biobase r-matrix))
8322 (home-page "https://bioconductor.org/packages/NOISeq")
8323 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
8324 (description
8325 "This package provides tools to support the analysis of RNA-seq
8326 expression data or other similar kind of data. It provides exploratory plots
8327 to evaluate saturation, count distribution, expression per chromosome, type of
8328 detected features, features length, etc. It also supports the analysis of
8329 differential expression between two experimental conditions with no parametric
8330 assumptions.")
8331 (license license:artistic2.0)))
8332
8333 (define-public r-scdd
8334 (package
8335 (name "r-scdd")
8336 (version "1.20.0")
8337 (source
8338 (origin
8339 (method url-fetch)
8340 (uri (bioconductor-uri "scDD" version))
8341 (sha256
8342 (base32
8343 "0bjww338z5qf2g97kbh85h9kpagjr59ff9f4alm33h16xz5mb7k0"))))
8344 (properties `((upstream-name . "scDD")))
8345 (build-system r-build-system)
8346 (propagated-inputs
8347 (list r-arm
8348 r-biocparallel
8349 r-ebseq
8350 r-fields
8351 r-ggplot2
8352 r-mclust
8353 r-outliers
8354 r-s4vectors
8355 r-scran
8356 r-singlecellexperiment
8357 r-summarizedexperiment))
8358 (native-inputs
8359 (list r-knitr))
8360 (home-page "https://github.com/kdkorthauer/scDD")
8361 (synopsis "Mixture modeling of single-cell RNA-seq data")
8362 (description
8363 "This package implements a method to analyze single-cell RNA-seq data
8364 utilizing flexible Dirichlet Process mixture models. Genes with differential
8365 distributions of expression are classified into several interesting patterns
8366 of differences between two conditions. The package also includes functions
8367 for simulating data with these patterns from negative binomial
8368 distributions.")
8369 (license license:gpl2)))
8370
8371 (define-public r-scone
8372 (package
8373 (name "r-scone")
8374 (version "1.20.0")
8375 (source
8376 (origin
8377 (method url-fetch)
8378 (uri (bioconductor-uri "scone" version))
8379 (sha256
8380 (base32
8381 "05id34n6min03ha1chg5mrvx399qm2mby9kxkaz5w8fbidp97851"))))
8382 (build-system r-build-system)
8383 (propagated-inputs
8384 (list r-aroma-light
8385 r-biocparallel
8386 r-boot
8387 r-class
8388 r-cluster
8389 r-compositions
8390 r-diptest
8391 r-edger
8392 r-fpc
8393 r-gplots
8394 r-hexbin
8395 r-limma
8396 r-matrixgenerics
8397 r-matrixstats
8398 r-mixtools
8399 r-rarpack
8400 r-rcolorbrewer
8401 r-rhdf5
8402 r-ruvseq
8403 r-singlecellexperiment
8404 r-summarizedexperiment))
8405 (native-inputs
8406 (list r-knitr))
8407 (home-page "https://bioconductor.org/packages/scone")
8408 (synopsis "Single cell overview of normalized expression data")
8409 (description
8410 "SCONE is an R package for comparing and ranking the performance of
8411 different normalization schemes for single-cell RNA-seq and other
8412 high-throughput analyses.")
8413 (license license:artistic2.0)))
8414
8415 (define-public r-geoquery
8416 (package
8417 (name "r-geoquery")
8418 (version "2.64.2")
8419 (source
8420 (origin
8421 (method url-fetch)
8422 (uri (bioconductor-uri "GEOquery" version))
8423 (sha256
8424 (base32
8425 "1cvkvq2haz831qi8w0gd3ayvxfxsl0z5klhki4gkfi9xqdv1gi9x"))))
8426 (properties `((upstream-name . "GEOquery")))
8427 (build-system r-build-system)
8428 (propagated-inputs
8429 (list r-biobase
8430 r-curl
8431 r-data-table
8432 r-dplyr
8433 r-limma
8434 r-magrittr
8435 r-r-utils
8436 r-readr
8437 r-tidyr
8438 r-xml2))
8439 (native-inputs
8440 (list r-knitr))
8441 (home-page "https://github.com/seandavi/GEOquery/")
8442 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
8443 (description
8444 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
8445 microarray data. Given the rich and varied nature of this resource, it is
8446 only natural to want to apply BioConductor tools to these data. GEOquery is
8447 the bridge between GEO and BioConductor.")
8448 (license license:gpl2)))
8449
8450 (define-public r-illuminaio
8451 (package
8452 (name "r-illuminaio")
8453 (version "0.38.0")
8454 (source
8455 (origin
8456 (method url-fetch)
8457 (uri (bioconductor-uri "illuminaio" version))
8458 (sha256
8459 (base32
8460 "1xk057a9w4ps8xi8jyw8imkjcicfmzns8g92grn4af7yiip68h62"))))
8461 (build-system r-build-system)
8462 (propagated-inputs
8463 (list r-base64))
8464 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
8465 (synopsis "Parse Illumina microarray output files")
8466 (description
8467 "This package provides tools for parsing Illumina's microarray output
8468 files, including IDAT.")
8469 (license license:gpl2)))
8470
8471 (define-public r-siggenes
8472 (package
8473 (name "r-siggenes")
8474 (version "1.70.0")
8475 (source
8476 (origin
8477 (method url-fetch)
8478 (uri (bioconductor-uri "siggenes" version))
8479 (sha256
8480 (base32
8481 "0amjqm2c8p1vjzx109p7n81wbsbx8rljwn6mbkl7dpi834im9d7l"))))
8482 (build-system r-build-system)
8483 (propagated-inputs
8484 (list r-biobase r-multtest r-scrime))
8485 (home-page "https://bioconductor.org/packages/siggenes/")
8486 (synopsis
8487 "Multiple testing using SAM and Efron's empirical Bayes approaches")
8488 (description
8489 "This package provides tools for the identification of differentially
8490 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
8491 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
8492 Bayes Analyses of Microarrays} (EBAM).")
8493 (license license:lgpl2.0+)))
8494
8495 (define-public r-bumphunter
8496 (package
8497 (name "r-bumphunter")
8498 (version "1.38.0")
8499 (source
8500 (origin
8501 (method url-fetch)
8502 (uri (bioconductor-uri "bumphunter" version))
8503 (sha256
8504 (base32
8505 "0k92ps9chqsimbc7vsr8swg679zfv8nfn5zahbqq4nknhhy7hwxw"))))
8506 (build-system r-build-system)
8507 (propagated-inputs
8508 (list r-annotationdbi
8509 r-biocgenerics
8510 r-dorng
8511 r-foreach
8512 r-genomeinfodb
8513 r-genomicfeatures
8514 r-genomicranges
8515 r-iranges
8516 r-iterators
8517 r-limma
8518 r-locfit
8519 r-matrixstats
8520 r-s4vectors))
8521 (home-page "https://github.com/ririzarr/bumphunter")
8522 (synopsis "Find bumps in genomic data")
8523 (description
8524 "This package provides tools for finding bumps in genomic data in order
8525 to identify differentially methylated regions in epigenetic epidemiology
8526 studies.")
8527 (license license:artistic2.0)))
8528
8529 (define-public r-minfi
8530 (package
8531 (name "r-minfi")
8532 (version "1.42.0")
8533 (source
8534 (origin
8535 (method url-fetch)
8536 (uri (bioconductor-uri "minfi" version))
8537 (sha256
8538 (base32
8539 "0255z7w5i5k01w8wn7jkb37h3q7m7vg0szqgk76h330yydnmkrq6"))))
8540 (build-system r-build-system)
8541 (propagated-inputs
8542 (list r-beanplot
8543 r-biobase
8544 r-biocgenerics
8545 r-biocparallel
8546 r-biostrings
8547 r-bumphunter
8548 r-data-table
8549 r-delayedarray
8550 r-delayedmatrixstats
8551 r-genefilter
8552 r-genomeinfodb
8553 r-genomicranges
8554 r-geoquery
8555 r-hdf5array
8556 r-illuminaio
8557 r-iranges
8558 r-lattice
8559 r-limma
8560 r-mass
8561 r-mclust
8562 r-nlme
8563 r-nor1mix
8564 r-preprocesscore
8565 r-quadprog
8566 r-rcolorbrewer
8567 r-reshape
8568 r-s4vectors
8569 r-siggenes
8570 r-summarizedexperiment))
8571 (native-inputs
8572 (list r-knitr))
8573 (home-page "https://github.com/hansenlab/minfi")
8574 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
8575 (description
8576 "This package provides tools to analyze and visualize Illumina Infinium
8577 methylation arrays.")
8578 (license license:artistic2.0)))
8579
8580 (define-public r-methylumi
8581 (package
8582 (name "r-methylumi")
8583 (version "2.42.0")
8584 (source
8585 (origin
8586 (method url-fetch)
8587 (uri (bioconductor-uri "methylumi" version))
8588 (sha256
8589 (base32
8590 "0klkinq55lfj1d4z8gkrv98849079x1l5gd15habw7jq9xxvhjww"))))
8591 (build-system r-build-system)
8592 (propagated-inputs
8593 (list r-annotate
8594 r-annotationdbi
8595 r-biobase
8596 r-biocgenerics
8597 r-fdb-infiniummethylation-hg19
8598 r-genefilter
8599 r-genomeinfodb
8600 r-genomicfeatures
8601 r-genomicranges
8602 r-ggplot2
8603 r-illuminaio
8604 r-iranges
8605 r-lattice
8606 r-matrixstats
8607 r-minfi
8608 r-reshape2
8609 r-s4vectors
8610 r-scales
8611 r-summarizedexperiment))
8612 (native-inputs
8613 (list r-knitr))
8614 (home-page "https://bioconductor.org/packages/methylumi")
8615 (synopsis "Handle Illumina methylation data")
8616 (description
8617 "This package provides classes for holding and manipulating Illumina
8618 methylation data. Based on eSet, it can contain MIAME information, sample
8619 information, feature information, and multiple matrices of data. An
8620 \"intelligent\" import function, methylumiR can read the Illumina text files
8621 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
8622 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
8623 background correction, and quality control features for GoldenGate, Infinium,
8624 and Infinium HD arrays are also included.")
8625 (license license:gpl2)))
8626
8627 (define-public r-lumi
8628 (package
8629 (name "r-lumi")
8630 (version "2.48.0")
8631 (source
8632 (origin
8633 (method url-fetch)
8634 (uri (bioconductor-uri "lumi" version))
8635 (sha256
8636 (base32
8637 "06zmll5j1yymsm3byarhllrz4q1w5mzv267a9g6visn73wan8y9d"))))
8638 (build-system r-build-system)
8639 (propagated-inputs
8640 (list r-affy
8641 r-annotate
8642 r-annotationdbi
8643 r-biobase
8644 r-dbi
8645 r-genomicfeatures
8646 r-genomicranges
8647 r-kernsmooth
8648 r-lattice
8649 r-mass
8650 r-methylumi
8651 r-mgcv
8652 r-nleqslv
8653 r-preprocesscore
8654 r-rsqlite))
8655 (home-page "https://bioconductor.org/packages/lumi")
8656 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
8657 (description
8658 "The lumi package provides an integrated solution for the Illumina
8659 microarray data analysis. It includes functions of Illumina
8660 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
8661 variance stabilization, normalization and gene annotation at the probe level.
8662 It also includes the functions of processing Illumina methylation microarrays,
8663 especially Illumina Infinium methylation microarrays.")
8664 (license license:lgpl2.0+)))
8665
8666 (define-public r-linnorm
8667 (package
8668 (name "r-linnorm")
8669 (version "2.20.0")
8670 (source
8671 (origin
8672 (method url-fetch)
8673 (uri (bioconductor-uri "Linnorm" version))
8674 (sha256
8675 (base32
8676 "1002lllgns5klv3q2wsikkbypa2bafpka7a8mri0y5bfxncfr2zb"))))
8677 (properties `((upstream-name . "Linnorm")))
8678 (build-system r-build-system)
8679 (propagated-inputs
8680 (list r-amap
8681 r-apcluster
8682 r-ellipse
8683 r-fastcluster
8684 r-fpc
8685 r-ggdendro
8686 r-ggplot2
8687 r-gmodels
8688 r-igraph
8689 r-limma
8690 r-mass
8691 r-mclust
8692 r-rcpp
8693 r-rcpparmadillo
8694 r-rtsne
8695 r-statmod
8696 r-vegan
8697 r-zoo))
8698 (native-inputs
8699 (list r-knitr))
8700 (home-page "http://www.jjwanglab.org/Linnorm/")
8701 (synopsis "Linear model and normality based transformation method")
8702 (description
8703 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
8704 count data or any large scale count data. It transforms such datasets for
8705 parametric tests. In addition to the transformtion function (@code{Linnorm}),
8706 the following pipelines are implemented:
8707
8708 @enumerate
8709 @item Library size/batch effect normalization (@code{Linnorm.Norm})
8710 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
8711 clustering or hierarchical clustering (@code{Linnorm.tSNE},
8712 @code{Linnorm.PCA}, @code{Linnorm.HClust})
8713 @item Differential expression analysis or differential peak detection using
8714 limma (@code{Linnorm.limma})
8715 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
8716 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
8717 @item Stable gene selection for scRNA-seq data; for users without or who do
8718 not want to rely on spike-in genes (@code{Linnorm.SGenes})
8719 @item Data imputation (@code{Linnorm.DataImput}).
8720 @end enumerate
8721
8722 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
8723 @code{RnaXSim} function is included for simulating RNA-seq data for the
8724 evaluation of DEG analysis methods.")
8725 (license license:expat)))
8726
8727 (define-public r-ioniser
8728 (package
8729 (name "r-ioniser")
8730 (version "2.20.0")
8731 (source
8732 (origin
8733 (method url-fetch)
8734 (uri (bioconductor-uri "IONiseR" version))
8735 (sha256
8736 (base32
8737 "0cgx1dcfh617l9vr4r3ky8w7f0snl0vpavfd9n1h5n68p0p42dwi"))))
8738 (properties `((upstream-name . "IONiseR")))
8739 (build-system r-build-system)
8740 (propagated-inputs
8741 (list r-biocgenerics
8742 r-biocparallel
8743 r-biostrings
8744 r-bit64
8745 r-dplyr
8746 r-ggplot2
8747 r-magrittr
8748 r-rhdf5
8749 r-shortread
8750 r-stringr
8751 r-tibble
8752 r-tidyr
8753 r-xvector))
8754 (native-inputs
8755 (list r-knitr))
8756 (home-page "https://bioconductor.org/packages/IONiseR/")
8757 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
8758 (description
8759 "IONiseR provides tools for the quality assessment of Oxford Nanopore
8760 MinION data. It extracts summary statistics from a set of fast5 files and can
8761 be used either before or after base calling. In addition to standard
8762 summaries of the read-types produced, it provides a number of plots for
8763 visualising metrics relative to experiment run time or spatially over the
8764 surface of a flowcell.")
8765 (license license:expat)))
8766
8767 ;; This is a CRAN package, but it depends on multtest from Bioconductor.
8768 (define-public r-mutoss
8769 (package
8770 (name "r-mutoss")
8771 (version "0.1-12")
8772 (source
8773 (origin
8774 (method url-fetch)
8775 (uri (cran-uri "mutoss" version))
8776 (sha256
8777 (base32
8778 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
8779 (properties `((upstream-name . "mutoss")))
8780 (build-system r-build-system)
8781 (propagated-inputs
8782 (list r-multcomp r-multtest r-mvtnorm r-plotrix))
8783 (home-page "https://github.com/kornl/mutoss/")
8784 (synopsis "Unified multiple testing procedures")
8785 (description
8786 "This package is designed to ease the application and comparison of
8787 multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
8788 are standardized and usable by the accompanying mutossGUI package.")
8789 ;; Any version of the GPL.
8790 (license (list license:gpl2+ license:gpl3+))))
8791
8792 ;; This is a CRAN package, but it depends on mutoss, which depends on multtest
8793 ;; from Bioconductor, so we put it here.
8794 (define-public r-metap
8795 (package
8796 (name "r-metap")
8797 (version "1.8")
8798 (source
8799 (origin
8800 (method url-fetch)
8801 (uri (cran-uri "metap" version))
8802 (sha256
8803 (base32
8804 "0asmypxfxly4xmcjf3yzid5zqlzg88z0brij2splfk4avsl035gf"))))
8805 (build-system r-build-system)
8806 (propagated-inputs
8807 (list r-lattice
8808 r-mathjaxr
8809 r-mutoss
8810 r-qqconf
8811 r-rdpack
8812 r-tfisher))
8813 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
8814 (synopsis "Meta-analysis of significance values")
8815 (description
8816 "The canonical way to perform meta-analysis involves using effect sizes.
8817 When they are not available this package provides a number of methods for
8818 meta-analysis of significance values including the methods of Edgington,
8819 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
8820 published results; and a routine for graphical display.")
8821 (license license:gpl2)))
8822
8823 (define-public r-tradeseq
8824 (package
8825 (name "r-tradeseq")
8826 (version "1.10.0")
8827 (source (origin
8828 (method url-fetch)
8829 (uri (bioconductor-uri "tradeSeq" version))
8830 (sha256
8831 (base32
8832 "0v9nqxrwa69qhmyaicn2vvs8haha4kzs93iqim306331vadp9qm0"))))
8833 (build-system r-build-system)
8834 (propagated-inputs
8835 (list r-biobase
8836 r-biocparallel
8837 r-edger
8838 r-ggplot2
8839 r-igraph
8840 r-magrittr
8841 r-mass
8842 r-matrix
8843 r-matrixstats
8844 r-mgcv
8845 r-pbapply
8846 r-princurve
8847 r-rcolorbrewer
8848 r-s4vectors
8849 r-singlecellexperiment
8850 r-slingshot
8851 r-summarizedexperiment
8852 r-tibble
8853 r-trajectoryutils
8854 r-viridis))
8855 (native-inputs
8856 (list r-knitr))
8857 (home-page "https://statomics.github.io/tradeSeq/index.html")
8858 (synopsis "Trajectory-based differential expression analysis")
8859 (description
8860 "This package provides a flexible method for fitting regression models that
8861 can be used to find genes that are differentially expressed along one or
8862 multiple lineages in a trajectory. Based on the fitted models, it uses a
8863 variety of tests suited to answer different questions of interest, e.g. the
8864 discovery of genes for which expression is associated with pseudotime, or which
8865 are differentially expressed (in a specific region) along the trajectory. It
8866 fits a negative binomial generalized additive model (GAM) for each gene, and
8867 performs inference on the parameters of the GAM.")
8868 (license license:expat)))
8869
8870 (define-public r-triform
8871 (package
8872 (name "r-triform")
8873 (version "1.29.0")
8874 (source
8875 (origin
8876 (method url-fetch)
8877 (uri (bioconductor-uri "triform" version))
8878 (sha256
8879 (base32
8880 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
8881 (build-system r-build-system)
8882 (propagated-inputs
8883 (list r-biocgenerics r-iranges r-yaml))
8884 (home-page "https://bioconductor.org/packages/triform/")
8885 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
8886 (description
8887 "The Triform algorithm uses model-free statistics to identify peak-like
8888 distributions of TF ChIP sequencing reads, taking advantage of an improved
8889 peak definition in combination with known profile characteristics.")
8890 (license license:gpl2)))
8891
8892 (define-public r-varianttools
8893 (package
8894 (name "r-varianttools")
8895 (version "1.38.0")
8896 (source
8897 (origin
8898 (method url-fetch)
8899 (uri (bioconductor-uri "VariantTools" version))
8900 (sha256
8901 (base32
8902 "18nxcamfgnw4n2ab0czxglw0sqc9wzdqzpjv43lcyyal23lzzsix"))))
8903 (properties `((upstream-name . "VariantTools")))
8904 (build-system r-build-system)
8905 (propagated-inputs
8906 (list r-biobase
8907 r-biocgenerics
8908 r-biocparallel
8909 r-biostrings
8910 r-bsgenome
8911 r-genomeinfodb
8912 r-genomicfeatures
8913 r-genomicranges
8914 r-iranges
8915 r-matrix
8916 r-rsamtools
8917 r-rtracklayer
8918 r-s4vectors
8919 r-variantannotation))
8920 (home-page "https://bioconductor.org/packages/VariantTools/")
8921 (synopsis "Tools for exploratory analysis of variant calls")
8922 (description
8923 "Explore, diagnose, and compare variant calls using filters. The
8924 VariantTools package supports a workflow for loading data, calling single
8925 sample variants and tumor-specific somatic mutations or other sample-specific
8926 variant types (e.g., RNA editing). Most of the functions operate on
8927 alignments (BAM files) or datasets of called variants. The user is expected
8928 to have already aligned the reads with a separate tool, e.g., GSNAP via
8929 gmapR.")
8930 (license license:artistic2.0)))
8931
8932 (define-public r-heatplus
8933 (package
8934 (name "r-heatplus")
8935 (version "3.4.0")
8936 (source
8937 (origin
8938 (method url-fetch)
8939 (uri (bioconductor-uri "Heatplus" version))
8940 (sha256
8941 (base32
8942 "0b1mzxysmrqinp93p587apna8p0llmawblwj93icydqxxm2jkhb1"))))
8943 (properties `((upstream-name . "Heatplus")))
8944 (build-system r-build-system)
8945 (propagated-inputs
8946 (list r-rcolorbrewer))
8947 (home-page "https://github.com/alexploner/Heatplus")
8948 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
8949 (description
8950 "This package provides tools to display a rectangular heatmap (intensity
8951 plot) of a data matrix. By default, both samples (columns) and features (row)
8952 of the matrix are sorted according to a hierarchical clustering, and the
8953 corresponding dendrogram is plotted. Optionally, panels with additional
8954 information about samples and features can be added to the plot.")
8955 (license license:gpl2+)))
8956
8957 (define-public r-gosemsim
8958 (package
8959 (name "r-gosemsim")
8960 (version "2.22.0")
8961 (source
8962 (origin
8963 (method url-fetch)
8964 (uri (bioconductor-uri "GOSemSim" version))
8965 (sha256
8966 (base32
8967 "1hp15pzd0m0g9f8kglyfsgjqxnvxcmm9022xnsrkzfvmj2yw14vd"))))
8968 (properties `((upstream-name . "GOSemSim")))
8969 (build-system r-build-system)
8970 (propagated-inputs
8971 (list r-annotationdbi r-go-db r-rcpp))
8972 (native-inputs
8973 (list r-knitr))
8974 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
8975 (synopsis "GO-terms semantic similarity measures")
8976 (description
8977 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
8978 quantitative ways to compute similarities between genes and gene groups, and
8979 have became important basis for many bioinformatics analysis approaches.
8980 GOSemSim is an R package for semantic similarity computation among GO terms,
8981 sets of GO terms, gene products and gene clusters.")
8982 (license license:artistic2.0)))
8983
8984 (define-public r-anota
8985 (package
8986 (name "r-anota")
8987 (version "1.44.0")
8988 (source
8989 (origin
8990 (method url-fetch)
8991 (uri (bioconductor-uri "anota" version))
8992 (sha256
8993 (base32
8994 "1x75r5znl8jllqsgzpxsqj62ch11bpwhmyzmbjmb8sz8f8ww923c"))))
8995 (build-system r-build-system)
8996 (propagated-inputs
8997 (list r-multtest r-qvalue))
8998 (home-page "https://bioconductor.org/packages/anota/")
8999 (synopsis "Analysis of translational activity")
9000 (description
9001 "Genome wide studies of translational control is emerging as a tool to
9002 study various biological conditions. The output from such analysis is both
9003 the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
9004 involved in translation (the actively translating mRNA level) for each mRNA.
9005 The standard analysis of such data strives towards identifying differential
9006 translational between two or more sample classes - i.e., differences in
9007 actively translated mRNA levels that are independent of underlying differences
9008 in cytosolic mRNA levels. This package allows for such analysis using partial
9009 variances and the random variance model. As 10s of thousands of mRNAs are
9010 analyzed in parallel the library performs a number of tests to assure that
9011 the data set is suitable for such analysis.")
9012 (license license:gpl3)))
9013
9014 (define-public r-sigpathway
9015 (package
9016 (name "r-sigpathway")
9017 (version "1.64.0")
9018 (source
9019 (origin
9020 (method url-fetch)
9021 (uri (bioconductor-uri "sigPathway" version))
9022 (sha256
9023 (base32
9024 "1c2kwhbxgf66az7ssm2mab9n5x59zy4kxq8vblz5r9636xqaysif"))))
9025 (properties `((upstream-name . "sigPathway")))
9026 (build-system r-build-system)
9027 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
9028 (synopsis "Pathway analysis")
9029 (description
9030 "This package is used to conduct pathway analysis by calculating the NT_k
9031 and NE_k statistics in a statistical framework for determining whether a
9032 specified group of genes for a pathway has a coordinated association with a
9033 phenotype of interest.")
9034 (license license:gpl2)))
9035
9036 (define-public r-fcscan
9037 (package
9038 (name "r-fcscan")
9039 (version "1.10.0")
9040 (source
9041 (origin
9042 (method url-fetch)
9043 (uri (bioconductor-uri "fcScan" version))
9044 (sha256
9045 (base32 "0yv7ifw0xxx1v9z8dxszv0cb72q3frd74dyxfbvrcs6x9y9v3jzp"))))
9046 (properties `((upstream-name . "fcScan")))
9047 (build-system r-build-system)
9048 (propagated-inputs
9049 (list r-doparallel
9050 r-foreach
9051 r-genomicranges
9052 r-iranges
9053 r-plyr
9054 r-rtracklayer
9055 r-summarizedexperiment
9056 r-variantannotation))
9057 (native-inputs (list r-knitr))
9058 (home-page "https://bioconductor.org/packages/fcScan")
9059 (synopsis "Detect clusters of coordinates with user defined options")
9060 (description
9061 "This package is used to detect combination of genomic coordinates
9062 falling within a user defined window size along with user defined overlap
9063 between identified neighboring clusters. It can be used for genomic data
9064 where the clusters are built on a specific chromosome or specific strand.
9065 Clustering can be performed with a \"greedy\" option allowing thus the
9066 presence of additional sites within the allowed window size.")
9067 (license license:artistic2.0)))
9068
9069 (define-public r-fgsea
9070 (package
9071 (name "r-fgsea")
9072 (version "1.22.0")
9073 (source
9074 (origin
9075 (method url-fetch)
9076 (uri (bioconductor-uri "fgsea" version))
9077 (sha256
9078 (base32
9079 "0innyggai6l4fpl4qrblzdc52vqw9jaszmip0yr1lv7rzwyl6mpg"))))
9080 (build-system r-build-system)
9081 (propagated-inputs
9082 (list r-bh
9083 r-biocparallel
9084 r-data-table
9085 r-fastmatch
9086 r-ggplot2
9087 r-gridextra
9088 r-matrix
9089 r-rcpp))
9090 (native-inputs
9091 (list r-knitr))
9092 (home-page "https://github.com/ctlab/fgsea/")
9093 (synopsis "Fast gene set enrichment analysis")
9094 (description
9095 "The package implements an algorithm for fast gene set enrichment
9096 analysis. Using the fast algorithm makes more permutations and gets
9097 more fine grained p-values, which allows using accurate standard approaches
9098 to multiple hypothesis correction.")
9099 (license license:expat)))
9100
9101 (define-public r-dose
9102 (package
9103 (name "r-dose")
9104 (version "3.22.0")
9105 (source
9106 (origin
9107 (method url-fetch)
9108 (uri (bioconductor-uri "DOSE" version))
9109 (sha256
9110 (base32
9111 "11lg4ql0bi54p2wg3z1dw9rwqai37khgcqbs4cb7zf67ml8jadwp"))))
9112 (properties `((upstream-name . "DOSE")))
9113 (build-system r-build-system)
9114 (propagated-inputs
9115 (list r-annotationdbi
9116 r-biocparallel
9117 r-do-db
9118 r-fgsea
9119 r-ggplot2
9120 r-gosemsim
9121 r-qvalue
9122 r-reshape2))
9123 (native-inputs
9124 (list r-knitr))
9125 (home-page "https://guangchuangyu.github.io/software/DOSE/")
9126 (synopsis "Disease ontology semantic and enrichment analysis")
9127 (description
9128 "This package implements five methods proposed by Resnik, Schlicker,
9129 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
9130 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
9131 including hypergeometric model and gene set enrichment analysis are also
9132 implemented for discovering disease associations of high-throughput biological
9133 data.")
9134 (license license:artistic2.0)))
9135
9136 (define-public r-enrichplot
9137 (package
9138 (name "r-enrichplot")
9139 (version "1.16.1")
9140 (source
9141 (origin
9142 (method url-fetch)
9143 (uri (bioconductor-uri "enrichplot" version))
9144 (sha256
9145 (base32
9146 "17ln1wbkq8sp7jw0dpkccj5qcsl382sgd7zic04dk99z9ag3mh02"))))
9147 (build-system r-build-system)
9148 (propagated-inputs
9149 (list r-aplot
9150 r-dose
9151 r-ggplot2
9152 r-ggraph
9153 r-ggtree
9154 r-gosemsim
9155 r-igraph
9156 r-magrittr
9157 r-plyr
9158 r-purrr
9159 r-rcolorbrewer
9160 r-reshape2
9161 r-scatterpie
9162 r-shadowtext
9163 r-yulab-utils))
9164 (native-inputs
9165 (list r-knitr))
9166 (home-page "https://github.com/GuangchuangYu/enrichplot")
9167 (synopsis "Visualization of functional enrichment result")
9168 (description
9169 "The enrichplot package implements several visualization methods for
9170 interpreting functional enrichment results obtained from ORA or GSEA analyses.
9171 All the visualization methods are developed based on ggplot2 graphics.")
9172 (license license:artistic2.0)))
9173
9174 (define-public r-clusterprofiler
9175 (package
9176 (name "r-clusterprofiler")
9177 (version "4.4.4")
9178 (source
9179 (origin
9180 (method url-fetch)
9181 (uri (bioconductor-uri "clusterProfiler" version))
9182 (sha256
9183 (base32
9184 "0k5jhry0j6wa7779n3hrw4ld4bvyahpgpbwi2a0g704m3dd3mqp5"))))
9185 (properties
9186 `((upstream-name . "clusterProfiler")))
9187 (build-system r-build-system)
9188 (propagated-inputs
9189 (list r-annotationdbi
9190 r-dose
9191 r-downloader
9192 r-dplyr
9193 r-enrichplot
9194 r-go-db
9195 r-gosemsim
9196 r-magrittr
9197 r-plyr
9198 r-qvalue
9199 r-rlang
9200 r-tidyr
9201 r-yulab-utils))
9202 (native-inputs
9203 (list r-knitr))
9204 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
9205 (synopsis "Analysis and visualization of functional profiles for gene clusters")
9206 (description
9207 "This package implements methods to analyze and visualize functional
9208 profiles (GO and KEGG) of gene and gene clusters.")
9209 (license license:artistic2.0)))
9210
9211 (define-public r-clusterexperiment
9212 (package
9213 (name "r-clusterexperiment")
9214 (version "2.16.0")
9215 (source (origin
9216 (method url-fetch)
9217 (uri (bioconductor-uri "clusterExperiment" version))
9218 (sha256
9219 (base32
9220 "1xd2kxmdg51hhj0zvz7pxmpdvb1sya7prsf9ny2wj2y8ivrqgn4f"))))
9221 (build-system r-build-system)
9222 (native-inputs
9223 (list r-knitr))
9224 (propagated-inputs
9225 (list r-ape
9226 r-biocgenerics
9227 r-biocsingular
9228 r-cluster
9229 r-delayedarray
9230 r-edger
9231 r-hdf5array
9232 r-howmany
9233 r-kernlab
9234 r-limma
9235 r-locfdr
9236 r-matrix
9237 r-matrixstats
9238 r-mbkmeans
9239 r-nmf
9240 r-phylobase
9241 r-pracma
9242 r-rcolorbrewer
9243 r-rcpp
9244 r-s4vectors
9245 r-scales
9246 r-singlecellexperiment
9247 r-stringr
9248 r-summarizedexperiment
9249 r-zinbwave))
9250 (home-page "https://bioconductor.org/packages/clusterExperiment/")
9251 (synopsis "Compare clusterings for single-cell sequencing")
9252 (description "This package provides functionality for running and comparing
9253 many different clusterings of single-cell sequencing data or other large mRNA
9254 expression data sets.")
9255 (license license:artistic2.0)))
9256
9257 (define-public r-mlinterfaces
9258 (package
9259 (name "r-mlinterfaces")
9260 (version "1.76.0")
9261 (source
9262 (origin
9263 (method url-fetch)
9264 (uri (bioconductor-uri "MLInterfaces" version))
9265 (sha256
9266 (base32
9267 "179d19kxjipfkc40z15337x1vzqd7vz3gbmr2lw5w7x9l857ngs5"))))
9268 (properties `((upstream-name . "MLInterfaces")))
9269 (build-system r-build-system)
9270 (propagated-inputs
9271 (list r-annotate
9272 r-biobase
9273 r-biocgenerics
9274 r-cluster
9275 r-fpc
9276 r-gbm
9277 r-gdata
9278 r-genefilter
9279 r-ggvis
9280 r-hwriter
9281 r-magrittr
9282 r-mass
9283 r-mlbench
9284 r-pls
9285 r-rcolorbrewer
9286 r-rcpp
9287 r-rpart
9288 r-sfsmisc
9289 r-shiny
9290 r-threejs))
9291 (home-page "https://bioconductor.org/packages/MLInterfaces/")
9292 (synopsis "Interfaces to R machine learning procedures")
9293 (description
9294 "This package provides uniform interfaces to machine learning code for
9295 data in R and Bioconductor containers.")
9296 ;; Any version of the LGPL.
9297 (license license:lgpl2.1+)))
9298
9299 (define-public r-annaffy
9300 (package
9301 (name "r-annaffy")
9302 (version "1.68.0")
9303 (source
9304 (origin
9305 (method url-fetch)
9306 (uri (bioconductor-uri "annaffy" version))
9307 (sha256
9308 (base32
9309 "1fbqknwbl4534h66xrhcryg9pavm9fkja47gqbsxf8bd5yhk5mgq"))))
9310 (build-system r-build-system)
9311 (arguments
9312 `(#:phases
9313 (modify-phases %standard-phases
9314 (add-after 'unpack 'remove-reference-to-non-free-data
9315 (lambda _
9316 (substitute* "DESCRIPTION"
9317 ((", KEGG.db") "")))))))
9318 (propagated-inputs
9319 (list r-annotationdbi r-biobase r-biocmanager r-dbi r-go-db))
9320 (home-page "https://bioconductor.org/packages/annaffy/")
9321 (synopsis "Annotation tools for Affymetrix biological metadata")
9322 (description
9323 "This package provides functions for handling data from Bioconductor
9324 Affymetrix annotation data packages. It produces compact HTML and text
9325 reports including experimental data and URL links to many online databases.
9326 It allows searching of biological metadata using various criteria.")
9327 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
9328 ;; the LGPL 2.1 is included.
9329 (license license:lgpl2.1+)))
9330
9331 (define-public r-a4core
9332 (package
9333 (name "r-a4core")
9334 (version "1.44.0")
9335 (source
9336 (origin
9337 (method url-fetch)
9338 (uri (bioconductor-uri "a4Core" version))
9339 (sha256
9340 (base32
9341 "1ky1lphq6bqxj6h12pg06cvs451fziqam8gd56wmpk6r5pbg4390"))))
9342 (properties `((upstream-name . "a4Core")))
9343 (build-system r-build-system)
9344 (propagated-inputs
9345 (list r-biobase r-glmnet))
9346 (native-inputs
9347 (list r-knitr))
9348 (home-page "https://bioconductor.org/packages/a4Core")
9349 (synopsis "Automated Affymetrix array analysis core package")
9350 (description
9351 "This is the core package for the automated analysis of Affymetrix
9352 arrays.")
9353 (license license:gpl3)))
9354
9355 (define-public r-a4classif
9356 (package
9357 (name "r-a4classif")
9358 (version "1.44.0")
9359 (source
9360 (origin
9361 (method url-fetch)
9362 (uri (bioconductor-uri "a4Classif" version))
9363 (sha256
9364 (base32
9365 "1v61vgpqrf7bhk44n2gkxb8dm5d0rr8c9rd6fdcjs50nhij0lbiw"))))
9366 (properties `((upstream-name . "a4Classif")))
9367 (build-system r-build-system)
9368 (propagated-inputs
9369 (list r-a4core
9370 r-a4preproc
9371 r-biobase
9372 r-glmnet
9373 r-pamr
9374 r-rocr
9375 r-varselrf))
9376 (native-inputs
9377 (list r-knitr))
9378 (home-page "https://bioconductor.org/packages/a4Classif/")
9379 (synopsis "Automated Affymetrix array analysis classification package")
9380 (description
9381 "This is the classification package for the automated analysis of
9382 Affymetrix arrays.")
9383 (license license:gpl3)))
9384
9385 (define-public r-a4preproc
9386 (package
9387 (name "r-a4preproc")
9388 (version "1.44.0")
9389 (source
9390 (origin
9391 (method url-fetch)
9392 (uri (bioconductor-uri "a4Preproc" version))
9393 (sha256
9394 (base32
9395 "098yzy7x5536bj76iavismdsdn7x6x07aw0j3knj6i9www9y8yz9"))))
9396 (properties `((upstream-name . "a4Preproc")))
9397 (build-system r-build-system)
9398 (propagated-inputs
9399 (list r-biobase r-biocgenerics))
9400 (native-inputs
9401 (list r-knitr))
9402 (home-page "https://bioconductor.org/packages/a4Preproc/")
9403 (synopsis "Automated Affymetrix array analysis preprocessing package")
9404 (description
9405 "This is a package for the automated analysis of Affymetrix arrays. It
9406 is used for preprocessing the arrays.")
9407 (license license:gpl3)))
9408
9409 (define-public r-a4reporting
9410 (package
9411 (name "r-a4reporting")
9412 (version "1.44.0")
9413 (source
9414 (origin
9415 (method url-fetch)
9416 (uri (bioconductor-uri "a4Reporting" version))
9417 (sha256
9418 (base32
9419 "03sypayh187gqc6hykkqr1g0vb3zxc2c3xyp00jfbn12b35acnb0"))))
9420 (properties `((upstream-name . "a4Reporting")))
9421 (build-system r-build-system)
9422 (propagated-inputs
9423 (list r-xtable))
9424 (native-inputs
9425 (list r-knitr))
9426 (home-page "https://bioconductor.org/packages/a4Reporting/")
9427 (synopsis "Automated Affymetrix array analysis reporting package")
9428 (description
9429 "This is a package for the automated analysis of Affymetrix arrays. It
9430 provides reporting features.")
9431 (license license:gpl3)))
9432
9433 (define-public r-a4base
9434 (package
9435 (name "r-a4base")
9436 (version "1.44.0")
9437 (source
9438 (origin
9439 (method url-fetch)
9440 (uri (bioconductor-uri "a4Base" version))
9441 (sha256
9442 (base32
9443 "15zqirz16gpks9f5d3d76h85b936za2jih74vfr55l5arqrrvvsn"))))
9444 (properties `((upstream-name . "a4Base")))
9445 (build-system r-build-system)
9446 (propagated-inputs
9447 (list r-a4core
9448 r-a4preproc
9449 r-annaffy
9450 r-biobase
9451 r-genefilter
9452 r-glmnet
9453 r-gplots
9454 r-limma
9455 r-mpm
9456 r-multtest))
9457 (home-page "https://bioconductor.org/packages/a4Base/")
9458 (synopsis "Automated Affymetrix array analysis base package")
9459 (description
9460 "This package provides basic features for the automated analysis of
9461 Affymetrix arrays.")
9462 (license license:gpl3)))
9463
9464 (define-public r-a4
9465 (package
9466 (name "r-a4")
9467 (version "1.44.0")
9468 (source
9469 (origin
9470 (method url-fetch)
9471 (uri (bioconductor-uri "a4" version))
9472 (sha256
9473 (base32
9474 "1zs8fs6mdd7fhsmx4k824mid0jk400cm6dwfhl8z5lg85y8y2n0r"))))
9475 (build-system r-build-system)
9476 (propagated-inputs
9477 (list r-a4base r-a4classif r-a4core r-a4preproc r-a4reporting))
9478 (home-page "https://bioconductor.org/packages/a4/")
9479 (synopsis "Automated Affymetrix array analysis umbrella package")
9480 (description
9481 "This package provides a software suite for the automated analysis of
9482 Affymetrix arrays.")
9483 (license license:gpl3)))
9484
9485 (define-public r-abseqr
9486 (package
9487 (name "r-abseqr")
9488 (version "1.14.0")
9489 (source
9490 (origin
9491 (method url-fetch)
9492 (uri (bioconductor-uri "abseqR" version))
9493 (sha256
9494 (base32
9495 "0jh3rj6ag07vpw6fymqm6m4jkrm9mgf50zkjncahxdf52mna8a9b"))))
9496 (properties `((upstream-name . "abseqR")))
9497 (build-system r-build-system)
9498 (inputs
9499 (list pandoc))
9500 (propagated-inputs
9501 (list r-biocparallel
9502 r-biocstyle
9503 r-circlize
9504 r-flexdashboard
9505 r-ggcorrplot
9506 r-ggdendro
9507 r-ggplot2
9508 r-gridextra
9509 r-knitr
9510 r-plotly
9511 r-plyr
9512 r-png
9513 r-rcolorbrewer
9514 r-reshape2
9515 r-rmarkdown
9516 r-stringr
9517 r-vegan
9518 r-venndiagram))
9519 (native-inputs
9520 (list r-knitr))
9521 (home-page "https://github.com/malhamdoosh/abseqR")
9522 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
9523 (description
9524 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
9525 sequencing datasets generated from antibody libraries and abseqR is one of its
9526 packages. AbseqR empowers the users of abseqPy with plotting and reporting
9527 capabilities and allows them to generate interactive HTML reports for the
9528 convenience of viewing and sharing with other researchers. Additionally,
9529 abseqR extends abseqPy to compare multiple repertoire analyses and perform
9530 further downstream analysis on its output.")
9531 (license license:gpl3)))
9532
9533 (define-public r-bacon
9534 (package
9535 (name "r-bacon")
9536 (version "1.24.0")
9537 (source
9538 (origin
9539 (method url-fetch)
9540 (uri (bioconductor-uri "bacon" version))
9541 (sha256
9542 (base32
9543 "1zvcxdj3r892898ik5gq3jdbfig1438qws4bwd465ik8vi7g39v8"))))
9544 (build-system r-build-system)
9545 (propagated-inputs
9546 (list r-biocparallel r-ellipse r-ggplot2))
9547 (native-inputs
9548 (list r-knitr))
9549 (home-page "https://bioconductor.org/packages/bacon/")
9550 (synopsis "Controlling bias and inflation in association studies")
9551 (description
9552 "Bacon can be used to remove inflation and bias often observed in
9553 epigenome- and transcriptome-wide association studies. To this end bacon
9554 constructs an empirical null distribution using a Gibbs Sampling algorithm by
9555 fitting a three-component normal mixture on z-scores.")
9556 (license license:gpl2+)))
9557
9558 (define-public r-rgadem
9559 (package
9560 (name "r-rgadem")
9561 (version "2.44.0")
9562 (source
9563 (origin
9564 (method url-fetch)
9565 (uri (bioconductor-uri "rGADEM" version))
9566 (sha256
9567 (base32
9568 "013xdwz0c3n0n9hxf8kkx570qry961pgdjsp023531pl5ww2ing4"))))
9569 (properties `((upstream-name . "rGADEM")))
9570 (build-system r-build-system)
9571 (propagated-inputs
9572 (list r-biostrings r-bsgenome r-genomicranges r-iranges r-seqlogo))
9573 (home-page "https://bioconductor.org/packages/rGADEM/")
9574 (synopsis "De novo sequence motif discovery")
9575 (description
9576 "rGADEM is an efficient de novo motif discovery tool for large-scale
9577 genomic sequence data.")
9578 (license license:artistic2.0)))
9579
9580 (define-public r-motiv
9581 (package
9582 (name "r-motiv")
9583 (version "1.43.0")
9584 (source
9585 (origin
9586 (method url-fetch)
9587 (uri (bioconductor-uri "MotIV" version))
9588 (sha256
9589 (base32
9590 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
9591 (properties `((upstream-name . "MotIV")))
9592 (build-system r-build-system)
9593 (inputs
9594 (list gsl))
9595 (propagated-inputs
9596 (list r-biocgenerics
9597 r-biostrings
9598 r-genomicranges
9599 r-iranges
9600 r-lattice
9601 r-rgadem
9602 r-s4vectors))
9603 (home-page "https://bioconductor.org/packages/MotIV/")
9604 (synopsis "Motif identification and validation")
9605 (description
9606 "This package is used for the identification and validation of sequence
9607 motifs. It makes use of STAMP for comparing a set of motifs to a given
9608 database (e.g. JASPAR). It can also be used to visualize motifs, motif
9609 distributions, modules and filter motifs.")
9610 (license license:gpl2)))
9611
9612 (define-public r-motifdb
9613 (package
9614 (name "r-motifdb")
9615 (version "1.38.0")
9616 (source (origin
9617 (method url-fetch)
9618 (uri (bioconductor-uri "MotifDb" version))
9619 (sha256
9620 (base32 "1cyfz0l0yvdii3idaiq5w39yzxlzfpifa4v5pv7hdjfjj83a8rbi"))))
9621 (properties `((upstream-name . "MotifDb")))
9622 (build-system r-build-system)
9623 (propagated-inputs
9624 (list r-biocgenerics
9625 r-biostrings
9626 r-genomicranges
9627 r-iranges
9628 r-rtracklayer
9629 r-s4vectors
9630 r-splitstackshape))
9631 (native-inputs
9632 (list r-knitr))
9633 (home-page "https://www.bioconductor.org/packages/MotifDb/")
9634 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
9635 (description "This package provides more than 2000 annotated position
9636 frequency matrices from nine public sources, for multiple organisms.")
9637 (license license:artistic2.0)))
9638
9639 (define-public r-motifbreakr
9640 (package
9641 (name "r-motifbreakr")
9642 (version "2.10.0")
9643 (source (origin
9644 (method url-fetch)
9645 (uri (bioconductor-uri "motifbreakR" version))
9646 (sha256
9647 (base32 "0sad73jjx52qzp1fmygp6xqvaxwl5szi69f00f94i1pdyq70qhlg"))))
9648 (properties `((upstream-name . "motifbreakR")))
9649 (build-system r-build-system)
9650 (propagated-inputs
9651 (list r-biocgenerics
9652 r-biocparallel
9653 r-biostrings
9654 r-bsgenome
9655 r-genomeinfodb
9656 r-genomicranges
9657 r-gviz
9658 r-iranges
9659 r-matrixstats
9660 r-motifdb
9661 r-motifstack
9662 r-rtracklayer
9663 r-s4vectors
9664 r-stringr
9665 r-summarizedexperiment
9666 r-tfmpvalue
9667 r-variantannotation))
9668 (native-inputs
9669 (list r-knitr))
9670 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
9671 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
9672 (description "This package allows biologists to judge in the first place
9673 whether the sequence surrounding the polymorphism is a good match, and in
9674 the second place how much information is gained or lost in one allele of
9675 the polymorphism relative to another. This package gives a choice of
9676 algorithms for interrogation of genomes with motifs from public sources:
9677 @enumerate
9678 @item a weighted-sum probability matrix;
9679 @item log-probabilities;
9680 @item weighted by relative entropy.
9681 @end enumerate
9682
9683 This package can predict effects for novel or previously described variants in
9684 public databases, making it suitable for tasks beyond the scope of its original
9685 design. Lastly, it can be used to interrogate any genome curated within
9686 Bioconductor.")
9687 (license license:gpl2+)))
9688
9689 (define-public r-motifstack
9690 (package
9691 (name "r-motifstack")
9692 (version "1.40.0")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (bioconductor-uri "motifStack" version))
9697 (sha256
9698 (base32
9699 "0d2ihx73chczbv6f91n04qb372plrdv7k4qws8shyw1fmvb1rq0z"))))
9700 (properties `((upstream-name . "motifStack")))
9701 (build-system r-build-system)
9702 (propagated-inputs
9703 (list r-ade4
9704 r-biostrings
9705 r-ggplot2
9706 r-htmlwidgets
9707 r-tfbstools
9708 r-xml))
9709 (native-inputs
9710 (list r-knitr))
9711 (home-page "https://bioconductor.org/packages/motifStack/")
9712 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
9713 (description
9714 "The motifStack package is designed for graphic representation of
9715 multiple motifs with different similarity scores. It works with both DNA/RNA
9716 sequence motifs and amino acid sequence motifs. In addition, it provides the
9717 flexibility for users to customize the graphic parameters such as the font
9718 type and symbol colors.")
9719 (license license:gpl2+)))
9720
9721 (define-public r-genomicscores
9722 (package
9723 (name "r-genomicscores")
9724 (version "2.8.2")
9725 (source
9726 (origin
9727 (method url-fetch)
9728 (uri (bioconductor-uri "GenomicScores" version))
9729 (sha256
9730 (base32
9731 "12rcxw69an1d5q7ar58xy8s871l47imw2nm08j054ivxslx8597j"))))
9732 (properties `((upstream-name . "GenomicScores")))
9733 (build-system r-build-system)
9734 (propagated-inputs
9735 (list r-annotationhub
9736 r-biobase
9737 r-biocfilecache
9738 r-biocgenerics
9739 r-biocmanager
9740 r-biostrings
9741 r-delayedarray
9742 r-genomeinfodb
9743 r-genomicranges
9744 r-hdf5array
9745 r-httr
9746 r-iranges
9747 r-rhdf5
9748 r-s4vectors
9749 r-xml))
9750 (native-inputs
9751 (list r-knitr))
9752 (home-page "https://github.com/rcastelo/GenomicScores/")
9753 (synopsis "Work with genome-wide position-specific scores")
9754 (description
9755 "This package provides infrastructure to store and access genome-wide
9756 position-specific scores within R and Bioconductor.")
9757 (license license:artistic2.0)))
9758
9759 (define-public r-atacseqqc
9760 (package
9761 (name "r-atacseqqc")
9762 (version "1.20.2")
9763 (source
9764 (origin
9765 (method url-fetch)
9766 (uri (bioconductor-uri "ATACseqQC" version))
9767 (sha256
9768 (base32
9769 "0jj7n0mcj0gciw0ksazlksgmwzp51a40pwqhf0c7la0cc4bnrkqp"))))
9770 (properties `((upstream-name . "ATACseqQC")))
9771 (build-system r-build-system)
9772 (propagated-inputs
9773 (list r-biocgenerics
9774 r-biostrings
9775 r-bsgenome
9776 r-chippeakanno
9777 r-edger
9778 r-genomeinfodb
9779 r-genomicalignments
9780 r-genomicranges
9781 r-genomicscores
9782 r-iranges
9783 r-kernsmooth
9784 r-limma
9785 r-motifstack
9786 r-preseqr
9787 r-randomforest
9788 r-rsamtools
9789 r-rtracklayer
9790 r-s4vectors))
9791 (native-inputs
9792 (list r-knitr))
9793 (home-page "https://bioconductor.org/packages/ATACseqQC/")
9794 (synopsis "ATAC-seq quality control")
9795 (description
9796 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
9797 sequencing, is a rapid and sensitive method for chromatin accessibility
9798 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
9799 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
9800 assess whether their ATAC-seq experiment is successful. It includes
9801 diagnostic plots of fragment size distribution, proportion of mitochondria
9802 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
9803 footprints.")
9804 (license license:gpl2+)))
9805
9806 (define-public r-gofuncr
9807 (package
9808 (name "r-gofuncr")
9809 (version "1.16.0")
9810 (source
9811 (origin
9812 (method url-fetch)
9813 (uri (bioconductor-uri "GOfuncR" version))
9814 (sha256
9815 (base32
9816 "02vdfsjrqp0m06mfbspwkxjyqxfca0w1idgygpi1a9i5m4fqhwpk"))))
9817 (properties `((upstream-name . "GOfuncR")))
9818 (build-system r-build-system)
9819 (propagated-inputs
9820 (list r-annotationdbi
9821 r-genomicranges
9822 r-gtools
9823 r-iranges
9824 r-mapplots
9825 r-rcpp
9826 r-vioplot))
9827 (native-inputs
9828 (list r-knitr))
9829 (home-page "https://bioconductor.org/packages/GOfuncR/")
9830 (synopsis "Gene ontology enrichment using FUNC")
9831 (description
9832 "GOfuncR performs a gene ontology enrichment analysis based on the
9833 ontology enrichment software FUNC. GO-annotations are obtained from
9834 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
9835 included in the package and updated regularly. GOfuncR provides the standard
9836 candidate vs background enrichment analysis using the hypergeometric test, as
9837 well as three additional tests:
9838
9839 @enumerate
9840 @item the Wilcoxon rank-sum test that is used when genes are ranked,
9841 @item a binomial test that is used when genes are associated with two counts,
9842 and
9843 @item a Chi-square or Fisher's exact test that is used in cases when genes are
9844 associated with four counts.
9845 @end enumerate
9846
9847 To correct for multiple testing and interdependency of the tests, family-wise
9848 error rates are computed based on random permutations of the gene-associated
9849 variables. GOfuncR also provides tools for exploring the ontology graph and
9850 the annotations, and options to take gene-length or spatial clustering of
9851 genes into account. It is also possible to provide custom gene coordinates,
9852 annotations and ontologies.")
9853 (license license:gpl2+)))
9854
9855 (define-public r-abaenrichment
9856 (package
9857 (name "r-abaenrichment")
9858 (version "1.24.0")
9859 (source
9860 (origin
9861 (method url-fetch)
9862 (uri (bioconductor-uri "ABAEnrichment" version))
9863 (sha256
9864 (base32
9865 "1sp3f72rzlr822dxx42bswynrwwfx6f520hdhfdikqp13p2y4044"))))
9866 (properties `((upstream-name . "ABAEnrichment")))
9867 (build-system r-build-system)
9868 (propagated-inputs
9869 (list r-abadata
9870 r-data-table
9871 r-gofuncr
9872 r-gplots
9873 r-gtools
9874 r-rcpp))
9875 (native-inputs
9876 (list r-knitr))
9877 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
9878 (synopsis "Gene expression enrichment in human brain regions")
9879 (description
9880 "The package ABAEnrichment is designed to test for enrichment of user
9881 defined candidate genes in the set of expressed genes in different human brain
9882 regions. The core function @code{aba_enrich} integrates the expression of the
9883 candidate gene set (averaged across donors) and the structural information of
9884 the brain using an ontology, both provided by the Allen Brain Atlas project.")
9885 (license license:gpl2+)))
9886
9887 (define-public r-annotationfuncs
9888 (package
9889 (name "r-annotationfuncs")
9890 (version "1.40.0")
9891 (source
9892 (origin
9893 (method url-fetch)
9894 (uri (bioconductor-uri "AnnotationFuncs" version))
9895 (sha256
9896 (base32
9897 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
9898 (properties
9899 `((upstream-name . "AnnotationFuncs")))
9900 (build-system r-build-system)
9901 (propagated-inputs
9902 (list r-annotationdbi r-dbi))
9903 (home-page "https://www.iysik.com/r/annotationfuncs")
9904 (synopsis "Annotation translation functions")
9905 (description
9906 "This package provides functions for handling translating between
9907 different identifieres using the Biocore Data Team data-packages (e.g.
9908 @code{org.Bt.eg.db}).")
9909 (license license:gpl2)))
9910
9911 (define-public r-annotationtools
9912 (package
9913 (name "r-annotationtools")
9914 (version "1.70.0")
9915 (source
9916 (origin
9917 (method url-fetch)
9918 (uri (bioconductor-uri "annotationTools" version))
9919 (sha256
9920 (base32
9921 "122b424zida3j0vqkn8d06sg3jpc3ngsgidr8kgg00n4cjngkc51"))))
9922 (properties
9923 `((upstream-name . "annotationTools")))
9924 (build-system r-build-system)
9925 (propagated-inputs (list r-biobase))
9926 (home-page "https://bioconductor.org/packages/annotationTools/")
9927 (synopsis "Annotate microarrays and perform gene expression analyses")
9928 (description
9929 "This package provides functions to annotate microarrays, find orthologs,
9930 and integrate heterogeneous gene expression profiles using annotation and
9931 other molecular biology information available as flat file database (plain
9932 text files).")
9933 ;; Any version of the GPL.
9934 (license (list license:gpl2+))))
9935
9936 (define-public r-allelicimbalance
9937 (package
9938 (name "r-allelicimbalance")
9939 (version "1.34.0")
9940 (source
9941 (origin
9942 (method url-fetch)
9943 (uri (bioconductor-uri "AllelicImbalance" version))
9944 (sha256
9945 (base32
9946 "0w4xd0xzkwx7bbhrgqligpahlhg85rginknx520z891r8v0bim2z"))))
9947 (properties
9948 `((upstream-name . "AllelicImbalance")))
9949 (build-system r-build-system)
9950 (propagated-inputs
9951 (list r-annotationdbi
9952 r-biocgenerics
9953 r-biostrings
9954 r-bsgenome
9955 r-genomeinfodb
9956 r-genomicalignments
9957 r-genomicfeatures
9958 r-genomicranges
9959 r-gridextra
9960 r-gviz
9961 r-iranges
9962 r-lattice
9963 r-latticeextra
9964 r-nlme
9965 r-rsamtools
9966 r-s4vectors
9967 r-seqinr
9968 r-summarizedexperiment
9969 r-variantannotation))
9970 (native-inputs
9971 (list r-knitr))
9972 (home-page "https://github.com/pappewaio/AllelicImbalance")
9973 (synopsis "Investigate allele-specific expression")
9974 (description
9975 "This package provides a framework for allele-specific expression
9976 investigation using RNA-seq data.")
9977 (license license:gpl3)))
9978
9979 (define-public r-aucell
9980 (package
9981 (name "r-aucell")
9982 (version "1.18.1")
9983 (source
9984 (origin
9985 (method url-fetch)
9986 (uri (bioconductor-uri "AUCell" version))
9987 (sha256
9988 (base32
9989 "17wr7dycll0l1gax4w268qw7is163bs51rj6p1qnx1dgc9ibnsgr"))))
9990 (properties `((upstream-name . "AUCell")))
9991 (build-system r-build-system)
9992 (propagated-inputs
9993 (list r-biocgenerics
9994 r-data-table
9995 r-delayedarray
9996 r-delayedmatrixstats
9997 r-gseabase
9998 r-mixtools
9999 r-r-utils
10000 r-shiny
10001 r-summarizedexperiment))
10002 (native-inputs
10003 (list r-knitr))
10004 (home-page "https://bioconductor.org/packages/AUCell/")
10005 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
10006 (description
10007 "AUCell identifies cells with active gene sets (e.g. signatures,
10008 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
10009 Under the Curve} (AUC) to calculate whether a critical subset of the input
10010 gene set is enriched within the expressed genes for each cell. The
10011 distribution of AUC scores across all the cells allows exploring the relative
10012 expression of the signature. Since the scoring method is ranking-based,
10013 AUCell is independent of the gene expression units and the normalization
10014 procedure. In addition, since the cells are evaluated individually, it can
10015 easily be applied to bigger datasets, subsetting the expression matrix if
10016 needed.")
10017 (license license:gpl3)))
10018
10019 (define-public r-ebimage
10020 (package
10021 (name "r-ebimage")
10022 (version "4.38.0")
10023 (source
10024 (origin
10025 (method url-fetch)
10026 (uri (bioconductor-uri "EBImage" version))
10027 (sha256
10028 (base32
10029 "1vcx45bw36k9daw9dywj5bz77jmqk4gjfwsym8ajjnc1jmlq20si"))))
10030 (properties `((upstream-name . "EBImage")))
10031 (build-system r-build-system)
10032 (propagated-inputs
10033 (list r-abind
10034 r-biocgenerics
10035 r-fftwtools
10036 r-htmltools
10037 r-htmlwidgets
10038 r-jpeg
10039 r-locfit
10040 r-png
10041 r-rcurl
10042 r-tiff))
10043 (native-inputs
10044 (list r-knitr)) ; for vignettes
10045 (home-page "https://github.com/aoles/EBImage")
10046 (synopsis "Image processing and analysis toolbox for R")
10047 (description
10048 "EBImage provides general purpose functionality for image processing and
10049 analysis. In the context of (high-throughput) microscopy-based cellular
10050 assays, EBImage offers tools to segment cells and extract quantitative
10051 cellular descriptors. This allows the automation of such tasks using the R
10052 programming language and facilitates the use of other tools in the R
10053 environment for signal processing, statistical modeling, machine learning and
10054 visualization with image data.")
10055 ;; Any version of the LGPL.
10056 (license license:lgpl2.1+)))
10057
10058 (define-public r-yamss
10059 (package
10060 (name "r-yamss")
10061 (version "1.22.0")
10062 (source
10063 (origin
10064 (method url-fetch)
10065 (uri (bioconductor-uri "yamss" version))
10066 (sha256
10067 (base32
10068 "1lcfxw73cxvpy3bnq28pxdy5128mpq5xklsa0mzxdjyqc4g55hy8"))))
10069 (build-system r-build-system)
10070 (propagated-inputs
10071 (list r-biocgenerics
10072 r-data-table
10073 r-ebimage
10074 r-iranges
10075 r-limma
10076 r-matrix
10077 r-mzr
10078 r-s4vectors
10079 r-summarizedexperiment))
10080 (native-inputs
10081 (list r-knitr))
10082 (home-page "https://github.com/hansenlab/yamss")
10083 (synopsis "Tools for high-throughput metabolomics")
10084 (description
10085 "This package provides tools to analyze and visualize high-throughput
10086 metabolomics data acquired using chromatography-mass spectrometry. These tools
10087 preprocess data in a way that enables reliable and powerful differential
10088 analysis.")
10089 (license license:artistic2.0)))
10090
10091 (define-public r-gtrellis
10092 (package
10093 (name "r-gtrellis")
10094 (version "1.28.0")
10095 (source
10096 (origin
10097 (method url-fetch)
10098 (uri (bioconductor-uri "gtrellis" version))
10099 (sha256
10100 (base32
10101 "1s4xczzv6hz2kyv32xgcq84540w75qr3f644w1s4c3kwxgyq2gff"))))
10102 (build-system r-build-system)
10103 (propagated-inputs
10104 (list r-circlize r-genomicranges r-getoptlong r-iranges))
10105 (native-inputs
10106 (list r-knitr))
10107 (home-page "https://github.com/jokergoo/gtrellis")
10108 (synopsis "Genome level Trellis layout")
10109 (description
10110 "Genome level Trellis graph visualizes genomic data conditioned by
10111 genomic categories (e.g. chromosomes). For each genomic category, multiple
10112 dimensional data which are represented as tracks describe different features
10113 from different aspects. This package provides high flexibility to arrange
10114 genomic categories and to add self-defined graphics in the plot.")
10115 (license license:expat)))
10116
10117 (define-public r-somaticsignatures
10118 (package
10119 (name "r-somaticsignatures")
10120 (version "2.32.0")
10121 (source
10122 (origin
10123 (method url-fetch)
10124 (uri (bioconductor-uri "SomaticSignatures" version))
10125 (sha256
10126 (base32
10127 "1ydnp54laznzpi08s403kxhnr5nqhvm3iilaxlcdlz0ngxhm6vx6"))))
10128 (properties
10129 `((upstream-name . "SomaticSignatures")))
10130 (build-system r-build-system)
10131 (propagated-inputs
10132 (list r-biobase
10133 r-biostrings
10134 r-genomeinfodb
10135 r-genomicranges
10136 r-ggbio
10137 r-ggplot2
10138 r-iranges
10139 r-nmf
10140 r-pcamethods
10141 r-proxy
10142 r-reshape2
10143 r-s4vectors
10144 r-variantannotation))
10145 (native-inputs
10146 (list r-knitr))
10147 (home-page "https://github.com/juliangehring/SomaticSignatures")
10148 (synopsis "Somatic signatures")
10149 (description
10150 "This package identifies mutational signatures of @dfn{single nucleotide
10151 variants} (SNVs). It provides a infrastructure related to the methodology
10152 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
10153 decomposition algorithms.")
10154 (license license:expat)))
10155
10156 (define-public r-yapsa
10157 (package
10158 (name "r-yapsa")
10159 (version "1.22.0")
10160 (source
10161 (origin
10162 (method url-fetch)
10163 (uri (bioconductor-uri "YAPSA" version))
10164 (sha256
10165 (base32
10166 "1klqfif4sadkxw7agywk2ncvcdqsnfb1d6adnacdfdasr8abvhid"))))
10167 (properties `((upstream-name . "YAPSA")))
10168 (build-system r-build-system)
10169 (propagated-inputs
10170 (list r-biostrings
10171 r-bsgenome-hsapiens-ucsc-hg19
10172 r-circlize
10173 r-complexheatmap
10174 r-corrplot
10175 r-dendextend
10176 r-doparallel
10177 r-dplyr
10178 r-genomeinfodb
10179 r-genomicranges
10180 r-getoptlong
10181 r-ggbeeswarm
10182 r-ggplot2
10183 r-gridextra
10184 r-gtrellis
10185 r-keggrest
10186 r-limsolve
10187 r-magrittr
10188 r-pmcmrplus
10189 r-pracma
10190 r-reshape2
10191 r-somaticsignatures
10192 r-variantannotation))
10193 (native-inputs
10194 (list r-knitr))
10195 (home-page "https://bioconductor.org/packages/YAPSA/")
10196 (synopsis "Yet another package for signature analysis")
10197 (description
10198 "This package provides functions and routines useful in the analysis of
10199 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
10200 functions to perform a signature analysis with known signatures and a
10201 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
10202 provided.")
10203 (license license:gpl3)))
10204
10205 (define-public r-gcrma
10206 (package
10207 (name "r-gcrma")
10208 (version "2.68.0")
10209 (source
10210 (origin
10211 (method url-fetch)
10212 (uri (bioconductor-uri "gcrma" version))
10213 (sha256
10214 (base32
10215 "13a8igr2b02gsa6n3437kb33wg6h7si82fmqi35dzpfzhvx0qf6d"))))
10216 (build-system r-build-system)
10217 (propagated-inputs
10218 (list r-affy
10219 r-affyio
10220 r-biobase
10221 r-biocmanager
10222 r-biostrings
10223 r-xvector))
10224 (home-page "https://bioconductor.org/packages/gcrma/")
10225 (synopsis "Background adjustment using sequence information")
10226 (description
10227 "Gcrma adjusts for background intensities in Affymetrix array data which
10228 include optical noise and @dfn{non-specific binding} (NSB). The main function
10229 @code{gcrma} converts background adjusted probe intensities to expression
10230 measures using the same normalization and summarization methods as a
10231 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
10232 to estimate probe affinity to NSB. The sequence information is summarized in
10233 a more complex way than the simple GC content. Instead, the base types (A, T,
10234 G or C) at each position along the probe determine the affinity of each probe.
10235 The parameters of the position-specific base contributions to the probe
10236 affinity is estimated in an NSB experiment in which only NSB but no
10237 gene-specific binding is expected.")
10238 ;; Any version of the LGPL
10239 (license license:lgpl2.1+)))
10240
10241 (define-public r-simpleaffy
10242 (package
10243 (name "r-simpleaffy")
10244 (version "2.66.0")
10245 (source
10246 (origin
10247 (method url-fetch)
10248 (uri (bioconductor-uri "simpleaffy" version))
10249 (sha256
10250 (base32
10251 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
10252 (build-system r-build-system)
10253 (propagated-inputs
10254 (list r-affy r-biobase r-biocgenerics r-gcrma r-genefilter))
10255 (home-page "https://bioconductor.org/packages/simpleaffy/")
10256 (synopsis "Very simple high level analysis of Affymetrix data")
10257 (description
10258 "This package provides high level functions for reading Affy @file{.CEL}
10259 files, phenotypic data, and then computing simple things with it, such as
10260 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
10261 library. It also has some basic scatter plot functions and mechanisms for
10262 generating high resolution journal figures.")
10263 (license license:gpl2+)))
10264
10265 (define-public r-yaqcaffy
10266 (package
10267 (name "r-yaqcaffy")
10268 (version "1.50.0")
10269 (source
10270 (origin
10271 (method url-fetch)
10272 (uri (bioconductor-uri "yaqcaffy" version))
10273 (sha256
10274 (base32
10275 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
10276 (build-system r-build-system)
10277 (propagated-inputs
10278 (list r-simpleaffy))
10279 (home-page "https://bioconductor.org/packages/yaqcaffy/")
10280 (synopsis "Affymetrix quality control and reproducibility analysis")
10281 (description
10282 "This is a package that can be used for quality control of Affymetrix
10283 GeneChip expression data and reproducibility analysis of human whole genome
10284 chips with the MAQC reference datasets.")
10285 (license license:artistic2.0)))
10286
10287 (define-public r-quantro
10288 (package
10289 (name "r-quantro")
10290 (version "1.30.0")
10291 (source
10292 (origin
10293 (method url-fetch)
10294 (uri (bioconductor-uri "quantro" version))
10295 (sha256
10296 (base32
10297 "1zfrz7lxyrbf0c8d277npzj1h4six9whkqplvcjmn3li0xj5qng3"))))
10298 (build-system r-build-system)
10299 (propagated-inputs
10300 (list r-biobase
10301 r-doparallel
10302 r-foreach
10303 r-ggplot2
10304 r-iterators
10305 r-minfi
10306 r-rcolorbrewer))
10307 (native-inputs
10308 (list r-knitr))
10309 (home-page "https://bioconductor.org/packages/quantro/")
10310 (synopsis "Test for when to use quantile normalization")
10311 (description
10312 "This package provides a data-driven test for the assumptions of quantile
10313 normalization using raw data such as objects that inherit eSets (e.g.
10314 ExpressionSet, MethylSet). Group level information about each sample (such as
10315 Tumor / Normal status) must also be provided because the test assesses if
10316 there are global differences in the distributions between the user-defined
10317 groups.")
10318 (license license:gpl3+)))
10319
10320 (define-public r-yarn
10321 (package
10322 (name "r-yarn")
10323 (version "1.22.0")
10324 (source
10325 (origin
10326 (method url-fetch)
10327 (uri (bioconductor-uri "yarn" version))
10328 (sha256
10329 (base32
10330 "0z5202pqq02fwm8qf1g36004k7sv668s1xacbpr1cvw5sl452lbg"))))
10331 (build-system r-build-system)
10332 (propagated-inputs
10333 (list r-biobase
10334 r-biomart
10335 r-downloader
10336 r-edger
10337 r-gplots
10338 r-limma
10339 r-matrixstats
10340 r-preprocesscore
10341 r-quantro
10342 r-rcolorbrewer
10343 r-readr))
10344 (native-inputs
10345 (list r-knitr))
10346 (home-page "https://bioconductor.org/packages/yarn/")
10347 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
10348 (description
10349 "Expedite large RNA-Seq analyses using a combination of previously
10350 developed tools. YARN is meant to make it easier for the user in performing
10351 basic mis-annotation quality control, filtering, and condition-aware
10352 normalization. YARN leverages many Bioconductor tools and statistical
10353 techniques to account for the large heterogeneity and sparsity found in very
10354 large RNA-seq experiments.")
10355 (license license:artistic2.0)))
10356
10357 (define-public r-roar
10358 (package
10359 (name "r-roar")
10360 (version "1.32.0")
10361 (source
10362 (origin
10363 (method url-fetch)
10364 (uri (bioconductor-uri "roar" version))
10365 (sha256
10366 (base32
10367 "0zq1praf5h9294cvmrb06l3chx8v40xw2sfvhlnh1516x9sjkwfc"))))
10368 (build-system r-build-system)
10369 (propagated-inputs
10370 (list r-biocgenerics
10371 r-genomeinfodb
10372 r-genomicalignments
10373 r-genomicranges
10374 r-iranges
10375 r-rtracklayer
10376 r-s4vectors
10377 r-summarizedexperiment))
10378 (home-page "https://github.com/vodkatad/roar/")
10379 (synopsis "Identify differential APA usage from RNA-seq alignments")
10380 (description
10381 "This package provides tools for identifying preferential usage of APA
10382 sites, comparing two biological conditions, starting from known alternative
10383 sites and alignments obtained from standard RNA-seq experiments.")
10384 (license license:gpl3)))
10385
10386 (define-public r-xbseq
10387 (package
10388 (name "r-xbseq")
10389 (version "1.22.0")
10390 (source
10391 (origin
10392 (method url-fetch)
10393 (uri (bioconductor-uri "XBSeq" version))
10394 (sha256
10395 (base32
10396 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
10397 (properties `((upstream-name . "XBSeq")))
10398 (build-system r-build-system)
10399 (propagated-inputs
10400 (list r-biobase
10401 r-deseq2
10402 r-dplyr
10403 r-ggplot2
10404 r-locfit
10405 r-magrittr
10406 r-matrixstats
10407 r-pracma
10408 r-roar))
10409 (native-inputs
10410 (list r-knitr))
10411 (home-page "https://github.com/Liuy12/XBSeq")
10412 (synopsis "Test for differential expression for RNA-seq data")
10413 (description
10414 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
10415 expression} (DE), where a statistical model was established based on the
10416 assumption that observed signals are the convolution of true expression
10417 signals and sequencing noises. The mapped reads in non-exonic regions are
10418 considered as sequencing noises, which follows a Poisson distribution. Given
10419 measurable observed signal and background noise from RNA-seq data, true
10420 expression signals, assuming governed by the negative binomial distribution,
10421 can be delineated and thus the accurate detection of differential expressed
10422 genes.")
10423 (license license:gpl3+)))
10424
10425 (define-public r-massspecwavelet
10426 (package
10427 (name "r-massspecwavelet")
10428 (version "1.62.0")
10429 (source
10430 (origin
10431 (method url-fetch)
10432 (uri (bioconductor-uri "MassSpecWavelet" version))
10433 (sha256
10434 (base32
10435 "0g9izdy3f7h1zmsfbq45ahdz0ak5013rp3vxc4ijb1mpqx8ldd39"))))
10436 (properties
10437 `((upstream-name . "MassSpecWavelet")))
10438 (build-system r-build-system)
10439 (native-inputs
10440 (list r-knitr))
10441 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
10442 (synopsis "Mass spectrum processing by wavelet-based algorithms")
10443 (description
10444 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
10445 data mainly through the use of wavelet transforms. It supports peak detection
10446 based on @dfn{Continuous Wavelet Transform} (CWT).")
10447 (license license:lgpl2.0+)))
10448
10449 (define-public r-xcms
10450 (package
10451 (name "r-xcms")
10452 (version "3.18.0")
10453 (source
10454 (origin
10455 (method url-fetch)
10456 (uri (bioconductor-uri "xcms" version))
10457 (sha256
10458 (base32
10459 "0p2zd2728lj5q8y24gdfvsjijd6zl2i73hrcf017n32jq7vn71xm"))))
10460 (build-system r-build-system)
10461 (propagated-inputs
10462 (list r-biobase
10463 r-biocgenerics
10464 r-biocparallel
10465 r-iranges
10466 r-lattice
10467 r-massspecwavelet
10468 r-mscoreutils
10469 r-msfeatures
10470 r-msnbase
10471 r-mzr
10472 r-plyr
10473 r-protgenerics
10474 r-rann
10475 r-rcolorbrewer
10476 r-robustbase
10477 r-s4vectors
10478 r-summarizedexperiment))
10479 (native-inputs
10480 (list r-knitr))
10481 (home-page "https://bioconductor.org/packages/xcms/")
10482 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
10483 (description
10484 "This package provides a framework for processing and visualization of
10485 chromatographically separated and single-spectra mass spectral data. It
10486 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
10487 data for high-throughput, untargeted analyte profiling.")
10488 (license license:gpl2+)))
10489
10490 (define-public r-wppi
10491 (package
10492 (name "r-wppi")
10493 (version "1.4.0")
10494 (source (origin
10495 (method url-fetch)
10496 (uri (bioconductor-uri "wppi" version))
10497 (sha256
10498 (base32
10499 "1008s39bb7sd261cy1vfgdah7bmhfw9qq322fh7g4wvpfw63ii9f"))))
10500 (properties `((upstream-name . "wppi")))
10501 (build-system r-build-system)
10502 ;; This is necessary because omnipathr attempts to write a configuration
10503 ;; file to HOME.
10504 (arguments
10505 `(#:phases
10506 (modify-phases %standard-phases
10507 (add-after 'unpack 'set-HOME
10508 (lambda _ (setenv "HOME" "/tmp"))))))
10509 (propagated-inputs (list r-dplyr
10510 r-igraph
10511 r-logger
10512 r-magrittr
10513 r-matrix
10514 r-omnipathr
10515 r-progress
10516 r-purrr
10517 r-rcurl
10518 r-rlang
10519 r-tibble
10520 r-tidyr))
10521 (native-inputs (list r-knitr))
10522 (home-page "https://github.com/AnaGalhoz37/wppi")
10523 (synopsis "Weighting protein-protein interactions")
10524 (description
10525 "This package predicts functional relevance of protein-protein
10526 interactions based on functional annotations such as Human Protein Ontology
10527 and Gene Ontology, and prioritizes genes based on network topology, functional
10528 scores and a path search algorithm.")
10529 (license license:expat)))
10530
10531 (define-public r-wrench
10532 (package
10533 (name "r-wrench")
10534 (version "1.14.0")
10535 (source
10536 (origin
10537 (method url-fetch)
10538 (uri (bioconductor-uri "Wrench" version))
10539 (sha256
10540 (base32
10541 "1zx65s4m71wj85s2sq8ip54pq12r4sxfv8b2rxc41gfc5aj0zzca"))))
10542 (properties `((upstream-name . "Wrench")))
10543 (build-system r-build-system)
10544 (propagated-inputs
10545 (list r-limma r-locfit r-matrixstats))
10546 (native-inputs
10547 (list r-knitr))
10548 (home-page "https://github.com/HCBravoLab/Wrench")
10549 (synopsis "Wrench normalization for sparse count data")
10550 (description
10551 "Wrench is a package for normalization sparse genomic count data, like
10552 that arising from 16s metagenomic surveys.")
10553 (license license:artistic2.0)))
10554
10555 (define-public r-wiggleplotr
10556 (package
10557 (name "r-wiggleplotr")
10558 (version "1.20.0")
10559 (source
10560 (origin
10561 (method url-fetch)
10562 (uri (bioconductor-uri "wiggleplotr" version))
10563 (sha256
10564 (base32
10565 "0s128mm5w8n072k6j0fv1mxnxjpwisjp5lpz8a9z96cnn69bnr0i"))))
10566 (build-system r-build-system)
10567 (propagated-inputs
10568 (list r-assertthat
10569 r-cowplot
10570 r-dplyr
10571 r-genomeinfodb
10572 r-genomicranges
10573 r-ggplot2
10574 r-iranges
10575 r-purrr
10576 r-rtracklayer
10577 r-s4vectors))
10578 (native-inputs
10579 (list r-knitr))
10580 (home-page "https://bioconductor.org/packages/wiggleplotr/")
10581 (synopsis "Make read coverage plots from BigWig files")
10582 (description
10583 "This package provides tools to visualize read coverage from sequencing
10584 experiments together with genomic annotations (genes, transcripts, peaks).
10585 Introns of long transcripts can be rescaled to a fixed length for better
10586 visualization of exonic read coverage.")
10587 (license license:asl2.0)))
10588
10589 (define-public r-widgettools
10590 (package
10591 (name "r-widgettools")
10592 (version "1.74.0")
10593 (source
10594 (origin
10595 (method url-fetch)
10596 (uri (bioconductor-uri "widgetTools" version))
10597 (sha256
10598 (base32
10599 "10w1s5h4za6ibmphvj145ir3lp22qgah2z8fvmipmf8ciq1jf86d"))))
10600 (properties `((upstream-name . "widgetTools")))
10601 (build-system r-build-system)
10602 (home-page "https://bioconductor.org/packages/widgetTools/")
10603 (synopsis "Tools for creating interactive tcltk widgets")
10604 (description
10605 "This package contains tools to support the construction of tcltk
10606 widgets in R.")
10607 ;; Any version of the LGPL.
10608 (license license:lgpl3+)))
10609
10610 (define-public r-webbioc
10611 (package
10612 (name "r-webbioc")
10613 (version "1.68.0")
10614 (source
10615 (origin
10616 (method url-fetch)
10617 (uri (bioconductor-uri "webbioc" version))
10618 (sha256
10619 (base32
10620 "1g3srxsa2fqcn3r4wz4y19fwjmw3vawlcvdw6lbjdnvbgcafq1ah"))))
10621 (build-system r-build-system)
10622 (inputs
10623 (list netpbm perl))
10624 (propagated-inputs
10625 (list r-affy
10626 r-annaffy
10627 r-biobase
10628 r-biocmanager
10629 r-gcrma
10630 r-multtest
10631 r-qvalue
10632 r-vsn))
10633 (home-page "https://www.bioconductor.org/")
10634 (synopsis "Bioconductor web interface")
10635 (description
10636 "This package provides an integrated web interface for doing microarray
10637 analysis using several of the Bioconductor packages. It is intended to be
10638 deployed as a centralized bioinformatics resource for use by many users.
10639 Currently only Affymetrix oligonucleotide analysis is supported.")
10640 (license license:gpl2+)))
10641
10642 (define-public r-zinbwave
10643 (package
10644 (name "r-zinbwave")
10645 (version "1.18.0")
10646 (source
10647 (origin
10648 (method url-fetch)
10649 (uri (bioconductor-uri "zinbwave" version))
10650 (sha256
10651 (base32
10652 "0vpz721sciw5b4ypxj5lj8p53gwkpfwlwkn6k3y8i65zg80p1g6i"))))
10653 (build-system r-build-system)
10654 (propagated-inputs
10655 (list r-biocparallel
10656 r-edger
10657 r-genefilter
10658 r-matrix
10659 r-singlecellexperiment
10660 r-softimpute
10661 r-summarizedexperiment))
10662 (native-inputs
10663 (list r-knitr))
10664 (home-page "https://bioconductor.org/packages/zinbwave")
10665 (synopsis "Zero-inflated negative binomial model for RNA-seq data")
10666 (description "This package implements a general and flexible zero-inflated
10667 negative binomial model that can be used to provide a low-dimensional
10668 representations of single-cell RNA-seq data. The model accounts for zero
10669 inflation (dropouts), over-dispersion, and the count nature of the data.
10670 The model also accounts for the difference in library sizes and optionally
10671 for batch effects and/or other covariates, avoiding the need for pre-normalize
10672 the data.")
10673 (license license:artistic2.0)))
10674
10675 (define-public r-zfpkm
10676 (package
10677 (name "r-zfpkm")
10678 (version "1.18.0")
10679 (source
10680 (origin
10681 (method url-fetch)
10682 (uri (bioconductor-uri "zFPKM" version))
10683 (sha256
10684 (base32
10685 "1h7g553rgb5mkmmsp8dyqqs9n9x17xmmcg3iijhb54nyrr2j1mji"))))
10686 (properties `((upstream-name . "zFPKM")))
10687 (build-system r-build-system)
10688 (propagated-inputs
10689 (list r-checkmate r-dplyr r-ggplot2 r-summarizedexperiment r-tidyr))
10690 (native-inputs
10691 (list r-knitr))
10692 (home-page "https://github.com/ronammar/zFPKM/")
10693 (synopsis "Functions to facilitate zFPKM transformations")
10694 (description
10695 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
10696 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
10697 24215113).")
10698 (license license:gpl3)))
10699
10700 (define-public r-rbowtie2
10701 (package
10702 (name "r-rbowtie2")
10703 (version "2.2.0")
10704 (source
10705 (origin
10706 (method url-fetch)
10707 (uri (bioconductor-uri "Rbowtie2" version))
10708 (sha256
10709 (base32
10710 "0dhdx27vrkhd4fak0qb5q9amlcpi97xhf3ry39zk0ifx5zpjynkg"))))
10711 (properties `((upstream-name . "Rbowtie2")))
10712 (build-system r-build-system)
10713 (propagated-inputs
10714 (list r-magrittr r-rsamtools))
10715 (inputs
10716 (list samtools zlib))
10717 (native-inputs
10718 (list r-knitr))
10719 (home-page "https://bioconductor.org/packages/Rbowtie2/")
10720 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
10721 (description
10722 "This package provides an R wrapper of the popular @code{bowtie2}
10723 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
10724 rapid adapter trimming, identification, and read merging.")
10725 (license license:gpl3+)))
10726
10727 (define-public r-progeny
10728 (package
10729 (name "r-progeny")
10730 (version "1.18.0")
10731 (source
10732 (origin
10733 (method url-fetch)
10734 (uri (bioconductor-uri "progeny" version))
10735 (sha256
10736 (base32
10737 "1rhy2l2yf9ndxlvff8756s6n8qyi42nz7a75lgygj5aqqckkj21b"))))
10738 (build-system r-build-system)
10739 (propagated-inputs
10740 (list r-biobase
10741 r-decoupler
10742 r-dplyr
10743 r-ggplot2
10744 r-ggrepel
10745 r-gridextra
10746 r-reshape2
10747 r-tidyr))
10748 (native-inputs
10749 (list r-knitr))
10750 (home-page "https://github.com/saezlab/progeny")
10751 (synopsis "Pathway responsive gene activity inference")
10752 (description
10753 "This package provides a function to infer pathway activity from gene
10754 expression. It contains the linear model inferred in the publication
10755 \"Perturbation-response genes reveal signaling footprints in cancer gene
10756 expression\".")
10757 (license license:asl2.0)))
10758
10759 (define-public r-arrmnormalization
10760 (package
10761 (name "r-arrmnormalization")
10762 (version "1.36.0")
10763 (source
10764 (origin
10765 (method url-fetch)
10766 (uri (bioconductor-uri "ARRmNormalization" version))
10767 (sha256
10768 (base32
10769 "1pnvw8psbql787m8lrmhd9xbmgkc3dbc70yfds1aggv50dk3yjk1"))))
10770 (properties
10771 `((upstream-name . "ARRmNormalization")))
10772 (build-system r-build-system)
10773 (propagated-inputs (list r-arrmdata))
10774 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
10775 (synopsis "Adaptive robust regression normalization for methylation data")
10776 (description
10777 "This is a package to perform the @dfn{Adaptive Robust Regression
10778 method} (ARRm) for the normalization of methylation data from the Illumina
10779 Infinium HumanMethylation 450k assay.")
10780 (license license:artistic2.0)))
10781
10782 (define-public r-biocfilecache
10783 (package
10784 (name "r-biocfilecache")
10785 (version "2.4.0")
10786 (source
10787 (origin
10788 (method url-fetch)
10789 (uri (bioconductor-uri "BiocFileCache" version))
10790 (sha256
10791 (base32
10792 "1bdbmlixrd8wvs25nmzdksq5hwnsxf8b6ds9qwx01h284vky5vsw"))))
10793 (properties `((upstream-name . "BiocFileCache")))
10794 (build-system r-build-system)
10795 (propagated-inputs
10796 (list r-curl
10797 r-dbi
10798 r-dbplyr
10799 r-dplyr
10800 r-filelock
10801 r-httr
10802 r-rappdirs
10803 r-rsqlite))
10804 (native-inputs
10805 (list r-knitr))
10806 (home-page "https://bioconductor.org/packages/BiocFileCache/")
10807 (synopsis "Manage files across sessions")
10808 (description
10809 "This package creates a persistent on-disk cache of files that the user
10810 can add, update, and retrieve. It is useful for managing resources (such as
10811 custom Txdb objects) that are costly or difficult to create, web resources,
10812 and data files used across sessions.")
10813 (license license:artistic2.0)))
10814
10815 (define-public r-iclusterplus
10816 (package
10817 (name "r-iclusterplus")
10818 (version "1.32.0")
10819 (source
10820 (origin
10821 (method url-fetch)
10822 (uri (bioconductor-uri "iClusterPlus" version))
10823 (sha256
10824 (base32
10825 "0xzx3vly3p99zc5a69pra4jjp8d3bdhx7dl1l76w459cs58zy0sm"))))
10826 (properties `((upstream-name . "iClusterPlus")))
10827 (build-system r-build-system)
10828 (native-inputs (list gfortran))
10829 (home-page "https://bioconductor.org/packages/iClusterPlus/")
10830 (synopsis "Integrative clustering of multi-type genomic data")
10831 (description
10832 "iClusterPlus is developed for integrative clustering analysis of
10833 multi-type genomic data and is an enhanced version of iCluster proposed and
10834 developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
10835 from the experiments where biological samples (e.g. tumor samples) are
10836 analyzed by multiple techniques, for instance, @dfn{array comparative genomic
10837 hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
10838 on. In the iClusterPlus model, binary observations such as somatic mutation
10839 are modeled as Binomial processes; categorical observations such as copy
10840 number states are realizations of Multinomial random variables; counts are
10841 modeled as Poisson random processes; and continuous measures are modeled by
10842 Gaussian distributions.")
10843 (license license:gpl2+)))
10844
10845 (define-public r-rbowtie
10846 (package
10847 (name "r-rbowtie")
10848 (version "1.36.0")
10849 (source
10850 (origin
10851 (method url-fetch)
10852 (uri (bioconductor-uri "Rbowtie" version))
10853 (sha256
10854 (base32
10855 "1ya1irwshsyy9l1fj51b04nv1ahq7a47ck7q19h2cly6yskc4x1q"))))
10856 (properties `((upstream-name . "Rbowtie")))
10857 (build-system r-build-system)
10858 (arguments
10859 `(#:phases
10860 ;; Disable unsupported `popcnt' instructions on
10861 ;; architectures other than x86_64
10862 ,(if (string-prefix? "x86_64"
10863 (or (%current-target-system)
10864 (%current-system)))
10865 '%standard-phases
10866 '(modify-phases %standard-phases
10867 (add-after 'unpack 'patch-sources
10868 (lambda _
10869 (setenv "POPCNT_CAPABILITY" "0")))))))
10870 (inputs (list zlib))
10871 (native-inputs
10872 (list r-knitr))
10873 (home-page "https://bioconductor.org/packages/Rbowtie/")
10874 (synopsis "R bowtie wrapper")
10875 (description
10876 "This package provides an R wrapper around the popular bowtie short read
10877 aligner and around SpliceMap, a de novo splice junction discovery and
10878 alignment tool.")
10879 (license license:artistic2.0)))
10880
10881 (define-public r-sgseq
10882 (package
10883 (name "r-sgseq")
10884 (version "1.30.0")
10885 (source
10886 (origin
10887 (method url-fetch)
10888 (uri (bioconductor-uri "SGSeq" version))
10889 (sha256
10890 (base32
10891 "0hz45367i70wl97silnimicdvs3g41zyf8syc6igz6471wbwkxwp"))))
10892 (properties `((upstream-name . "SGSeq")))
10893 (build-system r-build-system)
10894 (propagated-inputs
10895 (list r-annotationdbi
10896 r-biocgenerics
10897 r-biostrings
10898 r-genomeinfodb
10899 r-genomicalignments
10900 r-genomicfeatures
10901 r-genomicranges
10902 r-igraph
10903 r-iranges
10904 r-rsamtools
10905 r-rtracklayer
10906 r-runit
10907 r-s4vectors
10908 r-summarizedexperiment))
10909 (native-inputs
10910 (list r-knitr))
10911 (home-page "https://bioconductor.org/packages/SGSeq/")
10912 (synopsis "Splice event prediction and quantification from RNA-seq data")
10913 (description
10914 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
10915 data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
10916 represented as a splice graph, which can be obtained from existing annotation
10917 or predicted from the mapped sequence reads. Splice events are identified
10918 from the graph and are quantified locally using structurally compatible reads
10919 at the start or end of each splice variant. The software includes functions
10920 for splice event prediction, quantification, visualization and
10921 interpretation.")
10922 (license license:artistic2.0)))
10923
10924 (define-public r-rhisat2
10925 (package
10926 (name "r-rhisat2")
10927 (version "1.12.0")
10928 (source
10929 (origin
10930 (method url-fetch)
10931 (uri (bioconductor-uri "Rhisat2" version))
10932 (sha256
10933 (base32
10934 "0hzair41l47kzykymd169a34pfhb98vrjgkgdf15m17csyz7pnv7"))))
10935 (properties `((upstream-name . "Rhisat2")))
10936 (build-system r-build-system)
10937 (arguments
10938 `(#:phases
10939 (modify-phases %standard-phases
10940 (add-after 'unpack 'make-reproducible
10941 (lambda _
10942 (substitute* "src/Makefile"
10943 (("`hostname`") "guix")
10944 (("`date`") "0")
10945 ;; Avoid shelling out to "which".
10946 (("^CC =.*") (which "gcc"))
10947 (("^CPP =.*") (which "g++")))
10948 #t)))))
10949 (propagated-inputs
10950 (list r-genomicfeatures r-genomicranges r-sgseq))
10951 (native-inputs
10952 (list r-knitr))
10953 (home-page "https://github.com/fmicompbio/Rhisat2")
10954 (synopsis "R Wrapper for HISAT2 sequence aligner")
10955 (description
10956 "This package provides an R interface to the HISAT2 spliced short-read
10957 aligner by Kim et al. (2015). The package contains wrapper functions to
10958 create a genome index and to perform the read alignment to the generated
10959 index.")
10960 (license license:gpl3)))
10961
10962 (define-public r-quasr
10963 (package
10964 (name "r-quasr")
10965 (version "1.36.0")
10966 (source
10967 (origin
10968 (method url-fetch)
10969 (uri (bioconductor-uri "QuasR" version))
10970 (sha256
10971 (base32
10972 "1m0c0rdakkdn4rr6dh51c6rs40cbxkvz93n6s0m2kc6fqjv9zplf"))))
10973 (properties `((upstream-name . "QuasR")))
10974 (build-system r-build-system)
10975 (propagated-inputs
10976 (list r-annotationdbi
10977 r-biobase
10978 r-biocgenerics
10979 r-biocparallel
10980 r-biostrings
10981 r-bsgenome
10982 r-genomeinfodb
10983 r-genomicfeatures
10984 r-genomicfiles
10985 r-genomicranges
10986 r-iranges
10987 r-rbowtie
10988 r-rhtslib
10989 r-rsamtools
10990 r-rtracklayer
10991 r-s4vectors
10992 r-shortread))
10993 (native-inputs
10994 (list r-knitr))
10995 (home-page "https://bioconductor.org/packages/QuasR/")
10996 (synopsis "Quantify and annotate short reads in R")
10997 (description
10998 "This package provides a framework for the quantification and analysis of
10999 short genomic reads. It covers a complete workflow starting from raw sequence
11000 reads, over creation of alignments and quality control plots, to the
11001 quantification of genomic regions of interest.")
11002 (license license:gpl2)))
11003
11004 (define-public r-rqc
11005 (package
11006 (name "r-rqc")
11007 (version "1.30.0")
11008 (source
11009 (origin
11010 (method url-fetch)
11011 (uri (bioconductor-uri "Rqc" version))
11012 (sha256
11013 (base32
11014 "11j8m69zdcmpjb3xzr4s8sqmv8aqgl8q7k81gnd09l3nyjzy0h1k"))))
11015 (properties `((upstream-name . "Rqc")))
11016 (build-system r-build-system)
11017 (propagated-inputs
11018 (list r-biocgenerics
11019 r-biocparallel
11020 r-biocstyle
11021 r-biostrings
11022 r-biovizbase
11023 r-genomicalignments
11024 r-genomicfiles
11025 r-ggplot2
11026 r-iranges
11027 r-knitr
11028 r-markdown
11029 r-plyr
11030 r-rcpp
11031 r-reshape2
11032 r-rsamtools
11033 r-s4vectors
11034 r-shiny
11035 r-shortread))
11036 (native-inputs
11037 (list r-knitr))
11038 (home-page "https://github.com/labbcb/Rqc")
11039 (synopsis "Quality control tool for high-throughput sequencing data")
11040 (description
11041 "Rqc is an optimized tool designed for quality control and assessment of
11042 high-throughput sequencing data. It performs parallel processing of entire
11043 files and produces a report which contains a set of high-resolution
11044 graphics.")
11045 (license license:gpl2+)))
11046
11047 (define-public r-birewire
11048 (package
11049 (name "r-birewire")
11050 (version "3.28.0")
11051 (source
11052 (origin
11053 (method url-fetch)
11054 (uri (bioconductor-uri "BiRewire" version))
11055 (sha256
11056 (base32
11057 "0r3i7n45qgj8wzdsx8wmfk0lc4xbcvxvmfziiqzig7r706q2c2hm"))))
11058 (properties `((upstream-name . "BiRewire")))
11059 (build-system r-build-system)
11060 (propagated-inputs
11061 (list r-igraph r-matrix r-rtsne r-slam))
11062 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
11063 (synopsis "Tools for randomization of bipartite graphs")
11064 (description
11065 "This package provides functions for bipartite network rewiring through N
11066 consecutive switching steps and for the computation of the minimal number of
11067 switching steps to be performed in order to maximise the dissimilarity with
11068 respect to the original network. It includes functions for the analysis of
11069 the introduced randomness across the switching steps and several other
11070 routines to analyse the resulting networks and their natural projections.")
11071 (license license:gpl3)))
11072
11073 (define-public r-birta
11074 (package
11075 (name "r-birta")
11076 (version "1.31.0")
11077 (source
11078 (origin
11079 (method url-fetch)
11080 (uri (bioconductor-uri "birta" version))
11081 (sha256
11082 (base32
11083 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
11084 (build-system r-build-system)
11085 (propagated-inputs
11086 (list r-biobase r-limma r-mass))
11087 (home-page "https://bioconductor.org/packages/birta")
11088 (synopsis "Bayesian inference of regulation of transcriptional activity")
11089 (description
11090 "Expression levels of mRNA molecules are regulated by different
11091 processes, comprising inhibition or activation by transcription factors and
11092 post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
11093 Inference of Regulation of Transcriptional Activity) uses the regulatory
11094 networks of transcription factors and miRNAs together with mRNA and miRNA
11095 expression data to predict switches in regulatory activity between two
11096 conditions. A Bayesian network is used to model the regulatory structure and
11097 Markov-Chain-Monte-Carlo is applied to sample the activity states.")
11098 (license license:gpl2+)))
11099
11100 (define-public r-multidataset
11101 (package
11102 (name "r-multidataset")
11103 (version "1.24.0")
11104 (source
11105 (origin
11106 (method url-fetch)
11107 (uri (bioconductor-uri "MultiDataSet" version))
11108 (sha256
11109 (base32
11110 "0rfs6jkzh1i4mj1pgfk4lwzmcl8pcwizra3q3282x3d8h2g98qnf"))))
11111 (properties `((upstream-name . "MultiDataSet")))
11112 (build-system r-build-system)
11113 (propagated-inputs
11114 (list r-biobase
11115 r-biocgenerics
11116 r-genomicranges
11117 r-ggplot2
11118 r-ggrepel
11119 r-iranges
11120 r-limma
11121 r-qqman
11122 r-s4vectors
11123 r-summarizedexperiment))
11124 (native-inputs
11125 (list r-knitr))
11126 (home-page "https://bioconductor.org/packages/MultiDataSet/")
11127 (synopsis "Implementation of MultiDataSet and ResultSet")
11128 (description
11129 "This package provides an implementation of the BRGE's (Bioinformatic
11130 Research Group in Epidemiology from Center for Research in Environmental
11131 Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
11132 integrating multi omics data sets and ResultSet is a container for omics
11133 results. This package contains base classes for MEAL and rexposome
11134 packages.")
11135 (license license:expat)))
11136
11137 (define-public r-ropls
11138 (package
11139 (name "r-ropls")
11140 (version "1.28.2")
11141 (source
11142 (origin
11143 (method url-fetch)
11144 (uri (bioconductor-uri "ropls" version))
11145 (sha256
11146 (base32
11147 "07gpx15r8c3wljiwxnff2zp7wxbhzz9r7njk8zg8hpy2q5qm3i6c"))))
11148 (build-system r-build-system)
11149 (propagated-inputs
11150 (list r-biobase
11151 r-multiassayexperiment
11152 r-multidataset
11153 r-summarizedexperiment))
11154 (native-inputs
11155 (list r-knitr)) ; for vignettes
11156 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
11157 (synopsis "Multivariate analysis and feature selection of omics data")
11158 (description
11159 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
11160 and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
11161 regression, classification, and feature selection of omics data where the
11162 number of variables exceeds the number of samples and with multicollinearity
11163 among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
11164 separately model the variation correlated (predictive) to the factor of
11165 interest and the uncorrelated (orthogonal) variation. While performing
11166 similarly to PLS, OPLS facilitates interpretation.
11167
11168 This package provides imlementations of PCA, PLS, and OPLS for multivariate
11169 analysis and feature selection of omics data. In addition to scores, loadings
11170 and weights plots, the package provides metrics and graphics to determine the
11171 optimal number of components (e.g. with the R2 and Q2 coefficients), check the
11172 validity of the model by permutation testing, detect outliers, and perform
11173 feature selection (e.g. with Variable Importance in Projection or regression
11174 coefficients).")
11175 (license license:cecill)))
11176
11177 (define-public r-biosigner
11178 (package
11179 (name "r-biosigner")
11180 (version "1.24.2")
11181 (source
11182 (origin
11183 (method url-fetch)
11184 (uri (bioconductor-uri "biosigner" version))
11185 (sha256
11186 (base32
11187 "0vdv2by3qv7y8vzr8qgg7apwwgsa0fhlfrhzns7g3nas7883c89m"))))
11188 (build-system r-build-system)
11189 (propagated-inputs
11190 (list r-biobase
11191 r-e1071
11192 r-multiassayexperiment
11193 r-multidataset
11194 r-randomforest
11195 r-ropls
11196 r-summarizedexperiment))
11197 (native-inputs
11198 (list r-knitr))
11199 (home-page "https://bioconductor.org/packages/biosigner/")
11200 (synopsis "Signature discovery from omics data")
11201 (description
11202 "Feature selection is critical in omics data analysis to extract
11203 restricted and meaningful molecular signatures from complex and high-dimension
11204 data, and to build robust classifiers. This package implements a method to
11205 assess the relevance of the variables for the prediction performances of the
11206 classifier. The approach can be run in parallel with the PLS-DA, Random
11207 Forest, and SVM binary classifiers. The signatures and the corresponding
11208 'restricted' models are returned, enabling future predictions on new
11209 datasets.")
11210 (license license:cecill)))
11211
11212 (define-public r-annotatr
11213 (package
11214 (name "r-annotatr")
11215 (version "1.22.0")
11216 (source
11217 (origin
11218 (method url-fetch)
11219 (uri (bioconductor-uri "annotatr" version))
11220 (sha256
11221 (base32
11222 "1fbax9v3d486c8lwf3yfjbf4w7zf53wmdpxk2clwm8ngm7w0pqm0"))))
11223 (build-system r-build-system)
11224 (propagated-inputs
11225 (list r-annotationdbi
11226 r-annotationhub
11227 r-dplyr
11228 r-genomeinfodb
11229 r-genomicfeatures
11230 r-genomicranges
11231 r-ggplot2
11232 r-iranges
11233 r-readr
11234 r-regioner
11235 r-reshape2
11236 r-rtracklayer
11237 r-s4vectors))
11238 (native-inputs
11239 (list r-knitr))
11240 (home-page "https://bioconductor.org/packages/annotatr/")
11241 (synopsis "Annotation of genomic regions to genomic annotations")
11242 (description
11243 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
11244 differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
11245 to investigate the intersecting genomic annotations. Such annotations include
11246 those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
11247 CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
11248 enhancers. The annotatr package provides an easy way to summarize and
11249 visualize the intersection of genomic sites/regions with genomic
11250 annotations.")
11251 (license license:gpl3)))
11252
11253 (define-public r-rsubread
11254 (package
11255 (name "r-rsubread")
11256 (version "2.10.4")
11257 (source
11258 (origin
11259 (method url-fetch)
11260 (uri (bioconductor-uri "Rsubread" version))
11261 (sha256
11262 (base32
11263 "155h25gbagqns7wpriil17li0jkdd1z1pcz0dlnikdqj4saf97rl"))))
11264 (properties `((upstream-name . "Rsubread")))
11265 (build-system r-build-system)
11266 (inputs (list zlib))
11267 (propagated-inputs
11268 (list r-matrix))
11269 (home-page "https://bioconductor.org/packages/Rsubread/")
11270 (synopsis "Subread sequence alignment and counting for R")
11271 (description
11272 "This package provides tools for alignment, quantification and analysis
11273 of second and third generation sequencing data. It includes functionality for
11274 read mapping, read counting, SNP calling, structural variant detection and
11275 gene fusion discovery. It can be applied to all major sequencing techologies
11276 and to both short and long sequence reads.")
11277 (license license:gpl3)))
11278
11279 (define-public r-flowutils
11280 (package
11281 (name "r-flowutils")
11282 (version "1.59.0")
11283 (source
11284 (origin
11285 (method url-fetch)
11286 (uri (bioconductor-uri "flowUtils" version))
11287 (sha256
11288 (base32
11289 "11x362dqb9mjlsbq6g1qkb8hhnkvm22z5s3wkgmpyy9kyifjkm26"))))
11290 (properties `((upstream-name . "flowUtils")))
11291 (build-system r-build-system)
11292 (propagated-inputs
11293 (list r-biobase
11294 r-corpcor
11295 r-flowcore
11296 r-graph
11297 r-runit
11298 r-xml))
11299 (home-page "https://github.com/jspidlen/flowUtils")
11300 (synopsis "Utilities for flow cytometry")
11301 (description
11302 "This package provides utilities for flow cytometry data.")
11303 (license license:artistic2.0)))
11304
11305 (define-public r-consensusclusterplus
11306 (package
11307 (name "r-consensusclusterplus")
11308 (version "1.60.0")
11309 (source
11310 (origin
11311 (method url-fetch)
11312 (uri (bioconductor-uri "ConsensusClusterPlus" version))
11313 (sha256
11314 (base32
11315 "1021cix4mr9qsafskw4kk1l3wdzx9pk2gcwjifz6f4zqxss9v07p"))))
11316 (properties
11317 `((upstream-name . "ConsensusClusterPlus")))
11318 (build-system r-build-system)
11319 (propagated-inputs
11320 (list r-all r-biobase r-cluster))
11321 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
11322 (synopsis "Clustering algorithm")
11323 (description
11324 "This package provides an implementation of an algorithm for determining
11325 cluster count and membership by stability evidence in unsupervised analysis.")
11326 (license license:gpl2)))
11327
11328 ;; This is the latest commit and it solves a bug from the latest release.
11329 (define-public r-cycombine
11330 (let ((commit "f18504bc83ff5daee2b5eb4b28f09abdaaa66698") (revision "1"))
11331 (package
11332 (name "r-cycombine")
11333 (version (git-version "0.2.6" revision commit))
11334 (source (origin
11335 (method git-fetch)
11336 (uri (git-reference
11337 (url "https://github.com/biosurf/cyCombine")
11338 (commit commit)))
11339 (file-name (git-file-name name version))
11340 (sha256
11341 (base32
11342 "1fiwnik8iahg01732fik85xhz359x32f1xc59h443pdf7jancskm"))))
11343 (properties `((upstream-name . "cyCombine")))
11344 (build-system r-build-system)
11345 (propagated-inputs
11346 (list r-biobase
11347 r-cytolib
11348 r-dplyr
11349 r-flowcore
11350 r-ggplot2
11351 r-knitr
11352 r-kohonen
11353 r-magrittr
11354 r-purrr
11355 r-rcolorbrewer
11356 r-readr
11357 r-readxl
11358 r-stringr
11359 r-sva
11360 r-tibble
11361 r-tidyr))
11362 (native-inputs (list r-knitr))
11363 (home-page "https://github.com/biosurf/cyCombine")
11364 (synopsis "Integration of single-cell cytometry datasets")
11365 (description
11366 "This package provides a method for combining single-cell cytometry
11367 datasets, which increases the analytical flexibility and the statistical power
11368 of the analyses while minimizing technical noise.")
11369 (license license:expat))))
11370
11371 (define-public r-cytolib
11372 (package
11373 (name "r-cytolib")
11374 (version "2.8.0")
11375 (source
11376 (origin
11377 (method url-fetch)
11378 (uri (bioconductor-uri "cytolib" version))
11379 (sha256
11380 (base32
11381 "18b532sicca5l8sn334prrm7g1z1cakiwydccz4i833168pnsjyg"))))
11382 (properties `((upstream-name . "cytolib")))
11383 (build-system r-build-system)
11384 (native-inputs
11385 (list r-knitr))
11386 (propagated-inputs
11387 (list r-bh
11388 r-rcpp
11389 r-rcpparmadillo
11390 r-rcppparallel
11391 r-rhdf5lib
11392 r-rprotobuflib))
11393 (home-page "https://bioconductor.org/packages/cytolib/")
11394 (synopsis "C++ infrastructure for working with gated cytometry")
11395 (description
11396 "This package provides the core data structure and API to represent and
11397 interact with gated cytometry data.")
11398 (license license:artistic2.0)))
11399
11400 (define-public r-flowcore
11401 (package
11402 (name "r-flowcore")
11403 (version "2.8.0")
11404 (source
11405 (origin
11406 (method url-fetch)
11407 (uri (bioconductor-uri "flowCore" version))
11408 (sha256
11409 (base32
11410 "17nci6rc4i0vs0ibw5q8zy30ap7q4550qpq4ifkbblqbyzxlzkhr"))))
11411 (properties `((upstream-name . "flowCore")))
11412 (build-system r-build-system)
11413 (propagated-inputs
11414 (list r-bh
11415 r-biobase
11416 r-biocgenerics
11417 r-cytolib
11418 r-matrixstats
11419 r-rcpp
11420 r-rcpparmadillo
11421 r-rprotobuflib
11422 r-s4vectors))
11423 (native-inputs
11424 (list r-knitr))
11425 (home-page "https://bioconductor.org/packages/flowCore")
11426 (synopsis "Basic structures for flow cytometry data")
11427 (description
11428 "This package provides S4 data structures and basic functions to deal
11429 with flow cytometry data.")
11430 (license license:artistic2.0)))
11431
11432 (define-public r-flowmeans
11433 (package
11434 (name "r-flowmeans")
11435 (version "1.56.0")
11436 (source
11437 (origin
11438 (method url-fetch)
11439 (uri (bioconductor-uri "flowMeans" version))
11440 (sha256
11441 (base32
11442 "1n4li43ydwwf5gvgmdml4ba28cxymybg5wnz6jvp35n959fwxv6y"))))
11443 (properties `((upstream-name . "flowMeans")))
11444 (build-system r-build-system)
11445 (propagated-inputs
11446 (list r-biobase r-feature r-flowcore r-rrcov))
11447 (home-page "https://bioconductor.org/packages/flowMeans")
11448 (synopsis "Non-parametric flow cytometry data gating")
11449 (description
11450 "This package provides tools to identify cell populations in Flow
11451 Cytometry data using non-parametric clustering and segmented-regression-based
11452 change point detection.")
11453 (license license:artistic2.0)))
11454
11455 (define-public r-ncdfflow
11456 (package
11457 (name "r-ncdfflow")
11458 (version "2.42.0")
11459 (source
11460 (origin
11461 (method url-fetch)
11462 (uri (bioconductor-uri "ncdfFlow" version))
11463 (sha256
11464 (base32
11465 "18ba8rygcd1ys150pk38r4w5lxwm6sl76zkd294yg847dygsqa4m"))))
11466 (properties `((upstream-name . "ncdfFlow")))
11467 (build-system r-build-system)
11468 (propagated-inputs
11469 (list r-bh
11470 r-biobase
11471 r-biocgenerics
11472 r-flowcore
11473 r-rcpp
11474 r-rcpparmadillo
11475 r-rhdf5lib
11476 r-zlibbioc))
11477 (native-inputs
11478 (list r-knitr))
11479 (home-page "https://bioconductor.org/packages/ncdfFlow/")
11480 (synopsis "HDF5 based storage for flow cytometry data")
11481 (description
11482 "This package provides HDF5 storage based methods and functions for
11483 manipulation of flow cytometry data.")
11484 (license license:artistic2.0)))
11485
11486 (define-public r-ggcyto
11487 (package
11488 (name "r-ggcyto")
11489 (version "1.24.0")
11490 (source
11491 (origin
11492 (method url-fetch)
11493 (uri (bioconductor-uri "ggcyto" version))
11494 (sha256
11495 (base32
11496 "0sycyvdpa77mykzr709a7padh6478zmnzapibbq90qkc7bxnj359"))))
11497 (properties `((upstream-name . "ggcyto")))
11498 (build-system r-build-system)
11499 (propagated-inputs
11500 (list r-data-table
11501 r-flowcore
11502 r-flowworkspace
11503 r-ggplot2
11504 r-gridextra
11505 r-hexbin
11506 r-ncdfflow
11507 r-plyr
11508 r-rcolorbrewer
11509 r-rlang
11510 r-scales))
11511 (native-inputs
11512 (list r-knitr))
11513 (home-page "https://github.com/RGLab/ggcyto/issues")
11514 (synopsis "Visualize Cytometry data with ggplot")
11515 (description
11516 "With the dedicated fortify method implemented for @code{flowSet},
11517 @code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
11518 cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
11519 and some custom layers also make it easy to add gates and population
11520 statistics to the plot.")
11521 (license license:artistic2.0)))
11522
11523 (define-public r-flowviz
11524 (package
11525 (name "r-flowviz")
11526 (version "1.60.0")
11527 (source
11528 (origin
11529 (method url-fetch)
11530 (uri (bioconductor-uri "flowViz" version))
11531 (sha256
11532 (base32
11533 "175ygncrv6q6mb8pahixs89m9wm6hdpzx489gc9s8lgad2vrvz8f"))))
11534 (properties `((upstream-name . "flowViz")))
11535 (build-system r-build-system)
11536 (propagated-inputs
11537 (list r-biobase
11538 r-flowcore
11539 r-hexbin
11540 r-idpmisc
11541 r-kernsmooth
11542 r-lattice
11543 r-latticeextra
11544 r-mass
11545 r-rcolorbrewer))
11546 (native-inputs
11547 (list r-knitr))
11548 (home-page "https://bioconductor.org/packages/flowViz/")
11549 (synopsis "Visualization for flow cytometry")
11550 (description
11551 "This package provides visualization tools for flow cytometry data.")
11552 (license license:artistic2.0)))
11553
11554 (define-public r-flowclust
11555 (package
11556 (name "r-flowclust")
11557 (version "3.34.0")
11558 (source
11559 (origin
11560 (method url-fetch)
11561 (uri (bioconductor-uri "flowClust" version))
11562 (sha256
11563 (base32
11564 "055vm9s8aha92znhpjqkipzprw8bkrinwjaik4ygmhym7w6vbblk"))))
11565 (properties `((upstream-name . "flowClust")))
11566 (build-system r-build-system)
11567 (arguments
11568 `(#:configure-flags
11569 (list "--configure-args=--enable-bundled-gsl=no")))
11570 (propagated-inputs
11571 (list r-biobase
11572 r-biocgenerics
11573 r-flowcore
11574 r-graph))
11575 (inputs
11576 (list gsl))
11577 (native-inputs
11578 (list pkg-config r-knitr))
11579 (home-page "https://bioconductor.org/packages/flowClust")
11580 (synopsis "Clustering for flow cytometry")
11581 (description
11582 "This package provides robust model-based clustering using a t-mixture
11583 model with Box-Cox transformation.")
11584 (license license:artistic2.0)))
11585
11586 ;; TODO: this package bundles an old version of protobuf. It's not easy to
11587 ;; make it use our protobuf package instead.
11588 (define-public r-rprotobuflib
11589 (package
11590 (name "r-rprotobuflib")
11591 (version "2.8.0")
11592 (source
11593 (origin
11594 (method url-fetch)
11595 (uri (bioconductor-uri "RProtoBufLib" version))
11596 (sha256
11597 (base32
11598 "1mvqwrm1y0vij66gdwgpf5l1h660wsi9jzjfs4ihw3zm4cb0q5pp"))))
11599 (properties `((upstream-name . "RProtoBufLib")))
11600 (build-system r-build-system)
11601 (arguments
11602 `(#:phases
11603 (modify-phases %standard-phases
11604 (add-after 'unpack 'unpack-bundled-sources
11605 (lambda _
11606 (with-directory-excursion "src"
11607 (invoke "tar" "xf" "protobuf-3.8.0.tar.gz")))))))
11608 (native-inputs
11609 (list r-knitr))
11610 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
11611 (synopsis "C++ headers and static libraries of Protocol buffers")
11612 (description
11613 "This package provides the headers and static library of Protocol buffers
11614 for other R packages to compile and link against.")
11615 (license license:bsd-3)))
11616
11617 (define-public r-flowworkspace
11618 (package
11619 (name "r-flowworkspace")
11620 (version "4.8.0")
11621 (source
11622 (origin
11623 (method url-fetch)
11624 (uri (bioconductor-uri "flowWorkspace" version))
11625 (sha256
11626 (base32
11627 "0riyi9628cx1j5x6hmdd28yq75xh25j8ckcdz8dnb94dpvnhaqss"))))
11628 (properties `((upstream-name . "flowWorkspace")))
11629 (build-system r-build-system)
11630 (propagated-inputs
11631 (list r-aws-s3
11632 r-aws-signature
11633 r-bh
11634 r-biobase
11635 r-biocgenerics
11636 r-cytolib
11637 r-data-table
11638 r-delayedarray
11639 r-digest
11640 r-dplyr
11641 r-flowcore
11642 r-ggplot2
11643 r-graph
11644 r-lattice
11645 r-latticeextra
11646 r-matrixstats
11647 r-ncdfflow
11648 r-rbgl
11649 r-rcpp
11650 r-rcpparmadillo
11651 r-rcppparallel
11652 r-rgraphviz
11653 r-rhdf5lib
11654 r-rprotobuflib
11655 r-s4vectors
11656 r-scales
11657 r-xml))
11658 (native-inputs
11659 (list r-knitr))
11660 (home-page "https://bioconductor.org/packages/flowWorkspace/")
11661 (synopsis "Infrastructure for working with cytometry data")
11662 (description
11663 "This package is designed to facilitate comparison of automated gating
11664 methods against manual gating done in flowJo. This package allows you to
11665 import basic flowJo workspaces into BioConductor and replicate the gating from
11666 flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
11667 samples, compensation, and transformation are performed so that the output
11668 matches the flowJo analysis.")
11669 (license license:artistic2.0)))
11670
11671 (define-public r-flowstats
11672 (package
11673 (name "r-flowstats")
11674 (version "4.8.0")
11675 (source
11676 (origin
11677 (method url-fetch)
11678 (uri (bioconductor-uri "flowStats" version))
11679 (sha256
11680 (base32
11681 "1jbc92ah2mlpnd7v3k0207v4qz3rg9g9yy6r6y0s0cc5nifdyhwj"))))
11682 (properties `((upstream-name . "flowStats")))
11683 (build-system r-build-system)
11684 (propagated-inputs
11685 (list r-biobase
11686 r-biocgenerics
11687 r-cluster
11688 r-corpcor
11689 r-fda
11690 r-flowcore
11691 r-flowviz
11692 r-flowworkspace
11693 r-kernsmooth
11694 r-ks
11695 r-lattice
11696 r-mass
11697 r-mnormt
11698 r-ncdfflow
11699 r-rcolorbrewer
11700 r-rrcov))
11701 (home-page "http://www.github.com/RGLab/flowStats")
11702 (synopsis "Statistical methods for the analysis of flow cytometry data")
11703 (description
11704 "This package provides methods and functionality to analyze flow data
11705 that is beyond the basic infrastructure provided by the @code{flowCore}
11706 package.")
11707 (license license:artistic2.0)))
11708
11709 (define-public r-opencyto
11710 (package
11711 (name "r-opencyto")
11712 (version "2.8.0")
11713 (source
11714 (origin
11715 (method url-fetch)
11716 (uri (bioconductor-uri "openCyto" version))
11717 (sha256
11718 (base32
11719 "1nz5fra0jf70jwyfbcz5ksnz5xb62vfnfwfasr0zwwvjvmmvrs1y"))))
11720 (properties `((upstream-name . "openCyto")))
11721 (build-system r-build-system)
11722 (propagated-inputs
11723 (list r-biobase
11724 r-biocgenerics
11725 r-clue
11726 r-data-table
11727 r-flowclust
11728 r-flowcore
11729 r-flowstats
11730 r-flowviz
11731 r-flowworkspace
11732 r-graph
11733 r-gtools
11734 r-ks
11735 r-lattice
11736 r-mass
11737 r-ncdfflow
11738 r-plyr
11739 r-r-utils
11740 r-rbgl
11741 r-rcolorbrewer
11742 r-rcpp
11743 r-rrcov))
11744 (native-inputs
11745 (list r-knitr))
11746 (home-page "https://bioconductor.org/packages/openCyto")
11747 (synopsis "Hierarchical gating pipeline for flow cytometry data")
11748 (description
11749 "This package is designed to facilitate the automated gating methods in a
11750 sequential way to mimic the manual gating strategy.")
11751 (license license:artistic2.0)))
11752
11753 (define-public r-cytoml
11754 (package
11755 (name "r-cytoml")
11756 (version "2.8.0")
11757 (source
11758 (origin
11759 (method url-fetch)
11760 (uri (bioconductor-uri "CytoML" version))
11761 (sha256
11762 (base32
11763 "0vp7advfh1d8596hjpzayasjhga4mx0l104sgz2asscbrjm4v7rr"))))
11764 (properties `((upstream-name . "CytoML")))
11765 (build-system r-build-system)
11766 (inputs
11767 (list libxml2 zlib))
11768 (propagated-inputs
11769 (list r-base64enc
11770 r-bh
11771 r-biobase
11772 r-corpcor
11773 r-cytolib
11774 r-data-table
11775 r-dplyr
11776 r-flowcore
11777 r-flowworkspace
11778 r-ggcyto
11779 r-graph
11780 r-jsonlite
11781 r-lattice
11782 r-opencyto
11783 r-plyr
11784 r-rbgl
11785 r-rcpp
11786 r-rcpparmadillo
11787 r-rcppparallel
11788 r-rgraphviz
11789 r-rhdf5lib
11790 r-rprotobuflib
11791 r-runit
11792 r-tibble
11793 r-xml
11794 r-xml2
11795 r-yaml))
11796 (native-inputs
11797 (list r-knitr))
11798 (home-page "https://github.com/RGLab/CytoML")
11799 (synopsis "GatingML interface for cross platform cytometry data sharing")
11800 (description
11801 "This package provides an interface to implementations of the GatingML2.0
11802 standard to exchange gated cytometry data with other software platforms.")
11803 (license license:artistic2.0)))
11804
11805 (define-public r-flowsom
11806 (package
11807 (name "r-flowsom")
11808 (version "2.4.0")
11809 (source
11810 (origin
11811 (method url-fetch)
11812 (uri (bioconductor-uri "FlowSOM" version))
11813 (sha256
11814 (base32
11815 "0balsds5mm981cqamdjv3ndq1y9arharisd6f2lrpkzgvwawa645"))))
11816 (properties `((upstream-name . "FlowSOM")))
11817 (build-system r-build-system)
11818 (propagated-inputs
11819 (list r-biocgenerics
11820 r-colorramps
11821 r-consensusclusterplus
11822 r-cytoml
11823 r-dplyr
11824 r-flowcore
11825 r-flowworkspace
11826 r-ggforce
11827 r-ggnewscale
11828 r-ggplot2
11829 r-ggpointdensity
11830 r-ggpubr
11831 r-ggrepel
11832 r-igraph
11833 r-magrittr
11834 r-pheatmap
11835 r-rcolorbrewer
11836 r-rlang
11837 r-rtsne
11838 r-scattermore
11839 r-tidyr
11840 r-xml))
11841 (home-page "https://bioconductor.org/packages/FlowSOM/")
11842 (synopsis "Visualize and interpret cytometry data")
11843 (description
11844 "FlowSOM offers visualization options for cytometry data, by using
11845 self-organizing map clustering and minimal spanning trees.")
11846 (license license:gpl2+)))
11847
11848 (define-public r-mixomics
11849 (package
11850 (name "r-mixomics")
11851 (version "6.20.0")
11852 (source
11853 (origin
11854 (method url-fetch)
11855 (uri (bioconductor-uri "mixOmics" version))
11856 (sha256
11857 (base32
11858 "0fwc2w7frj0bjijzfckkxf7ipx1z13gw7907q4zr5qfl9mh127w7"))))
11859 (properties `((upstream-name . "mixOmics")))
11860 (build-system r-build-system)
11861 (propagated-inputs
11862 (list r-biocparallel
11863 r-corpcor
11864 r-dplyr
11865 r-ellipse
11866 r-ggrepel
11867 r-ggplot2
11868 r-gridextra
11869 r-igraph
11870 r-lattice
11871 r-mass
11872 r-matrixstats
11873 r-rarpack
11874 r-rcolorbrewer
11875 r-reshape2
11876 r-tidyr))
11877 (native-inputs
11878 (list r-knitr))
11879 (home-page "http://www.mixOmics.org")
11880 (synopsis "Multivariate methods for exploration of biological datasets")
11881 (description
11882 "mixOmics offers a wide range of multivariate methods for the exploration
11883 and integration of biological datasets with a particular focus on variable
11884 selection. The package proposes several sparse multivariate models we have
11885 developed to identify the key variables that are highly correlated, and/or
11886 explain the biological outcome of interest. The data that can be analysed
11887 with mixOmics may come from high throughput sequencing technologies, such as
11888 omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
11889 also beyond the realm of omics (e.g. spectral imaging). The methods
11890 implemented in mixOmics can also handle missing values without having to
11891 delete entire rows with missing data.")
11892 (license license:gpl2+)))
11893
11894 (define-public r-depecher
11895 (package ;Source/Weave error
11896 (name "r-depecher")
11897 (version "1.12.0")
11898 (source
11899 (origin
11900 (method url-fetch)
11901 (uri (bioconductor-uri "DepecheR" version))
11902 (sha256
11903 (base32
11904 "0rixczdds5gpac50wap6s68kmpdj4208l38gcihkrysz5frbvqjp"))))
11905 (properties `((upstream-name . "DepecheR")))
11906 (build-system r-build-system)
11907 (propagated-inputs
11908 (list r-beanplot
11909 r-dosnow
11910 r-dplyr
11911 r-fnn
11912 r-foreach
11913 r-ggplot2
11914 r-gmodels
11915 r-gplots
11916 r-mass
11917 r-matrixstats
11918 r-mixomics
11919 r-moments
11920 r-rcpp
11921 r-rcppeigen
11922 r-reshape2
11923 r-robustbase
11924 r-viridis))
11925 (native-inputs
11926 (list r-knitr))
11927 (home-page "https://bioconductor.org/packages/DepecheR/")
11928 (synopsis "Identify traits of clusters in high-dimensional entities")
11929 (description
11930 "The purpose of this package is to identify traits in a dataset that can
11931 separate groups. This is done on two levels. First, clustering is performed,
11932 using an implementation of sparse K-means. Secondly, the generated clusters
11933 are used to predict outcomes of groups of individuals based on their
11934 distribution of observations in the different clusters. As certain clusters
11935 with separating information will be identified, and these clusters are defined
11936 by a sparse number of variables, this method can reduce the complexity of
11937 data, to only emphasize the data that actually matters.")
11938 (license license:expat)))
11939
11940 (define-public r-rcistarget
11941 (package
11942 (name "r-rcistarget")
11943 (version "1.16.0")
11944 (source
11945 (origin
11946 (method url-fetch)
11947 (uri (bioconductor-uri "RcisTarget" version))
11948 (sha256
11949 (base32
11950 "17fnjkg6rjqj33v7slg81skqag10y6dc14g5iv69gqshjal4w4im"))))
11951 (properties `((upstream-name . "RcisTarget")))
11952 (build-system r-build-system)
11953 (propagated-inputs
11954 (list r-arrow
11955 r-aucell
11956 r-biocgenerics
11957 r-data-table
11958 r-dplyr
11959 r-genomeinfodb
11960 r-genomicranges
11961 r-gseabase
11962 r-r-utils
11963 r-s4vectors
11964 r-summarizedexperiment
11965 r-tibble))
11966 (native-inputs
11967 (list r-knitr))
11968 (home-page "https://aertslab.org/#scenic")
11969 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
11970 (description
11971 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
11972 over-represented on a gene list. In a first step, RcisTarget selects DNA
11973 motifs that are significantly over-represented in the surroundings of the
11974 @dfn{transcription start site} (TSS) of the genes in the gene-set. This is
11975 achieved by using a database that contains genome-wide cross-species rankings
11976 for each motif. The motifs that are then annotated to TFs and those that have
11977 a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
11978 each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
11979 genes in the gene-set that are ranked above the leading edge).")
11980 (license license:gpl3)))
11981
11982 (define-public r-chicago
11983 (package
11984 (name "r-chicago")
11985 (version "1.24.0")
11986 (source
11987 (origin
11988 (method url-fetch)
11989 (uri (bioconductor-uri "Chicago" version))
11990 (sha256
11991 (base32
11992 "13vzxmvxpc3r9gii37zvhhr5nbnaggrva97g6m2n02qn9daf6vmm"))))
11993 (properties `((upstream-name . "Chicago")))
11994 (build-system r-build-system)
11995 (propagated-inputs
11996 (list r-data-table r-delaporte r-hmisc r-mass r-matrixstats))
11997 (native-inputs (list r-knitr))
11998 (home-page "https://bioconductor.org/packages/Chicago")
11999 (synopsis "Capture Hi-C analysis of genomic organization")
12000 (description
12001 "This package provides a pipeline for analysing Capture Hi-C data.")
12002 (license license:artistic2.0)))
12003
12004 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
12005 ;; it here.
12006 (define-public r-ciara
12007 (package
12008 (name "r-ciara")
12009 (version "0.1.0")
12010 (source (origin
12011 (method url-fetch)
12012 (uri (cran-uri "CIARA" version))
12013 (sha256
12014 (base32
12015 "0nr7wks9231326x0lhpbh824c6vcb5hr5jn89s9bmg9mci907bsf"))))
12016 (properties `((upstream-name . "CIARA")))
12017 (build-system r-build-system)
12018 (propagated-inputs (list r-biobase r-ggplot2 r-ggraph r-magrittr))
12019 (native-inputs (list r-knitr))
12020 (home-page "https://cran.r-project.org/package=CIARA")
12021 (synopsis "Cluster-independent algorithm for rare cell types identification")
12022 (description
12023 "This is a package to support identification of markers of rare cell
12024 types by looking at genes whose expression is confined in small regions of the
12025 expression space.")
12026 (license license:artistic2.0)))
12027
12028 (define-public r-cicero
12029 (package
12030 (name "r-cicero")
12031 (version "1.14.0")
12032 (source
12033 (origin
12034 (method url-fetch)
12035 (uri (bioconductor-uri "cicero" version))
12036 (sha256
12037 (base32
12038 "1ip12ijazlmcfbym078slxykpkz7d1zwvs8l8aqdnqpxjfk1ipx5"))))
12039 (build-system r-build-system)
12040 (propagated-inputs
12041 (list r-assertthat
12042 r-biobase
12043 r-biocgenerics
12044 r-data-table
12045 r-dplyr
12046 r-fnn
12047 r-genomicranges
12048 r-ggplot2
12049 r-glasso
12050 r-gviz
12051 r-igraph
12052 r-iranges
12053 r-matrix
12054 r-monocle
12055 r-plyr
12056 r-reshape2
12057 r-s4vectors
12058 r-stringi
12059 r-stringr
12060 r-tibble
12061 r-tidyr
12062 r-vgam))
12063 (native-inputs
12064 (list r-knitr))
12065 (home-page "https://bioconductor.org/packages/cicero/")
12066 (synopsis "Predict cis-co-accessibility from single-cell data")
12067 (description
12068 "Cicero computes putative cis-regulatory maps from single-cell chromatin
12069 accessibility data. It also extends the monocle package for use in chromatin
12070 accessibility data.")
12071 (license license:expat)))
12072
12073 ;; This is the latest commit on the "monocle3" branch.
12074 (define-public r-cicero-monocle3
12075 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
12076 (revision "1"))
12077 (package (inherit r-cicero)
12078 (name "r-cicero-monocle3")
12079 (version (git-version "1.3.2" revision commit))
12080 (source
12081 (origin
12082 (method git-fetch)
12083 (uri (git-reference
12084 (url "https://github.com/cole-trapnell-lab/cicero-release")
12085 (commit commit)))
12086 (file-name (git-file-name name version))
12087 (sha256
12088 (base32
12089 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
12090 (propagated-inputs
12091 (modify-inputs (package-propagated-inputs r-cicero)
12092 (delete "r-monocle")
12093 (prepend r-monocle3))))))
12094
12095 (define-public r-circrnaprofiler
12096 (package
12097 (name "r-circrnaprofiler")
12098 (version "1.10.0")
12099 (source
12100 (origin
12101 (method url-fetch)
12102 (uri (bioconductor-uri "circRNAprofiler" version))
12103 (sha256
12104 (base32
12105 "1gwm416shhv2p3gh1n6kv1rvx0n0imy25b7z62z4s8b3gs3nfp5j"))))
12106 (properties
12107 `((upstream-name . "circRNAprofiler")))
12108 (build-system r-build-system)
12109 (propagated-inputs
12110 (list r-annotationhub
12111 r-biostrings
12112 r-bsgenome
12113 r-bsgenome-hsapiens-ucsc-hg19
12114 r-deseq2
12115 r-dplyr
12116 r-edger
12117 r-genomeinfodb
12118 r-genomicranges
12119 r-ggplot2
12120 r-gwascat
12121 r-iranges
12122 r-magrittr
12123 r-r-utils
12124 r-readr
12125 r-reshape2
12126 r-rlang
12127 r-rtracklayer
12128 r-s4vectors
12129 r-seqinr
12130 r-stringi
12131 r-stringr
12132 r-universalmotif))
12133 (native-inputs
12134 (list r-knitr))
12135 (home-page
12136 "https://github.com/Aufiero/circRNAprofiler")
12137 (synopsis
12138 "Computational framework for the downstream analysis of circular RNA's")
12139 (description
12140 "@code{r-circrnaprofiler} is a computational framework for a comprehensive
12141 in silico analysis of @dfn{circular RNA} (circRNAs). This computational
12142 framework allows combining and analyzing circRNAs previously detected by
12143 multiple publicly available annotation-based circRNA detection tools. It
12144 covers different aspects of circRNAs analysis from differential expression
12145 analysis, evolutionary conservation, biogenesis to functional analysis.")
12146 (license license:gpl3)))
12147
12148 (define-public r-cistopic
12149 (package
12150 (name "r-cistopic")
12151 (version "2.1.0")
12152 (source
12153 (origin
12154 (method git-fetch)
12155 (uri (git-reference
12156 (url "https://github.com/aertslab/cisTopic")
12157 (commit (string-append "v" version))))
12158 (file-name (git-file-name name version))
12159 (sha256
12160 (base32
12161 "0c4553rnxq7b1w451kcc3iwvak4qa5h2b43xmfw6ii8096zd1gbf"))))
12162 (build-system r-build-system)
12163 (propagated-inputs
12164 (list r-aucell
12165 r-data-table
12166 r-dplyr
12167 r-dosnow
12168 r-dt
12169 r-feather
12170 r-fitdistrplus
12171 r-genomicranges
12172 r-ggplot2
12173 r-lda
12174 r-matrix
12175 r-plyr
12176 r-rcistarget
12177 r-rtracklayer
12178 r-s4vectors))
12179 (home-page "https://github.com/aertslab/cisTopic")
12180 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
12181 (description
12182 "The sparse nature of single cell epigenomics data can be overruled using
12183 probabilistic modelling methods such as @dfn{Latent Dirichlet
12184 Allocation} (LDA). This package allows the probabilistic modelling of
12185 cis-regulatory topics (cisTopics) from single cell epigenomics data, and
12186 includes functionalities to identify cell states based on the contribution of
12187 cisTopics and explore the nature and regulatory proteins driving them.")
12188 (license license:gpl3)))
12189
12190 (define-public r-cistopic-next
12191 (let ((commit "04cecbb9d1112fcc1a6edc28b5a506bcb49f2803")
12192 (revision "1"))
12193 (package
12194 (inherit r-cistopic)
12195 (name "r-cistopic-next")
12196 ;; The DESCRIPTION file says this is version 0.3.0, which is a bit odd
12197 ;; since the previous release is 2.1.0. Oh well.
12198 (version (git-version "0.3.0" revision commit))
12199 (source
12200 (origin
12201 (method git-fetch)
12202 (uri (git-reference
12203 (url "https://github.com/aertslab/cisTopic")
12204 (commit commit)))
12205 (file-name (git-file-name name version))
12206 (sha256
12207 (base32
12208 "11cg9szlysnsjiaahda4k5v2vh4rxx27zhz53hafgaq9mdz0kgi2"))))
12209 (properties `((upstream-name . "cisTopic")))
12210 (propagated-inputs
12211 (list r-aucell
12212 r-data-table
12213 r-dosnow
12214 r-dplyr
12215 r-dt
12216 r-feather
12217 r-fitdistrplus
12218 r-genomicranges
12219 r-ggplot2
12220 r-lda
12221 r-matrix
12222 r-plyr
12223 r-rcistarget
12224 r-rtracklayer
12225 r-s4vectors
12226 r-text2vec))
12227 (native-inputs
12228 (list r-knitr)))))
12229
12230 (define-public r-genie3
12231 (package
12232 (name "r-genie3")
12233 (version "1.18.0")
12234 (source
12235 (origin
12236 (method url-fetch)
12237 (uri (bioconductor-uri "GENIE3" version))
12238 (sha256
12239 (base32
12240 "0h3vnpnznb9rda8gfwp4cnd2mqsvs1vzmfx90dchn5pqaphz1k2l"))))
12241 (properties `((upstream-name . "GENIE3")))
12242 (build-system r-build-system)
12243 (propagated-inputs
12244 (list r-dplyr r-reshape2))
12245 (native-inputs
12246 (list r-knitr))
12247 (home-page "https://bioconductor.org/packages/GENIE3")
12248 (synopsis "Gene network inference with ensemble of trees")
12249 (description
12250 "This package implements the GENIE3 algorithm for inferring gene
12251 regulatory networks from expression data.")
12252 (license license:gpl2+)))
12253
12254 (define-public r-roc
12255 (package
12256 (name "r-roc")
12257 (version "1.72.0")
12258 (source
12259 (origin
12260 (method url-fetch)
12261 (uri (bioconductor-uri "ROC" version))
12262 (sha256
12263 (base32
12264 "0yfq0d0j2bzqdnjs6l2h6p48kmv9wfphlqym3brgndlnadipq1v2"))))
12265 (properties `((upstream-name . "ROC")))
12266 (build-system r-build-system)
12267 (native-inputs
12268 (list r-knitr))
12269 (home-page "https://www.bioconductor.org/packages/ROC/")
12270 (synopsis "Utilities for ROC curves")
12271 (description
12272 "This package provides utilities for @dfn{Receiver Operating
12273 Characteristic} (ROC) curves, with a focus on micro arrays.")
12274 (license license:artistic2.0)))
12275
12276 (define-public r-watermelon
12277 (package
12278 (name "r-watermelon")
12279 (version "2.2.0")
12280 (source
12281 (origin
12282 (method url-fetch)
12283 (uri (bioconductor-uri "wateRmelon" version))
12284 (sha256
12285 (base32
12286 "0adqyfabrvfcaj3mwp0rbqlcgpj92yb205cyhibbrs5gdr5ri4pv"))))
12287 (properties `((upstream-name . "wateRmelon")))
12288 (build-system r-build-system)
12289 (propagated-inputs
12290 (list r-biobase
12291 r-illuminahumanmethylation450kanno-ilmn12-hg19
12292 r-illuminaio
12293 r-limma
12294 r-lumi
12295 r-matrixstats
12296 r-methylumi
12297 r-roc))
12298 (native-inputs
12299 (list r-knitr))
12300 (home-page "https://bioconductor.org/packages/wateRmelon/")
12301 (synopsis "Illumina 450 methylation array normalization and metrics")
12302 (description
12303 "The standard index of DNA methylation (beta) is computed from methylated
12304 and unmethylated signal intensities. Betas calculated from raw signal
12305 intensities perform well, but using 11 methylomic datasets we demonstrate that
12306 quantile normalization methods produce marked improvement. The commonly used
12307 procedure of normalizing betas is inferior to the separate normalization of M
12308 and U, and it is also advantageous to normalize Type I and Type II assays
12309 separately. This package provides 15 flavours of betas and three performance
12310 metrics, with methods for objects produced by the @code{methylumi} and
12311 @code{minfi} packages.")
12312 (license license:gpl3)))
12313
12314 (define-public r-gdsfmt
12315 (package
12316 (name "r-gdsfmt")
12317 (version "1.32.0")
12318 (source
12319 (origin
12320 (method url-fetch)
12321 (uri (bioconductor-uri "gdsfmt" version))
12322 (sha256
12323 (base32
12324 "1cdwyivgfc6yw5hj9b3j57wx55gckwhx6fwx2lvqynrjzjyzf3q0"))
12325 (modules '((guix build utils)))
12326 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
12327 ;; them and link with system libraries instead.
12328 (snippet
12329 '(begin
12330 (for-each delete-file-recursively
12331 '("src/LZ4"
12332 "src/XZ"
12333 "src/ZLIB"))
12334 (substitute* "src/Makevars"
12335 (("all: \\$\\(SHLIB\\)") "all:")
12336 (("\\$\\(SHLIB\\): liblzma.a") "")
12337 (("^ (ZLIB|LZ4)/.*") "")
12338 (("CoreArray/dVLIntGDS.cpp.*")
12339 "CoreArray/dVLIntGDS.cpp")
12340 (("CoreArray/dVLIntGDS.o.*")
12341 "CoreArray/dVLIntGDS.o")
12342 (("PKG_LIBS = ./liblzma.a")
12343 "PKG_LIBS = -llz4"))
12344 (substitute* "src/CoreArray/dStream.h"
12345 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
12346 (string-append "include <" header ">")))))))
12347 (properties `((upstream-name . "gdsfmt")))
12348 (build-system r-build-system)
12349 (inputs
12350 (list lz4 xz zlib))
12351 (native-inputs
12352 (list r-knitr))
12353 (home-page "http://corearray.sourceforge.net/")
12354 (synopsis
12355 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
12356 (description
12357 "This package provides a high-level R interface to CoreArray @dfn{Genomic
12358 Data Structure} (GDS) data files, which are portable across platforms with
12359 hierarchical structure to store multiple scalable array-oriented data sets
12360 with metadata information. It is suited for large-scale datasets, especially
12361 for data which are much larger than the available random-access memory. The
12362 @code{gdsfmt} package offers efficient operations specifically designed for
12363 integers of less than 8 bits, since a diploid genotype, like
12364 @dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
12365 byte. Data compression and decompression are available with relatively
12366 efficient random access. It is also allowed to read a GDS file in parallel
12367 with multiple R processes supported by the package @code{parallel}.")
12368 (license license:lgpl3)))
12369
12370 (define-public r-bigmelon
12371 (package
12372 (name "r-bigmelon")
12373 (version "1.22.0")
12374 (source
12375 (origin
12376 (method url-fetch)
12377 (uri (bioconductor-uri "bigmelon" version))
12378 (sha256
12379 (base32
12380 "1msch4qbifkdqv0bbw03xj6d9w28z91mf4ki41rqg6048cq17h2k"))))
12381 (properties `((upstream-name . "bigmelon")))
12382 (build-system r-build-system)
12383 (propagated-inputs
12384 (list r-biobase
12385 r-biocgenerics
12386 r-gdsfmt
12387 r-geoquery
12388 r-illuminaio
12389 r-methylumi
12390 r-minfi
12391 r-watermelon))
12392 (native-inputs
12393 (list r-knitr))
12394 (home-page "https://bioconductor.org/packages/bigmelon/")
12395 (synopsis "Illumina methylation array analysis for large experiments")
12396 (description
12397 "This package provides methods for working with Illumina arrays using the
12398 @code{gdsfmt} package.")
12399 (license license:gpl3)))
12400
12401 (define-public r-seqbias
12402 (package
12403 (name "r-seqbias")
12404 (version "1.44.0")
12405 (source
12406 (origin
12407 (method url-fetch)
12408 (uri (bioconductor-uri "seqbias" version))
12409 (sha256
12410 (base32
12411 "085nq6pf0bdn17wsbr5jnyy512v7rf67xff9rp5wz47mcifbv6rg"))))
12412 (properties `((upstream-name . "seqbias")))
12413 (build-system r-build-system)
12414 (propagated-inputs
12415 (list r-biostrings r-genomicranges r-rhtslib))
12416 (home-page "https://bioconductor.org/packages/seqbias/")
12417 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
12418 (description
12419 "This package implements a model of per-position sequencing bias in
12420 high-throughput sequencing data using a simple Bayesian network, the structure
12421 and parameters of which are trained on a set of aligned reads and a reference
12422 genome sequence.")
12423 (license license:lgpl3)))
12424
12425 (define-public r-reqon
12426 (package
12427 (name "r-reqon")
12428 (version "1.42.0")
12429 (source
12430 (origin
12431 (method url-fetch)
12432 (uri (bioconductor-uri "ReQON" version))
12433 (sha256
12434 (base32
12435 "1f5pplm8fy3wvl0b6n18gph4dq9i9x5qiyjrj0bk0kwlkbpba74r"))))
12436 (properties `((upstream-name . "ReQON")))
12437 (build-system r-build-system)
12438 (propagated-inputs
12439 (list r-rjava r-rsamtools r-seqbias))
12440 (home-page "https://bioconductor.org/packages/ReQON/")
12441 (synopsis "Recalibrating quality of nucleotides")
12442 (description
12443 "This package provides an implementation of an algorithm for
12444 recalibrating the base quality scores for aligned sequencing data in BAM
12445 format.")
12446 (license license:gpl2)))
12447
12448 (define-public r-wavcluster
12449 (package
12450 (name "r-wavcluster")
12451 (version "2.30.0")
12452 (source
12453 (origin
12454 (method url-fetch)
12455 (uri (bioconductor-uri "wavClusteR" version))
12456 (sha256
12457 (base32
12458 "04di095i9i19j9ppx8gdsk7n18vd02d4rjdi9d4a3p0xv05ihnb6"))))
12459 (properties `((upstream-name . "wavClusteR")))
12460 (build-system r-build-system)
12461 (propagated-inputs
12462 (list r-biocgenerics
12463 r-biostrings
12464 r-foreach
12465 r-genomicfeatures
12466 r-genomicranges
12467 r-ggplot2
12468 r-hmisc
12469 r-iranges
12470 r-mclust
12471 r-rsamtools
12472 r-rtracklayer
12473 r-s4vectors
12474 r-seqinr
12475 r-stringr))
12476 (native-inputs
12477 (list r-knitr))
12478 (home-page "https://bioconductor.org/packages/wavClusteR/")
12479 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
12480 (description
12481 "This package provides an integrated pipeline for the analysis of
12482 PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
12483 sequencing errors, SNPs and additional non-experimental sources by a non-
12484 parametric mixture model. The protein binding sites (clusters) are then
12485 resolved at high resolution and cluster statistics are estimated using a
12486 rigorous Bayesian framework. Post-processing of the results, data export for
12487 UCSC genome browser visualization and motif search analysis are provided. In
12488 addition, the package integrates RNA-Seq data to estimate the False
12489 Discovery Rate of cluster detection. Key functions support parallel multicore
12490 computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
12491 be applied to the analysis of other NGS data obtained from experimental
12492 procedures that induce nucleotide substitutions (e.g. BisSeq).")
12493 (license license:gpl2)))
12494
12495 (define-public r-timeseriesexperiment
12496 (package
12497 (name "r-timeseriesexperiment")
12498 (version "1.13.0")
12499 (source
12500 (origin
12501 (method url-fetch)
12502 (uri (bioconductor-uri "TimeSeriesExperiment" version))
12503 (sha256
12504 (base32
12505 "0bdpxxr739qdg92qabfx122k9f43vw2hyxp4yxqlbp37vzgcdf2c"))))
12506 (properties
12507 `((upstream-name . "TimeSeriesExperiment")))
12508 (build-system r-build-system)
12509 (propagated-inputs
12510 (list r-deseq2
12511 r-dplyr
12512 r-dynamictreecut
12513 r-edger
12514 r-ggplot2
12515 r-hmisc
12516 r-limma
12517 r-magrittr
12518 r-proxy
12519 r-s4vectors
12520 r-summarizedexperiment
12521 r-tibble
12522 r-tidyr
12523 r-vegan
12524 r-viridis))
12525 (native-inputs
12526 (list r-knitr))
12527 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
12528 (synopsis "Analysis for short time-series data")
12529 (description
12530 "This package is a visualization and analysis toolbox for short time
12531 course data which includes dimensionality reduction, clustering, two-sample
12532 differential expression testing and gene ranking techniques. The package also
12533 provides methods for retrieving enriched pathways.")
12534 (license license:lgpl3+)))
12535
12536 (define-public r-variantfiltering
12537 (package
12538 (name "r-variantfiltering")
12539 (version "1.32.0")
12540 (source
12541 (origin
12542 (method url-fetch)
12543 (uri (bioconductor-uri "VariantFiltering" version))
12544 (sha256
12545 (base32
12546 "1bjqn8qik221x0bqvgd99p87v45iihwp6cxckh4ks964pd0c1xk8"))))
12547 (properties
12548 `((upstream-name . "VariantFiltering")))
12549 (build-system r-build-system)
12550 (propagated-inputs
12551 (list r-annotationdbi
12552 r-biobase
12553 r-biocgenerics
12554 r-biocparallel
12555 r-biostrings
12556 r-bsgenome
12557 r-dt
12558 r-genomeinfodb
12559 r-genomicfeatures
12560 r-genomicranges
12561 r-genomicscores
12562 r-graph
12563 r-gviz
12564 r-iranges
12565 r-rbgl
12566 r-rsamtools
12567 r-s4vectors
12568 r-shiny
12569 r-shinyjs
12570 r-shinythemes
12571 r-shinytree
12572 r-summarizedexperiment
12573 r-variantannotation
12574 r-xvector))
12575 (home-page "https://github.com/rcastelo/VariantFiltering")
12576 (synopsis "Filtering of coding and non-coding genetic variants")
12577 (description
12578 "Filter genetic variants using different criteria such as inheritance
12579 model, amino acid change consequence, minor allele frequencies across human
12580 populations, splice site strength, conservation, etc.")
12581 (license license:artistic2.0)))
12582
12583 (define-public r-genomegraphs
12584 (package
12585 (name "r-genomegraphs")
12586 (version "1.46.0")
12587 (source
12588 (origin
12589 (method url-fetch)
12590 (uri (bioconductor-uri "GenomeGraphs" version))
12591 (sha256
12592 (base32
12593 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
12594 (properties `((upstream-name . "GenomeGraphs")))
12595 (build-system r-build-system)
12596 (propagated-inputs
12597 (list r-biomart))
12598 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
12599 (synopsis "Plotting genomic information from Ensembl")
12600 (description
12601 "Genomic data analyses requires integrated visualization of known genomic
12602 information and new experimental data. GenomeGraphs uses the biomaRt package
12603 to perform live annotation queries to Ensembl and translates this to e.g.
12604 gene/transcript structures in viewports of the grid graphics package. This
12605 results in genomic information plotted together with your data. Another
12606 strength of GenomeGraphs is to plot different data types such as array CGH,
12607 gene expression, sequencing and other data, together in one plot using the
12608 same genome coordinate system.")
12609 (license license:artistic2.0)))
12610
12611 (define-public r-wavetiling
12612 (package
12613 (name "r-wavetiling")
12614 (version "1.28.0")
12615 (source
12616 (origin
12617 (method url-fetch)
12618 (uri (bioconductor-uri "waveTiling" version))
12619 (sha256
12620 (base32
12621 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
12622 (properties `((upstream-name . "waveTiling")))
12623 (build-system r-build-system)
12624 (propagated-inputs
12625 (list r-affy
12626 r-biobase
12627 r-biostrings
12628 r-genomegraphs
12629 r-genomicranges
12630 r-iranges
12631 r-oligo
12632 r-oligoclasses
12633 r-preprocesscore
12634 r-waveslim))
12635 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
12636 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
12637 (description
12638 "This package is designed to conduct transcriptome analysis for tiling
12639 arrays based on fast wavelet-based functional models.")
12640 (license license:gpl2+)))
12641
12642 (define-public r-variancepartition
12643 (package
12644 (name "r-variancepartition")
12645 (version "1.26.0")
12646 (source
12647 (origin
12648 (method url-fetch)
12649 (uri (bioconductor-uri "variancePartition" version))
12650 (sha256
12651 (base32
12652 "0wk1xql8b0gxyrqz9hs54xvmp7qdw9b8jnv88p4vgv061iwyk7wv"))))
12653 (properties
12654 `((upstream-name . "variancePartition")))
12655 (build-system r-build-system)
12656 (propagated-inputs
12657 (list r-aod
12658 r-biobase
12659 r-biocparallel
12660 r-doparallel
12661 r-foreach
12662 r-ggplot2
12663 r-gplots
12664 r-iterators
12665 r-limma
12666 r-lme4
12667 r-lmertest
12668 r-mass
12669 r-matrix
12670 r-pbkrtest
12671 r-progress
12672 r-rdpack
12673 r-reshape2
12674 r-rhpcblasctl
12675 r-rlang
12676 r-scales))
12677 (native-inputs
12678 (list r-knitr))
12679 (home-page "https://bioconductor.org/packages/variancePartition/")
12680 (synopsis "Analyze variation in gene expression experiments")
12681 (description
12682 "This is a package providing tools to quantify and interpret multiple
12683 sources of biological and technical variation in gene expression experiments.
12684 It uses a linear mixed model to quantify variation in gene expression
12685 attributable to individual, tissue, time point, or technical variables. The
12686 package includes dream differential expression analysis for repeated
12687 measures.")
12688 (license license:gpl2+)))
12689
12690 (define-public r-htqpcr
12691 (package
12692 (name "r-htqpcr")
12693 (version "1.50.0")
12694 (source
12695 (origin
12696 (method url-fetch)
12697 (uri (bioconductor-uri "HTqPCR" version))
12698 (sha256
12699 (base32
12700 "0am98rzwpi3kybq1l27c5qn3n1pg5aqwmh6jq9q0lzbjjin3haqc"))))
12701 (properties `((upstream-name . "HTqPCR")))
12702 (build-system r-build-system)
12703 (propagated-inputs
12704 (list r-affy r-biobase r-gplots r-limma r-rcolorbrewer))
12705 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
12706 "groups/bertone/software/HTqPCR.pdf"))
12707 (synopsis "Automated analysis of high-throughput qPCR data")
12708 (description
12709 "Analysis of Ct values from high throughput quantitative real-time
12710 PCR (qPCR) assays across multiple conditions or replicates. The input data
12711 can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
12712 OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
12713 Laboratories; conventional 96- or 384-well plates; or microfluidic devices
12714 such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
12715 loading, quality assessment, normalization, visualization and parametric or
12716 non-parametric testing for statistical significance in Ct values between
12717 features (e.g. genes, microRNAs).")
12718 (license license:artistic2.0)))
12719
12720 (define-public r-unifiedwmwqpcr
12721 (package
12722 (name "r-unifiedwmwqpcr")
12723 (version "1.32.0")
12724 (source
12725 (origin
12726 (method url-fetch)
12727 (uri (bioconductor-uri "unifiedWMWqPCR" version))
12728 (sha256
12729 (base32
12730 "1skfs94a6bv05c844zf5vfqw1fbgxyppgdnckdbhxg2a2470a4wh"))))
12731 (properties
12732 `((upstream-name . "unifiedWMWqPCR")))
12733 (build-system r-build-system)
12734 (propagated-inputs
12735 (list r-biocgenerics r-htqpcr))
12736 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
12737 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
12738 (description
12739 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
12740 data. This modified test allows for testing differential expression in qPCR
12741 data.")
12742 (license license:gpl2+)))
12743
12744 (define-public r-universalmotif
12745 (package
12746 (name "r-universalmotif")
12747 (version "1.14.1")
12748 (source
12749 (origin
12750 (method url-fetch)
12751 (uri (bioconductor-uri "universalmotif" version))
12752 (sha256
12753 (base32
12754 "1sm54z8aq3534qjsa19wychhwcvwnjlkydmiqqvidiiwcxwqpjsr"))))
12755 (properties
12756 `((upstream-name . "universalmotif")))
12757 (build-system r-build-system)
12758 (arguments
12759 `(#:phases
12760 (modify-phases %standard-phases
12761 (add-after 'unpack 'fix-reference-to-strip
12762 (lambda _
12763 (substitute* "src/Makevars"
12764 (("/usr/bin/strip") (which "strip"))))))))
12765 (propagated-inputs
12766 (list r-biocgenerics
12767 r-biostrings
12768 r-ggplot2
12769 r-iranges
12770 r-mass
12771 r-rcpp
12772 r-rcppthread
12773 r-rlang
12774 r-s4vectors
12775 r-yaml))
12776 (native-inputs
12777 (list r-knitr))
12778 (home-page
12779 "https://bioconductor.org/packages/universalmotif/")
12780 (synopsis
12781 "Specific structures importer, modifier, and exporter for R")
12782 (description
12783 "This package allows importing most common @dfn{specific structure}
12784 (motif) types into R for use by functions provided by other Bioconductor
12785 motif-related packages. Motifs can be exported into most major motif formats
12786 from various classes as defined by other Bioconductor packages. A suite of
12787 motif and sequence manipulation and analysis functions are included, including
12788 enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
12789 motifs, and others.")
12790 (license license:gpl3)))
12791
12792 (define-public r-ace
12793 (package
12794 (name "r-ace")
12795 (version "1.14.0")
12796 (source (origin
12797 (method url-fetch)
12798 (uri (bioconductor-uri "ACE" version))
12799 (sha256
12800 (base32
12801 "1xnw288vz810vjkidar5h218wyc0q2hx0k4zi3r88vaz5rfhc05m"))))
12802 (properties `((upstream-name . "ACE")))
12803 (build-system r-build-system)
12804 (propagated-inputs (list r-biobase r-genomicranges r-ggplot2 r-qdnaseq))
12805 (native-inputs (list r-knitr))
12806 (home-page "https://github.com/tgac-vumc/ACE")
12807 (synopsis
12808 "Absolute copy number estimation from low-coverage whole genome sequencing")
12809 (description
12810 "This package uses segmented copy number data to estimate tumor cell
12811 percentage and produce copy number plots displaying absolute copy numbers. For
12812 this it uses segmented data from the @code{QDNAseq} package, which in turn uses
12813 a number of dependencies to turn mapped reads into segmented data. @code{ACE}
12814 will run @code{QDNAseq} or use its output rds-file of segmented data. It will
12815 subsequently run through all samples in the object(s), for which it will create
12816 individual subdirectories. For each sample, it will calculate how well the
12817 segments fit (the relative error) to integer copy numbers for each percentage
12818 of @dfn{tumor cells} (cells with divergent segments).")
12819 (license license:gpl2)))
12820
12821 (define-public r-acgh
12822 (package
12823 (name "r-acgh")
12824 (version "1.74.0")
12825 (source (origin
12826 (method url-fetch)
12827 (uri (bioconductor-uri "aCGH" version))
12828 (sha256
12829 (base32
12830 "00ni0kwy68v33ggfi8g5vffirhmbhaxg4l54hcqhx75m535z1x7d"))))
12831 (properties `((upstream-name . "aCGH")))
12832 (build-system r-build-system)
12833 (propagated-inputs (list r-biobase r-cluster r-multtest r-survival))
12834 (home-page "https://bioconductor.org/packages/aCGH")
12835 (synopsis
12836 "Classes and functions for array comparative genomic hybridization data")
12837 (description
12838 "This package provides functions for reading
12839 @dfn{array comparative genomic hybridization} (aCGH) data from image analysis
12840 output files and clone information files, creation of @code{aCGH} objects for
12841 storing these data. Basic methods are accessing/replacing, subsetting,
12842 printing and plotting @code{aCGH} objects.")
12843 (license license:gpl2)))
12844
12845 (define-public r-acme
12846 (package
12847 (name "r-acme")
12848 (version "2.52.0")
12849 (source (origin
12850 (method url-fetch)
12851 (uri (bioconductor-uri "ACME" version))
12852 (sha256
12853 (base32
12854 "0ilcsgpc4m47gifxc0yzx2xi3g4day515mncnnjvfdj3iq8xwk25"))))
12855 (properties `((upstream-name . "ACME")))
12856 (build-system r-build-system)
12857 (propagated-inputs (list r-biobase r-biocgenerics))
12858 (home-page "https://bioconductor.org/packages/aCGH/")
12859 (synopsis "Calculating microarray enrichment")
12860 (description
12861 "This package implements @dfn{algorithms for calculating microarray
12862 enrichment} (ACME), and it is a set of tools for analysing tiling array of
12863 @dfn{combined chromatin immunoprecipitation with DNA microarray} (ChIP/chip),
12864 DNAse hypersensitivity, or other experiments that result in regions of the
12865 genome showing enrichment. It does not rely on a specific array technology
12866 (although the array should be a tiling array), is very general (can be applied
12867 in experiments resulting in regions of enrichment), and is very insensitive to
12868 array noise or normalization methods. It is also very fast and can be applied
12869 on whole-genome tiling array experiments quite easily with enough memory.")
12870 (license license:gpl2+)))
12871
12872 (define-public r-acde
12873 (package
12874 (name "r-acde")
12875 (version "1.26.0")
12876 (source (origin
12877 (method url-fetch)
12878 (uri (bioconductor-uri "acde" version))
12879 (sha256
12880 (base32
12881 "0lgq546y4qklfzbc6fjr3d656hn76p6dn4694qfiafql2nlsjbj2"))))
12882 (properties `((upstream-name . "acde")))
12883 (build-system r-build-system)
12884 (propagated-inputs (list r-boot))
12885 (home-page "https://bioconductor.org/packages/acde")
12886 (synopsis
12887 "Identification of differentially expressed genes with artificial components")
12888 (description
12889 "This package provides a multivariate inferential analysis method for
12890 detecting differentially expressed genes in gene expression data. It uses
12891 artificial components, close to the data's principal components but with an
12892 exact interpretation in terms of differential genetic expression, to identify
12893 differentially expressed genes while controlling the @dfn{false discovery
12894 rate} (FDR).")
12895 (license license:gpl3)))
12896
12897 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
12898 ;; it here.
12899 (define-public r-activedriverwgs
12900 (package
12901 (name "r-activedriverwgs")
12902 (version "1.1.2")
12903 (source
12904 (origin
12905 (method url-fetch)
12906 (uri (cran-uri "ActiveDriverWGS" version))
12907 (sha256
12908 (base32
12909 "13b5yazgv9kckcp6gck183mh1m0q8lc5ixagmcy9s8kv2wz7wq45"))))
12910 (properties
12911 `((upstream-name . "ActiveDriverWGS")))
12912 (build-system r-build-system)
12913 (propagated-inputs
12914 (list r-biostrings
12915 r-bsgenome
12916 r-bsgenome-hsapiens-ucsc-hg19
12917 r-bsgenome-hsapiens-ucsc-hg38
12918 r-bsgenome-mmusculus-ucsc-mm9
12919 r-bsgenome-mmusculus-ucsc-mm10
12920 r-genomeinfodb
12921 r-genomicranges
12922 r-iranges
12923 r-s4vectors))
12924 (native-inputs
12925 (list r-knitr))
12926 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
12927 (synopsis "Driver discovery tool for cancer whole genomes")
12928 (description
12929 "This package provides a method for finding an enrichment of cancer
12930 simple somatic mutations (SNVs and Indels) in functional elements across the
12931 human genome. ActiveDriverWGS detects coding and noncoding driver elements
12932 using whole genome sequencing data.")
12933 (license license:gpl3)))
12934
12935 ;; This is a CRAN package, but it depends on Bioconductor packages, so we put
12936 ;; it here.
12937 (define-public r-activepathways
12938 (package
12939 (name "r-activepathways")
12940 (version "1.1.1")
12941 (source
12942 (origin
12943 (method url-fetch)
12944 (uri (cran-uri "ActivePathways" version))
12945 (sha256
12946 (base32
12947 "1crq164vyqhdq5y3q09k3m5zljqrhcd5ak0jrc0xqvzf0pasml2m"))))
12948 (properties
12949 `((upstream-name . "ActivePathways")))
12950 (build-system r-build-system)
12951 (propagated-inputs
12952 (list r-data-table r-ggplot2))
12953 (native-inputs
12954 (list r-knitr))
12955 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
12956 (synopsis "Multivariate pathway enrichment analysis")
12957 (description
12958 "This package represents an integrative method of analyzing multi omics
12959 data that conducts enrichment analysis of annotated gene sets. ActivePathways
12960 uses a statistical data fusion approach, rationalizes contributing evidence
12961 and highlights associated genes, improving systems-level understanding of
12962 cellular organization in health and disease.")
12963 (license license:gpl3)))
12964
12965 (define-public r-bgmix
12966 (package
12967 (name "r-bgmix")
12968 (version "1.56.0")
12969 (source
12970 (origin
12971 (method url-fetch)
12972 (uri (bioconductor-uri "BGmix" version))
12973 (sha256
12974 (base32
12975 "03f6nknp3n49yvg2d9qsmds676rva70pr4wjz0md228jczgjk0vj"))))
12976 (properties `((upstream-name . "BGmix")))
12977 (build-system r-build-system)
12978 (propagated-inputs
12979 (list r-kernsmooth))
12980 (home-page "https://bioconductor.org/packages/BGmix/")
12981 (synopsis "Bayesian models for differential gene expression")
12982 (description
12983 "This package provides fully Bayesian mixture models for differential
12984 gene expression.")
12985 (license license:gpl2)))
12986
12987 (define-public r-bgx
12988 (package
12989 (name "r-bgx")
12990 (version "1.62.0")
12991 (source
12992 (origin
12993 (method url-fetch)
12994 (uri (bioconductor-uri "bgx" version))
12995 (sha256
12996 (base32
12997 "0q2y4n6bcc9pvz5sgfkw1lrb00rrp7q29i1vh7srdfmfhgpyz6bk"))))
12998 (properties `((upstream-name . "bgx")))
12999 (build-system r-build-system)
13000 (arguments
13001 (list
13002 #:phases
13003 '(modify-phases %standard-phases
13004 (add-after 'unpack 'do-not-tune-cflags-for-reproducibility
13005 (lambda _
13006 (substitute* "configure.ac"
13007 (("AX_GCC_ARCHFLAG.*") ""))
13008 (delete-file "configure")
13009 (invoke "autoreconf" "-vif"))))))
13010 (inputs
13011 (list boost))
13012 (propagated-inputs
13013 (list r-affy r-biobase r-gcrma r-rcpp))
13014 (native-inputs
13015 (list autoconf automake))
13016 (home-page "https://bioconductor.org/packages/bgx/")
13017 (synopsis "Bayesian gene expression")
13018 (description
13019 "This package provides tools for Bayesian integrated analysis of
13020 Affymetrix GeneChips.")
13021 (license license:gpl2)))
13022
13023 (define-public r-bhc
13024 (package
13025 (name "r-bhc")
13026 (version "1.48.0")
13027 (source
13028 (origin
13029 (method url-fetch)
13030 (uri (bioconductor-uri "BHC" version))
13031 (sha256
13032 (base32
13033 "1kqajd16981y5yaak2imaq1i7pilgqdr3nbhggsakh787j1d9rc5"))))
13034 (properties `((upstream-name . "BHC")))
13035 (build-system r-build-system)
13036 (home-page "https://bioconductor.org/packages/BHC/")
13037 (synopsis "Bayesian hierarchical clustering")
13038 (description
13039 "The method implemented in this package performs bottom-up hierarchical
13040 clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
13041 in the data and Bayesian model selection to decide at each step which clusters
13042 to merge. This avoids several limitations of traditional methods, for example
13043 how many clusters there should be and how to choose a principled distance
13044 metric. This implementation accepts multinomial (i.e. discrete, with 2+
13045 categories) or time-series data. This version also includes a randomised
13046 algorithm which is more efficient for larger data sets.")
13047 (license license:gpl3)))
13048
13049 (define-public r-bicare
13050 (package
13051 (name "r-bicare")
13052 (version "1.54.0")
13053 (source
13054 (origin
13055 (method url-fetch)
13056 (uri (bioconductor-uri "BicARE" version))
13057 (sha256
13058 (base32
13059 "0qjh5bsjcjry6k1vzdaascwy2shjrkc2bw0w57w0qa458cbi89z2"))))
13060 (properties `((upstream-name . "BicARE")))
13061 (build-system r-build-system)
13062 (propagated-inputs
13063 (list r-biobase r-gseabase r-multtest))
13064 (home-page "http://bioinfo.curie.fr")
13065 (synopsis "Biclustering analysis and results exploration")
13066 (description
13067 "This is a package for biclustering analysis and exploration of
13068 results.")
13069 (license license:gpl2)))
13070
13071 (define-public r-bifet
13072 (package
13073 (name "r-bifet")
13074 (version "1.16.0")
13075 (source
13076 (origin
13077 (method url-fetch)
13078 (uri (bioconductor-uri "BiFET" version))
13079 (sha256
13080 (base32
13081 "03ypbbn8i0f4bl4m6wfdcv702jydniak56wqjb1vlrckd9aphwzq"))))
13082 (properties `((upstream-name . "BiFET")))
13083 (build-system r-build-system)
13084 (propagated-inputs
13085 (list r-genomicranges r-poibin))
13086 (native-inputs
13087 (list r-knitr))
13088 (home-page "https://bioconductor.org/packages/BiFET")
13089 (synopsis "Bias-free footprint enrichment test")
13090 (description
13091 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
13092 over-represented in target regions compared to background regions after
13093 correcting for the bias arising from the imbalance in read counts and GC
13094 contents between the target and background regions. For a given TF k, BiFET
13095 tests the null hypothesis that the target regions have the same probability of
13096 having footprints for the TF k as the background regions while correcting for
13097 the read count and GC content bias.")
13098 (license license:gpl3)))
13099
13100 (define-public r-rsbml
13101 (package
13102 (name "r-rsbml")
13103 (version "2.54.0")
13104 (source
13105 (origin
13106 (method url-fetch)
13107 (uri (bioconductor-uri "rsbml" version))
13108 (sha256
13109 (base32
13110 "1v11pspkml6xdsacgwxw8r4qdhbnn2h2sqgpm9aidaq9p2085b0v"))))
13111 (properties `((upstream-name . "rsbml")))
13112 (build-system r-build-system)
13113 (inputs
13114 (list libsbml))
13115 (propagated-inputs
13116 (list r-biocgenerics r-graph))
13117 (native-inputs
13118 (list pkg-config))
13119 (home-page "http://www.sbml.org")
13120 (synopsis "R support for SBML")
13121 (description
13122 "This package provides an R interface to libsbml for SBML parsing,
13123 validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
13124 (license license:artistic2.0)))
13125
13126 (define-public r-hypergraph
13127 (package
13128 (name "r-hypergraph")
13129 (version "1.68.0")
13130 (source
13131 (origin
13132 (method url-fetch)
13133 (uri (bioconductor-uri "hypergraph" version))
13134 (sha256
13135 (base32
13136 "0xmryqj5yw1ns6wbhjqbb6h14jlj89zrznzvqnvd4n03ci20kzzp"))))
13137 (properties `((upstream-name . "hypergraph")))
13138 (build-system r-build-system)
13139 (propagated-inputs
13140 (list r-graph))
13141 (home-page "https://bioconductor.org/packages/hypergraph")
13142 (synopsis "Hypergraph data structures")
13143 (description
13144 "This package implements some simple capabilities for representing and
13145 manipulating hypergraphs.")
13146 (license license:artistic2.0)))
13147
13148 (define-public r-hyperdraw
13149 (package
13150 (name "r-hyperdraw")
13151 (version "1.48.0")
13152 (source
13153 (origin
13154 (method url-fetch)
13155 (uri (bioconductor-uri "hyperdraw" version))
13156 (sha256
13157 (base32
13158 "0ndw4y6b15jy4w86vfkahmdc81d3ycjsvqy1mxi55dwvd8xq0ap6"))))
13159 (properties `((upstream-name . "hyperdraw")))
13160 (build-system r-build-system)
13161 (inputs (list graphviz))
13162 (propagated-inputs
13163 (list r-graph r-hypergraph r-rgraphviz))
13164 (home-page "https://bioconductor.org/packages/hyperdraw")
13165 (synopsis "Visualizing hypergraphs")
13166 (description
13167 "This package provides functions for visualizing hypergraphs.")
13168 (license license:gpl2+)))
13169
13170 (define-public r-biggr
13171 (package
13172 (name "r-biggr")
13173 (version "1.32.0")
13174 (source
13175 (origin
13176 (method url-fetch)
13177 (uri (bioconductor-uri "BiGGR" version))
13178 (sha256
13179 (base32
13180 "0n57bgl6xz5b1gpw4isimq2pqxmlabn7jzhbjg2fbxcklabdvrcw"))))
13181 (properties `((upstream-name . "BiGGR")))
13182 (build-system r-build-system)
13183 (propagated-inputs
13184 (list r-hyperdraw
13185 r-hypergraph
13186 r-lim
13187 r-limsolve
13188 r-rsbml
13189 r-stringr))
13190 (home-page "https://bioconductor.org/packages/BiGGR/")
13191 (synopsis "Constraint based modeling using metabolic reconstruction databases")
13192 (description
13193 "This package provides an interface to simulate metabolic reconstruction
13194 from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
13195 reconstruction databases. The package facilitates @dfn{flux balance
13196 analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
13197 networks and estimated fluxes can be visualized with hypergraphs.")
13198 (license license:gpl3+)))
13199
13200 (define-public r-bigmemoryextras
13201 (package
13202 (name "r-bigmemoryextras")
13203 (version "1.38.0")
13204 (source
13205 (origin
13206 (method url-fetch)
13207 (uri (bioconductor-uri "bigmemoryExtras" version))
13208 (sha256
13209 (base32
13210 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
13211 (properties
13212 `((upstream-name . "bigmemoryExtras")))
13213 (build-system r-build-system)
13214 (propagated-inputs
13215 (list r-bigmemory))
13216 (native-inputs
13217 (list r-knitr))
13218 (home-page "https://github.com/phaverty/bigmemoryExtras")
13219 (synopsis "Extension of the bigmemory package")
13220 (description
13221 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
13222 safety and convenience features to the @code{filebacked.big.matrix} class from
13223 the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
13224 monitoring and gracefully restoring the connection to on-disk data and it also
13225 protects against accidental data modification with a file-system-based
13226 permissions system. Utilities are provided for using @code{BigMatrix}-derived
13227 classes as @code{assayData} matrices within the @code{Biobase} package's
13228 @code{eSet} family of classes. @code{BigMatrix} provides some optimizations
13229 related to attaching to, and indexing into, file-backed matrices with
13230 dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
13231 a file-backed matrix with factor properties.")
13232 (license license:artistic2.0)))
13233
13234 (define-public r-bigpint
13235 (package
13236 (name "r-bigpint")
13237 (version "1.12.0")
13238 (source
13239 (origin
13240 (method url-fetch)
13241 (uri (bioconductor-uri "bigPint" version))
13242 (sha256
13243 (base32
13244 "1hp69j2qcidrxqs3dxjjngb09nbzp5x2yy4jz1rjmv6ghif9ccfj"))))
13245 (properties `((upstream-name . "bigPint")))
13246 (build-system r-build-system)
13247 (propagated-inputs
13248 (list r-delayedarray
13249 r-dplyr
13250 r-ggally
13251 r-ggplot2
13252 r-gridextra
13253 r-hexbin
13254 r-hmisc
13255 r-htmlwidgets
13256 r-plotly
13257 r-plyr
13258 r-rcolorbrewer
13259 r-reshape
13260 r-shiny
13261 r-shinycssloaders
13262 r-shinydashboard
13263 r-stringr
13264 r-summarizedexperiment
13265 r-tidyr))
13266 (native-inputs
13267 (list r-knitr))
13268 (home-page "https://github.com/lindsayrutter/bigPint")
13269 (synopsis "Big multivariate data plotted interactively")
13270 (description
13271 "This package provides methods for visualizing large multivariate
13272 datasets using static and interactive scatterplot matrices, parallel
13273 coordinate plots, volcano plots, and litre plots. It includes examples for
13274 visualizing RNA-sequencing datasets and differentially expressed genes.")
13275 (license license:gpl3)))
13276
13277 (define-public r-chemminer
13278 (package
13279 (name "r-chemminer")
13280 (version "3.48.0")
13281 (source
13282 (origin
13283 (method url-fetch)
13284 (uri (bioconductor-uri "ChemmineR" version))
13285 (sha256
13286 (base32
13287 "1nri4zkc9lp1mqgsi0h58486vixwiv2989b6pmx2aj5c3575i0ma"))))
13288 (properties `((upstream-name . "ChemmineR")))
13289 (build-system r-build-system)
13290 (propagated-inputs
13291 (list r-base64enc
13292 r-bh
13293 r-biocgenerics
13294 r-dbi
13295 r-digest
13296 r-dt
13297 r-ggplot2
13298 r-gridextra
13299 r-jsonlite
13300 r-png
13301 r-rcpp
13302 r-rcurl
13303 r-rjson
13304 r-rsvg
13305 r-stringi))
13306 (native-inputs
13307 (list r-knitr))
13308 (home-page "https://github.com/girke-lab/ChemmineR")
13309 (synopsis "Cheminformatics toolkit for R")
13310 (description
13311 "ChemmineR is a cheminformatics package for analyzing drug-like small
13312 molecule data in R. It contains functions for efficient processing of large
13313 numbers of molecules, physicochemical/structural property predictions,
13314 structural similarity searching, classification and clustering of compound
13315 libraries with a wide spectrum of algorithms. In addition, it offers
13316 visualization functions for compound clustering results and chemical
13317 structures.")
13318 (license license:artistic2.0)))
13319
13320 (define-public r-fmcsr
13321 (package
13322 (name "r-fmcsr")
13323 (version "1.38.0")
13324 (source
13325 (origin
13326 (method url-fetch)
13327 (uri (bioconductor-uri "fmcsR" version))
13328 (sha256
13329 (base32 "1mblmk21dxc9v2fikhvfg2njwgl190gkysppl6msxizwcmxsmh30"))))
13330 (properties `((upstream-name . "fmcsR")))
13331 (build-system r-build-system)
13332 (propagated-inputs
13333 (list r-biocgenerics r-chemminer r-runit))
13334 (native-inputs (list r-knitr))
13335 (home-page "https://github.com/girke-lab/fmcsR")
13336 (synopsis "Mismatch tolerant maximum common substructure searching")
13337 (description
13338 "The fmcsR package introduces an efficient @dfn{maximum common
13339 substructure} (MCS) algorithms combined with a novel matching strategy that
13340 allows for atom and/or bond mismatches in the substructures shared among two
13341 small molecules. The resulting flexible MCSs (FMCSs) are often larger than
13342 strict MCSs, resulting in the identification of more common features in their
13343 source structures, as well as a higher sensitivity in finding compounds with
13344 weak structural similarities. The fmcsR package provides several utilities to
13345 use the FMCS algorithm for pairwise compound comparisons, structure similarity
13346 searching and clustering.")
13347 (license license:artistic2.0)))
13348
13349 (define-public r-bioassayr
13350 (package
13351 (name "r-bioassayr")
13352 (version "1.34.0")
13353 (source
13354 (origin
13355 (method url-fetch)
13356 (uri (bioconductor-uri "bioassayR" version))
13357 (sha256
13358 (base32
13359 "0zbrci0vgk4qca28i0qb2izhyrz3r95l1w54h9h3zj9f3vd61wrz"))))
13360 (properties `((upstream-name . "bioassayR")))
13361 (build-system r-build-system)
13362 (propagated-inputs
13363 (list r-biocgenerics
13364 r-chemminer
13365 r-dbi
13366 r-matrix
13367 r-rjson
13368 r-rsqlite
13369 r-xml))
13370 (native-inputs
13371 (list r-knitr))
13372 (home-page "https://github.com/girke-lab/bioassayR")
13373 (synopsis "Cross-target analysis of small molecule bioactivity")
13374 (description
13375 "bioassayR is a computational tool that enables simultaneous analysis of
13376 thousands of bioassay experiments performed over a diverse set of compounds
13377 and biological targets. Unique features include support for large-scale
13378 cross-target analyses of both public and custom bioassays, generation of
13379 @dfn{high throughput screening fingerprints} (HTSFPs), and an optional
13380 preloaded database that provides access to a substantial portion of publicly
13381 available bioactivity data.")
13382 (license license:artistic2.0)))
13383
13384 (define-public r-biobroom
13385 (package
13386 (name "r-biobroom")
13387 (version "1.28.0")
13388 (source
13389 (origin
13390 (method url-fetch)
13391 (uri (bioconductor-uri "biobroom" version))
13392 (sha256
13393 (base32
13394 "04x1z9nchm4mbhqr31011zdprc4md156j4zf003s7xx0n278xsgh"))))
13395 (properties `((upstream-name . "biobroom")))
13396 (build-system r-build-system)
13397 (propagated-inputs
13398 (list r-biobase r-broom r-dplyr r-tidyr))
13399 (native-inputs
13400 (list r-knitr))
13401 (home-page "https://github.com/StoreyLab/biobroom")
13402 (synopsis "Turn Bioconductor objects into tidy data frames")
13403 (description
13404 "This package contains methods for converting standard objects
13405 constructed by bioinformatics packages, especially those in Bioconductor, and
13406 converting them to @code{tidy} data. It thus serves as a complement to the
13407 @code{broom} package, and follows the same tidy, augment, glance division of
13408 tidying methods. Tidying data makes it easy to recombine, reshape and
13409 visualize bioinformatics analyses.")
13410 ;; Any version of the LGPL.
13411 (license license:lgpl3+)))
13412
13413 (define-public r-graphite
13414 (package
13415 (name "r-graphite")
13416 (version "1.42.0")
13417 (source
13418 (origin
13419 (method url-fetch)
13420 (uri (bioconductor-uri "graphite" version))
13421 (sha256
13422 (base32
13423 "0nl5mkgrvf7vsqjy48ij9b1dmxfvp9lf8cpay55h93c4qz4x606g"))))
13424 (properties `((upstream-name . "graphite")))
13425 (build-system r-build-system)
13426 (propagated-inputs
13427 (list r-annotationdbi r-graph r-httr r-rappdirs r-rlang))
13428 (home-page "https://bioconductor.org/packages/graphite/")
13429 (synopsis "Networks from pathway databases")
13430 (description
13431 "Graphite provides networks derived from eight public pathway databases,
13432 and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
13433 symbols).")
13434 (license license:agpl3+)))
13435
13436 (define-public r-reactomepa
13437 (package
13438 (name "r-reactomepa")
13439 (version "1.40.0")
13440 (source
13441 (origin
13442 (method url-fetch)
13443 (uri (bioconductor-uri "ReactomePA" version))
13444 (sha256
13445 (base32
13446 "1fd72m2afxbbvbgwy8knp6fiq1h561plmsh4r8a08w21ngmkz2s5"))))
13447 (properties `((upstream-name . "ReactomePA")))
13448 (build-system r-build-system)
13449 (propagated-inputs
13450 (list r-annotationdbi
13451 r-dose
13452 r-enrichplot
13453 r-ggplot2
13454 r-ggraph
13455 r-graphite
13456 r-igraph
13457 r-reactome-db))
13458 (native-inputs
13459 (list r-knitr))
13460 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
13461 (synopsis "Reactome pathway analysis")
13462 (description
13463 "This package provides functions for pathway analysis based on the
13464 REACTOME pathway database. It implements enrichment analysis, gene set
13465 enrichment analysis and several functions for visualization.")
13466 (license license:gpl2)))
13467
13468 (define-public r-ebarrays
13469 (package
13470 (name "r-ebarrays")
13471 (version "2.60.0")
13472 (source
13473 (origin
13474 (method url-fetch)
13475 (uri (bioconductor-uri "EBarrays" version))
13476 (sha256
13477 (base32
13478 "027zarnpxpdnyl877swp5ypxj7zvq0cjp2q2xs6g6yn5dpqjvxxk"))))
13479 (properties `((upstream-name . "EBarrays")))
13480 (build-system r-build-system)
13481 (propagated-inputs
13482 (list r-biobase r-cluster r-lattice))
13483 (home-page "https://bioconductor.org/packages/EBarrays/")
13484 (synopsis "Gene clustering and differential expression identification")
13485 (description
13486 "EBarrays provides tools for the analysis of replicated/unreplicated
13487 microarray data.")
13488 (license license:gpl2+)))
13489
13490 (define-public r-bioccasestudies
13491 (package
13492 (name "r-bioccasestudies")
13493 (version "1.52.0")
13494 (source
13495 (origin
13496 (method url-fetch)
13497 (uri (bioconductor-uri "BiocCaseStudies" version))
13498 (sha256
13499 (base32
13500 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
13501 (properties
13502 `((upstream-name . "BiocCaseStudies")))
13503 (build-system r-build-system)
13504 (propagated-inputs (list r-biobase))
13505 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
13506 (synopsis "Support for the case studies monograph")
13507 (description
13508 "This package provides software and data to support the case studies
13509 monograph.")
13510 (license license:artistic2.0)))
13511
13512 (define-public r-bioccheck
13513 (package
13514 (name "r-bioccheck")
13515 (version "1.32.0")
13516 (source (origin
13517 (method url-fetch)
13518 (uri (bioconductor-uri "BiocCheck" version))
13519 (sha256
13520 (base32
13521 "1k1gxzmxx26hmwdxgagv93mv4jwyygkk8703ds6nvryzhqffzkbc"))))
13522 (properties
13523 `((upstream-name . "BiocCheck")))
13524 (build-system r-build-system)
13525 (propagated-inputs
13526 (list r-codetools
13527 r-graph
13528 r-httr
13529 r-knitr
13530 r-biocmanager
13531 r-biocviews
13532 r-stringdist))
13533 (native-inputs
13534 (list r-knitr))
13535 (home-page "https://bioconductor.org/packages/BiocCheck")
13536 (synopsis "Executes Bioconductor-specific package checks")
13537 (description "This package contains tools to perform additional quality
13538 checks on R packages that are to be submitted to the Bioconductor repository.")
13539 (license license:artistic2.0)))
13540
13541 (define-public r-biocgraph
13542 (package
13543 (name "r-biocgraph")
13544 (version "1.58.0")
13545 (source
13546 (origin
13547 (method url-fetch)
13548 (uri (bioconductor-uri "biocGraph" version))
13549 (sha256
13550 (base32
13551 "1y59a7c4ahhn1g2wz2hkx83izfn8i85mmxxp63jdd0rg7zwhr6nn"))))
13552 (properties `((upstream-name . "biocGraph")))
13553 (build-system r-build-system)
13554 (propagated-inputs
13555 (list r-biocgenerics r-geneplotter r-graph r-rgraphviz))
13556 (home-page "https://bioconductor.org/packages/biocGraph/")
13557 (synopsis "Graph examples and use cases in Bioinformatics")
13558 (description
13559 "This package provides examples and code that make use of the
13560 different graph related packages produced by Bioconductor.")
13561 (license license:artistic2.0)))
13562
13563 (define-public r-biocstyle
13564 (package
13565 (name "r-biocstyle")
13566 (version "2.24.0")
13567 (source (origin
13568 (method url-fetch)
13569 (uri (bioconductor-uri "BiocStyle" version))
13570 (sha256
13571 (base32
13572 "1nwiib201b9q1x19ihqjqr5jl0vnid8wfgpi8sa3y02bn722g5a5"))))
13573 (properties
13574 `((upstream-name . "BiocStyle")))
13575 (build-system r-build-system)
13576 (propagated-inputs
13577 (list r-biocmanager r-bookdown r-knitr r-rmarkdown r-yaml))
13578 (native-inputs
13579 (list r-knitr))
13580 (home-page "https://bioconductor.org/packages/BiocStyle")
13581 (synopsis "Bioconductor formatting styles")
13582 (description "This package provides standard formatting styles for
13583 Bioconductor PDF and HTML documents. Package vignettes illustrate use and
13584 functionality.")
13585 (license license:artistic2.0)))
13586
13587 (define-public r-biocviews
13588 (package
13589 (name "r-biocviews")
13590 (version "1.64.0")
13591 (source (origin
13592 (method url-fetch)
13593 (uri (bioconductor-uri "biocViews" version))
13594 (sha256
13595 (base32
13596 "1lahla53awdqiglfiygbxg5pkzfabym7n5abgyp1nvqsvsj0g126"))))
13597 (properties
13598 `((upstream-name . "biocViews")))
13599 (build-system r-build-system)
13600 (propagated-inputs
13601 (list r-biobase
13602 r-biocmanager
13603 r-graph
13604 r-rbgl
13605 r-rcurl
13606 r-xml
13607 r-runit))
13608 (home-page "https://bioconductor.org/packages/biocViews")
13609 (synopsis "Bioconductor package categorization helper")
13610 (description "The purpose of biocViews is to create HTML pages that
13611 categorize packages in a Bioconductor package repository according to keywords,
13612 also known as views, in a controlled vocabulary.")
13613 (license license:artistic2.0)))
13614
13615 (define-public r-experimenthub
13616 (package
13617 (name "r-experimenthub")
13618 (version "2.4.0")
13619 (source
13620 (origin
13621 (method url-fetch)
13622 (uri (bioconductor-uri "ExperimentHub" version))
13623 (sha256
13624 (base32
13625 "11hna8vrm1az1zk7pw2dv0wh84sd0hw2bi55w40hqvs36csb7lkl"))))
13626 (properties `((upstream-name . "ExperimentHub")))
13627 (build-system r-build-system)
13628 (propagated-inputs
13629 (list r-annotationhub
13630 r-biocfilecache
13631 r-biocgenerics
13632 r-biocmanager
13633 r-curl
13634 r-rappdirs
13635 r-s4vectors))
13636 (native-inputs
13637 (list r-knitr))
13638 (home-page "https://bioconductor.org/packages/ExperimentHub/")
13639 (synopsis "Client to access ExperimentHub resources")
13640 (description
13641 "This package provides a client for the Bioconductor ExperimentHub web
13642 resource. ExperimentHub provides a central location where curated data from
13643 experiments, publications or training courses can be accessed. Each resource
13644 has associated metadata, tags and date of modification. The client creates
13645 and manages a local cache of files retrieved enabling quick and reproducible
13646 access.")
13647 (license license:artistic2.0)))
13648
13649 (define-public r-grohmm
13650 (package
13651 (name "r-grohmm")
13652 (version "1.30.1")
13653 (source
13654 (origin
13655 (method url-fetch)
13656 (uri (bioconductor-uri "groHMM" version))
13657 (sha256
13658 (base32
13659 "0v2mk7xcy483w2nygpmyjp73kj3v5pkk1kf1wr41n33dxqlddqai"))))
13660 (properties `((upstream-name . "groHMM")))
13661 (build-system r-build-system)
13662 (propagated-inputs
13663 (list r-genomeinfodb
13664 r-genomicalignments
13665 r-genomicranges
13666 r-iranges
13667 r-mass
13668 r-rtracklayer
13669 r-s4vectors))
13670 (home-page "https://github.com/Kraus-Lab/groHMM")
13671 (synopsis "GRO-seq analysis pipeline")
13672 (description
13673 "This package provides a pipeline for the analysis of GRO-seq data.")
13674 (license license:gpl3+)))
13675
13676 (define-public r-multiassayexperiment
13677 (package
13678 (name "r-multiassayexperiment")
13679 (version "1.22.0")
13680 (source
13681 (origin
13682 (method url-fetch)
13683 (uri (bioconductor-uri "MultiAssayExperiment" version))
13684 (sha256
13685 (base32
13686 "1wnp52l9vifxn1wzqgndzp9b6ih0s1cflxx1fhw32k32d05cw9q1"))))
13687 (properties
13688 `((upstream-name . "MultiAssayExperiment")))
13689 (build-system r-build-system)
13690 (propagated-inputs
13691 (list r-biobase
13692 r-biocgenerics
13693 r-genomicranges
13694 r-iranges
13695 r-s4vectors
13696 r-summarizedexperiment
13697 r-tidyr))
13698 (native-inputs
13699 (list r-knitr))
13700 (home-page "https://waldronlab.io/MultiAssayExperiment/")
13701 (synopsis "Integration of multi-omics experiments in Bioconductor")
13702 (description
13703 "MultiAssayExperiment harmonizes data management of multiple assays
13704 performed on an overlapping set of specimens. It provides a familiar
13705 Bioconductor user experience by extending concepts from
13706 @code{SummarizedExperiment}, supporting an open-ended mix of standard data
13707 classes for individual assays, and allowing subsetting by genomic ranges or
13708 rownames.")
13709 (license license:artistic2.0)))
13710
13711 (define-public r-bioconcotk
13712 (package
13713 (name "r-bioconcotk")
13714 (version "1.16.0")
13715 (source
13716 (origin
13717 (method url-fetch)
13718 (uri (bioconductor-uri "BiocOncoTK" version))
13719 (sha256
13720 (base32
13721 "1alplszw84vqa1mvzp996f94s40scmh4qwbrqhg43hrnyvbnq7pi"))))
13722 (properties `((upstream-name . "BiocOncoTK")))
13723 (build-system r-build-system)
13724 (propagated-inputs
13725 (list r-bigrquery
13726 r-car
13727 r-complexheatmap
13728 r-curatedtcgadata
13729 r-dbi
13730 r-dplyr
13731 r-dt
13732 r-genomicfeatures
13733 r-genomicranges
13734 r-ggplot2
13735 r-ggpubr
13736 r-graph
13737 r-httr
13738 r-iranges
13739 r-magrittr
13740 r-plyr
13741 r-rgraphviz
13742 r-rjson
13743 r-s4vectors
13744 r-scales
13745 r-shiny
13746 r-summarizedexperiment))
13747 (native-inputs
13748 (list r-knitr))
13749 (home-page "https://bioconductor.org/packages/BiocOncoTK")
13750 (synopsis "Bioconductor components for general cancer genomics")
13751 (description
13752 "The purpose of this package is to provide a central interface to various
13753 tools for genome-scale analysis of cancer studies.")
13754 (license license:artistic2.0)))
13755
13756 (define-public r-biocor
13757 (package
13758 (name "r-biocor")
13759 (version "1.20.0")
13760 (source
13761 (origin
13762 (method url-fetch)
13763 (uri (bioconductor-uri "BioCor" version))
13764 (sha256
13765 (base32
13766 "004mksswampwisljcdz6fswwbgdjdii3y86gjzib0gf8v4w7w4q3"))))
13767 (properties `((upstream-name . "BioCor")))
13768 (build-system r-build-system)
13769 (propagated-inputs
13770 (list r-biocparallel r-gseabase r-matrix))
13771 (native-inputs
13772 (list r-knitr))
13773 (home-page "https://llrs.github.io/BioCor/")
13774 (synopsis "Functional similarities")
13775 (description
13776 "This package provides tools to calculate functional similarities based
13777 on the pathways described on KEGG and REACTOME or in gene sets. These
13778 similarities can be calculated for pathways or gene sets, genes, or clusters
13779 and combined with other similarities. They can be used to improve networks,
13780 gene selection, testing relationships, and so on.")
13781 (license license:expat)))
13782
13783 (define-public r-biocpkgtools
13784 (package
13785 (name "r-biocpkgtools")
13786 (version "1.14.0")
13787 (source
13788 (origin
13789 (method url-fetch)
13790 (uri (bioconductor-uri "BiocPkgTools" version))
13791 (sha256
13792 (base32
13793 "1v0824vmg49q9lh0igdyniryyknw6vmh462rn25kmg9hdna0w99h"))))
13794 (properties `((upstream-name . "BiocPkgTools")))
13795 (build-system r-build-system)
13796 (propagated-inputs
13797 (list r-biocfilecache
13798 r-biocmanager
13799 r-biocviews
13800 r-dplyr
13801 r-dt
13802 r-gh
13803 r-graph
13804 r-htmltools
13805 r-htmlwidgets
13806 r-httr
13807 r-igraph
13808 r-jsonlite
13809 r-magrittr
13810 r-rbgl
13811 r-readr
13812 r-rlang
13813 r-rvest
13814 r-stringr
13815 r-tibble
13816 r-tidyr
13817 r-tidyselect
13818 r-xml2))
13819 (native-inputs
13820 (list r-knitr))
13821 (home-page "https://github.com/seandavi/BiocPkgTools")
13822 (synopsis "Collection of tools for learning about Bioconductor packages")
13823 (description
13824 "Bioconductor has a rich ecosystem of metadata around packages, usage,
13825 and build status. This package is a simple collection of functions to access
13826 that metadata from R. The goal is to expose metadata for data mining and
13827 value-added functionality such as package searching, text mining, and
13828 analytics on packages.")
13829 (license license:expat)))
13830
13831 (define-public r-biocset
13832 (package
13833 (name "r-biocset")
13834 (version "1.10.0")
13835 (source
13836 (origin
13837 (method url-fetch)
13838 (uri (bioconductor-uri "BiocSet" version))
13839 (sha256
13840 (base32
13841 "1ghba7020inrdxlbrrgds9gjymjxjma2p89b9lgkjin89zalqglh"))))
13842 (properties `((upstream-name . "BiocSet")))
13843 (build-system r-build-system)
13844 (propagated-inputs
13845 (list r-annotationdbi
13846 r-biocio
13847 r-dplyr
13848 r-keggrest
13849 r-ontologyindex
13850 r-plyr
13851 r-rlang
13852 r-s4vectors
13853 r-tibble
13854 r-tidyr))
13855 (native-inputs
13856 (list r-knitr))
13857 (home-page
13858 "https://bioconductor.org/packages/BiocSet")
13859 (synopsis
13860 "Representing Different Biological Sets")
13861 (description
13862 "BiocSet displays different biological sets in a triple tibble format.
13863 These three tibbles are @code{element}, @code{set}, and @code{elementset}.
13864 The user has the ability to activate one of these three tibbles to perform
13865 common functions from the @code{dplyr} package. Mapping functionality and
13866 accessing web references for elements/sets are also available in BiocSet.")
13867 (license license:artistic2.0)))
13868
13869 (define-public r-biocworkflowtools
13870 (package
13871 (name "r-biocworkflowtools")
13872 (version "1.22.0")
13873 (source
13874 (origin
13875 (method url-fetch)
13876 (uri (bioconductor-uri "BiocWorkflowTools" version))
13877 (sha256
13878 (base32
13879 "1jj4icpkhrv9f6yx3vghkpdil1pfghf3yvc9756wmndvhs100r5l"))))
13880 (properties
13881 `((upstream-name . "BiocWorkflowTools")))
13882 (build-system r-build-system)
13883 (propagated-inputs
13884 (list r-biocstyle
13885 r-bookdown
13886 r-git2r
13887 r-httr
13888 r-knitr
13889 r-rmarkdown
13890 r-rstudioapi
13891 r-stringr
13892 r-usethis))
13893 (native-inputs
13894 (list r-knitr))
13895 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
13896 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
13897 (description
13898 "This package provides functions to ease the transition between
13899 Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
13900 (license license:expat)))
13901
13902 (define-public r-biodist
13903 (package
13904 (name "r-biodist")
13905 (version "1.68.0")
13906 (source
13907 (origin
13908 (method url-fetch)
13909 (uri (bioconductor-uri "bioDist" version))
13910 (sha256
13911 (base32
13912 "04nrvrcvpj0sn8p2i8n3ggsl2s7r4na576174i7bn1sj21vr0yb0"))))
13913 (properties `((upstream-name . "bioDist")))
13914 (build-system r-build-system)
13915 (propagated-inputs
13916 (list r-biobase r-kernsmooth))
13917 (home-page "https://bioconductor.org/packages/bioDist/")
13918 (synopsis "Different distance measures")
13919 (description
13920 "This package provides a collection of software tools for calculating
13921 distance measures.")
13922 (license license:artistic2.0)))
13923
13924 (define-public r-pcatools
13925 (package
13926 (name "r-pcatools")
13927 (version "2.8.0")
13928 (source
13929 (origin
13930 (method url-fetch)
13931 (uri (bioconductor-uri "PCAtools" version))
13932 (sha256
13933 (base32
13934 "03s4dh008fys2rrcpzanc0892p63f6jyyvzc9m42jbi1dlkyx26v"))))
13935 (properties `((upstream-name . "PCAtools")))
13936 (build-system r-build-system)
13937 (propagated-inputs
13938 (list r-beachmat
13939 r-bh
13940 r-biocparallel
13941 r-biocsingular
13942 r-cowplot
13943 r-delayedarray
13944 r-delayedmatrixstats
13945 r-dqrng
13946 r-ggplot2
13947 r-ggrepel
13948 r-lattice
13949 r-matrix
13950 r-rcpp
13951 r-reshape2))
13952 (native-inputs (list r-knitr))
13953 (home-page "https://github.com/kevinblighe/PCAtools")
13954 (synopsis "PCAtools: everything Principal Components Analysis")
13955 (description
13956 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
13957 structure of the data without the need to build any model to represent it.
13958 This \"summary\" of the data is arrived at through a process of reduction that
13959 can transform the large number of variables into a lesser number that are
13960 uncorrelated (i.e. the 'principal components'), while at the same time being
13961 capable of easy interpretation on the original data. PCAtools provides
13962 functions for data exploration via PCA, and allows the user to generate
13963 publication-ready figures. PCA is performed via @code{BiocSingular}; users
13964 can also identify an optimal number of principal components via different
13965 metrics, such as the elbow method and Horn's parallel analysis, which has
13966 relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
13967 dimensional mass cytometry data.")
13968 (license license:gpl3)))
13969
13970 (define-public r-rgreat
13971 (package
13972 (name "r-rgreat")
13973 (version "1.28.0")
13974 (source
13975 (origin
13976 (method url-fetch)
13977 (uri (bioconductor-uri "rGREAT" version))
13978 (sha256
13979 (base32
13980 "0px72r8mjimf5mxfwb9qz46kqpgjw5gaqq41hy0212ymjd8whaky"))))
13981 (properties `((upstream-name . "rGREAT")))
13982 (build-system r-build-system)
13983 (propagated-inputs
13984 (list r-genomicranges r-getoptlong r-iranges r-rcurl r-rjson))
13985 (native-inputs (list r-knitr))
13986 (home-page "https://github.com/jokergoo/rGREAT")
13987 (synopsis "Client for GREAT analysis")
13988 (description
13989 "This package makes GREAT (Genomic Regions Enrichment of Annotations
13990 Tool) analysis automatic by constructing a HTTP POST request according to
13991 user's input and automatically retrieving results from GREAT web server.")
13992 (license license:expat)))
13993
13994 (define-public r-m3c
13995 (package
13996 (name "r-m3c")
13997 (version "1.18.0")
13998 (source
13999 (origin
14000 (method url-fetch)
14001 (uri (bioconductor-uri "M3C" version))
14002 (sha256
14003 (base32
14004 "120gd7gkgc98d1l6hl2ij799b3jksdnga5iyb44ps9mbc79hl012"))))
14005 (properties `((upstream-name . "M3C")))
14006 (build-system r-build-system)
14007 (propagated-inputs
14008 (list r-cluster
14009 r-corpcor
14010 r-doparallel
14011 r-dosnow
14012 r-foreach
14013 r-ggplot2
14014 r-matrix
14015 r-matrixcalc
14016 r-rtsne
14017 r-umap))
14018 (native-inputs (list r-knitr))
14019 (home-page "https://bioconductor.org/packages/M3C")
14020 (synopsis "Monte Carlo reference-based consensus clustering")
14021 (description
14022 "M3C is a consensus clustering algorithm that uses a Monte Carlo
14023 simulation to eliminate overestimation of @code{K} and can reject the null
14024 hypothesis @code{K=1}.")
14025 (license license:agpl3+)))
14026
14027 (define-public r-icens
14028 (package
14029 (name "r-icens")
14030 (version "1.68.0")
14031 (source
14032 (origin
14033 (method url-fetch)
14034 (uri (bioconductor-uri "Icens" version))
14035 (sha256
14036 (base32
14037 "0jnbfv7js8bw0ginql90krrpk0p54whj9igw0zk3jc45jqvj2vyc"))))
14038 (properties `((upstream-name . "Icens")))
14039 (build-system r-build-system)
14040 (propagated-inputs
14041 (list r-survival))
14042 (home-page "https://bioconductor.org/packages/Icens")
14043 (synopsis "NPMLE for censored and truncated data")
14044 (description
14045 "This package provides many functions for computing the
14046 @dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
14047 truncated data.")
14048 (license license:artistic2.0)))
14049
14050 ;; This is a CRAN package but it depends on r-icens, which is published on
14051 ;; Bioconductor.
14052 (define-public r-interval
14053 (package
14054 (name "r-interval")
14055 (version "1.1-0.8")
14056 (source
14057 (origin
14058 (method url-fetch)
14059 (uri (cran-uri "interval" version))
14060 (sha256
14061 (base32
14062 "0g0k9nri19p3y3s70ic1w3i3sxq8fbsxaikd7c4d6afqzr8hk2nl"))))
14063 (properties `((upstream-name . "interval")))
14064 (build-system r-build-system)
14065 (propagated-inputs
14066 (list r-icens r-mlecens r-perm r-survival))
14067 (home-page "https://cran.r-project.org/web/packages/interval/")
14068 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
14069 (description
14070 "This package provides functions to fit nonparametric survival curves,
14071 plot them, and perform logrank or Wilcoxon type tests.")
14072 (license license:gpl2+)))
14073
14074 ;; This is a CRAN package, but it depends on r-interval, which depends on a
14075 ;; Bioconductor package.
14076 (define-public r-fhtest
14077 (package
14078 (name "r-fhtest")
14079 (version "1.5")
14080 (source
14081 (origin
14082 (method url-fetch)
14083 (uri (cran-uri "FHtest" version))
14084 (sha256
14085 (base32
14086 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
14087 (properties `((upstream-name . "FHtest")))
14088 (build-system r-build-system)
14089 (propagated-inputs
14090 (list r-interval r-kmsurv r-mass r-perm r-survival))
14091 (home-page "https://cran.r-project.org/web/packages/FHtest/")
14092 (synopsis "Tests for survival data based on the Fleming-Harrington class")
14093 (description
14094 "This package provides functions to compare two or more survival curves
14095 with:
14096
14097 @itemize
14098 @item The Fleming-Harrington test for right-censored data based on
14099 permutations and on counting processes.
14100 @item An extension of the Fleming-Harrington test for interval-censored data
14101 based on a permutation distribution and on a score vector distribution.
14102 @end itemize
14103 ")
14104 (license license:gpl2+)))
14105
14106 (define-public r-fourcseq
14107 (package
14108 (name "r-fourcseq")
14109 (version "1.24.0")
14110 (source
14111 (origin
14112 (method url-fetch)
14113 (uri (bioconductor-uri "FourCSeq" version))
14114 (sha256
14115 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
14116 (properties `((upstream-name . "FourCSeq")))
14117 (build-system r-build-system)
14118 (propagated-inputs
14119 (list r-biobase
14120 r-biostrings
14121 r-deseq2
14122 r-fda
14123 r-genomicalignments
14124 r-genomicranges
14125 r-ggbio
14126 r-ggplot2
14127 r-gtools
14128 r-lsd
14129 r-matrix
14130 r-reshape2
14131 r-rsamtools
14132 r-rtracklayer
14133 r-summarizedexperiment))
14134 (native-inputs
14135 (list r-knitr))
14136 (home-page
14137 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
14138 (synopsis "Analysis of multiplexed 4C sequencing data")
14139 (description
14140 "This package is an R package dedicated to the analysis of (multiplexed)
14141 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
14142 interactions between DNA elements and identify differential interactions
14143 between conditions. The statistical analysis in R starts with individual bam
14144 files for each sample as inputs. To obtain these files, the package contains
14145 a Python script to demultiplex libraries and trim off primer sequences. With
14146 a standard alignment software the required bam files can be then be
14147 generated.")
14148 (license license:gpl3+)))
14149
14150 (define-public r-preprocesscore
14151 (package
14152 (name "r-preprocesscore")
14153 (version "1.58.0")
14154 (source
14155 (origin
14156 (method url-fetch)
14157 (uri (bioconductor-uri "preprocessCore" version))
14158 (sha256
14159 (base32
14160 "1sqpp00hhv6gypflrjw8qpqyqgdcp29m86gmi1di1574x8casdkf"))))
14161 (properties
14162 `((upstream-name . "preprocessCore")))
14163 (build-system r-build-system)
14164 (home-page "https://github.com/bmbolstad/preprocessCore")
14165 (synopsis "Collection of pre-processing functions")
14166 (description
14167 "This package provides a library of core pre-processing and normalization
14168 routines.")
14169 (license license:lgpl2.0+)))
14170
14171 (define-public r-s4vectors
14172 (package
14173 (name "r-s4vectors")
14174 (version "0.34.0")
14175 (source (origin
14176 (method url-fetch)
14177 (uri (bioconductor-uri "S4Vectors" version))
14178 (sha256
14179 (base32
14180 "0j3ybhzdhlhw8527nks3mjja28asjya2n0m0rjkh4bw66rkfys4k"))))
14181 (properties
14182 `((upstream-name . "S4Vectors")))
14183 (build-system r-build-system)
14184 (propagated-inputs
14185 (list r-biocgenerics))
14186 (home-page "https://bioconductor.org/packages/S4Vectors")
14187 (synopsis "S4 implementation of vectors and lists")
14188 (description
14189 "The S4Vectors package defines the @code{Vector} and @code{List} virtual
14190 classes and a set of generic functions that extend the semantic of ordinary
14191 vectors and lists in R. Package developers can easily implement vector-like
14192 or list-like objects as concrete subclasses of @code{Vector} or @code{List}.
14193 In addition, a few low-level concrete subclasses of general interest (e.g.
14194 @code{DataFrame}, @code{Rle}, and @code{Hits}) are implemented in the
14195 S4Vectors package itself.")
14196 (license license:artistic2.0)))
14197
14198 ;; This is a CRAN package, but it depends on preprocessorcore, which is a
14199 ;; Bioconductor package.
14200 (define-public r-wgcna
14201 (package
14202 (name "r-wgcna")
14203 (version "1.71")
14204 (source
14205 (origin
14206 (method url-fetch)
14207 (uri (cran-uri "WGCNA" version))
14208 (sha256
14209 (base32
14210 "027pkc4pyn9bifqbjs05318gvlm06mffw016j50n59wfi2g39x91"))))
14211 (properties `((upstream-name . "WGCNA")))
14212 (build-system r-build-system)
14213 (propagated-inputs
14214 (list r-annotationdbi
14215 r-doparallel
14216 r-dynamictreecut
14217 r-fastcluster
14218 r-foreach
14219 r-go-db
14220 r-hmisc
14221 r-impute
14222 r-rcpp
14223 r-survival
14224 r-matrixstats
14225 r-preprocesscore))
14226 (home-page
14227 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14228 (synopsis "Weighted correlation network analysis")
14229 (description
14230 "This package provides functions necessary to perform Weighted
14231 Correlation Network Analysis on high-dimensional data. It includes functions
14232 for rudimentary data cleaning, construction and summarization of correlation
14233 networks, module identification and functions for relating both variables and
14234 modules to sample traits. It also includes a number of utility functions for
14235 data manipulation and visualization.")
14236 (license license:gpl2+)))
14237
14238 (define-public r-rgraphviz
14239 (package
14240 (name "r-rgraphviz")
14241 (version "2.40.0")
14242 (source
14243 (origin
14244 (method url-fetch)
14245 (uri (bioconductor-uri "Rgraphviz" version))
14246 (sha256
14247 (base32
14248 "1r6ff7w2bmyfl1vzjvpgnhb8f5arwjlpab8fw5ph8fgyiqbcx94l"))))
14249 (properties `((upstream-name . "Rgraphviz")))
14250 (build-system r-build-system)
14251 (arguments
14252 `(#:phases
14253 (modify-phases %standard-phases
14254 (add-after 'unpack 'make-reproducible
14255 (lambda _
14256 ;; The replacement value is taken from src/graphviz/builddate.h
14257 (substitute* "src/graphviz/configure"
14258 (("VERSION_DATE=.*")
14259 "VERSION_DATE=20200427.2341\n"))
14260 #t)))))
14261 ;; FIXME: Rgraphviz bundles the sources of an older variant of
14262 ;; graphviz. It does not build with the latest version of graphviz, so
14263 ;; we do not add graphviz to the inputs.
14264 (inputs (list zlib))
14265 (propagated-inputs
14266 (list r-graph))
14267 (native-inputs
14268 (list pkg-config))
14269 (home-page "https://bioconductor.org/packages/Rgraphviz")
14270 (synopsis "Plotting capabilities for R graph objects")
14271 (description
14272 "This package interfaces R with the graphviz library for plotting R graph
14273 objects from the @code{graph} package.")
14274 (license license:epl1.0)))
14275
14276 (define-public r-fithic
14277 (package
14278 (name "r-fithic")
14279 (version "1.22.0")
14280 (source (origin
14281 (method url-fetch)
14282 (uri (bioconductor-uri "FitHiC" version))
14283 (sha256
14284 (base32
14285 "0iv14yx3g7shzl8qrjknyxbmiylj51sbd1wzr1ff9lc5shgl55kq"))))
14286 (properties `((upstream-name . "FitHiC")))
14287 (build-system r-build-system)
14288 (propagated-inputs
14289 (list r-data-table r-fdrtool r-rcpp))
14290 (native-inputs
14291 (list r-knitr))
14292 (home-page "https://bioconductor.org/packages/FitHiC")
14293 (synopsis "Confidence estimation for intra-chromosomal contact maps")
14294 (description
14295 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
14296 intra-chromosomal contact maps produced by genome-wide genome architecture
14297 assays such as Hi-C.")
14298 (license license:gpl2+)))
14299
14300 (define-public r-hitc
14301 (package
14302 (name "r-hitc")
14303 (version "1.40.0")
14304 (source (origin
14305 (method url-fetch)
14306 (uri (bioconductor-uri "HiTC" version))
14307 (sha256
14308 (base32
14309 "1pkshlrra26cad0hf8a54brlkazni6rsvrplh36azxapx5rpps4s"))))
14310 (properties `((upstream-name . "HiTC")))
14311 (build-system r-build-system)
14312 (propagated-inputs
14313 (list r-biostrings
14314 r-genomeinfodb
14315 r-genomicranges
14316 r-iranges
14317 r-matrix
14318 r-rcolorbrewer
14319 r-rtracklayer))
14320 (home-page "https://bioconductor.org/packages/HiTC")
14321 (synopsis "High throughput chromosome conformation capture analysis")
14322 (description
14323 "The HiTC package was developed to explore high-throughput \"C\" data
14324 such as 5C or Hi-C. Dedicated R classes as well as standard methods for
14325 quality controls, normalization, visualization, and further analysis are also
14326 provided.")
14327 (license license:artistic2.0)))
14328
14329 (define-public r-hdf5array
14330 (package
14331 (name "r-hdf5array")
14332 (version "1.24.1")
14333 (source
14334 (origin
14335 (method url-fetch)
14336 (uri (bioconductor-uri "HDF5Array" version))
14337 (sha256
14338 (base32
14339 "1r1lg7k60qgb489xkypd4gvm1fmdlihvylb5va6xj58ipndbfday"))))
14340 (properties `((upstream-name . "HDF5Array")))
14341 (build-system r-build-system)
14342 (inputs
14343 (list zlib))
14344 (propagated-inputs
14345 (list r-biocgenerics
14346 r-delayedarray
14347 r-iranges
14348 r-matrix
14349 r-rhdf5
14350 r-rhdf5filters
14351 r-rhdf5lib
14352 r-s4vectors))
14353 (home-page "https://bioconductor.org/packages/HDF5Array")
14354 (synopsis "HDF5 back end for DelayedArray objects")
14355 (description "This package provides an array-like container for convenient
14356 access and manipulation of HDF5 datasets. It supports delayed operations and
14357 block processing.")
14358 (license license:artistic2.0)))
14359
14360 (define-public r-rhdf5lib
14361 (package
14362 (name "r-rhdf5lib")
14363 (version "1.18.2")
14364 (source
14365 (origin
14366 (method url-fetch)
14367 (uri (bioconductor-uri "Rhdf5lib" version))
14368 (sha256
14369 (base32
14370 "1jpb8h7c724yz51zjfqs90bsqxgmy1rry2ra9qamsgqpr2j9764g"))
14371 (modules '((guix build utils)))
14372 (snippet
14373 '(begin
14374 ;; Delete bundled binaries
14375 (delete-file-recursively "src/wininclude/")
14376 (delete-file-recursively "src/winlib/")
14377 (delete-file "src/hdf5small_cxx_hl_1.10.7.tar.gz")))))
14378 (properties `((upstream-name . "Rhdf5lib")))
14379 (build-system r-build-system)
14380 (arguments
14381 `(#:phases
14382 (modify-phases %standard-phases
14383 (add-after 'unpack 'do-not-use-bundled-hdf5
14384 (lambda* (#:key inputs #:allow-other-keys)
14385 (for-each delete-file '("configure" "configure.ac"))
14386 (substitute* "R/zzz.R"
14387 (("return\\(links\\)") "return(\" -lz\")"))
14388 (with-directory-excursion "src"
14389 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
14390 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
14391 "hdf5")
14392 ;; Remove timestamp and host system information to make
14393 ;; the build reproducible.
14394 (substitute* "hdf5/src/libhdf5.settings.in"
14395 (("Configured on: @CONFIG_DATE@")
14396 "Configured on: Guix")
14397 (("Uname information:.*")
14398 "Uname information: Linux\n")
14399 ;; Remove unnecessary store reference.
14400 (("C Compiler:.*")
14401 "C Compiler: GCC\n"))
14402 (rename-file "hdf5/src/libhdf5.settings.in"
14403 "hdf5/src/libhdf5.settings")
14404 (rename-file "Makevars.in" "Makevars")
14405 (substitute* "Makevars"
14406 (("@BUILD_HDF5@") "")
14407 (("@COPY_SZIP@") "")
14408 (("@ZLIB_LIB@") "-lz")
14409 (("@ZLIB_INCLUDE@") "")
14410 (("HDF5_CXX_LIB=.*")
14411 (string-append "HDF5_CXX_LIB="
14412 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
14413 (("HDF5_LIB=.*")
14414 (string-append "HDF5_LIB="
14415 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
14416 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
14417 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
14418 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
14419 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
14420 (("HDF5_HL_LIB=.*")
14421 (string-append "HDF5_HL_LIB="
14422 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
14423 (("HDF5_HL_CXX_LIB=.*")
14424 (string-append "HDF5_HL_CXX_LIB="
14425 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
14426 ;; szip is non-free software
14427 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
14428 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n"))))))))
14429 (propagated-inputs
14430 (list hdf5-1.10 zlib))
14431 (native-inputs
14432 `(("hdf5-source" ,(package-source hdf5-1.10))
14433 ("r-knitr" ,r-knitr)))
14434 (home-page "https://bioconductor.org/packages/Rhdf5lib")
14435 (synopsis "HDF5 library as an R package")
14436 (description "This package provides C and C++ HDF5 libraries for use in R
14437 packages.")
14438 (license license:artistic2.0)))
14439
14440 (define-public r-beachmat
14441 (package
14442 (name "r-beachmat")
14443 (version "2.12.0")
14444 (source
14445 (origin
14446 (method url-fetch)
14447 (uri (bioconductor-uri "beachmat" version))
14448 (sha256
14449 (base32
14450 "0fc6vvjjq1mfjfj2zqkap3rwvinnfqjs0cpk1447sspvd1rjya8c"))))
14451 (build-system r-build-system)
14452 (propagated-inputs
14453 (list r-biocgenerics r-delayedarray r-matrix r-rcpp))
14454 (native-inputs
14455 (list r-knitr))
14456 (home-page "https://bioconductor.org/packages/beachmat")
14457 (synopsis "Compiling Bioconductor to handle each matrix type")
14458 (description "This package provides a consistent C++ class interface for a
14459 variety of commonly used matrix types, including sparse and HDF5-backed
14460 matrices.")
14461 (license license:gpl3)))
14462
14463 ;; This package includes files that have been taken from kentutils. Some
14464 ;; parts of kentutils are not released under a free license, but this package
14465 ;; only uses files that are also found in the free parts of kentutils.
14466 (define-public r-cner
14467 (package
14468 (name "r-cner")
14469 (version "1.32.0")
14470 (source
14471 (origin
14472 (method url-fetch)
14473 (uri (bioconductor-uri "CNEr" version))
14474 (sha256
14475 (base32 "05zvr5fv8nprxqh2wvvrlf737dq242i20p1rpyqjaxihl6xl62kq"))))
14476 (properties `((upstream-name . "CNEr")))
14477 (build-system r-build-system)
14478 (inputs (list zlib))
14479 (propagated-inputs
14480 (list r-annotate
14481 r-biocgenerics
14482 r-biostrings
14483 r-dbi
14484 r-genomeinfodb
14485 r-genomicalignments
14486 r-genomicranges
14487 r-ggplot2
14488 r-go-db
14489 r-iranges
14490 r-keggrest
14491 r-powerlaw
14492 r-r-utils
14493 r-readr
14494 r-reshape2
14495 r-rsqlite
14496 r-rtracklayer
14497 r-s4vectors
14498 r-xvector))
14499 (native-inputs
14500 (list r-knitr))
14501 (home-page "https://github.com/ge11232002/CNEr")
14502 (synopsis "CNE Detection and Visualization")
14503 (description
14504 "This package provides tools for large-scale identification and
14505 advanced visualization of sets of conserved noncoding elements.")
14506 ;; For all files in src/ucsc "license is hereby granted for all use -
14507 ;; public, private or commercial"; this includes those files that don't
14508 ;; have a license header, because they are included in the free parts of
14509 ;; the kentutils package.
14510 (license (list license:gpl2
14511 (license:non-copyleft
14512 "https://raw.githubusercontent.com/ucscGenomeBrowser/kent/v410_base/src/lib/LICENSE")))))
14513
14514 (define-public r-tfbstools
14515 (package
14516 (name "r-tfbstools")
14517 (version "1.34.0")
14518 (source
14519 (origin
14520 (method url-fetch)
14521 (uri (bioconductor-uri "TFBSTools" version))
14522 (sha256
14523 (base32
14524 "0l6j1r2cx7jfd39qzbyynk4jvzd81ys6yypzxjc97js4kkyrx29w"))))
14525 (properties `((upstream-name . "TFBSTools")))
14526 (build-system r-build-system)
14527 (propagated-inputs
14528 (list r-biobase
14529 r-biocgenerics
14530 r-biocparallel
14531 r-biostrings
14532 r-bsgenome
14533 r-catools
14534 r-cner
14535 r-dbi
14536 r-dirichletmultinomial
14537 r-genomeinfodb
14538 r-genomicranges
14539 r-gtools
14540 r-iranges
14541 r-rsqlite
14542 r-rtracklayer
14543 r-s4vectors
14544 r-seqlogo
14545 r-tfmpvalue
14546 r-xml
14547 r-xvector))
14548 (native-inputs (list r-knitr))
14549 (home-page "https://github.com/ge11232002/TFBSTools")
14550 (synopsis "Transcription factor binding site (TFBS) analysis")
14551 (description
14552 "TFBSTools is a package for the analysis and manipulation of
14553 transcription factor binding sites. It includes matrices conversion
14554 between @dfn{Position Frequency Matrix} (PFM), @dfn{Position Weight
14555 Matrix} (PWM) and @dfn{Information Content Matrix} (ICM). It can also
14556 scan putative TFBS from sequence/alignment, query JASPAR database and
14557 provides a wrapper of de novo motif discovery software.")
14558 (license license:gpl2)))
14559
14560 (define-public r-maftools
14561 (package
14562 (name "r-maftools")
14563 (version "2.12.0")
14564 (source
14565 (origin
14566 (method url-fetch)
14567 (uri (bioconductor-uri "maftools" version))
14568 (sha256
14569 (base32 "1gqfi95v4fs64n4walij0g2kds3fbbwp6lih5yakmgf6kj8fpkk6"))))
14570 (properties `((upstream-name . "maftools")))
14571 (build-system r-build-system)
14572 (propagated-inputs
14573 (list r-data-table
14574 r-dnacopy
14575 r-rcolorbrewer
14576 r-rhtslib
14577 r-survival
14578 r-zlibbioc))
14579 (native-inputs (list r-knitr))
14580 (home-page "https://github.com/PoisonAlien/maftools")
14581 (synopsis "Summarize, analyze and visualize MAF files")
14582 (description
14583 "Analyze and visualize Mutation Annotation Format (MAF) files from large
14584 scale sequencing studies. This package provides various functions to perform
14585 most commonly used analyses in cancer genomics and to create feature rich
14586 customizable visualzations with minimal effort.")
14587 (license license:expat)))
14588
14589 (define-public r-motifmatchr
14590 (package
14591 (name "r-motifmatchr")
14592 (version "1.18.0")
14593 (source
14594 (origin
14595 (method url-fetch)
14596 (uri (bioconductor-uri "motifmatchr" version))
14597 (sha256
14598 (base32
14599 "1ssn00mxwk23zr5na0vcmxvm69i68f0ga0wqlv1nk2isg0wpv878"))))
14600 (properties `((upstream-name . "motifmatchr")))
14601 (build-system r-build-system)
14602 (propagated-inputs
14603 (list r-biostrings
14604 r-bsgenome
14605 r-genomeinfodb
14606 r-genomicranges
14607 r-iranges
14608 r-matrix
14609 r-rcpp
14610 r-rcpparmadillo
14611 r-rsamtools
14612 r-s4vectors
14613 r-summarizedexperiment
14614 r-tfbstools))
14615 (native-inputs (list r-knitr))
14616 (home-page "https://bioconductor.org/packages/motifmatchr")
14617 (synopsis "Fast motif matching in R")
14618 (description
14619 "Quickly find motif matches for many motifs and many sequences.
14620 This package wraps C++ code from the MOODS motif calling library.")
14621 (license license:gpl3)))
14622
14623 (define-public r-chromvar
14624 (package
14625 (name "r-chromvar")
14626 (version "1.18.0")
14627 (source
14628 (origin
14629 (method url-fetch)
14630 (uri (bioconductor-uri "chromVAR" version))
14631 (sha256
14632 (base32 "0vhsvkm4kvln0002f13ayk57f9fmiz1kw9vwpsm1vds1vahd656m"))))
14633 (properties `((upstream-name . "chromVAR")))
14634 (build-system r-build-system)
14635 (propagated-inputs
14636 (list r-biocgenerics
14637 r-biocparallel
14638 r-biostrings
14639 r-bsgenome
14640 r-dt
14641 r-genomeinfodb
14642 r-genomicranges
14643 r-ggplot2
14644 r-iranges
14645 r-matrix
14646 r-miniui
14647 r-nabor
14648 r-plotly
14649 r-rcolorbrewer
14650 r-rcpp
14651 r-rcpparmadillo
14652 r-rsamtools
14653 r-rtsne
14654 r-s4vectors
14655 r-shiny
14656 r-summarizedexperiment
14657 r-tfbstools))
14658 (native-inputs (list r-knitr))
14659 (home-page "https://bioconductor.org/packages/release/bioc/html/chromVAR.html")
14660 (synopsis "Determine chromatin variation across regions")
14661 (description
14662 "This package @code{r-chromvar} determines variation in chromatin
14663 accessibility across sets of annotations or peaks. @code{r-chromvar} is
14664 designed primarily for single-cell or sparse chromatin accessibility data like
14665 single cell assay for transposase-accessible chromatin using
14666 sequencing (@code{scATAC-seq} or sparse bulk ATAC or deoxyribonuclease
14667 sequence (@code{DNAse-seq}) experiments.")
14668 (license license:expat)))
14669
14670 (define-public r-singlecellexperiment
14671 (package
14672 (name "r-singlecellexperiment")
14673 (version "1.18.0")
14674 (source
14675 (origin
14676 (method url-fetch)
14677 (uri (bioconductor-uri "SingleCellExperiment" version))
14678 (sha256
14679 (base32
14680 "0s1aqbvlfnzijzfywjfpinqmxqj269dq2d3zlgf4xw9c1nwwnv7p"))))
14681 (properties
14682 `((upstream-name . "SingleCellExperiment")))
14683 (build-system r-build-system)
14684 (propagated-inputs
14685 (list r-biocgenerics r-delayedarray r-genomicranges r-s4vectors
14686 r-summarizedexperiment))
14687 (native-inputs
14688 (list r-knitr))
14689 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
14690 (synopsis "S4 classes for single cell data")
14691 (description "This package defines an S4 class for storing data from
14692 single-cell experiments. This includes specialized methods to store and
14693 retrieve spike-in information, dimensionality reduction coordinates and size
14694 factors for each cell, along with the usual metadata for genes and
14695 libraries.")
14696 (license license:gpl3)))
14697
14698 (define-public r-singler
14699 (package
14700 (name "r-singler")
14701 (version "1.10.0")
14702 (source
14703 (origin
14704 (method url-fetch)
14705 (uri (bioconductor-uri "SingleR" version))
14706 (sha256
14707 (base32 "0qbyc6ygw2xv3li9187i3axsw6ihwpa7pkvxvy9cagv7xck45c5y"))))
14708 (properties `((upstream-name . "SingleR")))
14709 (build-system r-build-system)
14710 (propagated-inputs
14711 (list r-beachmat
14712 r-biocneighbors
14713 r-biocparallel
14714 r-biocsingular
14715 r-delayedarray
14716 r-delayedmatrixstats
14717 r-matrix
14718 r-rcpp
14719 r-s4vectors
14720 r-summarizedexperiment))
14721 (native-inputs (list r-knitr))
14722 (home-page "https://github.com/LTLA/SingleR")
14723 (synopsis "Reference-based single-cell RNA-seq annotation")
14724 (description
14725 "This package performs unbiased cell type recognition from single-cell
14726 RNA sequencing data, by leveraging reference transcriptomic datasets of pure
14727 cell types to infer the cell of origin of each single cell independently.")
14728 (license license:gpl3)))
14729
14730 (define-public r-scuttle
14731 (package
14732 (name "r-scuttle")
14733 (version "1.6.2")
14734 (source
14735 (origin
14736 (method url-fetch)
14737 (uri (bioconductor-uri "scuttle" version))
14738 (sha256
14739 (base32
14740 "0nnmq3wf436xaw4arc4y3ldvn6ilsg52xzbccmid0icb8z3y2kzn"))))
14741 (properties `((upstream-name . "scuttle")))
14742 (build-system r-build-system)
14743 (propagated-inputs
14744 (list r-beachmat
14745 r-biocgenerics
14746 r-biocparallel
14747 r-delayedarray
14748 r-delayedmatrixstats
14749 r-genomicranges
14750 r-matrix
14751 r-rcpp
14752 r-s4vectors
14753 r-singlecellexperiment
14754 r-summarizedexperiment))
14755 (native-inputs (list r-knitr))
14756 (home-page "https://bioconductor.org/packages/scuttle")
14757 (synopsis "Single-cell RNA-Seq analysis utilities")
14758 (description
14759 "This package provides basic utility functions for performing single-cell
14760 analyses, focusing on simple normalization, quality control and data
14761 transformations. It also provides some helper functions to assist development
14762 of other packages.")
14763 (license license:gpl3)))
14764
14765 (define-public r-scater
14766 (package
14767 (name "r-scater")
14768 (version "1.24.0")
14769 (source (origin
14770 (method url-fetch)
14771 (uri (bioconductor-uri "scater" version))
14772 (sha256
14773 (base32
14774 "0dqirggw7my5nq4ln9q0ya18ciqplkz9gx318ffias9ag3yii5rw"))))
14775 (build-system r-build-system)
14776 (propagated-inputs
14777 (list r-beachmat
14778 r-biocgenerics
14779 r-biocneighbors
14780 r-biocparallel
14781 r-biocsingular
14782 r-delayedarray
14783 r-delayedmatrixstats
14784 r-ggbeeswarm
14785 r-ggplot2
14786 r-ggrepel
14787 r-gridextra
14788 r-matrix
14789 r-rcolorbrewer
14790 r-rcppml
14791 r-rlang
14792 r-rtsne
14793 r-s4vectors
14794 r-scuttle
14795 r-singlecellexperiment
14796 r-summarizedexperiment
14797 r-viridis))
14798 (native-inputs
14799 (list r-knitr))
14800 (home-page "https://github.com/davismcc/scater")
14801 (synopsis "Single-cell analysis toolkit for gene expression data in R")
14802 (description "This package provides a collection of tools for doing
14803 various analyses of single-cell RNA-seq gene expression data, with a focus on
14804 quality control.")
14805 (license license:gpl2+)))
14806
14807 (define-public r-scran
14808 (package
14809 (name "r-scran")
14810 (version "1.24.0")
14811 (source
14812 (origin
14813 (method url-fetch)
14814 (uri (bioconductor-uri "scran" version))
14815 (sha256
14816 (base32
14817 "0xg7dl35915a65pmzkxdacsm4iqf97ayljdjljcvqx1ycmn7x68w"))))
14818 (build-system r-build-system)
14819 (propagated-inputs
14820 (list r-beachmat
14821 r-bh
14822 r-biocgenerics
14823 r-biocparallel
14824 r-biocsingular
14825 r-bluster
14826 r-delayedarray
14827 r-delayedmatrixstats
14828 r-dqrng
14829 r-edger
14830 r-igraph
14831 r-limma
14832 r-matrix
14833 r-metapod
14834 r-rcpp
14835 r-s4vectors
14836 r-scuttle
14837 r-singlecellexperiment
14838 r-statmod
14839 r-summarizedexperiment))
14840 (native-inputs
14841 (list r-knitr))
14842 (home-page "https://bioconductor.org/packages/scran")
14843 (synopsis "Methods for single-cell RNA-Seq data analysis")
14844 (description "This package implements a variety of low-level analyses of
14845 single-cell RNA-seq data. Methods are provided for normalization of
14846 cell-specific biases, assignment of cell cycle phase, and detection of highly
14847 variable and significantly correlated genes.")
14848 (license license:gpl3)))
14849
14850 (define-public r-sparsematrixstats
14851 (package
14852 (name "r-sparsematrixstats")
14853 (version "1.8.0")
14854 (source
14855 (origin
14856 (method url-fetch)
14857 (uri (bioconductor-uri "sparseMatrixStats" version))
14858 (sha256
14859 (base32
14860 "0p12kay7p5zbfm2589wdx0n9jhgpf5fb2fsmkhn3p4ck4xcy13x2"))))
14861 (properties
14862 `((upstream-name . "sparseMatrixStats")))
14863 (build-system r-build-system)
14864 (propagated-inputs
14865 (list r-matrix r-matrixgenerics r-matrixstats r-rcpp))
14866 (native-inputs (list r-knitr))
14867 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
14868 (synopsis "Summary statistics for rows and columns of sparse matrices")
14869 (description
14870 "This package provides high performance functions for row and column
14871 operations on sparse matrices. Currently, the optimizations are limited to
14872 data in the column sparse format.")
14873 (license license:expat)))
14874
14875 (define-public r-delayedmatrixstats
14876 (package
14877 (name "r-delayedmatrixstats")
14878 (version "1.18.0")
14879 (source
14880 (origin
14881 (method url-fetch)
14882 (uri (bioconductor-uri "DelayedMatrixStats" version))
14883 (sha256
14884 (base32
14885 "1qlwv69c0r2w3zkmsr8r7w6sr3hf1ha0sfcrsjx4ks8f0ww7aqsv"))))
14886 (properties
14887 `((upstream-name . "DelayedMatrixStats")))
14888 (build-system r-build-system)
14889 (propagated-inputs
14890 (list r-delayedarray
14891 r-iranges
14892 r-matrix
14893 r-matrixgenerics
14894 r-matrixstats
14895 r-s4vectors
14896 r-sparsematrixstats))
14897 (native-inputs
14898 (list r-knitr))
14899 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
14900 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
14901 (description
14902 "This package provides a port of the @code{matrixStats} API for use with
14903 @code{DelayedMatrix} objects from the @code{DelayedArray} package. It
14904 contains high-performing functions operating on rows and columns of
14905 @code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
14906 @code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
14907 are optimized per data type and for subsetted calculations such that both
14908 memory usage and processing time is minimized.")
14909 (license license:expat)))
14910
14911 (define-public r-mscoreutils
14912 (package
14913 (name "r-mscoreutils")
14914 (version "1.8.0")
14915 (source
14916 (origin
14917 (method url-fetch)
14918 (uri (bioconductor-uri "MsCoreUtils" version))
14919 (sha256
14920 (base32
14921 "077x1zcy27x8akmagjn75j97082cgnahrbfw0qx08q455m5x3xzh"))))
14922 (properties `((upstream-name . "MsCoreUtils")))
14923 (build-system r-build-system)
14924 (propagated-inputs
14925 (list r-clue r-mass r-rcpp r-s4vectors))
14926 (native-inputs
14927 (list r-knitr))
14928 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
14929 (synopsis "Core utils for mass spectrometry data")
14930 (description
14931 "This package defines low-level functions for mass spectrometry data and
14932 is independent of any high-level data structures. These functions include
14933 mass spectra processing functions (noise estimation, smoothing, binning),
14934 quantitative aggregation functions (median polish, robust summarisation,
14935 etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
14936 well as misc helper functions, that are used across high-level data structure
14937 within the R for Mass Spectrometry packages.")
14938 (license license:artistic2.0)))
14939
14940 (define-public r-msfeatures
14941 (package
14942 (name "r-msfeatures")
14943 (version "1.4.0")
14944 (source
14945 (origin
14946 (method url-fetch)
14947 (uri (bioconductor-uri "MsFeatures" version))
14948 (sha256
14949 (base32 "111iqcq4q315pb4j8z427shin9b00p179m2s9h6dd7imvbd68yq3"))))
14950 (properties `((upstream-name . "MsFeatures")))
14951 (build-system r-build-system)
14952 (propagated-inputs
14953 (list r-mscoreutils r-protgenerics r-summarizedexperiment))
14954 (native-inputs
14955 (list r-knitr))
14956 (home-page "https://github.com/RforMassSpectrometry/MsFeatures")
14957 (synopsis "Functionality for mass spectrometry features")
14958 (description
14959 "The MsFeature package defines functionality for Mass Spectrometry
14960 features. This includes functions to group (LC-MS) features based on some of
14961 their properties, such as retention time (coeluting features), or correlation
14962 of signals across samples. This package hence can be used to group features, and
14963 its results can be used as an input for the @code{QFeatures} package which
14964 allows aggregating abundance levels of features within each group. This
14965 package defines concepts and functions for base and common data types,
14966 implementations for more specific data types are expected to be implemented in
14967 the respective packages (such as e.g. @code{xcms}).")
14968 (license license:artistic2.0)))
14969
14970 (define-public r-biocio
14971 (package
14972 (name "r-biocio")
14973 (version "1.6.0")
14974 (source
14975 (origin
14976 (method url-fetch)
14977 (uri (bioconductor-uri "BiocIO" version))
14978 (sha256
14979 (base32
14980 "16j826w4zrmbgpmq6nyglcrjailsfv48ih1rz1qn383g7v503ydp"))))
14981 (properties `((upstream-name . "BiocIO")))
14982 (build-system r-build-system)
14983 (propagated-inputs
14984 (list r-biocgenerics r-s4vectors))
14985 (native-inputs
14986 (list r-knitr))
14987 (home-page "https://bioconductor.org/packages/BiocIO")
14988 (synopsis "Standard input and output for Bioconductor packages")
14989 (description
14990 "This package implements `import()` and `export()` standard generics for
14991 importing and exporting biological data formats. `import()` supports
14992 whole-file as well as chunk-wise iterative import. The `import()` interface
14993 optionally provides a standard mechanism for 'lazy' access via `filter()` (on
14994 row or element-like components of the file resource), `select()` (on
14995 column-like components of the file resource) and `collect()`. The `import()`
14996 interface optionally provides transparent access to remote (e.g. via https)
14997 as well as local access. Developers can register a file extension, e.g.,
14998 `.loom` for dispatch from character-based URIs to specific `import()` /
14999 `export()` methods based on classes representing file types, e.g.,
15000 `LoomFile()`.")
15001 (license license:artistic2.0)))
15002
15003 (define-public r-msmseda
15004 (package
15005 (name "r-msmseda")
15006 (version "1.34.0")
15007 (source
15008 (origin
15009 (method url-fetch)
15010 (uri (bioconductor-uri "msmsEDA" version))
15011 (sha256
15012 (base32
15013 "0jnaq9ar4mnf3pfhka9hvk61p51ny9jws49xi8z29dq288b42b42"))))
15014 (properties `((upstream-name . "msmsEDA")))
15015 (build-system r-build-system)
15016 (propagated-inputs
15017 (list r-gplots r-mass r-msnbase r-rcolorbrewer))
15018 (home-page
15019 "https://bioconductor.org/packages/msmsEDA")
15020 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
15021 (description
15022 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
15023 experiments, and visualize de influence of the involved factors.")
15024 (license license:gpl2)))
15025
15026 (define-public r-msmstests
15027 (package
15028 (name "r-msmstests")
15029 (version "1.34.0")
15030 (source
15031 (origin
15032 (method url-fetch)
15033 (uri (bioconductor-uri "msmsTests" version))
15034 (sha256
15035 (base32
15036 "1wzdz0p9wmr243xkmymx9fwskafkyxgmlip4sd1fy2s06px7r0xi"))))
15037 (properties `((upstream-name . "msmsTests")))
15038 (build-system r-build-system)
15039 (propagated-inputs
15040 (list r-edger r-msmseda r-msnbase r-qvalue))
15041 (home-page
15042 "https://bioconductor.org/packages/msmsTests")
15043 (synopsis "Differential LC-MS/MS expression tests")
15044 (description
15045 "This package provides statistical tests for label-free LC-MS/MS data
15046 by spectral counts, to discover differentially expressed proteins between two
15047 biological conditions. Three tests are available: Poisson GLM regression,
15048 quasi-likelihood GLM regression, and the negative binomial of the edgeR
15049 package. The three models admit blocking factors to control for nuisance
15050 variables. To assure a good level of reproducibility a post-test filter is
15051 available, where we may set the minimum effect size considered biologicaly
15052 relevant, and the minimum expression of the most abundant condition.")
15053 (license license:gpl2)))
15054
15055 (define-public r-catalyst
15056 (package
15057 (name "r-catalyst")
15058 (version "1.20.1")
15059 (source
15060 (origin
15061 (method url-fetch)
15062 (uri (bioconductor-uri "CATALYST" version))
15063 (sha256
15064 (base32
15065 "05vfqwa9qsm16px77s9bzygs6zymcxshymmpvz86a9l1cy1yxbza"))))
15066 (properties `((upstream-name . "CATALYST")))
15067 (build-system r-build-system)
15068 (propagated-inputs
15069 (list r-circlize
15070 r-complexheatmap
15071 r-consensusclusterplus
15072 r-cowplot
15073 r-data-table
15074 r-dplyr
15075 r-drc
15076 r-flowcore
15077 r-flowsom
15078 r-ggplot2
15079 r-ggrepel
15080 r-ggridges
15081 r-gridextra
15082 r-magrittr
15083 r-matrix
15084 r-matrixstats
15085 r-nnls
15086 r-purrr
15087 r-rcolorbrewer
15088 r-reshape2
15089 r-rtsne
15090 r-s4vectors
15091 r-scales
15092 r-scater
15093 r-singlecellexperiment
15094 r-summarizedexperiment))
15095 (native-inputs
15096 (list r-knitr))
15097 (home-page "https://github.com/HelenaLC/CATALYST")
15098 (synopsis "Cytometry data analysis tools")
15099 (description
15100 "This package is @dfn{Cytometry dATa anALYSis Tools} (CATALYST). Mass
15101 cytometry like @dfn{Cytometry by time of flight} (CyTOF) uses heavy metal
15102 isotopes rather than fluorescent tags as reporters to label antibodies,
15103 thereby substantially decreasing spectral overlap and allowing for examination
15104 of over 50 parameters at the single cell level. While spectral overlap is
15105 significantly less pronounced in CyTOF than flow cytometry, spillover due to
15106 detection sensitivity, isotopic impurities, and oxide formation can impede
15107 data interpretability. @code{CATALYST} was designed to provide a pipeline for
15108 preprocessing of cytometry data, including:
15109
15110 @enumerate
15111 @item normalization using bead standards;
15112 @item single-cell deconvolution;
15113 @item bead-based compensation.
15114 @end enumerate
15115 ")
15116 (license license:gpl2+)))
15117
15118 (define-public r-erma
15119 (package
15120 (name "r-erma")
15121 (version "1.12.0")
15122 (source
15123 (origin
15124 (method url-fetch)
15125 (uri (bioconductor-uri "erma" version))
15126 (sha256
15127 (base32
15128 "1ilq01cr2ipxpmp422fikiz6nj4nasjhj0ikcagjn2zmmarpgi1b"))))
15129 (build-system r-build-system)
15130 (propagated-inputs
15131 (list r-annotationdbi
15132 r-biobase
15133 r-biocgenerics
15134 r-biocparallel
15135 r-genomeinfodb
15136 r-genomicfiles
15137 r-genomicranges
15138 r-ggplot2
15139 r-homo-sapiens
15140 r-iranges
15141 r-rtracklayer
15142 r-s4vectors
15143 r-shiny
15144 r-summarizedexperiment))
15145 (native-inputs
15146 (list r-knitr))
15147 (home-page "https://bioconductor.org/packages/erma")
15148 (synopsis "Epigenomic road map adventures")
15149 (description
15150 "The epigenomics road map describes locations of epigenetic marks in DNA
15151 from a variety of cell types. Of interest are locations of histone
15152 modifications, sites of DNA methylation, and regions of accessible chromatin.
15153 This package presents a selection of elements of the road map including
15154 metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
15155 by Ernst and Kellis.")
15156 (license license:artistic2.0)))
15157
15158 (define-public r-ggbio
15159 (package
15160 (name "r-ggbio")
15161 (version "1.44.1")
15162 (source
15163 (origin
15164 (method url-fetch)
15165 (uri (bioconductor-uri "ggbio" version))
15166 (sha256
15167 (base32
15168 "0iyhjalwq1jmldpn20iv8l2kmz6sm20ddry2yz2zn7yq0wszp3vg"))))
15169 (build-system r-build-system)
15170 (arguments
15171 `(#:phases
15172 (modify-phases %standard-phases
15173 ;; See https://github.com/tengfei/ggbio/issues/117
15174 ;; This fix will be included in the next release.
15175 (add-after 'unpack 'fix-typo
15176 (lambda _
15177 (substitute* "R/GGbio-class.R"
15178 (("fechable") "fetchable"))
15179 #t)))))
15180 (propagated-inputs
15181 (list r-annotationdbi
15182 r-annotationfilter
15183 r-biobase
15184 r-biocgenerics
15185 r-biostrings
15186 r-biovizbase
15187 r-bsgenome
15188 r-ensembldb
15189 r-genomeinfodb
15190 r-genomicalignments
15191 r-genomicfeatures
15192 r-genomicranges
15193 r-ggally
15194 r-ggplot2
15195 r-gridextra
15196 r-gtable
15197 r-hmisc
15198 r-iranges
15199 r-organismdbi
15200 r-reshape2
15201 r-rlang
15202 r-rsamtools
15203 r-rtracklayer
15204 r-s4vectors
15205 r-scales
15206 r-summarizedexperiment
15207 r-variantannotation))
15208 (native-inputs
15209 (list r-knitr))
15210 (home-page "http://www.tengfei.name/ggbio/")
15211 (synopsis "Visualization tools for genomic data")
15212 (description
15213 "The ggbio package extends and specializes the grammar of graphics for
15214 biological data. The graphics are designed to answer common scientific
15215 questions, in particular those often asked of high throughput genomics data.
15216 All core Bioconductor data structures are supported, where appropriate. The
15217 package supports detailed views of particular genomic regions, as well as
15218 genome-wide overviews. Supported overviews include ideograms and grand linear
15219 views. High-level plots include sequence fragment length, edge-linked
15220 interval to data view, mismatch pileup, and several splicing summaries.")
15221 (license license:artistic2.0)))
15222
15223 (define-public r-gqtlbase
15224 (package
15225 (name "r-gqtlbase")
15226 (version "1.21.1")
15227 (source
15228 (origin
15229 (method url-fetch)
15230 (uri (bioconductor-uri "gQTLBase" version))
15231 (sha256
15232 (base32
15233 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
15234 (properties `((upstream-name . "gQTLBase")))
15235 (build-system r-build-system)
15236 (arguments
15237 `(#:phases
15238 (modify-phases %standard-phases
15239 ;; This is an upstream bug.
15240 (add-after 'unpack 'fix-imports
15241 (lambda _
15242 (substitute* "NAMESPACE"
15243 ((".*maxffmode.*") "")
15244 (("importFrom\\(ff,.*") "import(ff)\n"))
15245 #t)))))
15246 (propagated-inputs
15247 (list r-batchjobs
15248 r-bbmisc
15249 r-biocgenerics
15250 r-bit
15251 r-doparallel
15252 r-ff
15253 r-ffbase
15254 r-foreach
15255 r-genomicfiles
15256 r-genomicranges
15257 r-rtracklayer
15258 r-s4vectors
15259 r-summarizedexperiment))
15260 (native-inputs
15261 (list r-knitr))
15262 (home-page "https://bioconductor.org/packages/gQTLBase")
15263 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
15264 (description
15265 "The purpose of this package is to simplify the storage and interrogation
15266 of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
15267 and more.")
15268 (license license:artistic2.0)))
15269
15270 (define-public r-gqtlstats
15271 (package
15272 (name "r-gqtlstats")
15273 (version "1.21.3")
15274 (source
15275 (origin
15276 (method url-fetch)
15277 (uri (bioconductor-uri "gQTLstats" version))
15278 (sha256
15279 (base32
15280 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
15281 (properties `((upstream-name . "gQTLstats")))
15282 (build-system r-build-system)
15283 (propagated-inputs
15284 (list r-annotationdbi
15285 r-batchjobs
15286 r-bbmisc
15287 r-beeswarm
15288 r-biobase
15289 r-biocgenerics
15290 r-doparallel
15291 r-dplyr
15292 r-erma
15293 r-ffbase
15294 r-foreach
15295 r-genomeinfodb
15296 r-genomicfeatures
15297 r-genomicfiles
15298 r-genomicranges
15299 r-ggbeeswarm
15300 r-ggplot2
15301 r-gqtlbase
15302 r-hardyweinberg
15303 r-homo-sapiens
15304 r-iranges
15305 r-limma
15306 r-mgcv
15307 r-plotly
15308 r-reshape2
15309 r-s4vectors
15310 r-shiny
15311 r-snpstats
15312 r-summarizedexperiment
15313 r-variantannotation))
15314 (native-inputs
15315 (list r-knitr))
15316 (home-page "https://bioconductor.org/packages/gQTLstats")
15317 (synopsis "Computationally efficient analysis for eQTL and allied studies")
15318 (description
15319 "This package provides tools for the computationally efficient analysis
15320 of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
15321 The software in this package aims to support refinements and functional
15322 interpretation of members of a collection of association statistics on a
15323 family of feature/genome hypotheses.")
15324 (license license:artistic2.0)))
15325
15326 (define-public r-gviz
15327 (package
15328 (name "r-gviz")
15329 (version "1.40.1")
15330 (source
15331 (origin
15332 (method url-fetch)
15333 (uri (bioconductor-uri "Gviz" version))
15334 (sha256
15335 (base32
15336 "0as3sxhv21bqqrpvafcqim7798hhkzj3q40hy1rqyhv2lhj4rbvi"))))
15337 (properties `((upstream-name . "Gviz")))
15338 (build-system r-build-system)
15339 (propagated-inputs
15340 (list r-annotationdbi
15341 r-biobase
15342 r-biocgenerics
15343 r-biomart
15344 r-biostrings
15345 r-biovizbase
15346 r-bsgenome
15347 r-digest
15348 r-ensembldb
15349 r-genomeinfodb
15350 r-genomicalignments
15351 r-genomicfeatures
15352 r-genomicranges
15353 r-iranges
15354 r-lattice
15355 r-latticeextra
15356 r-matrixstats
15357 r-rcolorbrewer
15358 r-rsamtools
15359 r-rtracklayer
15360 r-s4vectors
15361 r-xvector))
15362 (native-inputs
15363 (list r-knitr))
15364 (home-page "https://bioconductor.org/packages/Gviz")
15365 (synopsis "Plotting data and annotation information along genomic coordinates")
15366 (description
15367 "Genomic data analyses requires integrated visualization of known genomic
15368 information and new experimental data. Gviz uses the biomaRt and the
15369 rtracklayer packages to perform live annotation queries to Ensembl and UCSC
15370 and translates this to e.g. gene/transcript structures in viewports of the
15371 grid graphics package. This results in genomic information plotted together
15372 with your data.")
15373 (license license:artistic2.0)))
15374
15375 (define-public r-gwascat
15376 (package
15377 (name "r-gwascat")
15378 (version "2.28.1")
15379 (source
15380 (origin
15381 (method url-fetch)
15382 (uri (bioconductor-uri "gwascat" version))
15383 (sha256
15384 (base32
15385 "19ymdxj8966i4yk0zalfw23938cpv4q7pywg4qb242p44na5y9sl"))))
15386 (build-system r-build-system)
15387 (propagated-inputs
15388 (list r-annotationdbi
15389 r-annotationhub
15390 r-biocfilecache
15391 r-biostrings
15392 r-genomeinfodb
15393 r-genomicfeatures
15394 r-genomicranges
15395 r-iranges
15396 r-readr
15397 r-s4vectors
15398 r-snpstats
15399 r-variantannotation))
15400 (native-inputs
15401 (list r-knitr))
15402 (home-page "https://bioconductor.org/packages/gwascat")
15403 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
15404 (description
15405 "This package provides tools for representing and modeling data in the
15406 EMBL-EBI GWAS catalog.")
15407 (license license:artistic2.0)))
15408
15409 (define-public r-kegggraph
15410 (package
15411 (name "r-kegggraph")
15412 (version "1.56.0")
15413 (source
15414 (origin
15415 (method url-fetch)
15416 (uri (bioconductor-uri "KEGGgraph" version))
15417 (sha256
15418 (base32 "15pq040pcg8hr18xixmjp59xb7mgvygjv6kisqk8yv99l1611ndx"))))
15419 (properties `((upstream-name . "KEGGgraph")))
15420 (build-system r-build-system)
15421 (propagated-inputs
15422 (list r-graph r-rcurl r-rgraphviz r-xml))
15423 (home-page "https://bioconductor.org/packages/KEGGgraph")
15424 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
15425 (description
15426 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
15427 object as well as a collection of tools to analyze, dissect and visualize these
15428 graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
15429 maintaining all essential pathway attributes. The package offers
15430 functionalities including parsing, graph operation, visualization and etc.")
15431 (license license:gpl2+)))
15432
15433 (define-public r-ldblock
15434 (package
15435 (name "r-ldblock")
15436 (version "1.26.0")
15437 (source
15438 (origin
15439 (method url-fetch)
15440 (uri (bioconductor-uri "ldblock" version))
15441 (sha256
15442 (base32
15443 "08ss03b93czwb4x60hsi30ad4lmamvq5mxa8nj0g18z68qcraijm"))))
15444 (build-system r-build-system)
15445 (propagated-inputs
15446 (list r-biocgenerics
15447 r-ensdb-hsapiens-v75
15448 r-ensembldb
15449 r-genomeinfodb
15450 r-genomicfiles
15451 r-httr
15452 r-matrix
15453 r-rsamtools
15454 r-snpstats
15455 r-variantannotation))
15456 (native-inputs
15457 (list r-knitr))
15458 (home-page "https://bioconductor.org/packages/ldblock")
15459 (synopsis "Data structures for linkage disequilibrium measures in populations")
15460 (description
15461 "This package defines data structures for @dfn{linkage
15462 disequilibrium} (LD) measures in populations. Its purpose is to simplify
15463 handling of existing population-level data for the purpose of flexibly
15464 defining LD blocks.")
15465 (license license:artistic2.0)))
15466
15467 ;; This is a CRAN package, but it depends on r-snpstats, which is a
15468 ;; Bioconductor package.
15469 (define-public r-ldheatmap
15470 (package
15471 (name "r-ldheatmap")
15472 (version "1.0-6")
15473 (source
15474 (origin
15475 (method url-fetch)
15476 (uri (cran-uri "LDheatmap" version))
15477 (sha256
15478 (base32
15479 "0gr99kys1ahyl8s6cbj6rmh4vwid8kn92lcbjnwh0ahb73m2xjjc"))))
15480 (properties `((upstream-name . "LDheatmap")))
15481 (build-system r-build-system)
15482 (propagated-inputs
15483 (list r-genetics r-rcpp r-snpstats))
15484 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
15485 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
15486 (description
15487 "This package provides tools to produce a graphical display, as a heat
15488 map, of measures of pairwise linkage disequilibria between SNPs. Users may
15489 optionally include the physical locations or genetic map distances of each SNP
15490 on the plot.")
15491 (license license:gpl3)))
15492
15493 ;; This is a CRAN package, but it depends on r-rgraphviz, which is a
15494 ;; Bioconductor package.
15495 (define-public r-abn
15496 (package
15497 (name "r-abn")
15498 (version "2.7-1")
15499 (source
15500 (origin
15501 (method url-fetch)
15502 (uri (cran-uri "abn" version))
15503 (sha256
15504 (base32
15505 "1w3jns96m8b9scvaa4hcla3i88a0cfh9qis2l04yixvda5q91gpr"))))
15506 (build-system r-build-system)
15507 (inputs
15508 (list gsl))
15509 (propagated-inputs
15510 (list r-doparallel
15511 r-foreach
15512 r-graph
15513 r-lme4
15514 r-nnet
15515 r-rcpp
15516 r-rcpparmadillo
15517 r-rgraphviz
15518 r-rjags))
15519 (home-page "https://r-bayesian-networks.org/")
15520 (synopsis "Modelling multivariate data with additive bayesian networks")
15521 (description
15522 "Bayesian network analysis is a form of probabilistic graphical models
15523 which derives from empirical data a directed acyclic graph, DAG, describing
15524 the dependency structure between random variables. An additive Bayesian
15525 network model consists of a form of a DAG where each node comprises a
15526 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
15527 equivalent to Bayesian multivariate regression using graphical modelling, they
15528 generalises the usual multivariable regression, GLM, to multiple dependent
15529 variables. This package provides routines to help determine optimal Bayesian
15530 network models for a given data set, where these models are used to identify
15531 statistical dependencies in messy, complex data.")
15532 (license license:gpl2+)))
15533
15534 ;; This is a CRAN package, but it depends on r-rsamtools, which is a
15535 ;; Bioconductor package.
15536 (define-public r-spp
15537 (package
15538 (name "r-spp")
15539 (version "1.16.0")
15540 (source (origin
15541 (method url-fetch)
15542 (uri (cran-uri "spp" version))
15543 (sha256
15544 (base32
15545 "08zxxgyp0h6733b08jmml7k4rhfd3mi5dda3jrzid0s184y0z29w"))))
15546 (build-system r-build-system)
15547 (inputs
15548 (list zlib))
15549 (propagated-inputs
15550 (list r-bh r-catools r-rcpp r-rsamtools))
15551 (home-page "https://cran.r-project.org/web/packages/spp/")
15552 (synopsis "ChIP-Seq processing pipeline")
15553 (description "This package provides tools for analysis of ChIP-seq and
15554 other functional sequencing data.")
15555 (license license:gpl2)))
15556
15557 (define-public r-pathview
15558 (package
15559 (name "r-pathview")
15560 (version "1.36.0")
15561 (source
15562 (origin
15563 (method url-fetch)
15564 (uri (bioconductor-uri "pathview" version))
15565 (sha256
15566 (base32 "1472k107f21cflbx2fip92g8gl9wlwxgwfvgvl73ma0y0jzs0qdq"))))
15567 (properties `((upstream-name . "pathview")))
15568 (build-system r-build-system)
15569 (propagated-inputs
15570 (list r-annotationdbi
15571 r-graph
15572 r-kegggraph
15573 r-keggrest
15574 r-org-hs-eg-db
15575 r-png
15576 r-rgraphviz
15577 r-xml))
15578 (home-page "https://pathview.uncc.edu/")
15579 (synopsis "Tool set for pathway based data integration and visualization")
15580 (description
15581 "@code{r-pathview} is a tool set for pathway based data integration and
15582 visualization. It maps and renders a wide variety of biological data on
15583 relevant pathway graphs. All users need is to supply their data and specify
15584 the target pathway. This package automatically downloads the pathway graph
15585 data, parses the data file, maps user data to the pathway, and render pathway
15586 graph with the mapped data. In addition, @code{r-pathview} also seamlessly
15587 integrates with pathway and gene set (enrichment) analysis tools for
15588 large-scale and fully automated analysis.")
15589 (license license:gpl3+)))
15590
15591 (define-public r-snpstats
15592 (package
15593 (name "r-snpstats")
15594 (version "1.46.0")
15595 (source
15596 (origin
15597 (method url-fetch)
15598 (uri (bioconductor-uri "snpStats" version))
15599 (sha256
15600 (base32
15601 "0a5b5nqc7n965jk45ijwkzbn416ib4gfhp8xl39z8f2bdskip4a2"))))
15602 (properties `((upstream-name . "snpStats")))
15603 (build-system r-build-system)
15604 (inputs (list zlib))
15605 (propagated-inputs
15606 (list r-biocgenerics r-matrix r-survival r-zlibbioc))
15607 (home-page "https://bioconductor.org/packages/snpStats")
15608 (synopsis "Methods for SNP association studies")
15609 (description
15610 "This package provides classes and statistical methods for large
15611 @dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
15612 the earlier snpMatrix package, allowing for uncertainty in genotypes.")
15613 (license license:gpl3)))
15614
15615 (define-public r-chromstar
15616 (package
15617 (name "r-chromstar")
15618 (version "1.22.0")
15619 (source
15620 (origin
15621 (method url-fetch)
15622 (uri (bioconductor-uri "chromstaR" version))
15623 (sha256
15624 (base32
15625 "1xjwmnr4hk8v3nwvhqd6ixk5qr2dv0n4mb9wd6nl7cgjfhjsdgj7"))))
15626 (properties `((upstream-name . "chromstaR")))
15627 (build-system r-build-system)
15628 (propagated-inputs
15629 (list r-bamsignals
15630 r-biocgenerics
15631 r-chromstardata
15632 r-doparallel
15633 r-foreach
15634 r-genomeinfodb
15635 r-genomicalignments
15636 r-genomicranges
15637 r-ggplot2
15638 r-iranges
15639 r-mvtnorm
15640 r-reshape2
15641 r-rsamtools
15642 r-s4vectors))
15643 (native-inputs (list r-knitr))
15644 (home-page "https://github.com/ataudt/chromstaR")
15645 (synopsis "Chromatin state analysis for ChIP-Seq data")
15646 (description
15647 "This package implements functions for combinatorial and differential
15648 analysis of ChIP-seq data. It includes uni- and multivariate peak-calling,
15649 export to genome browser viewable files, and functions for enrichment
15650 analyses.")
15651 (license license:artistic2.0)))
15652
15653 (define-public r-guitar
15654 (package
15655 (name "r-guitar")
15656 (version "2.12.0")
15657 (source
15658 (origin
15659 (method url-fetch)
15660 (uri (bioconductor-uri "Guitar" version))
15661 (sha256
15662 (base32
15663 "09grsasnnk7rmlzjh4lhas9r5spzcsrvmdqj6fx1dk22sckcqahh"))))
15664 (properties `((upstream-name . "Guitar")))
15665 (build-system r-build-system)
15666 (propagated-inputs
15667 (list r-annotationdbi
15668 r-dplyr
15669 r-genomicfeatures
15670 r-genomicranges
15671 r-ggplot2
15672 r-knitr
15673 r-magrittr
15674 r-rtracklayer))
15675 (native-inputs
15676 (list r-knitr))
15677 (home-page "https://bioconductor.org/packages/Guitar")
15678 (synopsis "Visualize genomic features")
15679 (description
15680 "This package is designed for visualization of RNA-related genomic
15681 features with respect to the landmarks of RNA transcripts, i.e., transcription
15682 starting site, start codon, stop codon and transcription ending site.")
15683 (license license:gpl2)))
15684
15685 (define-public r-sushi
15686 (package
15687 (name "r-sushi")
15688 (version "1.34.0")
15689 (source (origin
15690 (method url-fetch)
15691 (uri (bioconductor-uri "Sushi" version))
15692 (sha256
15693 (base32
15694 "0adswrbzd93rhy3q56ypwkrk6155vd4zxapvznswyjlxp8ha813q"))))
15695 (properties `((upstream-name . "Sushi")))
15696 (build-system r-build-system)
15697 (propagated-inputs
15698 (list r-biomart r-zoo))
15699 (home-page "https://bioconductor.org/packages/Sushi")
15700 (synopsis "Tools for visualizing genomics data")
15701 (description
15702 "This package provides flexible, quantitative, and integrative genomic
15703 visualizations for publication-quality multi-panel figures.")
15704 (license license:gpl2+)))
15705
15706 (define-public r-ballgown
15707 (package
15708 (name "r-ballgown")
15709 (version "2.28.0")
15710 (source
15711 (origin
15712 (method url-fetch)
15713 (uri (bioconductor-uri "ballgown" version))
15714 (sha256
15715 (base32
15716 "0l8q3fymskxmsi5jcikzjz5xi66lpzgv7bjymir4izah2v68z708"))))
15717 (properties `((upstream-name . "ballgown")))
15718 (build-system r-build-system)
15719 (propagated-inputs
15720 (list r-biobase
15721 r-genomeinfodb
15722 r-genomicranges
15723 r-iranges
15724 r-limma
15725 r-rcolorbrewer
15726 r-rtracklayer
15727 r-s4vectors
15728 r-sva))
15729 (native-inputs
15730 (list r-knitr))
15731 (home-page "https://bioconductor.org/packages/ballgown")
15732 (synopsis "Flexible, isoform-level differential expression analysis")
15733 (description
15734 "This package provides tools for statistical analysis of assembled
15735 transcriptomes, including flexible differential expression analysis,
15736 visualization of transcript structures, and matching of assembled transcripts
15737 to annotation.")
15738 (license license:artistic2.0)))
15739
15740 (define-public r-megadepth
15741 (package
15742 (name "r-megadepth")
15743 (version "1.6.0")
15744 (source
15745 (origin
15746 (method url-fetch)
15747 (uri (bioconductor-uri "megadepth" version))
15748 (sha256
15749 (base32
15750 "0qq82dmd3drr2bhn51bgbc6ml40klfmmhj6wdj72n9ya6n60lwy8"))))
15751 (properties `((upstream-name . "megadepth")))
15752 (build-system r-build-system)
15753 (inputs (list megadepth))
15754 (propagated-inputs
15755 (list r-cmdfun
15756 r-dplyr
15757 r-fs
15758 r-genomicranges
15759 r-magrittr
15760 r-readr
15761 r-xfun))
15762 (native-inputs
15763 (list r-knitr))
15764 (home-page "https://github.com/LieberInstitute/megadepth")
15765 (synopsis "BigWig and BAM related utilities")
15766 (description
15767 "This package provides an R interface to Megadepth. It is particularly
15768 useful for computing the coverage of a set of genomic regions across bigWig or
15769 BAM files. With this package, you can build base-pair coverage matrices for
15770 regions or annotations of your choice from BigWig files.")
15771 (license license:artistic2.0)))
15772
15773 (define-public r-beclear
15774 (package
15775 (name "r-beclear")
15776 (version "2.12.0")
15777 (source
15778 (origin
15779 (method url-fetch)
15780 (uri (bioconductor-uri "BEclear" version))
15781 (sha256
15782 (base32
15783 "0x43yfnmb2d782g3g52nqdfs90i3zrrlqz8qy3ybmgv5f8n92p15"))))
15784 (properties `((upstream-name . "BEclear")))
15785 (build-system r-build-system)
15786 (propagated-inputs
15787 (list r-abind
15788 r-biocparallel
15789 r-data-table
15790 r-dixontest
15791 r-futile-logger
15792 r-matrix
15793 r-rcpp
15794 r-rdpack))
15795 (native-inputs
15796 (list r-knitr))
15797 (home-page "https://github.com/uds-helms/BEclear")
15798 (synopsis "Correction of batch effects in DNA methylation data")
15799 (description
15800 "This package provides functions to detect and correct for batch effects
15801 in DNA methylation data. The core function is based on latent factor models
15802 and can also be used to predict missing values in any other matrix containing
15803 real numbers.")
15804 (license license:gpl3)))
15805
15806 (define-public r-bgeecall
15807 (package
15808 (name "r-bgeecall")
15809 (version "1.12.1")
15810 (source
15811 (origin
15812 (method url-fetch)
15813 (uri (bioconductor-uri "BgeeCall" version))
15814 (sha256
15815 (base32
15816 "1g12cms66zb45p347h3b358vjhnq76galvwqwq86xby4hnwpdzkh"))))
15817 (properties `((upstream-name . "BgeeCall")))
15818 (build-system r-build-system)
15819 (propagated-inputs
15820 (list kallisto
15821 r-biomart
15822 r-biostrings
15823 r-data-table
15824 r-dplyr
15825 r-genomicfeatures
15826 r-jsonlite
15827 r-rhdf5
15828 r-rslurm
15829 r-rtracklayer
15830 r-sjmisc
15831 r-tximport))
15832 (native-inputs (list r-knitr))
15833 (home-page "https://github.com/BgeeDB/BgeeCall")
15834 (synopsis "RNA-Seq present/absent gene expression calls generation")
15835 (description
15836 "BgeeCall allows generating present/absent gene expression calls without
15837 using an arbitrary cutoff like TPM<1. Calls are generated based on reference
15838 intergenic sequences. These sequences are generated based on expression of
15839 all RNA-Seq libraries of each species integrated in Bgee.")
15840 (license license:gpl3)))
15841
15842 (define-public r-bgeedb
15843 (package
15844 (name "r-bgeedb")
15845 (version "2.22.3")
15846 (source
15847 (origin
15848 (method url-fetch)
15849 (uri (bioconductor-uri "BgeeDB" version))
15850 (sha256
15851 (base32
15852 "1f6lrazaibbz21sqvj59rq6ps9m1riw2y0kyidbn29mxf4ibwh3k"))))
15853 (properties `((upstream-name . "BgeeDB")))
15854 (build-system r-build-system)
15855 (propagated-inputs
15856 (list r-biobase
15857 r-curl
15858 r-data-table
15859 r-digest
15860 r-dplyr
15861 r-graph
15862 r-r-utils
15863 r-rcurl
15864 r-rsqlite
15865 r-tidyr
15866 r-topgo))
15867 (native-inputs (list r-knitr))
15868 (home-page "https://github.com/BgeeDB/BgeeDB_R")
15869 (synopsis "Annotation and gene expression data retrieval from Bgee database")
15870 (description
15871 "This package provides a package for the annotation and gene expression
15872 data download from Bgee database, and TopAnat analysis: GO-like enrichment of
15873 anatomical terms, mapped to genes by expression patterns.")
15874 (license license:gpl3)))
15875
15876 (define-public r-biobtreer
15877 (package
15878 (name "r-biobtreer")
15879 (version "1.8.0")
15880 (source
15881 (origin
15882 (method url-fetch)
15883 (uri (bioconductor-uri "biobtreeR" version))
15884 (sha256
15885 (base32
15886 "0cx46hdqqm6mbj0vp4y86axv0qccd4sgk2jwwjvnqp5pynq9bbqa"))))
15887 (properties `((upstream-name . "biobtreeR")))
15888 (build-system r-build-system)
15889 (propagated-inputs
15890 (list r-httpuv r-httr r-jsonlite r-stringi))
15891 (native-inputs (list r-knitr))
15892 (home-page "https://github.com/tamerh/biobtreeR")
15893 (synopsis "Use biobtree tool from R")
15894 (description
15895 "The biobtreeR package provides an interface to biobtree, a tool which
15896 covers large sets of bioinformatics datasets and allows search and chain
15897 mappings functionalities.")
15898 (license license:expat)))
15899
15900 (define-public r-minet
15901 (package
15902 (name "r-minet")
15903 (version "3.54.0")
15904 (source
15905 (origin
15906 (method url-fetch)
15907 (uri (bioconductor-uri "minet" version))
15908 (sha256
15909 (base32
15910 "0q6jw2jqkl9qynjpzaygz45c7dmx1l5y2d8s1illpcf87siawcam"))))
15911 (properties `((upstream-name . "minet")))
15912 (build-system r-build-system)
15913 (propagated-inputs
15914 (list r-infotheo))
15915 (home-page "http://minet.meyerp.com")
15916 (synopsis "Mutual information networks")
15917 (description
15918 "This package implements various algorithms for inferring mutual
15919 information networks from data.")
15920 (license license:artistic2.0)))
15921
15922 (define-public r-genetclassifier
15923 (package
15924 (name "r-genetclassifier")
15925 (version "1.36.0")
15926 (source
15927 (origin
15928 (method url-fetch)
15929 (uri (bioconductor-uri "geNetClassifier" version))
15930 (sha256
15931 (base32
15932 "1kh7mp5h0n7yd1klcd7w4v7i3fh9pkmvgf7189wangfzbcsr4f70"))))
15933 (properties
15934 `((upstream-name . "geNetClassifier")))
15935 (build-system r-build-system)
15936 (propagated-inputs
15937 (list r-biobase r-e1071 r-ebarrays r-minet))
15938 (home-page "https://www.cicancer.org")
15939 (synopsis "Classify diseases and build gene networks using expression profiles")
15940 (description
15941 "This is a comprehensive package to automatically train and validate a
15942 multi-class SVM classifier based on gene expression data. It provides
15943 transparent selection of gene markers, their coexpression networks, and an
15944 interface to query the classifier.")
15945 (license license:gpl2+)))
15946
15947 (define-public r-dir-expiry
15948 (package
15949 (name "r-dir-expiry")
15950 (version "1.4.0")
15951 (source
15952 (origin
15953 (method url-fetch)
15954 (uri (bioconductor-uri "dir.expiry" version))
15955 (sha256
15956 (base32
15957 "098wzm8hlpy70c99k2sl4k8z2dllhw7rwdj8dhcskr7kaw71k3sq"))))
15958 (properties `((upstream-name . "dir.expiry")))
15959 (build-system r-build-system)
15960 (propagated-inputs (list r-filelock))
15961 (native-inputs (list r-knitr))
15962 (home-page "https://bioconductor.org/packages/dir.expiry")
15963 (synopsis "Managing expiration for cache directories")
15964 (description
15965 "This package implements an expiration system for access to versioned
15966 directories. Directories that have not been accessed by a registered function
15967 within a certain time frame are deleted. This aims to reduce disk usage by
15968 eliminating obsolete caches generated by old versions of packages.")
15969 (license license:gpl3)))
15970
15971 (define-public r-basilisk-utils
15972 (package
15973 (name "r-basilisk-utils")
15974 (version "1.8.0")
15975 (source
15976 (origin
15977 (method url-fetch)
15978 (uri (bioconductor-uri "basilisk.utils" version))
15979 (sha256
15980 (base32
15981 "1jnqv0rlljkq27rd4ixl763v335f2aanm4fzr386yc81fj4vnmhk"))))
15982 (properties
15983 `((upstream-name . "basilisk.utils")))
15984 (build-system r-build-system)
15985 (propagated-inputs
15986 (list r-dir-expiry))
15987 (native-inputs (list r-knitr))
15988 (home-page "https://bioconductor.org/packages/basilisk.utils")
15989 (synopsis "Basilisk installation utilities")
15990 (description
15991 "This package implements utilities for installation of the basilisk
15992 package, primarily for creation of the underlying Conda instance.")
15993 (license license:gpl3)))
15994
15995 (define-public r-basilisk
15996 (package
15997 (name "r-basilisk")
15998 (version "1.8.0")
15999 (source
16000 (origin
16001 (method url-fetch)
16002 (uri (bioconductor-uri "basilisk" version))
16003 (sha256
16004 (base32
16005 "1p90wq8a9wrpqpgmcy4zgh5skdw65gg2gsb3lnx78zk9khq0yyzh"))))
16006 (properties `((upstream-name . "basilisk")))
16007 (build-system r-build-system)
16008 (propagated-inputs
16009 (list r-basilisk-utils r-dir-expiry r-reticulate))
16010 (native-inputs (list r-knitr))
16011 (home-page "https://bioconductor.org/packages/basilisk")
16012 (synopsis "Freeze Python dependencies inside Bioconductor packages")
16013 (description
16014 "This package installs a self-contained Conda instance that is managed by
16015 the R/Bioconductor installation machinery. This aims to provide a consistent
16016 Python environment that can be used reliably by Bioconductor packages.
16017 Functions are also provided to enable smooth interoperability of multiple
16018 Python environments in a single R session.")
16019 (license license:gpl3)))
16020
16021 (define-public r-biocthis
16022 (package
16023 (name "r-biocthis")
16024 (version "1.6.0")
16025 (source
16026 (origin
16027 (method url-fetch)
16028 (uri (bioconductor-uri "biocthis" version))
16029 (sha256
16030 (base32
16031 "1hdgjp00d2si3mr7m1d289i9wn7g927z6n8n27d5sm94lb91qln0"))))
16032 (properties `((upstream-name . "biocthis")))
16033 (build-system r-build-system)
16034 (arguments
16035 `(#:phases
16036 (modify-phases %standard-phases
16037 (add-after 'unpack 'set-HOME
16038 (lambda _ (setenv "HOME" "/tmp"))))))
16039 (propagated-inputs
16040 (list r-biocmanager
16041 r-fs
16042 r-glue
16043 r-rlang
16044 r-styler
16045 r-usethis))
16046 (native-inputs (list r-knitr))
16047 (home-page "https://github.com/lcolladotor/biocthis")
16048 (synopsis "Automate package and project setup for Bioconductor packages")
16049 (description
16050 "This package expands the @code{usethis} package with the goal of helping
16051 automate the process of creating R packages for Bioconductor or making them
16052 Bioconductor-friendly.")
16053 (license license:artistic2.0)))
16054
16055 (define-public r-biocdockermanager
16056 (package
16057 (name "r-biocdockermanager")
16058 (version "1.8.0")
16059 (source
16060 (origin
16061 (method url-fetch)
16062 (uri (bioconductor-uri "BiocDockerManager" version))
16063 (sha256
16064 (base32
16065 "0kl6r8ad728a8dvqx0safj7v5gj1rxxcdiw44jkr1pd5ddv0xbi6"))))
16066 (properties
16067 `((upstream-name . "BiocDockerManager")))
16068 (build-system r-build-system)
16069 (propagated-inputs
16070 (list docker
16071 r-dplyr
16072 r-httr
16073 r-memoise
16074 r-readr
16075 r-whisker))
16076 (native-inputs (list r-knitr))
16077 (home-page "https://bioconductor.org/packages/BiocDockerManager")
16078 (synopsis "Access and manage Bioconductor Docker images")
16079 (description
16080 "This package works analogous to BiocManager but for Docker images. Use
16081 the BiocDockerManager package to install and manage Docker images provided by
16082 the Bioconductor project.")
16083 (license license:artistic2.0)))
16084
16085 (define-public r-biodb
16086 (package
16087 (name "r-biodb")
16088 (version "1.4.0")
16089 (source
16090 (origin
16091 (method url-fetch)
16092 (uri (bioconductor-uri "biodb" version))
16093 (sha256
16094 (base32
16095 "02i0n29bp9d9p1ibslxca5m37qsgny2hlgg7d364lf7kc6y2bqni"))))
16096 (properties `((upstream-name . "biodb")))
16097 (build-system r-build-system)
16098 (propagated-inputs
16099 (list r-biocfilecache
16100 r-chk
16101 r-jsonlite
16102 r-lgr
16103 r-lifecycle
16104 r-openssl
16105 r-plyr
16106 r-progress
16107 r-r6
16108 r-rappdirs
16109 r-rcpp
16110 r-rcurl
16111 r-rsqlite
16112 r-stringr
16113 r-testthat
16114 r-withr
16115 r-xml
16116 r-yaml))
16117 (native-inputs (list r-knitr))
16118 (home-page "https://bioconductor.org/packages/biodb")
16119 (synopsis "Library for connecting to chemical and biological databases")
16120 (description
16121 "The biodb package provides access to standard remote chemical and
16122 biological databases (ChEBI, KEGG, HMDB, ...), as well as to in-house local
16123 database files (CSV, SQLite), with easy retrieval of entries, access to web
16124 services, search of compounds by mass and/or name, and mass spectra matching
16125 for LCMS and MSMS. Its architecture as a development framework facilitates
16126 the development of new database connectors for local projects or inside
16127 separate published packages.")
16128 (license license:agpl3+)))
16129
16130 (define-public r-biomformat
16131 (package
16132 (name "r-biomformat")
16133 (version "1.24.0")
16134 (source
16135 (origin
16136 (method url-fetch)
16137 (uri (bioconductor-uri "biomformat" version))
16138 (sha256
16139 (base32
16140 "12wqjipxhngmlnrdmx329dqmkmy2wa4nkkrhwaqv2nwy90dncs9n"))))
16141 (properties `((upstream-name . "biomformat")))
16142 (build-system r-build-system)
16143 (propagated-inputs
16144 (list r-jsonlite r-matrix r-plyr r-rhdf5))
16145 (native-inputs (list r-knitr))
16146 (home-page "https://github.com/joey711/biomformat/")
16147 (synopsis "Interface package for the BIOM file format")
16148 (description
16149 "This is an R package for interfacing with the BIOM format. This package
16150 includes basic tools for reading biom-format files, accessing and subsetting
16151 data tables from a biom object (which is more complex than a single table), as
16152 well as limited support for writing a biom-object back to a biom-format file.
16153 The design of this API is intended to match the Python API and other tools
16154 included with the biom-format project, but with a decidedly \"R flavor\" that
16155 should be familiar to R users. This includes S4 classes and methods, as well
16156 as extensions of common core functions/methods.")
16157 (license license:gpl2)))
16158
16159 (define-public r-mvcclass
16160 (package
16161 (name "r-mvcclass")
16162 (version "1.70.0")
16163 (source
16164 (origin
16165 (method url-fetch)
16166 (uri (bioconductor-uri "MVCClass" version))
16167 (sha256
16168 (base32
16169 "0apcjlq4i2mg8mlfqgvlcsqkiy51whzid3nd0m830jff0ywgh47g"))))
16170 (properties `((upstream-name . "MVCClass")))
16171 (build-system r-build-system)
16172 (home-page "https://bioconductor.org/packages/MVCClass")
16173 (synopsis "Model-View-Controller (MVC) classes")
16174 (description
16175 "This package contains classes used in model-view-controller (MVC)
16176 design.")
16177 (license license:lgpl2.1+)))
16178
16179 (define-public r-biomvcclass
16180 (package
16181 (name "r-biomvcclass")
16182 (version "1.64.0")
16183 (source
16184 (origin
16185 (method url-fetch)
16186 (uri (bioconductor-uri "BioMVCClass" version))
16187 (sha256
16188 (base32
16189 "078pnyygbvbfxziqspfr1nn78w67xyb4qmiwc34czga5psblvfwz"))))
16190 (properties `((upstream-name . "BioMVCClass")))
16191 (build-system r-build-system)
16192 (propagated-inputs
16193 (list r-biobase r-graph r-mvcclass r-rgraphviz))
16194 (home-page "https://bioconductor.org/packages/BioMVCClass")
16195 (synopsis "Model-View-Controller (MVC) classes that use Biobase")
16196 (description
16197 "This package contains classes used in model-view-controller (MVC)
16198 design.")
16199 (license license:lgpl2.1+)))
16200
16201 (define-public r-biomvrcns
16202 (package
16203 (name "r-biomvrcns")
16204 (version "1.36.0")
16205 (source
16206 (origin
16207 (method url-fetch)
16208 (uri (bioconductor-uri "biomvRCNS" version))
16209 (sha256
16210 (base32
16211 "0i576g7pkivqaxff1pkb760mdpx8v9fh071aic1mwfnlfa7k87ln"))))
16212 (properties `((upstream-name . "biomvRCNS")))
16213 (build-system r-build-system)
16214 (propagated-inputs
16215 (list r-genomicranges r-gviz r-iranges r-mvtnorm))
16216 (home-page "https://bioconductor.org/packages/biomvRCNS")
16217 (synopsis "Copy number study and segmentation for multivariate biological data")
16218 (description
16219 "In this package, a @dfn{Hidden Semi Markov Model} (HSMM) and one
16220 homogeneous segmentation model are designed and implemented for segmentation
16221 genomic data, with the aim of assisting in transcripts detection using high
16222 throughput technology like RNA-seq or tiling array, and copy number analysis
16223 using aCGH or sequencing.")
16224 (license license:gpl2+)))
16225
16226 (define-public r-bionero
16227 (package
16228 (name "r-bionero")
16229 (version "1.4.0")
16230 (source
16231 (origin
16232 (method url-fetch)
16233 (uri (bioconductor-uri "BioNERO" version))
16234 (sha256
16235 (base32
16236 "1nyzjbl0gcwvbj2nxfwykirikf8j3rsx5ny45bqjbcb4r23k65kj"))))
16237 (properties `((upstream-name . "BioNERO")))
16238 (build-system r-build-system)
16239 (propagated-inputs
16240 (list r-biocparallel
16241 r-complexheatmap
16242 r-deseq2
16243 r-dynamictreecut
16244 r-genie3
16245 r-ggnetwork
16246 r-ggnewscale
16247 r-ggplot2
16248 r-ggpubr
16249 r-igraph
16250 r-intergraph
16251 r-matrixstats
16252 r-minet
16253 r-netrep
16254 r-networkd3
16255 r-rcolorbrewer
16256 r-reshape2
16257 r-summarizedexperiment
16258 r-sva
16259 r-wgcna))
16260 (native-inputs
16261 (list r-knitr))
16262 (home-page "https://github.com/almeidasilvaf/BioNERO")
16263 (synopsis "Biological network reconstruction omnibus")
16264 (description
16265 "BioNERO aims to integrate all aspects of biological network inference in
16266 a single package, including data preprocessing, exploratory analyses, network
16267 inference, and analyses for biological interpretations. BioNERO can be used
16268 to infer gene coexpression networks (GCNs) and gene regulatory networks (GRNs)
16269 from gene expression data. Additionally, it can be used to explore
16270 topological properties of protein-protein interaction (PPI) networks. GCN
16271 inference relies on the popular WGCNA algorithm. GRN inference is based on
16272 the \"wisdom of the crowds\" principle, which consists in inferring GRNs with
16273 multiple algorithms (here, CLR, GENIE3 and ARACNE) and calculating the average
16274 rank for each interaction pair. As all steps of network analyses are included
16275 in this package, BioNERO makes users avoid having to learn the syntaxes of
16276 several packages and how to communicate between them. Finally, users can also
16277 identify consensus modules across independent expression sets and calculate
16278 intra and interspecies module preservation statistics between different
16279 networks.")
16280 (license license:gpl3)))
16281
16282 (define-public r-bionet
16283 (package
16284 (name "r-bionet")
16285 (version "1.56.0")
16286 (source
16287 (origin
16288 (method url-fetch)
16289 (uri (bioconductor-uri "BioNet" version))
16290 (sha256
16291 (base32
16292 "0kcw71j4nmdkn373wk21ak6h0v4gycivnfrklb72kk1qcmsy1wrm"))))
16293 (properties `((upstream-name . "BioNet")))
16294 (build-system r-build-system)
16295 (propagated-inputs
16296 (list r-annotationdbi r-biobase r-graph r-igraph r-rbgl))
16297 (home-page "http://bioconductor.org/packages/release/bioc/html/BioNet.html")
16298 (synopsis "Functional analysis of biological networks")
16299 (description
16300 "This package provides functions for the integrated analysis of
16301 protein-protein interaction networks and the detection of functional modules.
16302 Different datasets can be integrated into the network by assigning p-values of
16303 statistical tests to the nodes of the network. E.g. p-values obtained from
16304 the differential expression of the genes from an Affymetrix array are assigned
16305 to the nodes of the network. By fitting a beta-uniform mixture model and
16306 calculating scores from the p-values, overall scores of network regions can be
16307 calculated and an integer linear programming algorithm identifies the maximum
16308 scoring subnetwork.")
16309 (license license:gpl2+)))
16310
16311 (define-public r-bionetstat
16312 (package
16313 (name "r-bionetstat")
16314 (version "1.16.1")
16315 (source
16316 (origin
16317 (method url-fetch)
16318 (uri (bioconductor-uri "BioNetStat" version))
16319 (sha256
16320 (base32
16321 "0zs6pymvxb95sji0rnnzaz3whj7hsvj2kl4n4gzj7w1q0prbfpb2"))))
16322 (properties `((upstream-name . "BioNetStat")))
16323 (build-system r-build-system)
16324 (propagated-inputs
16325 (list r-biocparallel
16326 r-dt
16327 r-ggplot2
16328 r-hmisc
16329 r-igraph
16330 r-knitr
16331 r-markdown
16332 r-pathview
16333 r-pheatmap
16334 r-plyr
16335 r-psych
16336 r-rcolorbrewer
16337 r-rjsonio
16338 r-rmarkdown
16339 r-shiny
16340 r-shinybs
16341 r-whisker
16342 r-yaml))
16343 (native-inputs
16344 (list r-knitr))
16345 (home-page "https://github.com/jardimViniciusC/BioNetStat")
16346 (synopsis "Biological network analysis")
16347 (description
16348 "This package provides a package to perform differential network
16349 analysis, differential node analysis (differential coexpression analysis),
16350 network and metabolic pathways view.")
16351 (license license:gpl3+)))
16352
16353 (define-public r-bioqc
16354 (package
16355 (name "r-bioqc")
16356 (version "1.24.0")
16357 (source
16358 (origin
16359 (method url-fetch)
16360 (uri (bioconductor-uri "BioQC" version))
16361 (sha256
16362 (base32
16363 "0vb2nnzqvyv25pw8qshcmijravswafg0858pkgqjgiv7wsr2mn3m"))))
16364 (properties `((upstream-name . "BioQC")))
16365 (build-system r-build-system)
16366 (propagated-inputs
16367 (list r-biobase r-edger r-rcpp))
16368 (native-inputs
16369 (list r-knitr))
16370 (home-page "https://accio.github.io/BioQC/")
16371 (synopsis "Detect tissue heterogeneity in expression profiles with gene sets")
16372 (description
16373 "BioQC performs quality control of high-throughput expression data based
16374 on tissue gene signatures. It can detect tissue heterogeneity in gene
16375 expression data. The core algorithm is a Wilcoxon-Mann-Whitney test that is
16376 optimised for high performance.")
16377 (license license:gpl3+)))
16378
16379 (define-public r-biotip
16380 (package
16381 (name "r-biotip")
16382 (version "1.10.0")
16383 (source
16384 (origin
16385 (method url-fetch)
16386 (uri (bioconductor-uri "BioTIP" version))
16387 (sha256
16388 (base32
16389 "1sihi5zy7mlabh3ix1wvdqz8ibfq1avl8bnxjhvxyzq40zbcklh6"))))
16390 (properties `((upstream-name . "BioTIP")))
16391 (build-system r-build-system)
16392 (propagated-inputs
16393 (list r-cluster
16394 r-genomicranges
16395 r-igraph
16396 r-mass
16397 r-psych
16398 r-scran
16399 r-stringr))
16400 (native-inputs
16401 (list r-knitr))
16402 (home-page "https://github.com/xyang2uchicago/BioTIP")
16403 (synopsis "R package for characterization of biological tipping-point")
16404 (description
16405 "This package adopts tipping-point theory to transcriptome profiles to
16406 help unravel disease regulatory trajectory.")
16407 (license license:gpl2)))
16408
16409 (define-public r-biotmle
16410 (package
16411 (name "r-biotmle")
16412 (version "1.20.0")
16413 (source
16414 (origin
16415 (method url-fetch)
16416 (uri (bioconductor-uri "biotmle" version))
16417 (sha256
16418 (base32
16419 "1frig90krvfdk6nwpmslpj0pvligyzwzfwwci7hzwcmbglk5jj22"))))
16420 (properties `((upstream-name . "biotmle")))
16421 (build-system r-build-system)
16422 (propagated-inputs
16423 (list r-assertthat
16424 r-biocgenerics
16425 r-biocparallel
16426 r-dplyr
16427 r-drtmle
16428 r-ggplot2
16429 r-ggsci
16430 r-limma
16431 r-s4vectors
16432 r-summarizedexperiment
16433 r-superheat
16434 r-tibble))
16435 (native-inputs
16436 (list r-knitr))
16437 (home-page "https://code.nimahejazi.org/biotmle/")
16438 (synopsis "Targeted learning with moderated statistics for biomarker discovery")
16439 (description
16440 "This package provides tools for differential expression biomarker
16441 discovery based on microarray and next-generation sequencing data that
16442 leverage efficient semiparametric estimators of the average treatment effect
16443 for variable importance analysis. Estimation and inference of the (marginal)
16444 average treatment effects of potential biomarkers are computed by targeted
16445 minimum loss-based estimation, with joint, stable inference constructed across
16446 all biomarkers using a generalization of moderated statistics for use with the
16447 estimated efficient influence function. The procedure accommodates the use of
16448 ensemble machine learning for the estimation of nuisance functions.")
16449 (license license:expat)))
16450
16451 (define-public r-bsseq
16452 (package
16453 (name "r-bsseq")
16454 (version "1.32.0")
16455 (source
16456 (origin
16457 (method url-fetch)
16458 (uri (bioconductor-uri "bsseq" version))
16459 (sha256
16460 (base32
16461 "1jpfib2vb6hd7pgh3d33jgch24lba175zmbalwsbgvlmmyyf1ki5"))))
16462 (properties `((upstream-name . "bsseq")))
16463 (build-system r-build-system)
16464 (propagated-inputs
16465 (list r-beachmat
16466 r-biobase
16467 r-biocgenerics
16468 r-biocparallel
16469 r-biostrings
16470 r-bsgenome
16471 r-data-table
16472 r-delayedarray
16473 r-delayedmatrixstats
16474 r-genomeinfodb
16475 r-genomicranges
16476 r-gtools
16477 r-hdf5array
16478 r-iranges
16479 r-limma
16480 r-locfit
16481 r-permute
16482 r-r-utils
16483 r-rcpp
16484 r-rhdf5
16485 r-s4vectors
16486 r-scales
16487 r-summarizedexperiment))
16488 (native-inputs
16489 (list r-knitr))
16490 (home-page "https://github.com/hansenlab/bsseq")
16491 (synopsis "Analyze, manage and store bisulfite sequencing data")
16492 (description
16493 "This package provides a collection of tools for analyzing and
16494 visualizing bisulfite sequencing data.")
16495 (license license:artistic2.0)))
16496
16497 (define-public r-dmrseq
16498 (package
16499 (name "r-dmrseq")
16500 (version "1.16.0")
16501 (source
16502 (origin
16503 (method url-fetch)
16504 (uri (bioconductor-uri "dmrseq" version))
16505 (sha256
16506 (base32
16507 "1c99l62fi26bnbvpzrlsvvs722za0l5vfhddcrhzzzasabhccb4n"))))
16508 (properties `((upstream-name . "dmrseq")))
16509 (build-system r-build-system)
16510 (propagated-inputs
16511 (list r-annotationhub
16512 r-annotatr
16513 r-biocparallel
16514 r-bsseq
16515 r-bumphunter
16516 r-delayedmatrixstats
16517 r-genomeinfodb
16518 r-genomicranges
16519 r-ggplot2
16520 r-iranges
16521 r-locfit
16522 r-matrixstats
16523 r-nlme
16524 r-outliers
16525 r-rcolorbrewer
16526 r-rtracklayer
16527 r-s4vectors))
16528 (native-inputs
16529 (list r-knitr))
16530 (home-page "https://bioconductor.org/packages/dmrseq")
16531 (synopsis "Detection and inference of differentially methylated regions")
16532 (description
16533 "This package implements an approach for scanning the genome to detect
16534 and perform accurate inference on differentially methylated regions from Whole
16535 Genome Bisulfite Sequencing data. The method is based on comparing detected
16536 regions to a pooled null distribution, that can be implemented even when as
16537 few as two samples per population are available. Region-level statistics are
16538 obtained by fitting a @dfn{generalized least squares} (GLS) regression model
16539 with a nested autoregressive correlated error structure for the effect of
16540 interest on transformed methylation proportions.")
16541 (license license:expat)))
16542
16543 (define-public r-omnipathr
16544 (package
16545 (name "r-omnipathr")
16546 (version "3.4.0")
16547 (source
16548 (origin
16549 (method url-fetch)
16550 (uri (bioconductor-uri "OmnipathR" version))
16551 (sha256
16552 (base32 "0vk0fv09j3ql78mzzhdxwxb2b83qqdz2qfd8wpp1vydmcx2vvgni"))))
16553 (properties `((upstream-name . "OmnipathR")))
16554 (build-system r-build-system)
16555 (arguments
16556 `(#:phases
16557 (modify-phases %standard-phases
16558 (add-after 'unpack 'set-HOME
16559 (lambda _ (setenv "HOME" "/tmp"))))))
16560 (propagated-inputs
16561 (list r-checkmate
16562 r-crayon
16563 r-curl
16564 r-digest
16565 r-dplyr
16566 r-httr
16567 r-igraph
16568 r-jsonlite
16569 r-later
16570 r-logger
16571 r-magrittr
16572 r-progress
16573 r-purrr
16574 r-rappdirs
16575 r-readr
16576 r-readxl
16577 r-rlang
16578 r-stringr
16579 r-tibble
16580 r-tidyr
16581 r-tidyselect
16582 r-withr
16583 r-xml2
16584 r-yaml))
16585 (native-inputs (list r-knitr))
16586 (home-page "https://saezlab.github.io/OmnipathR/")
16587 (synopsis "OmniPath web service client and more")
16588 (description
16589 "This package provides a client for the OmniPath web service and many
16590 other resources. It also includes functions to transform and pretty print
16591 some of the downloaded data, functions to access a number of other resources.
16592 Furthermore, OmnipathR features a close integration with the NicheNet method
16593 for ligand activity prediction from transcriptomics data.")
16594 (license license:expat)))
16595
16596 (define-public r-biscuiteer
16597 (package
16598 (name "r-biscuiteer")
16599 (version "1.10.0")
16600 (source
16601 (origin
16602 (method url-fetch)
16603 (uri (bioconductor-uri "biscuiteer" version))
16604 (sha256
16605 (base32
16606 "0y7vbdaafiga16yr0d22w1v4p0jmczndcar0r0km06f5y1b74amr"))))
16607 (properties `((upstream-name . "biscuiteer")))
16608 (build-system r-build-system)
16609 (propagated-inputs
16610 (list r-biobase
16611 r-biocgenerics
16612 r-biocparallel
16613 r-biscuiteerdata
16614 r-bsseq
16615 r-data-table
16616 r-delayedmatrixstats
16617 r-dmrseq
16618 r-genomeinfodb
16619 r-genomicranges
16620 r-gtools
16621 r-hdf5array
16622 r-homo-sapiens
16623 r-impute
16624 r-iranges
16625 r-matrix
16626 r-matrixstats
16627 r-mus-musculus
16628 r-qdnaseq
16629 r-qualv
16630 r-r-utils
16631 r-readr
16632 r-rsamtools
16633 r-rtracklayer
16634 r-s4vectors
16635 r-summarizedexperiment
16636 r-variantannotation))
16637 (native-inputs
16638 (list r-knitr))
16639 (home-page "https://github.com/trichelab/biscuiteer")
16640 (synopsis "Convenience functions for the Biscuit package")
16641 (description
16642 "This package provides a test harness for bsseq loading of Biscuit
16643 output, summarization of WGBS data over defined regions and in mappable
16644 samples, with or without imputation, dropping of mostly-NA rows, age
16645 estimates, etc.")
16646 (license license:gpl3)))
16647
16648 (define-public r-tcgabiolinks
16649 (package
16650 (name "r-tcgabiolinks")
16651 (version "2.24.3")
16652 (source
16653 (origin
16654 (method url-fetch)
16655 (uri (bioconductor-uri "TCGAbiolinks" version))
16656 (sha256
16657 (base32 "0visvfhzaf0p1rb5vjkmw1c91zfxpks8nl9nbl9xlnpm8lkmmkms"))))
16658 (properties `((upstream-name . "TCGAbiolinks")))
16659 (build-system r-build-system)
16660 (propagated-inputs
16661 (list r-biomart
16662 r-data-table
16663 r-downloader
16664 r-dplyr
16665 r-genomicranges
16666 r-ggplot2
16667 r-httr
16668 r-iranges
16669 r-jsonlite
16670 r-knitr
16671 r-plyr
16672 r-purrr
16673 r-r-utils
16674 r-readr
16675 r-rvest
16676 r-s4vectors
16677 r-stringr
16678 r-summarizedexperiment
16679 r-tcgabiolinksgui-data
16680 r-tibble
16681 r-tidyr
16682 r-xml
16683 r-xml2))
16684 (native-inputs (list r-knitr))
16685 (home-page "https://github.com/BioinformaticsFMRP/TCGAbiolinks")
16686 (synopsis "Integrative analysis with GDC data")
16687 (description
16688 "The aim of TCGAbiolinks is:
16689
16690 @enumerate
16691 @item facilitate GDC open-access data retrieval;
16692 @item prepare the data using the appropriate pre-processing strategies;
16693 @item provide the means to carry out different standard analyses, and;
16694 @item to easily reproduce earlier research results.
16695 @end enumerate
16696
16697 In more detail, the package provides multiple methods for analysis (e.g.,
16698 differential expression analysis, identifying differentially methylated
16699 regions) and methods for visualization (e.g., survival plots, volcano plots,
16700 starburst plots) in order to easily develop complete analysis pipelines.")
16701 (license license:gpl3+)))
16702
16703 (define-public r-tricycle
16704 (package
16705 (name "r-tricycle")
16706 (version "1.4.0")
16707 (source (origin
16708 (method url-fetch)
16709 (uri (bioconductor-uri "tricycle" version))
16710 (sha256
16711 (base32
16712 "0bjkajcz6xcfak6071d0ihakrvgf7s0pmkn6vqkjd6yxbfld7zln"))))
16713 (properties `((upstream-name . "tricycle")))
16714 (build-system r-build-system)
16715 (propagated-inputs
16716 (list r-annotationdbi
16717 r-circular
16718 r-dplyr
16719 r-genomicranges
16720 r-ggnewscale
16721 r-ggplot2
16722 r-iranges
16723 r-rcolorbrewer
16724 r-s4vectors
16725 r-scater
16726 r-scattermore
16727 r-singlecellexperiment
16728 r-summarizedexperiment))
16729 (native-inputs (list r-knitr))
16730 (home-page "https://github.com/hansenlab/tricycle")
16731 (synopsis "Transferable representation and inference of cell cycle")
16732 (description
16733 "The package contains functions to infer and visualize cell cycle process
16734 using Single-cell RNA-Seq data. It exploits the idea of transfer learning,
16735 projecting new data to the previous learned biologically interpretable space.
16736 The @code{tricycle} provides a pre-learned cell cycle space, which could be
16737 used to infer cell cycle time of human and mouse single cell samples. In
16738 addition, it also offer functions to visualize cell cycle time on different
16739 embeddings and functions to build new reference.")
16740 (license license:gpl3)))
16741
16742 (define-public r-tximeta
16743 (package
16744 (name "r-tximeta")
16745 (version "1.14.0")
16746 (source
16747 (origin
16748 (method url-fetch)
16749 (uri (bioconductor-uri "tximeta" version))
16750 (sha256
16751 (base32
16752 "1vq7x1sf5h8iwdalalbrybxzbq47s2ymb75himj5wkv77mgcivfl"))))
16753 (properties `((upstream-name . "tximeta")))
16754 (build-system r-build-system)
16755 (propagated-inputs
16756 (list r-annotationdbi
16757 r-annotationhub
16758 r-biocfilecache
16759 r-biostrings
16760 r-ensembldb
16761 r-genomeinfodb
16762 r-genomicfeatures
16763 r-genomicranges
16764 r-iranges
16765 r-jsonlite
16766 r-matrix
16767 r-s4vectors
16768 r-summarizedexperiment
16769 r-tibble
16770 r-tximport))
16771 (native-inputs
16772 (list r-knitr))
16773 (home-page "https://github.com/mikelove/tximeta")
16774 (synopsis "Transcript quantification import with automatic metadata")
16775 (description
16776 "This package implements transcript quantification import from Salmon and
16777 alevin with automatic attachment of transcript ranges and release information,
16778 and other associated metadata. De novo transcriptomes can be linked to the
16779 appropriate sources with linkedTxomes and shared for computational
16780 reproducibility.")
16781 (license license:gpl2)))
16782
16783 (define-public r-phyloseq
16784 (package
16785 (name "r-phyloseq")
16786 (version "1.40.0")
16787 (source
16788 (origin
16789 (method url-fetch)
16790 (uri (bioconductor-uri "phyloseq" version))
16791 (sha256
16792 (base32 "0hcyv4ziyaw74mc9vf7bad3q9izi9p0whg3hspbs6w8b3hp34y2k"))))
16793 (properties `((upstream-name . "phyloseq")))
16794 (build-system r-build-system)
16795 (propagated-inputs
16796 (list r-ade4
16797 r-ape
16798 r-biobase
16799 r-biocgenerics
16800 r-biomformat
16801 r-biostrings
16802 r-cluster
16803 r-data-table
16804 r-foreach
16805 r-ggplot2
16806 r-igraph
16807 r-multtest
16808 r-plyr
16809 r-reshape2
16810 r-scales
16811 r-vegan))
16812 (native-inputs
16813 (list r-knitr))
16814 (home-page "https://github.com/joey711/phyloseq")
16815 (synopsis "Handling and analysis of high-throughput microbiome census data")
16816 (description
16817 "Phyloseq provides a set of classes and tools to facilitate the import,
16818 storage, analysis, and graphical display of microbiome census data.")
16819 (license license:agpl3)))