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