gnu: Add r-arrmdata.
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
4 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
5 ;;;
6 ;;; This file is part of GNU Guix.
7 ;;;
8 ;;; GNU Guix is free software; you can redistribute it and/or modify it
9 ;;; under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 3 of the License, or (at
11 ;;; your option) any later version.
12 ;;;
13 ;;; GNU Guix is distributed in the hope that it will be useful, but
14 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
17 ;;;
18 ;;; You should have received a copy of the GNU General Public License
19 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21 (define-module (gnu packages bioconductor)
22 #:use-module ((guix licenses) #:prefix license:)
23 #:use-module (guix packages)
24 #:use-module (guix download)
25 #:use-module (guix build-system r)
26 #:use-module (gnu packages)
27 #:use-module (gnu packages bioinformatics)
28 #:use-module (gnu packages cran)
29 #:use-module (gnu packages compression)
30 #:use-module (gnu packages gcc)
31 #:use-module (gnu packages graph)
32 #:use-module (gnu packages haskell)
33 #:use-module (gnu packages image)
34 #:use-module (gnu packages maths)
35 #:use-module (gnu packages netpbm)
36 #:use-module (gnu packages perl)
37 #:use-module (gnu packages pkg-config)
38 #:use-module (gnu packages statistics)
39 #:use-module (gnu packages web))
40
41 \f
42 ;;; Annotations
43
44 (define-public r-bsgenome-celegans-ucsc-ce6
45 (package
46 (name "r-bsgenome-celegans-ucsc-ce6")
47 (version "1.4.0")
48 (source (origin
49 (method url-fetch)
50 ;; We cannot use bioconductor-uri here because this tarball is
51 ;; located under "data/annotation/" instead of "bioc/".
52 (uri (string-append "https://www.bioconductor.org/packages/"
53 "release/data/annotation/src/contrib/"
54 "BSgenome.Celegans.UCSC.ce6_"
55 version ".tar.gz"))
56 (sha256
57 (base32
58 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
59 (properties
60 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
61 (build-system r-build-system)
62 ;; As this package provides little more than a very large data file it
63 ;; doesn't make sense to build substitutes.
64 (arguments `(#:substitutable? #f))
65 (propagated-inputs
66 `(("r-bsgenome" ,r-bsgenome)))
67 (home-page
68 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
69 (synopsis "Full genome sequences for Worm")
70 (description
71 "This package provides full genome sequences for Caenorhabditis
72 elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
73 objects.")
74 (license license:artistic2.0)))
75
76 (define-public r-bsgenome-celegans-ucsc-ce10
77 (package
78 (name "r-bsgenome-celegans-ucsc-ce10")
79 (version "1.4.0")
80 (source (origin
81 (method url-fetch)
82 ;; We cannot use bioconductor-uri here because this tarball is
83 ;; located under "data/annotation/" instead of "bioc/".
84 (uri (string-append "https://www.bioconductor.org/packages/"
85 "release/data/annotation/src/contrib/"
86 "BSgenome.Celegans.UCSC.ce10_"
87 version ".tar.gz"))
88 (sha256
89 (base32
90 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
91 (properties
92 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
93 (build-system r-build-system)
94 ;; As this package provides little more than a very large data file it
95 ;; doesn't make sense to build substitutes.
96 (arguments `(#:substitutable? #f))
97 (propagated-inputs
98 `(("r-bsgenome" ,r-bsgenome)))
99 (home-page
100 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
101 (synopsis "Full genome sequences for Worm")
102 (description
103 "This package provides full genome sequences for Caenorhabditis
104 elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
105 objects.")
106 (license license:artistic2.0)))
107
108 (define-public r-bsgenome-dmelanogaster-ucsc-dm6
109 (package
110 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
111 (version "1.4.1")
112 (source (origin
113 (method url-fetch)
114 ;; We cannot use bioconductor-uri here because this tarball is
115 ;; located under "data/annotation/" instead of "bioc/".
116 (uri (string-append "https://www.bioconductor.org/packages/"
117 "release/data/annotation/src/contrib/"
118 "BSgenome.Dmelanogaster.UCSC.dm6_"
119 version ".tar.gz"))
120 (sha256
121 (base32
122 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
123 (properties
124 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
125 (build-system r-build-system)
126 ;; As this package provides little more than a very large data file it
127 ;; doesn't make sense to build substitutes.
128 (arguments `(#:substitutable? #f))
129 (propagated-inputs
130 `(("r-bsgenome" ,r-bsgenome)))
131 (home-page
132 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
133 (synopsis "Full genome sequences for Fly")
134 (description
135 "This package provides full genome sequences for Drosophila
136 melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
137 objects.")
138 (license license:artistic2.0)))
139
140 (define-public r-bsgenome-dmelanogaster-ucsc-dm3
141 (package
142 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
143 (version "1.4.0")
144 (source (origin
145 (method url-fetch)
146 ;; We cannot use bioconductor-uri here because this tarball is
147 ;; located under "data/annotation/" instead of "bioc/".
148 (uri (string-append "https://www.bioconductor.org/packages/"
149 "release/data/annotation/src/contrib/"
150 "BSgenome.Dmelanogaster.UCSC.dm3_"
151 version ".tar.gz"))
152 (sha256
153 (base32
154 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
155 (properties
156 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
157 (build-system r-build-system)
158 ;; As this package provides little more than a very large data file it
159 ;; doesn't make sense to build substitutes.
160 (arguments `(#:substitutable? #f))
161 (propagated-inputs
162 `(("r-bsgenome" ,r-bsgenome)))
163 (home-page
164 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
165 (synopsis "Full genome sequences for Fly")
166 (description
167 "This package provides full genome sequences for Drosophila
168 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
169 Biostrings objects.")
170 (license license:artistic2.0)))
171
172 (define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
173 (package
174 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
175 (version "1.3.99")
176 (source (origin
177 (method url-fetch)
178 ;; We cannot use bioconductor-uri here because this tarball is
179 ;; located under "data/annotation/" instead of "bioc/".
180 (uri (string-append "http://www.bioconductor.org/packages/"
181 "release/data/annotation/src/contrib/"
182 "BSgenome.Dmelanogaster.UCSC.dm3.masked_"
183 version ".tar.gz"))
184 (sha256
185 (base32
186 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
187 (properties
188 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
189 (build-system r-build-system)
190 (propagated-inputs
191 `(("r-bsgenome" ,r-bsgenome)
192 ("r-bsgenome-dmelanogaster-ucsc-dm3"
193 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
194 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
195 (synopsis "Full masked genome sequences for Fly")
196 (description
197 "This package provides full masked genome sequences for Drosophila
198 melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
199 Biostrings objects. The sequences are the same as in
200 BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
201 masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
202 intra-contig ambiguities (AMB mask), (3) the mask of repeats from
203 RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
204 Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
205 (license license:artistic2.0)))
206
207 (define-public r-bsgenome-hsapiens-1000genomes-hs37d5
208 (package
209 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
210 (version "0.99.1")
211 (source (origin
212 (method url-fetch)
213 ;; We cannot use bioconductor-uri here because this tarball is
214 ;; located under "data/annotation/" instead of "bioc/".
215 (uri (string-append "https://www.bioconductor.org/packages/"
216 "release/data/annotation/src/contrib/"
217 "BSgenome.Hsapiens.1000genomes.hs37d5_"
218 version ".tar.gz"))
219 (sha256
220 (base32
221 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
222 (properties
223 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
224 (build-system r-build-system)
225 ;; As this package provides little more than a very large data file it
226 ;; doesn't make sense to build substitutes.
227 (arguments `(#:substitutable? #f))
228 (propagated-inputs
229 `(("r-bsgenome" ,r-bsgenome)))
230 (home-page
231 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
232 (synopsis "Full genome sequences for Homo sapiens")
233 (description
234 "This package provides full genome sequences for Homo sapiens from
235 1000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
236 (license license:artistic2.0)))
237
238 (define-public r-bsgenome-hsapiens-ucsc-hg19-masked
239 (package
240 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
241 (version "1.3.99")
242 (source (origin
243 (method url-fetch)
244 ;; We cannot use bioconductor-uri here because this tarball is
245 ;; located under "data/annotation/" instead of "bioc/".
246 (uri (string-append "http://www.bioconductor.org/packages/"
247 "release/data/annotation/src/contrib/"
248 "BSgenome.Hsapiens.UCSC.hg19.masked_"
249 version ".tar.gz"))
250 (sha256
251 (base32
252 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
253 (properties
254 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
255 (build-system r-build-system)
256 (propagated-inputs
257 `(("r-bsgenome" ,r-bsgenome)
258 ("r-bsgenome-hsapiens-ucsc-hg19"
259 ,r-bsgenome-hsapiens-ucsc-hg19)))
260 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
261 (synopsis "Full masked genome sequences for Homo sapiens")
262 (description
263 "This package provides full genome sequences for Homo sapiens (Human) as
264 provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
265 sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
266 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
267 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
268 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
269 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
270 default.")
271 (license license:artistic2.0)))
272
273 (define-public r-bsgenome-mmusculus-ucsc-mm9
274 (package
275 (name "r-bsgenome-mmusculus-ucsc-mm9")
276 (version "1.4.0")
277 (source (origin
278 (method url-fetch)
279 ;; We cannot use bioconductor-uri here because this tarball is
280 ;; located under "data/annotation/" instead of "bioc/".
281 (uri (string-append "https://www.bioconductor.org/packages/"
282 "release/data/annotation/src/contrib/"
283 "BSgenome.Mmusculus.UCSC.mm9_"
284 version ".tar.gz"))
285 (sha256
286 (base32
287 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
288 (properties
289 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
290 (build-system r-build-system)
291 ;; As this package provides little more than a very large data file it
292 ;; doesn't make sense to build substitutes.
293 (arguments `(#:substitutable? #f))
294 (propagated-inputs
295 `(("r-bsgenome" ,r-bsgenome)))
296 (home-page
297 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
298 (synopsis "Full genome sequences for Mouse")
299 (description
300 "This package provides full genome sequences for Mus musculus (Mouse) as
301 provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
302 (license license:artistic2.0)))
303
304 (define-public r-bsgenome-mmusculus-ucsc-mm9-masked
305 (package
306 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
307 (version "1.3.99")
308 (source (origin
309 (method url-fetch)
310 ;; We cannot use bioconductor-uri here because this tarball is
311 ;; located under "data/annotation/" instead of "bioc/".
312 (uri (string-append "http://www.bioconductor.org/packages/"
313 "release/data/annotation/src/contrib/"
314 "BSgenome.Mmusculus.UCSC.mm9.masked_"
315 version ".tar.gz"))
316 (sha256
317 (base32
318 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
319 (properties
320 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
321 (build-system r-build-system)
322 (propagated-inputs
323 `(("r-bsgenome" ,r-bsgenome)
324 ("r-bsgenome-mmusculus-ucsc-mm9"
325 ,r-bsgenome-mmusculus-ucsc-mm9)))
326 (home-page "http://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
327 (synopsis "Full masked genome sequences for Mouse")
328 (description
329 "This package provides full genome sequences for Mus musculus (Mouse) as
330 provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
331 sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
332 them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
333 mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
334 repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
335 Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
336 default." )
337 (license license:artistic2.0)))
338
339 (define-public r-bsgenome-mmusculus-ucsc-mm10
340 (package
341 (name "r-bsgenome-mmusculus-ucsc-mm10")
342 (version "1.4.0")
343 (source (origin
344 (method url-fetch)
345 ;; We cannot use bioconductor-uri here because this tarball is
346 ;; located under "data/annotation/" instead of "bioc/".
347 (uri (string-append "https://www.bioconductor.org/packages/"
348 "release/data/annotation/src/contrib/"
349 "BSgenome.Mmusculus.UCSC.mm10_"
350 version ".tar.gz"))
351 (sha256
352 (base32
353 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
354 (properties
355 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
356 (build-system r-build-system)
357 ;; As this package provides little more than a very large data file it
358 ;; doesn't make sense to build substitutes.
359 (arguments `(#:substitutable? #f))
360 (propagated-inputs
361 `(("r-bsgenome" ,r-bsgenome)))
362 (home-page
363 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
364 (synopsis "Full genome sequences for Mouse")
365 (description
366 "This package provides full genome sequences for Mus
367 musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
368 in Biostrings objects.")
369 (license license:artistic2.0)))
370
371 (define-public r-org-ce-eg-db
372 (package
373 (name "r-org-ce-eg-db")
374 (version "3.7.0")
375 (source (origin
376 (method url-fetch)
377 ;; We cannot use bioconductor-uri here because this tarball is
378 ;; located under "data/annotation/" instead of "bioc/".
379 (uri (string-append "https://www.bioconductor.org/packages/"
380 "release/data/annotation/src/contrib/"
381 "org.Ce.eg.db_" version ".tar.gz"))
382 (sha256
383 (base32
384 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
385 (properties
386 `((upstream-name . "org.Ce.eg.db")))
387 (build-system r-build-system)
388 (propagated-inputs
389 `(("r-annotationdbi" ,r-annotationdbi)))
390 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
391 (synopsis "Genome wide annotation for Worm")
392 (description
393 "This package provides mappings from Entrez gene identifiers to various
394 annotations for the genome of the model worm Caenorhabditis elegans.")
395 (license license:artistic2.0)))
396
397 (define-public r-org-dm-eg-db
398 (package
399 (name "r-org-dm-eg-db")
400 (version "3.7.0")
401 (source (origin
402 (method url-fetch)
403 ;; We cannot use bioconductor-uri here because this tarball is
404 ;; located under "data/annotation/" instead of "bioc/".
405 (uri (string-append "https://www.bioconductor.org/packages/"
406 "release/data/annotation/src/contrib/"
407 "org.Dm.eg.db_" version ".tar.gz"))
408 (sha256
409 (base32
410 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
411 (properties
412 `((upstream-name . "org.Dm.eg.db")))
413 (build-system r-build-system)
414 (propagated-inputs
415 `(("r-annotationdbi" ,r-annotationdbi)))
416 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
417 (synopsis "Genome wide annotation for Fly")
418 (description
419 "This package provides mappings from Entrez gene identifiers to various
420 annotations for the genome of the model fruit fly Drosophila melanogaster.")
421 (license license:artistic2.0)))
422
423 (define-public r-org-dr-eg-db
424 (package
425 (name "r-org-dr-eg-db")
426 (version "3.7.0")
427 (source (origin
428 (method url-fetch)
429 ;; We cannot use bioconductor-uri here because this tarball is
430 ;; located under "data/annotation/" instead of "bioc/".
431 (uri (string-append "https://www.bioconductor.org/packages/"
432 "release/data/annotation/src/contrib/"
433 "org.Dr.eg.db_" version ".tar.gz"))
434 (sha256
435 (base32
436 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
437 (properties
438 `((upstream-name . "org.Dr.eg.db")))
439 (build-system r-build-system)
440 (propagated-inputs
441 `(("r-annotationdbi" ,r-annotationdbi)))
442 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
443 (synopsis "Annotation for Zebrafish")
444 (description
445 "This package provides genome wide annotations for Zebrafish, primarily
446 based on mapping using Entrez Gene identifiers.")
447 (license license:artistic2.0)))
448
449 (define-public r-org-hs-eg-db
450 (package
451 (name "r-org-hs-eg-db")
452 (version "3.7.0")
453 (source (origin
454 (method url-fetch)
455 ;; We cannot use bioconductor-uri here because this tarball is
456 ;; located under "data/annotation/" instead of "bioc/".
457 (uri (string-append "https://www.bioconductor.org/packages/"
458 "release/data/annotation/src/contrib/"
459 "org.Hs.eg.db_" version ".tar.gz"))
460 (sha256
461 (base32
462 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
463 (properties
464 `((upstream-name . "org.Hs.eg.db")))
465 (build-system r-build-system)
466 (propagated-inputs
467 `(("r-annotationdbi" ,r-annotationdbi)))
468 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
469 (synopsis "Genome wide annotation for Human")
470 (description
471 "This package contains genome-wide annotations for Human, primarily based
472 on mapping using Entrez Gene identifiers.")
473 (license license:artistic2.0)))
474
475 (define-public r-org-mm-eg-db
476 (package
477 (name "r-org-mm-eg-db")
478 (version "3.7.0")
479 (source (origin
480 (method url-fetch)
481 ;; We cannot use bioconductor-uri here because this tarball is
482 ;; located under "data/annotation/" instead of "bioc/".
483 (uri (string-append "https://www.bioconductor.org/packages/"
484 "release/data/annotation/src/contrib/"
485 "org.Mm.eg.db_" version ".tar.gz"))
486 (sha256
487 (base32
488 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
489 (properties
490 `((upstream-name . "org.Mm.eg.db")))
491 (build-system r-build-system)
492 (propagated-inputs
493 `(("r-annotationdbi" ,r-annotationdbi)))
494 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
495 (synopsis "Genome wide annotation for Mouse")
496 (description
497 "This package provides mappings from Entrez gene identifiers to various
498 annotations for the genome of the model mouse Mus musculus.")
499 (license license:artistic2.0)))
500
501 (define-public r-bsgenome-hsapiens-ucsc-hg19
502 (package
503 (name "r-bsgenome-hsapiens-ucsc-hg19")
504 (version "1.4.0")
505 (source (origin
506 (method url-fetch)
507 ;; We cannot use bioconductor-uri here because this tarball is
508 ;; located under "data/annotation/" instead of "bioc/".
509 (uri (string-append "https://www.bioconductor.org/packages/"
510 "release/data/annotation/src/contrib/"
511 "BSgenome.Hsapiens.UCSC.hg19_"
512 version ".tar.gz"))
513 (sha256
514 (base32
515 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
516 (properties
517 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
518 (build-system r-build-system)
519 ;; As this package provides little more than a very large data file it
520 ;; doesn't make sense to build substitutes.
521 (arguments `(#:substitutable? #f))
522 (propagated-inputs
523 `(("r-bsgenome" ,r-bsgenome)))
524 (home-page
525 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
526 (synopsis "Full genome sequences for Homo sapiens")
527 (description
528 "This package provides full genome sequences for Homo sapiens as provided
529 by UCSC (hg19, February 2009) and stored in Biostrings objects.")
530 (license license:artistic2.0)))
531
532 (define-public r-genelendatabase
533 (package
534 (name "r-genelendatabase")
535 (version "1.18.0")
536 (source
537 (origin
538 (method url-fetch)
539 ;; We cannot use bioconductor-uri here because this tarball is
540 ;; located under "data/experiment/" instead of "bioc/".
541 (uri (string-append "https://bioconductor.org/packages/"
542 "release/data/experiment/src/contrib"
543 "/geneLenDataBase_" version ".tar.gz"))
544 (sha256
545 (base32
546 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
547 (properties
548 `((upstream-name . "geneLenDataBase")))
549 (build-system r-build-system)
550 (propagated-inputs
551 `(("r-rtracklayer" ,r-rtracklayer)
552 ("r-genomicfeatures" ,r-genomicfeatures)))
553 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
554 (synopsis "Lengths of mRNA transcripts for a number of genomes")
555 (description
556 "This package provides the lengths of mRNA transcripts for a number of
557 genomes and gene ID formats, largely based on the UCSC table browser.")
558 (license license:lgpl2.0+)))
559
560 (define-public r-txdb-hsapiens-ucsc-hg19-knowngene
561 (package
562 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
563 (version "3.2.2")
564 (source (origin
565 (method url-fetch)
566 ;; We cannot use bioconductor-uri here because this tarball is
567 ;; located under "data/annotation/" instead of "bioc/".
568 (uri (string-append "https://bioconductor.org/packages/"
569 "release/data/annotation/src/contrib"
570 "/TxDb.Hsapiens.UCSC.hg19.knownGene_"
571 version ".tar.gz"))
572 (sha256
573 (base32
574 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
575 (properties
576 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
577 (build-system r-build-system)
578 ;; As this package provides little more than a very large data file it
579 ;; doesn't make sense to build substitutes.
580 (arguments `(#:substitutable? #f))
581 (propagated-inputs
582 `(("r-genomicfeatures" ,r-genomicfeatures)))
583 (home-page
584 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
585 (synopsis "Annotation package for human genome in TxDb format")
586 (description
587 "This package provides an annotation database of Homo sapiens genome
588 data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
589 track. The database is exposed as a @code{TxDb} object.")
590 (license license:artistic2.0)))
591
592 (define-public r-txdb-mmusculus-ucsc-mm9-knowngene
593 (package
594 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
595 (version "3.2.2")
596 (source (origin
597 (method url-fetch)
598 ;; We cannot use bioconductor-uri here because this tarball is
599 ;; located under "data/annotation/" instead of "bioc/".
600 (uri (string-append "https://bioconductor.org/packages/"
601 "release/data/annotation/src/contrib"
602 "/TxDb.Mmusculus.UCSC.mm9.knownGene_"
603 version ".tar.gz"))
604 (sha256
605 (base32
606 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
607 (properties
608 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
609 (build-system r-build-system)
610 (propagated-inputs
611 `(("r-genomicfeatures" ,r-genomicfeatures)
612 ("r-annotationdbi" ,r-annotationdbi)))
613 (home-page
614 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
615 (synopsis "Annotation package for mouse genome in TxDb format")
616 (description
617 "This package provides an annotation database of Mouse genome data. It
618 is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
619 database is exposed as a @code{TxDb} object.")
620 (license license:artistic2.0)))
621
622 (define-public r-txdb-mmusculus-ucsc-mm10-knowngene
623 (package
624 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
625 (version "3.4.4")
626 (source (origin
627 (method url-fetch)
628 ;; We cannot use bioconductor-uri here because this tarball is
629 ;; located under "data/annotation/" instead of "bioc/".
630 (uri (string-append "https://www.bioconductor.org/packages/"
631 "release/data/annotation/src/contrib/"
632 "TxDb.Mmusculus.UCSC.mm10.knownGene_"
633 version ".tar.gz"))
634 (sha256
635 (base32
636 "01lgxc1fx5nhlpbwjd5zqghkkbmh6axd98ikx4b0spv0jdg6gf39"))))
637 (properties
638 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
639 (build-system r-build-system)
640 ;; As this package provides little more than a very large data file it
641 ;; doesn't make sense to build substitutes.
642 (arguments `(#:substitutable? #f))
643 (propagated-inputs
644 `(("r-bsgenome" ,r-bsgenome)
645 ("r-genomicfeatures" ,r-genomicfeatures)
646 ("r-annotationdbi" ,r-annotationdbi)))
647 (home-page
648 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
649 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
650 (description
651 "This package loads a TxDb object, which is an R interface to
652 prefabricated databases contained in this package. This package provides
653 the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
654 based on the knownGene track.")
655 (license license:artistic2.0)))
656
657 (define-public r-fdb-infiniummethylation-hg19
658 (package
659 (name "r-fdb-infiniummethylation-hg19")
660 (version "2.2.0")
661 (source (origin
662 (method url-fetch)
663 ;; We cannot use bioconductor-uri here because this tarball is
664 ;; located under "data/annotation/" instead of "bioc/".
665 (uri (string-append "https://www.bioconductor.org/packages/"
666 "release/data/annotation/src/contrib/"
667 "FDb.InfiniumMethylation.hg19_"
668 version ".tar.gz"))
669 (sha256
670 (base32
671 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
672 (properties
673 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
674 (build-system r-build-system)
675 (propagated-inputs
676 `(("r-biostrings" ,r-biostrings)
677 ("r-genomicfeatures" ,r-genomicfeatures)
678 ("r-annotationdbi" ,r-annotationdbi)
679 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
680 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
681 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
682 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
683 (description
684 "This is an annotation package for Illumina Infinium DNA methylation
685 probes. It contains the compiled HumanMethylation27 and HumanMethylation450
686 annotations.")
687 (license license:artistic2.0)))
688
689 (define-public r-illuminahumanmethylationepicmanifest
690 (package
691 (name "r-illuminahumanmethylationepicmanifest")
692 (version "0.3.0")
693 (source (origin
694 (method url-fetch)
695 ;; We cannot use bioconductor-uri here because this tarball is
696 ;; located under "data/annotation/" instead of "bioc/".
697 (uri (string-append "https://www.bioconductor.org/packages/"
698 "release/data/annotation/src/contrib/"
699 "IlluminaHumanMethylationEPICmanifest_"
700 version ".tar.gz"))
701 (sha256
702 (base32
703 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
704 (properties
705 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
706 (build-system r-build-system)
707 (propagated-inputs
708 `(("r-minfi" ,r-minfi)))
709 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
710 (synopsis "Manifest for Illumina's EPIC methylation arrays")
711 (description
712 "This is a manifest package for Illumina's EPIC methylation arrays.")
713 (license license:artistic2.0)))
714
715 (define-public r-do-db
716 (package
717 (name "r-do-db")
718 (version "2.9")
719 (source (origin
720 (method url-fetch)
721 ;; We cannot use bioconductor-uri here because this tarball is
722 ;; located under "data/annotation/" instead of "bioc/".
723 (uri (string-append "https://www.bioconductor.org/packages/"
724 "release/data/annotation/src/contrib/"
725 "DO.db_" version ".tar.gz"))
726 (sha256
727 (base32
728 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
729 (properties
730 `((upstream-name . "DO.db")))
731 (build-system r-build-system)
732 (propagated-inputs
733 `(("r-annotationdbi" ,r-annotationdbi)))
734 (home-page "https://www.bioconductor.org/packages/DO.db/")
735 (synopsis "Annotation maps describing the entire Disease Ontology")
736 (description
737 "This package provides a set of annotation maps describing the entire
738 Disease Ontology.")
739 (license license:artistic2.0)))
740
741 \f
742 ;;; Experiment data
743
744 (define-public r-abadata
745 (package
746 (name "r-abadata")
747 (version "1.12.0")
748 (source (origin
749 (method url-fetch)
750 ;; We cannot use bioconductor-uri here because this tarball is
751 ;; located under "data/experiment/" instead of "bioc/".
752 (uri (string-append "https://www.bioconductor.org/packages/"
753 "release/data/experiment/src/contrib/"
754 "ABAData_" version ".tar.gz"))
755 (sha256
756 (base32
757 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
758 (properties
759 `((upstream-name . "ABAData")))
760 (build-system r-build-system)
761 (propagated-inputs
762 `(("r-annotationdbi" ,r-annotationdbi)))
763 (home-page "https://www.bioconductor.org/packages/ABAData/")
764 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
765 (description
766 "This package provides the data for the gene expression enrichment
767 analysis conducted in the package ABAEnrichment. The package includes three
768 datasets which are derived from the Allen Brain Atlas:
769
770 @enumerate
771 @item Gene expression data from Human Brain (adults) averaged across donors,
772 @item Gene expression data from the Developing Human Brain pooled into five
773 age categories and averaged across donors, and
774 @item a developmental effect score based on the Developing Human Brain
775 expression data.
776 @end enumerate
777
778 All datasets are restricted to protein coding genes.")
779 (license license:gpl2+)))
780
781 (define-public r-arrmdata
782 (package
783 (name "r-arrmdata")
784 (version "1.18.0")
785 (source (origin
786 (method url-fetch)
787 ;; We cannot use bioconductor-uri here because this tarball is
788 ;; located under "data/experiment/" instead of "bioc/".
789 (uri (string-append "https://www.bioconductor.org/packages/"
790 "release/data/experiment/src/contrib/"
791 "ARRmData_" version ".tar.gz"))
792 (sha256
793 (base32
794 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
795 (properties
796 `((upstream-name . "ARRmData")))
797 (build-system r-build-system)
798 (home-page "https://www.bioconductor.org/packages/ARRmData/")
799 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
800 (description
801 "This package provides raw beta values from 36 samples across 3 groups
802 from Illumina 450k methylation arrays.")
803 (license license:artistic2.0)))
804
805 (define-public r-hsmmsinglecell
806 (package
807 (name "r-hsmmsinglecell")
808 (version "1.2.0")
809 (source (origin
810 (method url-fetch)
811 ;; We cannot use bioconductor-uri here because this tarball is
812 ;; located under "data/experiment/" instead of "bioc/".
813 (uri (string-append "https://www.bioconductor.org/packages/"
814 "release/data/experiment/src/contrib/"
815 "HSMMSingleCell_" version ".tar.gz"))
816 (sha256
817 (base32
818 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
819 (properties
820 `((upstream-name . "HSMMSingleCell")))
821 (build-system r-build-system)
822 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
823 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
824 (description
825 "Skeletal myoblasts undergo a well-characterized sequence of
826 morphological and transcriptional changes during differentiation. In this
827 experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
828 under high mitogen conditions (GM) and then differentiated by switching to
829 low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
830 hundred cells taken over a time-course of serum-induced differentiation.
831 Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
832 72 hours) following serum switch using the Fluidigm C1 microfluidic system.
833 RNA from each cell was isolated and used to construct mRNA-Seq libraries,
834 which were then sequenced to a depth of ~4 million reads per library,
835 resulting in a complete gene expression profile for each cell.")
836 (license license:artistic2.0)))
837
838 \f
839 ;;; Packages
840
841 (define-public r-biocgenerics
842 (package
843 (name "r-biocgenerics")
844 (version "0.28.0")
845 (source (origin
846 (method url-fetch)
847 (uri (bioconductor-uri "BiocGenerics" version))
848 (sha256
849 (base32
850 "0cvpsrhg7sn7lpqgxvqrsagv6j7xj5rafq5xdjfd8zc4gxrs5rb8"))))
851 (properties
852 `((upstream-name . "BiocGenerics")))
853 (build-system r-build-system)
854 (home-page "https://bioconductor.org/packages/BiocGenerics")
855 (synopsis "S4 generic functions for Bioconductor")
856 (description
857 "This package provides S4 generic functions needed by many Bioconductor
858 packages.")
859 (license license:artistic2.0)))
860
861 (define-public r-annotate
862 (package
863 (name "r-annotate")
864 (version "1.60.1")
865 (source
866 (origin
867 (method url-fetch)
868 (uri (bioconductor-uri "annotate" version))
869 (sha256
870 (base32
871 "0pk6ayr3vyqxk850ljkbyil4i382ngfqcbxlv0qrp62yfqgzcjwp"))))
872 (build-system r-build-system)
873 (propagated-inputs
874 `(("r-annotationdbi" ,r-annotationdbi)
875 ("r-biobase" ,r-biobase)
876 ("r-biocgenerics" ,r-biocgenerics)
877 ("r-dbi" ,r-dbi)
878 ("r-rcurl" ,r-rcurl)
879 ("r-xml" ,r-xml)
880 ("r-xtable" ,r-xtable)))
881 (home-page
882 "https://bioconductor.org/packages/annotate")
883 (synopsis "Annotation for microarrays")
884 (description "This package provides R environments for the annotation of
885 microarrays.")
886 (license license:artistic2.0)))
887
888 (define-public r-hpar
889 (package
890 (name "r-hpar")
891 (version "1.24.0")
892 (source
893 (origin
894 (method url-fetch)
895 (uri (bioconductor-uri "hpar" version))
896 (sha256
897 (base32
898 "1pm3k8apgynmdzv2d0chca3b636kcai3b1x861fyv1m3xs6msgxn"))))
899 (build-system r-build-system)
900 (home-page "https://bioconductor.org/packages/hpar/")
901 (synopsis "Human Protein Atlas in R")
902 (description "This package provides a simple interface to and data from
903 the Human Protein Atlas project.")
904 (license license:artistic2.0)))
905
906 (define-public r-regioner
907 (package
908 (name "r-regioner")
909 (version "1.14.0")
910 (source
911 (origin
912 (method url-fetch)
913 (uri (bioconductor-uri "regioneR" version))
914 (sha256
915 (base32
916 "19la74swgzxp90z2nr3pzsgkxd7wp70zl6i2ipv3plg841f6k5zd"))))
917 (properties `((upstream-name . "regioneR")))
918 (build-system r-build-system)
919 (propagated-inputs
920 `(("r-biostrings" ,r-biostrings)
921 ("r-bsgenome" ,r-bsgenome)
922 ("r-genomeinfodb" ,r-genomeinfodb)
923 ("r-genomicranges" ,r-genomicranges)
924 ("r-iranges" ,r-iranges)
925 ("r-memoise" ,r-memoise)
926 ("r-rtracklayer" ,r-rtracklayer)
927 ("r-s4vectors" ,r-s4vectors)))
928 (home-page "https://bioconductor.org/packages/regioneR/")
929 (synopsis "Association analysis of genomic regions")
930 (description "This package offers a statistical framework based on
931 customizable permutation tests to assess the association between genomic
932 region sets and other genomic features.")
933 (license license:artistic2.0)))
934
935 (define-public r-geneplotter
936 (package
937 (name "r-geneplotter")
938 (version "1.60.0")
939 (source
940 (origin
941 (method url-fetch)
942 (uri (bioconductor-uri "geneplotter" version))
943 (sha256
944 (base32
945 "10khr0pznxf3m0f5gzck9ymljrwcv3vamfmpskd51yjh36lhllqz"))))
946 (build-system r-build-system)
947 (propagated-inputs
948 `(("r-annotate" ,r-annotate)
949 ("r-annotationdbi" ,r-annotationdbi)
950 ("r-biobase" ,r-biobase)
951 ("r-biocgenerics" ,r-biocgenerics)
952 ("r-lattice" ,r-lattice)
953 ("r-rcolorbrewer" ,r-rcolorbrewer)))
954 (home-page "https://bioconductor.org/packages/geneplotter")
955 (synopsis "Graphics functions for genomic data")
956 (description
957 "This package provides functions for plotting genomic data.")
958 (license license:artistic2.0)))
959
960 (define-public r-qvalue
961 (package
962 (name "r-qvalue")
963 (version "2.14.1")
964 (source
965 (origin
966 (method url-fetch)
967 (uri (bioconductor-uri "qvalue" version))
968 (sha256
969 (base32
970 "0kxavzm1j2mk26qicmjm90nxx4w5h3dxighzks7wzihay3k8cysc"))))
971 (build-system r-build-system)
972 (propagated-inputs
973 `(("r-ggplot2" ,r-ggplot2)
974 ("r-reshape2" ,r-reshape2)))
975 (home-page "http://github.com/jdstorey/qvalue")
976 (synopsis "Q-value estimation for false discovery rate control")
977 (description
978 "This package takes a list of p-values resulting from the simultaneous
979 testing of many hypotheses and estimates their q-values and local @dfn{false
980 discovery rate} (FDR) values. The q-value of a test measures the proportion
981 of false positives incurred when that particular test is called significant.
982 The local FDR measures the posterior probability the null hypothesis is true
983 given the test's p-value. Various plots are automatically generated, allowing
984 one to make sensible significance cut-offs. The software can be applied to
985 problems in genomics, brain imaging, astrophysics, and data mining.")
986 ;; Any version of the LGPL.
987 (license license:lgpl3+)))
988
989 (define-public r-diffbind
990 (package
991 (name "r-diffbind")
992 (version "2.10.0")
993 (source
994 (origin
995 (method url-fetch)
996 (uri (bioconductor-uri "DiffBind" version))
997 (sha256
998 (base32
999 "0j8pal40lr1gv8sss96hhkj7l1qn9sy4q4l2kqd4rfwl7qrcnfw5"))))
1000 (properties `((upstream-name . "DiffBind")))
1001 (build-system r-build-system)
1002 (inputs
1003 `(("zlib" ,zlib)))
1004 (propagated-inputs
1005 `(("r-amap" ,r-amap)
1006 ("r-biocparallel" ,r-biocparallel)
1007 ("r-deseq2" ,r-deseq2)
1008 ("r-dplyr" ,r-dplyr)
1009 ("r-edger" ,r-edger)
1010 ("r-genomicalignments" ,r-genomicalignments)
1011 ("r-genomicranges" ,r-genomicranges)
1012 ("r-ggplot2" ,r-ggplot2)
1013 ("r-ggrepel" ,r-ggrepel)
1014 ("r-gplots" ,r-gplots)
1015 ("r-iranges" ,r-iranges)
1016 ("r-lattice" ,r-lattice)
1017 ("r-limma" ,r-limma)
1018 ("r-locfit" ,r-locfit)
1019 ("r-rcolorbrewer" , r-rcolorbrewer)
1020 ("r-rcpp" ,r-rcpp)
1021 ("r-rsamtools" ,r-rsamtools)
1022 ("r-s4vectors" ,r-s4vectors)
1023 ("r-summarizedexperiment" ,r-summarizedexperiment)
1024 ("r-systempiper" ,r-systempiper)
1025 ("r-zlibbioc" ,r-zlibbioc)))
1026 (home-page "http://bioconductor.org/packages/DiffBind")
1027 (synopsis "Differential binding analysis of ChIP-Seq peak data")
1028 (description
1029 "This package computes differentially bound sites from multiple
1030 ChIP-seq experiments using affinity (quantitative) data. Also enables
1031 occupancy (overlap) analysis and plotting functions.")
1032 (license license:artistic2.0)))
1033
1034 (define-public r-ripseeker
1035 (package
1036 (name "r-ripseeker")
1037 (version "1.22.0")
1038 (source
1039 (origin
1040 (method url-fetch)
1041 (uri (bioconductor-uri "RIPSeeker" version))
1042 (sha256
1043 (base32
1044 "1x2n1iyik4s67bxq0fl6fpf602k51g4pxjpjpxkgx1a5fsk61f2i"))))
1045 (properties `((upstream-name . "RIPSeeker")))
1046 (build-system r-build-system)
1047 (propagated-inputs
1048 `(("r-s4vectors" ,r-s4vectors)
1049 ("r-iranges" ,r-iranges)
1050 ("r-genomicranges" ,r-genomicranges)
1051 ("r-summarizedexperiment" ,r-summarizedexperiment)
1052 ("r-rsamtools" ,r-rsamtools)
1053 ("r-genomicalignments" ,r-genomicalignments)
1054 ("r-rtracklayer" ,r-rtracklayer)))
1055 (home-page "http://bioconductor.org/packages/RIPSeeker")
1056 (synopsis
1057 "Identifying protein-associated transcripts from RIP-seq experiments")
1058 (description
1059 "This package infers and discriminates RIP peaks from RIP-seq alignments
1060 using two-state HMM with negative binomial emission probability. While
1061 RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
1062 a suite of bioinformatics tools integrated within this self-contained software
1063 package comprehensively addressing issues ranging from post-alignments
1064 processing to visualization and annotation.")
1065 (license license:gpl2)))
1066
1067 (define-public r-multtest
1068 (package
1069 (name "r-multtest")
1070 (version "2.38.0")
1071 (source
1072 (origin
1073 (method url-fetch)
1074 (uri (bioconductor-uri "multtest" version))
1075 (sha256
1076 (base32
1077 "0lq62jw81hz9k840969n5byj57pwd0jqga3hqvhb6abb3g10yz7k"))))
1078 (build-system r-build-system)
1079 (propagated-inputs
1080 `(("r-survival" ,r-survival)
1081 ("r-biocgenerics" ,r-biocgenerics)
1082 ("r-biobase" ,r-biobase)
1083 ("r-mass" ,r-mass)))
1084 (home-page "http://bioconductor.org/packages/multtest")
1085 (synopsis "Resampling-based multiple hypothesis testing")
1086 (description
1087 "This package can do non-parametric bootstrap and permutation
1088 resampling-based multiple testing procedures (including empirical Bayes
1089 methods) for controlling the family-wise error rate (FWER), generalized
1090 family-wise error rate (gFWER), tail probability of the proportion of
1091 false positives (TPPFP), and false discovery rate (FDR). Several choices
1092 of bootstrap-based null distribution are implemented (centered, centered
1093 and scaled, quantile-transformed). Single-step and step-wise methods are
1094 available. Tests based on a variety of T- and F-statistics (including
1095 T-statistics based on regression parameters from linear and survival models
1096 as well as those based on correlation parameters) are included. When probing
1097 hypotheses with T-statistics, users may also select a potentially faster null
1098 distribution which is multivariate normal with mean zero and variance
1099 covariance matrix derived from the vector influence function. Results are
1100 reported in terms of adjusted P-values, confidence regions and test statistic
1101 cutoffs. The procedures are directly applicable to identifying differentially
1102 expressed genes in DNA microarray experiments.")
1103 (license license:lgpl3)))
1104
1105 (define-public r-graph
1106 (package
1107 (name "r-graph")
1108 (version "1.60.0")
1109 (source (origin
1110 (method url-fetch)
1111 (uri (bioconductor-uri "graph" version))
1112 (sha256
1113 (base32
1114 "1kgnsm6f0vmb9qbkmmrnvxbwqc0gar17dq5gv1v10hrksw6mh64i"))))
1115 (build-system r-build-system)
1116 (propagated-inputs
1117 `(("r-biocgenerics" ,r-biocgenerics)))
1118 (home-page "https://bioconductor.org/packages/graph")
1119 (synopsis "Handle graph data structures in R")
1120 (description
1121 "This package implements some simple graph handling capabilities for R.")
1122 (license license:artistic2.0)))
1123
1124 (define-public r-codedepends
1125 (package
1126 (name "r-codedepends")
1127 (version "0.6.5")
1128 (source
1129 (origin
1130 (method url-fetch)
1131 (uri (cran-uri "CodeDepends" version))
1132 (sha256
1133 (base32
1134 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
1135 (properties `((upstream-name . "CodeDepends")))
1136 (build-system r-build-system)
1137 (propagated-inputs
1138 `(("r-codetools" ,r-codetools)
1139 ("r-graph" ,r-graph)
1140 ("r-xml" ,r-xml)))
1141 (home-page "http://cran.r-project.org/web/packages/CodeDepends")
1142 (synopsis "Analysis of R code for reproducible research and code comprehension")
1143 (description
1144 "This package provides tools for analyzing R expressions or blocks of
1145 code and determining the dependencies between them. It focuses on R scripts,
1146 but can be used on the bodies of functions. There are many facilities
1147 including the ability to summarize or get a high-level view of code,
1148 determining dependencies between variables, code improvement suggestions.")
1149 ;; Any version of the GPL
1150 (license (list license:gpl2+ license:gpl3+))))
1151
1152 (define-public r-chippeakanno
1153 (package
1154 (name "r-chippeakanno")
1155 (version "3.16.1")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (bioconductor-uri "ChIPpeakAnno" version))
1160 (sha256
1161 (base32
1162 "1x98d8iwrxjwdz1s5cnvi6flynw9gdkmara9gwf205qxgmy7j3a3"))))
1163 (properties `((upstream-name . "ChIPpeakAnno")))
1164 (build-system r-build-system)
1165 (propagated-inputs
1166 `(("r-biocgenerics" ,r-biocgenerics)
1167 ("r-biocmanager" ,r-biocmanager)
1168 ("r-biostrings" ,r-biostrings)
1169 ("r-delayedarray" ,r-delayedarray)
1170 ("r-go-db" ,r-go-db)
1171 ("r-biomart" ,r-biomart)
1172 ("r-bsgenome" ,r-bsgenome)
1173 ("r-genomicfeatures" ,r-genomicfeatures)
1174 ("r-genomicranges" ,r-genomicranges)
1175 ("r-genomeinfodb" ,r-genomeinfodb)
1176 ("r-iranges" ,r-iranges)
1177 ("r-matrixstats" ,r-matrixstats)
1178 ("r-annotationdbi" ,r-annotationdbi)
1179 ("r-limma" ,r-limma)
1180 ("r-multtest" ,r-multtest)
1181 ("r-rbgl" ,r-rbgl)
1182 ("r-graph" ,r-graph)
1183 ("r-regioner" ,r-regioner)
1184 ("r-dbi" ,r-dbi)
1185 ("r-ensembldb" ,r-ensembldb)
1186 ("r-biobase" ,r-biobase)
1187 ("r-s4vectors" ,r-s4vectors)
1188 ("r-seqinr" ,r-seqinr)
1189 ("r-idr" ,r-idr)
1190 ("r-genomicalignments" ,r-genomicalignments)
1191 ("r-summarizedexperiment" ,r-summarizedexperiment)
1192 ("r-rsamtools" ,r-rsamtools)
1193 ("r-venndiagram" ,r-venndiagram)))
1194 (home-page "http://bioconductor.org/packages/ChIPpeakAnno")
1195 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
1196 (description
1197 "The package includes functions to retrieve the sequences around the peak,
1198 obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
1199 custom features such as most conserved elements and other transcription factor
1200 binding sites supplied by users. Starting 2.0.5, new functions have been added
1201 for finding the peaks with bi-directional promoters with summary statistics
1202 (peaksNearBDP), for summarizing the occurrence of motifs in peaks
1203 (summarizePatternInPeaks) and for adding other IDs to annotated peaks or
1204 enrichedGO (addGeneIDs).")
1205 (license license:gpl2+)))
1206
1207 (define-public r-marray
1208 (package
1209 (name "r-marray")
1210 (version "1.60.0")
1211 (source (origin
1212 (method url-fetch)
1213 (uri (bioconductor-uri "marray" version))
1214 (sha256
1215 (base32 "1sh7l3c28x6zhdv99c9x05ii2yxmh9alkazp98kdi4fdb23rlzky"))))
1216 (build-system r-build-system)
1217 (propagated-inputs
1218 `(("r-limma" ,r-limma)))
1219 (home-page "http://bioconductor.org/packages/marray")
1220 (synopsis "Exploratory analysis for two-color spotted microarray data")
1221 (description "This package contains class definitions for two-color spotted
1222 microarray data. It also includes fuctions for data input, diagnostic plots,
1223 normalization and quality checking.")
1224 (license license:lgpl2.0+)))
1225
1226 (define-public r-cghbase
1227 (package
1228 (name "r-cghbase")
1229 (version "1.42.0")
1230 (source (origin
1231 (method url-fetch)
1232 (uri (bioconductor-uri "CGHbase" version))
1233 (sha256
1234 (base32 "0ghxp49xdi09p3f2qwrdrq2p4qjafj4z1rr08ycgbf11gb22h1sc"))))
1235 (properties `((upstream-name . "CGHbase")))
1236 (build-system r-build-system)
1237 (propagated-inputs
1238 `(("r-biobase" ,r-biobase)
1239 ("r-marray" ,r-marray)))
1240 (home-page "http://bioconductor.org/packages/CGHbase")
1241 (synopsis "Base functions and classes for arrayCGH data analysis")
1242 (description "This package contains functions and classes that are needed by
1243 the @code{arrayCGH} packages.")
1244 (license license:gpl2+)))
1245
1246 (define-public r-cghcall
1247 (package
1248 (name "r-cghcall")
1249 (version "2.44.0")
1250 (source (origin
1251 (method url-fetch)
1252 (uri (bioconductor-uri "CGHcall" version))
1253 (sha256
1254 (base32 "1k65kaiqvjyllzbpa2367n6f6kkmsy463kpflzs66hqhx2fshsmi"))))
1255 (properties `((upstream-name . "CGHcall")))
1256 (build-system r-build-system)
1257 (propagated-inputs
1258 `(("r-biobase" ,r-biobase)
1259 ("r-cghbase" ,r-cghbase)
1260 ("r-impute" ,r-impute)
1261 ("r-dnacopy" ,r-dnacopy)
1262 ("r-snowfall" ,r-snowfall)))
1263 (home-page "http://bioconductor.org/packages/CGHcall")
1264 (synopsis "Base functions and classes for arrayCGH data analysis")
1265 (description "This package contains functions and classes that are needed by
1266 @code{arrayCGH} packages.")
1267 (license license:gpl2+)))
1268
1269 (define-public r-qdnaseq
1270 (package
1271 (name "r-qdnaseq")
1272 (version "1.18.0")
1273 (source (origin
1274 (method url-fetch)
1275 (uri (bioconductor-uri "QDNAseq" version))
1276 (sha256
1277 (base32 "04ff9nbckzrlb45mr2j0c3mlh1wcggq5bbl81zklhq203c5x1wc2"))))
1278 (properties `((upstream-name . "QDNAseq")))
1279 (build-system r-build-system)
1280 (propagated-inputs
1281 `(("r-biobase" ,r-biobase)
1282 ("r-biocparallel" ,r-biocparallel)
1283 ("r-cghbase" ,r-cghbase)
1284 ("r-cghcall" ,r-cghcall)
1285 ("r-dnacopy" ,r-dnacopy)
1286 ("r-genomicranges" ,r-genomicranges)
1287 ("r-iranges" ,r-iranges)
1288 ("r-matrixstats" ,r-matrixstats)
1289 ("r-r-utils" ,r-r-utils)
1290 ("r-rsamtools" ,r-rsamtools)))
1291 (home-page "http://bioconductor.org/packages/QDNAseq")
1292 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
1293 (description "The genome is divided into non-overlapping fixed-sized bins,
1294 number of sequence reads in each counted, adjusted with a simultaneous
1295 two-dimensional loess correction for sequence mappability and GC content, and
1296 filtered to remove spurious regions in the genome. Downstream steps of
1297 segmentation and calling are also implemented via packages DNAcopy and CGHcall,
1298 respectively.")
1299 (license license:gpl2+)))
1300
1301 (define-public r-bayseq
1302 (package
1303 (name "r-bayseq")
1304 (version "2.16.0")
1305 (source
1306 (origin
1307 (method url-fetch)
1308 (uri (bioconductor-uri "baySeq" version))
1309 (sha256
1310 (base32
1311 "0f6yckihm5cwh3dycv2g54hf7nddhcqya4yrqwbir96y5k1d1km5"))))
1312 (properties `((upstream-name . "baySeq")))
1313 (build-system r-build-system)
1314 (propagated-inputs
1315 `(("r-abind" ,r-abind)
1316 ("r-edger" ,r-edger)
1317 ("r-genomicranges" ,r-genomicranges)))
1318 (home-page "https://bioconductor.org/packages/baySeq/")
1319 (synopsis "Bayesian analysis of differential expression patterns in count data")
1320 (description
1321 "This package identifies differential expression in high-throughput count
1322 data, such as that derived from next-generation sequencing machines,
1323 calculating estimated posterior likelihoods of differential expression (or
1324 more complex hypotheses) via empirical Bayesian methods.")
1325 (license license:gpl3)))
1326
1327 (define-public r-chipcomp
1328 (package
1329 (name "r-chipcomp")
1330 (version "1.12.0")
1331 (source
1332 (origin
1333 (method url-fetch)
1334 (uri (bioconductor-uri "ChIPComp" version))
1335 (sha256
1336 (base32
1337 "1sypdsvwzssraanlhddhzpf9p0xs3qlflc0hp7yfbp0aplsifx85"))))
1338 (properties `((upstream-name . "ChIPComp")))
1339 (build-system r-build-system)
1340 (propagated-inputs
1341 `(("r-biocgenerics" ,r-biocgenerics)
1342 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1343 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
1344 ("r-genomeinfodb" ,r-genomeinfodb)
1345 ("r-genomicranges" ,r-genomicranges)
1346 ("r-iranges" ,r-iranges)
1347 ("r-limma" ,r-limma)
1348 ("r-rsamtools" ,r-rsamtools)
1349 ("r-rtracklayer" ,r-rtracklayer)
1350 ("r-s4vectors" ,r-s4vectors)))
1351 (home-page "https://bioconductor.org/packages/ChIPComp")
1352 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
1353 (description
1354 "ChIPComp implements a statistical method for quantitative comparison of
1355 multiple ChIP-seq datasets. It detects differentially bound sharp binding
1356 sites across multiple conditions considering matching control in ChIP-seq
1357 datasets.")
1358 ;; Any version of the GPL.
1359 (license license:gpl3+)))
1360
1361 (define-public r-riboprofiling
1362 (package
1363 (name "r-riboprofiling")
1364 (version "1.12.0")
1365 (source
1366 (origin
1367 (method url-fetch)
1368 (uri (bioconductor-uri "RiboProfiling" version))
1369 (sha256
1370 (base32
1371 "1njvkd1khmf3rbp3dkz5z63wp79z4wmk4kzd3p3amky3w5by070z"))))
1372 (properties `((upstream-name . "RiboProfiling")))
1373 (build-system r-build-system)
1374 (propagated-inputs
1375 `(("r-biocgenerics" ,r-biocgenerics)
1376 ("r-biostrings" ,r-biostrings)
1377 ("r-data-table" ,r-data-table)
1378 ("r-genomeinfodb" ,r-genomeinfodb)
1379 ("r-genomicalignments" ,r-genomicalignments)
1380 ("r-genomicfeatures" ,r-genomicfeatures)
1381 ("r-genomicranges" ,r-genomicranges)
1382 ("r-ggbio" ,r-ggbio)
1383 ("r-ggplot2" ,r-ggplot2)
1384 ("r-iranges" ,r-iranges)
1385 ("r-plyr" ,r-plyr)
1386 ("r-reshape2" ,r-reshape2)
1387 ("r-rsamtools" ,r-rsamtools)
1388 ("r-rtracklayer" ,r-rtracklayer)
1389 ("r-s4vectors" ,r-s4vectors)
1390 ("r-sqldf" ,r-sqldf)))
1391 (home-page "https://bioconductor.org/packages/RiboProfiling/")
1392 (synopsis "Ribosome profiling data analysis")
1393 (description "Starting with a BAM file, this package provides the
1394 necessary functions for quality assessment, read start position recalibration,
1395 the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
1396 of count data: pairs, log fold-change, codon frequency and coverage
1397 assessment, principal component analysis on codon coverage.")
1398 (license license:gpl3)))
1399
1400 (define-public r-riboseqr
1401 (package
1402 (name "r-riboseqr")
1403 (version "1.16.0")
1404 (source
1405 (origin
1406 (method url-fetch)
1407 (uri (bioconductor-uri "riboSeqR" version))
1408 (sha256
1409 (base32
1410 "1nacsbsz77fw4a10nqj2ncsf25q3aaa0gd5w1q0ray2prx7qmlqb"))))
1411 (properties `((upstream-name . "riboSeqR")))
1412 (build-system r-build-system)
1413 (propagated-inputs
1414 `(("r-abind" ,r-abind)
1415 ("r-bayseq" ,r-bayseq)
1416 ("r-genomeinfodb" ,r-genomeinfodb)
1417 ("r-genomicranges" ,r-genomicranges)
1418 ("r-iranges" ,r-iranges)
1419 ("r-rsamtools" ,r-rsamtools)
1420 ("r-seqlogo" ,r-seqlogo)))
1421 (home-page "https://bioconductor.org/packages/riboSeqR/")
1422 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
1423 (description
1424 "This package provides plotting functions, frameshift detection and
1425 parsing of genetic sequencing data from ribosome profiling experiments.")
1426 (license license:gpl3)))
1427
1428 (define-public r-interactionset
1429 (package
1430 (name "r-interactionset")
1431 (version "1.10.0")
1432 (source
1433 (origin
1434 (method url-fetch)
1435 (uri (bioconductor-uri "InteractionSet" version))
1436 (sha256
1437 (base32
1438 "0wirfhmpmkmnmhbqslw4bzvi2msqyqpjy1rrwr5qbd9k5rhx3bzb"))))
1439 (properties
1440 `((upstream-name . "InteractionSet")))
1441 (build-system r-build-system)
1442 (propagated-inputs
1443 `(("r-biocgenerics" ,r-biocgenerics)
1444 ("r-genomeinfodb" ,r-genomeinfodb)
1445 ("r-genomicranges" ,r-genomicranges)
1446 ("r-iranges" ,r-iranges)
1447 ("r-matrix" ,r-matrix)
1448 ("r-rcpp" ,r-rcpp)
1449 ("r-s4vectors" ,r-s4vectors)
1450 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1451 (home-page "https://bioconductor.org/packages/InteractionSet")
1452 (synopsis "Base classes for storing genomic interaction data")
1453 (description
1454 "This packages provides the @code{GInteractions},
1455 @code{InteractionSet} and @code{ContactMatrix} objects and associated methods
1456 for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
1457 experiments.")
1458 (license license:gpl3)))
1459
1460 (define-public r-genomicinteractions
1461 (package
1462 (name "r-genomicinteractions")
1463 (version "1.16.0")
1464 (source
1465 (origin
1466 (method url-fetch)
1467 (uri (bioconductor-uri "GenomicInteractions" version))
1468 (sha256
1469 (base32
1470 "0zy5isp2lqpjm0n0n1gly5bs4izn22yciibyqrnlrr60rmn5s67q"))))
1471 (properties
1472 `((upstream-name . "GenomicInteractions")))
1473 (build-system r-build-system)
1474 (propagated-inputs
1475 `(("r-biobase" ,r-biobase)
1476 ("r-biocgenerics" ,r-biocgenerics)
1477 ("r-data-table" ,r-data-table)
1478 ("r-dplyr" ,r-dplyr)
1479 ("r-genomeinfodb" ,r-genomeinfodb)
1480 ("r-genomicranges" ,r-genomicranges)
1481 ("r-ggplot2" ,r-ggplot2)
1482 ("r-gridextra" ,r-gridextra)
1483 ("r-gviz" ,r-gviz)
1484 ("r-igraph" ,r-igraph)
1485 ("r-interactionset" ,r-interactionset)
1486 ("r-iranges" ,r-iranges)
1487 ("r-rsamtools" ,r-rsamtools)
1488 ("r-rtracklayer" ,r-rtracklayer)
1489 ("r-s4vectors" ,r-s4vectors)
1490 ("r-stringr" ,r-stringr)))
1491 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
1492 (synopsis "R package for handling genomic interaction data")
1493 (description
1494 "This R package provides tools for handling genomic interaction data,
1495 such as ChIA-PET/Hi-C, annotating genomic features with interaction
1496 information and producing various plots and statistics.")
1497 (license license:gpl3)))
1498
1499 (define-public r-ctc
1500 (package
1501 (name "r-ctc")
1502 (version "1.56.0")
1503 (source
1504 (origin
1505 (method url-fetch)
1506 (uri (bioconductor-uri "ctc" version))
1507 (sha256
1508 (base32
1509 "0yp7c0abk48jx1wf8n1gawh7dm15idahqc8va24v8cm0bzxgnmh2"))))
1510 (build-system r-build-system)
1511 (propagated-inputs `(("r-amap" ,r-amap)))
1512 (home-page "https://bioconductor.org/packages/ctc/")
1513 (synopsis "Cluster and tree conversion")
1514 (description
1515 "This package provides tools for exporting and importing classification
1516 trees and clusters to other programs.")
1517 (license license:gpl2)))
1518
1519 (define-public r-goseq
1520 (package
1521 (name "r-goseq")
1522 (version "1.34.1")
1523 (source
1524 (origin
1525 (method url-fetch)
1526 (uri (bioconductor-uri "goseq" version))
1527 (sha256
1528 (base32
1529 "1j87j98cajcjqabv6rb6zmcqxsqxxhbb3w60w1iink4rhsh8m3mn"))))
1530 (build-system r-build-system)
1531 (propagated-inputs
1532 `(("r-annotationdbi" ,r-annotationdbi)
1533 ("r-biasedurn" ,r-biasedurn)
1534 ("r-biocgenerics" ,r-biocgenerics)
1535 ("r-genelendatabase" ,r-genelendatabase)
1536 ("r-go-db" ,r-go-db)
1537 ("r-mgcv" ,r-mgcv)))
1538 (home-page "https://bioconductor.org/packages/goseq/")
1539 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
1540 (description
1541 "This package provides tools to detect Gene Ontology and/or other user
1542 defined categories which are over/under represented in RNA-seq data.")
1543 (license license:lgpl2.0+)))
1544
1545 (define-public r-glimma
1546 (package
1547 (name "r-glimma")
1548 (version "1.10.1")
1549 (source
1550 (origin
1551 (method url-fetch)
1552 (uri (bioconductor-uri "Glimma" version))
1553 (sha256
1554 (base32
1555 "1ihrww55sa7ipi1rpp0rmn081sbqdwdmm5mz30zfrjr1xxqcdbcv"))))
1556 (properties `((upstream-name . "Glimma")))
1557 (build-system r-build-system)
1558 (propagated-inputs
1559 `(("r-edger" ,r-edger)
1560 ("r-jsonlite" ,r-jsonlite)
1561 ("r-s4vectors" ,r-s4vectors)))
1562 (home-page "https://github.com/Shians/Glimma")
1563 (synopsis "Interactive HTML graphics")
1564 (description
1565 "This package generates interactive visualisations for analysis of
1566 RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
1567 HTML page. The interactions are built on top of the popular static
1568 representations of analysis results in order to provide additional
1569 information.")
1570 (license license:lgpl3)))
1571
1572 (define-public r-rots
1573 (package
1574 (name "r-rots")
1575 (version "1.10.1")
1576 (source
1577 (origin
1578 (method url-fetch)
1579 (uri (bioconductor-uri "ROTS" version))
1580 (sha256
1581 (base32
1582 "1d5ggkk47xybcaizfy756qimbf2falg9cld46mhqjp3xfbfvzsg6"))))
1583 (properties `((upstream-name . "ROTS")))
1584 (build-system r-build-system)
1585 (propagated-inputs
1586 `(("r-biobase" ,r-biobase)
1587 ("r-rcpp" ,r-rcpp)))
1588 (home-page "https://bioconductor.org/packages/ROTS/")
1589 (synopsis "Reproducibility-Optimized Test Statistic")
1590 (description
1591 "This package provides tools for calculating the
1592 @dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
1593 in omics data.")
1594 (license license:gpl2+)))
1595
1596 (define-public r-plgem
1597 (package
1598 (name "r-plgem")
1599 (version "1.54.1")
1600 (source
1601 (origin
1602 (method url-fetch)
1603 (uri (bioconductor-uri "plgem" version))
1604 (sha256
1605 (base32
1606 "1330635db3p8xm5y8fwrk1l37r6bgypsq70s3rx954i775zp6szg"))))
1607 (build-system r-build-system)
1608 (propagated-inputs
1609 `(("r-biobase" ,r-biobase)
1610 ("r-mass" ,r-mass)))
1611 (home-page "http://www.genopolis.it")
1612 (synopsis "Detect differential expression in microarray and proteomics datasets")
1613 (description
1614 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
1615 model the variance-versus-mean dependence that exists in a variety of
1616 genome-wide datasets, including microarray and proteomics data. The use of
1617 PLGEM has been shown to improve the detection of differentially expressed
1618 genes or proteins in these datasets.")
1619 (license license:gpl2)))
1620
1621 (define-public r-inspect
1622 (package
1623 (name "r-inspect")
1624 (version "1.12.1")
1625 (source
1626 (origin
1627 (method url-fetch)
1628 (uri (bioconductor-uri "INSPEcT" version))
1629 (sha256
1630 (base32
1631 "07q5msw9rnamx957mbiawnv3p9kr5ahwawzvv9xzla7d3lkk62xp"))))
1632 (properties `((upstream-name . "INSPEcT")))
1633 (build-system r-build-system)
1634 (propagated-inputs
1635 `(("r-biobase" ,r-biobase)
1636 ("r-biocgenerics" ,r-biocgenerics)
1637 ("r-biocparallel" ,r-biocparallel)
1638 ("r-deseq2" ,r-deseq2)
1639 ("r-desolve" ,r-desolve)
1640 ("r-genomicalignments" ,r-genomicalignments)
1641 ("r-genomicfeatures" ,r-genomicfeatures)
1642 ("r-genomicranges" ,r-genomicranges)
1643 ("r-iranges" ,r-iranges)
1644 ("r-plgem" ,r-plgem)
1645 ("r-preprocesscore" ,r-preprocesscore)
1646 ("r-proc" ,r-proc)
1647 ("r-rootsolve" ,r-rootsolve)
1648 ("r-rsamtools" ,r-rsamtools)
1649 ("r-s4vectors" ,r-s4vectors)
1650 ("r-shiny" ,r-shiny)
1651 ("r-summarizedexperiment" ,r-summarizedexperiment)
1652 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
1653 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
1654 (home-page "https://bioconductor.org/packages/INSPEcT")
1655 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
1656 (description
1657 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
1658 Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
1659 order to evaluate synthesis, processing and degradation rates and assess via
1660 modeling the rates that determines changes in mature mRNA levels.")
1661 (license license:gpl2)))
1662
1663 (define-public r-dnabarcodes
1664 (package
1665 (name "r-dnabarcodes")
1666 (version "1.12.0")
1667 (source
1668 (origin
1669 (method url-fetch)
1670 (uri (bioconductor-uri "DNABarcodes" version))
1671 (sha256
1672 (base32
1673 "0g6j7ish0fk9jcib94wssjgp1m8ldcp42hyyg1ypr945fa3xghx0"))))
1674 (properties `((upstream-name . "DNABarcodes")))
1675 (build-system r-build-system)
1676 (propagated-inputs
1677 `(("r-bh" ,r-bh)
1678 ("r-matrix" ,r-matrix)
1679 ("r-rcpp" ,r-rcpp)))
1680 (home-page "https://bioconductor.org/packages/DNABarcodes")
1681 (synopsis "Create and analyze DNA barcodes")
1682 (description
1683 "This package offers tools to create DNA barcode sets capable of
1684 correcting insertion, deletion, and substitution errors. Existing barcodes
1685 can be analyzed regarding their minimal, maximal and average distances between
1686 barcodes. Finally, reads that start with a (possibly mutated) barcode can be
1687 demultiplexed, i.e. assigned to their original reference barcode.")
1688 (license license:gpl2)))
1689
1690 (define-public r-ruvseq
1691 (package
1692 (name "r-ruvseq")
1693 (version "1.16.1")
1694 (source
1695 (origin
1696 (method url-fetch)
1697 (uri (bioconductor-uri "RUVSeq" version))
1698 (sha256
1699 (base32
1700 "0qk7q3ab7k133divfkp54zsmvsmb9p8r09pkh2caswrzrn8achzv"))))
1701 (properties `((upstream-name . "RUVSeq")))
1702 (build-system r-build-system)
1703 (propagated-inputs
1704 `(("r-biobase" ,r-biobase)
1705 ("r-edaseq" ,r-edaseq)
1706 ("r-edger" ,r-edger)
1707 ("r-mass" ,r-mass)))
1708 (home-page "https://github.com/drisso/RUVSeq")
1709 (synopsis "Remove unwanted variation from RNA-Seq data")
1710 (description
1711 "This package implements methods to @dfn{remove unwanted variation} (RUV)
1712 of Risso et al. (2014) for the normalization of RNA-Seq read counts between
1713 samples.")
1714 (license license:artistic2.0)))
1715
1716 (define-public r-biocneighbors
1717 (package
1718 (name "r-biocneighbors")
1719 (version "1.0.0")
1720 (source
1721 (origin
1722 (method url-fetch)
1723 (uri (bioconductor-uri "BiocNeighbors" version))
1724 (sha256
1725 (base32
1726 "1fsb96acidlxwf0h65xv7fnwdi58ckmq00gmwykrlawh88wgn1ll"))))
1727 (properties `((upstream-name . "BiocNeighbors")))
1728 (build-system r-build-system)
1729 (propagated-inputs
1730 `(("r-biocparallel" ,r-biocparallel)
1731 ("r-rcpp" ,r-rcpp)
1732 ("r-rcppannoy" ,r-rcppannoy)
1733 ("r-s4vectors" ,r-s4vectors)))
1734 (home-page "https://bioconductor.org/packages/BiocNeighbors")
1735 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
1736 (description
1737 "This package implements exact and approximate methods for nearest
1738 neighbor detection, in a framework that allows them to be easily switched
1739 within Bioconductor packages or workflows. The exact algorithm is implemented
1740 using pre-clustering with the k-means algorithm. Functions are also provided
1741 to search for all neighbors within a given distance. Parallelization is
1742 achieved for all methods using the BiocParallel framework.")
1743 (license license:gpl3)))
1744
1745 (define-public r-destiny
1746 (package
1747 (name "r-destiny")
1748 (version "2.12.0")
1749 (source
1750 (origin
1751 (method url-fetch)
1752 (uri (bioconductor-uri "destiny" version))
1753 (sha256
1754 (base32
1755 "1iay17mrhsfmpwl920rh1nip5b6ybva4h6bna0yld04paq5yva67"))))
1756 (build-system r-build-system)
1757 (propagated-inputs
1758 `(("r-biobase" ,r-biobase)
1759 ("r-biocgenerics" ,r-biocgenerics)
1760 ("r-fnn" ,r-fnn)
1761 ("r-ggthemes" ,r-ggthemes)
1762 ("r-hmisc" ,r-hmisc)
1763 ("r-igraph" ,r-igraph)
1764 ("r-matrix" ,r-matrix)
1765 ("r-proxy" ,r-proxy)
1766 ("r-rcpp" ,r-rcpp)
1767 ("r-rcppeigen" ,r-rcppeigen)
1768 ("r-scales" ,r-scales)
1769 ("r-scatterplot3d" ,r-scatterplot3d)
1770 ("r-smoother" ,r-smoother)
1771 ("r-summarizedexperiment" ,r-summarizedexperiment)
1772 ("r-vim" ,r-vim)))
1773 (home-page "https://bioconductor.org/packages/destiny/")
1774 (synopsis "Create and plot diffusion maps")
1775 (description "This package provides tools to create and plot diffusion
1776 maps.")
1777 ;; Any version of the GPL
1778 (license license:gpl3+)))
1779
1780 (define-public r-savr
1781 (package
1782 (name "r-savr")
1783 (version "1.20.0")
1784 (source
1785 (origin
1786 (method url-fetch)
1787 (uri (bioconductor-uri "savR" version))
1788 (sha256
1789 (base32
1790 "13bwq2a2pygdkmhrcmvz525wsi5i01j911711zgs6x93wj20b2w7"))))
1791 (properties `((upstream-name . "savR")))
1792 (build-system r-build-system)
1793 (propagated-inputs
1794 `(("r-ggplot2" ,r-ggplot2)
1795 ("r-gridextra" ,r-gridextra)
1796 ("r-reshape2" ,r-reshape2)
1797 ("r-scales" ,r-scales)
1798 ("r-xml" ,r-xml)))
1799 (home-page "https://github.com/bcalder/savR")
1800 (synopsis "Parse and analyze Illumina SAV files")
1801 (description
1802 "This package provides tools to parse Illumina Sequence Analysis
1803 Viewer (SAV) files, access data, and generate QC plots.")
1804 (license license:agpl3+)))
1805
1806 (define-public r-chipexoqual
1807 (package
1808 (name "r-chipexoqual")
1809 (version "1.6.0")
1810 (source
1811 (origin
1812 (method url-fetch)
1813 (uri (bioconductor-uri "ChIPexoQual" version))
1814 (sha256
1815 (base32
1816 "1773bpiybn4g9jlv46z29x19q4dpcvn7lairr3lq5pdqbqmz5hnp"))))
1817 (properties `((upstream-name . "ChIPexoQual")))
1818 (build-system r-build-system)
1819 (propagated-inputs
1820 `(("r-biocparallel" ,r-biocparallel)
1821 ("r-biovizbase" ,r-biovizbase)
1822 ("r-broom" ,r-broom)
1823 ("r-data-table" ,r-data-table)
1824 ("r-dplyr" ,r-dplyr)
1825 ("r-genomeinfodb" ,r-genomeinfodb)
1826 ("r-genomicalignments" ,r-genomicalignments)
1827 ("r-genomicranges" ,r-genomicranges)
1828 ("r-ggplot2" ,r-ggplot2)
1829 ("r-hexbin" ,r-hexbin)
1830 ("r-iranges" ,r-iranges)
1831 ("r-rcolorbrewer" ,r-rcolorbrewer)
1832 ("r-rmarkdown" ,r-rmarkdown)
1833 ("r-rsamtools" ,r-rsamtools)
1834 ("r-s4vectors" ,r-s4vectors)
1835 ("r-scales" ,r-scales)
1836 ("r-viridis" ,r-viridis)))
1837 (home-page "https://github.com/keleslab/ChIPexoQual")
1838 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
1839 (description
1840 "This package provides a quality control pipeline for ChIP-exo/nexus
1841 sequencing data.")
1842 (license license:gpl2+)))
1843
1844 (define-public r-copynumber
1845 (package
1846 (name "r-copynumber")
1847 (version "1.22.0")
1848 (source (origin
1849 (method url-fetch)
1850 (uri (bioconductor-uri "copynumber" version))
1851 (sha256
1852 (base32
1853 "0ipwj9i5p1bwhg5d80jdjagm02krpj2v0j47qdgw41h8wncdyal3"))))
1854 (build-system r-build-system)
1855 (propagated-inputs
1856 `(("r-s4vectors" ,r-s4vectors)
1857 ("r-iranges" ,r-iranges)
1858 ("r-genomicranges" ,r-genomicranges)
1859 ("r-biocgenerics" ,r-biocgenerics)))
1860 (home-page "https://bioconductor.org/packages/copynumber")
1861 (synopsis "Segmentation of single- and multi-track copy number data")
1862 (description
1863 "This package segments single- and multi-track copy number data by a
1864 penalized least squares regression method.")
1865 (license license:artistic2.0)))
1866
1867 (define-public r-dnacopy
1868 (package
1869 (name "r-dnacopy")
1870 (version "1.56.0")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (bioconductor-uri "DNAcopy" version))
1875 (sha256
1876 (base32
1877 "04cqdqxhva66xwh1s2vffi56b9fcrqd4slcrvqasj5lp2rkjli82"))))
1878 (properties `((upstream-name . "DNAcopy")))
1879 (build-system r-build-system)
1880 (native-inputs `(("gfortran" ,gfortran)))
1881 (home-page "https://bioconductor.org/packages/DNAcopy")
1882 (synopsis "DNA copy number data analysis")
1883 (description
1884 "This package implements the @dfn{circular binary segmentation} (CBS)
1885 algorithm to segment DNA copy number data and identify genomic regions with
1886 abnormal copy number.")
1887 (license license:gpl2+)))
1888
1889 ;; This is a CRAN package, but it uncharacteristically depends on a
1890 ;; Bioconductor package.
1891 (define-public r-htscluster
1892 (package
1893 (name "r-htscluster")
1894 (version "2.0.8")
1895 (source
1896 (origin
1897 (method url-fetch)
1898 (uri (cran-uri "HTSCluster" version))
1899 (sha256
1900 (base32
1901 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
1902 (properties `((upstream-name . "HTSCluster")))
1903 (build-system r-build-system)
1904 (propagated-inputs
1905 `(("r-capushe" ,r-capushe)
1906 ("r-edger" ,r-edger)
1907 ("r-plotrix" ,r-plotrix)))
1908 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
1909 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
1910 (description
1911 "This package provides a Poisson mixture model is implemented to cluster
1912 genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
1913 estimation is performed using either the EM or CEM algorithm, and the slope
1914 heuristics are used for model selection (i.e., to choose the number of
1915 clusters).")
1916 (license license:gpl3+)))
1917
1918 (define-public r-deds
1919 (package
1920 (name "r-deds")
1921 (version "1.56.0")
1922 (source
1923 (origin
1924 (method url-fetch)
1925 (uri (bioconductor-uri "DEDS" version))
1926 (sha256
1927 (base32
1928 "1zfgaar3bpss49zhs81mwlfzkx5lv92j8a64xd12ig88is24cw2c"))))
1929 (properties `((upstream-name . "DEDS")))
1930 (build-system r-build-system)
1931 (home-page "https://bioconductor.org/packages/DEDS/")
1932 (synopsis "Differential expression via distance summary for microarray data")
1933 (description
1934 "This library contains functions that calculate various statistics of
1935 differential expression for microarray data, including t statistics, fold
1936 change, F statistics, SAM, moderated t and F statistics and B statistics. It
1937 also implements a new methodology called DEDS (Differential Expression via
1938 Distance Summary), which selects differentially expressed genes by integrating
1939 and summarizing a set of statistics using a weighted distance approach.")
1940 ;; Any version of the LGPL.
1941 (license license:lgpl3+)))
1942
1943 ;; This is a CRAN package, but since it depends on a Bioconductor package we
1944 ;; put it here.
1945 (define-public r-nbpseq
1946 (package
1947 (name "r-nbpseq")
1948 (version "0.3.0")
1949 (source
1950 (origin
1951 (method url-fetch)
1952 (uri (cran-uri "NBPSeq" version))
1953 (sha256
1954 (base32
1955 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
1956 (properties `((upstream-name . "NBPSeq")))
1957 (build-system r-build-system)
1958 (propagated-inputs
1959 `(("r-qvalue" ,r-qvalue)))
1960 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
1961 (synopsis "Negative binomial models for RNA-Seq data")
1962 (description
1963 "This package provides negative binomial models for two-group comparisons
1964 and regression inferences from RNA-sequencing data.")
1965 (license license:gpl2)))
1966
1967 (define-public r-ebseq
1968 (package
1969 (name "r-ebseq")
1970 (version "1.22.1")
1971 (source
1972 (origin
1973 (method url-fetch)
1974 (uri (bioconductor-uri "EBSeq" version))
1975 (sha256
1976 (base32
1977 "1gzbk1hbwdan0j131ah88yryfvsiq0wqjnb09qbr4qaczpgvbad0"))))
1978 (properties `((upstream-name . "EBSeq")))
1979 (build-system r-build-system)
1980 (propagated-inputs
1981 `(("r-blockmodeling" ,r-blockmodeling)
1982 ("r-gplots" ,r-gplots)
1983 ("r-testthat" ,r-testthat)))
1984 (home-page "https://bioconductor.org/packages/EBSeq")
1985 (synopsis "Differential expression analysis of RNA-seq data")
1986 (description
1987 "This package provides tools for differential expression analysis at both
1988 gene and isoform level using RNA-seq data")
1989 (license license:artistic2.0)))
1990
1991 (define-public r-lpsymphony
1992 (package
1993 (name "r-lpsymphony")
1994 (version "1.10.0")
1995 (source
1996 (origin
1997 (method url-fetch)
1998 (uri (bioconductor-uri "lpsymphony" version))
1999 (sha256
2000 (base32
2001 "0vnsf5x6gvd1k8h89al7r6xbgbxsjbxphr675czzwggz79zbvq7y"))))
2002 (build-system r-build-system)
2003 (inputs
2004 `(("gfortran" ,gfortran)
2005 ("zlib" ,zlib)))
2006 (native-inputs
2007 `(("pkg-config" ,pkg-config)))
2008 (home-page "http://r-forge.r-project.org/projects/rsymphony")
2009 (synopsis "Symphony integer linear programming solver in R")
2010 (description
2011 "This package was derived from Rsymphony. The package provides an R
2012 interface to SYMPHONY, a linear programming solver written in C++. The main
2013 difference between this package and Rsymphony is that it includes the solver
2014 source code, while Rsymphony expects to find header and library files on the
2015 users' system. Thus the intention of @code{lpsymphony} is to provide an easy
2016 to install interface to SYMPHONY.")
2017 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
2018 ;; lpsimphony is released under the same terms.
2019 (license license:epl1.0)))
2020
2021 (define-public r-ihw
2022 (package
2023 (name "r-ihw")
2024 (version "1.10.1")
2025 (source
2026 (origin
2027 (method url-fetch)
2028 (uri (bioconductor-uri "IHW" version))
2029 (sha256
2030 (base32
2031 "10wqasl8k2j3y5qvak3xr2xj6symk656xww1y5n2l22nz832j19n"))))
2032 (properties `((upstream-name . "IHW")))
2033 (build-system r-build-system)
2034 (propagated-inputs
2035 `(("r-biocgenerics" ,r-biocgenerics)
2036 ("r-fdrtool" ,r-fdrtool)
2037 ("r-lpsymphony" ,r-lpsymphony)
2038 ("r-slam" ,r-slam)))
2039 (home-page "https://bioconductor.org/packages/IHW")
2040 (synopsis "Independent hypothesis weighting")
2041 (description
2042 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
2043 procedure that increases power compared to the method of Benjamini and
2044 Hochberg by assigning data-driven weights to each hypothesis. The input to
2045 IHW is a two-column table of p-values and covariates. The covariate can be
2046 any continuous-valued or categorical variable that is thought to be
2047 informative on the statistical properties of each hypothesis test, while it is
2048 independent of the p-value under the null hypothesis.")
2049 (license license:artistic2.0)))
2050
2051 (define-public r-icobra
2052 (package
2053 (name "r-icobra")
2054 (version "1.10.0")
2055 (source
2056 (origin
2057 (method url-fetch)
2058 (uri (bioconductor-uri "iCOBRA" version))
2059 (sha256
2060 (base32
2061 "0i1swrm31g0zffi5pm48bfvdfqpd32d0zdchkbyipz96al46jnld"))))
2062 (properties `((upstream-name . "iCOBRA")))
2063 (build-system r-build-system)
2064 (propagated-inputs
2065 `(("r-dplyr" ,r-dplyr)
2066 ("r-dt" ,r-dt)
2067 ("r-ggplot2" ,r-ggplot2)
2068 ("r-limma" ,r-limma)
2069 ("r-reshape2" ,r-reshape2)
2070 ("r-rocr" ,r-rocr)
2071 ("r-scales" ,r-scales)
2072 ("r-shiny" ,r-shiny)
2073 ("r-shinybs" ,r-shinybs)
2074 ("r-shinydashboard" ,r-shinydashboard)
2075 ("r-upsetr" ,r-upsetr)))
2076 (home-page "https://bioconductor.org/packages/iCOBRA")
2077 (synopsis "Comparison and visualization of ranking and assignment methods")
2078 (description
2079 "This package provides functions for calculation and visualization of
2080 performance metrics for evaluation of ranking and binary
2081 classification (assignment) methods. It also contains a Shiny application for
2082 interactive exploration of results.")
2083 (license license:gpl2+)))
2084
2085 (define-public r-mast
2086 (package
2087 (name "r-mast")
2088 (version "1.8.2")
2089 (source
2090 (origin
2091 (method url-fetch)
2092 (uri (bioconductor-uri "MAST" version))
2093 (sha256
2094 (base32
2095 "0rhx655dza0m6yg9jcfz2nmxqahvxx2l91kqgyp7qai0bzz9d9ix"))))
2096 (properties `((upstream-name . "MAST")))
2097 (build-system r-build-system)
2098 (propagated-inputs
2099 `(("r-abind" ,r-abind)
2100 ("r-biobase" ,r-biobase)
2101 ("r-biocgenerics" ,r-biocgenerics)
2102 ("r-data-table" ,r-data-table)
2103 ("r-ggplot2" ,r-ggplot2)
2104 ("r-plyr" ,r-plyr)
2105 ("r-progress" ,r-progress)
2106 ("r-reshape2" ,r-reshape2)
2107 ("r-s4vectors" ,r-s4vectors)
2108 ("r-singlecellexperiment" ,r-singlecellexperiment)
2109 ("r-stringr" ,r-stringr)
2110 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2111 (home-page "https://github.com/RGLab/MAST/")
2112 (synopsis "Model-based analysis of single cell transcriptomics")
2113 (description
2114 "This package provides methods and models for handling zero-inflated
2115 single cell assay data.")
2116 (license license:gpl2+)))
2117
2118 (define-public r-monocle
2119 (package
2120 (name "r-monocle")
2121 (version "2.10.1")
2122 (source
2123 (origin
2124 (method url-fetch)
2125 (uri (bioconductor-uri "monocle" version))
2126 (sha256
2127 (base32
2128 "0shwkgqs93j2l5h36yyvb1lf724107cfjrmzp5fxfj1lqc0y61lf"))))
2129 (build-system r-build-system)
2130 (propagated-inputs
2131 `(("r-biobase" ,r-biobase)
2132 ("r-biocgenerics" ,r-biocgenerics)
2133 ("r-biocviews" ,r-biocviews)
2134 ("r-cluster" ,r-cluster)
2135 ("r-combinat" ,r-combinat)
2136 ("r-ddrtree" ,r-ddrtree)
2137 ("r-densityclust" ,r-densityclust)
2138 ("r-dplyr" ,r-dplyr)
2139 ("r-fastica" ,r-fastica)
2140 ("r-ggplot2" ,r-ggplot2)
2141 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
2142 ("r-igraph" ,r-igraph)
2143 ("r-irlba" ,r-irlba)
2144 ("r-limma" ,r-limma)
2145 ("r-mass" ,r-mass)
2146 ("r-matrix" ,r-matrix)
2147 ("r-matrixstats" ,r-matrixstats)
2148 ("r-pheatmap" ,r-pheatmap)
2149 ("r-plyr" ,r-plyr)
2150 ("r-proxy" ,r-proxy)
2151 ("r-qlcmatrix" ,r-qlcmatrix)
2152 ("r-rann" ,r-rann)
2153 ("r-rcpp" ,r-rcpp)
2154 ("r-reshape2" ,r-reshape2)
2155 ("r-rtsne" ,r-rtsne)
2156 ("r-slam" ,r-slam)
2157 ("r-stringr" ,r-stringr)
2158 ("r-tibble" ,r-tibble)
2159 ("r-vgam" ,r-vgam)
2160 ("r-viridis" ,r-viridis)))
2161 (home-page "https://bioconductor.org/packages/monocle")
2162 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
2163 (description
2164 "Monocle performs differential expression and time-series analysis for
2165 single-cell expression experiments. It orders individual cells according to
2166 progress through a biological process, without knowing ahead of time which
2167 genes define progress through that process. Monocle also performs
2168 differential expression analysis, clustering, visualization, and other useful
2169 tasks on single cell expression data. It is designed to work with RNA-Seq and
2170 qPCR data, but could be used with other types as well.")
2171 (license license:artistic2.0)))
2172
2173 (define-public r-noiseq
2174 (package
2175 (name "r-noiseq")
2176 (version "2.26.1")
2177 (source
2178 (origin
2179 (method url-fetch)
2180 (uri (bioconductor-uri "NOISeq" version))
2181 (sha256
2182 (base32
2183 "1wyhhi9ydlbjlz427093mdp5ppby77n37w5c2iyxlpsdk2m2nqsn"))))
2184 (properties `((upstream-name . "NOISeq")))
2185 (build-system r-build-system)
2186 (propagated-inputs
2187 `(("r-biobase" ,r-biobase)
2188 ("r-matrix" ,r-matrix)))
2189 (home-page "https://bioconductor.org/packages/NOISeq")
2190 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
2191 (description
2192 "This package provides tools to support the analysis of RNA-seq
2193 expression data or other similar kind of data. It provides exploratory plots
2194 to evaluate saturation, count distribution, expression per chromosome, type of
2195 detected features, features length, etc. It also supports the analysis of
2196 differential expression between two experimental conditions with no parametric
2197 assumptions.")
2198 (license license:artistic2.0)))
2199
2200 (define-public r-scdd
2201 (package
2202 (name "r-scdd")
2203 (version "1.6.1")
2204 (source
2205 (origin
2206 (method url-fetch)
2207 (uri (bioconductor-uri "scDD" version))
2208 (sha256
2209 (base32
2210 "0dp2awajd5281dwpbs0wb8ij2pq9l60p0b80xhxrb41m5qybcri8"))))
2211 (properties `((upstream-name . "scDD")))
2212 (build-system r-build-system)
2213 (propagated-inputs
2214 `(("r-arm" ,r-arm)
2215 ("r-biocparallel" ,r-biocparallel)
2216 ("r-ebseq" ,r-ebseq)
2217 ("r-fields" ,r-fields)
2218 ("r-ggplot2" ,r-ggplot2)
2219 ("r-mclust" ,r-mclust)
2220 ("r-outliers" ,r-outliers)
2221 ("r-s4vectors" ,r-s4vectors)
2222 ("r-scran" ,r-scran)
2223 ("r-singlecellexperiment" ,r-singlecellexperiment)
2224 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2225 (home-page "https://github.com/kdkorthauer/scDD")
2226 (synopsis "Mixture modeling of single-cell RNA-seq data")
2227 (description
2228 "This package implements a method to analyze single-cell RNA-seq data
2229 utilizing flexible Dirichlet Process mixture models. Genes with differential
2230 distributions of expression are classified into several interesting patterns
2231 of differences between two conditions. The package also includes functions
2232 for simulating data with these patterns from negative binomial
2233 distributions.")
2234 (license license:gpl2)))
2235
2236 (define-public r-scone
2237 (package
2238 (name "r-scone")
2239 (version "1.6.1")
2240 (source
2241 (origin
2242 (method url-fetch)
2243 (uri (bioconductor-uri "scone" version))
2244 (sha256
2245 (base32
2246 "0l1x4cjnfjbpx6k55sjqx03555daa6v63rq0rg6b7jpz8xxzwa7p"))))
2247 (build-system r-build-system)
2248 (propagated-inputs
2249 `(("r-aroma-light" ,r-aroma-light)
2250 ("r-biocparallel" ,r-biocparallel)
2251 ("r-boot" ,r-boot)
2252 ("r-class" ,r-class)
2253 ("r-cluster" ,r-cluster)
2254 ("r-compositions" ,r-compositions)
2255 ("r-diptest" ,r-diptest)
2256 ("r-edger" ,r-edger)
2257 ("r-fpc" ,r-fpc)
2258 ("r-gplots" ,r-gplots)
2259 ("r-hexbin" ,r-hexbin)
2260 ("r-limma" ,r-limma)
2261 ("r-matrixstats" ,r-matrixstats)
2262 ("r-mixtools" ,r-mixtools)
2263 ("r-rarpack" ,r-rarpack)
2264 ("r-rcolorbrewer" ,r-rcolorbrewer)
2265 ("r-rhdf5" ,r-rhdf5)
2266 ("r-ruvseq" ,r-ruvseq)
2267 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2268 (home-page "https://bioconductor.org/packages/scone")
2269 (synopsis "Single cell overview of normalized expression data")
2270 (description
2271 "SCONE is an R package for comparing and ranking the performance of
2272 different normalization schemes for single-cell RNA-seq and other
2273 high-throughput analyses.")
2274 (license license:artistic2.0)))
2275
2276 (define-public r-geoquery
2277 (package
2278 (name "r-geoquery")
2279 (version "2.50.5")
2280 (source
2281 (origin
2282 (method url-fetch)
2283 (uri (bioconductor-uri "GEOquery" version))
2284 (sha256
2285 (base32
2286 "074dl00c8yi1ihpjkw7vl9vy2hggvipib0jn0hli0wrw7x1h9hg6"))))
2287 (properties `((upstream-name . "GEOquery")))
2288 (build-system r-build-system)
2289 (propagated-inputs
2290 `(("r-biobase" ,r-biobase)
2291 ("r-dplyr" ,r-dplyr)
2292 ("r-httr" ,r-httr)
2293 ("r-limma" ,r-limma)
2294 ("r-magrittr" ,r-magrittr)
2295 ("r-readr" ,r-readr)
2296 ("r-tidyr" ,r-tidyr)
2297 ("r-xml2" ,r-xml2)))
2298 (home-page "https://github.com/seandavi/GEOquery/")
2299 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
2300 (description
2301 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
2302 microarray data. Given the rich and varied nature of this resource, it is
2303 only natural to want to apply BioConductor tools to these data. GEOquery is
2304 the bridge between GEO and BioConductor.")
2305 (license license:gpl2)))
2306
2307 (define-public r-illuminaio
2308 (package
2309 (name "r-illuminaio")
2310 (version "0.24.0")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (bioconductor-uri "illuminaio" version))
2315 (sha256
2316 (base32
2317 "1rdp9b4xlv91yzba7pd7k50s3nkljfxmdmyz5jl0j8ybhmpl6rns"))))
2318 (build-system r-build-system)
2319 (propagated-inputs
2320 `(("r-base64" ,r-base64)))
2321 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
2322 (synopsis "Parse Illumina microarray output files")
2323 (description
2324 "This package provides tools for parsing Illumina's microarray output
2325 files, including IDAT.")
2326 (license license:gpl2)))
2327
2328 (define-public r-siggenes
2329 (package
2330 (name "r-siggenes")
2331 (version "1.56.0")
2332 (source
2333 (origin
2334 (method url-fetch)
2335 (uri (bioconductor-uri "siggenes" version))
2336 (sha256
2337 (base32
2338 "0cjlb5r04x15xkhk00i3wvpx21kj0k29pn0mj3whwqk31zznnk1b"))))
2339 (build-system r-build-system)
2340 (propagated-inputs
2341 `(("r-biobase" ,r-biobase)
2342 ("r-multtest" ,r-multtest)))
2343 (home-page "https://bioconductor.org/packages/siggenes/")
2344 (synopsis
2345 "Multiple testing using SAM and Efron's empirical Bayes approaches")
2346 (description
2347 "This package provides tools for the identification of differentially
2348 expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
2349 both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
2350 Bayes Analyses of Microarrays} (EBAM).")
2351 (license license:lgpl2.0+)))
2352
2353 (define-public r-bumphunter
2354 (package
2355 (name "r-bumphunter")
2356 (version "1.24.5")
2357 (source
2358 (origin
2359 (method url-fetch)
2360 (uri (bioconductor-uri "bumphunter" version))
2361 (sha256
2362 (base32
2363 "1f9vk3srffbx8jpza40nd18a4y0p0z8q40mx55dlcnddkwrqi19b"))))
2364 (build-system r-build-system)
2365 (propagated-inputs
2366 `(("r-annotationdbi" ,r-annotationdbi)
2367 ("r-biocgenerics" ,r-biocgenerics)
2368 ("r-dorng" ,r-dorng)
2369 ("r-foreach" ,r-foreach)
2370 ("r-genomeinfodb" ,r-genomeinfodb)
2371 ("r-genomicfeatures" ,r-genomicfeatures)
2372 ("r-genomicranges" ,r-genomicranges)
2373 ("r-iranges" ,r-iranges)
2374 ("r-iterators" ,r-iterators)
2375 ("r-limma" ,r-limma)
2376 ("r-locfit" ,r-locfit)
2377 ("r-matrixstats" ,r-matrixstats)
2378 ("r-s4vectors" ,r-s4vectors)))
2379 (home-page "https://github.com/ririzarr/bumphunter")
2380 (synopsis "Find bumps in genomic data")
2381 (description
2382 "This package provides tools for finding bumps in genomic data in order
2383 to identify differentially methylated regions in epigenetic epidemiology
2384 studies.")
2385 (license license:artistic2.0)))
2386
2387 (define-public r-minfi
2388 (package
2389 (name "r-minfi")
2390 (version "1.28.4")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (bioconductor-uri "minfi" version))
2395 (sha256
2396 (base32
2397 "1sjwwqb0syngvj75saaky9y06hbxsawhhcmfvavzkhicxipafv7r"))))
2398 (build-system r-build-system)
2399 (propagated-inputs
2400 `(("r-beanplot" ,r-beanplot)
2401 ("r-biobase" ,r-biobase)
2402 ("r-biocgenerics" ,r-biocgenerics)
2403 ("r-biocparallel" ,r-biocparallel)
2404 ("r-biostrings" ,r-biostrings)
2405 ("r-bumphunter" ,r-bumphunter)
2406 ("r-data-table" ,r-data-table)
2407 ("r-delayedarray" ,r-delayedarray)
2408 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
2409 ("r-genefilter" ,r-genefilter)
2410 ("r-genomeinfodb" ,r-genomeinfodb)
2411 ("r-genomicranges" ,r-genomicranges)
2412 ("r-geoquery" ,r-geoquery)
2413 ("r-hdf5array" ,r-hdf5array)
2414 ("r-illuminaio" ,r-illuminaio)
2415 ("r-iranges" ,r-iranges)
2416 ("r-lattice" ,r-lattice)
2417 ("r-limma" ,r-limma)
2418 ("r-mass" ,r-mass)
2419 ("r-mclust" ,r-mclust)
2420 ("r-nlme" ,r-nlme)
2421 ("r-nor1mix" ,r-nor1mix)
2422 ("r-preprocesscore" ,r-preprocesscore)
2423 ("r-quadprog" ,r-quadprog)
2424 ("r-rcolorbrewer" ,r-rcolorbrewer)
2425 ("r-reshape" ,r-reshape)
2426 ("r-s4vectors" ,r-s4vectors)
2427 ("r-siggenes" ,r-siggenes)
2428 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2429 (home-page "https://github.com/hansenlab/minfi")
2430 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
2431 (description
2432 "This package provides tools to analyze and visualize Illumina Infinium
2433 methylation arrays.")
2434 (license license:artistic2.0)))
2435
2436 (define-public r-methylumi
2437 (package
2438 (name "r-methylumi")
2439 (version "2.28.0")
2440 (source
2441 (origin
2442 (method url-fetch)
2443 (uri (bioconductor-uri "methylumi" version))
2444 (sha256
2445 (base32
2446 "14p2qi18cprfvb2gxng1vm48c7zwh23h88q9qjgipj9xl5axsgw2"))))
2447 (build-system r-build-system)
2448 (propagated-inputs
2449 `(("r-annotate" ,r-annotate)
2450 ("r-annotationdbi" ,r-annotationdbi)
2451 ("r-biobase" ,r-biobase)
2452 ("r-biocgenerics" ,r-biocgenerics)
2453 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
2454 ("r-genefilter" ,r-genefilter)
2455 ("r-genomeinfodb" ,r-genomeinfodb)
2456 ("r-genomicranges" ,r-genomicranges)
2457 ("r-ggplot2" ,r-ggplot2)
2458 ("r-illuminaio" ,r-illuminaio)
2459 ("r-iranges" ,r-iranges)
2460 ("r-lattice" ,r-lattice)
2461 ("r-matrixstats" ,r-matrixstats)
2462 ("r-minfi" ,r-minfi)
2463 ("r-reshape2" ,r-reshape2)
2464 ("r-s4vectors" ,r-s4vectors)
2465 ("r-scales" ,r-scales)
2466 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2467 (home-page "https://bioconductor.org/packages/methylumi")
2468 (synopsis "Handle Illumina methylation data")
2469 (description
2470 "This package provides classes for holding and manipulating Illumina
2471 methylation data. Based on eSet, it can contain MIAME information, sample
2472 information, feature information, and multiple matrices of data. An
2473 \"intelligent\" import function, methylumiR can read the Illumina text files
2474 and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
2475 HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
2476 background correction, and quality control features for GoldenGate, Infinium,
2477 and Infinium HD arrays are also included.")
2478 (license license:gpl2)))
2479
2480 (define-public r-lumi
2481 (package
2482 (name "r-lumi")
2483 (version "2.34.0")
2484 (source
2485 (origin
2486 (method url-fetch)
2487 (uri (bioconductor-uri "lumi" version))
2488 (sha256
2489 (base32
2490 "1fpmjpgcy5n0hx9whn9m3jhjmciqq0l59nvy5addbq0a4wnjhx8q"))))
2491 (build-system r-build-system)
2492 (propagated-inputs
2493 `(("r-affy" ,r-affy)
2494 ("r-annotate" ,r-annotate)
2495 ("r-annotationdbi" ,r-annotationdbi)
2496 ("r-biobase" ,r-biobase)
2497 ("r-dbi" ,r-dbi)
2498 ("r-genomicfeatures" ,r-genomicfeatures)
2499 ("r-genomicranges" ,r-genomicranges)
2500 ("r-kernsmooth" ,r-kernsmooth)
2501 ("r-lattice" ,r-lattice)
2502 ("r-mass" ,r-mass)
2503 ("r-methylumi" ,r-methylumi)
2504 ("r-mgcv" ,r-mgcv)
2505 ("r-nleqslv" ,r-nleqslv)
2506 ("r-preprocesscore" ,r-preprocesscore)
2507 ("r-rsqlite" ,r-rsqlite)))
2508 (home-page "https://bioconductor.org/packages/lumi")
2509 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
2510 (description
2511 "The lumi package provides an integrated solution for the Illumina
2512 microarray data analysis. It includes functions of Illumina
2513 BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
2514 variance stabilization, normalization and gene annotation at the probe level.
2515 It also includes the functions of processing Illumina methylation microarrays,
2516 especially Illumina Infinium methylation microarrays.")
2517 (license license:lgpl2.0+)))
2518
2519 (define-public r-linnorm
2520 (package
2521 (name "r-linnorm")
2522 (version "2.6.1")
2523 (source
2524 (origin
2525 (method url-fetch)
2526 (uri (bioconductor-uri "Linnorm" version))
2527 (sha256
2528 (base32
2529 "1qgk8m5kc409flqxs3vnf228v3z0112q8py9hgfgyiwvi6yzdbp6"))))
2530 (properties `((upstream-name . "Linnorm")))
2531 (build-system r-build-system)
2532 (propagated-inputs
2533 `(("r-amap" ,r-amap)
2534 ("r-apcluster" ,r-apcluster)
2535 ("r-ellipse" ,r-ellipse)
2536 ("r-fastcluster" ,r-fastcluster)
2537 ("r-fpc" ,r-fpc)
2538 ("r-ggdendro" ,r-ggdendro)
2539 ("r-ggplot2" ,r-ggplot2)
2540 ("r-gmodels" ,r-gmodels)
2541 ("r-igraph" ,r-igraph)
2542 ("r-limma" ,r-limma)
2543 ("r-mass" ,r-mass)
2544 ("r-mclust" ,r-mclust)
2545 ("r-rcpp" ,r-rcpp)
2546 ("r-rcpparmadillo" ,r-rcpparmadillo)
2547 ("r-rtsne" ,r-rtsne)
2548 ("r-statmod" ,r-statmod)
2549 ("r-vegan" ,r-vegan)
2550 ("r-zoo" ,r-zoo)))
2551 (home-page "http://www.jjwanglab.org/Linnorm/")
2552 (synopsis "Linear model and normality based transformation method")
2553 (description
2554 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
2555 count data or any large scale count data. It transforms such datasets for
2556 parametric tests. In addition to the transformtion function (@code{Linnorm}),
2557 the following pipelines are implemented:
2558
2559 @enumerate
2560 @item Library size/batch effect normalization (@code{Linnorm.Norm})
2561 @item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
2562 clustering or hierarchical clustering (@code{Linnorm.tSNE},
2563 @code{Linnorm.PCA}, @code{Linnorm.HClust})
2564 @item Differential expression analysis or differential peak detection using
2565 limma (@code{Linnorm.limma})
2566 @item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
2567 @item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
2568 @item Stable gene selection for scRNA-seq data; for users without or who do
2569 not want to rely on spike-in genes (@code{Linnorm.SGenes})
2570 @item Data imputation (@code{Linnorm.DataImput}).
2571 @end enumerate
2572
2573 Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
2574 @code{RnaXSim} function is included for simulating RNA-seq data for the
2575 evaluation of DEG analysis methods.")
2576 (license license:expat)))
2577
2578 (define-public r-ioniser
2579 (package
2580 (name "r-ioniser")
2581 (version "2.6.0")
2582 (source
2583 (origin
2584 (method url-fetch)
2585 (uri (bioconductor-uri "IONiseR" version))
2586 (sha256
2587 (base32
2588 "01lqisdlsvym8nhgpzn7lpcddk9lv9253dy9v65r2dicb5xqhj00"))))
2589 (properties `((upstream-name . "IONiseR")))
2590 (build-system r-build-system)
2591 (propagated-inputs
2592 `(("r-biocgenerics" ,r-biocgenerics)
2593 ("r-biocparallel" ,r-biocparallel)
2594 ("r-biostrings" ,r-biostrings)
2595 ("r-bit64" ,r-bit64)
2596 ("r-dplyr" ,r-dplyr)
2597 ("r-ggplot2" ,r-ggplot2)
2598 ("r-magrittr" ,r-magrittr)
2599 ("r-rhdf5" ,r-rhdf5)
2600 ("r-shortread" ,r-shortread)
2601 ("r-stringr" ,r-stringr)
2602 ("r-tibble" ,r-tibble)
2603 ("r-tidyr" ,r-tidyr)
2604 ("r-xvector" ,r-xvector)))
2605 (home-page "https://bioconductor.org/packages/IONiseR/")
2606 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
2607 (description
2608 "IONiseR provides tools for the quality assessment of Oxford Nanopore
2609 MinION data. It extracts summary statistics from a set of fast5 files and can
2610 be used either before or after base calling. In addition to standard
2611 summaries of the read-types produced, it provides a number of plots for
2612 visualising metrics relative to experiment run time or spatially over the
2613 surface of a flowcell.")
2614 (license license:expat)))
2615
2616 ;; This is a CRAN package, but it depends on packages from Bioconductor.
2617 (define-public r-gkmsvm
2618 (package
2619 (name "r-gkmsvm")
2620 (version "0.79.0")
2621 (source
2622 (origin
2623 (method url-fetch)
2624 (uri (cran-uri "gkmSVM" version))
2625 (sha256
2626 (base32
2627 "04dakbgfvfalz4rm4fvvybp506dn5fbj5g86ybfhrc6wywjllsz3"))))
2628 (properties `((upstream-name . "gkmSVM")))
2629 (build-system r-build-system)
2630 (propagated-inputs
2631 `(("r-biocgenerics" ,r-biocgenerics)
2632 ("r-biostrings" ,r-biostrings)
2633 ("r-genomeinfodb" ,r-genomeinfodb)
2634 ("r-genomicranges" ,r-genomicranges)
2635 ("r-iranges" ,r-iranges)
2636 ("r-kernlab" ,r-kernlab)
2637 ("r-rcpp" ,r-rcpp)
2638 ("r-rocr" ,r-rocr)
2639 ("r-rtracklayer" ,r-rtracklayer)
2640 ("r-s4vectors" ,r-s4vectors)
2641 ("r-seqinr" ,r-seqinr)))
2642 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
2643 (synopsis "Gapped-kmer support vector machine")
2644 (description
2645 "This R package provides tools for training gapped-kmer SVM classifiers
2646 for DNA and protein sequences. This package supports several sequence
2647 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
2648 (license license:gpl2+)))
2649
2650 (define-public r-triform
2651 (package
2652 (name "r-triform")
2653 (version "1.24.0")
2654 (source
2655 (origin
2656 (method url-fetch)
2657 (uri (bioconductor-uri "triform" version))
2658 (sha256
2659 (base32
2660 "12ca24pv1r5vbw3rq345jqg7x3prrbsxk6445zikpzfblwmw0b4s"))))
2661 (build-system r-build-system)
2662 (propagated-inputs
2663 `(("r-biocgenerics" ,r-biocgenerics)
2664 ("r-iranges" ,r-iranges)
2665 ("r-yaml" ,r-yaml)))
2666 (home-page "https://bioconductor.org/packages/triform/")
2667 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
2668 (description
2669 "The Triform algorithm uses model-free statistics to identify peak-like
2670 distributions of TF ChIP sequencing reads, taking advantage of an improved
2671 peak definition in combination with known profile characteristics.")
2672 (license license:gpl2)))
2673
2674 (define-public r-varianttools
2675 (package
2676 (name "r-varianttools")
2677 (version "1.24.0")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (bioconductor-uri "VariantTools" version))
2682 (sha256
2683 (base32
2684 "1ml3pl7xnxvzr6zkypr80xzw6nffswk29gzxycn42473sc4ixn7j"))))
2685 (properties `((upstream-name . "VariantTools")))
2686 (build-system r-build-system)
2687 (propagated-inputs
2688 `(("r-biobase" ,r-biobase)
2689 ("r-biocgenerics" ,r-biocgenerics)
2690 ("r-biocparallel" ,r-biocparallel)
2691 ("r-biostrings" ,r-biostrings)
2692 ("r-bsgenome" ,r-bsgenome)
2693 ("r-genomeinfodb" ,r-genomeinfodb)
2694 ("r-genomicfeatures" ,r-genomicfeatures)
2695 ("r-genomicranges" ,r-genomicranges)
2696 ("r-iranges" ,r-iranges)
2697 ("r-matrix" ,r-matrix)
2698 ("r-rsamtools" ,r-rsamtools)
2699 ("r-rtracklayer" ,r-rtracklayer)
2700 ("r-s4vectors" ,r-s4vectors)
2701 ("r-variantannotation" ,r-variantannotation)))
2702 (home-page "https://bioconductor.org/packages/VariantTools/")
2703 (synopsis "Tools for exploratory analysis of variant calls")
2704 (description
2705 "Explore, diagnose, and compare variant calls using filters. The
2706 VariantTools package supports a workflow for loading data, calling single
2707 sample variants and tumor-specific somatic mutations or other sample-specific
2708 variant types (e.g., RNA editing). Most of the functions operate on
2709 alignments (BAM files) or datasets of called variants. The user is expected
2710 to have already aligned the reads with a separate tool, e.g., GSNAP via
2711 gmapR.")
2712 (license license:artistic2.0)))
2713
2714 (define-public r-heatplus
2715 (package
2716 (name "r-heatplus")
2717 (version "2.28.0")
2718 (source
2719 (origin
2720 (method url-fetch)
2721 (uri (bioconductor-uri "Heatplus" version))
2722 (sha256
2723 (base32
2724 "0drspjzgb23ra2kdvpxhsd8mdifsf97fcf668llyz2hr0r39fc48"))))
2725 (properties `((upstream-name . "Heatplus")))
2726 (build-system r-build-system)
2727 (propagated-inputs
2728 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
2729 (home-page "https://github.com/alexploner/Heatplus")
2730 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
2731 (description
2732 "This package provides tools to display a rectangular heatmap (intensity
2733 plot) of a data matrix. By default, both samples (columns) and features (row)
2734 of the matrix are sorted according to a hierarchical clustering, and the
2735 corresponding dendrogram is plotted. Optionally, panels with additional
2736 information about samples and features can be added to the plot.")
2737 (license license:gpl2+)))
2738
2739 (define-public r-gosemsim
2740 (package
2741 (name "r-gosemsim")
2742 (version "2.8.0")
2743 (source
2744 (origin
2745 (method url-fetch)
2746 (uri (bioconductor-uri "GOSemSim" version))
2747 (sha256
2748 (base32
2749 "0ckihpy8jmgn2np1avprz76v9z7i5hqm2gj514c6dmmq3csbc7ib"))))
2750 (properties `((upstream-name . "GOSemSim")))
2751 (build-system r-build-system)
2752 (propagated-inputs
2753 `(("r-annotationdbi" ,r-annotationdbi)
2754 ("r-go-db" ,r-go-db)
2755 ("r-rcpp" ,r-rcpp)))
2756 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
2757 (synopsis "GO-terms semantic similarity measures")
2758 (description
2759 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
2760 quantitative ways to compute similarities between genes and gene groups, and
2761 have became important basis for many bioinformatics analysis approaches.
2762 GOSemSim is an R package for semantic similarity computation among GO terms,
2763 sets of GO terms, gene products and gene clusters.")
2764 (license license:artistic2.0)))
2765
2766 (define-public r-anota
2767 (package
2768 (name "r-anota")
2769 (version "1.30.0")
2770 (source
2771 (origin
2772 (method url-fetch)
2773 (uri (bioconductor-uri "anota" version))
2774 (sha256
2775 (base32
2776 "182fp6dpws516y0igvwn6936higfqvy25haa0xs273f8aczr9cf0"))))
2777 (build-system r-build-system)
2778 (propagated-inputs
2779 `(("r-multtest" ,r-multtest)
2780 ("r-qvalue" ,r-qvalue)))
2781 (home-page "https://bioconductor.org/packages/anota/")
2782 (synopsis "Analysis of translational activity")
2783 (description
2784 "Genome wide studies of translational control is emerging as a tool to
2785 study verious biological conditions. The output from such analysis is both
2786 the mRNA level (e.g. cytosolic mRNA level) and the levl of mRNA actively
2787 involved in translation (the actively translating mRNA level) for each mRNA.
2788 The standard analysis of such data strives towards identifying differential
2789 translational between two or more sample classes - i.e. differences in
2790 actively translated mRNA levels that are independent of underlying differences
2791 in cytosolic mRNA levels. This package allows for such analysis using partial
2792 variances and the random variance model. As 10s of thousands of mRNAs are
2793 analyzed in parallell the library performs a number of tests to assure that
2794 the data set is suitable for such analysis.")
2795 (license license:gpl3)))
2796
2797 (define-public r-sigpathway
2798 (package
2799 (name "r-sigpathway")
2800 (version "1.50.0")
2801 (source
2802 (origin
2803 (method url-fetch)
2804 (uri (bioconductor-uri "sigPathway" version))
2805 (sha256
2806 (base32
2807 "0pygrla2q2151981gshzv51jnj60h1df3vby5gsxqvxn2pdr4bv3"))))
2808 (properties `((upstream-name . "sigPathway")))
2809 (build-system r-build-system)
2810 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
2811 (synopsis "Pathway analysis")
2812 (description
2813 "This package is used to conduct pathway analysis by calculating the NT_k
2814 and NE_k statistics in a statistical framework for determining whether a
2815 specified group of genes for a pathway has a coordinated association with a
2816 phenotype of interest.")
2817 (license license:gpl2)))
2818
2819 (define-public r-fgsea
2820 (package
2821 (name "r-fgsea")
2822 (version "1.8.0")
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (bioconductor-uri "fgsea" version))
2827 (sha256
2828 (base32
2829 "0cxxvlmg340l5l5fz4abbwppiri0ibg4navvq5k3wg511mz8ma2q"))))
2830 (build-system r-build-system)
2831 (propagated-inputs
2832 `(("r-biocparallel" ,r-biocparallel)
2833 ("r-data-table" ,r-data-table)
2834 ("r-fastmatch" ,r-fastmatch)
2835 ("r-ggplot2" ,r-ggplot2)
2836 ("r-gridextra" ,r-gridextra)
2837 ("r-matrix" ,r-matrix)
2838 ("r-rcpp" ,r-rcpp)))
2839 (home-page "https://github.com/ctlab/fgsea/")
2840 (synopsis "Fast gene set enrichment analysis")
2841 (description
2842 "The package implements an algorithm for fast gene set enrichment
2843 analysis. Using the fast algorithm allows to make more permutations and get
2844 more fine grained p-values, which allows to use accurate stantard approaches
2845 to multiple hypothesis correction.")
2846 (license license:expat)))
2847
2848 (define-public r-dose
2849 (package
2850 (name "r-dose")
2851 (version "3.8.2")
2852 (source
2853 (origin
2854 (method url-fetch)
2855 (uri (bioconductor-uri "DOSE" version))
2856 (sha256
2857 (base32
2858 "1gh7dhvfc71kawxcfx8xqlir7mwvg5mmz4lqrdrvw5knvi2h3mfa"))))
2859 (properties `((upstream-name . "DOSE")))
2860 (build-system r-build-system)
2861 (propagated-inputs
2862 `(("r-annotationdbi" ,r-annotationdbi)
2863 ("r-biocparallel" ,r-biocparallel)
2864 ("r-do-db" ,r-do-db)
2865 ("r-fgsea" ,r-fgsea)
2866 ("r-ggplot2" ,r-ggplot2)
2867 ("r-gosemsim" ,r-gosemsim)
2868 ("r-qvalue" ,r-qvalue)
2869 ("r-reshape2" ,r-reshape2)
2870 ("r-s4vectors" ,r-s4vectors)))
2871 (home-page "https://guangchuangyu.github.io/software/DOSE/")
2872 (synopsis "Disease ontology semantic and enrichment analysis")
2873 (description
2874 "This package implements five methods proposed by Resnik, Schlicker,
2875 Jiang, Lin and Wang, respectively, for measuring semantic similarities among
2876 @dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
2877 including hypergeometric model and gene set enrichment analysis are also
2878 implemented for discovering disease associations of high-throughput biological
2879 data.")
2880 (license license:artistic2.0)))
2881
2882 (define-public r-enrichplot
2883 (package
2884 (name "r-enrichplot")
2885 (version "1.2.0")
2886 (source
2887 (origin
2888 (method url-fetch)
2889 (uri (bioconductor-uri "enrichplot" version))
2890 (sha256
2891 (base32
2892 "0cxqfpy6py4k3z3lnlkiwx89r4ymfpdc4hm25dfpazqgjflz5is7"))))
2893 (build-system r-build-system)
2894 (propagated-inputs
2895 `(("r-annotationdbi" ,r-annotationdbi)
2896 ("r-cowplot" ,r-cowplot)
2897 ("r-dose" ,r-dose)
2898 ("r-europepmc" ,r-europepmc)
2899 ("r-ggplot2" ,r-ggplot2)
2900 ("r-ggplotify" ,r-ggplotify)
2901 ("r-ggraph" ,r-ggraph)
2902 ("r-ggridges" ,r-ggridges)
2903 ("r-gosemsim" ,r-gosemsim)
2904 ("r-gridextra" ,r-gridextra)
2905 ("r-igraph" ,r-igraph)
2906 ("r-purrr" ,r-purrr)
2907 ("r-rcolorbrewer" ,r-rcolorbrewer)
2908 ("r-reshape2" ,r-reshape2)
2909 ("r-upsetr" ,r-upsetr)))
2910 (home-page "https://github.com/GuangchuangYu/enrichplot")
2911 (synopsis "Visualization of functional enrichment result")
2912 (description
2913 "The enrichplot package implements several visualization methods for
2914 interpreting functional enrichment results obtained from ORA or GSEA analyses.
2915 All the visualization methods are developed based on ggplot2 graphics.")
2916 (license license:artistic2.0)))
2917
2918 (define-public r-clusterprofiler
2919 (package
2920 (name "r-clusterprofiler")
2921 (version "3.10.1")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri (bioconductor-uri "clusterProfiler" version))
2926 (sha256
2927 (base32
2928 "1v4fh8ll7zk8yhbaa0nq9xvqrb05kyvbpwkqpnjf07s873805rxm"))))
2929 (properties
2930 `((upstream-name . "clusterProfiler")))
2931 (build-system r-build-system)
2932 (propagated-inputs
2933 `(("r-annotationdbi" ,r-annotationdbi)
2934 ("r-dose" ,r-dose)
2935 ("r-enrichplot" ,r-enrichplot)
2936 ("r-ggplot2" ,r-ggplot2)
2937 ("r-go-db" ,r-go-db)
2938 ("r-gosemsim" ,r-gosemsim)
2939 ("r-magrittr" ,r-magrittr)
2940 ("r-plyr" ,r-plyr)
2941 ("r-qvalue" ,r-qvalue)
2942 ("r-rvcheck" ,r-rvcheck)
2943 ("r-tidyr" ,r-tidyr)))
2944 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
2945 (synopsis "Analysis and visualization of functional profiles for gene clusters")
2946 (description
2947 "This package implements methods to analyze and visualize functional
2948 profiles (GO and KEGG) of gene and gene clusters.")
2949 (license license:artistic2.0)))
2950
2951 (define-public r-mlinterfaces
2952 (package
2953 (name "r-mlinterfaces")
2954 (version "1.62.0")
2955 (source
2956 (origin
2957 (method url-fetch)
2958 (uri (bioconductor-uri "MLInterfaces" version))
2959 (sha256
2960 (base32
2961 "12bgplyzfh0hkwmdp5w4cs5zw3ygdhzmiqzm8vhjyni6m9nrxwy8"))))
2962 (properties `((upstream-name . "MLInterfaces")))
2963 (build-system r-build-system)
2964 (propagated-inputs
2965 `(("r-annotate" ,r-annotate)
2966 ("r-biobase" ,r-biobase)
2967 ("r-biocgenerics" ,r-biocgenerics)
2968 ("r-cluster" ,r-cluster)
2969 ("r-fpc" ,r-fpc)
2970 ("r-gbm" ,r-gbm)
2971 ("r-gdata" ,r-gdata)
2972 ("r-genefilter" ,r-genefilter)
2973 ("r-ggvis" ,r-ggvis)
2974 ("r-hwriter" ,r-hwriter)
2975 ("r-mass" ,r-mass)
2976 ("r-mlbench" ,r-mlbench)
2977 ("r-pls" ,r-pls)
2978 ("r-rcolorbrewer" ,r-rcolorbrewer)
2979 ("r-rda" ,r-rda)
2980 ("r-rpart" ,r-rpart)
2981 ("r-sfsmisc" ,r-sfsmisc)
2982 ("r-shiny" ,r-shiny)
2983 ("r-threejs" ,r-threejs)))
2984 (home-page "https://bioconductor.org/packages/MLInterfaces/")
2985 (synopsis "Interfaces to R machine learning procedures")
2986 (description
2987 "This package provides uniform interfaces to machine learning code for
2988 data in R and Bioconductor containers.")
2989 ;; Any version of the LGPL.
2990 (license license:lgpl2.1+)))
2991
2992 (define-public r-annaffy
2993 (package
2994 (name "r-annaffy")
2995 (version "1.54.0")
2996 (source
2997 (origin
2998 (method url-fetch)
2999 (uri (bioconductor-uri "annaffy" version))
3000 (sha256
3001 (base32
3002 "16c6allp4vlx0g3nffanrm0mkkf8s2n31dccw4bflnx2pr81bmd5"))))
3003 (build-system r-build-system)
3004 (arguments
3005 `(#:phases
3006 (modify-phases %standard-phases
3007 (add-after 'unpack 'remove-reference-to-non-free-data
3008 (lambda _
3009 (substitute* "DESCRIPTION"
3010 ((", KEGG.db") ""))
3011 #t)))))
3012 (propagated-inputs
3013 `(("r-annotationdbi" ,r-annotationdbi)
3014 ("r-biobase" ,r-biobase)
3015 ("r-dbi" ,r-dbi)
3016 ("r-go-db" ,r-go-db)))
3017 (home-page "https://bioconductor.org/packages/annaffy/")
3018 (synopsis "Annotation tools for Affymetrix biological metadata")
3019 (description
3020 "This package provides functions for handling data from Bioconductor
3021 Affymetrix annotation data packages. It produces compact HTML and text
3022 reports including experimental data and URL links to many online databases.
3023 It allows searching of biological metadata using various criteria.")
3024 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
3025 ;; the LGPL 2.1 is included.
3026 (license license:lgpl2.1+)))
3027
3028 (define-public r-a4core
3029 (package
3030 (name "r-a4core")
3031 (version "1.30.0")
3032 (source
3033 (origin
3034 (method url-fetch)
3035 (uri (bioconductor-uri "a4Core" version))
3036 (sha256
3037 (base32
3038 "1d62afxkfp9zbp59ijcn4wd1gdynygw013av41wq8bfm3cx6f9zr"))))
3039 (properties `((upstream-name . "a4Core")))
3040 (build-system r-build-system)
3041 (propagated-inputs
3042 `(("r-biobase" ,r-biobase)
3043 ("r-glmnet" ,r-glmnet)))
3044 (home-page "https://bioconductor.org/packages/a4Core")
3045 (synopsis "Automated Affymetrix array analysis core package")
3046 (description
3047 "This is the core package for the automated analysis of Affymetrix
3048 arrays.")
3049 (license license:gpl3)))
3050
3051 (define-public r-a4classif
3052 (package
3053 (name "r-a4classif")
3054 (version "1.30.0")
3055 (source
3056 (origin
3057 (method url-fetch)
3058 (uri (bioconductor-uri "a4Classif" version))
3059 (sha256
3060 (base32
3061 "02l77a59865ly3bydv74ff2l2wfb0x5s283g1nx6g1qrw3ly982j"))))
3062 (properties `((upstream-name . "a4Classif")))
3063 (build-system r-build-system)
3064 (propagated-inputs
3065 `(("r-a4core" ,r-a4core)
3066 ("r-a4preproc" ,r-a4preproc)
3067 ("r-glmnet" ,r-glmnet)
3068 ("r-mlinterfaces" ,r-mlinterfaces)
3069 ("r-pamr" ,r-pamr)
3070 ("r-rocr" ,r-rocr)
3071 ("r-varselrf" ,r-varselrf)))
3072 (home-page "https://bioconductor.org/packages/a4Classif/")
3073 (synopsis "Automated Affymetrix array analysis classification package")
3074 (description
3075 "This is the classification package for the automated analysis of
3076 Affymetrix arrays.")
3077 (license license:gpl3)))
3078
3079 (define-public r-a4preproc
3080 (package
3081 (name "r-a4preproc")
3082 (version "1.30.0")
3083 (source
3084 (origin
3085 (method url-fetch)
3086 (uri (bioconductor-uri "a4Preproc" version))
3087 (sha256
3088 (base32
3089 "1dd3fqcc7nr2zbi46k0mnqkh42mfxk894ixfpqg7i9np2523p5gp"))))
3090 (properties `((upstream-name . "a4Preproc")))
3091 (build-system r-build-system)
3092 (propagated-inputs
3093 `(("r-annotationdbi" ,r-annotationdbi)))
3094 (home-page "https://bioconductor.org/packages/a4Preproc/")
3095 (synopsis "Automated Affymetrix array analysis preprocessing package")
3096 (description
3097 "This is a package for the automated analysis of Affymetrix arrays. It
3098 is used for preprocessing the arrays.")
3099 (license license:gpl3)))
3100
3101 (define-public r-a4reporting
3102 (package
3103 (name "r-a4reporting")
3104 (version "1.30.0")
3105 (source
3106 (origin
3107 (method url-fetch)
3108 (uri (bioconductor-uri "a4Reporting" version))
3109 (sha256
3110 (base32
3111 "124774z3bfdjgxx2ad40795h92aam21yfx0rw0n01nk2wf6k7xc4"))))
3112 (properties `((upstream-name . "a4Reporting")))
3113 (build-system r-build-system)
3114 (propagated-inputs
3115 `(("r-annaffy" ,r-annaffy)
3116 ("r-xtable" ,r-xtable)))
3117 (home-page "https://bioconductor.org/packages/a4Reporting/")
3118 (synopsis "Automated Affymetrix array analysis reporting package")
3119 (description
3120 "This is a package for the automated analysis of Affymetrix arrays. It
3121 provides reporting features.")
3122 (license license:gpl3)))
3123
3124 (define-public r-a4base
3125 (package
3126 (name "r-a4base")
3127 (version "1.30.0")
3128 (source
3129 (origin
3130 (method url-fetch)
3131 (uri (bioconductor-uri "a4Base" version))
3132 (sha256
3133 (base32
3134 "0k9k3bv99msbwf2y416cz316ssaha2dxvmaddbl7z9037p8mjr70"))))
3135 (properties `((upstream-name . "a4Base")))
3136 (build-system r-build-system)
3137 (propagated-inputs
3138 `(("r-a4core" ,r-a4core)
3139 ("r-a4preproc" ,r-a4preproc)
3140 ("r-annaffy" ,r-annaffy)
3141 ("r-annotationdbi" ,r-annotationdbi)
3142 ("r-biobase" ,r-biobase)
3143 ("r-genefilter" ,r-genefilter)
3144 ("r-glmnet" ,r-glmnet)
3145 ("r-gplots" ,r-gplots)
3146 ("r-limma" ,r-limma)
3147 ("r-mpm" ,r-mpm)
3148 ("r-multtest" ,r-multtest)))
3149 (home-page "https://bioconductor.org/packages/a4Base/")
3150 (synopsis "Automated Affymetrix array analysis base package")
3151 (description
3152 "This package provides basic features for the automated analysis of
3153 Affymetrix arrays.")
3154 (license license:gpl3)))
3155
3156 (define-public r-a4
3157 (package
3158 (name "r-a4")
3159 (version "1.30.0")
3160 (source
3161 (origin
3162 (method url-fetch)
3163 (uri (bioconductor-uri "a4" version))
3164 (sha256
3165 (base32
3166 "1iqjy35rqx3m2y0dm2bk4cnzdm1qvbi608bfmrid88w6wmwz3qlk"))))
3167 (build-system r-build-system)
3168 (propagated-inputs
3169 `(("r-a4base" ,r-a4base)
3170 ("r-a4classif" ,r-a4classif)
3171 ("r-a4core" ,r-a4core)
3172 ("r-a4preproc" ,r-a4preproc)
3173 ("r-a4reporting" ,r-a4reporting)))
3174 (home-page "https://bioconductor.org/packages/a4/")
3175 (synopsis "Automated Affymetrix array analysis umbrella package")
3176 (description
3177 "This package provides a software suite for the automated analysis of
3178 Affymetrix arrays.")
3179 (license license:gpl3)))
3180
3181 (define-public r-abseqr
3182 (package
3183 (name "r-abseqr")
3184 (version "1.0.0")
3185 (source
3186 (origin
3187 (method url-fetch)
3188 (uri (bioconductor-uri "abseqR" version))
3189 (sha256
3190 (base32
3191 "0w0ngxnilcrxlixsz7ls3zm99gyabxwn7w1r3r45n96d4aj075ry"))))
3192 (properties `((upstream-name . "abseqR")))
3193 (build-system r-build-system)
3194 (inputs
3195 `(("pandoc" ,ghc-pandoc)))
3196 (propagated-inputs
3197 `(("r-biocparallel" ,r-biocparallel)
3198 ("r-biocstyle" ,r-biocstyle)
3199 ("r-circlize" ,r-circlize)
3200 ("r-flexdashboard" ,r-flexdashboard)
3201 ("r-ggcorrplot" ,r-ggcorrplot)
3202 ("r-ggdendro" ,r-ggdendro)
3203 ("r-ggplot2" ,r-ggplot2)
3204 ("r-gridextra" ,r-gridextra)
3205 ("r-knitr" ,r-knitr)
3206 ("r-plotly" ,r-plotly)
3207 ("r-plyr" ,r-plyr)
3208 ("r-png" ,r-png)
3209 ("r-rcolorbrewer" ,r-rcolorbrewer)
3210 ("r-reshape2" ,r-reshape2)
3211 ("r-rmarkdown" ,r-rmarkdown)
3212 ("r-stringr" ,r-stringr)
3213 ("r-vegan" ,r-vegan)
3214 ("r-venndiagram" ,r-venndiagram)))
3215 (home-page "https://github.com/malhamdoosh/abseqR")
3216 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
3217 (description
3218 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
3219 sequencing datasets generated from antibody libraries and abseqR is one of its
3220 packages. AbseqR empowers the users of abseqPy with plotting and reporting
3221 capabilities and allows them to generate interactive HTML reports for the
3222 convenience of viewing and sharing with other researchers. Additionally,
3223 abseqR extends abseqPy to compare multiple repertoire analyses and perform
3224 further downstream analysis on its output.")
3225 (license license:gpl3)))
3226
3227 (define-public r-bacon
3228 (package
3229 (name "r-bacon")
3230 (version "1.10.1")
3231 (source
3232 (origin
3233 (method url-fetch)
3234 (uri (bioconductor-uri "bacon" version))
3235 (sha256
3236 (base32
3237 "1pd3p1cfggiy08458vplsy3s1zm5jqqcwrv4fks8ra2kf97j38df"))))
3238 (build-system r-build-system)
3239 (propagated-inputs
3240 `(("r-biocparallel" ,r-biocparallel)
3241 ("r-ellipse" ,r-ellipse)
3242 ("r-ggplot2" ,r-ggplot2)))
3243 (home-page "https://bioconductor.org/packages/bacon/")
3244 (synopsis "Controlling bias and inflation in association studies")
3245 (description
3246 "Bacon can be used to remove inflation and bias often observed in
3247 epigenome- and transcriptome-wide association studies. To this end bacon
3248 constructs an empirical null distribution using a Gibbs Sampling algorithm by
3249 fitting a three-component normal mixture on z-scores.")
3250 (license license:gpl2+)))
3251
3252 (define-public r-rgadem
3253 (package
3254 (name "r-rgadem")
3255 (version "2.30.0")
3256 (source
3257 (origin
3258 (method url-fetch)
3259 (uri (bioconductor-uri "rGADEM" version))
3260 (sha256
3261 (base32
3262 "1a3mvxabp7yb275cv1wr0rzyvjhnsaysk2hnmll4z4cci171z2j2"))))
3263 (properties `((upstream-name . "rGADEM")))
3264 (build-system r-build-system)
3265 (propagated-inputs
3266 `(("r-biostrings" ,r-biostrings)
3267 ("r-bsgenome" ,r-bsgenome)
3268 ("r-iranges" ,r-iranges)
3269 ("r-seqlogo" ,r-seqlogo)))
3270 (home-page "https://bioconductor.org/packages/rGADEM/")
3271 (synopsis "De novo sequence motif discovery")
3272 (description
3273 "rGADEM is an efficient de novo motif discovery tool for large-scale
3274 genomic sequence data.")
3275 (license license:artistic2.0)))
3276
3277 (define-public r-motiv
3278 (package
3279 (name "r-motiv")
3280 (version "1.38.0")
3281 (source
3282 (origin
3283 (method url-fetch)
3284 (uri (bioconductor-uri "MotIV" version))
3285 (sha256
3286 (base32
3287 "1qrpydwc5bn8f0843qkyhw6920xk8kvq452ird0ij96g6faiv9a8"))))
3288 (properties `((upstream-name . "MotIV")))
3289 (build-system r-build-system)
3290 (inputs
3291 `(("gsl" ,gsl)))
3292 (propagated-inputs
3293 `(("r-biocgenerics" ,r-biocgenerics)
3294 ("r-biostrings" ,r-biostrings)
3295 ("r-iranges" ,r-iranges)
3296 ("r-lattice" ,r-lattice)
3297 ("r-rgadem" ,r-rgadem)
3298 ("r-s4vectors" ,r-s4vectors)))
3299 (home-page "https://bioconductor.org/packages/MotIV/")
3300 (synopsis "Motif identification and validation")
3301 (description
3302 "This package is used for the identification and validation of sequence
3303 motifs. It makes use of STAMP for comparing a set of motifs to a given
3304 database (e.g. JASPAR). It can also be used to visualize motifs, motif
3305 distributions, modules and filter motifs.")
3306 (license license:gpl2)))
3307
3308 (define-public r-motifstack
3309 (package
3310 (name "r-motifstack")
3311 (version "1.26.0")
3312 (source
3313 (origin
3314 (method url-fetch)
3315 (uri (bioconductor-uri "motifStack" version))
3316 (sha256
3317 (base32
3318 "1c4w39ilc4ca4wgi1b6iypadkbxvqjw7k2br0d7q03niw9qjkhxf"))))
3319 (properties `((upstream-name . "motifStack")))
3320 (build-system r-build-system)
3321 (propagated-inputs
3322 `(("r-ade4" ,r-ade4)
3323 ("r-biostrings" ,r-biostrings)
3324 ("r-grimport" ,r-grimport)
3325 ("r-htmlwidgets" ,r-htmlwidgets)
3326 ("r-motiv" ,r-motiv)
3327 ("r-scales" ,r-scales)
3328 ("r-xml" ,r-xml)))
3329 (home-page "https://bioconductor.org/packages/motifStack/")
3330 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
3331 (description
3332 "The motifStack package is designed for graphic representation of
3333 multiple motifs with different similarity scores. It works with both DNA/RNA
3334 sequence motifs and amino acid sequence motifs. In addition, it provides the
3335 flexibility for users to customize the graphic parameters such as the font
3336 type and symbol colors.")
3337 (license license:gpl2+)))
3338
3339 (define-public r-genomicscores
3340 (package
3341 (name "r-genomicscores")
3342 (version "1.6.0")
3343 (source
3344 (origin
3345 (method url-fetch)
3346 (uri (bioconductor-uri "GenomicScores" version))
3347 (sha256
3348 (base32
3349 "0lrhkcblvnki6kncwpavs01gbcz22yza6ma8zvfmbrrkfaxqzh8n"))))
3350 (properties `((upstream-name . "GenomicScores")))
3351 (build-system r-build-system)
3352 (propagated-inputs
3353 `(("r-annotationhub" ,r-annotationhub)
3354 ("r-biobase" ,r-biobase)
3355 ("r-biocgenerics" ,r-biocgenerics)
3356 ("r-biostrings" ,r-biostrings)
3357 ("r-bsgenome" ,r-bsgenome)
3358 ("r-genomeinfodb" ,r-genomeinfodb)
3359 ("r-genomicranges" ,r-genomicranges)
3360 ("r-iranges" ,r-iranges)
3361 ("r-s4vectors" ,r-s4vectors)
3362 ("r-xml" ,r-xml)))
3363 (home-page "https://github.com/rcastelo/GenomicScores/")
3364 (synopsis "Work with genome-wide position-specific scores")
3365 (description
3366 "This package provides infrastructure to store and access genome-wide
3367 position-specific scores within R and Bioconductor.")
3368 (license license:artistic2.0)))
3369
3370 (define-public r-atacseqqc
3371 (package
3372 (name "r-atacseqqc")
3373 (version "1.6.4")
3374 (source
3375 (origin
3376 (method url-fetch)
3377 (uri (bioconductor-uri "ATACseqQC" version))
3378 (sha256
3379 (base32
3380 "1rblvqar11fib6ip2hq0756vqi6qmncf90jw6i5p5lrgzmaxy8hn"))))
3381 (properties `((upstream-name . "ATACseqQC")))
3382 (build-system r-build-system)
3383 (propagated-inputs
3384 `(("r-biocgenerics" ,r-biocgenerics)
3385 ("r-biostrings" ,r-biostrings)
3386 ("r-bsgenome" ,r-bsgenome)
3387 ("r-chippeakanno" ,r-chippeakanno)
3388 ("r-genomeinfodb" ,r-genomeinfodb)
3389 ("r-genomicalignments" ,r-genomicalignments)
3390 ("r-genomicranges" ,r-genomicranges)
3391 ("r-genomicscores" ,r-genomicscores)
3392 ("r-iranges" ,r-iranges)
3393 ("r-kernsmooth" ,r-kernsmooth)
3394 ("r-limma" ,r-limma)
3395 ("r-motifstack" ,r-motifstack)
3396 ("r-preseqr" ,r-preseqr)
3397 ("r-randomforest" ,r-randomforest)
3398 ("r-rsamtools" ,r-rsamtools)
3399 ("r-rtracklayer" ,r-rtracklayer)
3400 ("r-s4vectors" ,r-s4vectors)))
3401 (home-page "https://bioconductor.org/packages/ATACseqQC/")
3402 (synopsis "ATAC-seq quality control")
3403 (description
3404 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
3405 sequencing, is a rapid and sensitive method for chromatin accessibility
3406 analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
3407 and DNAse-seq. The ATACseqQC package was developed to help users to quickly
3408 assess whether their ATAC-seq experiment is successful. It includes
3409 diagnostic plots of fragment size distribution, proportion of mitochondria
3410 reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
3411 footprints.")
3412 (license license:gpl2+)))
3413
3414 (define-public r-gofuncr
3415 (package
3416 (name "r-gofuncr")
3417 (version "1.2.0")
3418 (source
3419 (origin
3420 (method url-fetch)
3421 (uri (bioconductor-uri "GOfuncR" version))
3422 (sha256
3423 (base32
3424 "021kgcbm8n2yalhzab11cyppwznlkglynnh45wsgy9i2vi2n2znk"))))
3425 (properties `((upstream-name . "GOfuncR")))
3426 (build-system r-build-system)
3427 (propagated-inputs
3428 `(("r-annotationdbi" ,r-annotationdbi)
3429 ("r-genomicranges" ,r-genomicranges)
3430 ("r-gtools" ,r-gtools)
3431 ("r-iranges" ,r-iranges)
3432 ("r-mapplots" ,r-mapplots)
3433 ("r-rcpp" ,r-rcpp)
3434 ("r-vioplot" ,r-vioplot)))
3435 (home-page "https://bioconductor.org/packages/GOfuncR/")
3436 (synopsis "Gene ontology enrichment using FUNC")
3437 (description
3438 "GOfuncR performs a gene ontology enrichment analysis based on the
3439 ontology enrichment software FUNC. GO-annotations are obtained from
3440 OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
3441 included in the package and updated regularly. GOfuncR provides the standard
3442 candidate vs background enrichment analysis using the hypergeometric test, as
3443 well as three additional tests:
3444
3445 @enumerate
3446 @item the Wilcoxon rank-sum test that is used when genes are ranked,
3447 @item a binomial test that is used when genes are associated with two counts,
3448 and
3449 @item a Chi-square or Fisher's exact test that is used in cases when genes are
3450 associated with four counts.
3451 @end enumerate
3452
3453 To correct for multiple testing and interdependency of the tests, family-wise
3454 error rates are computed based on random permutations of the gene-associated
3455 variables. GOfuncR also provides tools for exploring the ontology graph and
3456 the annotations, and options to take gene-length or spatial clustering of
3457 genes into account. It is also possible to provide custom gene coordinates,
3458 annotations and ontologies.")
3459 (license license:gpl2+)))
3460
3461 (define-public r-abaenrichment
3462 (package
3463 (name "r-abaenrichment")
3464 (version "1.12.0")
3465 (source
3466 (origin
3467 (method url-fetch)
3468 (uri (bioconductor-uri "ABAEnrichment" version))
3469 (sha256
3470 (base32
3471 "0bvanqmg1smyckh16m2qn7d68zq4j7n74sgsnbgms5jngbp9158v"))))
3472 (properties `((upstream-name . "ABAEnrichment")))
3473 (build-system r-build-system)
3474 (propagated-inputs
3475 `(("r-abadata" ,r-abadata)
3476 ("r-data-table" ,r-data-table)
3477 ("r-gofuncr" ,r-gofuncr)
3478 ("r-gplots" ,r-gplots)
3479 ("r-gtools" ,r-gtools)
3480 ("r-rcpp" ,r-rcpp)))
3481 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
3482 (synopsis "Gene expression enrichment in human brain regions")
3483 (description
3484 "The package ABAEnrichment is designed to test for enrichment of user
3485 defined candidate genes in the set of expressed genes in different human brain
3486 regions. The core function @code{aba_enrich} integrates the expression of the
3487 candidate gene set (averaged across donors) and the structural information of
3488 the brain using an ontology, both provided by the Allen Brain Atlas project.")
3489 (license license:gpl2+)))
3490
3491 (define-public r-annotationfuncs
3492 (package
3493 (name "r-annotationfuncs")
3494 (version "1.32.0")
3495 (source
3496 (origin
3497 (method url-fetch)
3498 (uri (bioconductor-uri "AnnotationFuncs" version))
3499 (sha256
3500 (base32
3501 "1x11mfabh7kbp39y5rkmrpjkaawx7ab5anfmciamrmrcw1kddbss"))))
3502 (properties
3503 `((upstream-name . "AnnotationFuncs")))
3504 (build-system r-build-system)
3505 (propagated-inputs
3506 `(("r-annotationdbi" ,r-annotationdbi)
3507 ("r-dbi" ,r-dbi)))
3508 (home-page "https://www.iysik.com/r/annotationfuncs")
3509 (synopsis "Annotation translation functions")
3510 (description
3511 "This package provides functions for handling translating between
3512 different identifieres using the Biocore Data Team data-packages (e.g.
3513 @code{org.Bt.eg.db}).")
3514 (license license:gpl2)))
3515
3516 (define-public r-annotationtools
3517 (package
3518 (name "r-annotationtools")
3519 (version "1.56.0")
3520 (source
3521 (origin
3522 (method url-fetch)
3523 (uri (bioconductor-uri "annotationTools" version))
3524 (sha256
3525 (base32
3526 "0hqy0mq6pkn05p2dv4pw24p697yvikhdn351adf2ynldy6f3sl9z"))))
3527 (properties
3528 `((upstream-name . "annotationTools")))
3529 (build-system r-build-system)
3530 (propagated-inputs `(("r-biobase" ,r-biobase)))
3531 (home-page "https://bioconductor.org/packages/annotationTools/")
3532 (synopsis "Annotate microarrays and perform gene expression analyses")
3533 (description
3534 "This package provides functions to annotate microarrays, find orthologs,
3535 and integrate heterogeneous gene expression profiles using annotation and
3536 other molecular biology information available as flat file database (plain
3537 text files).")
3538 ;; Any version of the GPL.
3539 (license (list license:gpl2+))))
3540
3541 (define-public r-allelicimbalance
3542 (package
3543 (name "r-allelicimbalance")
3544 (version "1.20.0")
3545 (source
3546 (origin
3547 (method url-fetch)
3548 (uri (bioconductor-uri "AllelicImbalance" version))
3549 (sha256
3550 (base32
3551 "03524lj6aw9cskbpxzjmi9g708x6p94mf26yz4j941g1d0mc3z91"))))
3552 (properties
3553 `((upstream-name . "AllelicImbalance")))
3554 (build-system r-build-system)
3555 (propagated-inputs
3556 `(("r-annotationdbi" ,r-annotationdbi)
3557 ("r-biocgenerics" ,r-biocgenerics)
3558 ("r-biostrings" ,r-biostrings)
3559 ("r-bsgenome" ,r-bsgenome)
3560 ("r-genomeinfodb" ,r-genomeinfodb)
3561 ("r-genomicalignments" ,r-genomicalignments)
3562 ("r-genomicfeatures" ,r-genomicfeatures)
3563 ("r-genomicranges" ,r-genomicranges)
3564 ("r-gridextra" ,r-gridextra)
3565 ("r-gviz" ,r-gviz)
3566 ("r-iranges" ,r-iranges)
3567 ("r-lattice" ,r-lattice)
3568 ("r-latticeextra" ,r-latticeextra)
3569 ("r-nlme" ,r-nlme)
3570 ("r-rsamtools" ,r-rsamtools)
3571 ("r-s4vectors" ,r-s4vectors)
3572 ("r-seqinr" ,r-seqinr)
3573 ("r-summarizedexperiment" ,r-summarizedexperiment)
3574 ("r-variantannotation" ,r-variantannotation)))
3575 (home-page "https://github.com/pappewaio/AllelicImbalance")
3576 (synopsis "Investigate allele-specific expression")
3577 (description
3578 "This package provides a framework for allele-specific expression
3579 investigation using RNA-seq data.")
3580 (license license:gpl3)))
3581
3582 (define-public r-aucell
3583 (package
3584 (name "r-aucell")
3585 (version "1.4.1")
3586 (source
3587 (origin
3588 (method url-fetch)
3589 (uri (bioconductor-uri "AUCell" version))
3590 (sha256
3591 (base32
3592 "1kdrs0521cyb8wlc4i3idfprrcy2f9w6kl56hfa94n0brmx62ya9"))))
3593 (properties `((upstream-name . "AUCell")))
3594 (build-system r-build-system)
3595 (propagated-inputs
3596 `(("r-data-table" ,r-data-table)
3597 ("r-gseabase" ,r-gseabase)
3598 ("r-mixtools" ,r-mixtools)
3599 ("r-r-utils" ,r-r-utils)
3600 ("r-shiny" ,r-shiny)
3601 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3602 (home-page "https://bioconductor.org/packages/AUCell/")
3603 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
3604 (description
3605 "AUCell allows to identify cells with active gene sets (e.g. signatures,
3606 gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
3607 Under the Curve} (AUC) to calculate whether a critical subset of the input
3608 gene set is enriched within the expressed genes for each cell. The
3609 distribution of AUC scores across all the cells allows exploring the relative
3610 expression of the signature. Since the scoring method is ranking-based,
3611 AUCell is independent of the gene expression units and the normalization
3612 procedure. In addition, since the cells are evaluated individually, it can
3613 easily be applied to bigger datasets, subsetting the expression matrix if
3614 needed.")
3615 (license license:gpl3)))
3616
3617 (define-public r-ebimage
3618 (package
3619 (name "r-ebimage")
3620 (version "4.24.0")
3621 (source
3622 (origin
3623 (method url-fetch)
3624 (uri (bioconductor-uri "EBImage" version))
3625 (sha256
3626 (base32
3627 "18v2zr7xh0d0xbs7mxa2b6xjqlqiml0hji27gq1351xp5bf2pxvx"))))
3628 (properties `((upstream-name . "EBImage")))
3629 (build-system r-build-system)
3630 (propagated-inputs
3631 `(("r-abind" ,r-abind)
3632 ("r-biocgenerics" ,r-biocgenerics)
3633 ("r-fftwtools" ,r-fftwtools)
3634 ("r-htmltools" ,r-htmltools)
3635 ("r-htmlwidgets" ,r-htmlwidgets)
3636 ("r-jpeg" ,r-jpeg)
3637 ("r-locfit" ,r-locfit)
3638 ("r-png" ,r-png)
3639 ("r-rcurl" ,r-rcurl)
3640 ("r-tiff" ,r-tiff)))
3641 (native-inputs
3642 `(("r-knitr" ,r-knitr))) ; for vignettes
3643 (home-page "https://github.com/aoles/EBImage")
3644 (synopsis "Image processing and analysis toolbox for R")
3645 (description
3646 "EBImage provides general purpose functionality for image processing and
3647 analysis. In the context of (high-throughput) microscopy-based cellular
3648 assays, EBImage offers tools to segment cells and extract quantitative
3649 cellular descriptors. This allows the automation of such tasks using the R
3650 programming language and facilitates the use of other tools in the R
3651 environment for signal processing, statistical modeling, machine learning and
3652 visualization with image data.")
3653 ;; Any version of the LGPL.
3654 (license license:lgpl2.1+)))
3655
3656 (define-public r-yamss
3657 (package
3658 (name "r-yamss")
3659 (version "1.8.1")
3660 (source
3661 (origin
3662 (method url-fetch)
3663 (uri (bioconductor-uri "yamss" version))
3664 (sha256
3665 (base32
3666 "13pln09j08fjsr7bj17apy4j0sr79n7jzshi8jbnz57jil7k6ia9"))))
3667 (build-system r-build-system)
3668 (propagated-inputs
3669 `(("r-biocgenerics" ,r-biocgenerics)
3670 ("r-data-table" ,r-data-table)
3671 ("r-ebimage" ,r-ebimage)
3672 ("r-iranges" ,r-iranges)
3673 ("r-limma" ,r-limma)
3674 ("r-matrix" ,r-matrix)
3675 ("r-mzr" ,r-mzr)
3676 ("r-s4vectors" ,r-s4vectors)
3677 ("r-summarizedexperiment"
3678 ,r-summarizedexperiment)))
3679 (home-page "https://github.com/hansenlab/yamss")
3680 (synopsis "Tools for high-throughput metabolomics")
3681 (description
3682 "This package provides tools to analyze and visualize high-throughput
3683 metabolomics data aquired using chromatography-mass spectrometry. These tools
3684 preprocess data in a way that enables reliable and powerful differential
3685 analysis.")
3686 (license license:artistic2.0)))
3687
3688 (define-public r-gtrellis
3689 (package
3690 (name "r-gtrellis")
3691 (version "1.14.0")
3692 (source
3693 (origin
3694 (method url-fetch)
3695 (uri (bioconductor-uri "gtrellis" version))
3696 (sha256
3697 (base32
3698 "17c43vs6m6hj90x5is0pbcpcv59gg9z98c47hnvlypgcqch38h6v"))))
3699 (build-system r-build-system)
3700 (propagated-inputs
3701 `(("r-circlize" ,r-circlize)
3702 ("r-genomicranges" ,r-genomicranges)
3703 ("r-getoptlong" ,r-getoptlong)
3704 ("r-iranges" ,r-iranges)))
3705 (home-page "https://github.com/jokergoo/gtrellis")
3706 (synopsis "Genome level Trellis layout")
3707 (description
3708 "Genome level Trellis graph visualizes genomic data conditioned by
3709 genomic categories (e.g. chromosomes). For each genomic category, multiple
3710 dimensional data which are represented as tracks describe different features
3711 from different aspects. This package provides high flexibility to arrange
3712 genomic categories and to add self-defined graphics in the plot.")
3713 (license license:expat)))
3714
3715 (define-public r-somaticsignatures
3716 (package
3717 (name "r-somaticsignatures")
3718 (version "2.18.0")
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri (bioconductor-uri "SomaticSignatures" version))
3723 (sha256
3724 (base32
3725 "013dslbyq55a41d3n842brjk2bq1kxw0r18mb6drgbxx2sflzc02"))))
3726 (properties
3727 `((upstream-name . "SomaticSignatures")))
3728 (build-system r-build-system)
3729 (propagated-inputs
3730 `(("r-biobase" ,r-biobase)
3731 ("r-biostrings" ,r-biostrings)
3732 ("r-genomeinfodb" ,r-genomeinfodb)
3733 ("r-genomicranges" ,r-genomicranges)
3734 ("r-ggbio" ,r-ggbio)
3735 ("r-ggplot2" ,r-ggplot2)
3736 ("r-iranges" ,r-iranges)
3737 ("r-nmf" ,r-nmf)
3738 ("r-pcamethods" ,r-pcamethods)
3739 ("r-proxy" ,r-proxy)
3740 ("r-reshape2" ,r-reshape2)
3741 ("r-s4vectors" ,r-s4vectors)
3742 ("r-variantannotation" ,r-variantannotation)))
3743 (home-page "https://github.com/juliangehring/SomaticSignatures")
3744 (synopsis "Somatic signatures")
3745 (description
3746 "This package identifies mutational signatures of @dfn{single nucleotide
3747 variants} (SNVs). It provides a infrastructure related to the methodology
3748 described in Nik-Zainal (2012, Cell), with flexibility in the matrix
3749 decomposition algorithms.")
3750 (license license:expat)))
3751
3752 (define-public r-yapsa
3753 (package
3754 (name "r-yapsa")
3755 (version "1.8.0")
3756 (source
3757 (origin
3758 (method url-fetch)
3759 (uri (bioconductor-uri "YAPSA" version))
3760 (sha256
3761 (base32
3762 "1agacimdd1m5yja2xbcsb83mns4svpxbjcsfrvm9ydqdj737i10j"))))
3763 (properties `((upstream-name . "YAPSA")))
3764 (build-system r-build-system)
3765 (propagated-inputs
3766 `(("r-circlize" ,r-circlize)
3767 ("r-complexheatmap" ,r-complexheatmap)
3768 ("r-corrplot" ,r-corrplot)
3769 ("r-dendextend" ,r-dendextend)
3770 ("r-genomeinfodb" ,r-genomeinfodb)
3771 ("r-genomicranges" ,r-genomicranges)
3772 ("r-getoptlong" ,r-getoptlong)
3773 ("r-ggplot2" ,r-ggplot2)
3774 ("r-gridextra" ,r-gridextra)
3775 ("r-gtrellis" ,r-gtrellis)
3776 ("r-keggrest" ,r-keggrest)
3777 ("r-lsei" ,r-lsei)
3778 ("r-pmcmr" ,r-pmcmr)
3779 ("r-reshape2" ,r-reshape2)
3780 ("r-somaticsignatures" ,r-somaticsignatures)
3781 ("r-variantannotation" ,r-variantannotation)))
3782 (home-page "https://bioconductor.org/packages/YAPSA/")
3783 (synopsis "Yet another package for signature analysis")
3784 (description
3785 "This package provides functions and routines useful in the analysis of
3786 somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
3787 functions to perform a signature analysis with known signatures and a
3788 signature analysis on @dfn{stratified mutational catalogue} (SMC) are
3789 provided.")
3790 (license license:gpl3)))
3791
3792 (define-public r-gcrma
3793 (package
3794 (name "r-gcrma")
3795 (version "2.54.0")
3796 (source
3797 (origin
3798 (method url-fetch)
3799 (uri (bioconductor-uri "gcrma" version))
3800 (sha256
3801 (base32
3802 "1v5fi98gdmj002ryq0rgsg2l4x3m3w5pz4h3bx4v8lk15azafgim"))))
3803 (build-system r-build-system)
3804 (propagated-inputs
3805 `(("r-affy" ,r-affy)
3806 ("r-affyio" ,r-affyio)
3807 ("r-biobase" ,r-biobase)
3808 ("r-biocmanager" ,r-biocmanager)
3809 ("r-biostrings" ,r-biostrings)
3810 ("r-xvector" ,r-xvector)))
3811 (home-page "https://bioconductor.org/packages/gcrma/")
3812 (synopsis "Background adjustment using sequence information")
3813 (description
3814 "Gcrma adjusts for background intensities in Affymetrix array data which
3815 include optical noise and @dfn{non-specific binding} (NSB). The main function
3816 @code{gcrma} converts background adjusted probe intensities to expression
3817 measures using the same normalization and summarization methods as a
3818 @dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
3819 to estimate probe affinity to NSB. The sequence information is summarized in
3820 a more complex way than the simple GC content. Instead, the base types (A, T,
3821 G or C) at each position along the probe determine the affinity of each probe.
3822 The parameters of the position-specific base contributions to the probe
3823 affinity is estimated in an NSB experiment in which only NSB but no
3824 gene-specific bidning is expected.")
3825 ;; Any version of the LGPL
3826 (license license:lgpl2.1+)))
3827
3828 (define-public r-simpleaffy
3829 (package
3830 (name "r-simpleaffy")
3831 (version "2.58.0")
3832 (source
3833 (origin
3834 (method url-fetch)
3835 (uri (bioconductor-uri "simpleaffy" version))
3836 (sha256
3837 (base32
3838 "0bry0d2vw0w2rrpnmfm1kl5v4rdclypmy33jvs9l43vd6vx2ra9s"))))
3839 (build-system r-build-system)
3840 (propagated-inputs
3841 `(("r-affy" ,r-affy)
3842 ("r-biobase" ,r-biobase)
3843 ("r-biocgenerics" ,r-biocgenerics)
3844 ("r-gcrma" ,r-gcrma)
3845 ("r-genefilter" ,r-genefilter)))
3846 (home-page "https://bioconductor.org/packages/simpleaffy/")
3847 (synopsis "Very simple high level analysis of Affymetrix data")
3848 (description
3849 "This package provides high level functions for reading Affy @file{.CEL}
3850 files, phenotypic data, and then computing simple things with it, such as
3851 t-tests, fold changes and the like. It makes heavy use of the @code{affy}
3852 library. It also has some basic scatter plot functions and mechanisms for
3853 generating high resolution journal figures.")
3854 (license license:gpl2+)))
3855
3856 (define-public r-yaqcaffy
3857 (package
3858 (name "r-yaqcaffy")
3859 (version "1.42.0")
3860 (source
3861 (origin
3862 (method url-fetch)
3863 (uri (bioconductor-uri "yaqcaffy" version))
3864 (sha256
3865 (base32
3866 "192n1zvd54nm9q71vyb6dcr7ia6givf4bjwf6542jjig085lwhxk"))))
3867 (build-system r-build-system)
3868 (propagated-inputs
3869 `(("r-simpleaffy" ,r-simpleaffy)))
3870 (home-page "https://bioconductor.org/packages/yaqcaffy/")
3871 (synopsis "Affymetrix quality control and reproducibility analysis")
3872 (description
3873 "This is a package that can be used for quality control of Affymetrix
3874 GeneChip expression data and reproducibility analysis of human whole genome
3875 chips with the MAQC reference datasets.")
3876 (license license:artistic2.0)))
3877
3878 (define-public r-quantro
3879 (package
3880 (name "r-quantro")
3881 (version "1.16.0")
3882 (source
3883 (origin
3884 (method url-fetch)
3885 (uri (bioconductor-uri "quantro" version))
3886 (sha256
3887 (base32
3888 "1777gjgn855f04yv7hx70h9l8idmjzamkpazaq2cdr8qzhxwy2ib"))))
3889 (build-system r-build-system)
3890 (propagated-inputs
3891 `(("r-biobase" ,r-biobase)
3892 ("r-doparallel" ,r-doparallel)
3893 ("r-foreach" ,r-foreach)
3894 ("r-ggplot2" ,r-ggplot2)
3895 ("r-iterators" ,r-iterators)
3896 ("r-minfi" ,r-minfi)
3897 ("r-rcolorbrewer" ,r-rcolorbrewer)))
3898 (home-page "https://bioconductor.org/packages/quantro/")
3899 (synopsis "Test for when to use quantile normalization")
3900 (description
3901 "This package provides a data-driven test for the assumptions of quantile
3902 normalization using raw data such as objects that inherit eSets (e.g.
3903 ExpressionSet, MethylSet). Group level information about each sample (such as
3904 Tumor / Normal status) must also be provided because the test assesses if
3905 there are global differences in the distributions between the user-defined
3906 groups.")
3907 (license license:gpl3+)))
3908
3909 (define-public r-yarn
3910 (package
3911 (name "r-yarn")
3912 (version "1.8.1")
3913 (source
3914 (origin
3915 (method url-fetch)
3916 (uri (bioconductor-uri "yarn" version))
3917 (sha256
3918 (base32
3919 "0c84x1zq34hadpsyaa873r8kg0jcxp09c2z63377hlmhsll90l7s"))))
3920 (build-system r-build-system)
3921 (propagated-inputs
3922 `(("r-biobase" ,r-biobase)
3923 ("r-biomart" ,r-biomart)
3924 ("r-downloader" ,r-downloader)
3925 ("r-edger" ,r-edger)
3926 ("r-gplots" ,r-gplots)
3927 ("r-limma" ,r-limma)
3928 ("r-matrixstats" ,r-matrixstats)
3929 ("r-preprocesscore" ,r-preprocesscore)
3930 ("r-quantro" ,r-quantro)
3931 ("r-rcolorbrewer" ,r-rcolorbrewer)
3932 ("r-readr" ,r-readr)))
3933 (home-page "https://bioconductor.org/packages/yarn/")
3934 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
3935 (description
3936 "Expedite large RNA-Seq analyses using a combination of previously
3937 developed tools. YARN is meant to make it easier for the user in performing
3938 basic mis-annotation quality control, filtering, and condition-aware
3939 normalization. YARN leverages many Bioconductor tools and statistical
3940 techniques to account for the large heterogeneity and sparsity found in very
3941 large RNA-seq experiments.")
3942 (license license:artistic2.0)))
3943
3944 (define-public r-roar
3945 (package
3946 (name "r-roar")
3947 (version "1.18.0")
3948 (source
3949 (origin
3950 (method url-fetch)
3951 (uri (bioconductor-uri "roar" version))
3952 (sha256
3953 (base32
3954 "15650s9vs7dvmqpvrs4xwn6j4kh14yqsx4daqyhhxxr68kn8mklw"))))
3955 (build-system r-build-system)
3956 (propagated-inputs
3957 `(("r-biocgenerics" ,r-biocgenerics)
3958 ("r-genomeinfodb" ,r-genomeinfodb)
3959 ("r-genomicalignments" ,r-genomicalignments)
3960 ("r-genomicranges" ,r-genomicranges)
3961 ("r-iranges" ,r-iranges)
3962 ("r-rtracklayer" ,r-rtracklayer)
3963 ("r-s4vectors" ,r-s4vectors)
3964 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3965 (home-page "https://github.com/vodkatad/roar/")
3966 (synopsis "Identify differential APA usage from RNA-seq alignments")
3967 (description
3968 "This package provides tools for identifying preferential usage of APA
3969 sites, comparing two biological conditions, starting from known alternative
3970 sites and alignments obtained from standard RNA-seq experiments.")
3971 (license license:gpl3)))
3972
3973 (define-public r-xbseq
3974 (package
3975 (name "r-xbseq")
3976 (version "1.14.1")
3977 (source
3978 (origin
3979 (method url-fetch)
3980 (uri (bioconductor-uri "XBSeq" version))
3981 (sha256
3982 (base32
3983 "0na0jiqfy40bzl243gqc2214k4hibv6v4ndiqwq0c5f78cyr6lph"))))
3984 (properties `((upstream-name . "XBSeq")))
3985 (build-system r-build-system)
3986 (propagated-inputs
3987 `(("r-biobase" ,r-biobase)
3988 ("r-deseq2" ,r-deseq2)
3989 ("r-dplyr" ,r-dplyr)
3990 ("r-ggplot2" ,r-ggplot2)
3991 ("r-locfit" ,r-locfit)
3992 ("r-magrittr" ,r-magrittr)
3993 ("r-matrixstats" ,r-matrixstats)
3994 ("r-pracma" ,r-pracma)
3995 ("r-roar" ,r-roar)))
3996 (home-page "https://github.com/Liuy12/XBSeq")
3997 (synopsis "Test for differential expression for RNA-seq data")
3998 (description
3999 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
4000 expression} (DE), where a statistical model was established based on the
4001 assumption that observed signals are the convolution of true expression
4002 signals and sequencing noises. The mapped reads in non-exonic regions are
4003 considered as sequencing noises, which follows a Poisson distribution. Given
4004 measurable observed signal and background noise from RNA-seq data, true
4005 expression signals, assuming governed by the negative binomial distribution,
4006 can be delineated and thus the accurate detection of differential expressed
4007 genes.")
4008 (license license:gpl3+)))
4009
4010 (define-public r-massspecwavelet
4011 (package
4012 (name "r-massspecwavelet")
4013 (version "1.48.1")
4014 (source
4015 (origin
4016 (method url-fetch)
4017 (uri (bioconductor-uri "MassSpecWavelet" version))
4018 (sha256
4019 (base32
4020 "1xcr568a36b570rldy27wq4a2jn7yf5f6fddlzgx6x944jdn3ckz"))))
4021 (properties
4022 `((upstream-name . "MassSpecWavelet")))
4023 (build-system r-build-system)
4024 (propagated-inputs
4025 `(("r-waveslim" ,r-waveslim)))
4026 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
4027 (synopsis "Mass spectrum processing by wavelet-based algorithms")
4028 (description
4029 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
4030 data mainly through the use of wavelet transforms. It supports peak detection
4031 based on @dfn{Continuous Wavelet Transform} (CWT).")
4032 (license license:lgpl2.0+)))
4033
4034 (define-public r-xcms
4035 (package
4036 (name "r-xcms")
4037 (version "3.4.4")
4038 (source
4039 (origin
4040 (method url-fetch)
4041 (uri (bioconductor-uri "xcms" version))
4042 (sha256
4043 (base32
4044 "073f25m7y8z4560k93d99fv72pr7nrgrp054zssi7jhas4l3ddww"))))
4045 (build-system r-build-system)
4046 (propagated-inputs
4047 `(("r-biobase" ,r-biobase)
4048 ("r-biocgenerics" ,r-biocgenerics)
4049 ("r-biocparallel" ,r-biocparallel)
4050 ("r-lattice" ,r-lattice)
4051 ("r-massspecwavelet" ,r-massspecwavelet)
4052 ("r-msnbase" ,r-msnbase)
4053 ("r-multtest" ,r-multtest)
4054 ("r-mzr" ,r-mzr)
4055 ("r-plyr" ,r-plyr)
4056 ("r-protgenerics" ,r-protgenerics)
4057 ("r-rann" ,r-rann)
4058 ("r-rcolorbrewer" ,r-rcolorbrewer)
4059 ("r-robustbase" ,r-robustbase)
4060 ("r-s4vectors" ,r-s4vectors)))
4061 (home-page "https://bioconductor.org/packages/xcms/")
4062 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
4063 (description
4064 "This package provides a framework for processing and visualization of
4065 chromatographically separated and single-spectra mass spectral data. It
4066 imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
4067 data for high-throughput, untargeted analyte profiling.")
4068 (license license:gpl2+)))
4069
4070 (define-public r-wrench
4071 (package
4072 (name "r-wrench")
4073 (version "1.0.0")
4074 (source
4075 (origin
4076 (method url-fetch)
4077 (uri (bioconductor-uri "Wrench" version))
4078 (sha256
4079 (base32
4080 "12gfdj2p52pah67bimz14xcwmcb4c2snjwswj0fns7v3v1h9rlqg"))))
4081 (properties `((upstream-name . "Wrench")))
4082 (build-system r-build-system)
4083 (propagated-inputs
4084 `(("r-limma" ,r-limma)
4085 ("r-locfit" ,r-locfit)
4086 ("r-matrixstats" ,r-matrixstats)))
4087 (home-page "https://github.com/HCBravoLab/Wrench")
4088 (synopsis "Wrench normalization for sparse count data")
4089 (description
4090 "Wrench is a package for normalization sparse genomic count data, like
4091 that arising from 16s metagenomic surveys.")
4092 (license license:artistic2.0)))
4093
4094 (define-public r-wiggleplotr
4095 (package
4096 (name "r-wiggleplotr")
4097 (version "1.6.1")
4098 (source
4099 (origin
4100 (method url-fetch)
4101 (uri (bioconductor-uri "wiggleplotr" version))
4102 (sha256
4103 (base32
4104 "12fhbskkjwv4d9bdy3gab8n9pcf7qpwiwgx0248as445vfw8dil3"))))
4105 (build-system r-build-system)
4106 (propagated-inputs
4107 `(("r-assertthat" ,r-assertthat)
4108 ("r-cowplot" ,r-cowplot)
4109 ("r-dplyr" ,r-dplyr)
4110 ("r-genomeinfodb" ,r-genomeinfodb)
4111 ("r-genomicranges" ,r-genomicranges)
4112 ("r-ggplot2" ,r-ggplot2)
4113 ("r-iranges" ,r-iranges)
4114 ("r-purrr" ,r-purrr)
4115 ("r-rtracklayer" ,r-rtracklayer)
4116 ("r-s4vectors" ,r-s4vectors)))
4117 (home-page "https://bioconductor.org/packages/wiggleplotr/")
4118 (synopsis "Make read coverage plots from BigWig files")
4119 (description
4120 "This package provides tools to visualize read coverage from sequencing
4121 experiments together with genomic annotations (genes, transcripts, peaks).
4122 Introns of long transcripts can be rescaled to a fixed length for better
4123 visualization of exonic read coverage.")
4124 (license license:asl2.0)))
4125
4126 (define-public r-widgettools
4127 (package
4128 (name "r-widgettools")
4129 (version "1.60.0")
4130 (source
4131 (origin
4132 (method url-fetch)
4133 (uri (bioconductor-uri "widgetTools" version))
4134 (sha256
4135 (base32
4136 "0mz69pdr6q69avsvs6r5ncdkdmgwfislpil4v18dsflw4j454gwf"))))
4137 (properties `((upstream-name . "widgetTools")))
4138 (build-system r-build-system)
4139 (home-page "https://bioconductor.org/packages/widgetTools/")
4140 (synopsis "Tools for creating interactive tcltk widgets")
4141 (description
4142 "This packages contains tools to support the construction of tcltk
4143 widgets in R.")
4144 ;; Any version of the LGPL.
4145 (license license:lgpl3+)))
4146
4147 (define-public r-webbioc
4148 (package
4149 (name "r-webbioc")
4150 (version "1.54.0")
4151 (source
4152 (origin
4153 (method url-fetch)
4154 (uri (bioconductor-uri "webbioc" version))
4155 (sha256
4156 (base32
4157 "16n6wc9q51wfpmh9y77p53sqdqdd8pn50c67vf6h4n7gv5wgnpwi"))))
4158 (build-system r-build-system)
4159 (inputs
4160 `(("netpbm" ,netpbm)
4161 ("perl" ,perl)))
4162 (propagated-inputs
4163 `(("r-affy" ,r-affy)
4164 ("r-annaffy" ,r-annaffy)
4165 ("r-biobase" ,r-biobase)
4166 ("r-biocmanager" ,r-biocmanager)
4167 ("r-gcrma" ,r-gcrma)
4168 ("r-multtest" ,r-multtest)
4169 ("r-qvalue" ,r-qvalue)
4170 ("r-vsn" ,r-vsn)))
4171 (home-page "https://www.bioconductor.org/")
4172 (synopsis "Bioconductor web interface")
4173 (description
4174 "This package provides an integrated web interface for doing microarray
4175 analysis using several of the Bioconductor packages. It is intended to be
4176 deployed as a centralized bioinformatics resource for use by many users.
4177 Currently only Affymetrix oligonucleotide analysis is supported.")
4178 (license license:gpl2+)))
4179
4180 (define-public r-zfpkm
4181 (package
4182 (name "r-zfpkm")
4183 (version "1.4.1")
4184 (source
4185 (origin
4186 (method url-fetch)
4187 (uri (bioconductor-uri "zFPKM" version))
4188 (sha256
4189 (base32
4190 "0rvfrjxxvfng9fxxn316gm96v4rahx62vlk3axr2bzjbi1r4s8v5"))))
4191 (properties `((upstream-name . "zFPKM")))
4192 (build-system r-build-system)
4193 (propagated-inputs
4194 `(("r-checkmate" ,r-checkmate)
4195 ("r-dplyr" ,r-dplyr)
4196 ("r-ggplot2" ,r-ggplot2)
4197 ("r-summarizedexperiment" ,r-summarizedexperiment)
4198 ("r-tidyr" ,r-tidyr)))
4199 (home-page "https://github.com/ronammar/zFPKM/")
4200 (synopsis "Functions to facilitate zFPKM transformations")
4201 (description
4202 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
4203 This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
4204 24215113).")
4205 (license license:gpl3)))
4206
4207 (define-public r-rbowtie2
4208 (package
4209 (name "r-rbowtie2")
4210 (version "1.4.0")
4211 (source
4212 (origin
4213 (method url-fetch)
4214 (uri (bioconductor-uri "Rbowtie2" version))
4215 (sha256
4216 (base32
4217 "045cmfwqzcj4zn6r16hkpmr5sd5y0mxvrs5yynf460fdz2p418cr"))))
4218 (properties `((upstream-name . "Rbowtie2")))
4219 (build-system r-build-system)
4220 (inputs
4221 `(("zlib" ,zlib)))
4222 (home-page "https://bioconductor.org/packages/Rbowtie2/")
4223 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
4224 (description
4225 "This package provides an R wrapper of the popular @code{bowtie2}
4226 sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
4227 rapid adapter trimming, identification, and read merging.")
4228 (license license:gpl3+)))
4229
4230 (define-public r-progeny
4231 (package
4232 (name "r-progeny")
4233 (version "1.4.1")
4234 (source
4235 (origin
4236 (method url-fetch)
4237 (uri (bioconductor-uri "progeny" version))
4238 (sha256
4239 (base32
4240 "02z09rbzi305jrwzai8zayxi82563lxcaldp4r9pw564qkbl7pk7"))))
4241 (build-system r-build-system)
4242 (propagated-inputs `(("r-biobase" ,r-biobase)))
4243 (home-page "https://github.com/saezlab/progeny")
4244 (synopsis "Pathway responsive gene activity inference")
4245 (description
4246 "This package provides a function to infer pathway activity from gene
4247 expression. It contains the linear model inferred in the publication
4248 \"Perturbation-response genes reveal signaling footprints in cancer gene
4249 expression\".")
4250 (license license:asl2.0)))