gnu: r-biocstyle: Move to (gnu packages bioconductor).
[jackhill/guix/guix.git] / gnu / packages / bioconductor.scm
CommitLineData
fa596599 1;;; GNU Guix --- Functional package management for GNU
f8f181ae 2;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
e8d435f7 3;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org>
61242625 4;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
4f617bfb 5;;; Copyright © 2019, 2020, 2021 Simon Tournier <zimon.toutoune@gmail.com>
488001eb 6;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
1353e536 7;;; Copyright © 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
c61268c1 8;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
fa596599
RW
9;;;
10;;; This file is part of GNU Guix.
11;;;
12;;; GNU Guix is free software; you can redistribute it and/or modify it
13;;; under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 3 of the License, or (at
15;;; your option) any later version.
16;;;
17;;; GNU Guix is distributed in the hope that it will be useful, but
18;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25(define-module (gnu packages bioconductor)
26 #:use-module ((guix licenses) #:prefix license:)
27 #:use-module (guix packages)
28 #:use-module (guix download)
b2dce6b5 29 #:use-module (guix git-download)
fa596599 30 #:use-module (guix build-system r)
183ce988 31 #:use-module (gnu packages)
58656064 32 #:use-module (gnu packages base)
cf9a29b2 33 #:use-module (gnu packages bioinformatics)
a5b56a53
RJ
34 #:use-module (gnu packages cran)
35 #:use-module (gnu packages compression)
c18dccff 36 #:use-module (gnu packages gcc)
cf9a29b2 37 #:use-module (gnu packages graph)
5aef09bd 38 #:use-module (gnu packages graphviz)
dddbc90c 39 #:use-module (gnu packages haskell-xyz)
5cfa4bff 40 #:use-module (gnu packages image)
b64ce4b7 41 #:use-module (gnu packages maths)
6b12f213
RW
42 #:use-module (gnu packages netpbm)
43 #:use-module (gnu packages perl)
2cb71d81 44 #:use-module (gnu packages pkg-config)
f4235c0e 45 #:use-module (gnu packages statistics)
14bb1c48 46 #:use-module (gnu packages web)
7a62d5e0 47 #:use-module (gnu packages xml)
14bb1c48 48 #:use-module (srfi srfi-1))
fa596599 49
557a1089
RW
50\f
51;;; Annotations
52
04a05946
MIP
53(define-public r-org-eck12-eg-db
54 (package
55 (name "r-org-eck12-eg-db")
56 (version "3.12.0")
57 (source
58 (origin
59 (method url-fetch)
60 (uri (bioconductor-uri "org.EcK12.eg.db" version 'annotation))
61 (sha256
62 (base32 "0c4p6jr83k0gm6pvn760yr8xf33wggrfcr6fg7a42a96bcf817gs"))))
63 (properties
64 `((upstream-name . "org.EcK12.eg.db")))
65 (build-system r-build-system)
66 (propagated-inputs
67 `(("r-annotationdbi" ,r-annotationdbi)))
68 (home-page "https://bioconductor.org/packages/org.EcK12.eg.db")
69 (synopsis "Genome wide annotation for E coli strain K12")
70 (description
71 "This package provides genome wide annotation for E coli strain K12,
72primarily based on mapping using Entrez Gene identifiers. Entrez Gene is
73National Center for Biotechnology Information (NCBI)’s database for
74gene-specific information. Entrez Gene maintains records from genomes which
75have been completely sequenced, which have an active research community to
76submit gene-specific information, or which are scheduled for intense sequence
77analysis.")
78 (license license:artistic2.0)))
79
6f15ea24
RW
80(define-public r-reactome-db
81 (package
82 (name "r-reactome-db")
83 (version "1.70.0")
84 (source
85 (origin
86 (method url-fetch)
87 (uri (bioconductor-uri "reactome.db" version 'annotation))
88 (sha256
89 (base32
90 "05wc4fp0faq6h3kq5rwafnips043as31yq11mrjngfxvf5i10srg"))))
91 (properties `((upstream-name . "reactome.db")))
92 (build-system r-build-system)
93 (propagated-inputs
94 `(("r-annotationdbi" ,r-annotationdbi)))
95 (home-page "https://bioconductor.org/packages/reactome.db/")
96 (synopsis "Annotation maps for reactome")
97 (description
98 "This package provides a set of annotation maps for the REACTOME
99database, assembled using data from REACTOME.")
100 (license license:cc-by4.0)))
101
b7d93cf5
RW
102(define-public r-bsgenome-celegans-ucsc-ce6
103 (package
104 (name "r-bsgenome-celegans-ucsc-ce6")
105 (version "1.4.0")
106 (source (origin
107 (method url-fetch)
86ced7b2
RW
108 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce6"
109 version 'annotation))
b7d93cf5
RW
110 (sha256
111 (base32
112 "0mqzb353xv2c3m3vkb315dkmnxkgczp7ndnknyhpgjlybyf715v9"))))
113 (properties
114 `((upstream-name . "BSgenome.Celegans.UCSC.ce6")))
115 (build-system r-build-system)
b7d93cf5
RW
116 (propagated-inputs
117 `(("r-bsgenome" ,r-bsgenome)))
118 (home-page
119 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce6/")
120 (synopsis "Full genome sequences for Worm")
121 (description
122 "This package provides full genome sequences for Caenorhabditis
123elegans (Worm) as provided by UCSC (ce6, May 2008) and stored in Biostrings
0c792ffb
RW
124objects.")
125 (license license:artistic2.0)))
126
127(define-public r-bsgenome-celegans-ucsc-ce10
128 (package
129 (name "r-bsgenome-celegans-ucsc-ce10")
130 (version "1.4.0")
131 (source (origin
132 (method url-fetch)
6998ecba
RW
133 (uri (bioconductor-uri "BSgenome.Celegans.UCSC.ce10"
134 version 'annotation))
0c792ffb
RW
135 (sha256
136 (base32
137 "1zaym97jk4npxk14ifvwz2rvhm4zx9xgs33r9vvx9rlynp0gydrk"))))
138 (properties
139 `((upstream-name . "BSgenome.Celegans.UCSC.ce10")))
140 (build-system r-build-system)
0c792ffb
RW
141 (propagated-inputs
142 `(("r-bsgenome" ,r-bsgenome)))
143 (home-page
144 "https://www.bioconductor.org/packages/BSgenome.Celegans.UCSC.ce10/")
145 (synopsis "Full genome sequences for Worm")
146 (description
147 "This package provides full genome sequences for Caenorhabditis
148elegans (Worm) as provided by UCSC (ce10, Oct 2010) and stored in Biostrings
b7d93cf5
RW
149objects.")
150 (license license:artistic2.0)))
151
183db725
RW
152(define-public r-bsgenome-dmelanogaster-ucsc-dm6
153 (package
154 (name "r-bsgenome-dmelanogaster-ucsc-dm6")
155 (version "1.4.1")
156 (source (origin
157 (method url-fetch)
149f351f
RW
158 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm6"
159 version 'annotation))
183db725
RW
160 (sha256
161 (base32
162 "1bhj0rdgf7lspw4xby9y9mf7v7jxxz8001bc8vw8kf04rjsx6060"))))
163 (properties
164 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm6")))
165 (build-system r-build-system)
183db725
RW
166 (propagated-inputs
167 `(("r-bsgenome" ,r-bsgenome)))
168 (home-page
169 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm6/")
170 (synopsis "Full genome sequences for Fly")
171 (description
172 "This package provides full genome sequences for Drosophila
173melanogaster (Fly) as provided by UCSC (dm6) and stored in Biostrings
174objects.")
175 (license license:artistic2.0)))
176
13dabd69
RW
177(define-public r-bsgenome-dmelanogaster-ucsc-dm3
178 (package
179 (name "r-bsgenome-dmelanogaster-ucsc-dm3")
180 (version "1.4.0")
181 (source (origin
182 (method url-fetch)
87073b7e
RW
183 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3"
184 version 'annotation))
13dabd69
RW
185 (sha256
186 (base32
187 "19bm3lkhhkag3gnwp419211fh0cnr0x6fa0r1lr0ycwrikxdxsv8"))))
188 (properties
189 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3")))
190 (build-system r-build-system)
13dabd69
RW
191 (propagated-inputs
192 `(("r-bsgenome" ,r-bsgenome)))
193 (home-page
194 "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3/")
195 (synopsis "Full genome sequences for Fly")
196 (description
197 "This package provides full genome sequences for Drosophila
198melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
199Biostrings objects.")
200 (license license:artistic2.0)))
201
dfac7eb9
RW
202(define-public r-bsgenome-dmelanogaster-ucsc-dm3-masked
203 (package
204 (name "r-bsgenome-dmelanogaster-ucsc-dm3-masked")
205 (version "1.3.99")
206 (source (origin
207 (method url-fetch)
bf05ece1
RW
208 (uri (bioconductor-uri "BSgenome.Dmelanogaster.UCSC.dm3.masked"
209 version 'annotation))
dfac7eb9
RW
210 (sha256
211 (base32
212 "1756csb09f1br9rj1l3f08qyh4hlymdbd0cfn8x3fq39dn45m5ap"))))
213 (properties
214 `((upstream-name . "BSgenome.Dmelanogaster.UCSC.dm3.masked")))
215 (build-system r-build-system)
216 (propagated-inputs
217 `(("r-bsgenome" ,r-bsgenome)
218 ("r-bsgenome-dmelanogaster-ucsc-dm3"
219 ,r-bsgenome-dmelanogaster-ucsc-dm3)))
220 (home-page "https://www.bioconductor.org/packages/BSgenome.Dmelanogaster.UCSC.dm3.masked/")
221 (synopsis "Full masked genome sequences for Fly")
222 (description
223 "This package provides full masked genome sequences for Drosophila
224melanogaster (Fly) as provided by UCSC (dm3, April 2006) and stored in
225Biostrings objects. The sequences are the same as in
226BSgenome.Dmelanogaster.UCSC.dm3, except that each of them has the 4 following
227masks on top: (1) the mask of assembly gaps (AGAPS mask), (2) the mask of
228intra-contig ambiguities (AMB mask), (3) the mask of repeats from
229RepeatMasker (RM mask), and (4) the mask of repeats from Tandem Repeats
230Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by default.")
231 (license license:artistic2.0)))
232
40a65057
RW
233(define-public r-bsgenome-hsapiens-1000genomes-hs37d5
234 (package
235 (name "r-bsgenome-hsapiens-1000genomes-hs37d5")
236 (version "0.99.1")
237 (source (origin
238 (method url-fetch)
88e7c7db
RW
239 (uri (bioconductor-uri "BSgenome.Hsapiens.1000genomes.hs37d5"
240 version 'annotation))
40a65057
RW
241 (sha256
242 (base32
243 "1cg0g5fqmsvwyw2p9hp2yy4ilk21jkbbrnpgqvb5c36ihjwvc7sr"))))
244 (properties
245 `((upstream-name . "BSgenome.Hsapiens.1000genomes.hs37d5")))
246 (build-system r-build-system)
40a65057
RW
247 (propagated-inputs
248 `(("r-bsgenome" ,r-bsgenome)))
249 (home-page
250 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.1000genomes.hs37d5/")
251 (synopsis "Full genome sequences for Homo sapiens")
252 (description
253 "This package provides full genome sequences for Homo sapiens from
2541000genomes phase2 reference genome sequence (hs37d5), based on NCBI GRCh37.")
255 (license license:artistic2.0)))
256
c51c0033
MIP
257(define-public r-bsgenome-hsapiens-ncbi-grch38
258 (package
259 (name "r-bsgenome-hsapiens-ncbi-grch38")
260 (version "1.3.1000")
261 (source
262 (origin
263 (method url-fetch)
264 (uri (bioconductor-uri "BSgenome.Hsapiens.NCBI.GRCh38"
265 version 'annotation))
266 (sha256
267 (base32
268 "0y75qdq578fh6420vbvsbwmdw8jvr3g06qli2h3vj3pxmjykh9c1"))))
269 (properties `((upstream-name . "BSgenome.Hsapiens.NCBI.GRCh38")))
270 (build-system r-build-system)
271 (propagated-inputs `(("r-bsgenome" ,r-bsgenome)))
272 (home-page
273 "https://bioconductor.org/packages/release/data/annotation/html/\
274BSgenome.Hsapiens.NCBI.GRCh38.html")
275 (synopsis "Full genome sequences for Homo sapiens (GRCh38)")
276 (description
277 "This package provides full genome sequences for Homo sapiens (Human) as
278provided by NCBI (GRCh38, 2013-12-17) and stored in Biostrings objects.")
279 (license license:artistic2.0)))
280
6fbd759b
RW
281(define-public r-bsgenome-hsapiens-ucsc-hg19-masked
282 (package
283 (name "r-bsgenome-hsapiens-ucsc-hg19-masked")
284 (version "1.3.99")
285 (source (origin
286 (method url-fetch)
a47646bd
RW
287 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19.masked"
288 version 'annotation))
6fbd759b
RW
289 (sha256
290 (base32
291 "0452pyah0kv1vsrsjbrqw4k2rm8lc2vc771dzib45gnnfz86qxrr"))))
292 (properties
293 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19.masked")))
294 (build-system r-build-system)
295 (propagated-inputs
296 `(("r-bsgenome" ,r-bsgenome)
297 ("r-bsgenome-hsapiens-ucsc-hg19"
298 ,r-bsgenome-hsapiens-ucsc-hg19)))
299 (home-page "https://bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19.masked/")
300 (synopsis "Full masked genome sequences for Homo sapiens")
301 (description
302 "This package provides full genome sequences for Homo sapiens (Human) as
303provided by UCSC (hg19, Feb. 2009) and stored in Biostrings objects. The
304sequences are the same as in BSgenome.Hsapiens.UCSC.hg19, except that each of
305them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
306mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
307repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
308Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
309default.")
310 (license license:artistic2.0)))
311
5acb9052
RW
312(define-public r-bsgenome-mmusculus-ucsc-mm9
313 (package
314 (name "r-bsgenome-mmusculus-ucsc-mm9")
315 (version "1.4.0")
316 (source (origin
317 (method url-fetch)
21f6dae7
RW
318 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9"
319 version 'annotation))
5acb9052
RW
320 (sha256
321 (base32
322 "1birqw30g2azimxpnjfzmkphan7x131yy8b9h85lfz5fjdg7841i"))))
323 (properties
324 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9")))
325 (build-system r-build-system)
5acb9052
RW
326 (propagated-inputs
327 `(("r-bsgenome" ,r-bsgenome)))
328 (home-page
329 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9/")
330 (synopsis "Full genome sequences for Mouse")
331 (description
332 "This package provides full genome sequences for Mus musculus (Mouse) as
333provided by UCSC (mm9, July 2007) and stored in Biostrings objects.")
334 (license license:artistic2.0)))
335
2bece692
RW
336(define-public r-bsgenome-mmusculus-ucsc-mm9-masked
337 (package
338 (name "r-bsgenome-mmusculus-ucsc-mm9-masked")
339 (version "1.3.99")
340 (source (origin
341 (method url-fetch)
51dc4a2d
RW
342 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm9.masked"
343 version 'annotation))
2bece692
RW
344 (sha256
345 (base32
346 "00bpbm3havqcxr4g63zhllsbpd9q6svgihks7qp7x73nm4gvq7fn"))))
347 (properties
348 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm9.masked")))
349 (build-system r-build-system)
350 (propagated-inputs
351 `(("r-bsgenome" ,r-bsgenome)
352 ("r-bsgenome-mmusculus-ucsc-mm9"
353 ,r-bsgenome-mmusculus-ucsc-mm9)))
99db6db7 354 (home-page "https://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm9.masked/")
2bece692
RW
355 (synopsis "Full masked genome sequences for Mouse")
356 (description
357 "This package provides full genome sequences for Mus musculus (Mouse) as
358provided by UCSC (mm9, Jul. 2007) and stored in Biostrings objects. The
359sequences are the same as in BSgenome.Mmusculus.UCSC.mm9, except that each of
360them has the 4 following masks on top: (1) the mask of assembly gaps (AGAPS
361mask), (2) the mask of intra-contig ambiguities (AMB mask), (3) the mask of
362repeats from RepeatMasker (RM mask), and (4) the mask of repeats from Tandem
363Repeats Finder (TRF mask). Only the AGAPS and AMB masks are \"active\" by
364default." )
365 (license license:artistic2.0)))
366
c3adc830
RW
367(define-public r-bsgenome-mmusculus-ucsc-mm10
368 (package
369 (name "r-bsgenome-mmusculus-ucsc-mm10")
370 (version "1.4.0")
371 (source (origin
372 (method url-fetch)
f83404bc
RW
373 (uri (bioconductor-uri "BSgenome.Mmusculus.UCSC.mm10"
374 version 'annotation))
c3adc830
RW
375 (sha256
376 (base32
377 "12s0nm2na9brjad4rn9l7d3db2aj8qa1xvz0y1k7gk08wayb6bkf"))))
378 (properties
379 `((upstream-name . "BSgenome.Mmusculus.UCSC.mm10")))
380 (build-system r-build-system)
c3adc830
RW
381 (propagated-inputs
382 `(("r-bsgenome" ,r-bsgenome)))
383 (home-page
384 "https://www.bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/")
385 (synopsis "Full genome sequences for Mouse")
386 (description
387 "This package provides full genome sequences for Mus
388musculus (Mouse) as provided by UCSC (mm10, December 2011) and stored
389in Biostrings objects.")
390 (license license:artistic2.0)))
391
a2c66d18 392(define-public r-homo-sapiens
393 (package
394 (name "r-homo-sapiens")
395 (version "1.3.1")
396 (source (origin
397 (method url-fetch)
398 (uri (bioconductor-uri "Homo.sapiens" version 'annotation))
399 (sha256
400 (base32
401 "151vj7h5p1c8yd5swrchk46z469p135wk50hvkl0nhgndvy0jj01"))))
402 (properties
403 `((upstream-name . "Homo.sapiens")))
404 (build-system r-build-system)
405 (propagated-inputs
406 `(("r-genomicfeatures" ,r-genomicfeatures)
407 ("r-go-db" ,r-go-db)
408 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
409 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)
410 ("r-organismdbi" ,r-organismdbi)
411 ("r-annotationdbi" ,r-annotationdbi)))
412 (home-page "https://bioconductor.org/packages/Homo.sapiens/")
413 (synopsis "Annotation package for the Homo.sapiens object")
414 (description
415 "This package contains the Homo.sapiens object to access data from
416several related annotation packages.")
417 (license license:artistic2.0)))
418
3a08940e
RW
419(define-public r-org-ce-eg-db
420 (package
421 (name "r-org-ce-eg-db")
422 (version "3.7.0")
423 (source (origin
424 (method url-fetch)
1c05e637 425 (uri (bioconductor-uri "org.Ce.eg.db" version 'annotation))
3a08940e
RW
426 (sha256
427 (base32
428 "1w5br1ss4ha8wv4v2saj7cmbjc2jw0dyj2f2y269l078z31wcnaz"))))
429 (properties
430 `((upstream-name . "org.Ce.eg.db")))
431 (build-system r-build-system)
432 (propagated-inputs
433 `(("r-annotationdbi" ,r-annotationdbi)))
434 (home-page "https://www.bioconductor.org/packages/org.Ce.eg.db/")
435 (synopsis "Genome wide annotation for Worm")
436 (description
437 "This package provides mappings from Entrez gene identifiers to various
438annotations for the genome of the model worm Caenorhabditis elegans.")
439 (license license:artistic2.0)))
440
f8780e96
RW
441(define-public r-org-dm-eg-db
442 (package
443 (name "r-org-dm-eg-db")
444 (version "3.7.0")
445 (source (origin
446 (method url-fetch)
b0dfc79b 447 (uri (bioconductor-uri "org.Dm.eg.db" version 'annotation))
f8780e96
RW
448 (sha256
449 (base32
450 "1pqjrzlyg72bjpy8zsxvaglc7jsv176bnyi87xdajmkvsgxpm7b3"))))
451 (properties
452 `((upstream-name . "org.Dm.eg.db")))
453 (build-system r-build-system)
454 (propagated-inputs
455 `(("r-annotationdbi" ,r-annotationdbi)))
456 (home-page "https://www.bioconductor.org/packages/org.Dm.eg.db/")
457 (synopsis "Genome wide annotation for Fly")
458 (description
459 "This package provides mappings from Entrez gene identifiers to various
460annotations for the genome of the model fruit fly Drosophila melanogaster.")
461 (license license:artistic2.0)))
462
3dad6087
RW
463(define-public r-org-dr-eg-db
464 (package
465 (name "r-org-dr-eg-db")
466 (version "3.7.0")
467 (source (origin
468 (method url-fetch)
7bb65a22 469 (uri (bioconductor-uri "org.Dr.eg.db" version 'annotation))
3dad6087
RW
470 (sha256
471 (base32
472 "1xs5wsbcpy0iwbjyiv7fax57djqc529ai5fk1qfsdcvlja3cpglx"))))
473 (properties
474 `((upstream-name . "org.Dr.eg.db")))
475 (build-system r-build-system)
476 (propagated-inputs
477 `(("r-annotationdbi" ,r-annotationdbi)))
478 (home-page "https://www.bioconductor.org/packages/org.Dr.eg.db/")
479 (synopsis "Annotation for Zebrafish")
480 (description
481 "This package provides genome wide annotations for Zebrafish, primarily
482based on mapping using Entrez Gene identifiers.")
483 (license license:artistic2.0)))
484
d56df35a
RW
485(define-public r-org-hs-eg-db
486 (package
487 (name "r-org-hs-eg-db")
488 (version "3.7.0")
489 (source (origin
490 (method url-fetch)
f53becc6 491 (uri (bioconductor-uri "org.Hs.eg.db" version 'annotation))
d56df35a
RW
492 (sha256
493 (base32
494 "1qxz9l80yg3qdqszs6dsscp7lrpfi1bgd0pxh9j7q34vprzwhdim"))))
495 (properties
496 `((upstream-name . "org.Hs.eg.db")))
497 (build-system r-build-system)
498 (propagated-inputs
499 `(("r-annotationdbi" ,r-annotationdbi)))
500 (home-page "https://www.bioconductor.org/packages/org.Hs.eg.db/")
501 (synopsis "Genome wide annotation for Human")
502 (description
503 "This package contains genome-wide annotations for Human, primarily based
504on mapping using Entrez Gene identifiers.")
505 (license license:artistic2.0)))
506
8035819f
RW
507(define-public r-org-mm-eg-db
508 (package
509 (name "r-org-mm-eg-db")
510 (version "3.7.0")
511 (source (origin
512 (method url-fetch)
411be88b 513 (uri (bioconductor-uri "org.Mm.eg.db" version 'annotation))
8035819f
RW
514 (sha256
515 (base32
516 "1i3nvrd3wjigf1rmgxq1p5xxc3p8v02h5gwi62s30rkrsyjjfjxx"))))
517 (properties
518 `((upstream-name . "org.Mm.eg.db")))
519 (build-system r-build-system)
520 (propagated-inputs
521 `(("r-annotationdbi" ,r-annotationdbi)))
522 (home-page "https://www.bioconductor.org/packages/org.Mm.eg.db/")
523 (synopsis "Genome wide annotation for Mouse")
524 (description
525 "This package provides mappings from Entrez gene identifiers to various
526annotations for the genome of the model mouse Mus musculus.")
527 (license license:artistic2.0)))
528
fe0b76e2
RW
529(define-public r-bsgenome-hsapiens-ucsc-hg19
530 (package
531 (name "r-bsgenome-hsapiens-ucsc-hg19")
532 (version "1.4.0")
533 (source (origin
534 (method url-fetch)
e7a8cf2e
RW
535 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg19"
536 version 'annotation))
fe0b76e2
RW
537 (sha256
538 (base32
539 "1y0nqpk8cw5a34sd9hmin3z4v7iqm6hf6l22cl81vlbxqbjibxc8"))))
540 (properties
541 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg19")))
542 (build-system r-build-system)
fe0b76e2
RW
543 (propagated-inputs
544 `(("r-bsgenome" ,r-bsgenome)))
545 (home-page
546 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg19/")
547 (synopsis "Full genome sequences for Homo sapiens")
548 (description
549 "This package provides full genome sequences for Homo sapiens as provided
550by UCSC (hg19, February 2009) and stored in Biostrings objects.")
551 (license license:artistic2.0)))
552
8ce240fd
RJ
553(define-public r-bsgenome-hsapiens-ucsc-hg38
554 (package
555 (name "r-bsgenome-hsapiens-ucsc-hg38")
556 (version "1.4.1")
557 (source (origin
558 (method url-fetch)
559 (uri (bioconductor-uri "BSgenome.Hsapiens.UCSC.hg38"
560 version 'annotation))
561 (sha256
562 (base32
563 "1ql08pvi4vv0ynvg4qs9kysw1c7s3crkgin6zxvgzqk6fray9mvi"))))
564 (properties
565 `((upstream-name . "BSgenome.Hsapiens.UCSC.hg38")))
566 (build-system r-build-system)
567 (propagated-inputs
568 `(("r-bsgenome" ,r-bsgenome)))
569 (home-page
570 "https://www.bioconductor.org/packages/BSgenome.Hsapiens.UCSC.hg38/")
571 (synopsis "Full genome sequences for Homo sapiens")
572 (description
573 "This package provides full genome sequences for Homo sapiens (Human)
574as provided by UCSC (hg38, Dec. 2013) and stored in Biostrings objects.")
575 (license license:artistic2.0)))
576
8324e64c
RW
577(define-public r-ensdb-hsapiens-v75
578 (package
579 (name "r-ensdb-hsapiens-v75")
580 (version "2.99.0")
581 (source
582 (origin
583 (method url-fetch)
584 (uri (bioconductor-uri "EnsDb.Hsapiens.v75" version 'annotation))
585 (sha256
586 (base32
587 "0jx6rf6v0j8yr07q3c1h7s121901dc400nm6xaiv4i7kb5czjn9c"))))
588 (properties
589 `((upstream-name . "EnsDb.Hsapiens.v75")))
590 (build-system r-build-system)
591 (propagated-inputs
592 `(("r-ensembldb" ,r-ensembldb)))
593 (home-page "https://bioconductor.org/packages/EnsDb.Hsapiens.v75")
594 (synopsis "Ensembl based annotation package")
595 (description
596 "This package exposes an annotation database generated from Ensembl.")
597 (license license:artistic2.0)))
598
66e35ce6
RW
599(define-public r-txdb-hsapiens-ucsc-hg19-knowngene
600 (package
601 (name "r-txdb-hsapiens-ucsc-hg19-knowngene")
602 (version "3.2.2")
603 (source (origin
604 (method url-fetch)
f2580a13
RW
605 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg19.knownGene"
606 version 'annotation))
66e35ce6
RW
607 (sha256
608 (base32
609 "1sajhcqqwazgz2lqbik7rd935i7kpnh08zxbp2ra10j72yqy4g86"))))
610 (properties
611 `((upstream-name . "TxDb.Hsapiens.UCSC.hg19.knownGene")))
612 (build-system r-build-system)
66e35ce6
RW
613 (propagated-inputs
614 `(("r-genomicfeatures" ,r-genomicfeatures)))
615 (home-page
616 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg19.knownGene/")
617 (synopsis "Annotation package for human genome in TxDb format")
618 (description
619 "This package provides an annotation database of Homo sapiens genome
620data. It is derived from the UCSC hg19 genome and based on the \"knownGene\"
798b80ce
RW
621track. The database is exposed as a @code{TxDb} object.")
622 (license license:artistic2.0)))
623
624(define-public r-txdb-hsapiens-ucsc-hg38-knowngene
625 (package
626 (name "r-txdb-hsapiens-ucsc-hg38-knowngene")
627 (version "3.4.6")
628 (source (origin
629 (method url-fetch)
d78db088
RW
630 (uri (bioconductor-uri "TxDb.Hsapiens.UCSC.hg38.knownGene"
631 version 'annotation))
798b80ce
RW
632 (sha256
633 (base32
634 "12j7rri9r129v9w1yiqadg952dx462dh092sxif3r5kk8l7bxkn9"))))
635 (properties
636 `((upstream-name . "TxDb.Hsapiens.UCSC.hg38.knownGene")))
637 (build-system r-build-system)
638 (propagated-inputs
639 `(("r-genomicfeatures" ,r-genomicfeatures)))
640 (home-page
641 "https://bioconductor.org/packages/TxDb.Hsapiens.UCSC.hg38.knownGene/")
642 (synopsis "Annotation package for human genome in TxDb format")
643 (description
644 "This package provides an annotation database of Homo sapiens genome
645data. It is derived from the UCSC hg38 genome and based on the \"knownGene\"
66e35ce6
RW
646track. The database is exposed as a @code{TxDb} object.")
647 (license license:artistic2.0)))
648
d220babf
RW
649(define-public r-txdb-mmusculus-ucsc-mm9-knowngene
650 (package
651 (name "r-txdb-mmusculus-ucsc-mm9-knowngene")
652 (version "3.2.2")
653 (source (origin
654 (method url-fetch)
1afdf41b
RW
655 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm9.knownGene"
656 version 'annotation))
d220babf
RW
657 (sha256
658 (base32
659 "16bjxy00363hf91ik2mqlqls86i07gia72qh92xc3l1ncch61mx2"))))
660 (properties
661 `((upstream-name . "TxDb.Mmusculus.UCSC.mm9.knownGene")))
662 (build-system r-build-system)
663 (propagated-inputs
664 `(("r-genomicfeatures" ,r-genomicfeatures)
665 ("r-annotationdbi" ,r-annotationdbi)))
666 (home-page
667 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm9.knownGene/")
668 (synopsis "Annotation package for mouse genome in TxDb format")
669 (description
670 "This package provides an annotation database of Mouse genome data. It
671is derived from the UCSC mm9 genome and based on the \"knownGene\" track. The
672database is exposed as a @code{TxDb} object.")
673 (license license:artistic2.0)))
674
7bc5d1b0
RW
675(define-public r-txdb-mmusculus-ucsc-mm10-knowngene
676 (package
677 (name "r-txdb-mmusculus-ucsc-mm10-knowngene")
b69c7703 678 (version "3.10.0")
7bc5d1b0
RW
679 (source (origin
680 (method url-fetch)
c271d990
RW
681 (uri (bioconductor-uri "TxDb.Mmusculus.UCSC.mm10.knownGene"
682 version 'annotation))
7bc5d1b0
RW
683 (sha256
684 (base32
b69c7703 685 "0xs9npnhbwll7p62hibs02y4ac23jchdcr25i6a7qwq1kms82qk9"))))
7bc5d1b0
RW
686 (properties
687 `((upstream-name . "TxDb.Mmusculus.UCSC.mm10.knownGene")))
688 (build-system r-build-system)
7bc5d1b0
RW
689 (propagated-inputs
690 `(("r-bsgenome" ,r-bsgenome)
691 ("r-genomicfeatures" ,r-genomicfeatures)
692 ("r-annotationdbi" ,r-annotationdbi)))
693 (home-page
694 "https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene/")
695 (synopsis "Annotation package for TxDb knownGene object(s) for Mouse")
696 (description
697 "This package loads a TxDb object, which is an R interface to
698prefabricated databases contained in this package. This package provides
699the TxDb object of Mouse data as provided by UCSC (mm10, December 2011)
700based on the knownGene track.")
701 (license license:artistic2.0)))
702
7cd446fd
RW
703(define-public r-txdb-celegans-ucsc-ce6-ensgene
704 (package
705 (name "r-txdb-celegans-ucsc-ce6-ensgene")
706 (version "3.2.2")
707 (source
708 (origin
709 (method url-fetch)
710 (uri (bioconductor-uri "TxDb.Celegans.UCSC.ce6.ensGene"
711 version 'annotation))
712 (sha256
713 (base32
714 "1sgppva33cdy4isj2is8mfalj5gmmkpbkq9w1d83a4agcq31mi90"))))
715 (properties
716 `((upstream-name . "TxDb.Celegans.UCSC.ce6.ensGene")))
717 (build-system r-build-system)
718 (propagated-inputs
719 `(("r-annotationdbi" ,r-annotationdbi)
720 ("r-genomicfeatures" ,r-genomicfeatures)))
721 (home-page "https://bioconductor.org/packages/TxDb.Celegans.UCSC.ce6.ensGene/")
722 (synopsis "Annotation package for C elegans TxDb objects")
723 (description
724 "This package exposes a C elegans annotation database generated from UCSC
725by exposing these as TxDb objects.")
726 (license license:artistic2.0)))
727
0f5c9cec
RW
728(define-public r-fdb-infiniummethylation-hg19
729 (package
730 (name "r-fdb-infiniummethylation-hg19")
731 (version "2.2.0")
732 (source (origin
733 (method url-fetch)
6aca4054
RW
734 (uri (bioconductor-uri "FDb.InfiniumMethylation.hg19"
735 version 'annotation))
0f5c9cec
RW
736 (sha256
737 (base32
738 "0gq90fvph6kgrpjb89nvzq6hl1k24swn19rgjh5g98l86mja6nk0"))))
739 (properties
740 `((upstream-name . "FDb.InfiniumMethylation.hg19")))
741 (build-system r-build-system)
742 (propagated-inputs
743 `(("r-biostrings" ,r-biostrings)
744 ("r-genomicfeatures" ,r-genomicfeatures)
745 ("r-annotationdbi" ,r-annotationdbi)
746 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
747 ("r-txdb-hsapiens-ucsc-hg19-knowngene" ,r-txdb-hsapiens-ucsc-hg19-knowngene)))
748 (home-page "https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/")
749 (synopsis "Compiled HumanMethylation27 and HumanMethylation450 annotations")
750 (description
751 "This is an annotation package for Illumina Infinium DNA methylation
752probes. It contains the compiled HumanMethylation27 and HumanMethylation450
753annotations.")
754 (license license:artistic2.0)))
755
9475a248
RW
756(define-public r-illuminahumanmethylationepicmanifest
757 (package
758 (name "r-illuminahumanmethylationepicmanifest")
759 (version "0.3.0")
760 (source (origin
761 (method url-fetch)
25f567a8
RW
762 (uri (bioconductor-uri "IlluminaHumanMethylationEPICmanifest"
763 version 'annotation))
9475a248
RW
764 (sha256
765 (base32
766 "0alhjda5g186z8b1nsmnpfswrlj7prdz8mkwx60wkkl6hkcnk6p3"))))
767 (properties
768 `((upstream-name . "IlluminaHumanMethylationEPICmanifest")))
769 (build-system r-build-system)
770 (propagated-inputs
771 `(("r-minfi" ,r-minfi)))
772 (home-page "https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest/")
773 (synopsis "Manifest for Illumina's EPIC methylation arrays")
774 (description
775 "This is a manifest package for Illumina's EPIC methylation arrays.")
776 (license license:artistic2.0)))
e8d435f7 777
f8a5af46
RW
778(define-public r-do-db
779 (package
780 (name "r-do-db")
781 (version "2.9")
782 (source (origin
783 (method url-fetch)
eed2766a 784 (uri (bioconductor-uri "DO.db" version 'annotation))
f8a5af46
RW
785 (sha256
786 (base32
787 "10bqqa124l61ivzy4mdd3z3ar9a6537qbxw23pc4y9w8a6dwnavn"))))
788 (properties
789 `((upstream-name . "DO.db")))
790 (build-system r-build-system)
791 (propagated-inputs
792 `(("r-annotationdbi" ,r-annotationdbi)))
793 (home-page "https://www.bioconductor.org/packages/DO.db/")
794 (synopsis "Annotation maps describing the entire Disease Ontology")
795 (description
796 "This package provides a set of annotation maps describing the entire
797Disease Ontology.")
798 (license license:artistic2.0)))
799
83b42091
RW
800(define-public r-pfam-db
801 (package
802 (name "r-pfam-db")
803 (version "3.8.2")
804 (source
805 (origin
806 (method url-fetch)
807 (uri (bioconductor-uri "PFAM.db" version 'annotation))
808 (sha256
809 (base32
810 "0rn1arzzcniy3yyc4yc44vn40g0cqss37dhwnvsgxpfayqq1k59s"))))
811 (properties `((upstream-name . "PFAM.db")))
812 (build-system r-build-system)
813 (propagated-inputs
814 `(("r-annotationdbi" ,r-annotationdbi)))
815 (home-page "https://bioconductor.org/packages/PFAM.db")
816 (synopsis "Set of protein ID mappings for PFAM")
817 (description
818 "This package provides a set of protein ID mappings for PFAM, assembled
819using data from public repositories.")
820 (license license:artistic2.0)))
821
40be965e
RW
822(define-public r-phastcons100way-ucsc-hg19
823 (package
824 (name "r-phastcons100way-ucsc-hg19")
825 (version "3.7.2")
826 (source
827 (origin
828 (method url-fetch)
829 (uri (bioconductor-uri "phastCons100way.UCSC.hg19"
830 version 'annotation))
831 (sha256
832 (base32
833 "1jmc4k4zgkx5vr2plnidnd9bidlwlb0kr7mjg60cqjw7dq7jl1fa"))))
834 (properties
835 `((upstream-name . "phastCons100way.UCSC.hg19")))
836 (build-system r-build-system)
837 (propagated-inputs
838 `(("r-bsgenome" ,r-bsgenome)
839 ("r-genomeinfodb" ,r-genomeinfodb)
840 ("r-genomicranges" ,r-genomicranges)
841 ("r-genomicscores" ,r-genomicscores)
842 ("r-iranges" ,r-iranges)
843 ("r-s4vectors" ,r-s4vectors)))
844 (home-page "https://bioconductor.org/packages/phastCons100way.UCSC.hg19")
845 (synopsis "UCSC phastCons conservation scores for hg19")
846 (description
847 "This package provides UCSC phastCons conservation scores for the human
848genome (hg19) calculated from multiple alignments with other 99 vertebrate
849species.")
850 (license license:artistic2.0)))
851
2cc51108 852\f
557a1089
RW
853;;; Experiment data
854
692bce15
RW
855(define-public r-abadata
856 (package
857 (name "r-abadata")
858 (version "1.12.0")
859 (source (origin
860 (method url-fetch)
ced61edf 861 (uri (bioconductor-uri "ABAData" version 'experiment))
692bce15
RW
862 (sha256
863 (base32
864 "1bmj341xcymlrk02gss5vvrqc4ddas0rdw39lnpsj98hq6n11p5z"))))
865 (properties
866 `((upstream-name . "ABAData")))
867 (build-system r-build-system)
868 (propagated-inputs
869 `(("r-annotationdbi" ,r-annotationdbi)))
870 (home-page "https://www.bioconductor.org/packages/ABAData/")
871 (synopsis "Gene expression in human brain regions from Allen Brain Atlas")
872 (description
873 "This package provides the data for the gene expression enrichment
874analysis conducted in the package ABAEnrichment. The package includes three
875datasets which are derived from the Allen Brain Atlas:
876
877@enumerate
878@item Gene expression data from Human Brain (adults) averaged across donors,
879@item Gene expression data from the Developing Human Brain pooled into five
880 age categories and averaged across donors, and
881@item a developmental effect score based on the Developing Human Brain
882 expression data.
883@end enumerate
884
885All datasets are restricted to protein coding genes.")
886 (license license:gpl2+)))
887
b50c9660
RW
888(define-public r-arrmdata
889 (package
890 (name "r-arrmdata")
891 (version "1.18.0")
892 (source (origin
893 (method url-fetch)
b86f7746 894 (uri (bioconductor-uri "ARRmData" version 'experiment))
b50c9660
RW
895 (sha256
896 (base32
897 "0r1y3zn7ly4k3ngx55vfavn9s6aidbddlv2fbmj7hj3hvpslmyly"))))
898 (properties
899 `((upstream-name . "ARRmData")))
900 (build-system r-build-system)
901 (home-page "https://www.bioconductor.org/packages/ARRmData/")
902 (synopsis "Example dataset for normalization of Illumina 450k methylation data")
903 (description
904 "This package provides raw beta values from 36 samples across 3 groups
905from Illumina 450k methylation arrays.")
906 (license license:artistic2.0)))
907
e5610fd9
RW
908(define-public r-genelendatabase
909 (package
910 (name "r-genelendatabase")
911 (version "1.18.0")
912 (source
913 (origin
914 (method url-fetch)
915 (uri (bioconductor-uri "geneLenDataBase" version 'experiment))
916 (sha256
917 (base32
918 "03gm4pvsfascx7kjg0jycpf4f572mja68wwmwigs390vbmawyb4a"))))
919 (properties
920 `((upstream-name . "geneLenDataBase")))
921 (build-system r-build-system)
922 (propagated-inputs
923 `(("r-rtracklayer" ,r-rtracklayer)
924 ("r-genomicfeatures" ,r-genomicfeatures)))
925 (home-page "https://bioconductor.org/packages/geneLenDataBase/")
926 (synopsis "Lengths of mRNA transcripts for a number of genomes")
927 (description
928 "This package provides the lengths of mRNA transcripts for a number of
929genomes and gene ID formats, largely based on the UCSC table browser.")
930 (license license:lgpl2.0+)))
931
e7fa79fd
RW
932(define-public r-pasilla
933 (package
934 (name "r-pasilla")
935 (version "1.14.0")
936 (source (origin
937 (method url-fetch)
938 (uri (string-append
939 "http://bioconductor.org/packages/release/data/experiment"
940 "/src/contrib/pasilla_" version ".tar.gz"))
941 (sha256
942 (base32
943 "0h124i2fb2lbj2k48zzf1n7ldqa471bs26fbd9vw50299aqx28x0"))))
944 (build-system r-build-system)
945 (propagated-inputs
946 `(("r-biocstyle" ,r-biocstyle)
947 ("r-dexseq" ,r-dexseq)
948 ("r-knitr" ,r-knitr)
949 ("r-rmarkdown" ,r-rmarkdown)))
950 (home-page "https://www.bioconductor.org/packages/pasilla/")
951 (synopsis "Data package with per-exon and per-gene read counts")
952 (description "This package provides per-exon and per-gene read counts
953computed for selected genes from RNA-seq data that were presented in the
954article 'Conservation of an RNA regulatory map between Drosophila and mammals'
955by Brooks et al., Genome Research 2011.")
956 (license license:lgpl2.1+)))
957
557a1089
RW
958(define-public r-hsmmsinglecell
959 (package
960 (name "r-hsmmsinglecell")
961 (version "1.2.0")
962 (source (origin
963 (method url-fetch)
545e67ac 964 (uri (bioconductor-uri "HSMMSingleCell" version 'experiment))
557a1089
RW
965 (sha256
966 (base32
967 "1vxnr8gr6md85g39csy7g2sqqajiqgyvznys2qa9yixd2b01yph9"))))
968 (properties
969 `((upstream-name . "HSMMSingleCell")))
970 (build-system r-build-system)
971 (home-page "https://www.bioconductor.org/packages/HSMMSingleCell/")
972 (synopsis "Single-cell RNA-Seq for differentiating human skeletal muscle myoblasts (HSMM)")
973 (description
974 "Skeletal myoblasts undergo a well-characterized sequence of
975morphological and transcriptional changes during differentiation. In this
976experiment, primary @dfn{human skeletal muscle myoblasts} (HSMM) were expanded
977under high mitogen conditions (GM) and then differentiated by switching to
978low-mitogen media (DM). RNA-Seq libraries were sequenced from each of several
979hundred cells taken over a time-course of serum-induced differentiation.
980Between 49 and 77 cells were captured at each of four time points (0, 24, 48,
98172 hours) following serum switch using the Fluidigm C1 microfluidic system.
982RNA from each cell was isolated and used to construct mRNA-Seq libraries,
983which were then sequenced to a depth of ~4 million reads per library,
984resulting in a complete gene expression profile for each cell.")
985 (license license:artistic2.0)))
ad8f46c6 986
987(define-public r-all
988 (package
989 (name "r-all")
990 (version "1.26.0")
991 (source (origin
992 (method url-fetch)
41728d23 993 (uri (bioconductor-uri "ALL" version 'experiment))
ad8f46c6 994 (sha256
995 (base32
996 "1z7kpjw4ndj6fkxwvhqf3gawhrn26ksrlns7j2c78qzxqmjndik9"))))
997 (properties `((upstream-name . "ALL")))
998 (build-system r-build-system)
999 (propagated-inputs
1000 `(("r-biobase" ,r-biobase)))
1001 (home-page "https://bioconductor.org/packages/ALL")
1002 (synopsis "Acute Lymphoblastic Leukemia data from the Ritz laboratory")
1003 (description
1004 "The data consist of microarrays from 128 different individuals with
1005@dfn{acute lymphoblastic leukemia} (ALL). A number of additional covariates
1006are available. The data have been normalized (using rma) and it is the
1007jointly normalized data that are available here. The data are presented in
1008the form of an @code{exprSet} object.")
1009 (license license:artistic2.0)))
557a1089 1010
53b1e10f
RW
1011(define-public r-affydata
1012 (package
1013 (name "r-affydata")
1014 (version "1.32.0")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (bioconductor-uri "affydata" version 'experiment))
1019 (sha256
1020 (base32
1021 "1l9qhmjqgbrdl9cmd74rlnvmvr6mslbmckb83n0211whp2i0b7h5"))))
1022 (properties `((upstream-name . "affydata")))
1023 (build-system r-build-system)
1024 (propagated-inputs
1025 `(("r-affy" ,r-affy)))
1026 (home-page "https://bioconductor.org/packages/affydata/")
1027 (synopsis "Affymetrix data for demonstration purposes")
1028 (description
1029 "This package provides example datasets that represent 'real world
1030examples' of Affymetrix data, unlike the artificial examples included in the
1031package @code{affy}.")
1032 (license license:gpl2+)))
1033
eb2f1a7d
MIP
1034(define-public r-gagedata
1035 (package
1036 (name "r-gagedata")
1037 (version "2.28.0")
1038 (source
1039 (origin
1040 (method url-fetch)
1041 (uri (bioconductor-uri "gageData" version 'experiment))
1042 (sha256
1043 (base32 "16lmnvmbykvbdgwyx7r2jc217gb9nidn81860v5kri99g97j4jdn"))))
1044 (properties `((upstream-name . "gageData")))
1045 (build-system r-build-system)
1046 (home-page "https://bioconductor.org/packages/gageData")
1047 (synopsis "Auxillary data for gage package")
1048 (description
1049 "This is a supportive data package for the software package @code{gage}.
1050However, the data supplied here are also useful for gene set or pathway
1051analysis or microarray data analysis in general. In this package, we provide
1052two demo microarray dataset: GSE16873 (a breast cancer dataset from GEO) and
1053BMP6 (originally published as an demo dataset for GAGE, also registered as
1054GSE13604 in GEO). This package also includes commonly used gene set data based
1055on KEGG pathways and GO terms for major research species, including human,
1056mouse, rat and budding yeast. Mapping data between common gene IDs for budding
1057yeast are also included.")
1058 (license license:gpl2+)))
1059
ff1146b9
RW
1060(define-public r-curatedtcgadata
1061 (package
1062 (name "r-curatedtcgadata")
1063 (version "1.8.0")
1064 (source
1065 (origin
1066 (method url-fetch)
1067 (uri (bioconductor-uri "curatedTCGAData" version 'experiment))
1068 (sha256
1069 (base32
1070 "02y6cgihmsl9b4a9mmcdjjgjp06lpz04biyvxd3n5lk5gnqd9r3y"))))
1071 (properties
1072 `((upstream-name . "curatedTCGAData")))
1073 (build-system r-build-system)
1074 (propagated-inputs
1075 `(("r-annotationhub" ,r-annotationhub)
1076 ("r-experimenthub" ,r-experimenthub)
1077 ("r-hdf5array" ,r-hdf5array)
1078 ("r-multiassayexperiment" ,r-multiassayexperiment)
1079 ("r-s4vectors" ,r-s4vectors)
1080 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1081 (home-page "https://bioconductor.org/packages/curatedTCGAData/")
1082 (synopsis "Curated data from The Cancer Genome Atlas")
1083 (description
1084 "This package provides publicly available data from The Cancer Genome
1085Atlas (TCGA) as @code{MultiAssayExperiment} objects.
1086@code{MultiAssayExperiment} integrates multiple assays (e.g., RNA-seq, copy
1087number, mutation, microRNA, protein, and others) with clinical / pathological
1088data. It also links assay barcodes with patient identifiers, enabling
1089harmonized subsetting of rows (features) and columns (patients / samples)
1090across the entire multi-'omics experiment.")
1091 (license license:artistic2.0)))
1092
557a1089
RW
1093\f
1094;;; Packages
1095
e5d722fb
RW
1096(define-public r-biocversion
1097 (package
1098 (name "r-biocversion")
70ab9909 1099 (version "3.12.0")
e5d722fb
RW
1100 (source
1101 (origin
1102 (method url-fetch)
1103 (uri (bioconductor-uri "BiocVersion" version))
1104 (sha256
1105 (base32
70ab9909 1106 "1cj9swyf4zbkdq45bhw0kymh2aghkwimxjlfj5r2j7kdiyh6n3rk"))))
e5d722fb
RW
1107 (properties `((upstream-name . "BiocVersion")))
1108 (build-system r-build-system)
1109 (home-page "https://bioconductor.org/packages/BiocVersion/")
1110 (synopsis "Set the appropriate version of Bioconductor packages")
1111 (description
1112 "This package provides repository information for the appropriate version
1113of Bioconductor.")
1114 (license license:artistic2.0)))
1115
14bba460
RW
1116(define-public r-biocgenerics
1117 (package
1118 (name "r-biocgenerics")
aa311eaa 1119 (version "0.36.0")
14bba460
RW
1120 (source (origin
1121 (method url-fetch)
1122 (uri (bioconductor-uri "BiocGenerics" version))
1123 (sha256
1124 (base32
aa311eaa 1125 "1y9pgangz2f0n9v3zj8brz8bv7a1yjsncdnd5h1l7zv0c0j9fh9q"))))
14bba460
RW
1126 (properties
1127 `((upstream-name . "BiocGenerics")))
1128 (build-system r-build-system)
1129 (home-page "https://bioconductor.org/packages/BiocGenerics")
1130 (synopsis "S4 generic functions for Bioconductor")
1131 (description
1132 "This package provides S4 generic functions needed by many Bioconductor
1133packages.")
1134 (license license:artistic2.0)))
1135
17d95689
RW
1136(define-public r-coverageview
1137 (package
1138 (name "r-coverageview")
1139 (version "1.28.0")
1140 (source (origin
1141 (method url-fetch)
1142 (uri (bioconductor-uri "CoverageView" version))
1143 (sha256
1144 (base32
1145 "1k89gzqhd8ca8s9gk5bfzringnc5nayqbwzwwy35fls1cg96qmsj"))))
1146 (build-system r-build-system)
1147 (propagated-inputs
1148 `(("r-s4vectors" ,r-s4vectors)
1149 ("r-iranges" ,r-iranges)
1150 ("r-genomicranges" ,r-genomicranges)
1151 ("r-genomicalignments" ,r-genomicalignments)
1152 ("r-rtracklayer" ,r-rtracklayer)
1153 ("r-rsamtools" ,r-rsamtools)))
1154 (home-page "https://bioconductor.org/packages/CoverageView/")
1155 (synopsis "Coverage visualization package for R")
1156 (description "This package provides a framework for the visualization of
1157genome coverage profiles. It can be used for ChIP-seq experiments, but it can
1158be also used for genome-wide nucleosome positioning experiments or other
1159experiment types where it is important to have a framework in order to inspect
1160how the coverage distributed across the genome.")
1161 (license license:artistic2.0)))
1162
1abb6a2a
RW
1163(define-public r-cummerbund
1164 (package
1165 (name "r-cummerbund")
1166 (version "2.32.0")
1167 (source (origin
1168 (method url-fetch)
1169 (uri (bioconductor-uri "cummeRbund" version))
1170 (sha256
1171 (base32
1172 "1x7rby50api1c66al6a0i92q82ydjmh3h8l2k7hj0ffpn8c5pdgj"))))
1173 (build-system r-build-system)
1174 (propagated-inputs
1175 `(("r-biobase" ,r-biobase)
1176 ("r-biocgenerics" ,r-biocgenerics)
1177 ("r-fastcluster" ,r-fastcluster)
1178 ("r-ggplot2" ,r-ggplot2)
1179 ("r-gviz" ,r-gviz)
1180 ("r-plyr" ,r-plyr)
1181 ("r-reshape2" ,r-reshape2)
1182 ("r-rsqlite" ,r-rsqlite)
1183 ("r-rtracklayer" ,r-rtracklayer)
1184 ("r-s4vectors" ,r-s4vectors)))
1185 (home-page "https://bioconductor.org/packages/cummeRbund/")
1186 (synopsis "Analyze Cufflinks high-throughput sequencing data")
1187 (description "This package allows for persistent storage, access,
1188exploration, and manipulation of Cufflinks high-throughput sequencing
1189data. In addition, provides numerous plotting functions for commonly
1190used visualizations.")
1191 (license license:artistic2.0)))
1192
30a4bd3b
RW
1193(define-public r-bluster
1194 (package
1195 (name "r-bluster")
1196 (version "1.0.0")
1197 (source (origin
1198 (method url-fetch)
1199 (uri (bioconductor-uri "bluster" version))
1200 (sha256
1201 (base32
1202 "0izrf82m5znyrgai5y5jss4k2brabh4ajxdvnlwwc92l5bw7jp61"))))
1203 (properties `((upstream-name . "bluster")))
1204 (build-system r-build-system)
1205 (propagated-inputs
1206 `(("r-biocneighbors" ,r-biocneighbors)
1207 ("r-biocparallel" ,r-biocparallel)
1208 ("r-igraph" ,r-igraph)
1209 ("r-matrix" ,r-matrix)
1210 ("r-rcpp" ,r-rcpp)
1211 ("r-s4vectors" ,r-s4vectors)))
1212 (native-inputs
1213 `(("r-knitr" ,r-knitr)))
1214 (home-page "https://bioconductor.org/packages/bluster")
1215 (synopsis "Clustering algorithms for Bioconductor")
1216 (description"This package wraps common clustering algorithms in an easily
1217extended S4 framework. Backends are implemented for hierarchical, k-means
1218and graph-based clustering. Several utilities are also provided to compare
1219and evaluate clustering results.")
1220 (license license:gpl3)))
1221
cc54848a
RW
1222(define-public r-ideoviz
1223 (package
1224 (name "r-ideoviz")
1225 (version "1.26.0")
1226 (source (origin
1227 (method url-fetch)
1228 (uri (bioconductor-uri "IdeoViz" version))
1229 (sha256
1230 (base32
1231 "1k5c0skr6pvpcvkak9f0a088w5wsx4fl3jb9a76gyyni4nkj7djq"))))
1232 (build-system r-build-system)
1233 (propagated-inputs
1234 `(("r-biobase" ,r-biobase)
1235 ("r-iranges" ,r-iranges)
1236 ("r-genomicranges" ,r-genomicranges)
1237 ("r-rcolorbrewer" ,r-rcolorbrewer)
1238 ("r-rtracklayer" ,r-rtracklayer)
1239 ("r-genomeinfodb" ,r-genomeinfodb)))
1240 (home-page "https://bioconductor.org/packages/IdeoViz/")
1241 (synopsis "Plots data along a chromosomal ideogram")
1242 (description "This package provides functions to plot data associated with
1243arbitrary genomic intervals along chromosomal ideogram.")
1244 (license license:gpl2)))
1245
eb3c1051
RW
1246;; This is a CRAN package, but it depends on r-bsgenome-hsapiens-ucsc-hg19
1247;; from Bioconductor.
1248(define-public r-deconstructsigs
1249 (package
1250 (name "r-deconstructsigs")
1251 (version "1.8.0")
1252 (source (origin
1253 (method url-fetch)
1254 (uri (cran-uri "deconstructSigs" version))
1255 (sha256
1256 (base32
1257 "014x0nb23jb98666kaav2phkvmkr38pi38jv0dqd4jv7zp0gdf1a"))))
1258 (properties
1259 `((upstream-name . "deconstructSigs")))
1260 (build-system r-build-system)
1261 (propagated-inputs
1262 `(("r-bsgenome" ,r-bsgenome)
1263 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
1264 ("r-genomeinfodb" ,r-genomeinfodb)
1265 ("r-reshape2" ,r-reshape2)))
1266 (home-page "https://github.com/raerose01/deconstructSigs")
1267 (synopsis "Identifies signatures present in a tumor sample")
1268 (description "This package takes sample information in the form of the
1269fraction of mutations in each of 96 trinucleotide contexts and identifies
1270the weighted combination of published signatures that, when summed, most
1271closely reconstructs the mutational profile.")
1272 (license license:gpl2+)))
1273
17235ec2
RW
1274;; This is a CRAN package, but it depends on Bioconductor packages.
1275(define-public r-nmf
1276 (package
1277 (name "r-nmf")
1278 (version "0.23.0")
1279 (source
1280 (origin
1281 (method url-fetch)
1282 (uri (cran-uri "NMF" version))
1283 (sha256
1284 (base32
1285 "0ls7q9yc9l1z10jphq5a11wkfgcxc3gm3sfjj376zx3vnc0wl30g"))))
1286 (properties `((upstream-name . "NMF")))
1287 (build-system r-build-system)
1288 (propagated-inputs
1289 `(("r-cluster" ,r-cluster)
1290 ("r-biobase" ,r-biobase)
1291 ("r-biocmanager" ,r-biocmanager)
1292 ("r-bigmemory" ,r-bigmemory) ; suggested
1293 ("r-synchronicity" ,r-synchronicity) ; suggested
1294 ("r-colorspace" ,r-colorspace)
1295 ("r-digest" ,r-digest)
1296 ("r-doparallel" ,r-doparallel)
1297 ("r-foreach" ,r-foreach)
1298 ("r-ggplot2" ,r-ggplot2)
1299 ("r-gridbase" ,r-gridbase)
1300 ("r-pkgmaker" ,r-pkgmaker)
1301 ("r-rcolorbrewer" ,r-rcolorbrewer)
1302 ("r-registry" ,r-registry)
1303 ("r-reshape2" ,r-reshape2)
1304 ("r-rngtools" ,r-rngtools)
1305 ("r-stringr" ,r-stringr)))
1306 (native-inputs
1307 `(("r-knitr" ,r-knitr)))
1308 (home-page "http://renozao.github.io/NMF")
1309 (synopsis "Algorithms and framework for nonnegative matrix factorization")
1310 (description
1311 "This package provides a framework to perform Non-negative Matrix
1312Factorization (NMF). The package implements a set of already published
1313algorithms and seeding methods, and provides a framework to test, develop and
1314plug new or custom algorithms. Most of the built-in algorithms have been
1315optimized in C++, and the main interface function provides an easy way of
1316performing parallel computations on multicore machines.")
1317 (license license:gpl2+)))
1318
5cf940de
RW
1319(define-public r-affycomp
1320 (package
1321 (name "r-affycomp")
c472549f 1322 (version "1.66.0")
5cf940de
RW
1323 (source
1324 (origin
1325 (method url-fetch)
1326 (uri (bioconductor-uri "affycomp" version))
1327 (sha256
1328 (base32
c472549f 1329 "106gz4rami04r0ffc7rxkrv92s3yrcnlqnyykd5s8lrkndbihrpk"))))
5cf940de
RW
1330 (properties `((upstream-name . "affycomp")))
1331 (build-system r-build-system)
1332 (propagated-inputs `(("r-biobase" ,r-biobase)))
1333 (home-page "https://bioconductor.org/packages/affycomp/")
1334 (synopsis "Graphics toolbox for assessment of Affymetrix expression measures")
1335 (description
1336 "The package contains functions that can be used to compare expression
1337measures for Affymetrix Oligonucleotide Arrays.")
1338 (license license:gpl2+)))
1339
5094aa94
RW
1340(define-public r-affycompatible
1341 (package
1342 (name "r-affycompatible")
fa2d16cc 1343 (version "1.50.0")
5094aa94
RW
1344 (source
1345 (origin
1346 (method url-fetch)
1347 (uri (bioconductor-uri "AffyCompatible" version))
1348 (sha256
1349 (base32
fa2d16cc 1350 "0pcs51miy45bky26i1d4iarbjh569gssb5g4fr26bzgjmq19yl7x"))))
5094aa94
RW
1351 (properties
1352 `((upstream-name . "AffyCompatible")))
1353 (build-system r-build-system)
1354 (propagated-inputs
1355 `(("r-biostrings" ,r-biostrings)
1356 ("r-rcurl" ,r-rcurl)
1357 ("r-xml" ,r-xml)))
1358 (home-page "https://bioconductor.org/packages/AffyCompatible/")
1359 (synopsis "Work with Affymetrix GeneChip files")
1360 (description
1361 "This package provides an interface to Affymetrix chip annotation and
1362sample attribute files. The package allows an easy way for users to download
1363and manage local data bases of Affynmetrix NetAffx annotation files. It also
1364provides access to @dfn{GeneChip Operating System} (GCOS) and @dfn{GeneChip
1365Command Console} (AGCC)-compatible sample annotation files.")
1366 (license license:artistic2.0)))
1367
4ca2d6c1
RW
1368(define-public r-affycontam
1369 (package
1370 (name "r-affycontam")
3e82f9cc 1371 (version "1.48.0")
4ca2d6c1
RW
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (bioconductor-uri "affyContam" version))
1376 (sha256
1377 (base32
3e82f9cc 1378 "0pi5fll5868sb80vb9kbymz6gkjv58f0abk6zwn407cnyjhr342b"))))
4ca2d6c1
RW
1379 (properties `((upstream-name . "affyContam")))
1380 (build-system r-build-system)
1381 (propagated-inputs
1382 `(("r-affy" ,r-affy)
1383 ("r-affydata" ,r-affydata)
1384 ("r-biobase" ,r-biobase)))
1385 (home-page "https://bioconductor.org/packages/affyContam/")
1386 (synopsis "Structured corruption of Affymetrix CEL file data")
1387 (description
1388 "Microarray quality assessment is a major concern of microarray analysts.
1389This package provides some simple approaches to in silico creation of quality
1390problems in CEL-level data to help evaluate performance of quality metrics.")
1391 (license license:artistic2.0)))
1392
12105c6c
RW
1393(define-public r-affycoretools
1394 (package
1395 (name "r-affycoretools")
a92219b4 1396 (version "1.62.0")
12105c6c
RW
1397 (source
1398 (origin
1399 (method url-fetch)
1400 (uri (bioconductor-uri "affycoretools" version))
1401 (sha256
1402 (base32
a92219b4 1403 "0jacgwylg7wjw3xk3ga2sb1wkdklm5glamhbmqgvzm5kdjnl0rv0"))))
12105c6c
RW
1404 (properties `((upstream-name . "affycoretools")))
1405 (build-system r-build-system)
1406 (propagated-inputs
1407 `(("r-affy" ,r-affy)
1408 ("r-annotationdbi" ,r-annotationdbi)
1409 ("r-biobase" ,r-biobase)
1410 ("r-biocgenerics" ,r-biocgenerics)
1411 ("r-dbi" ,r-dbi)
1412 ("r-edger" ,r-edger)
1413 ("r-gcrma" ,r-gcrma)
f8f181ae 1414 ("r-glimma" ,r-glimma)
12105c6c
RW
1415 ("r-ggplot2" ,r-ggplot2)
1416 ("r-gostats" ,r-gostats)
1417 ("r-gplots" ,r-gplots)
1418 ("r-hwriter" ,r-hwriter)
1419 ("r-lattice" ,r-lattice)
1420 ("r-limma" ,r-limma)
1421 ("r-oligoclasses" ,r-oligoclasses)
1422 ("r-reportingtools" ,r-reportingtools)
1423 ("r-rsqlite" ,r-rsqlite)
1424 ("r-s4vectors" ,r-s4vectors)
1425 ("r-xtable" ,r-xtable)))
fa610697
RW
1426 (native-inputs
1427 `(("r-knitr" ,r-knitr)))
12105c6c
RW
1428 (home-page "https://bioconductor.org/packages/affycoretools/")
1429 (synopsis "Functions for analyses with Affymetrix GeneChips")
1430 (description
1431 "This package provides various wrapper functions that have been written
1432to streamline the more common analyses that a Biostatistician might see.")
1433 (license license:artistic2.0)))
1434
d6a5d9b2
RW
1435(define-public r-affxparser
1436 (package
1437 (name "r-affxparser")
8e6a2c32 1438 (version "1.62.0")
d6a5d9b2
RW
1439 (source
1440 (origin
1441 (method url-fetch)
1442 (uri (bioconductor-uri "affxparser" version))
1443 (sha256
1444 (base32
8e6a2c32 1445 "13h4iwskvgwgxid9f60gzb1zndgbhdlbn9ixv5waihy1jkcbn24p"))))
d6a5d9b2
RW
1446 (properties `((upstream-name . "affxparser")))
1447 (build-system r-build-system)
1448 (home-page "https://github.com/HenrikBengtsson/affxparser")
1449 (synopsis "Affymetrix File Parsing SDK")
1450 (description
1451 "This is a package for parsing Affymetrix files (CDF, CEL, CHP, BPMAP,
1452BAR). It provides methods for fast and memory efficient parsing of Affymetrix
1453files using the Affymetrix' Fusion SDK. Both ASCII- and binary-based files
1454are supported. Currently, there are methods for reading @dfn{chip definition
1455file} (CDF) and a @dfn{cell intensity file} (CEL). These files can be read
1456either in full or in part. For example, probe signals from a few probesets
1457can be extracted very quickly from a set of CEL files into a convenient list
1458structure.")
1459 ;; The Fusion SDK contains files under GPLv2 and LGPLv2.1. The R code is
1460 ;; under LGPLv2+.
1461 (license (list license:lgpl2.0+ license:lgpl2.1 license:gpl2))))
1462
7097c700
RW
1463(define-public r-annotate
1464 (package
1465 (name "r-annotate")
7d563023 1466 (version "1.68.0")
7097c700
RW
1467 (source
1468 (origin
1469 (method url-fetch)
1470 (uri (bioconductor-uri "annotate" version))
1471 (sha256
1472 (base32
7d563023 1473 "1rql591x56532m8n4axdkfkhkbcsz5hfrf7271s0lmkvy84i7z6l"))))
7097c700
RW
1474 (build-system r-build-system)
1475 (propagated-inputs
1476 `(("r-annotationdbi" ,r-annotationdbi)
1477 ("r-biobase" ,r-biobase)
1478 ("r-biocgenerics" ,r-biocgenerics)
1479 ("r-dbi" ,r-dbi)
7d563023 1480 ("r-httr" ,r-httr)
7097c700
RW
1481 ("r-xml" ,r-xml)
1482 ("r-xtable" ,r-xtable)))
1483 (home-page
1484 "https://bioconductor.org/packages/annotate")
1485 (synopsis "Annotation for microarrays")
1486 (description "This package provides R environments for the annotation of
1487microarrays.")
1488 (license license:artistic2.0)))
1489
ff92c287 1490(define-public r-annotationforge
1491 (package
1492 (name "r-annotationforge")
1493 (version "1.32.0")
1494 (source
1495 (origin
1496 (method url-fetch)
1497 (uri (bioconductor-uri "AnnotationForge" version))
1498 (sha256
1499 (base32
1500 "0y3820dkvwz09wlmz9drx6gqpsr9cwppaiz40zafwfxbz65y8px7"))))
1501 (properties
1502 `((upstream-name . "AnnotationForge")))
1503 (build-system r-build-system)
1504 (propagated-inputs
1505 `(("r-annotationdbi" ,r-annotationdbi)
1506 ("r-biobase" ,r-biobase)
1507 ("r-biocgenerics" ,r-biocgenerics)
1508 ("r-dbi" ,r-dbi)
1509 ("r-rcurl" ,r-rcurl)
1510 ("r-rsqlite" ,r-rsqlite)
1511 ("r-s4vectors" ,r-s4vectors)
1512 ("r-xml" ,r-xml)))
1513 (native-inputs
1514 `(("r-knitr" ,r-knitr)))
1515 (home-page "https://bioconductor.org/packages/AnnotationForge")
1516 (synopsis "Code for building annotation database packages")
1517 (description
1518 "This package provides code for generating Annotation packages and their
1519databases. Packages produced are intended to be used with AnnotationDbi.")
1520 (license license:artistic2.0)))
1521
4e7cf96c 1522(define-public r-category
1523 (package
1524 (name "r-category")
1525 (version "2.56.0")
1526 (source
1527 (origin
1528 (method url-fetch)
1529 (uri (bioconductor-uri "Category" version))
1530 (sha256
1531 (base32
1532 "0m77wpnica0h2ia9ajdaiga4plgz1s9wls6pdnxzk7kwl8a68wkr"))))
1533 (properties `((upstream-name . "Category")))
1534 (build-system r-build-system)
1535 (propagated-inputs
1536 `(("r-annotate" ,r-annotate)
1537 ("r-annotationdbi" ,r-annotationdbi)
1538 ("r-biobase" ,r-biobase)
1539 ("r-biocgenerics" ,r-biocgenerics)
1540 ("r-genefilter" ,r-genefilter)
1541 ("r-graph" ,r-graph)
1542 ("r-gseabase" ,r-gseabase)
1543 ("r-matrix" ,r-matrix)
1544 ("r-rbgl" ,r-rbgl)
1545 ("r-dbi" ,r-dbi)))
1546 (home-page "https://bioconductor.org/packages/Category")
1547 (synopsis "Category analysis")
1548 (description
1549 "This package provides a collection of tools for performing category
1550analysis.")
1551 (license license:artistic2.0)))
1552
37354585 1553(define-public r-deseq2
1554 (package
1555 (name "r-deseq2")
1556 (version "1.30.0")
1557 (source
1558 (origin
1559 (method url-fetch)
1560 (uri (bioconductor-uri "DESeq2" version))
1561 (sha256
1562 (base32
1563 "0q2f9cywrcmp1p7ii8f45g4dk4hsnjflq3yqhsxgnpv9fw338qpp"))))
1564 (properties `((upstream-name . "DESeq2")))
1565 (build-system r-build-system)
1566 (propagated-inputs
1567 `(("r-biobase" ,r-biobase)
1568 ("r-biocgenerics" ,r-biocgenerics)
1569 ("r-biocparallel" ,r-biocparallel)
1570 ("r-genefilter" ,r-genefilter)
1571 ("r-geneplotter" ,r-geneplotter)
1572 ("r-genomicranges" ,r-genomicranges)
1573 ("r-ggplot2" ,r-ggplot2)
1574 ("r-iranges" ,r-iranges)
1575 ("r-locfit" ,r-locfit)
1576 ("r-rcpp" ,r-rcpp)
1577 ("r-rcpparmadillo" ,r-rcpparmadillo)
1578 ("r-s4vectors" ,r-s4vectors)
1579 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1580 (native-inputs
1581 `(("r-knitr" ,r-knitr)))
1582 (home-page "https://bioconductor.org/packages/DESeq2")
1583 (synopsis "Differential gene expression analysis")
1584 (description
1585 "This package provides functions to estimate variance-mean dependence in
1586count data from high-throughput nucleotide sequencing assays and test for
1587differential expression based on a model using the negative binomial
1588distribution.")
1589 (license license:lgpl3+)))
1590
d769b107 1591(define-public r-dexseq
1592 (package
1593 (name "r-dexseq")
1594 (version "1.36.0")
1595 (source
1596 (origin
1597 (method url-fetch)
1598 (uri (bioconductor-uri "DEXSeq" version))
1599 (sha256
1600 (base32
1601 "0wfjb42xcr4wjy8a654b74411dky8hp6sp8xdwf0sxqgsxy106qi"))))
1602 (properties `((upstream-name . "DEXSeq")))
1603 (build-system r-build-system)
1604 (propagated-inputs
1605 `(("r-annotationdbi" ,r-annotationdbi)
1606 ("r-biobase" ,r-biobase)
1607 ("r-biocgenerics" ,r-biocgenerics)
1608 ("r-biocparallel" ,r-biocparallel)
1609 ("r-biomart" ,r-biomart)
1610 ("r-deseq2" ,r-deseq2)
1611 ("r-genefilter" ,r-genefilter)
1612 ("r-geneplotter" ,r-geneplotter)
1613 ("r-genomicranges" ,r-genomicranges)
1614 ("r-hwriter" ,r-hwriter)
1615 ("r-iranges" ,r-iranges)
1616 ("r-rcolorbrewer" ,r-rcolorbrewer)
1617 ("r-rsamtools" ,r-rsamtools)
1618 ("r-s4vectors" ,r-s4vectors)
1619 ("r-statmod" ,r-statmod)
1620 ("r-stringr" ,r-stringr)
1621 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1622 (native-inputs
1623 `(("r-knitr" ,r-knitr)))
1624 (home-page "https://bioconductor.org/packages/DEXSeq")
1625 (synopsis "Inference of differential exon usage in RNA-Seq")
1626 (description
1627 "This package is focused on finding differential exon usage using RNA-seq
1628exon counts between samples with different experimental designs. It provides
1629functions that allows the user to make the necessary statistical tests based
1630on a model that uses the negative binomial distribution to estimate the
1631variance between biological replicates and generalized linear models for
1632testing. The package also provides functions for the visualization and
1633exploration of the results.")
1634 (license license:gpl3+)))
1635
a35ea5fe 1636(define-public r-genefilter
1637 (package
1638 (name "r-genefilter")
1639 (version "1.72.1")
1640 (source
1641 (origin
1642 (method url-fetch)
1643 (uri (bioconductor-uri "genefilter" version))
1644 (sha256
1645 (base32
1646 "1c6h3qnjvphs977qhv5vafvsb108r0q7xhaayly6qv6adqfn94rn"))))
1647 (build-system r-build-system)
1648 (native-inputs
1649 `(("gfortran" ,gfortran)
1650 ("r-knitr" ,r-knitr)))
1651 (propagated-inputs
1652 `(("r-annotate" ,r-annotate)
1653 ("r-annotationdbi" ,r-annotationdbi)
1654 ("r-biobase" ,r-biobase)
1655 ("r-biocgenerics" ,r-biocgenerics)
1656 ("r-survival" ,r-survival)))
1657 (home-page "https://bioconductor.org/packages/genefilter")
1658 (synopsis "Filter genes from high-throughput experiments")
1659 (description
1660 "This package provides basic functions for filtering genes from
1661high-throughput sequencing experiments.")
1662 (license license:artistic2.0)))
1663
2a970576 1664(define-public r-gostats
1665 (package
1666 (name "r-gostats")
1667 (version "2.56.0")
1668 (source
1669 (origin
1670 (method url-fetch)
1671 (uri (bioconductor-uri "GOstats" version))
1672 (sha256
1673 (base32
1674 "18q8p0fv9fl2r6zjxknfjwqxr69dlyxy6c8amzn6c6dwjq1cxk6j"))))
1675 (properties `((upstream-name . "GOstats")))
1676 (build-system r-build-system)
1677 (propagated-inputs
1678 `(("r-annotate" ,r-annotate)
1679 ("r-annotationdbi" ,r-annotationdbi)
1680 ("r-annotationforge" ,r-annotationforge)
1681 ("r-biobase" ,r-biobase)
1682 ("r-category" ,r-category)
1683 ("r-go-db" ,r-go-db)
1684 ("r-graph" ,r-graph)
1685 ("r-rgraphviz" ,r-rgraphviz)
1686 ("r-rbgl" ,r-rbgl)))
1687 (home-page "https://bioconductor.org/packages/GOstats")
1688 (synopsis "Tools for manipulating GO and microarrays")
1689 (description
1690 "This package provides a set of tools for interacting with GO and
1691microarray data. A variety of basic manipulation tools for graphs, hypothesis
1692testing and other simple calculations.")
1693 (license license:artistic2.0)))
1694
031fdda4 1695(define-public r-gseabase
1696 (package
1697 (name "r-gseabase")
1698 (version "1.52.1")
1699 (source
1700 (origin
1701 (method url-fetch)
1702 (uri (bioconductor-uri "GSEABase" version))
1703 (sha256
1704 (base32
1705 "0dawh1kjmf6921jm77j2s2phrq5237pjc4sdh8fkln89gf48zx6i"))))
1706 (properties `((upstream-name . "GSEABase")))
1707 (build-system r-build-system)
1708 (propagated-inputs
1709 `(("r-annotate" ,r-annotate)
1710 ("r-annotationdbi" ,r-annotationdbi)
1711 ("r-biobase" ,r-biobase)
1712 ("r-biocgenerics" ,r-biocgenerics)
1713 ("r-graph" ,r-graph)
1714 ("r-xml" ,r-xml)))
1715 (native-inputs
1716 `(("r-knitr" ,r-knitr)))
1717 (home-page "https://bioconductor.org/packages/GSEABase")
1718 (synopsis "Gene set enrichment data structures and methods")
1719 (description
1720 "This package provides classes and methods to support @dfn{Gene Set
1721Enrichment Analysis} (GSEA).")
1722 (license license:artistic2.0)))
1723
fa596599
RW
1724(define-public r-hpar
1725 (package
1726 (name "r-hpar")
fa7578b3 1727 (version "1.32.1")
fa596599
RW
1728 (source
1729 (origin
1730 (method url-fetch)
1731 (uri (bioconductor-uri "hpar" version))
1732 (sha256
1733 (base32
fa7578b3 1734 "0h10b0fyblpsnxj60rpbk99z7snrkkb5jssmf0v27s6d445jq2zr"))))
fa596599 1735 (build-system r-build-system)
07bea010
RW
1736 (native-inputs
1737 `(("r-knitr" ,r-knitr)))
fa596599
RW
1738 (home-page "https://bioconductor.org/packages/hpar/")
1739 (synopsis "Human Protein Atlas in R")
1740 (description "This package provides a simple interface to and data from
1741the Human Protein Atlas project.")
1742 (license license:artistic2.0)))
f44079bc 1743
1744(define-public r-rbgl
1745 (package
1746 (name "r-rbgl")
1747 (version "1.66.0")
1748 (source
1749 (origin
1750 (method url-fetch)
1751 (uri (bioconductor-uri "RBGL" version))
1752 (sha256
1753 (base32
1754 "016vyzgixb3gjpzi21rbs6ngnnqcxr77krwjjf1ldnzzj8vqrqsz"))))
1755 (properties `((upstream-name . "RBGL")))
1756 (build-system r-build-system)
1757 (propagated-inputs
1758 `(("r-bh" ,r-bh)
1759 ("r-graph" ,r-graph)))
1760 (home-page "https://www.bioconductor.org/packages/RBGL")
1761 (synopsis "Interface to the Boost graph library")
1762 (description
1763 "This package provides a fairly extensive and comprehensive interface to
1764the graph algorithms contained in the Boost library.")
1765 (license license:artistic2.0)))
183ce988
RJ
1766
1767(define-public r-regioner
1768 (package
1769 (name "r-regioner")
d1ff3604 1770 (version "1.22.0")
183ce988
RJ
1771 (source
1772 (origin
1773 (method url-fetch)
1774 (uri (bioconductor-uri "regioneR" version))
1775 (sha256
1776 (base32
d1ff3604 1777 "0c2khfyrgy3y68cj6b07s91hplabbj70xwdgwrf2bsd9h6gknjdi"))))
183ce988
RJ
1778 (properties `((upstream-name . "regioneR")))
1779 (build-system r-build-system)
1780 (propagated-inputs
d639d888 1781 `(("r-biostrings" ,r-biostrings)
183ce988 1782 ("r-bsgenome" ,r-bsgenome)
183ce988 1783 ("r-genomeinfodb" ,r-genomeinfodb)
d639d888 1784 ("r-genomicranges" ,r-genomicranges)
72427c72 1785 ("r-iranges" ,r-iranges)
d639d888
RW
1786 ("r-memoise" ,r-memoise)
1787 ("r-rtracklayer" ,r-rtracklayer)
72427c72 1788 ("r-s4vectors" ,r-s4vectors)))
7f34dd58
RW
1789 (native-inputs
1790 `(("r-knitr" ,r-knitr)))
183ce988
RJ
1791 (home-page "https://bioconductor.org/packages/regioneR/")
1792 (synopsis "Association analysis of genomic regions")
1793 (description "This package offers a statistical framework based on
1794customizable permutation tests to assess the association between genomic
1795region sets and other genomic features.")
1796 (license license:artistic2.0)))
a5b56a53 1797
15184fb3
RW
1798(define-public r-reportingtools
1799 (package
1800 (name "r-reportingtools")
c03c7634 1801 (version "2.30.0")
15184fb3
RW
1802 (source
1803 (origin
1804 (method url-fetch)
1805 (uri (bioconductor-uri "ReportingTools" version))
1806 (sha256
1807 (base32
c03c7634 1808 "0gkshdhx44yjffqf1xmvik7j5hlhszp1n9ckanaws9ky3iia8j31"))))
15184fb3
RW
1809 (properties
1810 `((upstream-name . "ReportingTools")))
1811 (build-system r-build-system)
1812 (propagated-inputs
1813 `(("r-annotate" ,r-annotate)
1814 ("r-annotationdbi" ,r-annotationdbi)
1815 ("r-biobase" ,r-biobase)
1816 ("r-biocgenerics" ,r-biocgenerics)
1817 ("r-category" ,r-category)
1818 ("r-deseq2" ,r-deseq2)
1819 ("r-edger" ,r-edger)
1820 ("r-ggbio" ,r-ggbio)
1821 ("r-ggplot2" ,r-ggplot2)
1822 ("r-gostats" ,r-gostats)
1823 ("r-gseabase" ,r-gseabase)
1824 ("r-hwriter" ,r-hwriter)
1825 ("r-iranges" ,r-iranges)
1826 ("r-knitr" ,r-knitr)
1827 ("r-lattice" ,r-lattice)
1828 ("r-limma" ,r-limma)
1829 ("r-pfam-db" ,r-pfam-db)
1830 ("r-r-utils" ,r-r-utils)
1831 ("r-xml" ,r-xml)))
7f94cf01
RW
1832 (native-inputs
1833 `(("r-knitr" ,r-knitr)))
15184fb3
RW
1834 (home-page "https://bioconductor.org/packages/ReportingTools/")
1835 (synopsis "Tools for making reports in various formats")
1836 (description
1837 "The ReportingTools package enables users to easily display reports of
1838analysis results generated from sources such as microarray and sequencing
1839data. The package allows users to create HTML pages that may be viewed on a
1840web browser, or in other formats. Users can generate tables with sortable and
1841filterable columns, make and display plots, and link table entries to other
1842data sources such as NCBI or larger plots within the HTML page. Using the
1843package, users can also produce a table of contents page to link various
1844reports together for a particular project that can be viewed in a web
1845browser.")
1846 (license license:artistic2.0)))
1847
8957efa8 1848(define-public r-shortread
1849 (package
1850 (name "r-shortread")
1851 (version "1.48.0")
1852 (source
1853 (origin
1854 (method url-fetch)
1855 (uri (bioconductor-uri "ShortRead" version))
1856 (sha256
1857 (base32
1858 "0w4m8d3h660mmr2ymp206r1n4aqssxmkv8yxkbr5y1swrahxzfk9"))))
1859 (properties `((upstream-name . "ShortRead")))
1860 (build-system r-build-system)
1861 (inputs
1862 `(("zlib" ,zlib)))
1863 (propagated-inputs
1864 `(("r-biobase" ,r-biobase)
1865 ("r-biocgenerics" ,r-biocgenerics)
1866 ("r-biocparallel" ,r-biocparallel)
1867 ("r-biostrings" ,r-biostrings)
1868 ("r-genomeinfodb" ,r-genomeinfodb)
1869 ("r-genomicalignments" ,r-genomicalignments)
1870 ("r-genomicranges" ,r-genomicranges)
1871 ("r-rhtslib" ,r-rhtslib)
1872 ("r-hwriter" ,r-hwriter)
1873 ("r-iranges" ,r-iranges)
1874 ("r-lattice" ,r-lattice)
1875 ("r-latticeextra" ,r-latticeextra)
1876 ("r-rsamtools" ,r-rsamtools)
1877 ("r-s4vectors" ,r-s4vectors)
1878 ("r-xvector" ,r-xvector)
1879 ("r-zlibbioc" ,r-zlibbioc)))
1880 (home-page "https://bioconductor.org/packages/ShortRead")
1881 (synopsis "FASTQ input and manipulation tools")
1882 (description
1883 "This package implements sampling, iteration, and input of FASTQ files.
1884It includes functions for filtering and trimming reads, and for generating a
1885quality assessment report. Data are represented as
1886@code{DNAStringSet}-derived objects, and easily manipulated for a diversity of
1887purposes. The package also contains legacy support for early single-end,
1888ungapped alignment formats.")
1889 (license license:artistic2.0)))
1890
df6b3c25 1891(define-public r-systempiper
1892 (package
1893 (name "r-systempiper")
1894 (version "1.24.3")
1895 (source
1896 (origin
1897 (method url-fetch)
1898 (uri (bioconductor-uri "systemPipeR" version))
1899 (sha256
1900 (base32
1901 "0ffazyl2q9plbhwlxi04s3fvnli6qj95n7bkjc21535bbi08xfki"))))
1902 (properties `((upstream-name . "systemPipeR")))
1903 (build-system r-build-system)
1904 (propagated-inputs
1905 `(("r-annotate" ,r-annotate)
1906 ("r-assertthat" ,r-assertthat)
1907 ("r-batchtools" ,r-batchtools)
1908 ("r-biostrings" ,r-biostrings)
1909 ("r-deseq2" ,r-deseq2)
1910 ("r-dot" ,r-dot)
1911 ("r-edger" ,r-edger)
1912 ("r-genomicfeatures" ,r-genomicfeatures)
1913 ("r-genomicranges" ,r-genomicranges)
1914 ("r-ggplot2" ,r-ggplot2)
1915 ("r-go-db" ,r-go-db)
1916 ("r-gostats" ,r-gostats)
1917 ("r-iranges" ,r-iranges)
1918 ("r-limma" ,r-limma)
1919 ("r-magrittr" ,r-magrittr)
1920 ("r-pheatmap" ,r-pheatmap)
1921 ("r-rjson" ,r-rjson)
1922 ("r-rsamtools" ,r-rsamtools)
1923 ("r-rsvg" ,r-rsvg)
1924 ("r-shortread" ,r-shortread)
1925 ("r-stringr" ,r-stringr)
1926 ("r-summarizedexperiment" ,r-summarizedexperiment)
1927 ("r-yaml" ,r-yaml)
1928 ("r-variantannotation" ,r-variantannotation)))
1929 (native-inputs
1930 `(("r-knitr" ,r-knitr)))
1931 (home-page "https://github.com/tgirke/systemPipeR")
1932 (synopsis "Next generation sequencing workflow and reporting environment")
1933 (description
1934 "This R package provides tools for building and running automated
1935end-to-end analysis workflows for a wide range of @dfn{next generation
1936sequence} (NGS) applications such as RNA-Seq, ChIP-Seq, VAR-Seq and Ribo-Seq.
1937Important features include a uniform workflow interface across different NGS
1938applications, automated report generation, and support for running both R and
1939command-line software, such as NGS aligners or peak/variant callers, on local
1940computers or compute clusters. Efficient handling of complex sample sets and
1941experimental designs is facilitated by a consistently implemented sample
1942annotation infrastructure.")
1943 (license license:artistic2.0)))
1944
bfb93b48
RW
1945(define-public r-geneplotter
1946 (package
1947 (name "r-geneplotter")
d72c4c98 1948 (version "1.68.0")
bfb93b48
RW
1949 (source
1950 (origin
1951 (method url-fetch)
1952 (uri (bioconductor-uri "geneplotter" version))
1953 (sha256
1954 (base32
d72c4c98 1955 "1f8nr60n1nig1gdy85wqdhpzxvp9r4chygxm8xpy882mdvfv6rqx"))))
bfb93b48
RW
1956 (build-system r-build-system)
1957 (propagated-inputs
1958 `(("r-annotate" ,r-annotate)
1959 ("r-annotationdbi" ,r-annotationdbi)
1960 ("r-biobase" ,r-biobase)
1961 ("r-biocgenerics" ,r-biocgenerics)
1962 ("r-lattice" ,r-lattice)
1963 ("r-rcolorbrewer" ,r-rcolorbrewer)))
1964 (home-page "https://bioconductor.org/packages/geneplotter")
1965 (synopsis "Graphics functions for genomic data")
1966 (description
1967 "This package provides functions for plotting genomic data.")
1968 (license license:artistic2.0)))
1969
01c7ba99
RW
1970(define-public r-oligoclasses
1971 (package
1972 (name "r-oligoclasses")
464df5cc 1973 (version "1.52.0")
01c7ba99
RW
1974 (source
1975 (origin
1976 (method url-fetch)
1977 (uri (bioconductor-uri "oligoClasses" version))
1978 (sha256
1979 (base32
464df5cc 1980 "19p6h0cgnma5md5mm9bn6rxfhr0a9znljgdbvsqybms6asvh18gy"))))
01c7ba99
RW
1981 (properties `((upstream-name . "oligoClasses")))
1982 (build-system r-build-system)
1983 (propagated-inputs
1984 `(("r-affyio" ,r-affyio)
1985 ("r-biobase" ,r-biobase)
1986 ("r-biocgenerics" ,r-biocgenerics)
1987 ("r-biocmanager" ,r-biocmanager)
1988 ("r-biostrings" ,r-biostrings)
1989 ("r-dbi" ,r-dbi)
1990 ("r-ff" ,r-ff)
1991 ("r-foreach" ,r-foreach)
1992 ("r-genomicranges" ,r-genomicranges)
1993 ("r-iranges" ,r-iranges)
1994 ("r-rsqlite" ,r-rsqlite)
1995 ("r-s4vectors" ,r-s4vectors)
1996 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1997 (home-page "https://bioconductor.org/packages/oligoClasses/")
1998 (synopsis "Classes for high-throughput arrays")
1999 (description
2000 "This package contains class definitions, validity checks, and
2001initialization methods for classes used by the @code{oligo} and @code{crlmm}
2002packages.")
2003 (license license:gpl2+)))
2004
4c63eeb8
RW
2005(define-public r-oligo
2006 (package
2007 (name "r-oligo")
9af6fdf8 2008 (version "1.54.1")
4c63eeb8
RW
2009 (source
2010 (origin
2011 (method url-fetch)
2012 (uri (bioconductor-uri "oligo" version))
2013 (sha256
2014 (base32
9af6fdf8 2015 "0cpfkvxpni7an361li0k0qlfcraj7z9zv71r25dbly5kp3dql7k3"))))
4c63eeb8
RW
2016 (properties `((upstream-name . "oligo")))
2017 (build-system r-build-system)
2018 (inputs `(("zlib" ,zlib)))
2019 (propagated-inputs
2020 `(("r-affxparser" ,r-affxparser)
2021 ("r-affyio" ,r-affyio)
2022 ("r-biobase" ,r-biobase)
2023 ("r-biocgenerics" ,r-biocgenerics)
2024 ("r-biostrings" ,r-biostrings)
2025 ("r-dbi" ,r-dbi)
2026 ("r-ff" ,r-ff)
2027 ("r-oligoclasses" ,r-oligoclasses)
2028 ("r-preprocesscore" ,r-preprocesscore)
2029 ("r-rsqlite" ,r-rsqlite)
2030 ("r-zlibbioc" ,r-zlibbioc)))
ace82f80
RW
2031 (native-inputs
2032 `(("r-knitr" ,r-knitr)))
4c63eeb8
RW
2033 (home-page "https://bioconductor.org/packages/oligo/")
2034 (synopsis "Preprocessing tools for oligonucleotide arrays")
2035 (description
2036 "This package provides a package to analyze oligonucleotide
2037arrays (expression/SNP/tiling/exon) at probe-level. It currently supports
2038Affymetrix (CEL files) and NimbleGen arrays (XYS files).")
2039 (license license:lgpl2.0+)))
2040
4dc2ecc2
RW
2041(define-public r-qvalue
2042 (package
2043 (name "r-qvalue")
e9b60a29 2044 (version "2.22.0")
4dc2ecc2
RW
2045 (source
2046 (origin
2047 (method url-fetch)
2048 (uri (bioconductor-uri "qvalue" version))
2049 (sha256
2050 (base32
e9b60a29 2051 "0xbww16lz0k2p4mmq1aqd7iz7d8rvzgw1gm55jy6xbx19ymj64i5"))))
4dc2ecc2
RW
2052 (build-system r-build-system)
2053 (propagated-inputs
2054 `(("r-ggplot2" ,r-ggplot2)
2055 ("r-reshape2" ,r-reshape2)))
f9a24759
RW
2056 (native-inputs
2057 `(("r-knitr" ,r-knitr)))
702a1012 2058 (home-page "https://github.com/StoreyLab/qvalue")
4dc2ecc2
RW
2059 (synopsis "Q-value estimation for false discovery rate control")
2060 (description
2061 "This package takes a list of p-values resulting from the simultaneous
2062testing of many hypotheses and estimates their q-values and local @dfn{false
2063discovery rate} (FDR) values. The q-value of a test measures the proportion
2064of false positives incurred when that particular test is called significant.
2065The local FDR measures the posterior probability the null hypothesis is true
2066given the test's p-value. Various plots are automatically generated, allowing
2067one to make sensible significance cut-offs. The software can be applied to
2068problems in genomics, brain imaging, astrophysics, and data mining.")
2069 ;; Any version of the LGPL.
2070 (license license:lgpl3+)))
2071
a0df9b93
RJ
2072(define r-rcppnumerical
2073 (package
2074 (name "r-rcppnumerical")
2075 (version "0.4-0")
2076 (source (origin
2077 (method url-fetch)
2078 (uri (cran-uri "RcppNumerical" version))
2079 (sha256
2080 (base32
2081 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
2082 (properties `((upstream-name . "RcppNumerical")))
2083 (build-system r-build-system)
2084 (propagated-inputs
2085 `(("r-rcpp" ,r-rcpp)
2086 ("r-rcppeigen" ,r-rcppeigen)))
2087 (native-inputs
2088 `(("r-knitr" ,r-knitr)))
2089 (home-page "https://github.com/yixuan/RcppNumerical")
2090 (synopsis "Rcpp integration for numerical computing libraries")
2091 (description "This package provides a collection of open source libraries
2092for numerical computing (numerical integration, optimization, etc.) and their
2093integration with @code{Rcpp}.")
2094 (license license:gpl2+)))
2095
3b399e51
RJ
2096(define-public r-apeglm
2097 (package
2098 (name "r-apeglm")
2099 (version "1.12.0")
2100 (source (origin
2101 (method url-fetch)
2102 (uri (bioconductor-uri "apeglm" version))
2103 (sha256
2104 (base32
2105 "0pix1fhxk2q89p2745fgsmxwics9rf10l392qhw3rw6v6ynhims2"))))
2106 (properties `((upstream-name . "apeglm")))
2107 (build-system r-build-system)
2108 (propagated-inputs
2109 `(("r-emdbook" ,r-emdbook)
2110 ("r-genomicranges" ,r-genomicranges)
2111 ("r-rcpp" ,r-rcpp)
2112 ("r-rcppeigen" ,r-rcppeigen)
2113 ("r-rcppnumerical" ,r-rcppnumerical)
2114 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2115 (native-inputs `(("r-knitr" ,r-knitr)))
2116 (home-page "https://bioconductor.org/packages/apeglm")
2117 (synopsis "Approximate posterior estimation for GLM coefficients")
2118 (description "This package provides Bayesian shrinkage estimators for
2119effect sizes for a variety of GLM models, using approximation of the
2120posterior for individual coefficients.")
2121 (license license:gpl2)))
2122
6e396c4b
RJ
2123(define-public r-greylistchip
2124 (package
2125 (name "r-greylistchip")
2126 (version "1.22.0")
2127 (source (origin
2128 (method url-fetch)
2129 (uri (bioconductor-uri "GreyListChIP" version))
2130 (sha256
2131 (base32
2132 "1d1yvza1aw3vs3di6mrra5l52ig0p9bpzprrqvknjaz5i4yb8ma6"))))
2133 (properties `((upstream-name . "GreyListChIP")))
2134 (build-system r-build-system)
2135 (propagated-inputs
2136 `(("r-bsgenome" ,r-bsgenome)
2137 ("r-genomeinfodb" ,r-genomeinfodb)
2138 ("r-genomicalignments" ,r-genomicalignments)
2139 ("r-genomicranges" ,r-genomicranges)
2140 ("r-mass" ,r-mass)
2141 ("r-rsamtools" ,r-rsamtools)
2142 ("r-rtracklayer" ,r-rtracklayer)
2143 ("r-summarizedexperiment" ,r-summarizedexperiment)))
2144 (home-page "https://bioconductor.org/packages/GreyListChIP")
2145 (synopsis "Greylist artefact regions based on ChIP inputs")
2146 (description "This package identifies regions of ChIP experiments with high
2147signal in the input, that lead to spurious peaks during peak calling.")
2148 (license license:artistic2.0)))
2149
a5b56a53
RJ
2150(define-public r-diffbind
2151 (package
2152 (name "r-diffbind")
61609fb8 2153 (version "3.0.13")
a5b56a53
RJ
2154 (source
2155 (origin
2156 (method url-fetch)
2157 (uri (bioconductor-uri "DiffBind" version))
2158 (sha256
2159 (base32
61609fb8 2160 "0kxn59v93hl5pq8d156lnbz0sslpnxyjcfrvq2gzgd91sd587qmn"))))
a5b56a53
RJ
2161 (properties `((upstream-name . "DiffBind")))
2162 (build-system r-build-system)
a5b56a53
RJ
2163 (propagated-inputs
2164 `(("r-amap" ,r-amap)
341ebaaa
RJ
2165 ("r-apeglm" ,r-apeglm)
2166 ("r-ashr" ,r-ashr)
a5b56a53
RJ
2167 ("r-biocparallel" ,r-biocparallel)
2168 ("r-deseq2" ,r-deseq2)
2169 ("r-dplyr" ,r-dplyr)
a5b56a53 2170 ("r-genomicalignments" ,r-genomicalignments)
45bbccf4
RW
2171 ("r-genomicranges" ,r-genomicranges)
2172 ("r-ggplot2" ,r-ggplot2)
a5b56a53
RJ
2173 ("r-ggrepel" ,r-ggrepel)
2174 ("r-gplots" ,r-gplots)
341ebaaa 2175 ("r-greylistchip" ,r-greylistchip)
a5b56a53
RJ
2176 ("r-iranges" ,r-iranges)
2177 ("r-lattice" ,r-lattice)
2178 ("r-limma" ,r-limma)
2179 ("r-locfit" ,r-locfit)
2180 ("r-rcolorbrewer" , r-rcolorbrewer)
2181 ("r-rcpp" ,r-rcpp)
4c221b3b 2182 ("r-rhtslib" ,r-rhtslib)
a5b56a53
RJ
2183 ("r-rsamtools" ,r-rsamtools)
2184 ("r-s4vectors" ,r-s4vectors)
45bbccf4 2185 ("r-summarizedexperiment" ,r-summarizedexperiment)
4c221b3b 2186 ("r-systempiper" ,r-systempiper)))
99db6db7 2187 (home-page "https://bioconductor.org/packages/DiffBind")
a5b56a53
RJ
2188 (synopsis "Differential binding analysis of ChIP-Seq peak data")
2189 (description
2190 "This package computes differentially bound sites from multiple
2191ChIP-seq experiments using affinity (quantitative) data. Also enables
2192occupancy (overlap) analysis and plotting functions.")
2193 (license license:artistic2.0)))
6d94bf6b
RJ
2194
2195(define-public r-ripseeker
2196 (package
2197 (name "r-ripseeker")
ba74434f 2198 (version "1.26.0")
6d94bf6b
RJ
2199 (source
2200 (origin
2201 (method url-fetch)
2202 (uri (bioconductor-uri "RIPSeeker" version))
2203 (sha256
2204 (base32
ba74434f 2205 "1wyv9mfrbxzklysfjcnwb8yils71janyyxa982jn0zxx4p9cl3vs"))))
6d94bf6b
RJ
2206 (properties `((upstream-name . "RIPSeeker")))
2207 (build-system r-build-system)
2208 (propagated-inputs
2209 `(("r-s4vectors" ,r-s4vectors)
2210 ("r-iranges" ,r-iranges)
2211 ("r-genomicranges" ,r-genomicranges)
2212 ("r-summarizedexperiment" ,r-summarizedexperiment)
2213 ("r-rsamtools" ,r-rsamtools)
2214 ("r-genomicalignments" ,r-genomicalignments)
2215 ("r-rtracklayer" ,r-rtracklayer)))
99db6db7 2216 (home-page "https://bioconductor.org/packages/RIPSeeker")
6d94bf6b
RJ
2217 (synopsis
2218 "Identifying protein-associated transcripts from RIP-seq experiments")
2219 (description
2220 "This package infers and discriminates RIP peaks from RIP-seq alignments
2221using two-state HMM with negative binomial emission probability. While
2222RIPSeeker is specifically tailored for RIP-seq data analysis, it also provides
2223a suite of bioinformatics tools integrated within this self-contained software
2224package comprehensively addressing issues ranging from post-alignments
2225processing to visualization and annotation.")
2226 (license license:gpl2)))
a6ae9ffd
RJ
2227
2228(define-public r-multtest
2229 (package
2230 (name "r-multtest")
1e6920c5 2231 (version "2.46.0")
a6ae9ffd
RJ
2232 (source
2233 (origin
2234 (method url-fetch)
2235 (uri (bioconductor-uri "multtest" version))
2236 (sha256
2237 (base32
1e6920c5 2238 "06vixd81nh3nxrc6km73p7c4bwln1zm39fa9gp7gj272vsxkx53q"))))
a6ae9ffd
RJ
2239 (build-system r-build-system)
2240 (propagated-inputs
2241 `(("r-survival" ,r-survival)
2242 ("r-biocgenerics" ,r-biocgenerics)
2243 ("r-biobase" ,r-biobase)
2244 ("r-mass" ,r-mass)))
99db6db7 2245 (home-page "https://bioconductor.org/packages/multtest")
a6ae9ffd
RJ
2246 (synopsis "Resampling-based multiple hypothesis testing")
2247 (description
2248 "This package can do non-parametric bootstrap and permutation
2249resampling-based multiple testing procedures (including empirical Bayes
2250methods) for controlling the family-wise error rate (FWER), generalized
2251family-wise error rate (gFWER), tail probability of the proportion of
2252false positives (TPPFP), and false discovery rate (FDR). Several choices
2253of bootstrap-based null distribution are implemented (centered, centered
2254and scaled, quantile-transformed). Single-step and step-wise methods are
2255available. Tests based on a variety of T- and F-statistics (including
2256T-statistics based on regression parameters from linear and survival models
2257as well as those based on correlation parameters) are included. When probing
2258hypotheses with T-statistics, users may also select a potentially faster null
2259distribution which is multivariate normal with mean zero and variance
2260covariance matrix derived from the vector influence function. Results are
2261reported in terms of adjusted P-values, confidence regions and test statistic
2262cutoffs. The procedures are directly applicable to identifying differentially
2263expressed genes in DNA microarray experiments.")
2264 (license license:lgpl3)))
793f83ef 2265
5dfe4912
RW
2266(define-public r-graph
2267 (package
2268 (name "r-graph")
f519b4dc 2269 (version "1.68.0")
5dfe4912
RW
2270 (source (origin
2271 (method url-fetch)
2272 (uri (bioconductor-uri "graph" version))
2273 (sha256
2274 (base32
f519b4dc 2275 "0wr7j2pasvi3srvg9z3n034ljk8mldcixny6b3kmqbqm8dqy9py4"))))
5dfe4912
RW
2276 (build-system r-build-system)
2277 (propagated-inputs
2278 `(("r-biocgenerics" ,r-biocgenerics)))
2279 (home-page "https://bioconductor.org/packages/graph")
2280 (synopsis "Handle graph data structures in R")
2281 (description
2282 "This package implements some simple graph handling capabilities for R.")
2283 (license license:artistic2.0)))
2284
8017eb0a
RW
2285;; This is a CRAN package, but it depends on a Bioconductor package.
2286(define-public r-ggm
2287 (package
2288 (name "r-ggm")
2289 (version "2.5")
2290 (source
2291 (origin
2292 (method url-fetch)
2293 (uri (cran-uri "ggm" version))
2294 (sha256
2295 (base32
2296 "11wc6k2kj2ydy0dyks5mbvbhxm1r43id87anl1jg6dn0yv4m78di"))))
2297 (properties `((upstream-name . "ggm")))
2298 (build-system r-build-system)
2299 (propagated-inputs
2300 `(("r-graph" ,r-graph)
2301 ("r-igraph" ,r-igraph)))
2302 (home-page "https://cran.r-project.org/package=ggm")
2303 (synopsis "Functions for graphical Markov models")
2304 (description
2305 "This package provides functions and datasets for maximum likelihood
2306fitting of some classes of graphical Markov models.")
2307 (license license:gpl2+)))
2308
a07717cc
RW
2309;; This is a CRAN package, but it depends on a Bioconductor package, r-graph.
2310(define-public r-perfmeas
2311 (package
2312 (name "r-perfmeas")
2313 (version "1.2.1")
2314 (source
2315 (origin
2316 (method url-fetch)
2317 (uri (cran-uri "PerfMeas" version))
2318 (sha256
2319 (base32
2320 "1x7ancmb41zd1js24rx94plgbssyc71z2bvpic6mg34xjkwdjw93"))))
2321 (properties `((upstream-name . "PerfMeas")))
2322 (build-system r-build-system)
2323 (propagated-inputs
2324 `(("r-graph" ,r-graph)
2325 ("r-limma" ,r-limma)
2326 ("r-rbgl" ,r-rbgl)))
2327 (home-page "https://cran.r-project.org/web/packages/PerfMeas/")
2328 (synopsis "Performance measures for ranking and classification tasks")
2329 (description
2330 "This package implements different performance measures for
2331classification and ranking tasks. @dfn{Area under curve} (AUC), precision at
2332a given recall, F-score for single and multiple classes are available.")
2333 (license license:gpl2+)))
2334
b17ace24 2335;; This is a CRAN package, but it depends on a Bioconductor package.
a207bca2
RW
2336(define-public r-codedepends
2337 (package
2338 (name "r-codedepends")
2339 (version "0.6.5")
2340 (source
2341 (origin
2342 (method url-fetch)
2343 (uri (cran-uri "CodeDepends" version))
2344 (sha256
2345 (base32
2346 "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
2347 (properties `((upstream-name . "CodeDepends")))
2348 (build-system r-build-system)
2349 (propagated-inputs
2350 `(("r-codetools" ,r-codetools)
2351 ("r-graph" ,r-graph)
2352 ("r-xml" ,r-xml)))
5e1f2362 2353 (home-page "https://cran.r-project.org/web/packages/CodeDepends")
a207bca2
RW
2354 (synopsis "Analysis of R code for reproducible research and code comprehension")
2355 (description
2356 "This package provides tools for analyzing R expressions or blocks of
2357code and determining the dependencies between them. It focuses on R scripts,
2358but can be used on the bodies of functions. There are many facilities
2359including the ability to summarize or get a high-level view of code,
2360determining dependencies between variables, code improvement suggestions.")
2361 ;; Any version of the GPL
2362 (license (list license:gpl2+ license:gpl3+))))
2363
793f83ef
RJ
2364(define-public r-chippeakanno
2365 (package
2366 (name "r-chippeakanno")
d068d967 2367 (version "3.24.1")
793f83ef
RJ
2368 (source
2369 (origin
2370 (method url-fetch)
2371 (uri (bioconductor-uri "ChIPpeakAnno" version))
2372 (sha256
2373 (base32
d068d967 2374 "0qdkwjv8s46d1kmgg2chijv7yzy9sv49kiks18w8x2z89prn15gj"))))
793f83ef
RJ
2375 (properties `((upstream-name . "ChIPpeakAnno")))
2376 (build-system r-build-system)
2377 (propagated-inputs
85c1d20f 2378 `(("r-annotationdbi" ,r-annotationdbi)
85c1d20f 2379 ("r-biocgenerics" ,r-biocgenerics)
793f83ef 2380 ("r-biomart" ,r-biomart)
85c1d20f 2381 ("r-biostrings" ,r-biostrings)
85c1d20f 2382 ("r-dbi" ,r-dbi)
85c1d20f
RW
2383 ("r-ensembldb" ,r-ensembldb)
2384 ("r-genomeinfodb" ,r-genomeinfodb)
2385 ("r-genomicalignments" ,r-genomicalignments)
793f83ef 2386 ("r-genomicfeatures" ,r-genomicfeatures)
f794e85d 2387 ("r-genomicranges" ,r-genomicranges)
d068d967 2388 ("r-ggplot2" ,r-ggplot2)
85c1d20f 2389 ("r-graph" ,r-graph)
f794e85d 2390 ("r-iranges" ,r-iranges)
d068d967 2391 ("r-keggrest" ,r-keggrest)
85c1d20f 2392 ("r-matrixstats" ,r-matrixstats)
793f83ef
RJ
2393 ("r-multtest" ,r-multtest)
2394 ("r-rbgl" ,r-rbgl)
793f83ef 2395 ("r-regioner" ,r-regioner)
85c1d20f
RW
2396 ("r-rsamtools" ,r-rsamtools)
2397 ("r-rtracklayer" ,r-rtracklayer)
f794e85d 2398 ("r-s4vectors" ,r-s4vectors)
793f83ef 2399 ("r-summarizedexperiment" ,r-summarizedexperiment)
793f83ef 2400 ("r-venndiagram" ,r-venndiagram)))
dc24de46
RW
2401 (native-inputs
2402 `(("r-knitr" ,r-knitr)))
99db6db7 2403 (home-page "https://bioconductor.org/packages/ChIPpeakAnno")
793f83ef
RJ
2404 (synopsis "Peaks annotation from ChIP-seq and ChIP-chip experiments")
2405 (description
2406 "The package includes functions to retrieve the sequences around the peak,
2407obtain enriched Gene Ontology (GO) terms, find the nearest gene, exon, miRNA or
2408custom features such as most conserved elements and other transcription factor
2409binding sites supplied by users. Starting 2.0.5, new functions have been added
2410for finding the peaks with bi-directional promoters with summary statistics
2411(peaksNearBDP), for summarizing the occurrence of motifs in peaks
2412(summarizePatternInPeaks) and for adding other IDs to annotated peaks or
2413enrichedGO (addGeneIDs).")
2414 (license license:gpl2+)))
164502d8 2415
c8da0137
RJ
2416(define-public r-matrixgenerics
2417 (package
2418 (name "r-matrixgenerics")
669ea5ab 2419 (version "1.2.1")
c8da0137
RJ
2420 (source (origin
2421 (method url-fetch)
2422 (uri (bioconductor-uri "MatrixGenerics" version))
2423 (sha256
2424 (base32
669ea5ab 2425 "163f0z33cv6038gcjdxn1hadcg9b09qgvm6zc5zn97y4rc8grkrb"))))
c8da0137
RJ
2426 (properties
2427 `((upstream-name . "MatrixGenerics")))
2428 (build-system r-build-system)
2429 (propagated-inputs
2430 `(("r-matrixstats" ,r-matrixstats)))
2431 (home-page "https://bioconductor.org/packages/MatrixGenerics")
2432 (synopsis "S4 generic summary statistic functions for matrix-like objects")
2433 (description
2434 "This package provides S4 generic functions modeled after the
2435@code{matrixStats} API for alternative matrix implementations. Packages with
2436alternative matrix implementation can depend on this package and implement the
2437generic functions that are defined here for a useful set of row and column
2438summary statistics. Other package developers can import this package and
2439handle a different matrix implementations without worrying about
2440incompatibilities.")
2441 (license license:artistic2.0)))
2442
164502d8
RJ
2443(define-public r-marray
2444 (package
2445 (name "r-marray")
6e6c6272 2446 (version "1.68.0")
164502d8
RJ
2447 (source (origin
2448 (method url-fetch)
2449 (uri (bioconductor-uri "marray" version))
2450 (sha256
6e6c6272 2451 (base32 "1kkgv166gzvlj8p58vzam3hcaz8mypi3hhpdsjhaszwg6nav4ray"))))
164502d8
RJ
2452 (build-system r-build-system)
2453 (propagated-inputs
67487088 2454 `(("r-limma" ,r-limma)))
99db6db7 2455 (home-page "https://bioconductor.org/packages/marray")
164502d8
RJ
2456 (synopsis "Exploratory analysis for two-color spotted microarray data")
2457 (description "This package contains class definitions for two-color spotted
ab8979fc 2458microarray data. It also includes functions for data input, diagnostic plots,
164502d8
RJ
2459normalization and quality checking.")
2460 (license license:lgpl2.0+)))
0416a0d4
RJ
2461
2462(define-public r-cghbase
2463 (package
2464 (name "r-cghbase")
ee052d05 2465 (version "1.50.0")
0416a0d4
RJ
2466 (source (origin
2467 (method url-fetch)
2468 (uri (bioconductor-uri "CGHbase" version))
2469 (sha256
ee052d05 2470 (base32 "10zhjmls3f63cj0bnywjb97zhrj7x3xsq6yjhvf5cclxc4kcrcx4"))))
0416a0d4
RJ
2471 (properties `((upstream-name . "CGHbase")))
2472 (build-system r-build-system)
2473 (propagated-inputs
2474 `(("r-biobase" ,r-biobase)
2475 ("r-marray" ,r-marray)))
99db6db7 2476 (home-page "https://bioconductor.org/packages/CGHbase")
0416a0d4
RJ
2477 (synopsis "Base functions and classes for arrayCGH data analysis")
2478 (description "This package contains functions and classes that are needed by
2479the @code{arrayCGH} packages.")
2480 (license license:gpl2+)))
67ee83d6
RJ
2481
2482(define-public r-cghcall
2483 (package
2484 (name "r-cghcall")
72400035 2485 (version "2.52.0")
67ee83d6
RJ
2486 (source (origin
2487 (method url-fetch)
2488 (uri (bioconductor-uri "CGHcall" version))
2489 (sha256
72400035 2490 (base32 "1a6k87xfm79wnsc30k5aziakv51h4dd9zqw81q8bd72hc3fpz8ba"))))
67ee83d6
RJ
2491 (properties `((upstream-name . "CGHcall")))
2492 (build-system r-build-system)
2493 (propagated-inputs
2494 `(("r-biobase" ,r-biobase)
2495 ("r-cghbase" ,r-cghbase)
2496 ("r-impute" ,r-impute)
2497 ("r-dnacopy" ,r-dnacopy)
2498 ("r-snowfall" ,r-snowfall)))
99db6db7 2499 (home-page "https://bioconductor.org/packages/CGHcall")
67ee83d6
RJ
2500 (synopsis "Base functions and classes for arrayCGH data analysis")
2501 (description "This package contains functions and classes that are needed by
2502@code{arrayCGH} packages.")
2503 (license license:gpl2+)))
0ef8cc9c
RJ
2504
2505(define-public r-qdnaseq
2506 (package
2507 (name "r-qdnaseq")
3b648409 2508 (version "1.26.0")
0ef8cc9c
RJ
2509 (source (origin
2510 (method url-fetch)
2511 (uri (bioconductor-uri "QDNAseq" version))
2512 (sha256
3b648409 2513 (base32 "1njka1ldaj12id3m2z8ghlrm2lg0n5pxsxyv5gpjnsiabnnaw6ph"))))
0ef8cc9c
RJ
2514 (properties `((upstream-name . "QDNAseq")))
2515 (build-system r-build-system)
2516 (propagated-inputs
2517 `(("r-biobase" ,r-biobase)
2518 ("r-cghbase" ,r-cghbase)
2519 ("r-cghcall" ,r-cghcall)
2520 ("r-dnacopy" ,r-dnacopy)
23ce5ad1
RW
2521 ("r-future" ,r-future)
2522 ("r-future-apply" ,r-future-apply)
0ef8cc9c
RJ
2523 ("r-genomicranges" ,r-genomicranges)
2524 ("r-iranges" ,r-iranges)
2525 ("r-matrixstats" ,r-matrixstats)
2526 ("r-r-utils" ,r-r-utils)
2527 ("r-rsamtools" ,r-rsamtools)))
99db6db7 2528 (home-page "https://bioconductor.org/packages/QDNAseq")
0ef8cc9c
RJ
2529 (synopsis "Quantitative DNA sequencing for chromosomal aberrations")
2530 (description "The genome is divided into non-overlapping fixed-sized bins,
2531number of sequence reads in each counted, adjusted with a simultaneous
2532two-dimensional loess correction for sequence mappability and GC content, and
2533filtered to remove spurious regions in the genome. Downstream steps of
2534segmentation and calling are also implemented via packages DNAcopy and CGHcall,
2535respectively.")
2536 (license license:gpl2+)))
bb15b581
RW
2537
2538(define-public r-bayseq
2539 (package
2540 (name "r-bayseq")
63572b0c 2541 (version "2.24.0")
bb15b581
RW
2542 (source
2543 (origin
2544 (method url-fetch)
2545 (uri (bioconductor-uri "baySeq" version))
2546 (sha256
2547 (base32
63572b0c 2548 "1496inlw0x4mfy3g2v7j9ips96sf7576ydnfn6hvn2m6rz2ls215"))))
bb15b581
RW
2549 (properties `((upstream-name . "baySeq")))
2550 (build-system r-build-system)
2551 (propagated-inputs
2552 `(("r-abind" ,r-abind)
2553 ("r-edger" ,r-edger)
2554 ("r-genomicranges" ,r-genomicranges)))
2555 (home-page "https://bioconductor.org/packages/baySeq/")
2556 (synopsis "Bayesian analysis of differential expression patterns in count data")
2557 (description
2558 "This package identifies differential expression in high-throughput count
2559data, such as that derived from next-generation sequencing machines,
2560calculating estimated posterior likelihoods of differential expression (or
2561more complex hypotheses) via empirical Bayesian methods.")
2562 (license license:gpl3)))
609f4ad1
RW
2563
2564(define-public r-chipcomp
2565 (package
2566 (name "r-chipcomp")
3f04b816 2567 (version "1.20.0")
609f4ad1
RW
2568 (source
2569 (origin
2570 (method url-fetch)
2571 (uri (bioconductor-uri "ChIPComp" version))
2572 (sha256
2573 (base32
3f04b816 2574 "0dbypfgys74snmyf982183ilzg6vamfw1d5y0lp5p8zxbffh2xl7"))))
609f4ad1
RW
2575 (properties `((upstream-name . "ChIPComp")))
2576 (build-system r-build-system)
2577 (propagated-inputs
2578 `(("r-biocgenerics" ,r-biocgenerics)
2579 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
2580 ("r-bsgenome-mmusculus-ucsc-mm9" ,r-bsgenome-mmusculus-ucsc-mm9)
2581 ("r-genomeinfodb" ,r-genomeinfodb)
2582 ("r-genomicranges" ,r-genomicranges)
2583 ("r-iranges" ,r-iranges)
2584 ("r-limma" ,r-limma)
2585 ("r-rsamtools" ,r-rsamtools)
2586 ("r-rtracklayer" ,r-rtracklayer)
2587 ("r-s4vectors" ,r-s4vectors)))
2588 (home-page "https://bioconductor.org/packages/ChIPComp")
2589 (synopsis "Quantitative comparison of multiple ChIP-seq datasets")
2590 (description
2591 "ChIPComp implements a statistical method for quantitative comparison of
2592multiple ChIP-seq datasets. It detects differentially bound sharp binding
2593sites across multiple conditions considering matching control in ChIP-seq
2594datasets.")
2595 ;; Any version of the GPL.
2596 (license license:gpl3+)))
0490f9de
RW
2597
2598(define-public r-riboprofiling
2599 (package
2600 (name "r-riboprofiling")
03b655c5 2601 (version "1.20.0")
0490f9de
RW
2602 (source
2603 (origin
2604 (method url-fetch)
2605 (uri (bioconductor-uri "RiboProfiling" version))
2606 (sha256
2607 (base32
03b655c5 2608 "112071w7aw7cwckipq0dll1lssl7pwafma4v9jj9sx12rjcj57xg"))))
0490f9de
RW
2609 (properties `((upstream-name . "RiboProfiling")))
2610 (build-system r-build-system)
2611 (propagated-inputs
2612 `(("r-biocgenerics" ,r-biocgenerics)
2613 ("r-biostrings" ,r-biostrings)
2614 ("r-data-table" ,r-data-table)
2615 ("r-genomeinfodb" ,r-genomeinfodb)
2616 ("r-genomicalignments" ,r-genomicalignments)
2617 ("r-genomicfeatures" ,r-genomicfeatures)
2618 ("r-genomicranges" ,r-genomicranges)
2619 ("r-ggbio" ,r-ggbio)
2620 ("r-ggplot2" ,r-ggplot2)
2621 ("r-iranges" ,r-iranges)
2622 ("r-plyr" ,r-plyr)
2623 ("r-reshape2" ,r-reshape2)
2624 ("r-rsamtools" ,r-rsamtools)
2625 ("r-rtracklayer" ,r-rtracklayer)
2626 ("r-s4vectors" ,r-s4vectors)
2627 ("r-sqldf" ,r-sqldf)))
7aae05a9
RW
2628 (native-inputs
2629 `(("r-knitr" ,r-knitr)))
0490f9de
RW
2630 (home-page "https://bioconductor.org/packages/RiboProfiling/")
2631 (synopsis "Ribosome profiling data analysis")
2632 (description "Starting with a BAM file, this package provides the
2633necessary functions for quality assessment, read start position recalibration,
2634the counting of genomic sequence reads on CDS, 3'UTR, and 5'UTR, and plotting
2635of count data: pairs, log fold-change, codon frequency and coverage
2636assessment, principal component analysis on codon coverage.")
2637 (license license:gpl3)))
6ffdfe6a
RW
2638
2639(define-public r-riboseqr
2640 (package
2641 (name "r-riboseqr")
3813c9fe 2642 (version "1.24.0")
6ffdfe6a
RW
2643 (source
2644 (origin
2645 (method url-fetch)
2646 (uri (bioconductor-uri "riboSeqR" version))
2647 (sha256
2648 (base32
3813c9fe 2649 "07i64gch14rsbjlfv17s689wzlqbi7hcqhcw21pp6cw8bvhvd5xr"))))
6ffdfe6a
RW
2650 (properties `((upstream-name . "riboSeqR")))
2651 (build-system r-build-system)
2652 (propagated-inputs
2653 `(("r-abind" ,r-abind)
2654 ("r-bayseq" ,r-bayseq)
2655 ("r-genomeinfodb" ,r-genomeinfodb)
2656 ("r-genomicranges" ,r-genomicranges)
2657 ("r-iranges" ,r-iranges)
2658 ("r-rsamtools" ,r-rsamtools)
2659 ("r-seqlogo" ,r-seqlogo)))
2660 (home-page "https://bioconductor.org/packages/riboSeqR/")
2661 (synopsis "Analysis of sequencing data from ribosome profiling experiments")
2662 (description
2663 "This package provides plotting functions, frameshift detection and
2664parsing of genetic sequencing data from ribosome profiling experiments.")
2665 (license license:gpl3)))
a32279ff
RW
2666
2667(define-public r-interactionset
35dae951 2668 (package ;BROKEN
a32279ff 2669 (name "r-interactionset")
35dae951 2670 (version "1.18.0")
a32279ff
RW
2671 (source
2672 (origin
2673 (method url-fetch)
2674 (uri (bioconductor-uri "InteractionSet" version))
2675 (sha256
2676 (base32
35dae951 2677 "14lp23b298wr3r7ggcfvas0xlf1866cpla0rv7dz589f50z6bj31"))))
a32279ff
RW
2678 (properties
2679 `((upstream-name . "InteractionSet")))
2680 (build-system r-build-system)
2681 (propagated-inputs
2682 `(("r-biocgenerics" ,r-biocgenerics)
2683 ("r-genomeinfodb" ,r-genomeinfodb)
2684 ("r-genomicranges" ,r-genomicranges)
2685 ("r-iranges" ,r-iranges)
2686 ("r-matrix" ,r-matrix)
2687 ("r-rcpp" ,r-rcpp)
2688 ("r-s4vectors" ,r-s4vectors)
2689 ("r-summarizedexperiment" ,r-summarizedexperiment)))
861a903f
RW
2690 (native-inputs
2691 `(("r-knitr" ,r-knitr)))
a32279ff
RW
2692 (home-page "https://bioconductor.org/packages/InteractionSet")
2693 (synopsis "Base classes for storing genomic interaction data")
2694 (description
02fe0976 2695 "This package provides the @code{GInteractions},
a32279ff
RW
2696@code{InteractionSet} and @code{ContactMatrix} objects and associated methods
2697for storing and manipulating genomic interaction data from Hi-C and ChIA-PET
2698experiments.")
2699 (license license:gpl3)))
cf9a29b2
RW
2700
2701(define-public r-genomicinteractions
2702 (package
2703 (name "r-genomicinteractions")
dd9341ff 2704 (version "1.24.0")
cf9a29b2
RW
2705 (source
2706 (origin
2707 (method url-fetch)
2708 (uri (bioconductor-uri "GenomicInteractions" version))
2709 (sha256
2710 (base32
dd9341ff 2711 "0ad0a5cadchx1rkqj4cc8k0y1zf34jgp1406hvik5zabr7xijkbd"))))
cf9a29b2
RW
2712 (properties
2713 `((upstream-name . "GenomicInteractions")))
2714 (build-system r-build-system)
2715 (propagated-inputs
2716 `(("r-biobase" ,r-biobase)
2717 ("r-biocgenerics" ,r-biocgenerics)
2718 ("r-data-table" ,r-data-table)
2719 ("r-dplyr" ,r-dplyr)
2720 ("r-genomeinfodb" ,r-genomeinfodb)
2721 ("r-genomicranges" ,r-genomicranges)
2722 ("r-ggplot2" ,r-ggplot2)
2723 ("r-gridextra" ,r-gridextra)
2724 ("r-gviz" ,r-gviz)
2725 ("r-igraph" ,r-igraph)
2726 ("r-interactionset" ,r-interactionset)
2727 ("r-iranges" ,r-iranges)
2728 ("r-rsamtools" ,r-rsamtools)
2729 ("r-rtracklayer" ,r-rtracklayer)
2730 ("r-s4vectors" ,r-s4vectors)
2731 ("r-stringr" ,r-stringr)))
81a37891
RW
2732 (native-inputs
2733 `(("r-knitr" ,r-knitr)))
cf9a29b2
RW
2734 (home-page "https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions/")
2735 (synopsis "R package for handling genomic interaction data")
2736 (description
2737 "This R package provides tools for handling genomic interaction data,
2738such as ChIA-PET/Hi-C, annotating genomic features with interaction
2739information and producing various plots and statistics.")
2740 (license license:gpl3)))
27c51606
RW
2741
2742(define-public r-ctc
2743 (package
2744 (name "r-ctc")
d27dfbf7 2745 (version "1.64.0")
27c51606
RW
2746 (source
2747 (origin
2748 (method url-fetch)
2749 (uri (bioconductor-uri "ctc" version))
2750 (sha256
2751 (base32
d27dfbf7 2752 "1nwlphbfba3w8ixck02k5c84qm4flnp9fd68li0jn5a08qi9gmyp"))))
27c51606
RW
2753 (build-system r-build-system)
2754 (propagated-inputs `(("r-amap" ,r-amap)))
2755 (home-page "https://bioconductor.org/packages/ctc/")
2756 (synopsis "Cluster and tree conversion")
2757 (description
2758 "This package provides tools for exporting and importing classification
2759trees and clusters to other programs.")
2760 (license license:gpl2)))
5da0e142
RW
2761
2762(define-public r-goseq
2763 (package
2764 (name "r-goseq")
c97bcfbd 2765 (version "1.42.0")
5da0e142
RW
2766 (source
2767 (origin
2768 (method url-fetch)
2769 (uri (bioconductor-uri "goseq" version))
2770 (sha256
2771 (base32
c97bcfbd 2772 "18fs3m4kl3zahn42j20rjvxy83irscgqx0dvid7va4majvsib509"))))
5da0e142
RW
2773 (build-system r-build-system)
2774 (propagated-inputs
2775 `(("r-annotationdbi" ,r-annotationdbi)
2776 ("r-biasedurn" ,r-biasedurn)
2777 ("r-biocgenerics" ,r-biocgenerics)
2778 ("r-genelendatabase" ,r-genelendatabase)
2779 ("r-go-db" ,r-go-db)
2780 ("r-mgcv" ,r-mgcv)))
2781 (home-page "https://bioconductor.org/packages/goseq/")
2782 (synopsis "Gene Ontology analyser for RNA-seq and other length biased data")
2783 (description
2784 "This package provides tools to detect Gene Ontology and/or other user
2785defined categories which are over/under represented in RNA-seq data.")
2786 (license license:lgpl2.0+)))
f4235c0e
RW
2787
2788(define-public r-glimma
2789 (package
2790 (name "r-glimma")
3dab4570 2791 (version "2.0.0")
f4235c0e
RW
2792 (source
2793 (origin
2794 (method url-fetch)
2795 (uri (bioconductor-uri "Glimma" version))
2796 (sha256
2797 (base32
3dab4570 2798 "0gy30v30lw27frhmw39pzacqzrv2vwj5rsp6gb3yifllrahdiffv"))))
f4235c0e
RW
2799 (properties `((upstream-name . "Glimma")))
2800 (build-system r-build-system)
2801 (propagated-inputs
3dab4570 2802 `(("r-deseq2" ,r-deseq2)
2803 ("r-edger" ,r-edger)
2804 ("r-htmlwidgets" ,r-htmlwidgets)
f4235c0e 2805 ("r-jsonlite" ,r-jsonlite)
3dab4570 2806 ("r-limma" ,r-limma)
2807 ("r-s4vectors" ,r-s4vectors)
2808 ("r-summarizedexperiment" ,r-summarizedexperiment)))
a6251d6e
RW
2809 (native-inputs
2810 `(("r-knitr" ,r-knitr)))
f4235c0e
RW
2811 (home-page "https://github.com/Shians/Glimma")
2812 (synopsis "Interactive HTML graphics")
2813 (description
2814 "This package generates interactive visualisations for analysis of
2815RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
2816HTML page. The interactions are built on top of the popular static
2817representations of analysis results in order to provide additional
2818information.")
2819 (license license:lgpl3)))
aa388dc7
RW
2820
2821(define-public r-rots
2822 (package
2823 (name "r-rots")
0ef40b23 2824 (version "1.18.0")
aa388dc7
RW
2825 (source
2826 (origin
2827 (method url-fetch)
2828 (uri (bioconductor-uri "ROTS" version))
2829 (sha256
2830 (base32
0ef40b23 2831 "0qk0gfhgr14g13zlfyf5101b5s8cma7j3r8a92q93h0axy8ka23n"))))
aa388dc7
RW
2832 (properties `((upstream-name . "ROTS")))
2833 (build-system r-build-system)
2834 (propagated-inputs
2835 `(("r-biobase" ,r-biobase)
2836 ("r-rcpp" ,r-rcpp)))
2837 (home-page "https://bioconductor.org/packages/ROTS/")
2838 (synopsis "Reproducibility-Optimized Test Statistic")
2839 (description
2840 "This package provides tools for calculating the
2841@dfn{Reproducibility-Optimized Test Statistic} (ROTS) for differential testing
2842in omics data.")
2843 (license license:gpl2+)))
b64ce4b7 2844
cad6fb2d
RW
2845(define-public r-plgem
2846 (package
2847 (name "r-plgem")
1c9bdfcf 2848 (version "1.62.0")
cad6fb2d
RW
2849 (source
2850 (origin
2851 (method url-fetch)
2852 (uri (bioconductor-uri "plgem" version))
2853 (sha256
2854 (base32
1c9bdfcf 2855 "039gqwsm1v6q8v8b248nm8g9gnsk379mfx65rbgdmh3chsd8pm8a"))))
cad6fb2d
RW
2856 (build-system r-build-system)
2857 (propagated-inputs
2858 `(("r-biobase" ,r-biobase)
2859 ("r-mass" ,r-mass)))
2860 (home-page "http://www.genopolis.it")
2861 (synopsis "Detect differential expression in microarray and proteomics datasets")
2862 (description
2863 "The Power Law Global Error Model (PLGEM) has been shown to faithfully
2864model the variance-versus-mean dependence that exists in a variety of
2865genome-wide datasets, including microarray and proteomics data. The use of
2866PLGEM has been shown to improve the detection of differentially expressed
2867genes or proteins in these datasets.")
2868 (license license:gpl2)))
2869
b64ce4b7
RW
2870(define-public r-inspect
2871 (package
2872 (name "r-inspect")
41d6b41f 2873 (version "1.20.0")
b64ce4b7
RW
2874 (source
2875 (origin
2876 (method url-fetch)
2877 (uri (bioconductor-uri "INSPEcT" version))
2878 (sha256
2879 (base32
41d6b41f 2880 "1jymvi5mf7vhs58zfh290pacfswgvkw09rmbirmr24kxcgl30483"))))
b64ce4b7
RW
2881 (properties `((upstream-name . "INSPEcT")))
2882 (build-system r-build-system)
2883 (propagated-inputs
2884 `(("r-biobase" ,r-biobase)
2885 ("r-biocgenerics" ,r-biocgenerics)
2886 ("r-biocparallel" ,r-biocparallel)
c86fc969 2887 ("r-deseq2" ,r-deseq2)
b64ce4b7 2888 ("r-desolve" ,r-desolve)
bd824de3 2889 ("r-gdata" ,r-gdata)
74bb4cdf 2890 ("r-genomeinfodb" ,r-genomeinfodb)
b64ce4b7
RW
2891 ("r-genomicalignments" ,r-genomicalignments)
2892 ("r-genomicfeatures" ,r-genomicfeatures)
2893 ("r-genomicranges" ,r-genomicranges)
2894 ("r-iranges" ,r-iranges)
74bb4cdf 2895 ("r-kernsmooth" ,r-kernsmooth)
c86fc969 2896 ("r-plgem" ,r-plgem)
b64ce4b7
RW
2897 ("r-proc" ,r-proc)
2898 ("r-rootsolve" ,r-rootsolve)
2899 ("r-rsamtools" ,r-rsamtools)
437bc4dd 2900 ("r-rtracklayer" ,r-rtracklayer)
c86fc969
RW
2901 ("r-s4vectors" ,r-s4vectors)
2902 ("r-shiny" ,r-shiny)
2903 ("r-summarizedexperiment" ,r-summarizedexperiment)
2904 ("r-txdb-mmusculus-ucsc-mm9-knowngene"
2905 ,r-txdb-mmusculus-ucsc-mm9-knowngene)))
437bc4dd
RW
2906 (native-inputs
2907 `(("r-knitr" ,r-knitr)))
b64ce4b7
RW
2908 (home-page "https://bioconductor.org/packages/INSPEcT")
2909 (synopsis "Analysis of 4sU-seq and RNA-seq time-course data")
2910 (description
2911 "INSPEcT (INference of Synthesis, Processing and dEgradation rates in
2912Time-Course experiments) analyses 4sU-seq and RNA-seq time-course data in
2913order to evaluate synthesis, processing and degradation rates and assess via
2914modeling the rates that determines changes in mature mRNA levels.")
2915 (license license:gpl2)))
f6e99763
RW
2916
2917(define-public r-dnabarcodes
2918 (package
2919 (name "r-dnabarcodes")
874a774f 2920 (version "1.20.0")
f6e99763
RW
2921 (source
2922 (origin
2923 (method url-fetch)
2924 (uri (bioconductor-uri "DNABarcodes" version))
2925 (sha256
2926 (base32
874a774f 2927 "0zzf6xgg6k1gdig8zvpawck2bgmamsc0k43j4pl4xsz9an6dmzbg"))))
f6e99763
RW
2928 (properties `((upstream-name . "DNABarcodes")))
2929 (build-system r-build-system)
2930 (propagated-inputs
2931 `(("r-bh" ,r-bh)
2932 ("r-matrix" ,r-matrix)
2933 ("r-rcpp" ,r-rcpp)))
14f40ae8
RW
2934 (native-inputs
2935 `(("r-knitr" ,r-knitr)))
f6e99763
RW
2936 (home-page "https://bioconductor.org/packages/DNABarcodes")
2937 (synopsis "Create and analyze DNA barcodes")
2938 (description
2939 "This package offers tools to create DNA barcode sets capable of
2940correcting insertion, deletion, and substitution errors. Existing barcodes
2941can be analyzed regarding their minimal, maximal and average distances between
2942barcodes. Finally, reads that start with a (possibly mutated) barcode can be
2943demultiplexed, i.e. assigned to their original reference barcode.")
2944 (license license:gpl2)))
09aa3d06
RW
2945
2946(define-public r-ruvseq
2947 (package
2948 (name "r-ruvseq")
a55b1622 2949 (version "1.24.0")
09aa3d06
RW
2950 (source
2951 (origin
2952 (method url-fetch)
2953 (uri (bioconductor-uri "RUVSeq" version))
2954 (sha256
2955 (base32
a55b1622 2956 "1anrybyrzpajr5434svyfbaypjai6x0ifsmqvjgimmxq3xqhv0jh"))))
09aa3d06
RW
2957 (properties `((upstream-name . "RUVSeq")))
2958 (build-system r-build-system)
2959 (propagated-inputs
2960 `(("r-biobase" ,r-biobase)
2961 ("r-edaseq" ,r-edaseq)
2962 ("r-edger" ,r-edger)
2963 ("r-mass" ,r-mass)))
ae0fcaa6
RW
2964 (native-inputs
2965 `(("r-knitr" ,r-knitr)))
09aa3d06
RW
2966 (home-page "https://github.com/drisso/RUVSeq")
2967 (synopsis "Remove unwanted variation from RNA-Seq data")
2968 (description
2969 "This package implements methods to @dfn{remove unwanted variation} (RUV)
2970of Risso et al. (2014) for the normalization of RNA-Seq read counts between
2971samples.")
2972 (license license:artistic2.0)))
286157dc
RW
2973
2974(define-public r-biocneighbors
2975 (package
2976 (name "r-biocneighbors")
47147877 2977 (version "1.8.2")
286157dc
RW
2978 (source
2979 (origin
2980 (method url-fetch)
2981 (uri (bioconductor-uri "BiocNeighbors" version))
2982 (sha256
2983 (base32
47147877 2984 "19gyl917lf5ydy5hgj0hnc388rw5sbj83awav9js2yr2zmbgn4d7"))))
286157dc
RW
2985 (properties `((upstream-name . "BiocNeighbors")))
2986 (build-system r-build-system)
2987 (propagated-inputs
12e2aa96
RW
2988 `(("r-biocparallel" ,r-biocparallel)
2989 ("r-matrix" ,r-matrix)
286157dc 2990 ("r-rcpp" ,r-rcpp)
6fc161fc 2991 ("r-rcpphnsw" ,r-rcpphnsw)
286157dc 2992 ("r-s4vectors" ,r-s4vectors)))
f5864c11
RW
2993 (native-inputs
2994 `(("r-knitr" ,r-knitr)))
286157dc
RW
2995 (home-page "https://bioconductor.org/packages/BiocNeighbors")
2996 (synopsis "Nearest Neighbor Detection for Bioconductor packages")
2997 (description
2998 "This package implements exact and approximate methods for nearest
2999neighbor detection, in a framework that allows them to be easily switched
3000within Bioconductor packages or workflows. The exact algorithm is implemented
3001using pre-clustering with the k-means algorithm. Functions are also provided
3002to search for all neighbors within a given distance. Parallelization is
3003achieved for all methods using the BiocParallel framework.")
3004 (license license:gpl3)))
8a587c89 3005
99391290
RW
3006(define-public r-biocsingular
3007 (package
3008 (name "r-biocsingular")
798ec289 3009 (version "1.6.0")
99391290
RW
3010 (source
3011 (origin
3012 (method url-fetch)
3013 (uri (bioconductor-uri "BiocSingular" version))
3014 (sha256
3015 (base32
798ec289 3016 "1hczix1h14d19hzcsngqkqqnqkprs41phzlcird8haxnw9bs03ni"))))
99391290
RW
3017 (properties `((upstream-name . "BiocSingular")))
3018 (build-system r-build-system)
3019 (propagated-inputs
3020 `(("r-beachmat" ,r-beachmat)
3021 ("r-biocgenerics" ,r-biocgenerics)
3022 ("r-biocparallel" ,r-biocparallel)
3023 ("r-delayedarray" ,r-delayedarray)
3024 ("r-irlba" ,r-irlba)
3025 ("r-matrix" ,r-matrix)
3026 ("r-rcpp" ,r-rcpp)
3027 ("r-rsvd" ,r-rsvd)
3028 ("r-s4vectors" ,r-s4vectors)))
a8351d46
RW
3029 (native-inputs
3030 `(("r-knitr" ,r-knitr)))
99391290
RW
3031 (home-page "https://github.com/LTLA/BiocSingular")
3032 (synopsis "Singular value decomposition for Bioconductor packages")
3033 (description
3034 "This package implements exact and approximate methods for singular value
3035decomposition and principal components analysis, in a framework that allows
3036them to be easily switched within Bioconductor packages or workflows. Where
3037possible, parallelization is achieved using the BiocParallel framework.")
3038 (license license:gpl3)))
3039
a961ae46
RW
3040(define-public r-destiny
3041 (package
3042 (name "r-destiny")
4217307f 3043 (version "3.4.0")
a961ae46
RW
3044 (source
3045 (origin
3046 (method url-fetch)
3047 (uri (bioconductor-uri "destiny" version))
3048 (sha256
3049 (base32
4217307f 3050 "1i7f5q02zvpfaxhd76fbw0h1wfgjphyn5hrmrjpvlnv4ardzsir2"))))
a961ae46
RW
3051 (build-system r-build-system)
3052 (propagated-inputs
3053 `(("r-biobase" ,r-biobase)
3054 ("r-biocgenerics" ,r-biocgenerics)
6e10ac07 3055 ("r-ggplot-multistats" ,r-ggplot-multistats)
0aa72f2d 3056 ("r-ggplot2" ,r-ggplot2)
a961ae46 3057 ("r-ggthemes" ,r-ggthemes)
6e10ac07
RW
3058 ("r-irlba" ,r-irlba)
3059 ("r-knn-covertree" ,r-knn-covertree)
a961ae46 3060 ("r-matrix" ,r-matrix)
6e10ac07 3061 ("r-pcamethods" ,r-pcamethods)
a961ae46
RW
3062 ("r-proxy" ,r-proxy)
3063 ("r-rcpp" ,r-rcpp)
3064 ("r-rcppeigen" ,r-rcppeigen)
6e10ac07
RW
3065 ("r-rcpphnsw" ,r-rcpphnsw)
3066 ("r-rspectra" ,r-rspectra)
a961ae46
RW
3067 ("r-scales" ,r-scales)
3068 ("r-scatterplot3d" ,r-scatterplot3d)
6e10ac07 3069 ("r-singlecellexperiment" ,r-singlecellexperiment)
a961ae46
RW
3070 ("r-smoother" ,r-smoother)
3071 ("r-summarizedexperiment" ,r-summarizedexperiment)
6e10ac07
RW
3072 ("r-tidyr" ,r-tidyr)
3073 ("r-tidyselect" ,r-tidyselect)
a961ae46 3074 ("r-vim" ,r-vim)))
3f782a6d
RW
3075 (native-inputs
3076 `(("r-nbconvertr" ,r-nbconvertr))) ; for vignettes
a961ae46
RW
3077 (home-page "https://bioconductor.org/packages/destiny/")
3078 (synopsis "Create and plot diffusion maps")
3079 (description "This package provides tools to create and plot diffusion
3080maps.")
3081 ;; Any version of the GPL
3082 (license license:gpl3+)))
3083
8a587c89
RW
3084(define-public r-savr
3085 (package
3086 (name "r-savr")
967fc583 3087 (version "1.28.0")
8a587c89
RW
3088 (source
3089 (origin
3090 (method url-fetch)
3091 (uri (bioconductor-uri "savR" version))
3092 (sha256
3093 (base32
967fc583 3094 "1vha9b7gndwjzvrzr1hdhv3wc6a1s2n9grxwfd78yb2lkysf4hic"))))
8a587c89
RW
3095 (properties `((upstream-name . "savR")))
3096 (build-system r-build-system)
3097 (propagated-inputs
3098 `(("r-ggplot2" ,r-ggplot2)
3099 ("r-gridextra" ,r-gridextra)
3100 ("r-reshape2" ,r-reshape2)
3101 ("r-scales" ,r-scales)
3102 ("r-xml" ,r-xml)))
3103 (home-page "https://github.com/bcalder/savR")
3104 (synopsis "Parse and analyze Illumina SAV files")
3105 (description
3106 "This package provides tools to parse Illumina Sequence Analysis
3107Viewer (SAV) files, access data, and generate QC plots.")
3108 (license license:agpl3+)))
41ffc214
RW
3109
3110(define-public r-chipexoqual
3111 (package
3112 (name "r-chipexoqual")
ff4d0804 3113 (version "1.14.0")
41ffc214
RW
3114 (source
3115 (origin
3116 (method url-fetch)
3117 (uri (bioconductor-uri "ChIPexoQual" version))
3118 (sha256
3119 (base32
ff4d0804 3120 "15r5jgkfwwfqpw4v4q2ddmglm3bfw002nnbnzn1s0v2b1w3bgiag"))))
41ffc214
RW
3121 (properties `((upstream-name . "ChIPexoQual")))
3122 (build-system r-build-system)
3123 (propagated-inputs
3124 `(("r-biocparallel" ,r-biocparallel)
3125 ("r-biovizbase" ,r-biovizbase)
3126 ("r-broom" ,r-broom)
3127 ("r-data-table" ,r-data-table)
3128 ("r-dplyr" ,r-dplyr)
3129 ("r-genomeinfodb" ,r-genomeinfodb)
3130 ("r-genomicalignments" ,r-genomicalignments)
3131 ("r-genomicranges" ,r-genomicranges)
3132 ("r-ggplot2" ,r-ggplot2)
3133 ("r-hexbin" ,r-hexbin)
3134 ("r-iranges" ,r-iranges)
3135 ("r-rcolorbrewer" ,r-rcolorbrewer)
3136 ("r-rmarkdown" ,r-rmarkdown)
3137 ("r-rsamtools" ,r-rsamtools)
3138 ("r-s4vectors" ,r-s4vectors)
3139 ("r-scales" ,r-scales)
3140 ("r-viridis" ,r-viridis)))
9697afb1
RW
3141 (native-inputs
3142 `(("r-knitr" ,r-knitr)))
41ffc214
RW
3143 (home-page "https://github.com/keleslab/ChIPexoQual")
3144 (synopsis "Quality control pipeline for ChIP-exo/nexus data")
3145 (description
3146 "This package provides a quality control pipeline for ChIP-exo/nexus
3147sequencing data.")
3148 (license license:gpl2+)))
c18dccff 3149
3d13b448
RW
3150(define-public r-copynumber
3151 (package
3152 (name "r-copynumber")
43d8db04 3153 (version "1.30.0")
3d13b448
RW
3154 (source (origin
3155 (method url-fetch)
3156 (uri (bioconductor-uri "copynumber" version))
3157 (sha256
3158 (base32
43d8db04 3159 "00fyfy3kpz33v1hqisd5m5xdazwjmjrfj8ssbf6p9m3am2ar23gm"))))
3d13b448
RW
3160 (build-system r-build-system)
3161 (propagated-inputs
3162 `(("r-s4vectors" ,r-s4vectors)
3163 ("r-iranges" ,r-iranges)
3164 ("r-genomicranges" ,r-genomicranges)
3165 ("r-biocgenerics" ,r-biocgenerics)))
3166 (home-page "https://bioconductor.org/packages/copynumber")
3167 (synopsis "Segmentation of single- and multi-track copy number data")
3168 (description
3169 "This package segments single- and multi-track copy number data by a
3170penalized least squares regression method.")
3171 (license license:artistic2.0)))
3172
c18dccff
RW
3173(define-public r-dnacopy
3174 (package
3175 (name "r-dnacopy")
850f4c2a 3176 (version "1.64.0")
c18dccff
RW
3177 (source
3178 (origin
3179 (method url-fetch)
3180 (uri (bioconductor-uri "DNAcopy" version))
3181 (sha256
3182 (base32
850f4c2a 3183 "0km5af4iw8a0m6by933lgdi5246jafyfxk6fsqdiwg07v9wxw5hc"))))
c18dccff
RW
3184 (properties `((upstream-name . "DNAcopy")))
3185 (build-system r-build-system)
3186 (native-inputs `(("gfortran" ,gfortran)))
3187 (home-page "https://bioconductor.org/packages/DNAcopy")
3188 (synopsis "DNA copy number data analysis")
3189 (description
3190 "This package implements the @dfn{circular binary segmentation} (CBS)
3191algorithm to segment DNA copy number data and identify genomic regions with
3192abnormal copy number.")
3193 (license license:gpl2+)))
3a0babac
RW
3194
3195;; This is a CRAN package, but it uncharacteristically depends on a
3196;; Bioconductor package.
3197(define-public r-htscluster
3198 (package
3199 (name "r-htscluster")
3200 (version "2.0.8")
3201 (source
3202 (origin
3203 (method url-fetch)
3204 (uri (cran-uri "HTSCluster" version))
3205 (sha256
3206 (base32
3207 "0wnbfh6hdx8692jilgmv8sys1zm6fqc6mim7vvjhyqlmpm8gm0kg"))))
3208 (properties `((upstream-name . "HTSCluster")))
3209 (build-system r-build-system)
3210 (propagated-inputs
3211 `(("r-capushe" ,r-capushe)
3212 ("r-edger" ,r-edger)
3213 ("r-plotrix" ,r-plotrix)))
3214 (home-page "https://cran.r-project.org/web/packages/HTSCluster")
3215 (synopsis "Clustering high-throughput transcriptome sequencing (HTS) data")
3216 (description
3217 "This package provides a Poisson mixture model is implemented to cluster
3218genes from high-throughput transcriptome sequencing (RNA-seq) data. Parameter
3219estimation is performed using either the EM or CEM algorithm, and the slope
3220heuristics are used for model selection (i.e., to choose the number of
3221clusters).")
3222 (license license:gpl3+)))
173c9960
RW
3223
3224(define-public r-deds
3225 (package
3226 (name "r-deds")
96030bf7 3227 (version "1.60.0")
173c9960
RW
3228 (source
3229 (origin
3230 (method url-fetch)
3231 (uri (bioconductor-uri "DEDS" version))
3232 (sha256
3233 (base32
96030bf7 3234 "0vzsmah2lhxf8k6n4d0i4j609sbvygmb6ii2ridg9z3nskwkrhp8"))))
173c9960
RW
3235 (properties `((upstream-name . "DEDS")))
3236 (build-system r-build-system)
3237 (home-page "https://bioconductor.org/packages/DEDS/")
3238 (synopsis "Differential expression via distance summary for microarray data")
3239 (description
3240 "This library contains functions that calculate various statistics of
3241differential expression for microarray data, including t statistics, fold
3242change, F statistics, SAM, moderated t and F statistics and B statistics. It
3243also implements a new methodology called DEDS (Differential Expression via
3244Distance Summary), which selects differentially expressed genes by integrating
3245and summarizing a set of statistics using a weighted distance approach.")
3246 ;; Any version of the LGPL.
3247 (license license:lgpl3+)))
7ed869f7
RW
3248
3249;; This is a CRAN package, but since it depends on a Bioconductor package we
3250;; put it here.
3251(define-public r-nbpseq
3252 (package
3253 (name "r-nbpseq")
3254 (version "0.3.0")
3255 (source
3256 (origin
3257 (method url-fetch)
3258 (uri (cran-uri "NBPSeq" version))
3259 (sha256
3260 (base32
3261 "0l4ylxhs2k9ww21jjqs67fygk92avdchhx2y1ixzl7yr2yh1y9by"))))
3262 (properties `((upstream-name . "NBPSeq")))
3263 (build-system r-build-system)
3264 (propagated-inputs
3265 `(("r-qvalue" ,r-qvalue)))
3266 (home-page "https://cran.r-project.org/web/packages/NBPSeq")
3267 (synopsis "Negative binomial models for RNA-Seq data")
3268 (description
3269 "This package provides negative binomial models for two-group comparisons
3270and regression inferences from RNA-sequencing data.")
3271 (license license:gpl2)))
3087a2f3
RW
3272
3273(define-public r-ebseq
3274 (package
3275 (name "r-ebseq")
939c888d 3276 (version "1.30.0")
3087a2f3
RW
3277 (source
3278 (origin
3279 (method url-fetch)
3280 (uri (bioconductor-uri "EBSeq" version))
3281 (sha256
3282 (base32
939c888d 3283 "1x2489xaqg85v7n3yhqs0nh9ha6dn4m167dkc6akzig4xivwjjny"))))
3087a2f3
RW
3284 (properties `((upstream-name . "EBSeq")))
3285 (build-system r-build-system)
3286 (propagated-inputs
3287 `(("r-blockmodeling" ,r-blockmodeling)
3288 ("r-gplots" ,r-gplots)
3289 ("r-testthat" ,r-testthat)))
3290 (home-page "https://bioconductor.org/packages/EBSeq")
3291 (synopsis "Differential expression analysis of RNA-seq data")
3292 (description
3293 "This package provides tools for differential expression analysis at both
3294gene and isoform level using RNA-seq data")
3295 (license license:artistic2.0)))
cb1ab035
RJ
3296
3297(define-public r-karyoploter
3298 (package
3299 (name "r-karyoploter")
37da4513 3300 (version "1.16.0")
cb1ab035
RJ
3301 (source (origin
3302 (method url-fetch)
3303 (uri (bioconductor-uri "karyoploteR" version))
3304 (sha256
3305 (base32
37da4513 3306 "1agw49mckm3g33igqdp9lr8a4ky8nhivaxrs7d00dvzk0diqwdb2"))))
cb1ab035
RJ
3307 (build-system r-build-system)
3308 (propagated-inputs
6e2dc9e3
RW
3309 `(("r-annotationdbi" ,r-annotationdbi)
3310 ("r-bamsignals" ,r-bamsignals)
3311 ("r-bezier" ,r-bezier)
3312 ("r-biovizbase" ,r-biovizbase)
3313 ("r-digest" ,r-digest)
3314 ("r-genomeinfodb" ,r-genomeinfodb)
3315 ("r-genomicfeatures" ,r-genomicfeatures)
cb1ab035
RJ
3316 ("r-genomicranges" ,r-genomicranges)
3317 ("r-iranges" ,r-iranges)
cb1ab035 3318 ("r-memoise" ,r-memoise)
6e2dc9e3
RW
3319 ("r-regioner" ,r-regioner)
3320 ("r-rsamtools" ,r-rsamtools)
cb1ab035 3321 ("r-rtracklayer" ,r-rtracklayer)
cb1ab035 3322 ("r-s4vectors" ,r-s4vectors)
cb1ab035 3323 ("r-variantannotation" ,r-variantannotation)))
6e2dc9e3
RW
3324 (native-inputs
3325 `(("r-knitr" ,r-knitr)))
cb1ab035
RJ
3326 (home-page "https://bioconductor.org/packages/karyoploteR/")
3327 (synopsis "Plot customizable linear genomes displaying arbitrary data")
3328 (description "This package creates karyotype plots of arbitrary genomes and
7230f6d5 3329offers a complete set of functions to plot arbitrary data on them. It mimics
cb1ab035
RJ
3330many R base graphics functions coupling them with a coordinate change function
3331automatically mapping the chromosome and data coordinates into the plot
3332coordinates.")
3333 (license license:artistic2.0)))
2cb71d81
RW
3334
3335(define-public r-lpsymphony
3336 (package
3337 (name "r-lpsymphony")
378d67c9 3338 (version "1.18.0")
2cb71d81
RW
3339 (source
3340 (origin
3341 (method url-fetch)
3342 (uri (bioconductor-uri "lpsymphony" version))
3343 (sha256
3344 (base32
378d67c9 3345 "0f9qjfv7rp1y3mwscnjz3pph7m40zgz55xcdhyii6k1iw2vyaxx9"))))
2cb71d81
RW
3346 (build-system r-build-system)
3347 (inputs
0653b8b0 3348 `(("zlib" ,zlib)))
2cb71d81 3349 (native-inputs
0653b8b0
RW
3350 `(("pkg-config" ,pkg-config)
3351 ("r-knitr" ,r-knitr)))
c756328e 3352 (home-page "https://r-forge.r-project.org/projects/rsymphony")
2cb71d81
RW
3353 (synopsis "Symphony integer linear programming solver in R")
3354 (description
3355 "This package was derived from Rsymphony. The package provides an R
3356interface to SYMPHONY, a linear programming solver written in C++. The main
3357difference between this package and Rsymphony is that it includes the solver
3358source code, while Rsymphony expects to find header and library files on the
3359users' system. Thus the intention of @code{lpsymphony} is to provide an easy
3360to install interface to SYMPHONY.")
3361 ;; Symphony 5.4 or later is distributed under the terms of the EPL 1.0.
3362 ;; lpsimphony is released under the same terms.
3363 (license license:epl1.0)))
704de8f5
RW
3364
3365(define-public r-ihw
3366 (package
3367 (name "r-ihw")
95b1f350 3368 (version "1.18.0")
704de8f5
RW
3369 (source
3370 (origin
3371 (method url-fetch)
3372 (uri (bioconductor-uri "IHW" version))
3373 (sha256
3374 (base32
95b1f350 3375 "04szg3bj5cjixxcp8j3inmj0fzk2mg8gp2w2b33x0im8ik24qiw0"))))
704de8f5
RW
3376 (properties `((upstream-name . "IHW")))
3377 (build-system r-build-system)
3378 (propagated-inputs
3379 `(("r-biocgenerics" ,r-biocgenerics)
3380 ("r-fdrtool" ,r-fdrtool)
3381 ("r-lpsymphony" ,r-lpsymphony)
3382 ("r-slam" ,r-slam)))
359a084a
RW
3383 (native-inputs
3384 `(("r-knitr" ,r-knitr)))
704de8f5
RW
3385 (home-page "https://bioconductor.org/packages/IHW")
3386 (synopsis "Independent hypothesis weighting")
3387 (description
3388 "@dfn{Independent hypothesis weighting} (IHW) is a multiple testing
3389procedure that increases power compared to the method of Benjamini and
3390Hochberg by assigning data-driven weights to each hypothesis. The input to
3391IHW is a two-column table of p-values and covariates. The covariate can be
3392any continuous-valued or categorical variable that is thought to be
3393informative on the statistical properties of each hypothesis test, while it is
3394independent of the p-value under the null hypothesis.")
3395 (license license:artistic2.0)))
251e0830
RW
3396
3397(define-public r-icobra
3398 (package
3399 (name "r-icobra")
e26b5eef 3400 (version "1.18.0")
251e0830
RW
3401 (source
3402 (origin
3403 (method url-fetch)
3404 (uri (bioconductor-uri "iCOBRA" version))
3405 (sha256
3406 (base32
e26b5eef 3407 "0knqvvfi5y53jk8s2g2bqgxnh2pbdf38676fk7pkdp1r2j6cbi3s"))))
251e0830
RW
3408 (properties `((upstream-name . "iCOBRA")))
3409 (build-system r-build-system)
3410 (propagated-inputs
3411 `(("r-dplyr" ,r-dplyr)
3412 ("r-dt" ,r-dt)
3413 ("r-ggplot2" ,r-ggplot2)
3414 ("r-limma" ,r-limma)
3415 ("r-reshape2" ,r-reshape2)
3416 ("r-rocr" ,r-rocr)
3417 ("r-scales" ,r-scales)
3418 ("r-shiny" ,r-shiny)
3419 ("r-shinybs" ,r-shinybs)
3420 ("r-shinydashboard" ,r-shinydashboard)
3421 ("r-upsetr" ,r-upsetr)))
ee1e8fee
RW
3422 (native-inputs
3423 `(("r-knitr" ,r-knitr)))
251e0830
RW
3424 (home-page "https://bioconductor.org/packages/iCOBRA")
3425 (synopsis "Comparison and visualization of ranking and assignment methods")
3426 (description
3427 "This package provides functions for calculation and visualization of
3428performance metrics for evaluation of ranking and binary
3429classification (assignment) methods. It also contains a Shiny application for
3430interactive exploration of results.")
3431 (license license:gpl2+)))
925fcdbb
RW
3432
3433(define-public r-mast
3434 (package
3435 (name "r-mast")
532b1068 3436 (version "1.16.0")
925fcdbb
RW
3437 (source
3438 (origin
3439 (method url-fetch)
3440 (uri (bioconductor-uri "MAST" version))
3441 (sha256
3442 (base32
532b1068 3443 "11qr7n9i4masqz0yzikddchyn223m8dy6zv461dly07fd43qi9mn"))))
925fcdbb
RW
3444 (properties `((upstream-name . "MAST")))
3445 (build-system r-build-system)
3446 (propagated-inputs
3447 `(("r-abind" ,r-abind)
3448 ("r-biobase" ,r-biobase)
3449 ("r-biocgenerics" ,r-biocgenerics)
3450 ("r-data-table" ,r-data-table)
3451 ("r-ggplot2" ,r-ggplot2)
3452 ("r-plyr" ,r-plyr)
3453 ("r-progress" ,r-progress)
3454 ("r-reshape2" ,r-reshape2)
3455 ("r-s4vectors" ,r-s4vectors)
3456 ("r-singlecellexperiment" ,r-singlecellexperiment)
3457 ("r-stringr" ,r-stringr)
3458 ("r-summarizedexperiment" ,r-summarizedexperiment)))
51d1a7a2
RW
3459 (native-inputs
3460 `(("r-knitr" ,r-knitr)))
925fcdbb
RW
3461 (home-page "https://github.com/RGLab/MAST/")
3462 (synopsis "Model-based analysis of single cell transcriptomics")
3463 (description
3464 "This package provides methods and models for handling zero-inflated
3465single cell assay data.")
3466 (license license:gpl2+)))
2d7627cf
RW
3467
3468(define-public r-monocle
3469 (package
3470 (name "r-monocle")
38bc0bf8 3471 (version "2.18.0")
2d7627cf
RW
3472 (source
3473 (origin
3474 (method url-fetch)
3475 (uri (bioconductor-uri "monocle" version))
3476 (sha256
3477 (base32
38bc0bf8 3478 "1k3hwi9aspjy75arigg7i1w7ygf112y12cndibf2bhpz2phzwslx"))))
2d7627cf
RW
3479 (build-system r-build-system)
3480 (propagated-inputs
3481 `(("r-biobase" ,r-biobase)
3482 ("r-biocgenerics" ,r-biocgenerics)
3483 ("r-biocviews" ,r-biocviews)
3484 ("r-cluster" ,r-cluster)
3485 ("r-combinat" ,r-combinat)
3486 ("r-ddrtree" ,r-ddrtree)
3487 ("r-densityclust" ,r-densityclust)
3488 ("r-dplyr" ,r-dplyr)
3489 ("r-fastica" ,r-fastica)
3490 ("r-ggplot2" ,r-ggplot2)
3491 ("r-hsmmsinglecell" ,r-hsmmsinglecell)
3492 ("r-igraph" ,r-igraph)
3493 ("r-irlba" ,r-irlba)
3494 ("r-limma" ,r-limma)
3495 ("r-mass" ,r-mass)
3496 ("r-matrix" ,r-matrix)
3497 ("r-matrixstats" ,r-matrixstats)
3498 ("r-pheatmap" ,r-pheatmap)
3499 ("r-plyr" ,r-plyr)
3500 ("r-proxy" ,r-proxy)
3501 ("r-qlcmatrix" ,r-qlcmatrix)
3502 ("r-rann" ,r-rann)
3503 ("r-rcpp" ,r-rcpp)
3504 ("r-reshape2" ,r-reshape2)
3505 ("r-rtsne" ,r-rtsne)
3506 ("r-slam" ,r-slam)
3507 ("r-stringr" ,r-stringr)
3508 ("r-tibble" ,r-tibble)
3509 ("r-vgam" ,r-vgam)
3510 ("r-viridis" ,r-viridis)))
d1f3c371
RW
3511 (native-inputs
3512 `(("r-knitr" ,r-knitr)))
2d7627cf
RW
3513 (home-page "https://bioconductor.org/packages/monocle")
3514 (synopsis "Clustering, differential expression, and trajectory analysis for single-cell RNA-Seq")
3515 (description
3516 "Monocle performs differential expression and time-series analysis for
3517single-cell expression experiments. It orders individual cells according to
3518progress through a biological process, without knowing ahead of time which
3519genes define progress through that process. Monocle also performs
3520differential expression analysis, clustering, visualization, and other useful
3521tasks on single cell expression data. It is designed to work with RNA-Seq and
3522qPCR data, but could be used with other types as well.")
3523 (license license:artistic2.0)))
6213e441 3524
b2dce6b5
RW
3525(define-public r-monocle3
3526 (package
3527 (name "r-monocle3")
3528 (version "0.1.2")
3529 (source
3530 (origin
3531 (method git-fetch)
3532 (uri (git-reference
b0e7b699 3533 (url "https://github.com/cole-trapnell-lab/monocle3")
b2dce6b5
RW
3534 (commit version)))
3535 (file-name (git-file-name name version))
3536 (sha256
3537 (base32
3538 "1cjxqfw3qvy269hsf5v80d4kshl932wrl949iayas02saj6f70ls"))))
3539 (build-system r-build-system)
3540 (propagated-inputs
3541 `(("r-biobase" ,r-biobase)
3542 ("r-biocgenerics" ,r-biocgenerics)
3543 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
3544 ("r-dplyr" ,r-dplyr)
3545 ("r-ggplot2" ,r-ggplot2)
3546 ("r-ggrepel" ,r-ggrepel)
3547 ("r-grr" ,r-grr)
3548 ("r-htmlwidgets" ,r-htmlwidgets)
3549 ("r-igraph" ,r-igraph)
3550 ("r-irlba" ,r-irlba)
3551 ("r-limma" ,r-limma)
3552 ("r-lmtest" ,r-lmtest)
3553 ("r-mass" ,r-mass)
3554 ("r-matrix" ,r-matrix)
3555 ("r-matrix-utils" ,r-matrix-utils)
3556 ("r-pbapply" ,r-pbapply)
3557 ("r-pbmcapply" ,r-pbmcapply)
3558 ("r-pheatmap" ,r-pheatmap)
3559 ("r-plotly" ,r-plotly)
3560 ("r-pryr" ,r-pryr)
3561 ("r-proxy" ,r-proxy)
3562 ("r-pscl" ,r-pscl)
3563 ("r-purrr" ,r-purrr)
3564 ("r-rann" ,r-rann)
3565 ("r-rcpp" ,r-rcpp)
3566 ("r-rcppparallel" ,r-rcppparallel)
3567 ("r-reshape2" ,r-reshape2)
3568 ("r-reticulate" ,r-reticulate)
3569 ("r-rhpcblasctl" ,r-rhpcblasctl)
3570 ("r-rtsne" ,r-rtsne)
3571 ("r-shiny" ,r-shiny)
3572 ("r-slam" ,r-slam)
3573 ("r-spdep" ,r-spdep)
3574 ("r-speedglm" ,r-speedglm)
3575 ("r-stringr" ,r-stringr)
3576 ("r-singlecellexperiment" ,r-singlecellexperiment)
3577 ("r-tibble" ,r-tibble)
3578 ("r-tidyr" ,r-tidyr)
3579 ("r-uwot" ,r-uwot)
3580 ("r-viridis" ,r-viridis)))
3581 (home-page "https://github.com/cole-trapnell-lab/monocle3")
3582 (synopsis "Analysis toolkit for single-cell RNA-Seq data")
3583 (description
3584 "Monocle 3 is an analysis toolkit for single-cell RNA-Seq experiments.")
3585 (license license:expat)))
3586
6213e441
RW
3587(define-public r-noiseq
3588 (package
3589 (name "r-noiseq")
8396c45e 3590 (version "2.34.0")
6213e441
RW
3591 (source
3592 (origin
3593 (method url-fetch)
3594 (uri (bioconductor-uri "NOISeq" version))
3595 (sha256
3596 (base32
8396c45e 3597 "08qlavakclgzk345bliam4cfjhsy39n4s6m1biqpq94n9qp00x8f"))))
6213e441
RW
3598 (properties `((upstream-name . "NOISeq")))
3599 (build-system r-build-system)
3600 (propagated-inputs
3601 `(("r-biobase" ,r-biobase)
3602 ("r-matrix" ,r-matrix)))
3603 (home-page "https://bioconductor.org/packages/NOISeq")
3604 (synopsis "Exploratory analysis and differential expression for RNA-seq data")
3605 (description
3606 "This package provides tools to support the analysis of RNA-seq
3607expression data or other similar kind of data. It provides exploratory plots
3608to evaluate saturation, count distribution, expression per chromosome, type of
3609detected features, features length, etc. It also supports the analysis of
3610differential expression between two experimental conditions with no parametric
3611assumptions.")
3612 (license license:artistic2.0)))
b409c357
RW
3613
3614(define-public r-scdd
3615 (package
3616 (name "r-scdd")
b856a487 3617 (version "1.14.0")
b409c357
RW
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (bioconductor-uri "scDD" version))
3622 (sha256
3623 (base32
b856a487 3624 "07l07fq5633ccq5d3l35dm34pwvaqfa3b3qwpn5v5xn99f5hfz0g"))))
b409c357
RW
3625 (properties `((upstream-name . "scDD")))
3626 (build-system r-build-system)
3627 (propagated-inputs
3628 `(("r-arm" ,r-arm)
3629 ("r-biocparallel" ,r-biocparallel)
3630 ("r-ebseq" ,r-ebseq)
3631 ("r-fields" ,r-fields)
3632 ("r-ggplot2" ,r-ggplot2)
3633 ("r-mclust" ,r-mclust)
3634 ("r-outliers" ,r-outliers)
3635 ("r-s4vectors" ,r-s4vectors)
3636 ("r-scran" ,r-scran)
3637 ("r-singlecellexperiment" ,r-singlecellexperiment)
3638 ("r-summarizedexperiment" ,r-summarizedexperiment)))
ce9e19bc
RW
3639 (native-inputs
3640 `(("r-knitr" ,r-knitr)))
b409c357
RW
3641 (home-page "https://github.com/kdkorthauer/scDD")
3642 (synopsis "Mixture modeling of single-cell RNA-seq data")
3643 (description
3644 "This package implements a method to analyze single-cell RNA-seq data
3645utilizing flexible Dirichlet Process mixture models. Genes with differential
3646distributions of expression are classified into several interesting patterns
3647of differences between two conditions. The package also includes functions
3648for simulating data with these patterns from negative binomial
3649distributions.")
3650 (license license:gpl2)))
f0887757
RW
3651
3652(define-public r-scone
3653 (package
3654 (name "r-scone")
bde9dc5b 3655 (version "1.14.0")
f0887757
RW
3656 (source
3657 (origin
3658 (method url-fetch)
3659 (uri (bioconductor-uri "scone" version))
3660 (sha256
3661 (base32
bde9dc5b 3662 "1lnyxcrw3kn5gi3n59dwdhkqps58cjxfknsjsj53qz5rv8iiqz73"))))
f0887757
RW
3663 (build-system r-build-system)
3664 (propagated-inputs
3665 `(("r-aroma-light" ,r-aroma-light)
3666 ("r-biocparallel" ,r-biocparallel)
3667 ("r-boot" ,r-boot)
3668 ("r-class" ,r-class)
3669 ("r-cluster" ,r-cluster)
3670 ("r-compositions" ,r-compositions)
3671 ("r-diptest" ,r-diptest)
3672 ("r-edger" ,r-edger)
3673 ("r-fpc" ,r-fpc)
3674 ("r-gplots" ,r-gplots)
3675 ("r-hexbin" ,r-hexbin)
3676 ("r-limma" ,r-limma)
3677 ("r-matrixstats" ,r-matrixstats)
3678 ("r-mixtools" ,r-mixtools)
3679 ("r-rarpack" ,r-rarpack)
3680 ("r-rcolorbrewer" ,r-rcolorbrewer)
3681 ("r-rhdf5" ,r-rhdf5)
3682 ("r-ruvseq" ,r-ruvseq)
3683 ("r-summarizedexperiment" ,r-summarizedexperiment)))
3fc1e039
RW
3684 (native-inputs
3685 `(("r-knitr" ,r-knitr)))
f0887757
RW
3686 (home-page "https://bioconductor.org/packages/scone")
3687 (synopsis "Single cell overview of normalized expression data")
3688 (description
3689 "SCONE is an R package for comparing and ranking the performance of
3690different normalization schemes for single-cell RNA-seq and other
3691high-throughput analyses.")
3692 (license license:artistic2.0)))
f9201d67
RW
3693
3694(define-public r-geoquery
3695 (package
3696 (name "r-geoquery")
5c4edeef 3697 (version "2.58.0")
f9201d67
RW
3698 (source
3699 (origin
3700 (method url-fetch)
3701 (uri (bioconductor-uri "GEOquery" version))
3702 (sha256
3703 (base32
5c4edeef 3704 "1jzhgnd404wkz978vbqzwbgixr7yk98c7s9q1fzlyax4f8l0cpi4"))))
f9201d67
RW
3705 (properties `((upstream-name . "GEOquery")))
3706 (build-system r-build-system)
3707 (propagated-inputs
3708 `(("r-biobase" ,r-biobase)
3709 ("r-dplyr" ,r-dplyr)
3710 ("r-httr" ,r-httr)
3711 ("r-limma" ,r-limma)
3712 ("r-magrittr" ,r-magrittr)
3713 ("r-readr" ,r-readr)
3714 ("r-tidyr" ,r-tidyr)
3715 ("r-xml2" ,r-xml2)))
159e427c
RW
3716 (native-inputs
3717 `(("r-knitr" ,r-knitr)))
f9201d67
RW
3718 (home-page "https://github.com/seandavi/GEOquery/")
3719 (synopsis "Get data from NCBI Gene Expression Omnibus (GEO)")
3720 (description
3721 "The NCBI Gene Expression Omnibus (GEO) is a public repository of
3722microarray data. Given the rich and varied nature of this resource, it is
3723only natural to want to apply BioConductor tools to these data. GEOquery is
3724the bridge between GEO and BioConductor.")
3725 (license license:gpl2)))
eed6ff03
RW
3726
3727(define-public r-illuminaio
3728 (package
3729 (name "r-illuminaio")
e89966e9 3730 (version "0.32.0")
eed6ff03
RW
3731 (source
3732 (origin
3733 (method url-fetch)
3734 (uri (bioconductor-uri "illuminaio" version))
3735 (sha256
3736 (base32
e89966e9 3737 "1yqm2fqw5ka7qywbal3p7axlwm1r0wibsr33n5xjma1dl9pi8fay"))))
eed6ff03
RW
3738 (build-system r-build-system)
3739 (propagated-inputs
3740 `(("r-base64" ,r-base64)))
3741 (home-page "https://github.com/HenrikBengtsson/illuminaio/")
3742 (synopsis "Parse Illumina microarray output files")
3743 (description
3744 "This package provides tools for parsing Illumina's microarray output
3745files, including IDAT.")
3746 (license license:gpl2)))
f4eac096
RW
3747
3748(define-public r-siggenes
3749 (package
3750 (name "r-siggenes")
0fd830fe 3751 (version "1.64.0")
f4eac096
RW
3752 (source
3753 (origin
3754 (method url-fetch)
3755 (uri (bioconductor-uri "siggenes" version))
3756 (sha256
3757 (base32
0fd830fe 3758 "08wi2i6pqx06v13533y3mpli5fb637h0xfwcwy67ya9j2ygypv7w"))))
f4eac096
RW
3759 (build-system r-build-system)
3760 (propagated-inputs
3761 `(("r-biobase" ,r-biobase)
409f4dd6
RW
3762 ("r-multtest" ,r-multtest)
3763 ("r-scrime" ,r-scrime)))
f4eac096
RW
3764 (home-page "https://bioconductor.org/packages/siggenes/")
3765 (synopsis
3766 "Multiple testing using SAM and Efron's empirical Bayes approaches")
3767 (description
3768 "This package provides tools for the identification of differentially
3769expressed genes and estimation of the @dfn{False Discovery Rate} (FDR) using
3770both the Significance Analysis of Microarrays (SAM) and the @dfn{Empirical
3771Bayes Analyses of Microarrays} (EBAM).")
3772 (license license:lgpl2.0+)))
34a24f95
RW
3773
3774(define-public r-bumphunter
3775 (package
3776 (name "r-bumphunter")
50c5fee6 3777 (version "1.32.0")
34a24f95
RW
3778 (source
3779 (origin
3780 (method url-fetch)
3781 (uri (bioconductor-uri "bumphunter" version))
3782 (sha256
3783 (base32
50c5fee6 3784 "0hfl820kfxydv5kpgyly7sibv2sp6dqsmc78qm33n81w4z4j0mkk"))))
34a24f95
RW
3785 (build-system r-build-system)
3786 (propagated-inputs
3787 `(("r-annotationdbi" ,r-annotationdbi)
3788 ("r-biocgenerics" ,r-biocgenerics)
3789 ("r-dorng" ,r-dorng)
3790 ("r-foreach" ,r-foreach)
3791 ("r-genomeinfodb" ,r-genomeinfodb)
3792 ("r-genomicfeatures" ,r-genomicfeatures)
3793 ("r-genomicranges" ,r-genomicranges)
3794 ("r-iranges" ,r-iranges)
3795 ("r-iterators" ,r-iterators)
3796 ("r-limma" ,r-limma)
3797 ("r-locfit" ,r-locfit)
3798 ("r-matrixstats" ,r-matrixstats)
3799 ("r-s4vectors" ,r-s4vectors)))
3800 (home-page "https://github.com/ririzarr/bumphunter")
3801 (synopsis "Find bumps in genomic data")
3802 (description
3803 "This package provides tools for finding bumps in genomic data in order
3804to identify differentially methylated regions in epigenetic epidemiology
3805studies.")
3806 (license license:artistic2.0)))
0fbaf195
RW
3807
3808(define-public r-minfi
3809 (package
3810 (name "r-minfi")
e5a4198b 3811 (version "1.36.0")
0fbaf195
RW
3812 (source
3813 (origin
3814 (method url-fetch)
3815 (uri (bioconductor-uri "minfi" version))
3816 (sha256
3817 (base32
e5a4198b 3818 "1x3ksp6syl54hds7wgm4p9yj4mznhhhhk20ijn3i2jc3k8xqcqfi"))))
0fbaf195
RW
3819 (build-system r-build-system)
3820 (propagated-inputs
3821 `(("r-beanplot" ,r-beanplot)
3822 ("r-biobase" ,r-biobase)
3823 ("r-biocgenerics" ,r-biocgenerics)
3824 ("r-biocparallel" ,r-biocparallel)
3825 ("r-biostrings" ,r-biostrings)
3826 ("r-bumphunter" ,r-bumphunter)
3827 ("r-data-table" ,r-data-table)
3828 ("r-delayedarray" ,r-delayedarray)
3829 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
3830 ("r-genefilter" ,r-genefilter)
3831 ("r-genomeinfodb" ,r-genomeinfodb)
3832 ("r-genomicranges" ,r-genomicranges)
3833 ("r-geoquery" ,r-geoquery)
3834 ("r-hdf5array" ,r-hdf5array)
3835 ("r-illuminaio" ,r-illuminaio)
3836 ("r-iranges" ,r-iranges)
3837 ("r-lattice" ,r-lattice)
3838 ("r-limma" ,r-limma)
3839 ("r-mass" ,r-mass)
3840 ("r-mclust" ,r-mclust)
3841 ("r-nlme" ,r-nlme)
3842 ("r-nor1mix" ,r-nor1mix)
3843 ("r-preprocesscore" ,r-preprocesscore)
3844 ("r-quadprog" ,r-quadprog)
3845 ("r-rcolorbrewer" ,r-rcolorbrewer)
3846 ("r-reshape" ,r-reshape)
3847 ("r-s4vectors" ,r-s4vectors)
3848 ("r-siggenes" ,r-siggenes)
3849 ("r-summarizedexperiment" ,r-summarizedexperiment)))
83e6ffda
RW
3850 (native-inputs
3851 `(("r-knitr" ,r-knitr)))
0fbaf195
RW
3852 (home-page "https://github.com/hansenlab/minfi")
3853 (synopsis "Analyze Illumina Infinium DNA methylation arrays")
3854 (description
3855 "This package provides tools to analyze and visualize Illumina Infinium
3856methylation arrays.")
3857 (license license:artistic2.0)))
5ec5ba02
RW
3858
3859(define-public r-methylumi
3860 (package
3861 (name "r-methylumi")
0b7dd447 3862 (version "2.36.0")
5ec5ba02
RW
3863 (source
3864 (origin
3865 (method url-fetch)
3866 (uri (bioconductor-uri "methylumi" version))
3867 (sha256
3868 (base32
0b7dd447 3869 "00w5affxzirf6ffiznk33papwwvwsk2zgy6xvsx7iaf5kvnak2nh"))))
5ec5ba02
RW
3870 (build-system r-build-system)
3871 (propagated-inputs
3872 `(("r-annotate" ,r-annotate)
3873 ("r-annotationdbi" ,r-annotationdbi)
3874 ("r-biobase" ,r-biobase)
3875 ("r-biocgenerics" ,r-biocgenerics)
3876 ("r-fdb-infiniummethylation-hg19" ,r-fdb-infiniummethylation-hg19)
3877 ("r-genefilter" ,r-genefilter)
3878 ("r-genomeinfodb" ,r-genomeinfodb)
3879 ("r-genomicranges" ,r-genomicranges)
3880 ("r-ggplot2" ,r-ggplot2)
3881 ("r-illuminaio" ,r-illuminaio)
3882 ("r-iranges" ,r-iranges)
3883 ("r-lattice" ,r-lattice)
3884 ("r-matrixstats" ,r-matrixstats)
3885 ("r-minfi" ,r-minfi)
3886 ("r-reshape2" ,r-reshape2)
3887 ("r-s4vectors" ,r-s4vectors)
3888 ("r-scales" ,r-scales)
3889 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5f25d5f8
RW
3890 (native-inputs
3891 `(("r-knitr" ,r-knitr)))
5ec5ba02
RW
3892 (home-page "https://bioconductor.org/packages/methylumi")
3893 (synopsis "Handle Illumina methylation data")
3894 (description
3895 "This package provides classes for holding and manipulating Illumina
3896methylation data. Based on eSet, it can contain MIAME information, sample
3897information, feature information, and multiple matrices of data. An
3898\"intelligent\" import function, methylumiR can read the Illumina text files
3899and create a MethyLumiSet. methylumIDAT can directly read raw IDAT files from
3900HumanMethylation27 and HumanMethylation450 microarrays. Normalization,
3901background correction, and quality control features for GoldenGate, Infinium,
3902and Infinium HD arrays are also included.")
3903 (license license:gpl2)))
09605cb2
RW
3904
3905(define-public r-lumi
3906 (package
3907 (name "r-lumi")
4eeaa159 3908 (version "2.42.0")
09605cb2
RW
3909 (source
3910 (origin
3911 (method url-fetch)
3912 (uri (bioconductor-uri "lumi" version))
3913 (sha256
3914 (base32
4eeaa159 3915 "19asap8vhm3g8hyvpr8l7mw071dsa1d95wx46lh8m6achffngqv3"))))
09605cb2
RW
3916 (build-system r-build-system)
3917 (propagated-inputs
3918 `(("r-affy" ,r-affy)
3919 ("r-annotate" ,r-annotate)
3920 ("r-annotationdbi" ,r-annotationdbi)
3921 ("r-biobase" ,r-biobase)
3922 ("r-dbi" ,r-dbi)
3923 ("r-genomicfeatures" ,r-genomicfeatures)
3924 ("r-genomicranges" ,r-genomicranges)
3925 ("r-kernsmooth" ,r-kernsmooth)
3926 ("r-lattice" ,r-lattice)
3927 ("r-mass" ,r-mass)
3928 ("r-methylumi" ,r-methylumi)
3929 ("r-mgcv" ,r-mgcv)
3930 ("r-nleqslv" ,r-nleqslv)
3931 ("r-preprocesscore" ,r-preprocesscore)
3932 ("r-rsqlite" ,r-rsqlite)))
3933 (home-page "https://bioconductor.org/packages/lumi")
3934 (synopsis "BeadArray-specific methods for Illumina methylation and expression microarrays")
3935 (description
3936 "The lumi package provides an integrated solution for the Illumina
3937microarray data analysis. It includes functions of Illumina
3938BeadStudio (GenomeStudio) data input, quality control, BeadArray-specific
3939variance stabilization, normalization and gene annotation at the probe level.
3940It also includes the functions of processing Illumina methylation microarrays,
3941especially Illumina Infinium methylation microarrays.")
3942 (license license:lgpl2.0+)))
4291f36a
RW
3943
3944(define-public r-linnorm
3945 (package
3946 (name "r-linnorm")
37e09611 3947 (version "2.14.0")
4291f36a
RW
3948 (source
3949 (origin
3950 (method url-fetch)
3951 (uri (bioconductor-uri "Linnorm" version))
3952 (sha256
3953 (base32
37e09611 3954 "1is1kp5av01kqqph16xl7w1dqbyd0q85pgqfv9gqkk8m53635cz3"))))
4291f36a
RW
3955 (properties `((upstream-name . "Linnorm")))
3956 (build-system r-build-system)
3957 (propagated-inputs
3958 `(("r-amap" ,r-amap)
3959 ("r-apcluster" ,r-apcluster)
3960 ("r-ellipse" ,r-ellipse)
3961 ("r-fastcluster" ,r-fastcluster)
3962 ("r-fpc" ,r-fpc)
3963 ("r-ggdendro" ,r-ggdendro)
3964 ("r-ggplot2" ,r-ggplot2)
3965 ("r-gmodels" ,r-gmodels)
3966 ("r-igraph" ,r-igraph)
3967 ("r-limma" ,r-limma)
3968 ("r-mass" ,r-mass)
3969 ("r-mclust" ,r-mclust)
3970 ("r-rcpp" ,r-rcpp)
3971 ("r-rcpparmadillo" ,r-rcpparmadillo)
3972 ("r-rtsne" ,r-rtsne)
3973 ("r-statmod" ,r-statmod)
3974 ("r-vegan" ,r-vegan)
3975 ("r-zoo" ,r-zoo)))
1465873c
RW
3976 (native-inputs
3977 `(("r-knitr" ,r-knitr)))
4291f36a
RW
3978 (home-page "http://www.jjwanglab.org/Linnorm/")
3979 (synopsis "Linear model and normality based transformation method")
3980 (description
3981 "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
3982count data or any large scale count data. It transforms such datasets for
3983parametric tests. In addition to the transformtion function (@code{Linnorm}),
3984the following pipelines are implemented:
3985
3986@enumerate
3987@item Library size/batch effect normalization (@code{Linnorm.Norm})
3988@item Cell subpopluation analysis and visualization using t-SNE or PCA K-means
3989 clustering or hierarchical clustering (@code{Linnorm.tSNE},
3990 @code{Linnorm.PCA}, @code{Linnorm.HClust})
3991@item Differential expression analysis or differential peak detection using
3992 limma (@code{Linnorm.limma})
3993@item Highly variable gene discovery and visualization (@code{Linnorm.HVar})
3994@item Gene correlation network analysis and visualization (@code{Linnorm.Cor})
3995@item Stable gene selection for scRNA-seq data; for users without or who do
3996 not want to rely on spike-in genes (@code{Linnorm.SGenes})
3997@item Data imputation (@code{Linnorm.DataImput}).
3998@end enumerate
3999
4000Linnorm can work with raw count, CPM, RPKM, FPKM and TPM. Additionally, the
4001@code{RnaXSim} function is included for simulating RNA-seq data for the
4002evaluation of DEG analysis methods.")
4003 (license license:expat)))
e4a17532
RW
4004
4005(define-public r-ioniser
4006 (package
4007 (name "r-ioniser")
2a1a6d74 4008 (version "2.14.0")
e4a17532
RW
4009 (source
4010 (origin
4011 (method url-fetch)
4012 (uri (bioconductor-uri "IONiseR" version))
4013 (sha256
4014 (base32
2a1a6d74 4015 "0cfa64d3qv881sa9d665rfki91jaz2spg0zfrb24m37948qzk1lx"))))
e4a17532
RW
4016 (properties `((upstream-name . "IONiseR")))
4017 (build-system r-build-system)
4018 (propagated-inputs
4019 `(("r-biocgenerics" ,r-biocgenerics)
4020 ("r-biocparallel" ,r-biocparallel)
4021 ("r-biostrings" ,r-biostrings)
4022 ("r-bit64" ,r-bit64)
4023 ("r-dplyr" ,r-dplyr)
4024 ("r-ggplot2" ,r-ggplot2)
4025 ("r-magrittr" ,r-magrittr)
4026 ("r-rhdf5" ,r-rhdf5)
4027 ("r-shortread" ,r-shortread)
4028 ("r-stringr" ,r-stringr)
4029 ("r-tibble" ,r-tibble)
4030 ("r-tidyr" ,r-tidyr)
4031 ("r-xvector" ,r-xvector)))
293fb8a1
RW
4032 (native-inputs
4033 `(("r-knitr" ,r-knitr)))
e4a17532
RW
4034 (home-page "https://bioconductor.org/packages/IONiseR/")
4035 (synopsis "Quality assessment tools for Oxford Nanopore MinION data")
4036 (description
4037 "IONiseR provides tools for the quality assessment of Oxford Nanopore
4038MinION data. It extracts summary statistics from a set of fast5 files and can
4039be used either before or after base calling. In addition to standard
4040summaries of the read-types produced, it provides a number of plots for
4041visualising metrics relative to experiment run time or spatially over the
4042surface of a flowcell.")
4043 (license license:expat)))
80eb01c7 4044
f2114762
RW
4045;; This is a CRAN package, but it depends on multtest from Bioconductor.
4046(define-public r-mutoss
4047 (package
4048 (name "r-mutoss")
4049 (version "0.1-12")
4050 (source
4051 (origin
4052 (method url-fetch)
4053 (uri (cran-uri "mutoss" version))
4054 (sha256
4055 (base32
4056 "1yk7p7pb2xm38d3j19ysgwmix48lvimbhkhjjwk5jmr1a0ysx298"))))
4057 (properties `((upstream-name . "mutoss")))
4058 (build-system r-build-system)
4059 (propagated-inputs
4060 `(("r-multcomp" ,r-multcomp)
4061 ("r-multtest" ,r-multtest)
4062 ("r-mvtnorm" ,r-mvtnorm)
4063 ("r-plotrix" ,r-plotrix)))
4064 (home-page "https://github.com/kornl/mutoss/")
4065 (synopsis "Unified multiple testing procedures")
4066 (description
4067 "This package is designed to ease the application and comparison of
4068multiple hypothesis testing procedures for FWER, gFWER, FDR and FDX. Methods
4069are standardized and usable by the accompanying mutossGUI package.")
4070 ;; Any version of the GPL.
4071 (license (list license:gpl2+ license:gpl3+))))
4072
bf770d92
RW
4073;; This is a CRAN package, but it depends on mutoss, which depends on multtest
4074;; from Bioconductor, so we put it here.
4075(define-public r-metap
4076 (package
4077 (name "r-metap")
fd6412cd 4078 (version "1.3")
bf770d92
RW
4079 (source
4080 (origin
4081 (method url-fetch)
4082 (uri (cran-uri "metap" version))
4083 (sha256
4084 (base32
fd6412cd 4085 "1jmmmmjiklaxfl604hwqil193ydaghvd5jv8xsr4bx3pzn5i9kvz"))))
bf770d92
RW
4086 (build-system r-build-system)
4087 (propagated-inputs
4088 `(("r-lattice" ,r-lattice)
4089 ("r-mutoss" ,r-mutoss)
4090 ("r-rdpack" ,r-rdpack)
4091 ("r-tfisher" ,r-tfisher)))
4092 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
4093 (synopsis "Meta-analysis of significance values")
4094 (description
4095 "The canonical way to perform meta-analysis involves using effect sizes.
4096When they are not available this package provides a number of methods for
4097meta-analysis of significance values including the methods of Edgington,
4098Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
4099published results; and a routine for graphical display.")
4100 (license license:gpl2)))
4101
8a5460b4
RW
4102(define-public r-triform
4103 (package
4104 (name "r-triform")
ecb4e165 4105 (version "1.29.0")
8a5460b4
RW
4106 (source
4107 (origin
4108 (method url-fetch)
4109 (uri (bioconductor-uri "triform" version))
4110 (sha256
4111 (base32
ecb4e165 4112 "089b7f6dwpi9abj0ncswbi4s30k45996zb99sh43avw6jcb6qj60"))))
8a5460b4
RW
4113 (build-system r-build-system)
4114 (propagated-inputs
4115 `(("r-biocgenerics" ,r-biocgenerics)
4116 ("r-iranges" ,r-iranges)
4117 ("r-yaml" ,r-yaml)))
4118 (home-page "https://bioconductor.org/packages/triform/")
4119 (synopsis "Find enriched regions in transcription factor ChIP-sequencing data")
4120 (description
4121 "The Triform algorithm uses model-free statistics to identify peak-like
4122distributions of TF ChIP sequencing reads, taking advantage of an improved
4123peak definition in combination with known profile characteristics.")
4124 (license license:gpl2)))
c538bcdd
RW
4125
4126(define-public r-varianttools
4127 (package
4128 (name "r-varianttools")
67837d4a 4129 (version "1.32.0")
c538bcdd
RW
4130 (source
4131 (origin
4132 (method url-fetch)
4133 (uri (bioconductor-uri "VariantTools" version))
4134 (sha256
4135 (base32
67837d4a 4136 "1im4g9p419mikkh4v585yf5f23d13chy67znk4g2mii2i1cd1c89"))))
c538bcdd
RW
4137 (properties `((upstream-name . "VariantTools")))
4138 (build-system r-build-system)
4139 (propagated-inputs
4140 `(("r-biobase" ,r-biobase)
4141 ("r-biocgenerics" ,r-biocgenerics)
4142 ("r-biocparallel" ,r-biocparallel)
4143 ("r-biostrings" ,r-biostrings)
4144 ("r-bsgenome" ,r-bsgenome)
4145 ("r-genomeinfodb" ,r-genomeinfodb)
4146 ("r-genomicfeatures" ,r-genomicfeatures)
4147 ("r-genomicranges" ,r-genomicranges)
4148 ("r-iranges" ,r-iranges)
4149 ("r-matrix" ,r-matrix)
4150 ("r-rsamtools" ,r-rsamtools)
4151 ("r-rtracklayer" ,r-rtracklayer)
4152 ("r-s4vectors" ,r-s4vectors)
4153 ("r-variantannotation" ,r-variantannotation)))
4154 (home-page "https://bioconductor.org/packages/VariantTools/")
4155 (synopsis "Tools for exploratory analysis of variant calls")
4156 (description
4157 "Explore, diagnose, and compare variant calls using filters. The
4158VariantTools package supports a workflow for loading data, calling single
4159sample variants and tumor-specific somatic mutations or other sample-specific
4160variant types (e.g., RNA editing). Most of the functions operate on
4161alignments (BAM files) or datasets of called variants. The user is expected
4162to have already aligned the reads with a separate tool, e.g., GSNAP via
4163gmapR.")
4164 (license license:artistic2.0)))
3e41919d
RW
4165
4166(define-public r-heatplus
4167 (package
4168 (name "r-heatplus")
9813d24d 4169 (version "2.36.0")
3e41919d
RW
4170 (source
4171 (origin
4172 (method url-fetch)
4173 (uri (bioconductor-uri "Heatplus" version))
4174 (sha256
4175 (base32
9813d24d 4176 "0vp8y0242k6q07yjk4sg2w7mlk5pgzhjgqkxa79c5ypkyp095a8n"))))
3e41919d
RW
4177 (properties `((upstream-name . "Heatplus")))
4178 (build-system r-build-system)
4179 (propagated-inputs
4180 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
4181 (home-page "https://github.com/alexploner/Heatplus")
4182 (synopsis "Heatmaps with row and/or column covariates and colored clusters")
4183 (description
4184 "This package provides tools to display a rectangular heatmap (intensity
4185plot) of a data matrix. By default, both samples (columns) and features (row)
4186of the matrix are sorted according to a hierarchical clustering, and the
4187corresponding dendrogram is plotted. Optionally, panels with additional
4188information about samples and features can be added to the plot.")
4189 (license license:gpl2+)))
c04f230e
RW
4190
4191(define-public r-gosemsim
4192 (package
4193 (name "r-gosemsim")
b2084e4d 4194 (version "2.16.1")
c04f230e
RW
4195 (source
4196 (origin
4197 (method url-fetch)
4198 (uri (bioconductor-uri "GOSemSim" version))
4199 (sha256
4200 (base32
b2084e4d 4201 "1hk1626172scja2gr6axy98czblz0zljiqgqaknsv2xj6frhxcgs"))))
c04f230e
RW
4202 (properties `((upstream-name . "GOSemSim")))
4203 (build-system r-build-system)
4204 (propagated-inputs
4205 `(("r-annotationdbi" ,r-annotationdbi)
4206 ("r-go-db" ,r-go-db)
4207 ("r-rcpp" ,r-rcpp)))
d5951dc4
RW
4208 (native-inputs
4209 `(("r-knitr" ,r-knitr)))
c04f230e
RW
4210 (home-page "https://guangchuangyu.github.io/software/GOSemSim")
4211 (synopsis "GO-terms semantic similarity measures")
4212 (description
4213 "The semantic comparisons of @dfn{Gene Ontology} (GO) annotations provide
4214quantitative ways to compute similarities between genes and gene groups, and
4215have became important basis for many bioinformatics analysis approaches.
4216GOSemSim is an R package for semantic similarity computation among GO terms,
4217sets of GO terms, gene products and gene clusters.")
4218 (license license:artistic2.0)))
9d0f7942
RW
4219
4220(define-public r-anota
4221 (package
4222 (name "r-anota")
33c905b9 4223 (version "1.38.0")
9d0f7942
RW
4224 (source
4225 (origin
4226 (method url-fetch)
4227 (uri (bioconductor-uri "anota" version))
4228 (sha256
4229 (base32
33c905b9 4230 "02s061q6dfw1czppqiklb0fz6q0mjyqgxg6926b2dpqpz8hv690x"))))
9d0f7942
RW
4231 (build-system r-build-system)
4232 (propagated-inputs
4233 `(("r-multtest" ,r-multtest)
4234 ("r-qvalue" ,r-qvalue)))
4235 (home-page "https://bioconductor.org/packages/anota/")
4236 (synopsis "Analysis of translational activity")
4237 (description
4238 "Genome wide studies of translational control is emerging as a tool to
0cea26bd 4239study various biological conditions. The output from such analysis is both
7230f6d5 4240the mRNA level (e.g. cytosolic mRNA level) and the level of mRNA actively
9d0f7942
RW
4241involved in translation (the actively translating mRNA level) for each mRNA.
4242The standard analysis of such data strives towards identifying differential
4243translational between two or more sample classes - i.e. differences in
4244actively translated mRNA levels that are independent of underlying differences
4245in cytosolic mRNA levels. This package allows for such analysis using partial
4246variances and the random variance model. As 10s of thousands of mRNAs are
4f664004 4247analyzed in parallel the library performs a number of tests to assure that
9d0f7942
RW
4248the data set is suitable for such analysis.")
4249 (license license:gpl3)))
a6d867fe
RW
4250
4251(define-public r-sigpathway
4252 (package
4253 (name "r-sigpathway")
7dabc629 4254 (version "1.58.0")
a6d867fe
RW
4255 (source
4256 (origin
4257 (method url-fetch)
4258 (uri (bioconductor-uri "sigPathway" version))
4259 (sha256
4260 (base32
7dabc629 4261 "1fkw0ss471pllqxyjyif5lr35cr8sqpx31x0ccjp85lm3blws72l"))))
a6d867fe
RW
4262 (properties `((upstream-name . "sigPathway")))
4263 (build-system r-build-system)
4264 (home-page "https://www.pnas.org/cgi/doi/10.1073/pnas.0506577102")
4265 (synopsis "Pathway analysis")
4266 (description
4267 "This package is used to conduct pathway analysis by calculating the NT_k
4268and NE_k statistics in a statistical framework for determining whether a
4269specified group of genes for a pathway has a coordinated association with a
4270phenotype of interest.")
4271 (license license:gpl2)))
af26c7ae
RW
4272
4273(define-public r-fgsea
4274 (package
4275 (name "r-fgsea")
d68a9ffa 4276 (version "1.16.0")
af26c7ae
RW
4277 (source
4278 (origin
4279 (method url-fetch)
4280 (uri (bioconductor-uri "fgsea" version))
4281 (sha256
4282 (base32
d68a9ffa 4283 "0jmkkayabx3m0lyyc2mxd4vdvv7gv7fbk1r884gplnf2zgsx068n"))))
af26c7ae
RW
4284 (build-system r-build-system)
4285 (propagated-inputs
ebffd24c
RW
4286 `(("r-bh" ,r-bh)
4287 ("r-biocparallel" ,r-biocparallel)
af26c7ae
RW
4288 ("r-data-table" ,r-data-table)
4289 ("r-fastmatch" ,r-fastmatch)
4290 ("r-ggplot2" ,r-ggplot2)
4291 ("r-gridextra" ,r-gridextra)
4292 ("r-matrix" ,r-matrix)
4293 ("r-rcpp" ,r-rcpp)))
1dec455c
RW
4294 (native-inputs
4295 `(("r-knitr" ,r-knitr)))
af26c7ae
RW
4296 (home-page "https://github.com/ctlab/fgsea/")
4297 (synopsis "Fast gene set enrichment analysis")
4298 (description
4299 "The package implements an algorithm for fast gene set enrichment
23c8ef71
VC
4300analysis. Using the fast algorithm makes more permutations and gets
4301more fine grained p-values, which allows using accurate standard approaches
af26c7ae
RW
4302to multiple hypothesis correction.")
4303 (license license:expat)))
305050b5
RW
4304
4305(define-public r-dose
4306 (package
4307 (name "r-dose")
aeb1d56f 4308 (version "3.16.0")
305050b5
RW
4309 (source
4310 (origin
4311 (method url-fetch)
4312 (uri (bioconductor-uri "DOSE" version))
4313 (sha256
4314 (base32
aeb1d56f 4315 "149hpf690jls5r5g84sh2hqs10qbqi94syhxfv8n2f800fk7lgy4"))))
305050b5
RW
4316 (properties `((upstream-name . "DOSE")))
4317 (build-system r-build-system)
4318 (propagated-inputs
4319 `(("r-annotationdbi" ,r-annotationdbi)
4320 ("r-biocparallel" ,r-biocparallel)
4321 ("r-do-db" ,r-do-db)
4322 ("r-fgsea" ,r-fgsea)
4323 ("r-ggplot2" ,r-ggplot2)
4324 ("r-gosemsim" ,r-gosemsim)
4325 ("r-qvalue" ,r-qvalue)
3a80f1cf 4326 ("r-reshape2" ,r-reshape2)))
5ef2b749
RW
4327 (native-inputs
4328 `(("r-knitr" ,r-knitr)))
305050b5
RW
4329 (home-page "https://guangchuangyu.github.io/software/DOSE/")
4330 (synopsis "Disease ontology semantic and enrichment analysis")
4331 (description
4332 "This package implements five methods proposed by Resnik, Schlicker,
4333Jiang, Lin and Wang, respectively, for measuring semantic similarities among
4334@dfn{Disease ontology} (DO) terms and gene products. Enrichment analyses
4335including hypergeometric model and gene set enrichment analysis are also
4336implemented for discovering disease associations of high-throughput biological
4337data.")
4338 (license license:artistic2.0)))
9c30cf65
RW
4339
4340(define-public r-enrichplot
4341 (package
4342 (name "r-enrichplot")
ebf9ad79 4343 (version "1.10.2")
9c30cf65
RW
4344 (source
4345 (origin
4346 (method url-fetch)
4347 (uri (bioconductor-uri "enrichplot" version))
4348 (sha256
4349 (base32
ebf9ad79 4350 "0lm5yapd567jxcnz9m4a623aymf3q00svjrxp3rf0r9j77dgyisv"))))
9c30cf65
RW
4351 (build-system r-build-system)
4352 (propagated-inputs
eb3d17eb 4353 `(("r-cowplot" ,r-cowplot)
9c30cf65 4354 ("r-dose" ,r-dose)
9c30cf65 4355 ("r-ggplot2" ,r-ggplot2)
9c30cf65 4356 ("r-ggraph" ,r-ggraph)
9c30cf65 4357 ("r-gosemsim" ,r-gosemsim)
9c30cf65 4358 ("r-igraph" ,r-igraph)
eb3d17eb 4359 ("r-magrittr" ,r-magrittr)
43fb14ce 4360 ("r-plyr" ,r-plyr)
9c30cf65
RW
4361 ("r-purrr" ,r-purrr)
4362 ("r-rcolorbrewer" ,r-rcolorbrewer)
43fb14ce 4363 ("r-reshape2" ,r-reshape2)
eb3d17eb
RJ
4364 ("r-scatterpie" ,r-scatterpie)
4365 ("r-shadowtext" ,r-shadowtext)))
43fb14ce
RW
4366 (native-inputs
4367 `(("r-knitr" ,r-knitr)))
9c30cf65
RW
4368 (home-page "https://github.com/GuangchuangYu/enrichplot")
4369 (synopsis "Visualization of functional enrichment result")
4370 (description
4371 "The enrichplot package implements several visualization methods for
4372interpreting functional enrichment results obtained from ORA or GSEA analyses.
4373All the visualization methods are developed based on ggplot2 graphics.")
4374 (license license:artistic2.0)))
f8295ee6
RW
4375
4376(define-public r-clusterprofiler
4377 (package
4378 (name "r-clusterprofiler")
6d070923 4379 (version "3.18.1")
f8295ee6
RW
4380 (source
4381 (origin
4382 (method url-fetch)
4383 (uri (bioconductor-uri "clusterProfiler" version))
4384 (sha256
4385 (base32
6d070923 4386 "04v1xsxfxxy8rdjfswv4crpzkx9592r2sh3cjh1kb54sd4lyb6si"))))
f8295ee6
RW
4387 (properties
4388 `((upstream-name . "clusterProfiler")))
4389 (build-system r-build-system)
4390 (propagated-inputs
4391 `(("r-annotationdbi" ,r-annotationdbi)
4392 ("r-dose" ,r-dose)
63c8323a
RW
4393 ("r-downloader" ,r-downloader)
4394 ("r-dplyr" ,r-dplyr)
f8295ee6 4395 ("r-enrichplot" ,r-enrichplot)
f8295ee6
RW
4396 ("r-go-db" ,r-go-db)
4397 ("r-gosemsim" ,r-gosemsim)
4398 ("r-magrittr" ,r-magrittr)
4399 ("r-plyr" ,r-plyr)
4400 ("r-qvalue" ,r-qvalue)
69f3b278 4401 ("r-rlang" ,r-rlang)
f8295ee6
RW
4402 ("r-rvcheck" ,r-rvcheck)
4403 ("r-tidyr" ,r-tidyr)))
63c8323a
RW
4404 (native-inputs
4405 `(("r-knitr" ,r-knitr)))
f8295ee6
RW
4406 (home-page "https://guangchuangyu.github.io/software/clusterProfiler/")
4407 (synopsis "Analysis and visualization of functional profiles for gene clusters")
4408 (description
4409 "This package implements methods to analyze and visualize functional
4410profiles (GO and KEGG) of gene and gene clusters.")
4411 (license license:artistic2.0)))
ce77562a
RW
4412
4413(define-public r-mlinterfaces
4414 (package
4415 (name "r-mlinterfaces")
4f82931d 4416 (version "1.70.0")
ce77562a
RW
4417 (source
4418 (origin
4419 (method url-fetch)
4420 (uri (bioconductor-uri "MLInterfaces" version))
4421 (sha256
4422 (base32
4f82931d 4423 "1j920h1657rc5agd1vrkzk126npfhw7pzr7p7gwg4i0h0wv25q3r"))))
ce77562a
RW
4424 (properties `((upstream-name . "MLInterfaces")))
4425 (build-system r-build-system)
4426 (propagated-inputs
4427 `(("r-annotate" ,r-annotate)
4428 ("r-biobase" ,r-biobase)
4429 ("r-biocgenerics" ,r-biocgenerics)
4430 ("r-cluster" ,r-cluster)
4431 ("r-fpc" ,r-fpc)
4432 ("r-gbm" ,r-gbm)
4433 ("r-gdata" ,r-gdata)
4434 ("r-genefilter" ,r-genefilter)
4435 ("r-ggvis" ,r-ggvis)
4436 ("r-hwriter" ,r-hwriter)
4437 ("r-mass" ,r-mass)
4438 ("r-mlbench" ,r-mlbench)
4439 ("r-pls" ,r-pls)
4440 ("r-rcolorbrewer" ,r-rcolorbrewer)
500f7df8 4441 ("r-rcpp" ,r-rcpp)
ce77562a
RW
4442 ("r-rpart" ,r-rpart)
4443 ("r-sfsmisc" ,r-sfsmisc)
4444 ("r-shiny" ,r-shiny)
4445 ("r-threejs" ,r-threejs)))
4446 (home-page "https://bioconductor.org/packages/MLInterfaces/")
4447 (synopsis "Interfaces to R machine learning procedures")
4448 (description
4449 "This package provides uniform interfaces to machine learning code for
4450data in R and Bioconductor containers.")
4451 ;; Any version of the LGPL.
4452 (license license:lgpl2.1+)))
a793e88c
RW
4453
4454(define-public r-annaffy
4455 (package
4456 (name "r-annaffy")
aca4ebe4 4457 (version "1.62.0")
a793e88c
RW
4458 (source
4459 (origin
4460 (method url-fetch)
4461 (uri (bioconductor-uri "annaffy" version))
4462 (sha256
4463 (base32
aca4ebe4 4464 "1szlr33lq98pd3kx6n9l07lhr93swbk6vjpvb2n9f7716k39mi4i"))))
a793e88c
RW
4465 (build-system r-build-system)
4466 (arguments
4467 `(#:phases
4468 (modify-phases %standard-phases
4469 (add-after 'unpack 'remove-reference-to-non-free-data
4470 (lambda _
4471 (substitute* "DESCRIPTION"
4472 ((", KEGG.db") ""))
4473 #t)))))
4474 (propagated-inputs
4475 `(("r-annotationdbi" ,r-annotationdbi)
4476 ("r-biobase" ,r-biobase)
4477 ("r-dbi" ,r-dbi)
4478 ("r-go-db" ,r-go-db)))
4479 (home-page "https://bioconductor.org/packages/annaffy/")
4480 (synopsis "Annotation tools for Affymetrix biological metadata")
4481 (description
4482 "This package provides functions for handling data from Bioconductor
4483Affymetrix annotation data packages. It produces compact HTML and text
4484reports including experimental data and URL links to many online databases.
4485It allows searching of biological metadata using various criteria.")
4486 ;; Any version of the LGPL according to the DESCRIPTION file. A copy of
4487 ;; the LGPL 2.1 is included.
4488 (license license:lgpl2.1+)))
0ec0a5ec
RW
4489
4490(define-public r-a4core
4491 (package
4492 (name "r-a4core")
c47a8cd9 4493 (version "1.38.0")
0ec0a5ec
RW
4494 (source
4495 (origin
4496 (method url-fetch)
4497 (uri (bioconductor-uri "a4Core" version))
4498 (sha256
4499 (base32
c47a8cd9 4500 "13mzhn92kqpbn58zmh96f6frkm85sv9137mldfzaljf6snk0spg2"))))
0ec0a5ec
RW
4501 (properties `((upstream-name . "a4Core")))
4502 (build-system r-build-system)
4503 (propagated-inputs
4504 `(("r-biobase" ,r-biobase)
4505 ("r-glmnet" ,r-glmnet)))
c47a8cd9 4506 (native-inputs
4507 `(("r-knitr" ,r-knitr)))
0ec0a5ec
RW
4508 (home-page "https://bioconductor.org/packages/a4Core")
4509 (synopsis "Automated Affymetrix array analysis core package")
4510 (description
4511 "This is the core package for the automated analysis of Affymetrix
4512arrays.")
4513 (license license:gpl3)))
9ae37581
RW
4514
4515(define-public r-a4classif
4516 (package
4517 (name "r-a4classif")
fa51705f 4518 (version "1.38.0")
9ae37581
RW
4519 (source
4520 (origin
4521 (method url-fetch)
4522 (uri (bioconductor-uri "a4Classif" version))
4523 (sha256
4524 (base32
fa51705f 4525 "03fln0x1am5fqhj4fpkx1yq58paqha086bhhr8az8j0vsq1r7wcz"))))
9ae37581
RW
4526 (properties `((upstream-name . "a4Classif")))
4527 (build-system r-build-system)
4528 (propagated-inputs
4529 `(("r-a4core" ,r-a4core)
4530 ("r-a4preproc" ,r-a4preproc)
fa51705f 4531 ("r-biobase" ,r-biobase)
9ae37581 4532 ("r-glmnet" ,r-glmnet)
9ae37581
RW
4533 ("r-pamr" ,r-pamr)
4534 ("r-rocr" ,r-rocr)
4535 ("r-varselrf" ,r-varselrf)))
fa51705f 4536 (native-inputs
4537 `(("r-knitr" ,r-knitr)))
9ae37581
RW
4538 (home-page "https://bioconductor.org/packages/a4Classif/")
4539 (synopsis "Automated Affymetrix array analysis classification package")
4540 (description
4541 "This is the classification package for the automated analysis of
4542Affymetrix arrays.")
4543 (license license:gpl3)))
b8d13e2c
RW
4544
4545(define-public r-a4preproc
4546 (package
4547 (name "r-a4preproc")
85155e2e 4548 (version "1.38.0")
b8d13e2c
RW
4549 (source
4550 (origin
4551 (method url-fetch)
4552 (uri (bioconductor-uri "a4Preproc" version))
4553 (sha256
4554 (base32
85155e2e 4555 "1j8jhal83x1xpmsaw8iwv2r32i1ghzm6n0ipjk06yqa9f6zb7f7i"))))
b8d13e2c
RW
4556 (properties `((upstream-name . "a4Preproc")))
4557 (build-system r-build-system)
4558 (propagated-inputs
85155e2e 4559 `(("r-biobase" ,r-biobase)
4560 ("r-biocgenerics" ,r-biocgenerics)))
4561 (native-inputs
4562 `(("r-knitr" ,r-knitr)))
b8d13e2c
RW
4563 (home-page "https://bioconductor.org/packages/a4Preproc/")
4564 (synopsis "Automated Affymetrix array analysis preprocessing package")
4565 (description
4566 "This is a package for the automated analysis of Affymetrix arrays. It
4567is used for preprocessing the arrays.")
4568 (license license:gpl3)))
8e15f861
RW
4569
4570(define-public r-a4reporting
4571 (package
4572 (name "r-a4reporting")
2fb8298c 4573 (version "1.38.0")
8e15f861
RW
4574 (source
4575 (origin
4576 (method url-fetch)
4577 (uri (bioconductor-uri "a4Reporting" version))
4578 (sha256
4579 (base32
2fb8298c 4580 "1jx4ym3hyix8gwr8d2r38w1wj7siv6ynzhwanczcjf1naws3dqpy"))))
8e15f861
RW
4581 (properties `((upstream-name . "a4Reporting")))
4582 (build-system r-build-system)
4583 (propagated-inputs
2fb8298c 4584 `(("r-xtable" ,r-xtable)))
4585 (native-inputs
4586 `(("r-knitr" ,r-knitr)))
8e15f861
RW
4587 (home-page "https://bioconductor.org/packages/a4Reporting/")
4588 (synopsis "Automated Affymetrix array analysis reporting package")
4589 (description
4590 "This is a package for the automated analysis of Affymetrix arrays. It
4591provides reporting features.")
4592 (license license:gpl3)))
dbfe3375
RW
4593
4594(define-public r-a4base
4595 (package
4596 (name "r-a4base")
564d4279 4597 (version "1.38.0")
dbfe3375
RW
4598 (source
4599 (origin
4600 (method url-fetch)
4601 (uri (bioconductor-uri "a4Base" version))
4602 (sha256
4603 (base32
564d4279 4604 "0bqagjmg3yjmdzxv4j7685jjhgb261pq60b5qkfffr1lfnz27lsp"))))
dbfe3375
RW
4605 (properties `((upstream-name . "a4Base")))
4606 (build-system r-build-system)
4607 (propagated-inputs
4608 `(("r-a4core" ,r-a4core)
4609 ("r-a4preproc" ,r-a4preproc)
4610 ("r-annaffy" ,r-annaffy)
dbfe3375
RW
4611 ("r-biobase" ,r-biobase)
4612 ("r-genefilter" ,r-genefilter)
4613 ("r-glmnet" ,r-glmnet)
4614 ("r-gplots" ,r-gplots)
4615 ("r-limma" ,r-limma)
4616 ("r-mpm" ,r-mpm)
4617 ("r-multtest" ,r-multtest)))
4618 (home-page "https://bioconductor.org/packages/a4Base/")
4619 (synopsis "Automated Affymetrix array analysis base package")
4620 (description
4621 "This package provides basic features for the automated analysis of
4622Affymetrix arrays.")
4623 (license license:gpl3)))
84ad024e
RW
4624
4625(define-public r-a4
4626 (package
4627 (name "r-a4")
68efaafe 4628 (version "1.38.0")
84ad024e
RW
4629 (source
4630 (origin
4631 (method url-fetch)
4632 (uri (bioconductor-uri "a4" version))
4633 (sha256
4634 (base32
68efaafe 4635 "12q09dhxjl7yrd5m2y7a03kv5614dp144ajmskp5q9x2gvz30f79"))))
84ad024e
RW
4636 (build-system r-build-system)
4637 (propagated-inputs
4638 `(("r-a4base" ,r-a4base)
4639 ("r-a4classif" ,r-a4classif)
4640 ("r-a4core" ,r-a4core)
4641 ("r-a4preproc" ,r-a4preproc)
4642 ("r-a4reporting" ,r-a4reporting)))
4643 (home-page "https://bioconductor.org/packages/a4/")
4644 (synopsis "Automated Affymetrix array analysis umbrella package")
4645 (description
4646 "This package provides a software suite for the automated analysis of
4647Affymetrix arrays.")
4648 (license license:gpl3)))
59d331f1
RW
4649
4650(define-public r-abseqr
4651 (package
4652 (name "r-abseqr")
8816139e 4653 (version "1.8.0")
59d331f1
RW
4654 (source
4655 (origin
4656 (method url-fetch)
4657 (uri (bioconductor-uri "abseqR" version))
4658 (sha256
4659 (base32
8816139e 4660 "0lh7kcsp3yb3s8s8j6w9k1by8i16q7r2a49z8y1xjmkcb2klsi3f"))))
59d331f1
RW
4661 (properties `((upstream-name . "abseqR")))
4662 (build-system r-build-system)
4663 (inputs
8816139e 4664 `(("pandoc" ,pandoc)))
59d331f1
RW
4665 (propagated-inputs
4666 `(("r-biocparallel" ,r-biocparallel)
4667 ("r-biocstyle" ,r-biocstyle)
4668 ("r-circlize" ,r-circlize)
4669 ("r-flexdashboard" ,r-flexdashboard)
4670 ("r-ggcorrplot" ,r-ggcorrplot)
4671 ("r-ggdendro" ,r-ggdendro)
4672 ("r-ggplot2" ,r-ggplot2)
4673 ("r-gridextra" ,r-gridextra)
4674 ("r-knitr" ,r-knitr)
4675 ("r-plotly" ,r-plotly)
4676 ("r-plyr" ,r-plyr)
4677 ("r-png" ,r-png)
4678 ("r-rcolorbrewer" ,r-rcolorbrewer)
4679 ("r-reshape2" ,r-reshape2)
4680 ("r-rmarkdown" ,r-rmarkdown)
4681 ("r-stringr" ,r-stringr)
4682 ("r-vegan" ,r-vegan)
4683 ("r-venndiagram" ,r-venndiagram)))
35bcfaef
RW
4684 (native-inputs
4685 `(("r-knitr" ,r-knitr)))
59d331f1
RW
4686 (home-page "https://github.com/malhamdoosh/abseqR")
4687 (synopsis "Reporting and data analysis for Rep-Seq datasets of antibody libraries")
4688 (description
4689 "AbSeq is a comprehensive bioinformatic pipeline for the analysis of
4690sequencing datasets generated from antibody libraries and abseqR is one of its
4691packages. AbseqR empowers the users of abseqPy with plotting and reporting
4692capabilities and allows them to generate interactive HTML reports for the
4693convenience of viewing and sharing with other researchers. Additionally,
4694abseqR extends abseqPy to compare multiple repertoire analyses and perform
4695further downstream analysis on its output.")
4696 (license license:gpl3)))
41aab7d1
RW
4697
4698(define-public r-bacon
4699 (package
4700 (name "r-bacon")
d5dcf1bb 4701 (version "1.18.0")
41aab7d1
RW
4702 (source
4703 (origin
4704 (method url-fetch)
4705 (uri (bioconductor-uri "bacon" version))
4706 (sha256
4707 (base32
d5dcf1bb 4708 "0cv4zhs075mz8c5gdwhr45v14fb1lyi3rlwjfqyz15dmmnzlxw47"))))
41aab7d1
RW
4709 (build-system r-build-system)
4710 (propagated-inputs
4711 `(("r-biocparallel" ,r-biocparallel)
4712 ("r-ellipse" ,r-ellipse)
4713 ("r-ggplot2" ,r-ggplot2)))
506cbeab
RW
4714 (native-inputs
4715 `(("r-knitr" ,r-knitr)))
41aab7d1
RW
4716 (home-page "https://bioconductor.org/packages/bacon/")
4717 (synopsis "Controlling bias and inflation in association studies")
4718 (description
4719 "Bacon can be used to remove inflation and bias often observed in
4720epigenome- and transcriptome-wide association studies. To this end bacon
4721constructs an empirical null distribution using a Gibbs Sampling algorithm by
4722fitting a three-component normal mixture on z-scores.")
4723 (license license:gpl2+)))
051e8e1a
RW
4724
4725(define-public r-rgadem
4726 (package
4727 (name "r-rgadem")
41071edc 4728 (version "2.38.0")
051e8e1a
RW
4729 (source
4730 (origin
4731 (method url-fetch)
4732 (uri (bioconductor-uri "rGADEM" version))
4733 (sha256
4734 (base32
41071edc 4735 "0x13glgkcnjg4qsn0v0qgzy6bgmghqpvgwfww2ha641p0c5i9qzw"))))
051e8e1a
RW
4736 (properties `((upstream-name . "rGADEM")))
4737 (build-system r-build-system)
4738 (propagated-inputs
4739 `(("r-biostrings" ,r-biostrings)
4740 ("r-bsgenome" ,r-bsgenome)
07189489 4741 ("r-genomicranges" ,r-genomicranges)
051e8e1a
RW
4742 ("r-iranges" ,r-iranges)
4743 ("r-seqlogo" ,r-seqlogo)))
4744 (home-page "https://bioconductor.org/packages/rGADEM/")
4745 (synopsis "De novo sequence motif discovery")
4746 (description
4747 "rGADEM is an efficient de novo motif discovery tool for large-scale
4748genomic sequence data.")
4749 (license license:artistic2.0)))
229f97c3
RW
4750
4751(define-public r-motiv
4752 (package
4753 (name "r-motiv")
352cfa34 4754 (version "1.43.0")
229f97c3
RW
4755 (source
4756 (origin
4757 (method url-fetch)
4758 (uri (bioconductor-uri "MotIV" version))
4759 (sha256
4760 (base32
352cfa34 4761 "1yqqymcrnwlpv6h3w80yliv19922g32xqlqszaqjk6zp853qilh6"))))
229f97c3
RW
4762 (properties `((upstream-name . "MotIV")))
4763 (build-system r-build-system)
4764 (inputs
4765 `(("gsl" ,gsl)))
4766 (propagated-inputs
4767 `(("r-biocgenerics" ,r-biocgenerics)
4768 ("r-biostrings" ,r-biostrings)
35a1b3ec 4769 ("r-genomicranges" ,r-genomicranges)
229f97c3
RW
4770 ("r-iranges" ,r-iranges)
4771 ("r-lattice" ,r-lattice)
4772 ("r-rgadem" ,r-rgadem)
4773 ("r-s4vectors" ,r-s4vectors)))
4774 (home-page "https://bioconductor.org/packages/MotIV/")
4775 (synopsis "Motif identification and validation")
4776 (description
4777 "This package is used for the identification and validation of sequence
4778motifs. It makes use of STAMP for comparing a set of motifs to a given
4779database (e.g. JASPAR). It can also be used to visualize motifs, motif
4780distributions, modules and filter motifs.")
4781 (license license:gpl2)))
2a72ef56 4782
3699bcf5
RJ
4783(define-public r-motifdb
4784 (package
4785 (name "r-motifdb")
a2bae167 4786 (version "1.32.0")
3699bcf5
RJ
4787 (source (origin
4788 (method url-fetch)
4789 (uri (bioconductor-uri "MotifDb" version))
4790 (sha256
a2bae167 4791 (base32 "0gfk1dgw7gd2y4cnmfdzpzjqkvvikcwx20h0fp7aiq8f0zfwlav5"))))
3699bcf5
RJ
4792 (properties `((upstream-name . "MotifDb")))
4793 (build-system r-build-system)
4794 (propagated-inputs
4795 `(("r-biocgenerics" ,r-biocgenerics)
4796 ("r-biostrings" ,r-biostrings)
da6a75fe 4797 ("r-genomicranges" ,r-genomicranges)
3699bcf5
RJ
4798 ("r-iranges" ,r-iranges)
4799 ("r-rtracklayer" ,r-rtracklayer)
4800 ("r-s4vectors" ,r-s4vectors)
4801 ("r-splitstackshape" ,r-splitstackshape)))
da6a75fe
RW
4802 (native-inputs
4803 `(("r-knitr" ,r-knitr)))
3699bcf5
RJ
4804 (home-page "https://www.bioconductor.org/packages/MotifDb/")
4805 (synopsis "Annotated collection of protein-DNA binding sequence motifs")
4806 (description "This package provides more than 2000 annotated position
4807frequency matrices from nine public sources, for multiple organisms.")
4808 (license license:artistic2.0)))
4809
886125d7
RJ
4810(define-public r-motifbreakr
4811 (package
4812 (name "r-motifbreakr")
301e549c 4813 (version "2.4.0")
886125d7
RJ
4814 (source (origin
4815 (method url-fetch)
4816 (uri (bioconductor-uri "motifbreakR" version))
4817 (sha256
301e549c 4818 (base32 "0nni6i7h51kz0ch8ls9c9jzd7fjmc9wsavp11hx6w6bmhnh3k4n7"))))
886125d7
RJ
4819 (properties `((upstream-name . "motifbreakR")))
4820 (build-system r-build-system)
4821 (propagated-inputs
e65783e0
RW
4822 `(("r-biocgenerics" ,r-biocgenerics)
4823 ("r-biocparallel" ,r-biocparallel)
886125d7
RJ
4824 ("r-biostrings" ,r-biostrings)
4825 ("r-bsgenome" ,r-bsgenome)
e65783e0
RW
4826 ("r-genomeinfodb" ,r-genomeinfodb)
4827 ("r-genomicranges" ,r-genomicranges)
4828 ("r-grimport" ,r-grimport)
886125d7 4829 ("r-gviz" ,r-gviz)
e65783e0 4830 ("r-iranges" ,r-iranges)
886125d7 4831 ("r-matrixstats" ,r-matrixstats)
e65783e0
RW
4832 ("r-motifdb" ,r-motifdb)
4833 ("r-motifstack" ,r-motifstack)
4834 ("r-rtracklayer" ,r-rtracklayer)
4835 ("r-s4vectors" ,r-s4vectors)
4836 ("r-stringr" ,r-stringr)
4837 ("r-summarizedexperiment" ,r-summarizedexperiment)
886125d7 4838 ("r-tfmpvalue" ,r-tfmpvalue)
e65783e0
RW
4839 ("r-variantannotation" ,r-variantannotation)))
4840 (native-inputs
4841 `(("r-knitr" ,r-knitr)))
886125d7
RJ
4842 (home-page "https://www.bioconductor.org/packages/motifbreakR/")
4843 (synopsis "Predicting disruptiveness of single nucleotide polymorphisms")
4844 (description "This package allows biologists to judge in the first place
4845whether the sequence surrounding the polymorphism is a good match, and in
4846the second place how much information is gained or lost in one allele of
4847the polymorphism relative to another. This package gives a choice of
4848algorithms for interrogation of genomes with motifs from public sources:
4849@enumerate
4850@item a weighted-sum probability matrix;
4851@item log-probabilities;
4852@item weighted by relative entropy.
4853@end enumerate
4854
4855This package can predict effects for novel or previously described variants in
4856public databases, making it suitable for tasks beyond the scope of its original
4857design. Lastly, it can be used to interrogate any genome curated within
4858Bioconductor.")
4859 (license license:gpl2+)))
4860
2a72ef56
RW
4861(define-public r-motifstack
4862 (package
4863 (name "r-motifstack")
4b4cd2b8 4864 (version "1.34.0")
2a72ef56
RW
4865 (source
4866 (origin
4867 (method url-fetch)
4868 (uri (bioconductor-uri "motifStack" version))
4869 (sha256
4870 (base32
4b4cd2b8 4871 "1psqpdbgbad31bd8hg5bl62qi5s9rl75nzm85igfpxar3zwwxjlb"))))
2a72ef56
RW
4872 (properties `((upstream-name . "motifStack")))
4873 (build-system r-build-system)
4874 (propagated-inputs
4875 `(("r-ade4" ,r-ade4)
4876 ("r-biostrings" ,r-biostrings)
dda936ca 4877 ("r-ggplot2" ,r-ggplot2)
2a72ef56 4878 ("r-htmlwidgets" ,r-htmlwidgets)
2a72ef56 4879 ("r-xml" ,r-xml)))
e6fbaf0c
RW
4880 (native-inputs
4881 `(("r-knitr" ,r-knitr)))
2a72ef56
RW
4882 (home-page "https://bioconductor.org/packages/motifStack/")
4883 (synopsis "Plot stacked logos for DNA, RNA and amino acid sequences")
4884 (description
4885 "The motifStack package is designed for graphic representation of
4886multiple motifs with different similarity scores. It works with both DNA/RNA
4887sequence motifs and amino acid sequence motifs. In addition, it provides the
4888flexibility for users to customize the graphic parameters such as the font
4889type and symbol colors.")
4890 (license license:gpl2+)))
e5bff307
RW
4891
4892(define-public r-genomicscores
4893 (package
4894 (name "r-genomicscores")
39280618 4895 (version "2.2.0")
e5bff307
RW
4896 (source
4897 (origin
4898 (method url-fetch)
4899 (uri (bioconductor-uri "GenomicScores" version))
4900 (sha256
4901 (base32
39280618 4902 "1492xirsgag2dsr6ys9wm3a65sq826p9hcdg3b4dm1wbxgdfx6jr"))))
e5bff307
RW
4903 (properties `((upstream-name . "GenomicScores")))
4904 (build-system r-build-system)
4905 (propagated-inputs
4906 `(("r-annotationhub" ,r-annotationhub)
4907 ("r-biobase" ,r-biobase)
39280618 4908 ("r-biocfilecache" ,r-biocfilecache)
e5bff307 4909 ("r-biocgenerics" ,r-biocgenerics)
39280618 4910 ("r-biocmanager" ,r-biocmanager)
e5bff307 4911 ("r-biostrings" ,r-biostrings)
785c7596 4912 ("r-delayedarray" ,r-delayedarray)
e5bff307
RW
4913 ("r-genomeinfodb" ,r-genomeinfodb)
4914 ("r-genomicranges" ,r-genomicranges)
785c7596 4915 ("r-hdf5array" ,r-hdf5array)
e5bff307 4916 ("r-iranges" ,r-iranges)
785c7596 4917 ("r-rhdf5" ,r-rhdf5)
e5bff307
RW
4918 ("r-s4vectors" ,r-s4vectors)
4919 ("r-xml" ,r-xml)))
785c7596
RW
4920 (native-inputs
4921 `(("r-knitr" ,r-knitr)))
e5bff307
RW
4922 (home-page "https://github.com/rcastelo/GenomicScores/")
4923 (synopsis "Work with genome-wide position-specific scores")
4924 (description
4925 "This package provides infrastructure to store and access genome-wide
4926position-specific scores within R and Bioconductor.")
4927 (license license:artistic2.0)))
32e0f906
RW
4928
4929(define-public r-atacseqqc
4930 (package
4931 (name "r-atacseqqc")
2ba61c67 4932 (version "1.14.4")
32e0f906
RW
4933 (source
4934 (origin
4935 (method url-fetch)
4936 (uri (bioconductor-uri "ATACseqQC" version))
4937 (sha256
4938 (base32
2ba61c67 4939 "04sn0zl4m60i5jvqz5rmhc4qwcgrhk6rhznrygmm93k9v363mbn9"))))
32e0f906
RW
4940 (properties `((upstream-name . "ATACseqQC")))
4941 (build-system r-build-system)
4942 (propagated-inputs
4943 `(("r-biocgenerics" ,r-biocgenerics)
4944 ("r-biostrings" ,r-biostrings)
4945 ("r-bsgenome" ,r-bsgenome)
4946 ("r-chippeakanno" ,r-chippeakanno)
bcc233c1 4947 ("r-edger" ,r-edger)
32e0f906
RW
4948 ("r-genomeinfodb" ,r-genomeinfodb)
4949 ("r-genomicalignments" ,r-genomicalignments)
4950 ("r-genomicranges" ,r-genomicranges)
4951 ("r-genomicscores" ,r-genomicscores)
4952 ("r-iranges" ,r-iranges)
4953 ("r-kernsmooth" ,r-kernsmooth)
4954 ("r-limma" ,r-limma)
4955 ("r-motifstack" ,r-motifstack)
4956 ("r-preseqr" ,r-preseqr)
4957 ("r-randomforest" ,r-randomforest)
4958 ("r-rsamtools" ,r-rsamtools)
4959 ("r-rtracklayer" ,r-rtracklayer)
4960 ("r-s4vectors" ,r-s4vectors)))
dc30cc03
RW
4961 (native-inputs
4962 `(("r-knitr" ,r-knitr)))
32e0f906
RW
4963 (home-page "https://bioconductor.org/packages/ATACseqQC/")
4964 (synopsis "ATAC-seq quality control")
4965 (description
4966 "ATAC-seq, an assay for Transposase-Accessible Chromatin using
4967sequencing, is a rapid and sensitive method for chromatin accessibility
4968analysis. It was developed as an alternative method to MNase-seq, FAIRE-seq
4969and DNAse-seq. The ATACseqQC package was developed to help users to quickly
4970assess whether their ATAC-seq experiment is successful. It includes
4971diagnostic plots of fragment size distribution, proportion of mitochondria
4972reads, nucleosome positioning pattern, and CTCF or other Transcript Factor
4973footprints.")
4974 (license license:gpl2+)))
3972cfce
RW
4975
4976(define-public r-gofuncr
4977 (package
4978 (name "r-gofuncr")
c3b69d63 4979 (version "1.10.0")
3972cfce
RW
4980 (source
4981 (origin
4982 (method url-fetch)
4983 (uri (bioconductor-uri "GOfuncR" version))
4984 (sha256
4985 (base32
c3b69d63 4986 "1ah4v2jj508wjsmrncw58wjq2cyris7bnzfw6kr7jp9n4dvn33mq"))))
3972cfce
RW
4987 (properties `((upstream-name . "GOfuncR")))
4988 (build-system r-build-system)
4989 (propagated-inputs
4990 `(("r-annotationdbi" ,r-annotationdbi)
4991 ("r-genomicranges" ,r-genomicranges)
4992 ("r-gtools" ,r-gtools)
4993 ("r-iranges" ,r-iranges)
4994 ("r-mapplots" ,r-mapplots)
4995 ("r-rcpp" ,r-rcpp)
4996 ("r-vioplot" ,r-vioplot)))
028fd6f7
RW
4997 (native-inputs
4998 `(("r-knitr" ,r-knitr)))
3972cfce
RW
4999 (home-page "https://bioconductor.org/packages/GOfuncR/")
5000 (synopsis "Gene ontology enrichment using FUNC")
5001 (description
5002 "GOfuncR performs a gene ontology enrichment analysis based on the
5003ontology enrichment software FUNC. GO-annotations are obtained from
5004OrganismDb or OrgDb packages (@code{Homo.sapiens} by default); the GO-graph is
5005included in the package and updated regularly. GOfuncR provides the standard
5006candidate vs background enrichment analysis using the hypergeometric test, as
5007well as three additional tests:
5008
5009@enumerate
5010@item the Wilcoxon rank-sum test that is used when genes are ranked,
5011@item a binomial test that is used when genes are associated with two counts,
5012 and
5013@item a Chi-square or Fisher's exact test that is used in cases when genes are
5014associated with four counts.
5015@end enumerate
5016
5017To correct for multiple testing and interdependency of the tests, family-wise
5018error rates are computed based on random permutations of the gene-associated
5019variables. GOfuncR also provides tools for exploring the ontology graph and
5020the annotations, and options to take gene-length or spatial clustering of
5021genes into account. It is also possible to provide custom gene coordinates,
5022annotations and ontologies.")
5023 (license license:gpl2+)))
9bf4bb19
RW
5024
5025(define-public r-abaenrichment
5026 (package
5027 (name "r-abaenrichment")
8a7f7112 5028 (version "1.20.0")
9bf4bb19
RW
5029 (source
5030 (origin
5031 (method url-fetch)
5032 (uri (bioconductor-uri "ABAEnrichment" version))
5033 (sha256
5034 (base32
8a7f7112 5035 "0i0214ap9f6lnyawdgcdsds6g3g9qqji3wbn6ln6rs698gjs9w9c"))))
9bf4bb19
RW
5036 (properties `((upstream-name . "ABAEnrichment")))
5037 (build-system r-build-system)
5038 (propagated-inputs
5039 `(("r-abadata" ,r-abadata)
5040 ("r-data-table" ,r-data-table)
5041 ("r-gofuncr" ,r-gofuncr)
5042 ("r-gplots" ,r-gplots)
5043 ("r-gtools" ,r-gtools)
5044 ("r-rcpp" ,r-rcpp)))
6a65ac15
RW
5045 (native-inputs
5046 `(("r-knitr" ,r-knitr)))
9bf4bb19
RW
5047 (home-page "https://bioconductor.org/packages/ABAEnrichment/")
5048 (synopsis "Gene expression enrichment in human brain regions")
5049 (description
5050 "The package ABAEnrichment is designed to test for enrichment of user
5051defined candidate genes in the set of expressed genes in different human brain
5052regions. The core function @code{aba_enrich} integrates the expression of the
5053candidate gene set (averaged across donors) and the structural information of
5054the brain using an ontology, both provided by the Allen Brain Atlas project.")
5055 (license license:gpl2+)))
0b91b7b9
RW
5056
5057(define-public r-annotationfuncs
5058 (package
5059 (name "r-annotationfuncs")
bc12a4b6 5060 (version "1.40.0")
0b91b7b9
RW
5061 (source
5062 (origin
5063 (method url-fetch)
5064 (uri (bioconductor-uri "AnnotationFuncs" version))
5065 (sha256
5066 (base32
bc12a4b6 5067 "0xsm7741zm81bi4c9hy0zaacnk8a6bahdpc6srqzrbsz0pfzdyhr"))))
0b91b7b9
RW
5068 (properties
5069 `((upstream-name . "AnnotationFuncs")))
5070 (build-system r-build-system)
5071 (propagated-inputs
5072 `(("r-annotationdbi" ,r-annotationdbi)
5073 ("r-dbi" ,r-dbi)))
5074 (home-page "https://www.iysik.com/r/annotationfuncs")
5075 (synopsis "Annotation translation functions")
5076 (description
5077 "This package provides functions for handling translating between
5078different identifieres using the Biocore Data Team data-packages (e.g.
5079@code{org.Bt.eg.db}).")
5080 (license license:gpl2)))
adf7d813
RW
5081
5082(define-public r-annotationtools
5083 (package
5084 (name "r-annotationtools")
57791542 5085 (version "1.64.0")
adf7d813
RW
5086 (source
5087 (origin
5088 (method url-fetch)
5089 (uri (bioconductor-uri "annotationTools" version))
5090 (sha256
5091 (base32
57791542 5092 "1q3c30hqxjgar3gm8d7h4rw3m7cgc11cgv9q0fwv5abj075cj224"))))
adf7d813
RW
5093 (properties
5094 `((upstream-name . "annotationTools")))
5095 (build-system r-build-system)
5096 (propagated-inputs `(("r-biobase" ,r-biobase)))
5097 (home-page "https://bioconductor.org/packages/annotationTools/")
5098 (synopsis "Annotate microarrays and perform gene expression analyses")
5099 (description
5100 "This package provides functions to annotate microarrays, find orthologs,
5101and integrate heterogeneous gene expression profiles using annotation and
5102other molecular biology information available as flat file database (plain
5103text files).")
5104 ;; Any version of the GPL.
5105 (license (list license:gpl2+))))
f31e10f8
RW
5106
5107(define-public r-allelicimbalance
5108 (package
5109 (name "r-allelicimbalance")
85c6636b 5110 (version "1.28.0")
f31e10f8
RW
5111 (source
5112 (origin
5113 (method url-fetch)
5114 (uri (bioconductor-uri "AllelicImbalance" version))
5115 (sha256
5116 (base32
85c6636b 5117 "1hk08kwxjlg2jb59bwv9fbc446pyf6knkscfj757nl6yjf11akbl"))))
f31e10f8
RW
5118 (properties
5119 `((upstream-name . "AllelicImbalance")))
5120 (build-system r-build-system)
5121 (propagated-inputs
5122 `(("r-annotationdbi" ,r-annotationdbi)
5123 ("r-biocgenerics" ,r-biocgenerics)
5124 ("r-biostrings" ,r-biostrings)
5125 ("r-bsgenome" ,r-bsgenome)
5126 ("r-genomeinfodb" ,r-genomeinfodb)
5127 ("r-genomicalignments" ,r-genomicalignments)
5128 ("r-genomicfeatures" ,r-genomicfeatures)
5129 ("r-genomicranges" ,r-genomicranges)
5130 ("r-gridextra" ,r-gridextra)
5131 ("r-gviz" ,r-gviz)
5132 ("r-iranges" ,r-iranges)
5133 ("r-lattice" ,r-lattice)
5134 ("r-latticeextra" ,r-latticeextra)
5135 ("r-nlme" ,r-nlme)
5136 ("r-rsamtools" ,r-rsamtools)
5137 ("r-s4vectors" ,r-s4vectors)
5138 ("r-seqinr" ,r-seqinr)
5139 ("r-summarizedexperiment" ,r-summarizedexperiment)
5140 ("r-variantannotation" ,r-variantannotation)))
63149388
RW
5141 (native-inputs
5142 `(("r-knitr" ,r-knitr)))
f31e10f8
RW
5143 (home-page "https://github.com/pappewaio/AllelicImbalance")
5144 (synopsis "Investigate allele-specific expression")
5145 (description
5146 "This package provides a framework for allele-specific expression
5147investigation using RNA-seq data.")
5148 (license license:gpl3)))
ffe7029b
RW
5149
5150(define-public r-aucell
5151 (package
5152 (name "r-aucell")
ff8b9153 5153 (version "1.12.0")
ffe7029b
RW
5154 (source
5155 (origin
5156 (method url-fetch)
5157 (uri (bioconductor-uri "AUCell" version))
5158 (sha256
5159 (base32
ff8b9153 5160 "0ibsf3nid27hipr03z7phh0yzwfj8bqza6n6g7wfghpls4l12ipx"))))
ffe7029b
RW
5161 (properties `((upstream-name . "AUCell")))
5162 (build-system r-build-system)
5163 (propagated-inputs
3a35d274
RW
5164 `(("r-biocgenerics" ,r-biocgenerics)
5165 ("r-data-table" ,r-data-table)
ffe7029b
RW
5166 ("r-gseabase" ,r-gseabase)
5167 ("r-mixtools" ,r-mixtools)
5168 ("r-r-utils" ,r-r-utils)
3a35d274 5169 ("r-s4vectors" ,r-s4vectors)
ffe7029b
RW
5170 ("r-shiny" ,r-shiny)
5171 ("r-summarizedexperiment" ,r-summarizedexperiment)))
e059ab25
RW
5172 (native-inputs
5173 `(("r-knitr" ,r-knitr)))
ffe7029b
RW
5174 (home-page "https://bioconductor.org/packages/AUCell/")
5175 (synopsis "Analysis of gene set activity in single-cell RNA-seq data")
5176 (description
8c4bf6c2 5177 "AUCell identifies cells with active gene sets (e.g. signatures,
ffe7029b
RW
5178gene modules, etc) in single-cell RNA-seq data. AUCell uses the @dfn{Area
5179Under the Curve} (AUC) to calculate whether a critical subset of the input
5180gene set is enriched within the expressed genes for each cell. The
5181distribution of AUC scores across all the cells allows exploring the relative
5182expression of the signature. Since the scoring method is ranking-based,
5183AUCell is independent of the gene expression units and the normalization
5184procedure. In addition, since the cells are evaluated individually, it can
5185easily be applied to bigger datasets, subsetting the expression matrix if
5186needed.")
5187 (license license:gpl3)))
5cfa4bff
RW
5188
5189(define-public r-ebimage
5190 (package
5191 (name "r-ebimage")
ba0bf98d 5192 (version "4.32.0")
5cfa4bff
RW
5193 (source
5194 (origin
5195 (method url-fetch)
5196 (uri (bioconductor-uri "EBImage" version))
5197 (sha256
5198 (base32
ba0bf98d 5199 "0qi8bbix5bjahs73ljhfvidlbj8hz5m5j0sb9cjxlngnnldbh4ww"))))
5cfa4bff
RW
5200 (properties `((upstream-name . "EBImage")))
5201 (build-system r-build-system)
5202 (propagated-inputs
5203 `(("r-abind" ,r-abind)
5204 ("r-biocgenerics" ,r-biocgenerics)
5205 ("r-fftwtools" ,r-fftwtools)
5206 ("r-htmltools" ,r-htmltools)
5207 ("r-htmlwidgets" ,r-htmlwidgets)
5208 ("r-jpeg" ,r-jpeg)
5209 ("r-locfit" ,r-locfit)
5210 ("r-png" ,r-png)
5211 ("r-rcurl" ,r-rcurl)
5212 ("r-tiff" ,r-tiff)))
5213 (native-inputs
5214 `(("r-knitr" ,r-knitr))) ; for vignettes
5215 (home-page "https://github.com/aoles/EBImage")
5216 (synopsis "Image processing and analysis toolbox for R")
5217 (description
5218 "EBImage provides general purpose functionality for image processing and
5219analysis. In the context of (high-throughput) microscopy-based cellular
5220assays, EBImage offers tools to segment cells and extract quantitative
5221cellular descriptors. This allows the automation of such tasks using the R
5222programming language and facilitates the use of other tools in the R
5223environment for signal processing, statistical modeling, machine learning and
5224visualization with image data.")
5225 ;; Any version of the LGPL.
5226 (license license:lgpl2.1+)))
51e98f7e
RW
5227
5228(define-public r-yamss
5229 (package
5230 (name "r-yamss")
65ba4ba5 5231 (version "1.16.0")
51e98f7e
RW
5232 (source
5233 (origin
5234 (method url-fetch)
5235 (uri (bioconductor-uri "yamss" version))
5236 (sha256
5237 (base32
65ba4ba5 5238 "0cxzn7j9apjcabbvvii16kn4whwd9khcyz867w5ag3zdxwvg7l7w"))))
51e98f7e
RW
5239 (build-system r-build-system)
5240 (propagated-inputs
5241 `(("r-biocgenerics" ,r-biocgenerics)
5242 ("r-data-table" ,r-data-table)
5243 ("r-ebimage" ,r-ebimage)
5244 ("r-iranges" ,r-iranges)
5245 ("r-limma" ,r-limma)
5246 ("r-matrix" ,r-matrix)
5247 ("r-mzr" ,r-mzr)
5248 ("r-s4vectors" ,r-s4vectors)
5249 ("r-summarizedexperiment"
5250 ,r-summarizedexperiment)))
6e397aad
RW
5251 (native-inputs
5252 `(("r-knitr" ,r-knitr)))
51e98f7e
RW
5253 (home-page "https://github.com/hansenlab/yamss")
5254 (synopsis "Tools for high-throughput metabolomics")
5255 (description
5256 "This package provides tools to analyze and visualize high-throughput
9b19734c 5257metabolomics data acquired using chromatography-mass spectrometry. These tools
51e98f7e
RW
5258preprocess data in a way that enables reliable and powerful differential
5259analysis.")
5260 (license license:artistic2.0)))
398c4a93
RW
5261
5262(define-public r-gtrellis
5263 (package
5264 (name "r-gtrellis")
0836ef6b 5265 (version "1.22.0")
398c4a93
RW
5266 (source
5267 (origin
5268 (method url-fetch)
5269 (uri (bioconductor-uri "gtrellis" version))
5270 (sha256
5271 (base32
0836ef6b 5272 "14mpavkxlp9d1kccwi4b9hi7x8md5j4s1g17ivqsj38lxqjvg5gw"))))
398c4a93
RW
5273 (build-system r-build-system)
5274 (propagated-inputs
5275 `(("r-circlize" ,r-circlize)
5276 ("r-genomicranges" ,r-genomicranges)
5277 ("r-getoptlong" ,r-getoptlong)
5278 ("r-iranges" ,r-iranges)))
a471def0
RW
5279 (native-inputs
5280 `(("r-knitr" ,r-knitr)))
398c4a93
RW
5281 (home-page "https://github.com/jokergoo/gtrellis")
5282 (synopsis "Genome level Trellis layout")
5283 (description
5284 "Genome level Trellis graph visualizes genomic data conditioned by
5285genomic categories (e.g. chromosomes). For each genomic category, multiple
5286dimensional data which are represented as tracks describe different features
5287from different aspects. This package provides high flexibility to arrange
5288genomic categories and to add self-defined graphics in the plot.")
5289 (license license:expat)))
28098414
RW
5290
5291(define-public r-somaticsignatures
5292 (package
5293 (name "r-somaticsignatures")
36f3a19a 5294 (version "2.26.0")
28098414
RW
5295 (source
5296 (origin
5297 (method url-fetch)
5298 (uri (bioconductor-uri "SomaticSignatures" version))
5299 (sha256
5300 (base32
36f3a19a 5301 "1pwf9ws0klcij27w22p0nh924yp5h2jsidp54ppp7mnx08iv0801"))))
28098414
RW
5302 (properties
5303 `((upstream-name . "SomaticSignatures")))
5304 (build-system r-build-system)
5305 (propagated-inputs
5306 `(("r-biobase" ,r-biobase)
5307 ("r-biostrings" ,r-biostrings)
5308 ("r-genomeinfodb" ,r-genomeinfodb)
5309 ("r-genomicranges" ,r-genomicranges)
5310 ("r-ggbio" ,r-ggbio)
5311 ("r-ggplot2" ,r-ggplot2)
5312 ("r-iranges" ,r-iranges)
5313 ("r-nmf" ,r-nmf)
5314 ("r-pcamethods" ,r-pcamethods)
5315 ("r-proxy" ,r-proxy)
5316 ("r-reshape2" ,r-reshape2)
5317 ("r-s4vectors" ,r-s4vectors)
5318 ("r-variantannotation" ,r-variantannotation)))
63c14717
RW
5319 (native-inputs
5320 `(("r-knitr" ,r-knitr)))
28098414
RW
5321 (home-page "https://github.com/juliangehring/SomaticSignatures")
5322 (synopsis "Somatic signatures")
5323 (description
5324 "This package identifies mutational signatures of @dfn{single nucleotide
5325variants} (SNVs). It provides a infrastructure related to the methodology
5326described in Nik-Zainal (2012, Cell), with flexibility in the matrix
5327decomposition algorithms.")
5328 (license license:expat)))
303f2ed1
RW
5329
5330(define-public r-yapsa
5331 (package
5332 (name "r-yapsa")
d0db04fc 5333 (version "1.16.0")
303f2ed1
RW
5334 (source
5335 (origin
5336 (method url-fetch)
5337 (uri (bioconductor-uri "YAPSA" version))
5338 (sha256
5339 (base32
d0db04fc 5340 "1vwccrp01p8i42axbaz1bqq173la18ldrzmrjawr5nkjjkvddbpb"))))
303f2ed1
RW
5341 (properties `((upstream-name . "YAPSA")))
5342 (build-system r-build-system)
5343 (propagated-inputs
8a5abc62
RW
5344 `(("r-biostrings" ,r-biostrings)
5345 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
5346 ("r-circlize" ,r-circlize)
303f2ed1
RW
5347 ("r-complexheatmap" ,r-complexheatmap)
5348 ("r-corrplot" ,r-corrplot)
5349 ("r-dendextend" ,r-dendextend)
8a5abc62
RW
5350 ("r-doparallel" ,r-doparallel)
5351 ("r-dplyr" ,r-dplyr)
303f2ed1
RW
5352 ("r-genomeinfodb" ,r-genomeinfodb)
5353 ("r-genomicranges" ,r-genomicranges)
5354 ("r-getoptlong" ,r-getoptlong)
8a5abc62 5355 ("r-ggbeeswarm" ,r-ggbeeswarm)
303f2ed1
RW
5356 ("r-ggplot2" ,r-ggplot2)
5357 ("r-gridextra" ,r-gridextra)
5358 ("r-gtrellis" ,r-gtrellis)
5359 ("r-keggrest" ,r-keggrest)
d0db04fc 5360 ("r-limsolve" ,r-limsolve)
8a5abc62 5361 ("r-magrittr" ,r-magrittr)
303f2ed1 5362 ("r-pmcmr" ,r-pmcmr)
8a5abc62 5363 ("r-pracma" ,r-pracma)
303f2ed1
RW
5364 ("r-reshape2" ,r-reshape2)
5365 ("r-somaticsignatures" ,r-somaticsignatures)
5366 ("r-variantannotation" ,r-variantannotation)))
8a5abc62
RW
5367 (native-inputs
5368 `(("r-knitr" ,r-knitr)))
303f2ed1
RW
5369 (home-page "https://bioconductor.org/packages/YAPSA/")
5370 (synopsis "Yet another package for signature analysis")
5371 (description
5372 "This package provides functions and routines useful in the analysis of
5373somatic signatures (cf. L. Alexandrov et al., Nature 2013). In particular,
5374functions to perform a signature analysis with known signatures and a
5375signature analysis on @dfn{stratified mutational catalogue} (SMC) are
5376provided.")
5377 (license license:gpl3)))
e99380d6
RW
5378
5379(define-public r-gcrma
5380 (package
5381 (name "r-gcrma")
3d41f0c2 5382 (version "2.62.0")
e99380d6
RW
5383 (source
5384 (origin
5385 (method url-fetch)
5386 (uri (bioconductor-uri "gcrma" version))
5387 (sha256
5388 (base32
3d41f0c2 5389 "1v1x13iwcv6c9x7r1iz2598rwlyzic67jbqcajg24ib6lcfn9f00"))))
e99380d6
RW
5390 (build-system r-build-system)
5391 (propagated-inputs
5392 `(("r-affy" ,r-affy)
5393 ("r-affyio" ,r-affyio)
5394 ("r-biobase" ,r-biobase)
5395 ("r-biocmanager" ,r-biocmanager)
5396 ("r-biostrings" ,r-biostrings)
5397 ("r-xvector" ,r-xvector)))
5398 (home-page "https://bioconductor.org/packages/gcrma/")
5399 (synopsis "Background adjustment using sequence information")
5400 (description
5401 "Gcrma adjusts for background intensities in Affymetrix array data which
5402include optical noise and @dfn{non-specific binding} (NSB). The main function
5403@code{gcrma} converts background adjusted probe intensities to expression
5404measures using the same normalization and summarization methods as a
5405@dfn{Robust Multiarray Average} (RMA). Gcrma uses probe sequence information
5406to estimate probe affinity to NSB. The sequence information is summarized in
5407a more complex way than the simple GC content. Instead, the base types (A, T,
5408G or C) at each position along the probe determine the affinity of each probe.
5409The parameters of the position-specific base contributions to the probe
5410affinity is estimated in an NSB experiment in which only NSB but no
7230f6d5 5411gene-specific binding is expected.")
e99380d6
RW
5412 ;; Any version of the LGPL
5413 (license license:lgpl2.1+)))
4675b3cf
RW
5414
5415(define-public r-simpleaffy
5416 (package
5417 (name "r-simpleaffy")
48aaef23 5418 (version "2.66.0")
4675b3cf
RW
5419 (source
5420 (origin
5421 (method url-fetch)
5422 (uri (bioconductor-uri "simpleaffy" version))
5423 (sha256
5424 (base32
48aaef23 5425 "04a11dsqd5y4b39nny94acnh0qhdazjc6d1803izza4vrgmw2csb"))))
4675b3cf
RW
5426 (build-system r-build-system)
5427 (propagated-inputs
5428 `(("r-affy" ,r-affy)
5429 ("r-biobase" ,r-biobase)
5430 ("r-biocgenerics" ,r-biocgenerics)
5431 ("r-gcrma" ,r-gcrma)
5432 ("r-genefilter" ,r-genefilter)))
5433 (home-page "https://bioconductor.org/packages/simpleaffy/")
5434 (synopsis "Very simple high level analysis of Affymetrix data")
5435 (description
5436 "This package provides high level functions for reading Affy @file{.CEL}
5437files, phenotypic data, and then computing simple things with it, such as
5438t-tests, fold changes and the like. It makes heavy use of the @code{affy}
5439library. It also has some basic scatter plot functions and mechanisms for
5440generating high resolution journal figures.")
5441 (license license:gpl2+)))
f562c90a
RW
5442
5443(define-public r-yaqcaffy
5444 (package
5445 (name "r-yaqcaffy")
94dee0af 5446 (version "1.50.0")
f562c90a
RW
5447 (source
5448 (origin
5449 (method url-fetch)
5450 (uri (bioconductor-uri "yaqcaffy" version))
5451 (sha256
5452 (base32
94dee0af 5453 "18gphcjj15iivrahp52186bvdg07yd2dvrykfjdd4r1vyf33im96"))))
f562c90a
RW
5454 (build-system r-build-system)
5455 (propagated-inputs
5456 `(("r-simpleaffy" ,r-simpleaffy)))
5457 (home-page "https://bioconductor.org/packages/yaqcaffy/")
5458 (synopsis "Affymetrix quality control and reproducibility analysis")
5459 (description
5460 "This is a package that can be used for quality control of Affymetrix
5461GeneChip expression data and reproducibility analysis of human whole genome
5462chips with the MAQC reference datasets.")
5463 (license license:artistic2.0)))
59cf2629
RW
5464
5465(define-public r-quantro
5466 (package
5467 (name "r-quantro")
adf6edc7 5468 (version "1.24.0")
59cf2629
RW
5469 (source
5470 (origin
5471 (method url-fetch)
5472 (uri (bioconductor-uri "quantro" version))
5473 (sha256
5474 (base32
adf6edc7 5475 "1mq4hda73idkq0lkfrhcmiz4kkalfn47dh3i75br5fi33mdgc0k2"))))
59cf2629
RW
5476 (build-system r-build-system)
5477 (propagated-inputs
5478 `(("r-biobase" ,r-biobase)
5479 ("r-doparallel" ,r-doparallel)
5480 ("r-foreach" ,r-foreach)
5481 ("r-ggplot2" ,r-ggplot2)
5482 ("r-iterators" ,r-iterators)
5483 ("r-minfi" ,r-minfi)
5484 ("r-rcolorbrewer" ,r-rcolorbrewer)))
70d90ae7
RW
5485 (native-inputs
5486 `(("r-knitr" ,r-knitr)))
59cf2629
RW
5487 (home-page "https://bioconductor.org/packages/quantro/")
5488 (synopsis "Test for when to use quantile normalization")
5489 (description
5490 "This package provides a data-driven test for the assumptions of quantile
5491normalization using raw data such as objects that inherit eSets (e.g.
5492ExpressionSet, MethylSet). Group level information about each sample (such as
5493Tumor / Normal status) must also be provided because the test assesses if
5494there are global differences in the distributions between the user-defined
5495groups.")
5496 (license license:gpl3+)))
98a2af31
RW
5497
5498(define-public r-yarn
5499 (package
5500 (name "r-yarn")
8db36c1f 5501 (version "1.16.0")
98a2af31
RW
5502 (source
5503 (origin
5504 (method url-fetch)
5505 (uri (bioconductor-uri "yarn" version))
5506 (sha256
5507 (base32
8db36c1f 5508 "0p8wz5jn601vxbbxkm73ps3fx0j1y56nr2qf6y8k80vgrk7bv5gp"))))
98a2af31
RW
5509 (build-system r-build-system)
5510 (propagated-inputs
5511 `(("r-biobase" ,r-biobase)
5512 ("r-biomart" ,r-biomart)
5513 ("r-downloader" ,r-downloader)
5514 ("r-edger" ,r-edger)
5515 ("r-gplots" ,r-gplots)
5516 ("r-limma" ,r-limma)
5517 ("r-matrixstats" ,r-matrixstats)
5518 ("r-preprocesscore" ,r-preprocesscore)
5519 ("r-quantro" ,r-quantro)
5520 ("r-rcolorbrewer" ,r-rcolorbrewer)
5521 ("r-readr" ,r-readr)))
a37a6ffb
RW
5522 (native-inputs
5523 `(("r-knitr" ,r-knitr)))
98a2af31
RW
5524 (home-page "https://bioconductor.org/packages/yarn/")
5525 (synopsis "Robust multi-condition RNA-Seq preprocessing and normalization")
5526 (description
5527 "Expedite large RNA-Seq analyses using a combination of previously
5528developed tools. YARN is meant to make it easier for the user in performing
5529basic mis-annotation quality control, filtering, and condition-aware
5530normalization. YARN leverages many Bioconductor tools and statistical
5531techniques to account for the large heterogeneity and sparsity found in very
5532large RNA-seq experiments.")
5533 (license license:artistic2.0)))
a6e1eb1a
RW
5534
5535(define-public r-roar
5536 (package
5537 (name "r-roar")
72476ade 5538 (version "1.26.0")
a6e1eb1a
RW
5539 (source
5540 (origin
5541 (method url-fetch)
5542 (uri (bioconductor-uri "roar" version))
5543 (sha256
5544 (base32
72476ade 5545 "0spidrcjnrcli0whkf6h8pa1i9dg9arjbm7b1skxbs6dn2k4yyqw"))))
a6e1eb1a
RW
5546 (build-system r-build-system)
5547 (propagated-inputs
5548 `(("r-biocgenerics" ,r-biocgenerics)
5549 ("r-genomeinfodb" ,r-genomeinfodb)
5550 ("r-genomicalignments" ,r-genomicalignments)
5551 ("r-genomicranges" ,r-genomicranges)
5552 ("r-iranges" ,r-iranges)
5553 ("r-rtracklayer" ,r-rtracklayer)
5554 ("r-s4vectors" ,r-s4vectors)
5555 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5556 (home-page "https://github.com/vodkatad/roar/")
5557 (synopsis "Identify differential APA usage from RNA-seq alignments")
5558 (description
5559 "This package provides tools for identifying preferential usage of APA
5560sites, comparing two biological conditions, starting from known alternative
5561sites and alignments obtained from standard RNA-seq experiments.")
5562 (license license:gpl3)))
50d91770
RW
5563
5564(define-public r-xbseq
5565 (package
5566 (name "r-xbseq")
7f71341e 5567 (version "1.22.0")
50d91770
RW
5568 (source
5569 (origin
5570 (method url-fetch)
5571 (uri (bioconductor-uri "XBSeq" version))
5572 (sha256
5573 (base32
7f71341e 5574 "1dvk2jpsdynqw5071z54yd5j0ddprhc1ppk834cz9liibd72d7vz"))))
50d91770
RW
5575 (properties `((upstream-name . "XBSeq")))
5576 (build-system r-build-system)
5577 (propagated-inputs
5578 `(("r-biobase" ,r-biobase)
5579 ("r-deseq2" ,r-deseq2)
5580 ("r-dplyr" ,r-dplyr)
5581 ("r-ggplot2" ,r-ggplot2)
5582 ("r-locfit" ,r-locfit)
5583 ("r-magrittr" ,r-magrittr)
5584 ("r-matrixstats" ,r-matrixstats)
5585 ("r-pracma" ,r-pracma)
5586 ("r-roar" ,r-roar)))
bcd06bdb
RW
5587 (native-inputs
5588 `(("r-knitr" ,r-knitr)))
50d91770
RW
5589 (home-page "https://github.com/Liuy12/XBSeq")
5590 (synopsis "Test for differential expression for RNA-seq data")
5591 (description
5592 "XBSeq is a novel algorithm for testing RNA-seq @dfn{differential
5593expression} (DE), where a statistical model was established based on the
5594assumption that observed signals are the convolution of true expression
5595signals and sequencing noises. The mapped reads in non-exonic regions are
5596considered as sequencing noises, which follows a Poisson distribution. Given
5597measurable observed signal and background noise from RNA-seq data, true
5598expression signals, assuming governed by the negative binomial distribution,
5599can be delineated and thus the accurate detection of differential expressed
5600genes.")
5601 (license license:gpl3+)))
c8310056
RW
5602
5603(define-public r-massspecwavelet
5604 (package
5605 (name "r-massspecwavelet")
f4e19e62 5606 (version "1.56.0")
c8310056
RW
5607 (source
5608 (origin
5609 (method url-fetch)
5610 (uri (bioconductor-uri "MassSpecWavelet" version))
5611 (sha256
5612 (base32
f4e19e62 5613 "1vvxbxc538raqdsy0x9ln41vjhp2aw1nrh4k35y3s9mhb1jlzzv3"))))
c8310056
RW
5614 (properties
5615 `((upstream-name . "MassSpecWavelet")))
5616 (build-system r-build-system)
5617 (propagated-inputs
5618 `(("r-waveslim" ,r-waveslim)))
5619 (home-page "https://bioconductor.org/packages/MassSpecWavelet/")
5620 (synopsis "Mass spectrum processing by wavelet-based algorithms")
5621 (description
5622 "The MassSpecWavelet package aims to process @dfn{Mass Spectrometry} (MS)
5623data mainly through the use of wavelet transforms. It supports peak detection
5624based on @dfn{Continuous Wavelet Transform} (CWT).")
5625 (license license:lgpl2.0+)))
ec12e537
RW
5626
5627(define-public r-xcms
5628 (package
5629 (name "r-xcms")
a3af40ea 5630 (version "3.12.0")
ec12e537
RW
5631 (source
5632 (origin
5633 (method url-fetch)
5634 (uri (bioconductor-uri "xcms" version))
5635 (sha256
5636 (base32
a3af40ea 5637 "17kyybj093mj0g2sbfmjp19mmkww4w025n6zc0hbznqb94vkc8fv"))))
ec12e537
RW
5638 (build-system r-build-system)
5639 (propagated-inputs
5640 `(("r-biobase" ,r-biobase)
5641 ("r-biocgenerics" ,r-biocgenerics)
5642 ("r-biocparallel" ,r-biocparallel)
4fb52345 5643 ("r-iranges" ,r-iranges)
ec12e537
RW
5644 ("r-lattice" ,r-lattice)
5645 ("r-massspecwavelet" ,r-massspecwavelet)
a3af40ea 5646 ("r-mscoreutils" ,r-mscoreutils)
ec12e537 5647 ("r-msnbase" ,r-msnbase)
ec12e537
RW
5648 ("r-mzr" ,r-mzr)
5649 ("r-plyr" ,r-plyr)
5650 ("r-protgenerics" ,r-protgenerics)
5651 ("r-rann" ,r-rann)
5652 ("r-rcolorbrewer" ,r-rcolorbrewer)
5653 ("r-robustbase" ,r-robustbase)
ff9f179a
RW
5654 ("r-s4vectors" ,r-s4vectors)
5655 ("r-summarizedexperiment" ,r-summarizedexperiment)))
5656 (native-inputs
5657 `(("r-knitr" ,r-knitr)))
ec12e537
RW
5658 (home-page "https://bioconductor.org/packages/xcms/")
5659 (synopsis "LC/MS and GC/MS mass spectrometry data analysis")
5660 (description
5661 "This package provides a framework for processing and visualization of
5662chromatographically separated and single-spectra mass spectral data. It
5663imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files. It preprocesses
5664data for high-throughput, untargeted analyte profiling.")
5665 (license license:gpl2+)))
8830664d
RW
5666
5667(define-public r-wrench
5668 (package
5669 (name "r-wrench")
dc7c6368 5670 (version "1.8.0")
8830664d
RW
5671 (source
5672 (origin
5673 (method url-fetch)
5674 (uri (bioconductor-uri "Wrench" version))
5675 (sha256
5676 (base32
dc7c6368 5677 "01z7rd9fn6cpab3dxgwfpfjlq6vsqb8jhbzvhcqn9v2vqc2pridx"))))
8830664d
RW
5678 (properties `((upstream-name . "Wrench")))
5679 (build-system r-build-system)
5680 (propagated-inputs
5681 `(("r-limma" ,r-limma)
5682 ("r-locfit" ,r-locfit)
5683 ("r-matrixstats" ,r-matrixstats)))
996f07b5
RW
5684 (native-inputs
5685 `(("r-knitr" ,r-knitr)))
8830664d
RW
5686 (home-page "https://github.com/HCBravoLab/Wrench")
5687 (synopsis "Wrench normalization for sparse count data")
5688 (description
5689 "Wrench is a package for normalization sparse genomic count data, like
5690that arising from 16s metagenomic surveys.")
5691 (license license:artistic2.0)))
b9b8b447
RW
5692
5693(define-public r-wiggleplotr
5694 (package
5695 (name "r-wiggleplotr")
397bcd2c 5696 (version "1.14.0")
b9b8b447
RW
5697 (source
5698 (origin
5699 (method url-fetch)
5700 (uri (bioconductor-uri "wiggleplotr" version))
5701 (sha256
5702 (base32
397bcd2c 5703 "1k4wlh5ayb1w4dr6dydqfgm3415qhsfmshmi6zjyyhhkd2626vad"))))
b9b8b447
RW
5704 (build-system r-build-system)
5705 (propagated-inputs
5706 `(("r-assertthat" ,r-assertthat)
5707 ("r-cowplot" ,r-cowplot)
5708 ("r-dplyr" ,r-dplyr)
5709 ("r-genomeinfodb" ,r-genomeinfodb)
5710 ("r-genomicranges" ,r-genomicranges)
5711 ("r-ggplot2" ,r-ggplot2)
5712 ("r-iranges" ,r-iranges)
5713 ("r-purrr" ,r-purrr)
5714 ("r-rtracklayer" ,r-rtracklayer)
5715 ("r-s4vectors" ,r-s4vectors)))
ee0f7460
RW
5716 (native-inputs
5717 `(("r-knitr" ,r-knitr)))
b9b8b447
RW
5718 (home-page "https://bioconductor.org/packages/wiggleplotr/")
5719 (synopsis "Make read coverage plots from BigWig files")
5720 (description
5721 "This package provides tools to visualize read coverage from sequencing
5722experiments together with genomic annotations (genes, transcripts, peaks).
5723Introns of long transcripts can be rescaled to a fixed length for better
5724visualization of exonic read coverage.")
5725 (license license:asl2.0)))
7b5101c5
RW
5726
5727(define-public r-widgettools
5728 (package
5729 (name "r-widgettools")
ba53681a 5730 (version "1.68.0")
7b5101c5
RW
5731 (source
5732 (origin
5733 (method url-fetch)
5734 (uri (bioconductor-uri "widgetTools" version))
5735 (sha256
5736 (base32
ba53681a 5737 "172f0pmsspd9lss557cmxzjfsbansimjyhwdiahg8pqrayhwvf2w"))))
7b5101c5
RW
5738 (properties `((upstream-name . "widgetTools")))
5739 (build-system r-build-system)
5740 (home-page "https://bioconductor.org/packages/widgetTools/")
5741 (synopsis "Tools for creating interactive tcltk widgets")
5742 (description
337bdc17 5743 "This package contains tools to support the construction of tcltk
7b5101c5
RW
5744widgets in R.")
5745 ;; Any version of the LGPL.
5746 (license license:lgpl3+)))
6b12f213
RW
5747
5748(define-public r-webbioc
5749 (package
5750 (name "r-webbioc")
d176ad34 5751 (version "1.62.0")
6b12f213
RW
5752 (source
5753 (origin
5754 (method url-fetch)
5755 (uri (bioconductor-uri "webbioc" version))
5756 (sha256
5757 (base32
d176ad34 5758 "1nnmr4ddi07x7sy89fgdn7iwz5k4l8n5ca3xjnlbpwxycza793vj"))))
6b12f213
RW
5759 (build-system r-build-system)
5760 (inputs
5761 `(("netpbm" ,netpbm)
5762 ("perl" ,perl)))
5763 (propagated-inputs
5764 `(("r-affy" ,r-affy)
5765 ("r-annaffy" ,r-annaffy)
5766 ("r-biobase" ,r-biobase)
5767 ("r-biocmanager" ,r-biocmanager)
5768 ("r-gcrma" ,r-gcrma)
5769 ("r-multtest" ,r-multtest)
5770 ("r-qvalue" ,r-qvalue)
5771 ("r-vsn" ,r-vsn)))
5772 (home-page "https://www.bioconductor.org/")
5773 (synopsis "Bioconductor web interface")
5774 (description
5775 "This package provides an integrated web interface for doing microarray
5776analysis using several of the Bioconductor packages. It is intended to be
5777deployed as a centralized bioinformatics resource for use by many users.
5778Currently only Affymetrix oligonucleotide analysis is supported.")
5779 (license license:gpl2+)))
9800d859
RW
5780
5781(define-public r-zfpkm
5782 (package
5783 (name "r-zfpkm")
59fafa19 5784 (version "1.12.0")
9800d859
RW
5785 (source
5786 (origin
5787 (method url-fetch)
5788 (uri (bioconductor-uri "zFPKM" version))
5789 (sha256
5790 (base32
59fafa19 5791 "1sa7m7mzzr92c9ickial5701414rab233lq1il1sm9yfdkf8s9fm"))))
9800d859
RW
5792 (properties `((upstream-name . "zFPKM")))
5793 (build-system r-build-system)
5794 (propagated-inputs
5795 `(("r-checkmate" ,r-checkmate)
5796 ("r-dplyr" ,r-dplyr)
5797 ("r-ggplot2" ,r-ggplot2)
5798 ("r-summarizedexperiment" ,r-summarizedexperiment)
5799 ("r-tidyr" ,r-tidyr)))
8fdca89b
RW
5800 (native-inputs
5801 `(("r-knitr" ,r-knitr)))
9800d859
RW
5802 (home-page "https://github.com/ronammar/zFPKM/")
5803 (synopsis "Functions to facilitate zFPKM transformations")
5804 (description
5805 "This is a package to perform the zFPKM transform on RNA-seq FPKM data.
5806This algorithm is based on the publication by Hart et al., 2013 (Pubmed ID
580724215113).")
5808 (license license:gpl3)))
2bdc88fc
RW
5809
5810(define-public r-rbowtie2
5811 (package
5812 (name "r-rbowtie2")
9834d1ab 5813 (version "1.12.0")
2bdc88fc
RW
5814 (source
5815 (origin
5816 (method url-fetch)
5817 (uri (bioconductor-uri "Rbowtie2" version))
5818 (sha256
5819 (base32
9834d1ab 5820 "1pcdcqn82ray73bajjnx5zgs98m56acviq3adbzga0cfqf6wiqx5"))))
2bdc88fc
RW
5821 (properties `((upstream-name . "Rbowtie2")))
5822 (build-system r-build-system)
5823 (inputs
5824 `(("zlib" ,zlib)))
297854e6
RW
5825 (native-inputs
5826 `(("r-knitr" ,r-knitr)))
2bdc88fc
RW
5827 (home-page "https://bioconductor.org/packages/Rbowtie2/")
5828 (synopsis "R wrapper for Bowtie2 and AdapterRemoval")
5829 (description
5830 "This package provides an R wrapper of the popular @code{bowtie2}
5831sequencing reads aligner and @code{AdapterRemoval}, a convenient tool for
5832rapid adapter trimming, identification, and read merging.")
5833 (license license:gpl3+)))
5622628f
RW
5834
5835(define-public r-progeny
5836 (package
5837 (name "r-progeny")
d115db7f 5838 (version "1.12.0")
5622628f
RW
5839 (source
5840 (origin
5841 (method url-fetch)
5842 (uri (bioconductor-uri "progeny" version))
5843 (sha256
5844 (base32
d115db7f 5845 "00lhzz4plmx5128khs298n6zv9204mhqv548lxxdhaw18b16vwm7"))))
5622628f 5846 (build-system r-build-system)
8e5933a8
RW
5847 (propagated-inputs
5848 `(("r-biobase" ,r-biobase)
5849 ("r-dplyr" ,r-dplyr)
5850 ("r-ggplot2" ,r-ggplot2)
5851 ("r-ggrepel" ,r-ggrepel)
5852 ("r-gridextra" ,r-gridextra)
5853 ("r-tidyr" ,r-tidyr)))
5854 (native-inputs
5855 `(("r-knitr" ,r-knitr)))
5622628f
RW
5856 (home-page "https://github.com/saezlab/progeny")
5857 (synopsis "Pathway responsive gene activity inference")
5858 (description
5859 "This package provides a function to infer pathway activity from gene
5860expression. It contains the linear model inferred in the publication
5861\"Perturbation-response genes reveal signaling footprints in cancer gene
5862expression\".")
5863 (license license:asl2.0)))
307586c1
RW
5864
5865(define-public r-arrmnormalization
5866 (package
5867 (name "r-arrmnormalization")
0067589a 5868 (version "1.30.0")
307586c1
RW
5869 (source
5870 (origin
5871 (method url-fetch)
5872 (uri (bioconductor-uri "ARRmNormalization" version))
5873 (sha256
5874 (base32
0067589a 5875 "1ximvi0jbwmymx6iy70qfyr9j26x5arlarra9fzs5hq05jif6q95"))))
307586c1
RW
5876 (properties
5877 `((upstream-name . "ARRmNormalization")))
5878 (build-system r-build-system)
5879 (propagated-inputs `(("r-arrmdata" ,r-arrmdata)))
5880 (home-page "https://bioconductor.org/packages/ARRmNormalization/")
5881 (synopsis "Adaptive robust regression normalization for methylation data")
5882 (description
5883 "This is a package to perform the @dfn{Adaptive Robust Regression
5884method} (ARRm) for the normalization of methylation data from the Illumina
5885Infinium HumanMethylation 450k assay.")
5886 (license license:artistic2.0)))
fbf34949
RW
5887
5888(define-public r-biocfilecache
5889 (package
5890 (name "r-biocfilecache")
e65e81d2 5891 (version "1.14.0")
fbf34949
RW
5892 (source
5893 (origin
5894 (method url-fetch)
5895 (uri (bioconductor-uri "BiocFileCache" version))
5896 (sha256
5897 (base32
e65e81d2 5898 "0r032a033636bxap0vvb02jvjqiynzj9npqd8603qnwmhvvfi5z1"))))
fbf34949
RW
5899 (properties `((upstream-name . "BiocFileCache")))
5900 (build-system r-build-system)
5901 (propagated-inputs
5902 `(("r-curl" ,r-curl)
5903 ("r-dbi" ,r-dbi)
5904 ("r-dbplyr" ,r-dbplyr)
5905 ("r-dplyr" ,r-dplyr)
5906 ("r-httr" ,r-httr)
5907 ("r-rappdirs" ,r-rappdirs)
5908 ("r-rsqlite" ,r-rsqlite)))
173844fc
RW
5909 (native-inputs
5910 `(("r-knitr" ,r-knitr)))
fbf34949
RW
5911 (home-page "https://bioconductor.org/packages/BiocFileCache/")
5912 (synopsis "Manage files across sessions")
5913 (description
5914 "This package creates a persistent on-disk cache of files that the user
5915can add, update, and retrieve. It is useful for managing resources (such as
5916custom Txdb objects) that are costly or difficult to create, web resources,
5917and data files used across sessions.")
5918 (license license:artistic2.0)))
8c42f8f6
RW
5919
5920(define-public r-iclusterplus
5921 (package
5922 (name "r-iclusterplus")
4bc0675d 5923 (version "1.26.0")
8c42f8f6
RW
5924 (source
5925 (origin
5926 (method url-fetch)
5927 (uri (bioconductor-uri "iClusterPlus" version))
5928 (sha256
5929 (base32
4bc0675d 5930 "02ji84dsbn4wir8sim4qy8h57524mnrsq51wxc7n8ybp5x7n9k9q"))))
8c42f8f6
RW
5931 (properties `((upstream-name . "iClusterPlus")))
5932 (build-system r-build-system)
5933 (native-inputs `(("gfortran" ,gfortran)))
5934 (home-page "https://bioconductor.org/packages/iClusterPlus/")
5935 (synopsis "Integrative clustering of multi-type genomic data")
5936 (description
5937 "iClusterPlus is developed for integrative clustering analysis of
5938multi-type genomic data and is an enhanced version of iCluster proposed and
5939developed by Shen, Olshen and Ladanyi (2009). Multi-type genomic data arise
5940from the experiments where biological samples (e.g. tumor samples) are
5941analyzed by multiple techniques, for instance, @dfn{array comparative genomic
5942hybridization} (aCGH), gene expression microarray, RNA-seq and DNA-seq, and so
5943on. In the iClusterPlus model, binary observations such as somatic mutation
5944are modeled as Binomial processes; categorical observations such as copy
5945number states are realizations of Multinomial random variables; counts are
5946modeled as Poisson random processes; and continuous measures are modeled by
5947Gaussian distributions.")
5948 (license license:gpl2+)))
4d06ef4b
RW
5949
5950(define-public r-rbowtie
5951 (package
5952 (name "r-rbowtie")
ea86d93e 5953 (version "1.30.0")
4d06ef4b
RW
5954 (source
5955 (origin
5956 (method url-fetch)
5957 (uri (bioconductor-uri "Rbowtie" version))
5958 (sha256
5959 (base32
ea86d93e 5960 "0rgxqc3sbq7phnrn9a6z361725h4zi2mi985i43n7fi3csif7507"))))
4d06ef4b
RW
5961 (properties `((upstream-name . "Rbowtie")))
5962 (build-system r-build-system)
5963 (inputs
5964 `(("zlib" ,zlib)))
568c3929
RW
5965 (native-inputs
5966 `(("r-knitr" ,r-knitr)))
4d06ef4b
RW
5967 (home-page "https://bioconductor.org/packages/Rbowtie/")
5968 (synopsis "R bowtie wrapper")
5969 (description
5970 "This package provides an R wrapper around the popular bowtie short read
5971aligner and around SpliceMap, a de novo splice junction discovery and
5972alignment tool.")
5973 (license license:artistic2.0)))
14441539
RW
5974
5975(define-public r-sgseq
5976 (package
5977 (name "r-sgseq")
ca0271c5 5978 (version "1.24.0")
14441539
RW
5979 (source
5980 (origin
5981 (method url-fetch)
5982 (uri (bioconductor-uri "SGSeq" version))
5983 (sha256
5984 (base32
ca0271c5 5985 "1nfhy5kgyz56b6pyxcq8kflqwnhl9nlffszwpqb5fdh5ibz8xbjx"))))
14441539
RW
5986 (properties `((upstream-name . "SGSeq")))
5987 (build-system r-build-system)
5988 (propagated-inputs
5989 `(("r-annotationdbi" ,r-annotationdbi)
5990 ("r-biocgenerics" ,r-biocgenerics)
5991 ("r-biostrings" ,r-biostrings)
5992 ("r-genomeinfodb" ,r-genomeinfodb)
5993 ("r-genomicalignments" ,r-genomicalignments)
5994 ("r-genomicfeatures" ,r-genomicfeatures)
5995 ("r-genomicranges" ,r-genomicranges)
5996 ("r-igraph" ,r-igraph)
5997 ("r-iranges" ,r-iranges)
5998 ("r-rsamtools" ,r-rsamtools)
5999 ("r-rtracklayer" ,r-rtracklayer)
6000 ("r-runit" ,r-runit)
6001 ("r-s4vectors" ,r-s4vectors)
6002 ("r-summarizedexperiment" ,r-summarizedexperiment)))
201902bc
RW
6003 (native-inputs
6004 `(("r-knitr" ,r-knitr)))
14441539
RW
6005 (home-page "https://bioconductor.org/packages/SGSeq/")
6006 (synopsis "Splice event prediction and quantification from RNA-seq data")
6007 (description
6008 "SGSeq is a package for analyzing splice events from RNA-seq data. Input
6009data are RNA-seq reads mapped to a reference genome in BAM format. Genes are
6010represented as a splice graph, which can be obtained from existing annotation
6011or predicted from the mapped sequence reads. Splice events are identified
6012from the graph and are quantified locally using structurally compatible reads
6013at the start or end of each splice variant. The software includes functions
6014for splice event prediction, quantification, visualization and
6015interpretation.")
6016 (license license:artistic2.0)))
58656064
RW
6017
6018(define-public r-rhisat2
6019 (package
6020 (name "r-rhisat2")
c36d888f 6021 (version "1.6.0")
58656064
RW
6022 (source
6023 (origin
6024 (method url-fetch)
6025 (uri (bioconductor-uri "Rhisat2" version))
6026 (sha256
6027 (base32
c36d888f 6028 "0f9x2qcazml0zjcgyy0kdphnww4d1m62rn0ijcqlhy1bng6ihwwb"))))
58656064
RW
6029 (properties `((upstream-name . "Rhisat2")))
6030 (build-system r-build-system)
3dd2450e
RW
6031 (arguments
6032 `(#:phases
6033 (modify-phases %standard-phases
6034 (add-after 'unpack 'make-reproducible
6035 (lambda _
6036 (substitute* "src/Makefile"
6037 (("`hostname`") "guix")
6038 (("`date`") "0")
6039 ;; Avoid shelling out to "which".
6040 (("^CC =.*") (which "gcc"))
6041 (("^CPP =.*") (which "g++")))
6042 #t)))))
58656064
RW
6043 (propagated-inputs
6044 `(("r-genomicfeatures" ,r-genomicfeatures)
6045 ("r-genomicranges" ,r-genomicranges)
6046 ("r-sgseq" ,r-sgseq)))
2aff2724
RW
6047 (native-inputs
6048 `(("r-knitr" ,r-knitr)))
58656064
RW
6049 (home-page "https://github.com/fmicompbio/Rhisat2")
6050 (synopsis "R Wrapper for HISAT2 sequence aligner")
6051 (description
6052 "This package provides an R interface to the HISAT2 spliced short-read
6053aligner by Kim et al. (2015). The package contains wrapper functions to
6054create a genome index and to perform the read alignment to the generated
6055index.")
6056 (license license:gpl3)))
5e0241db
RW
6057
6058(define-public r-quasr
6059 (package
6060 (name "r-quasr")
1b4c2719 6061 (version "1.30.0")
5e0241db
RW
6062 (source
6063 (origin
6064 (method url-fetch)
6065 (uri (bioconductor-uri "QuasR" version))
6066 (sha256
6067 (base32
1b4c2719 6068 "032m01q34nnmvbhcb2g3pz2fqmgcw5464m74m1m0h7x9bl04a5k8"))))
5e0241db
RW
6069 (properties `((upstream-name . "QuasR")))
6070 (build-system r-build-system)
5e0241db
RW
6071 (propagated-inputs
6072 `(("r-annotationdbi" ,r-annotationdbi)
6073 ("r-biobase" ,r-biobase)
6074 ("r-biocgenerics" ,r-biocgenerics)
6075 ("r-biocmanager" ,r-biocmanager)
6076 ("r-biocparallel" ,r-biocparallel)
6077 ("r-biostrings" ,r-biostrings)
6078 ("r-bsgenome" ,r-bsgenome)
6079 ("r-genomeinfodb" ,r-genomeinfodb)
6080 ("r-genomicalignments" ,r-genomicalignments)
6081 ("r-genomicfeatures" ,r-genomicfeatures)
6082 ("r-genomicfiles" ,r-genomicfiles)
6083 ("r-genomicranges" ,r-genomicranges)
6084 ("r-iranges" ,r-iranges)
6085 ("r-rbowtie" ,r-rbowtie)
6086 ("r-rhisat2" ,r-rhisat2)
6087 ("r-rhtslib" ,r-rhtslib)
6088 ("r-rsamtools" ,r-rsamtools)
6089 ("r-rtracklayer" ,r-rtracklayer)
6090 ("r-s4vectors" ,r-s4vectors)
6091 ("r-shortread" ,r-shortread)))
a84abf43
RW
6092 (native-inputs
6093 `(("r-knitr" ,r-knitr)))
5e0241db
RW
6094 (home-page "https://bioconductor.org/packages/QuasR/")
6095 (synopsis "Quantify and annotate short reads in R")
6096 (description
6097 "This package provides a framework for the quantification and analysis of
6098short genomic reads. It covers a complete workflow starting from raw sequence
6099reads, over creation of alignments and quality control plots, to the
6100quantification of genomic regions of interest.")
6101 (license license:gpl2)))
496b024f
RW
6102
6103(define-public r-rqc
6104 (package
6105 (name "r-rqc")
d8a7bf76 6106 (version "1.24.0")
496b024f
RW
6107 (source
6108 (origin
6109 (method url-fetch)
6110 (uri (bioconductor-uri "Rqc" version))
6111 (sha256
6112 (base32
d8a7bf76 6113 "083c3ql0gndb6y7m9d3rpbkimyw8cj8jyv77mwwjhq49lzwsg6n9"))))
496b024f
RW
6114 (properties `((upstream-name . "Rqc")))
6115 (build-system r-build-system)
6116 (propagated-inputs
6117 `(("r-biocgenerics" ,r-biocgenerics)
6118 ("r-biocparallel" ,r-biocparallel)
6119 ("r-biocstyle" ,r-biocstyle)
6120 ("r-biostrings" ,r-biostrings)
6121 ("r-biovizbase" ,r-biovizbase)
6122 ("r-genomicalignments" ,r-genomicalignments)
6123 ("r-genomicfiles" ,r-genomicfiles)
6124 ("r-ggplot2" ,r-ggplot2)
6125 ("r-iranges" ,r-iranges)
6126 ("r-knitr" ,r-knitr)
6127 ("r-markdown" ,r-markdown)
6128 ("r-plyr" ,r-plyr)
6129 ("r-rcpp" ,r-rcpp)
6130 ("r-reshape2" ,r-reshape2)
6131 ("r-rsamtools" ,r-rsamtools)
6132 ("r-s4vectors" ,r-s4vectors)
6133 ("r-shiny" ,r-shiny)
6134 ("r-shortread" ,r-shortread)))
1c5360ac
RW
6135 (native-inputs
6136 `(("r-knitr" ,r-knitr)))
496b024f
RW
6137 (home-page "https://github.com/labbcb/Rqc")
6138 (synopsis "Quality control tool for high-throughput sequencing data")
6139 (description
6140 "Rqc is an optimized tool designed for quality control and assessment of
6141high-throughput sequencing data. It performs parallel processing of entire
6142files and produces a report which contains a set of high-resolution
6143graphics.")
6144 (license license:gpl2+)))
81e3de01
RW
6145
6146(define-public r-birewire
6147 (package
6148 (name "r-birewire")
979b1edc 6149 (version "3.22.0")
81e3de01
RW
6150 (source
6151 (origin
6152 (method url-fetch)
6153 (uri (bioconductor-uri "BiRewire" version))
6154 (sha256
6155 (base32
979b1edc 6156 "1h9zjjd5krsjpbxlmsbzwx7kbishn0z6mpm8zmrcpmbfrprp38qw"))))
81e3de01
RW
6157 (properties `((upstream-name . "BiRewire")))
6158 (build-system r-build-system)
6159 (propagated-inputs
6160 `(("r-igraph" ,r-igraph)
6161 ("r-matrix" ,r-matrix)
6162 ("r-slam" ,r-slam)
6163 ("r-tsne" ,r-tsne)))
6164 (home-page "https://bioconductor.org/packages/release/bioc/html/BiRewire.html")
6165 (synopsis "Tools for randomization of bipartite graphs")
6166 (description
6167 "This package provides functions for bipartite network rewiring through N
6168consecutive switching steps and for the computation of the minimal number of
6169switching steps to be performed in order to maximise the dissimilarity with
6170respect to the original network. It includes functions for the analysis of
6171the introduced randomness across the switching steps and several other
6172routines to analyse the resulting networks and their natural projections.")
6173 (license license:gpl3)))
1a24f855
RW
6174
6175(define-public r-birta
6176 (package
6177 (name "r-birta")
cb941ca0 6178 (version "1.31.0")
1a24f855
RW
6179 (source
6180 (origin
6181 (method url-fetch)
6182 (uri (bioconductor-uri "birta" version))
6183 (sha256
6184 (base32
cb941ca0 6185 "00a1kcfmcgdbx6wpnhk45wm45bynhry5m93l9hm75j2rwyc4lnca"))))
1a24f855
RW
6186 (build-system r-build-system)
6187 (propagated-inputs
6188 `(("r-biobase" ,r-biobase)
6189 ("r-limma" ,r-limma)
6190 ("r-mass" ,r-mass)))
6191 (home-page "https://bioconductor.org/packages/birta")
6192 (synopsis "Bayesian inference of regulation of transcriptional activity")
6193 (description
6194 "Expression levels of mRNA molecules are regulated by different
6195processes, comprising inhibition or activation by transcription factors and
6196post-transcriptional degradation by microRNAs. @dfn{birta} (Bayesian
6197Inference of Regulation of Transcriptional Activity) uses the regulatory
6198networks of transcription factors and miRNAs together with mRNA and miRNA
6199expression data to predict switches in regulatory activity between two
6200conditions. A Bayesian network is used to model the regulatory structure and
6201Markov-Chain-Monte-Carlo is applied to sample the activity states.")
6202 (license license:gpl2+)))
a9fac3f4 6203
b4a22cca
RW
6204(define-public r-multidataset
6205 (package
6206 (name "r-multidataset")
691178d6 6207 (version "1.18.1")
b4a22cca
RW
6208 (source
6209 (origin
6210 (method url-fetch)
6211 (uri (bioconductor-uri "MultiDataSet" version))
6212 (sha256
6213 (base32
691178d6 6214 "0v3ljpkggrpc7zp72z417jkzjq17abwsvsxh33fb8s3i2s4ycaa4"))))
b4a22cca
RW
6215 (properties `((upstream-name . "MultiDataSet")))
6216 (build-system r-build-system)
6217 (propagated-inputs
6218 `(("r-biobase" ,r-biobase)
6219 ("r-biocgenerics" ,r-biocgenerics)
6220 ("r-genomicranges" ,r-genomicranges)
6221 ("r-ggplot2" ,r-ggplot2)
6222 ("r-ggrepel" ,r-ggrepel)
6223 ("r-iranges" ,r-iranges)
6224 ("r-limma" ,r-limma)
6225 ("r-qqman" ,r-qqman)
6226 ("r-s4vectors" ,r-s4vectors)
6227 ("r-summarizedexperiment" ,r-summarizedexperiment)))
905bbb13
RW
6228 (native-inputs
6229 `(("r-knitr" ,r-knitr)))
b4a22cca
RW
6230 (home-page "https://bioconductor.org/packages/MultiDataSet/")
6231 (synopsis "Implementation of MultiDataSet and ResultSet")
6232 (description
6233 "This package provides an implementation of the BRGE's (Bioinformatic
6234Research Group in Epidemiology from Center for Research in Environmental
6235Epidemiology) MultiDataSet and ResultSet. MultiDataSet is designed for
6236integrating multi omics data sets and ResultSet is a container for omics
6237results. This package contains base classes for MEAL and rexposome
6238packages.")
6239 (license license:expat)))
6240
a9fac3f4
RW
6241(define-public r-ropls
6242 (package
6243 (name "r-ropls")
59daf6ed 6244 (version "1.22.0")
a9fac3f4
RW
6245 (source
6246 (origin
6247 (method url-fetch)
6248 (uri (bioconductor-uri "ropls" version))
6249 (sha256
6250 (base32
59daf6ed 6251 "1h76s89hsafrkshpkx7vjinfni9lzfpnbfyg3fhkkrwpp1fnwyj5"))))
a9fac3f4 6252 (build-system r-build-system)
643aaf7e
RW
6253 (propagated-inputs
6254 `(("r-biobase" ,r-biobase)
6255 ("r-multidataset" ,r-multidataset)))
a9fac3f4
RW
6256 (native-inputs
6257 `(("r-knitr" ,r-knitr))) ; for vignettes
6258 (home-page "https://dx.doi.org/10.1021/acs.jproteome.5b00354")
6259 (synopsis "Multivariate analysis and feature selection of omics data")
6260 (description
6261 "Latent variable modeling with @dfn{Principal Component Analysis} (PCA)
6262and @dfn{Partial Least Squares} (PLS) are powerful methods for visualization,
6263regression, classification, and feature selection of omics data where the
6264number of variables exceeds the number of samples and with multicollinearity
6265among variables. @dfn{Orthogonal Partial Least Squares} (OPLS) enables to
6266separately model the variation correlated (predictive) to the factor of
6267interest and the uncorrelated (orthogonal) variation. While performing
6268similarly to PLS, OPLS facilitates interpretation.
6269
6270This package provides imlementations of PCA, PLS, and OPLS for multivariate
6271analysis and feature selection of omics data. In addition to scores, loadings
6272and weights plots, the package provides metrics and graphics to determine the
6273optimal number of components (e.g. with the R2 and Q2 coefficients), check the
6274validity of the model by permutation testing, detect outliers, and perform
6275feature selection (e.g. with Variable Importance in Projection or regression
6276coefficients).")
6277 (license license:cecill)))
075a9094
RW
6278
6279(define-public r-biosigner
6280 (package
6281 (name "r-biosigner")
7cda2d41 6282 (version "1.18.2")
075a9094
RW
6283 (source
6284 (origin
6285 (method url-fetch)
6286 (uri (bioconductor-uri "biosigner" version))
6287 (sha256
6288 (base32
7cda2d41 6289 "0i18j4fk91x5017yk1l35c58k5aby22yh81zkp59irphpv9akvjn"))))
075a9094
RW
6290 (build-system r-build-system)
6291 (propagated-inputs
6292 `(("r-biobase" ,r-biobase)
6293 ("r-e1071" ,r-e1071)
7d29dc9c 6294 ("r-multidataset" ,r-multidataset)
075a9094
RW
6295 ("r-randomforest" ,r-randomforest)
6296 ("r-ropls" ,r-ropls)))
6297 (native-inputs
f7100eda 6298 `(("r-knitr" ,r-knitr)))
075a9094
RW
6299 (home-page "https://bioconductor.org/packages/biosigner/")
6300 (synopsis "Signature discovery from omics data")
6301 (description
6302 "Feature selection is critical in omics data analysis to extract
6303restricted and meaningful molecular signatures from complex and high-dimension
6304data, and to build robust classifiers. This package implements a method to
6305assess the relevance of the variables for the prediction performances of the
6306classifier. The approach can be run in parallel with the PLS-DA, Random
6307Forest, and SVM binary classifiers. The signatures and the corresponding
6308'restricted' models are returned, enabling future predictions on new
6309datasets.")
6310 (license license:cecill)))
ae6fa185
RW
6311
6312(define-public r-annotatr
6313 (package
6314 (name "r-annotatr")
458aa446 6315 (version "1.16.0")
ae6fa185
RW
6316 (source
6317 (origin
6318 (method url-fetch)
6319 (uri (bioconductor-uri "annotatr" version))
6320 (sha256
6321 (base32
458aa446 6322 "0dq67snpqxl9mifljm6zlnkdb0ghjwday0fvcn3i7zmrfszgzyf9"))))
ae6fa185
RW
6323 (build-system r-build-system)
6324 (propagated-inputs
6325 `(("r-annotationdbi" ,r-annotationdbi)
6326 ("r-annotationhub" ,r-annotationhub)
6327 ("r-dplyr" ,r-dplyr)
6328 ("r-genomeinfodb" ,r-genomeinfodb)
6329 ("r-genomicfeatures" ,r-genomicfeatures)
6330 ("r-genomicranges" ,r-genomicranges)
6331 ("r-ggplot2" ,r-ggplot2)
6332 ("r-iranges" ,r-iranges)
6333 ("r-readr" ,r-readr)
6334 ("r-regioner" ,r-regioner)
6335 ("r-reshape2" ,r-reshape2)
6336 ("r-rtracklayer" ,r-rtracklayer)
6337 ("r-s4vectors" ,r-s4vectors)))
5ca991bf
RW
6338 (native-inputs
6339 `(("r-knitr" ,r-knitr)))
ae6fa185
RW
6340 (home-page "https://bioconductor.org/packages/annotatr/")
6341 (synopsis "Annotation of genomic regions to genomic annotations")
6342 (description
6343 "Given a set of genomic sites/regions (e.g. ChIP-seq peaks, CpGs,
6344differentially methylated CpGs or regions, SNPs, etc.) it is often of interest
6345to investigate the intersecting genomic annotations. Such annotations include
6346those relating to gene models (promoters, 5'UTRs, exons, introns, and 3'UTRs),
6347CpGs (CpG islands, CpG shores, CpG shelves), or regulatory sequences such as
6348enhancers. The annotatr package provides an easy way to summarize and
6349visualize the intersection of genomic sites/regions with genomic
6350annotations.")
6351 (license license:gpl3)))
2cb738a6
RW
6352
6353(define-public r-rsubread
6354 (package
6355 (name "r-rsubread")
d764f1e7 6356 (version "2.4.2")
2cb738a6
RW
6357 (source
6358 (origin
6359 (method url-fetch)
6360 (uri (bioconductor-uri "Rsubread" version))
6361 (sha256
6362 (base32
d764f1e7 6363 "1wczrw5jb69x45hd3rdqqs9vkysdqwlxn9h3kjzn57r4x5q7jrra"))))
2cb738a6
RW
6364 (properties `((upstream-name . "Rsubread")))
6365 (build-system r-build-system)
6366 (inputs `(("zlib" ,zlib)))
5d63f69b
RW
6367 (propagated-inputs
6368 `(("r-matrix" ,r-matrix)))
2cb738a6
RW
6369 (home-page "https://bioconductor.org/packages/Rsubread/")
6370 (synopsis "Subread sequence alignment and counting for R")
6371 (description
6372 "This package provides tools for alignment, quantification and analysis
6373of second and third generation sequencing data. It includes functionality for
6374read mapping, read counting, SNP calling, structural variant detection and
6375gene fusion discovery. It can be applied to all major sequencing techologies
6376and to both short and long sequence reads.")
6377 (license license:gpl3)))
a6fedf1f 6378
a0422d18 6379(define-public r-flowutils
6380 (package
6381 (name "r-flowutils")
d361222d 6382 (version "1.54.0")
a0422d18 6383 (source
6384 (origin
6385 (method url-fetch)
6386 (uri (bioconductor-uri "flowUtils" version))
6387 (sha256
6388 (base32
d361222d 6389 "1q4g666nd51j24hcp2wxla1bdi77kbfd4i0pxgp7rs2jf7200k09"))))
a0422d18 6390 (properties `((upstream-name . "flowUtils")))
6391 (build-system r-build-system)
6392 (propagated-inputs
6393 `(("r-biobase" ,r-biobase)
6394 ("r-corpcor" ,r-corpcor)
6395 ("r-flowcore" ,r-flowcore)
6396 ("r-graph" ,r-graph)
6397 ("r-runit" ,r-runit)
6398 ("r-xml" ,r-xml)))
6399 (home-page "https://github.com/jspidlen/flowUtils")
6400 (synopsis "Utilities for flow cytometry")
6401 (description
6402 "This package provides utilities for flow cytometry data.")
6403 (license license:artistic2.0)))
6404
ed6f49fc 6405(define-public r-consensusclusterplus
6406 (package
6407 (name "r-consensusclusterplus")
a49024e6 6408 (version "1.54.0")
ed6f49fc 6409 (source
6410 (origin
6411 (method url-fetch)
6412 (uri (bioconductor-uri "ConsensusClusterPlus" version))
6413 (sha256
6414 (base32
a49024e6 6415 "06h85l1mg2kpjprylzz44nhxp64k211plhch5qhg39wp0fk34lfp"))))
ed6f49fc 6416 (properties
6417 `((upstream-name . "ConsensusClusterPlus")))
6418 (build-system r-build-system)
6419 (propagated-inputs
6420 `(("r-all" ,r-all)
6421 ("r-biobase" ,r-biobase)
6422 ("r-cluster" ,r-cluster)))
6423 (home-page "https://bioconductor.org/packages/ConsensusClusterPlus")
6424 (synopsis "Clustering algorithm")
6425 (description
6426 "This package provides an implementation of an algorithm for determining
6427cluster count and membership by stability evidence in unsupervised analysis.")
6428 (license license:gpl2)))
6429
b4aee31d
RW
6430(define-public r-cytolib
6431 (package
6432 (name "r-cytolib")
9470f901 6433 (version "2.2.1")
b4aee31d
RW
6434 (source
6435 (origin
6436 (method url-fetch)
6437 (uri (bioconductor-uri "cytolib" version))
6438 (sha256
6439 (base32
9470f901 6440 "0y8mxrg3jh9bahsf9rblgyja37m1x1ncxfnrli91xjyg0582kh7r"))))
b4aee31d
RW
6441 (properties `((upstream-name . "cytolib")))
6442 (build-system r-build-system)
b58c4e76 6443 (arguments
6444 `(#:phases
6445 (modify-phases %standard-phases
6446 (add-after 'unpack 'fix-linking
6447 (lambda _
6448 (substitute* "src/Makevars.in"
6449 ;; This is to avoid having a plain directory on the list of
6450 ;; libraries to link.
6451 (("\\(RHDF5_LIBS\\)" match)
6452 (string-append match "/libhdf5.a")))
6453 #t)))))
3c73d7c5 6454 (native-inputs
c6ccd4fc 6455 `(("r-knitr" ,r-knitr)
6456 ("pkg-config" ,pkg-config)))
3c73d7c5
RW
6457 (propagated-inputs
6458 `(("r-bh" ,r-bh)
6459 ("r-rcpp" ,r-rcpp)
6460 ("r-rcpparmadillo" ,r-rcpparmadillo)
6461 ("r-rcppparallel" ,r-rcppparallel)
6462 ("r-rhdf5lib" ,r-rhdf5lib)
6463 ("r-rprotobuflib" ,r-rprotobuflib)))
b4aee31d
RW
6464 (home-page "https://bioconductor.org/packages/cytolib/")
6465 (synopsis "C++ infrastructure for working with gated cytometry")
6466 (description
6467 "This package provides the core data structure and API to represent and
6468interact with gated cytometry data.")
6469 (license license:artistic2.0)))
6470
a6fedf1f 6471(define-public r-flowcore
6472 (package
6473 (name "r-flowcore")
3f0e93b4 6474 (version "2.2.0")
a6fedf1f 6475 (source
6476 (origin
6477 (method url-fetch)
6478 (uri (bioconductor-uri "flowCore" version))
6479 (sha256
6480 (base32
3f0e93b4 6481 "001ickrl2asdl0zwpdjqkl1w7137nzxbryamxihgya394jw73xr8"))))
a6fedf1f 6482 (properties `((upstream-name . "flowCore")))
6483 (build-system r-build-system)
6484 (propagated-inputs
6485 `(("r-bh" ,r-bh)
6486 ("r-biobase" ,r-biobase)
6487 ("r-biocgenerics" ,r-biocgenerics)
b2a2f321 6488 ("r-cytolib" ,r-cytolib)
a6fedf1f 6489 ("r-matrixstats" ,r-matrixstats)
faff2de0
RW
6490 ("r-rcpp" ,r-rcpp)
6491 ("r-rcpparmadillo" ,r-rcpparmadillo)
3f0e93b4 6492 ("r-rprotobuflib" ,r-rprotobuflib)
6493 ("r-s4vectors" ,r-s4vectors)))
faff2de0
RW
6494 (native-inputs
6495 `(("r-knitr" ,r-knitr)))
a6fedf1f 6496 (home-page "https://bioconductor.org/packages/flowCore")
6497 (synopsis "Basic structures for flow cytometry data")
6498 (description
6499 "This package provides S4 data structures and basic functions to deal
6500with flow cytometry data.")
6501 (license license:artistic2.0)))
e0cb053e 6502
6503(define-public r-flowmeans
6504 (package
6505 (name "r-flowmeans")
2cd78131 6506 (version "1.50.0")
e0cb053e 6507 (source
6508 (origin
6509 (method url-fetch)
6510 (uri (bioconductor-uri "flowMeans" version))
6511 (sha256
6512 (base32
2cd78131 6513 "02y5b3iqjlqjlxrqq0l24dr68sjaniz26jqf14cnnwz1xg5hz734"))))
e0cb053e 6514 (properties `((upstream-name . "flowMeans")))
6515 (build-system r-build-system)
6516 (propagated-inputs
6517 `(("r-biobase" ,r-biobase)
6518 ("r-feature" ,r-feature)
6519 ("r-flowcore" ,r-flowcore)
6520 ("r-rrcov" ,r-rrcov)))
6521 (home-page "https://bioconductor.org/packages/flowMeans")
6522 (synopsis "Non-parametric flow cytometry data gating")
6523 (description
6524 "This package provides tools to identify cell populations in Flow
6525Cytometry data using non-parametric clustering and segmented-regression-based
6526change point detection.")
6527 (license license:artistic2.0)))
1502751b 6528
15ac0c19
RW
6529(define-public r-ncdfflow
6530 (package
6531 (name "r-ncdfflow")
eac1eaaa 6532 (version "2.36.0")
15ac0c19
RW
6533 (source
6534 (origin
6535 (method url-fetch)
6536 (uri (bioconductor-uri "ncdfFlow" version))
6537 (sha256
6538 (base32
eac1eaaa 6539 "1knqc3ic2vpck7n7m7adxjz3ac70ra89d5gvlgp9r2q3kgaciwac"))))
15ac0c19
RW
6540 (properties `((upstream-name . "ncdfFlow")))
6541 (build-system r-build-system)
0022e9f4 6542 (arguments
6543 `(#:phases
6544 (modify-phases %standard-phases
6545 (add-after 'unpack 'fix-linking
6546 (lambda _
6547 (substitute* "src/Makevars"
6548 ;; This is to avoid having a plain directory on the list of
6549 ;; libraries to link.
6550 (("\\(RHDF5_LIBS\\)" match)
6551 (string-append match "/libhdf5.a")))
6552 #t)))))
15ac0c19
RW
6553 (propagated-inputs
6554 `(("r-bh" ,r-bh)
6555 ("r-biobase" ,r-biobase)
6556 ("r-biocgenerics" ,r-biocgenerics)
6557 ("r-flowcore" ,r-flowcore)
6558 ("r-rcpp" ,r-rcpp)
6559 ("r-rcpparmadillo" ,r-rcpparmadillo)
6560 ("r-rhdf5lib" ,r-rhdf5lib)
6561 ("r-zlibbioc" ,r-zlibbioc)))
631b12ca
RW
6562 (native-inputs
6563 `(("r-knitr" ,r-knitr)))
15ac0c19
RW
6564 (home-page "https://bioconductor.org/packages/ncdfFlow/")
6565 (synopsis "HDF5 based storage for flow cytometry data")
6566 (description
6567 "This package provides HDF5 storage based methods and functions for
6568manipulation of flow cytometry data.")
6569 (license license:artistic2.0)))
6570
f5f44031
RW
6571(define-public r-ggcyto
6572 (package
6573 (name "r-ggcyto")
43bf50ec 6574 (version "1.18.0")
f5f44031
RW
6575 (source
6576 (origin
6577 (method url-fetch)
6578 (uri (bioconductor-uri "ggcyto" version))
6579 (sha256
6580 (base32
43bf50ec 6581 "0myjvhm9jjb9cih5nlka3f9zg5ncy8gy3krpdpa0618jdglvgr1m"))))
f5f44031
RW
6582 (properties `((upstream-name . "ggcyto")))
6583 (build-system r-build-system)
6584 (propagated-inputs
6585 `(("r-data-table" ,r-data-table)
6586 ("r-flowcore" ,r-flowcore)
6587 ("r-flowworkspace" ,r-flowworkspace)
6588 ("r-ggplot2" ,r-ggplot2)
6589 ("r-gridextra" ,r-gridextra)
3407dfa6 6590 ("r-hexbin" ,r-hexbin)
f5f44031
RW
6591 ("r-ncdfflow" ,r-ncdfflow)
6592 ("r-plyr" ,r-plyr)
6593 ("r-rcolorbrewer" ,r-rcolorbrewer)
6594 ("r-rlang" ,r-rlang)
6595 ("r-scales" ,r-scales)))
0754fefb
RW
6596 (native-inputs
6597 `(("r-knitr" ,r-knitr)))
f5f44031
RW
6598 (home-page "https://github.com/RGLab/ggcyto/issues")
6599 (synopsis "Visualize Cytometry data with ggplot")
6600 (description
6601 "With the dedicated fortify method implemented for @code{flowSet},
6602@code{ncdfFlowSet} and @code{GatingSet} classes, both raw and gated flow
6603cytometry data can be plotted directly with ggplot. The @code{ggcyto} wrapper
6604and some custom layers also make it easy to add gates and population
6605statistics to the plot.")
6606 (license license:artistic2.0)))
6607
0dd4b7d7
RW
6608(define-public r-flowviz
6609 (package
6610 (name "r-flowviz")
d5a53ab7 6611 (version "1.54.0")
0dd4b7d7
RW
6612 (source
6613 (origin
6614 (method url-fetch)
6615 (uri (bioconductor-uri "flowViz" version))
6616 (sha256
6617 (base32
d5a53ab7 6618 "1s6jrn2a7hv984xvm6gyn8k3hnma8qidrw9kgj9z5128hv330z7k"))))
0dd4b7d7
RW
6619 (properties `((upstream-name . "flowViz")))
6620 (build-system r-build-system)
6621 (propagated-inputs
6622 `(("r-biobase" ,r-biobase)
6623 ("r-flowcore" ,r-flowcore)
6624 ("r-hexbin" ,r-hexbin)
6625 ("r-idpmisc" ,r-idpmisc)
6626 ("r-kernsmooth" ,r-kernsmooth)
6627 ("r-lattice" ,r-lattice)
6628 ("r-latticeextra" ,r-latticeextra)
6629 ("r-mass" ,r-mass)
6630 ("r-rcolorbrewer" ,r-rcolorbrewer)))
062789b8
RW
6631 (native-inputs
6632 `(("r-knitr" ,r-knitr)))
0dd4b7d7
RW
6633 (home-page "https://bioconductor.org/packages/flowViz/")
6634 (synopsis "Visualization for flow cytometry")
6635 (description
6636 "This package provides visualization tools for flow cytometry data.")
6637 (license license:artistic2.0)))
6638
c8ab9eb1
RW
6639(define-public r-flowclust
6640 (package
6641 (name "r-flowclust")
33c5b6d7 6642 (version "3.28.0")
c8ab9eb1
RW
6643 (source
6644 (origin
6645 (method url-fetch)
6646 (uri (bioconductor-uri "flowClust" version))
6647 (sha256
6648 (base32
33c5b6d7 6649 "1ml3y5wq68jbyr7l5j4zs79bj5bbwzmn5gx41yi88hq78iwkscrq"))))
c8ab9eb1
RW
6650 (properties `((upstream-name . "flowClust")))
6651 (build-system r-build-system)
6652 (arguments
6653 `(#:configure-flags
6654 (list "--configure-args=--enable-bundled-gsl=no")))
6655 (propagated-inputs
6656 `(("r-biobase" ,r-biobase)
6657 ("r-biocgenerics" ,r-biocgenerics)
6658 ("r-clue" ,r-clue)
6659 ("r-corpcor" ,r-corpcor)
6660 ("r-ellipse" ,r-ellipse)
6661 ("r-flowcore" ,r-flowcore)
6662 ("r-flowviz" ,r-flowviz)
6663 ("r-graph" ,r-graph)
6664 ("r-mnormt" ,r-mnormt)))
6665 (inputs
6666 `(("gsl" ,gsl)))
6667 (native-inputs
b347d6c3
RW
6668 `(("pkg-config" ,pkg-config)
6669 ("r-knitr" ,r-knitr)))
c8ab9eb1
RW
6670 (home-page "https://bioconductor.org/packages/flowClust")
6671 (synopsis "Clustering for flow cytometry")
6672 (description
6673 "This package provides robust model-based clustering using a t-mixture
6674model with Box-Cox transformation.")
6675 (license license:artistic2.0)))
6676
f1964519
RW
6677;; TODO: this package bundles an old version of protobuf. It's not easy to
6678;; make it use our protobuf package instead.
6679(define-public r-rprotobuflib
6680 (package
6681 (name "r-rprotobuflib")
5bab0b7e 6682 (version "2.2.0")
f1964519
RW
6683 (source
6684 (origin
6685 (method url-fetch)
6686 (uri (bioconductor-uri "RProtoBufLib" version))
6687 (sha256
6688 (base32
5bab0b7e 6689 "09n4ny3ymfkja2br4rrr2n9dzw3hs7qijhcq4mj0avr86i27llqz"))))
f1964519
RW
6690 (properties `((upstream-name . "RProtoBufLib")))
6691 (build-system r-build-system)
6692 (arguments
6693 `(#:phases
6694 (modify-phases %standard-phases
6695 (add-after 'unpack 'unpack-bundled-sources
6696 (lambda _
6697 (with-directory-excursion "src"
bafade83 6698 (invoke "tar" "xf" "protobuf-3.10.0.tar.gz"))
f1964519 6699 #t)))))
bafade83
RW
6700 (native-inputs
6701 `(("r-knitr" ,r-knitr)))
f1964519
RW
6702 (home-page "https://bioconductor.org/packages/RProtoBufLib/")
6703 (synopsis "C++ headers and static libraries of Protocol buffers")
6704 (description
6705 "This package provides the headers and static library of Protocol buffers
6706for other R packages to compile and link against.")
6707 (license license:bsd-3)))
6708
82c11117
RW
6709(define-public r-flowworkspace
6710 (package
6711 (name "r-flowworkspace")
1b347814 6712 (version "4.2.0")
82c11117
RW
6713 (source
6714 (origin
6715 (method url-fetch)
6716 (uri (bioconductor-uri "flowWorkspace" version))
6717 (sha256
6718 (base32
1b347814 6719 "19svh32jq1dpq3ayhpd5r8bw0iax8d9kdvpvc23gx2pf16g1j5ag"))))
82c11117
RW
6720 (properties `((upstream-name . "flowWorkspace")))
6721 (build-system r-build-system)
ece564f0 6722 (arguments
6723 `(#:phases
6724 (modify-phases %standard-phases
6725 (add-after 'unpack 'fix-linking
6726 (lambda _
6727 (substitute* "src/Makevars"
6728 ;; This is to avoid having a plain directory on the list of
6729 ;; libraries to link.
6730 (("\\{h5lib\\}" match)
6731 (string-append match "/libhdf5.a")))
6732 #t)))))
82c11117 6733 (propagated-inputs
1b347814 6734 `(("r-aws-s3" ,r-aws-s3)
6735 ("r-aws-signature" ,r-aws-signature)
6736 ("r-bh" ,r-bh)
82c11117
RW
6737 ("r-biobase" ,r-biobase)
6738 ("r-biocgenerics" ,r-biocgenerics)
6739 ("r-cytolib" ,r-cytolib)
6740 ("r-data-table" ,r-data-table)
6741 ("r-digest" ,r-digest)
6742 ("r-dplyr" ,r-dplyr)
6743 ("r-flowcore" ,r-flowcore)
a9af09df 6744 ("r-ggplot2" ,r-ggplot2)
82c11117 6745 ("r-graph" ,r-graph)
82c11117
RW
6746 ("r-lattice" ,r-lattice)
6747 ("r-latticeextra" ,r-latticeextra)
6748 ("r-matrixstats" ,r-matrixstats)
6749 ("r-ncdfflow" ,r-ncdfflow)
6750 ("r-rbgl" ,r-rbgl)
82c11117 6751 ("r-rcpp" ,r-rcpp)
a9af09df 6752 ("r-rcpparmadillo" ,r-rcpparmadillo)
82c11117
RW
6753 ("r-rcppparallel" ,r-rcppparallel)
6754 ("r-rgraphviz" ,r-rgraphviz)
a9af09df 6755 ("r-rhdf5lib" ,r-rhdf5lib)
82c11117
RW
6756 ("r-rprotobuflib" ,r-rprotobuflib)
6757 ("r-scales" ,r-scales)
a9af09df
RW
6758 ("r-xml" ,r-xml)))
6759 (native-inputs
6760 `(("r-knitr" ,r-knitr)))
82c11117
RW
6761 (home-page "https://bioconductor.org/packages/flowWorkspace/")
6762 (synopsis "Infrastructure for working with cytometry data")
6763 (description
6764 "This package is designed to facilitate comparison of automated gating
6765methods against manual gating done in flowJo. This package allows you to
6766import basic flowJo workspaces into BioConductor and replicate the gating from
6767flowJo using the @code{flowCore} functionality. Gating hierarchies, groups of
6768samples, compensation, and transformation are performed so that the output
6769matches the flowJo analysis.")
6770 (license license:artistic2.0)))
6771
b700b9ec
RW
6772(define-public r-flowstats
6773 (package
6774 (name "r-flowstats")
fd11c7b8 6775 (version "4.2.0")
b700b9ec
RW
6776 (source
6777 (origin
6778 (method url-fetch)
6779 (uri (bioconductor-uri "flowStats" version))
6780 (sha256
6781 (base32
fd11c7b8 6782 "1i6nrwc55k4bn4qprgs6npy7wf8537m429yncqsygsv47z21ix6x"))))
b700b9ec
RW
6783 (properties `((upstream-name . "flowStats")))
6784 (build-system r-build-system)
6785 (propagated-inputs
6786 `(("r-biobase" ,r-biobase)
6787 ("r-biocgenerics" ,r-biocgenerics)
6788 ("r-cluster" ,r-cluster)
6789 ("r-fda" ,r-fda)
6790 ("r-flowcore" ,r-flowcore)
6791 ("r-flowviz" ,r-flowviz)
6792 ("r-flowworkspace" ,r-flowworkspace)
6793 ("r-kernsmooth" ,r-kernsmooth)
6794 ("r-ks" ,r-ks)
6795 ("r-lattice" ,r-lattice)
6796 ("r-mass" ,r-mass)
6797 ("r-ncdfflow" ,r-ncdfflow)
6798 ("r-rcolorbrewer" ,r-rcolorbrewer)
6799 ("r-rrcov" ,r-rrcov)))
6800 (home-page "http://www.github.com/RGLab/flowStats")
6801 (synopsis "Statistical methods for the analysis of flow cytometry data")
6802 (description
6803 "This package provides methods and functionality to analyze flow data
6804that is beyond the basic infrastructure provided by the @code{flowCore}
6805package.")
6806 (license license:artistic2.0)))
6807
6aedc805
RW
6808(define-public r-opencyto
6809 (package
6810 (name "r-opencyto")
5abf0a0d 6811 (version "2.2.0")
6aedc805
RW
6812 (source
6813 (origin
6814 (method url-fetch)
6815 (uri (bioconductor-uri "openCyto" version))
6816 (sha256
6817 (base32
5abf0a0d 6818 "02dymy5fa0wjd4pql3jdv1d65mak7ra4il96va7c0km8s87rn40v"))))
6aedc805
RW
6819 (properties `((upstream-name . "openCyto")))
6820 (build-system r-build-system)
6821 (propagated-inputs
6822 `(("r-biobase" ,r-biobase)
6823 ("r-biocgenerics" ,r-biocgenerics)
6824 ("r-clue" ,r-clue)
6825 ("r-data-table" ,r-data-table)
6826 ("r-flowclust" ,r-flowclust)
6827 ("r-flowcore" ,r-flowcore)
6828 ("r-flowstats" ,r-flowstats)
6829 ("r-flowviz" ,r-flowviz)
6830 ("r-flowworkspace" ,r-flowworkspace)
6831 ("r-graph" ,r-graph)
6832 ("r-gtools" ,r-gtools)
6833 ("r-ks" ,r-ks)
6834 ("r-lattice" ,r-lattice)
6835 ("r-mass" ,r-mass)
6836 ("r-ncdfflow" ,r-ncdfflow)
6837 ("r-plyr" ,r-plyr)
6838 ("r-r-utils" ,r-r-utils)
6839 ("r-rbgl" ,r-rbgl)
6840 ("r-rcolorbrewer" ,r-rcolorbrewer)
6841 ("r-rcpp" ,r-rcpp)
6842 ("r-rrcov" ,r-rrcov)))
8f5e1674
RW
6843 (native-inputs
6844 `(("r-knitr" ,r-knitr)))
6aedc805
RW
6845 (home-page "https://bioconductor.org/packages/openCyto")
6846 (synopsis "Hierarchical gating pipeline for flow cytometry data")
6847 (description
6848 "This package is designed to facilitate the automated gating methods in a
6849sequential way to mimic the manual gating strategy.")
6850 (license license:artistic2.0)))
6851
7a62d5e0
RW
6852(define-public r-cytoml
6853 (package
6854 (name "r-cytoml")
63033b15 6855 (version "2.2.1")
7a62d5e0
RW
6856 (source
6857 (origin
6858 (method url-fetch)
6859 (uri (bioconductor-uri "CytoML" version))
6860 (sha256
6861 (base32
63033b15 6862 "1d8x49aqc95x1vx456hya5r7mal80pj9l6wmr5x5pb5r8qyzz6yq"))))
7a62d5e0
RW
6863 (properties `((upstream-name . "CytoML")))
6864 (build-system r-build-system)
2b224f90 6865 (arguments
6866 `(#:phases
6867 (modify-phases %standard-phases
6868 (add-after 'unpack 'fix-linking
6869 (lambda _
6870 (substitute* "src/Makevars.in"
6871 ;; This is to avoid having a plain directory on the list of
6872 ;; libraries to link.
6873 (("\\{h5lib\\}" match)
6874 (string-append match "/libhdf5.a")))
6875 #t)))))
7a62d5e0
RW
6876 (inputs
6877 `(("libxml2" ,libxml2)))
6878 (propagated-inputs
6879 `(("r-base64enc" ,r-base64enc)
6880 ("r-bh" ,r-bh)
6881 ("r-biobase" ,r-biobase)
6882 ("r-corpcor" ,r-corpcor)
6883 ("r-cytolib" ,r-cytolib)
6884 ("r-data-table" ,r-data-table)
6885 ("r-dplyr" ,r-dplyr)
6886 ("r-flowcore" ,r-flowcore)
6887 ("r-flowworkspace" ,r-flowworkspace)
6888 ("r-ggcyto" ,r-ggcyto)
6889 ("r-graph" ,r-graph)
6890 ("r-jsonlite" ,r-jsonlite)
6891 ("r-lattice" ,r-lattice)
7a62d5e0
RW
6892 ("r-opencyto" ,r-opencyto)
6893 ("r-plyr" ,r-plyr)
6894 ("r-rbgl" ,r-rbgl)
6895 ("r-rcpp" ,r-rcpp)
8d5a83b7 6896 ("r-rcpparmadillo" ,r-rcpparmadillo)
7a62d5e0
RW
6897 ("r-rcppparallel" ,r-rcppparallel)
6898 ("r-rgraphviz" ,r-rgraphviz)
8d5a83b7 6899 ("r-rhdf5lib" ,r-rhdf5lib)
7a62d5e0
RW
6900 ("r-rprotobuflib" ,r-rprotobuflib)
6901 ("r-runit" ,r-runit)
8d5a83b7 6902 ("r-tibble" ,r-tibble)
7a62d5e0 6903 ("r-xml" ,r-xml)
ef588757 6904 ("r-xml2" ,r-xml2)
7a62d5e0 6905 ("r-yaml" ,r-yaml)))
d49e3f01
RW
6906 (native-inputs
6907 `(("r-knitr" ,r-knitr)))
7a62d5e0
RW
6908 (home-page "https://github.com/RGLab/CytoML")
6909 (synopsis "GatingML interface for cross platform cytometry data sharing")
6910 (description
6911 "This package provides an interface to implementations of the GatingML2.0
6912standard to exchange gated cytometry data with other software platforms.")
6913 (license license:artistic2.0)))
6914
1502751b 6915(define-public r-flowsom
6916 (package
6917 (name "r-flowsom")
1f7ddaf0 6918 (version "1.22.0")
1502751b 6919 (source
6920 (origin
6921 (method url-fetch)
6922 (uri (bioconductor-uri "FlowSOM" version))
6923 (sha256
6924 (base32
1f7ddaf0 6925 "0gydp6q6zqkadw356k9br646zfynz8gk9ckbx9d297x503j5sgwf"))))
1502751b 6926 (properties `((upstream-name . "FlowSOM")))
6927 (build-system r-build-system)
6928 (propagated-inputs
6929 `(("r-biocgenerics" ,r-biocgenerics)
6930 ("r-consensusclusterplus" ,r-consensusclusterplus)
ba71567a 6931 ("r-cytoml" ,r-cytoml)
1502751b 6932 ("r-flowcore" ,r-flowcore)
ba71567a 6933 ("r-flowworkspace" ,r-flowworkspace)
1502751b 6934 ("r-igraph" ,r-igraph)
ba71567a 6935 ("r-rcolorbrewer" ,r-rcolorbrewer)
1502751b 6936 ("r-tsne" ,r-tsne)
6937 ("r-xml" ,r-xml)))
6938 (home-page "https://bioconductor.org/packages/FlowSOM/")
6939 (synopsis "Visualize and interpret cytometry data")
6940 (description
6941 "FlowSOM offers visualization options for cytometry data, by using
6942self-organizing map clustering and minimal spanning trees.")
6943 (license license:gpl2+)))
1adb9cbc 6944
6945(define-public r-mixomics
6946 (package
6947 (name "r-mixomics")
0e78ce36 6948 (version "6.14.0")
1adb9cbc 6949 (source
6950 (origin
6951 (method url-fetch)
6952 (uri (bioconductor-uri "mixOmics" version))
6953 (sha256
6954 (base32
0e78ce36 6955 "0q43ay5r0qsx0zjjnrq24fk6pq5cimviky5lm4w2mbjclqf0gv0q"))))
1adb9cbc 6956 (properties `((upstream-name . "mixOmics")))
6957 (build-system r-build-system)
6958 (propagated-inputs
6959 `(("r-corpcor" ,r-corpcor)
6960 ("r-dplyr" ,r-dplyr)
6961 ("r-ellipse" ,r-ellipse)
0e78ce36 6962 ("r-ggrepel" ,r-ggrepel)
1adb9cbc 6963 ("r-ggplot2" ,r-ggplot2)
6964 ("r-gridextra" ,r-gridextra)
6965 ("r-igraph" ,r-igraph)
6966 ("r-lattice" ,r-lattice)
6967 ("r-mass" ,r-mass)
6968 ("r-matrixstats" ,r-matrixstats)
6969 ("r-rarpack" ,r-rarpack)
6970 ("r-rcolorbrewer" ,r-rcolorbrewer)
6971 ("r-reshape2" ,r-reshape2)
6972 ("r-tidyr" ,r-tidyr)))
9669bc17
RW
6973 (native-inputs
6974 `(("r-knitr" ,r-knitr)))
1adb9cbc 6975 (home-page "http://www.mixOmics.org")
6976 (synopsis "Multivariate methods for exploration of biological datasets")
6977 (description
6978 "mixOmics offers a wide range of multivariate methods for the exploration
6979and integration of biological datasets with a particular focus on variable
6980selection. The package proposes several sparse multivariate models we have
6981developed to identify the key variables that are highly correlated, and/or
6982explain the biological outcome of interest. The data that can be analysed
6983with mixOmics may come from high throughput sequencing technologies, such as
6984omics data (transcriptomics, metabolomics, proteomics, metagenomics etc) but
6985also beyond the realm of omics (e.g. spectral imaging). The methods
6986implemented in mixOmics can also handle missing values without having to
6987delete entire rows with missing data.")
6988 (license license:gpl2+)))
a0efa069 6989
6990(define-public r-depecher
fafaeab4 6991 (package ;Source/Weave error
a0efa069 6992 (name "r-depecher")
fafaeab4 6993 (version "1.6.0")
a0efa069 6994 (source
6995 (origin
6996 (method url-fetch)
6997 (uri (bioconductor-uri "DepecheR" version))
6998 (sha256
6999 (base32
fafaeab4 7000 "0c7yv3a7k22nhhw3601n8jdl61cjmlny9b3nfrzsp78mkxi0h469"))))
a0efa069 7001 (properties `((upstream-name . "DepecheR")))
7002 (build-system r-build-system)
a0efa069 7003 (propagated-inputs
7004 `(("r-beanplot" ,r-beanplot)
a0efa069 7005 ("r-dosnow" ,r-dosnow)
7006 ("r-dplyr" ,r-dplyr)
2c8433ca 7007 ("r-fnn" ,r-fnn)
a0efa069 7008 ("r-foreach" ,r-foreach)
7009 ("r-ggplot2" ,r-ggplot2)
fafaeab4 7010 ("r-gmodels" ,r-gmodels)
a0efa069 7011 ("r-gplots" ,r-gplots)
7012 ("r-mass" ,r-mass)
7013 ("r-matrixstats" ,r-matrixstats)
7014 ("r-mixomics" ,r-mixomics)
7015 ("r-moments" ,r-moments)
7016 ("r-rcpp" ,r-rcpp)
7017 ("r-rcppeigen" ,r-rcppeigen)
7018 ("r-reshape2" ,r-reshape2)
2c8433ca 7019 ("r-robustbase" ,r-robustbase)
a0efa069 7020 ("r-viridis" ,r-viridis)))
bf3722f9
RW
7021 (native-inputs
7022 `(("r-knitr" ,r-knitr)))
a0efa069 7023 (home-page "https://bioconductor.org/packages/DepecheR/")
7024 (synopsis "Identify traits of clusters in high-dimensional entities")
7025 (description
7026 "The purpose of this package is to identify traits in a dataset that can
7027separate groups. This is done on two levels. First, clustering is performed,
7028using an implementation of sparse K-means. Secondly, the generated clusters
7029are used to predict outcomes of groups of individuals based on their
7030distribution of observations in the different clusters. As certain clusters
7031with separating information will be identified, and these clusters are defined
7032by a sparse number of variables, this method can reduce the complexity of
7033data, to only emphasize the data that actually matters.")
7034 (license license:expat)))
b46a0ee7 7035
bb88417f
RW
7036(define-public r-rcistarget
7037 (package
7038 (name "r-rcistarget")
64813573 7039 (version "1.10.0")
bb88417f
RW
7040 (source
7041 (origin
7042 (method url-fetch)
7043 (uri (bioconductor-uri "RcisTarget" version))
7044 (sha256
7045 (base32
64813573 7046 "0a711jzxl1kggpk3ln68xzc5y30my4nbs1mxx8951pyi3jvzjfyf"))))
bb88417f
RW
7047 (properties `((upstream-name . "RcisTarget")))
7048 (build-system r-build-system)
7049 (propagated-inputs
7050 `(("r-aucell" ,r-aucell)
7051 ("r-biocgenerics" ,r-biocgenerics)
7052 ("r-data-table" ,r-data-table)
7053 ("r-feather" ,r-feather)
7054 ("r-gseabase" ,r-gseabase)
7055 ("r-r-utils" ,r-r-utils)
7056 ("r-summarizedexperiment" ,r-summarizedexperiment)))
93235b1e
RW
7057 (native-inputs
7058 `(("r-knitr" ,r-knitr)))
bb88417f
RW
7059 (home-page "https://aertslab.org/#scenic")
7060 (synopsis "Identify transcription factor binding motifs enriched on a gene list")
7061 (description
7062 "RcisTarget identifies @dfn{transcription factor binding motifs} (TFBS)
7063over-represented on a gene list. In a first step, RcisTarget selects DNA
7064motifs that are significantly over-represented in the surroundings of the
7065@dfn{transcription start site} (TSS) of the genes in the gene-set. This is
7066achieved by using a database that contains genome-wide cross-species rankings
7067for each motif. The motifs that are then annotated to TFs and those that have
7068a high @dfn{Normalized Enrichment Score} (NES) are retained. Finally, for
7069each motif and gene-set, RcisTarget predicts the candidate target genes (i.e.
7070genes in the gene-set that are ranked above the leading edge).")
7071 (license license:gpl3)))
7072
b46a0ee7
RW
7073(define-public r-cicero
7074 (package
7075 (name "r-cicero")
589ac422 7076 (version "1.8.1")
b46a0ee7
RW
7077 (source
7078 (origin
7079 (method url-fetch)
7080 (uri (bioconductor-uri "cicero" version))
7081 (sha256
7082 (base32
589ac422 7083 "12y857p4p0m7k72bimli8wjn9cd0gxjwcs3n7ri9pn9l9d42krqr"))))
b46a0ee7
RW
7084 (build-system r-build-system)
7085 (propagated-inputs
7086 `(("r-assertthat" ,r-assertthat)
7087 ("r-biobase" ,r-biobase)
7088 ("r-biocgenerics" ,r-biocgenerics)
7089 ("r-data-table" ,r-data-table)
7090 ("r-dplyr" ,r-dplyr)
7091 ("r-fnn" ,r-fnn)
7092 ("r-genomicranges" ,r-genomicranges)
7093 ("r-ggplot2" ,r-ggplot2)
7094 ("r-glasso" ,r-glasso)
7095 ("r-gviz" ,r-gviz)
7096 ("r-igraph" ,r-igraph)
7097 ("r-iranges" ,r-iranges)
7098 ("r-matrix" ,r-matrix)
7099 ("r-monocle" ,r-monocle)
7100 ("r-plyr" ,r-plyr)
7101 ("r-reshape2" ,r-reshape2)
7102 ("r-s4vectors" ,r-s4vectors)
1893092d 7103 ("r-stringi" ,r-stringi)
b46a0ee7
RW
7104 ("r-stringr" ,r-stringr)
7105 ("r-tibble" ,r-tibble)
5ea4f604 7106 ("r-tidyr" ,r-tidyr)
b46a0ee7 7107 ("r-vgam" ,r-vgam)))
6bd6097e
RW
7108 (native-inputs
7109 `(("r-knitr" ,r-knitr)))
b46a0ee7
RW
7110 (home-page "https://bioconductor.org/packages/cicero/")
7111 (synopsis "Predict cis-co-accessibility from single-cell data")
7112 (description
7113 "Cicero computes putative cis-regulatory maps from single-cell chromatin
7114accessibility data. It also extends the monocle package for use in chromatin
7115accessibility data.")
7116 (license license:expat)))
14bb1c48
RW
7117
7118;; This is the latest commit on the "monocle3" branch.
7119(define-public r-cicero-monocle3
7120 (let ((commit "fa2fb6515857a8cfc88bc9af044f34de1bcd2b7b")
7121 (revision "1"))
7122 (package (inherit r-cicero)
7123 (name "r-cicero-monocle3")
7124 (version (git-version "1.3.2" revision commit))
7125 (source
7126 (origin
7127 (method git-fetch)
7128 (uri (git-reference
b0e7b699 7129 (url "https://github.com/cole-trapnell-lab/cicero-release")
14bb1c48
RW
7130 (commit commit)))
7131 (file-name (git-file-name name version))
7132 (sha256
7133 (base32
7134 "077yza93wdhi08n40md20jwk55k9lw1f3y0063qkk90cpz60wi0c"))))
7135 (propagated-inputs
7136 `(("r-monocle3" ,r-monocle3)
7137 ,@(alist-delete "r-monocle"
7138 (package-propagated-inputs r-cicero)))))))
a9815a6c 7139
297531ef
MIP
7140(define-public r-circrnaprofiler
7141 (package
7142 (name "r-circrnaprofiler")
4f617bfb 7143 (version "1.4.2")
297531ef
MIP
7144 (source
7145 (origin
7146 (method url-fetch)
7147 (uri (bioconductor-uri "circRNAprofiler" version))
7148 (sha256
7149 (base32
4f617bfb 7150 "0r1hfm3pc7c71irzmxmdwc27ns9hkymz4vhb4pqbli4xn37q7cg8"))))
297531ef
MIP
7151 (properties
7152 `((upstream-name . "circRNAprofiler")))
7153 (build-system r-build-system)
7154 (propagated-inputs
7155 `(("r-annotationhub" ,r-annotationhub)
7156 ("r-biostrings" ,r-biostrings)
7157 ("r-bsgenome" ,r-bsgenome)
7158 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
7159 ("r-deseq2" ,r-deseq2)
7160 ("r-dplyr" ,r-dplyr)
7161 ("r-edger" ,r-edger)
7162 ("r-genomeinfodb" ,r-genomeinfodb)
7163 ("r-genomicranges" ,r-genomicranges)
7164 ("r-ggplot2" ,r-ggplot2)
7165 ("r-gwascat" ,r-gwascat)
7166 ("r-iranges" ,r-iranges)
7167 ("r-magrittr" ,r-magrittr)
7168 ("r-r-utils" ,r-r-utils)
7169 ("r-readr" ,r-readr)
7170 ("r-reshape2" ,r-reshape2)
7171 ("r-rlang" ,r-rlang)
7172 ("r-rtracklayer" ,r-rtracklayer)
7173 ("r-s4vectors" ,r-s4vectors)
7174 ("r-seqinr" ,r-seqinr)
7175 ("r-stringi" ,r-stringi)
7176 ("r-stringr" ,r-stringr)
7177 ("r-universalmotif" ,r-universalmotif)))
7178 (native-inputs
7179 `(("r-knitr" ,r-knitr)))
7180 (home-page
7181 "https://github.com/Aufiero/circRNAprofiler")
7182 (synopsis
7183 "Computational framework for the downstream analysis of circular RNA's")
7184 (description
7185 "@code{r-circrnaprofiler} is a computational framework for a comprehensive
7186in silico analysis of @dfn{circular RNA} (circRNAs). This computational
7187framework allows to combine and analyze circRNAs previously detected by
7188multiple publicly available annotation-based circRNA detection tools. It
7189covers different aspects of circRNAs analysis from differential expression
7190analysis, evolutionary conservation, biogenesis to functional analysis.")
7191 (license license:gpl3)))
7192
a9815a6c
RW
7193(define-public r-cistopic
7194 (let ((commit "29abd8df9afb60ff27ac3f0a590930debe926950")
7195 (revision "0"))
7196 (package
7197 (name "r-cistopic")
7198 (version (git-version "0.2.1" revision commit))
7199 (source
7200 (origin
7201 (method git-fetch)
7202 (uri (git-reference
b0e7b699 7203 (url "https://github.com/aertslab/cisTopic")
a9815a6c
RW
7204 (commit commit)))
7205 (file-name (git-file-name name version))
7206 (sha256
7207 (base32
7208 "0s8irpsv5d2zcv4ihanvsf1vrpignzliscxnvs4519af3jmx78h8"))))
7209 (build-system r-build-system)
7210 (propagated-inputs
7211 `(("r-aucell" ,r-aucell)
7212 ("r-data-table" ,r-data-table)
7213 ("r-dplyr" ,r-dplyr)
7214 ("r-dosnow" ,r-dosnow)
7215 ("r-dt" ,r-dt)
7216 ("r-feather" ,r-feather)
7217 ("r-fitdistrplus" ,r-fitdistrplus)
7218 ("r-genomicranges" ,r-genomicranges)
7219 ("r-ggplot2" ,r-ggplot2)
7220 ("r-lda" ,r-lda)
7221 ("r-matrix" ,r-matrix)
7222 ("r-plyr" ,r-plyr)
7223 ("r-rcistarget" ,r-rcistarget)
7224 ("r-rtracklayer" ,r-rtracklayer)
7225 ("r-s4vectors" ,r-s4vectors)))
7226 (home-page "https://github.com/aertslab/cisTopic")
7227 (synopsis "Modelling of cis-regulatory topics from single cell epigenomics data")
7228 (description
7229 "The sparse nature of single cell epigenomics data can be overruled using
7230probabilistic modelling methods such as @dfn{Latent Dirichlet
7231Allocation} (LDA). This package allows the probabilistic modelling of
7232cis-regulatory topics (cisTopics) from single cell epigenomics data, and
7233includes functionalities to identify cell states based on the contribution of
7234cisTopics and explore the nature and regulatory proteins driving them.")
7235 (license license:gpl3))))
d85c0f98
RW
7236
7237(define-public r-genie3
7238 (package
7239 (name "r-genie3")
5d1bd611 7240 (version "1.12.0")
d85c0f98
RW
7241 (source
7242 (origin
7243 (method url-fetch)
7244 (uri (bioconductor-uri "GENIE3" version))
7245 (sha256
7246 (base32
5d1bd611 7247 "1z7qkv0cgdx2plhc7xdz6s7vwdjhzcdadi35wg3fl6xpids5njf5"))))
d85c0f98
RW
7248 (properties `((upstream-name . "GENIE3")))
7249 (build-system r-build-system)
7250 (propagated-inputs `(("r-reshape2" ,r-reshape2)))
b3280883
RW
7251 (native-inputs
7252 `(("r-knitr" ,r-knitr)))
d85c0f98
RW
7253 (home-page "https://bioconductor.org/packages/GENIE3")
7254 (synopsis "Gene network inference with ensemble of trees")
7255 (description
7256 "This package implements the GENIE3 algorithm for inferring gene
7257regulatory networks from expression data.")
7258 (license license:gpl2+)))
db316d73
RW
7259
7260(define-public r-roc
7261 (package
7262 (name "r-roc")
e7b61ba7 7263 (version "1.66.0")
db316d73
RW
7264 (source
7265 (origin
7266 (method url-fetch)
7267 (uri (bioconductor-uri "ROC" version))
7268 (sha256
7269 (base32
e7b61ba7 7270 "02b9n42z3kjrfxpdf3glqvimd79nhnycq00mb09fzhkpp5zl43c9"))))
db316d73
RW
7271 (properties `((upstream-name . "ROC")))
7272 (build-system r-build-system)
3672b74f
RW
7273 (propagated-inputs
7274 `(("r-knitr" ,r-knitr)))
db316d73
RW
7275 (home-page "https://www.bioconductor.org/packages/ROC/")
7276 (synopsis "Utilities for ROC curves")
7277 (description
7278 "This package provides utilities for @dfn{Receiver Operating
7279Characteristic} (ROC) curves, with a focus on micro arrays.")
7280 (license license:artistic2.0)))
46721dea
RW
7281
7282(define-public r-illuminahumanmethylation450kanno-ilmn12-hg19
7283 (package
7284 (name "r-illuminahumanmethylation450kanno-ilmn12-hg19")
7285 (version "0.6.0")
7286 (source
7287 (origin
7288 (method url-fetch)
7289 (uri (bioconductor-uri
7290 "IlluminaHumanMethylation450kanno.ilmn12.hg19"
7291 version 'annotation))
7292 (sha256
7293 (base32
7294 "059vlxsx3p3fcnywwirahsc6mlk813zpqnbv0jsrag6x5bb8z6r4"))))
7295 (properties
7296 `((upstream-name
7297 . "IlluminaHumanMethylation450kanno.ilmn12.hg19")))
7298 (build-system r-build-system)
7299 (propagated-inputs `(("r-minfi" ,r-minfi)))
7300 (home-page
7301 "https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19/")
7302 (synopsis "Annotation for Illumina's 450k methylation arrays")
7303 (description
7304 "This package provides manifests and annotation for Illumina's 450k array
7305data.")
7306 (license license:artistic2.0)))
38babeaa
RW
7307
7308(define-public r-watermelon
7309 (package
7310 (name "r-watermelon")
9f6e2bfe 7311 (version "1.34.0")
38babeaa
RW
7312 (source
7313 (origin
7314 (method url-fetch)
7315 (uri (bioconductor-uri "wateRmelon" version))
7316 (sha256
7317 (base32
9f6e2bfe 7318 "1sc2nxg9bafpvlwqhky2p5b6fkimkk9v3xcab9kvwnj6szrb6p3f"))))
38babeaa
RW
7319 (properties `((upstream-name . "wateRmelon")))
7320 (build-system r-build-system)
7321 (propagated-inputs
7322 `(("r-biobase" ,r-biobase)
7323 ("r-illuminahumanmethylation450kanno-ilmn12-hg19"
7324 ,r-illuminahumanmethylation450kanno-ilmn12-hg19)
7325 ("r-illuminaio" ,r-illuminaio)
7326 ("r-limma" ,r-limma)
7327 ("r-lumi" ,r-lumi)
7328 ("r-matrixstats" ,r-matrixstats)
7329 ("r-methylumi" ,r-methylumi)
7330 ("r-roc" ,r-roc)))
7331 (home-page "https://bioconductor.org/packages/wateRmelon/")
7332 (synopsis "Illumina 450 methylation array normalization and metrics")
7333 (description
7334 "The standard index of DNA methylation (beta) is computed from methylated
7335and unmethylated signal intensities. Betas calculated from raw signal
7336intensities perform well, but using 11 methylomic datasets we demonstrate that
7337quantile normalization methods produce marked improvement. The commonly used
7338procedure of normalizing betas is inferior to the separate normalization of M
7339and U, and it is also advantageous to normalize Type I and Type II assays
7340separately. This package provides 15 flavours of betas and three performance
7341metrics, with methods for objects produced by the @code{methylumi} and
7342@code{minfi} packages.")
7343 (license license:gpl3)))
7d2cb646
RW
7344
7345(define-public r-gdsfmt
7346 (package
7347 (name "r-gdsfmt")
6f37c3ea 7348 (version "1.26.1")
7d2cb646
RW
7349 (source
7350 (origin
7351 (method url-fetch)
7352 (uri (bioconductor-uri "gdsfmt" version))
7353 (sha256
7354 (base32
6f37c3ea 7355 "0f5vn8h5fzzazcv92sgrf85hc4xkkizk2wwml9mzjd8ya2fkwg8n"))
7d2cb646
RW
7356 (modules '((guix build utils)))
7357 ;; Remove bundled sources of zlib, lz4, and xz. Don't attempt to build
7358 ;; them and link with system libraries instead.
7359 (snippet
7360 '(begin
7361 (for-each delete-file-recursively
7362 '("src/LZ4"
7363 "src/XZ"
7364 "src/ZLIB"))
7365 (substitute* "src/Makevars"
7366 (("all: \\$\\(SHLIB\\)") "all:")
7367 (("\\$\\(SHLIB\\): liblzma.a") "")
7368 (("(ZLIB|LZ4)/.*") "")
7369 (("CoreArray/dVLIntGDS.cpp.*")
7370 "CoreArray/dVLIntGDS.cpp")
7371 (("CoreArray/dVLIntGDS.o.*")
7372 "CoreArray/dVLIntGDS.o")
7373 (("PKG_LIBS = ./liblzma.a")
7374 "PKG_LIBS = -llz4"))
7375 (substitute* "src/CoreArray/dStream.h"
7376 (("include \"../(ZLIB|LZ4|XZ/api)/(.*)\"" _ _ header)
7377 (string-append "include <" header ">")))
7378 #t))))
7379 (properties `((upstream-name . "gdsfmt")))
7380 (build-system r-build-system)
7381 (inputs
7382 `(("lz4" ,lz4)
7383 ("xz" ,xz)
7384 ("zlib" ,zlib)))
f4954b0b
RW
7385 (native-inputs
7386 `(("r-knitr" ,r-knitr)))
7d2cb646
RW
7387 (home-page "http://corearray.sourceforge.net/")
7388 (synopsis
7389 "R Interface to CoreArray Genomic Data Structure (GDS) Files")
7390 (description
7391 "This package provides a high-level R interface to CoreArray @dfn{Genomic
7392Data Structure} (GDS) data files, which are portable across platforms with
7393hierarchical structure to store multiple scalable array-oriented data sets
7394with metadata information. It is suited for large-scale datasets, especially
7395for data which are much larger than the available random-access memory. The
7396@code{gdsfmt} package offers efficient operations specifically designed for
7397integers of less than 8 bits, since a diploid genotype, like
7398@dfn{single-nucleotide polymorphism} (SNP), usually occupies fewer bits than a
7399byte. Data compression and decompression are available with relatively
7400efficient random access. It is also allowed to read a GDS file in parallel
7401with multiple R processes supported by the package @code{parallel}.")
7402 (license license:lgpl3)))
6b5f59c7
RW
7403
7404(define-public r-bigmelon
7405 (package
7406 (name "r-bigmelon")
64f9fb30 7407 (version "1.16.0")
6b5f59c7
RW
7408 (source
7409 (origin
7410 (method url-fetch)
7411 (uri (bioconductor-uri "bigmelon" version))
7412 (sha256
7413 (base32
64f9fb30 7414 "0hj5njwx7n681vigkq4560f9dm7mdjgvcwbgp5nbdn1fb2z24bk7"))))
6b5f59c7
RW
7415 (properties `((upstream-name . "bigmelon")))
7416 (build-system r-build-system)
7417 (propagated-inputs
7418 `(("r-biobase" ,r-biobase)
7419 ("r-biocgenerics" ,r-biocgenerics)
7420 ("r-gdsfmt" ,r-gdsfmt)
7421 ("r-geoquery" ,r-geoquery)
7422 ("r-methylumi" ,r-methylumi)
7423 ("r-minfi" ,r-minfi)
7424 ("r-watermelon" ,r-watermelon)))
7425 (home-page "https://bioconductor.org/packages/bigmelon/")
7426 (synopsis "Illumina methylation array analysis for large experiments")
7427 (description
7428 "This package provides methods for working with Illumina arrays using the
7429@code{gdsfmt} package.")
7430 (license license:gpl3)))
739b2d10 7431
e5dfcd8e
RW
7432(define-public r-seqbias
7433 (package
7434 (name "r-seqbias")
42e00c09 7435 (version "1.38.0")
e5dfcd8e
RW
7436 (source
7437 (origin
7438 (method url-fetch)
7439 (uri (bioconductor-uri "seqbias" version))
7440 (sha256
7441 (base32
42e00c09 7442 "1m634sidmk6c603k2gflyiddkns9vr6ij591nmab523xk5r2f4b2"))))
e5dfcd8e
RW
7443 (properties `((upstream-name . "seqbias")))
7444 (build-system r-build-system)
7445 (propagated-inputs
7446 `(("r-biostrings" ,r-biostrings)
7447 ("r-genomicranges" ,r-genomicranges)
7448 ("r-rhtslib" ,r-rhtslib)))
e5dfcd8e
RW
7449 (home-page "https://bioconductor.org/packages/seqbias/")
7450 (synopsis "Estimation of per-position bias in high-throughput sequencing data")
7451 (description
7452 "This package implements a model of per-position sequencing bias in
7453high-throughput sequencing data using a simple Bayesian network, the structure
7454and parameters of which are trained on a set of aligned reads and a reference
7455genome sequence.")
7456 (license license:lgpl3)))
7457
63daca1e
RJ
7458(define-public r-snplocs-hsapiens-dbsnp144-grch37
7459 (package
7460 (name "r-snplocs-hsapiens-dbsnp144-grch37")
7461 (version "0.99.20")
7462 (source (origin
7463 (method url-fetch)
7464 (uri (bioconductor-uri "SNPlocs.Hsapiens.dbSNP144.GRCh37"
7465 version 'annotation))
7466 (sha256
7467 (base32
7468 "1z8kx43ki1jvj7ms7pcybakcdimfwr6zpjvspkjmma97bdz093iz"))))
7469 (build-system r-build-system)
7470 ;; As this package provides little more than a very large data file it
7471 ;; doesn't make sense to build substitutes.
7472 (arguments `(#:substitutable? #f))
7473 (propagated-inputs
7474 `(("r-biocgenerics" ,r-biocgenerics)
7475 ("r-s4vectors" ,r-s4vectors)
7476 ("r-iranges" ,r-iranges)
7477 ("r-genomeinfodb" ,r-genomeinfodb)
7478 ("r-genomicranges" ,r-genomicranges)
7479 ("r-bsgenome" ,r-bsgenome)
7480 ("r-biostrings" ,r-biostrings)))
7481 (home-page
7482 "https://bioconductor.org/packages/SNPlocs.Hsapiens.dbSNP144.GRCh37/")
7483 (synopsis "SNP locations for Homo sapiens (dbSNP Build 144)")
7484 (description "This package provides SNP locations and alleles for Homo
7485sapiens extracted from NCBI dbSNP Build 144. The source data files used for
7486this package were created by NCBI on May 29-30, 2015, and contain SNPs mapped
7487to reference genome GRCh37.p13. Note that the GRCh37.p13 genome is a
7488patched version of GRCh37. However the patch doesn't alter chromosomes 1-22,
1408e2ab 7489X, Y, MT. GRCh37 itself is the same as the hg19 genome from UCSC *except* for
63daca1e
RJ
7490the mitochondrion chromosome. Therefore, the SNPs in this package can be
7491injected in @code{BSgenome.Hsapiens.UCSC.hg19} and they will land at the
7492correct position but this injection will exclude chrM (i.e. nothing will be
7493injected in that sequence).")
7494 (license license:artistic2.0)))
7495
bb0024dc
RW
7496(define-public r-reqon
7497 (package
7498 (name "r-reqon")
0c53f27d 7499 (version "1.36.0")
bb0024dc
RW
7500 (source
7501 (origin
7502 (method url-fetch)
7503 (uri (bioconductor-uri "ReQON" version))
7504 (sha256
7505 (base32
0c53f27d 7506 "1yz0r0rrk4n6dnqbdq41lvs5z8l6vkx729m0a7f29svw4dbc6mdq"))))
bb0024dc
RW
7507 (properties `((upstream-name . "ReQON")))
7508 (build-system r-build-system)
7509 (propagated-inputs
7510 `(("r-rjava" ,r-rjava)
7511 ("r-rsamtools" ,r-rsamtools)
7512 ("r-seqbias" ,r-seqbias)))
7513 (home-page "https://bioconductor.org/packages/ReQON/")
7514 (synopsis "Recalibrating quality of nucleotides")
7515 (description
7516 "This package provides an implementation of an algorithm for
7517recalibrating the base quality scores for aligned sequencing data in BAM
7518format.")
7519 (license license:gpl2)))
7520
739b2d10
RW
7521(define-public r-wavcluster
7522 (package
7523 (name "r-wavcluster")
fd7e23b5 7524 (version "2.24.0")
739b2d10
RW
7525 (source
7526 (origin
7527 (method url-fetch)
7528 (uri (bioconductor-uri "wavClusteR" version))
7529 (sha256
7530 (base32
fd7e23b5 7531 "18cg0jbr3rjyx31wwyag1n5gams55pbd2rvb99i3g80q9hvswawi"))))
739b2d10
RW
7532 (properties `((upstream-name . "wavClusteR")))
7533 (build-system r-build-system)
7534 (propagated-inputs
7535 `(("r-biocgenerics" ,r-biocgenerics)
7536 ("r-biostrings" ,r-biostrings)
7537 ("r-foreach" ,r-foreach)
7538 ("r-genomicfeatures" ,r-genomicfeatures)
7539 ("r-genomicranges" ,r-genomicranges)
7540 ("r-ggplot2" ,r-ggplot2)
7541 ("r-hmisc" ,r-hmisc)
7542 ("r-iranges" ,r-iranges)
7543 ("r-mclust" ,r-mclust)
7544 ("r-rsamtools" ,r-rsamtools)
7545 ("r-rtracklayer" ,r-rtracklayer)
7546 ("r-s4vectors" ,r-s4vectors)
7547 ("r-seqinr" ,r-seqinr)
fd7e23b5 7548 ("r-stringr" ,r-stringr)))
12b255f2
RW
7549 (native-inputs
7550 `(("r-knitr" ,r-knitr)))
739b2d10
RW
7551 (home-page "https://bioconductor.org/packages/wavClusteR/")
7552 (synopsis "Identification of RNA-protein interaction sites in PAR-CLIP data")
7553 (description
7554 "This package provides an integrated pipeline for the analysis of
7555PAR-CLIP data. PAR-CLIP-induced transitions are first discriminated from
7556sequencing errors, SNPs and additional non-experimental sources by a non-
7557parametric mixture model. The protein binding sites (clusters) are then
7558resolved at high resolution and cluster statistics are estimated using a
7559rigorous Bayesian framework. Post-processing of the results, data export for
7560UCSC genome browser visualization and motif search analysis are provided. In
e40ecf8a 7561addition, the package integrates RNA-Seq data to estimate the False
739b2d10
RW
7562Discovery Rate of cluster detection. Key functions support parallel multicore
7563computing. While wavClusteR was designed for PAR-CLIP data analysis, it can
7564be applied to the analysis of other NGS data obtained from experimental
7565procedures that induce nucleotide substitutions (e.g. BisSeq).")
7566 (license license:gpl2)))
853211a5
RW
7567
7568(define-public r-timeseriesexperiment
7569 (package
7570 (name "r-timeseriesexperiment")
87f704b4 7571 (version "1.8.0")
853211a5
RW
7572 (source
7573 (origin
7574 (method url-fetch)
7575 (uri (bioconductor-uri "TimeSeriesExperiment" version))
7576 (sha256
7577 (base32
87f704b4 7578 "1jx0rk660mfzk7rfhamnp0disx3bv456cqi9hyaz2wcbcdrlvcjn"))))
853211a5
RW
7579 (properties
7580 `((upstream-name . "TimeSeriesExperiment")))
7581 (build-system r-build-system)
7582 (propagated-inputs
7583 `(("r-deseq2" ,r-deseq2)
7584 ("r-dplyr" ,r-dplyr)
7585 ("r-dynamictreecut" ,r-dynamictreecut)
7586 ("r-edger" ,r-edger)
7587 ("r-ggplot2" ,r-ggplot2)
7588 ("r-hmisc" ,r-hmisc)
7589 ("r-limma" ,r-limma)
7590 ("r-magrittr" ,r-magrittr)
7591 ("r-proxy" ,r-proxy)
7592 ("r-s4vectors" ,r-s4vectors)
7593 ("r-summarizedexperiment" ,r-summarizedexperiment)
7594 ("r-tibble" ,r-tibble)
7595 ("r-tidyr" ,r-tidyr)
7596 ("r-vegan" ,r-vegan)
7597 ("r-viridis" ,r-viridis)))
49dd5041
RW
7598 (native-inputs
7599 `(("r-knitr" ,r-knitr)))
853211a5
RW
7600 (home-page "https://github.com/nlhuong/TimeSeriesExperiment/")
7601 (synopsis "Analysis for short time-series data")
7602 (description
7603 "This package is a visualization and analysis toolbox for short time
7604course data which includes dimensionality reduction, clustering, two-sample
7605differential expression testing and gene ranking techniques. The package also
7606provides methods for retrieving enriched pathways.")
7607 (license license:lgpl3+)))
df8576e5
RW
7608
7609(define-public r-variantfiltering
7610 (package
7611 (name "r-variantfiltering")
45ea773f 7612 (version "1.26.0")
df8576e5
RW
7613 (source
7614 (origin
7615 (method url-fetch)
7616 (uri (bioconductor-uri "VariantFiltering" version))
7617 (sha256
7618 (base32
45ea773f 7619 "0zy53knvyk8wy3hmnsxc0w9qkhvx6xhviskvx7rwmrsi7pz531l5"))))
df8576e5
RW
7620 (properties
7621 `((upstream-name . "VariantFiltering")))
7622 (build-system r-build-system)
7623 (propagated-inputs
7624 `(("r-annotationdbi" ,r-annotationdbi)
7625 ("r-biobase" ,r-biobase)
7626 ("r-biocgenerics" ,r-biocgenerics)
7627 ("r-biocparallel" ,r-biocparallel)
7628 ("r-biostrings" ,r-biostrings)
7629 ("r-bsgenome" ,r-bsgenome)
7630 ("r-dt" ,r-dt)
7631 ("r-genomeinfodb" ,r-genomeinfodb)
7632 ("r-genomicfeatures" ,r-genomicfeatures)
7633 ("r-genomicranges" ,r-genomicranges)
7634 ("r-genomicscores" ,r-genomicscores)
7635 ("r-graph" ,r-graph)
7636 ("r-gviz" ,r-gviz)
7637 ("r-iranges" ,r-iranges)
7638 ("r-rbgl" ,r-rbgl)
7639 ("r-rsamtools" ,r-rsamtools)
7640 ("r-s4vectors" ,r-s4vectors)
7641 ("r-shiny" ,r-shiny)
7642 ("r-shinyjs" ,r-shinyjs)
7643 ("r-shinythemes" ,r-shinythemes)
7644 ("r-shinytree" ,r-shinytree)
7645 ("r-summarizedexperiment" ,r-summarizedexperiment)
7646 ("r-variantannotation" ,r-variantannotation)
7647 ("r-xvector" ,r-xvector)))
7648 (home-page "https://github.com/rcastelo/VariantFiltering")
7649 (synopsis "Filtering of coding and non-coding genetic variants")
7650 (description
7651 "Filter genetic variants using different criteria such as inheritance
7652model, amino acid change consequence, minor allele frequencies across human
7653populations, splice site strength, conservation, etc.")
7654 (license license:artistic2.0)))
f5349b4d
RW
7655
7656(define-public r-genomegraphs
7657 (package
7658 (name "r-genomegraphs")
053a2127 7659 (version "1.46.0")
f5349b4d
RW
7660 (source
7661 (origin
7662 (method url-fetch)
7663 (uri (bioconductor-uri "GenomeGraphs" version))
7664 (sha256
7665 (base32
053a2127 7666 "05vavhz936v7cknig2f2mn3fd9fiy54r3swlvifpawramblp1ags"))))
f5349b4d
RW
7667 (properties `((upstream-name . "GenomeGraphs")))
7668 (build-system r-build-system)
7669 (propagated-inputs
7670 `(("r-biomart" ,r-biomart)))
7671 (home-page "https://bioconductor.org/packages/GenomeGraphs/")
7672 (synopsis "Plotting genomic information from Ensembl")
7673 (description
7674 "Genomic data analyses requires integrated visualization of known genomic
7675information and new experimental data. GenomeGraphs uses the biomaRt package
7676to perform live annotation queries to Ensembl and translates this to e.g.
7677gene/transcript structures in viewports of the grid graphics package. This
7678results in genomic information plotted together with your data. Another
7679strength of GenomeGraphs is to plot different data types such as array CGH,
7680gene expression, sequencing and other data, together in one plot using the
7681same genome coordinate system.")
7682 (license license:artistic2.0)))
2a360cf6
RW
7683
7684(define-public r-wavetiling
7685 (package
7686 (name "r-wavetiling")
e13f9773 7687 (version "1.28.0")
2a360cf6
RW
7688 (source
7689 (origin
7690 (method url-fetch)
7691 (uri (bioconductor-uri "waveTiling" version))
7692 (sha256
7693 (base32
e13f9773 7694 "0d7l559zlmly8mncmh1zhkqmsml0bwwfpm7ccp8l26y852vwf7hf"))))
2a360cf6
RW
7695 (properties `((upstream-name . "waveTiling")))
7696 (build-system r-build-system)
7697 (propagated-inputs
7698 `(("r-affy" ,r-affy)
7699 ("r-biobase" ,r-biobase)
7700 ("r-biostrings" ,r-biostrings)
7701 ("r-genomegraphs" ,r-genomegraphs)
7702 ("r-genomicranges" ,r-genomicranges)
7703 ("r-iranges" ,r-iranges)
7704 ("r-oligo" ,r-oligo)
7705 ("r-oligoclasses" ,r-oligoclasses)
7706 ("r-preprocesscore" ,r-preprocesscore)
7707 ("r-waveslim" ,r-waveslim)))
7708 (home-page "https://r-forge.r-project.org/projects/wavetiling/")
7709 (synopsis "Wavelet-based models for tiling array transcriptome analysis")
7710 (description
7711 "This package is designed to conduct transcriptome analysis for tiling
7712arrays based on fast wavelet-based functional models.")
7713 (license license:gpl2+)))
d80a1569
RW
7714
7715(define-public r-variancepartition
7716 (package
7717 (name "r-variancepartition")
44ecd5f7 7718 (version "1.20.0")
d80a1569
RW
7719 (source
7720 (origin
7721 (method url-fetch)
7722 (uri (bioconductor-uri "variancePartition" version))
7723 (sha256
7724 (base32
44ecd5f7 7725 "0fisaqd5v8xy9rz9l1zs62k1n2h4k1irzgwj46ci947l52x1qhah"))))
d80a1569
RW
7726 (properties
7727 `((upstream-name . "variancePartition")))
7728 (build-system r-build-system)
7729 (propagated-inputs
7730 `(("r-biobase" ,r-biobase)
326746e1 7731 ("r-biocparallel" ,r-biocparallel)
d80a1569
RW
7732 ("r-colorramps" ,r-colorramps)
7733 ("r-doparallel" ,r-doparallel)
7734 ("r-foreach" ,r-foreach)
7735 ("r-ggplot2" ,r-ggplot2)
7736 ("r-gplots" ,r-gplots)
7737 ("r-iterators" ,r-iterators)
7738 ("r-limma" ,r-limma)
7739 ("r-lme4" ,r-lme4)
7740 ("r-lmertest" ,r-lmertest)
7741 ("r-mass" ,r-mass)
7742 ("r-pbkrtest" ,r-pbkrtest)
7743 ("r-progress" ,r-progress)
7744 ("r-reshape2" ,r-reshape2)
7745 ("r-scales" ,r-scales)))
fbbaf5ae
RW
7746 (native-inputs
7747 `(("r-knitr" ,r-knitr)))
d80a1569
RW
7748 (home-page "https://bioconductor.org/packages/variancePartition/")
7749 (synopsis "Analyze variation in gene expression experiments")
7750 (description
7751 "This is a package providing tools to quantify and interpret multiple
7752sources of biological and technical variation in gene expression experiments.
7753It uses a linear mixed model to quantify variation in gene expression
7754attributable to individual, tissue, time point, or technical variables. The
7755package includes dream differential expression analysis for repeated
7756measures.")
7757 (license license:gpl2+)))
16e2e4f2 7758
7759(define-public r-htqpcr
7760 (package
7761 (name "r-htqpcr")
949626f2 7762 (version "1.44.0")
16e2e4f2 7763 (source
7764 (origin
7765 (method url-fetch)
7766 (uri (bioconductor-uri "HTqPCR" version))
7767 (sha256
7768 (base32
949626f2 7769 "1fzjx6psr41naq9ycpnv3lxlgkiyrpn7r2wl1i4gz45f3lax0yji"))))
16e2e4f2 7770 (properties `((upstream-name . "HTqPCR")))
7771 (build-system r-build-system)
7772 (propagated-inputs
7773 `(("r-affy" ,r-affy)
7774 ("r-biobase" ,r-biobase)
7775 ("r-gplots" ,r-gplots)
7776 ("r-limma" ,r-limma)
7777 ("r-rcolorbrewer" ,r-rcolorbrewer)))
486a0800
TGR
7778 (home-page (string-append "https://www.ebi.ac.uk/sites/ebi.ac.uk/files/"
7779 "groups/bertone/software/HTqPCR.pdf"))
16e2e4f2 7780 (synopsis "Automated analysis of high-throughput qPCR data")
7781 (description
7782 "Analysis of Ct values from high throughput quantitative real-time
7783PCR (qPCR) assays across multiple conditions or replicates. The input data
7784can be from spatially-defined formats such ABI TaqMan Low Density Arrays or
7785OpenArray; LightCycler from Roche Applied Science; the CFX plates from Bio-Rad
7786Laboratories; conventional 96- or 384-well plates; or microfluidic devices
7787such as the Dynamic Arrays from Fluidigm Corporation. HTqPCR handles data
7788loading, quality assessment, normalization, visualization and parametric or
7789non-parametric testing for statistical significance in Ct values between
7790features (e.g. genes, microRNAs).")
7791 (license license:artistic2.0)))
86fb2c63 7792
7793(define-public r-unifiedwmwqpcr
7794 (package
7795 (name "r-unifiedwmwqpcr")
fa7e2429 7796 (version "1.26.0")
86fb2c63 7797 (source
7798 (origin
7799 (method url-fetch)
7800 (uri (bioconductor-uri "unifiedWMWqPCR" version))
7801 (sha256
7802 (base32
fa7e2429 7803 "1ad5a7gy43l8x1rf5lgqiy2bv6fgah7cbnp4lrqwshphlnr30ndv"))))
86fb2c63 7804 (properties
7805 `((upstream-name . "unifiedWMWqPCR")))
7806 (build-system r-build-system)
7807 (propagated-inputs
7808 `(("r-biocgenerics" ,r-biocgenerics)
7809 ("r-htqpcr" ,r-htqpcr)))
7810 (home-page "https://bioconductor.org/packages/unifiedWMWqPCR")
7811 (synopsis "Unified Wilcoxon-Mann Whitney Test for differential expression in qPCR data")
7812 (description
b5b0ee3b 7813 "This package implements the unified Wilcoxon-Mann-Whitney Test for qPCR
86fb2c63 7814data. This modified test allows for testing differential expression in qPCR
7815data.")
7816 (license license:gpl2+)))
72b67e0b 7817
1353e536
MIP
7818(define-public r-universalmotif
7819 (package
7820 (name "r-universalmotif")
7821 (version "1.8.3")
7822 (source
7823 (origin
7824 (method url-fetch)
7825 (uri (bioconductor-uri "universalmotif" version))
7826 (sha256
7827 (base32
7828 "1ys2kbayc1rzv8nzi60208yfslm4kzynndfg7vw2n0c30dvzycrc"))))
7829 (properties
7830 `((upstream-name . "universalmotif")))
7831 (build-system r-build-system)
7832 (arguments
7833 `(#:phases
7834 (modify-phases %standard-phases
7835 (add-after 'unpack 'fix-reference-to-strip
7836 (lambda _
7837 (substitute* "src/Makevars"
7838 (("/usr/bin/strip") (which "strip"))))))))
7839 (propagated-inputs
7840 `(("r-biocgenerics" ,r-biocgenerics)
7841 ("r-biostrings" ,r-biostrings)
7842 ("r-ggplot2" ,r-ggplot2)
7843 ("r-ggseqlogo" ,r-ggseqlogo)
7844 ("r-iranges" ,r-iranges)
7845 ("r-mass" ,r-mass)
7846 ("r-rcpp" ,r-rcpp)
7847 ("r-rcppthread" ,r-rcppthread)
7848 ("r-rdpack" ,r-rdpack)
7849 ("r-rlang" ,r-rlang)
7850 ("r-s4vectors" ,r-s4vectors)
7851 ("r-yaml" ,r-yaml)))
7852 (native-inputs
7853 `(("r-knitr" ,r-knitr)))
7854 (home-page
7855 "https://bioconductor.org/packages/universalmotif/")
7856 (synopsis
7857 "Specific structures importer, modifier, and exporter for R")
7858 (description
7859 "This package allows importing most common @dfn{specific structure}
7860(motif) types into R for use by functions provided by other Bioconductor
7861motif-related packages. Motifs can be exported into most major motif formats
7862from various classes as defined by other Bioconductor packages. A suite of
7863motif and sequence manipulation and analysis functions are included, including
7864enrichment, comparison, P-value calculation, shuffling, trimming, higher-order
7865motifs, and others.")
7866 (license license:gpl3)))
7867
72b67e0b
RW
7868;; This is a CRAN package, but it depends on Bioconductor packages, so we put
7869;; it here.
7870(define-public r-activedriverwgs
7871 (package
7872 (name "r-activedriverwgs")
5412da84 7873 (version "1.1.1")
72b67e0b
RW
7874 (source
7875 (origin
7876 (method url-fetch)
7877 (uri (cran-uri "ActiveDriverWGS" version))
7878 (sha256
7879 (base32
5412da84 7880 "06mvakdc8d2pn91p0sr4ixc561s4ia5h1cvd1p7pqd6s50dy4say"))))
72b67e0b
RW
7881 (properties
7882 `((upstream-name . "ActiveDriverWGS")))
7883 (build-system r-build-system)
7884 (propagated-inputs
7885 `(("r-biostrings" ,r-biostrings)
7886 ("r-bsgenome" ,r-bsgenome)
7887 ("r-bsgenome-hsapiens-ucsc-hg19" ,r-bsgenome-hsapiens-ucsc-hg19)
7888 ("r-genomeinfodb" ,r-genomeinfodb)
7889 ("r-genomicranges" ,r-genomicranges)
7890 ("r-iranges" ,r-iranges)
72b67e0b 7891 ("r-s4vectors" ,r-s4vectors)))
e1ce10e3
RW
7892 (native-inputs
7893 `(("r-knitr" ,r-knitr)))
72b67e0b
RW
7894 (home-page "https://cran.r-project.org/web/packages/ActiveDriverWGS/")
7895 (synopsis "Driver discovery tool for cancer whole genomes")
7896 (description
7897 "This package provides a method for finding an enrichment of cancer
7898simple somatic mutations (SNVs and Indels) in functional elements across the
7899human genome. ActiveDriverWGS detects coding and noncoding driver elements
7900using whole genome sequencing data.")
7901 (license license:gpl3)))
8e6f63dd
RW
7902
7903;; This is a CRAN package, but it depends on Bioconductor packages, so we put
7904;; it here.
7905(define-public r-activepathways
7906 (package
7907 (name "r-activepathways")
a9a91280 7908 (version "1.0.2")
8e6f63dd
RW
7909 (source
7910 (origin
7911 (method url-fetch)
7912 (uri (cran-uri "ActivePathways" version))
7913 (sha256
7914 (base32
a9a91280 7915 "1hxy760x141ykrpqdbfldq4ggj1svj3lsrpwi4rb2x7r4lna937l"))))
8e6f63dd
RW
7916 (properties
7917 `((upstream-name . "ActivePathways")))
7918 (build-system r-build-system)
7919 (propagated-inputs
7920 `(("r-data-table" ,r-data-table)
a9a91280 7921 ("r-ggplot2" ,r-ggplot2)))
229736aa
RW
7922 (native-inputs
7923 `(("r-knitr" ,r-knitr)))
8e6f63dd
RW
7924 (home-page "https://cran.r-project.org/web/packages/ActivePathways/")
7925 (synopsis "Multivariate pathway enrichment analysis")
7926 (description
7927 "This package represents an integrative method of analyzing multi omics
7928data that conducts enrichment analysis of annotated gene sets. ActivePathways
7929uses a statistical data fusion approach, rationalizes contributing evidence
7930and highlights associated genes, improving systems-level understanding of
7931cellular organization in health and disease.")
7932 (license license:gpl3)))
d11d6fea
RW
7933
7934(define-public r-bgmix
7935 (package
7936 (name "r-bgmix")
fad5da32 7937 (version "1.50.0")
d11d6fea
RW
7938 (source
7939 (origin
7940 (method url-fetch)
7941 (uri (bioconductor-uri "BGmix" version))
7942 (sha256
7943 (base32
fad5da32 7944 "0r9gjqajarg5mivxhqdzn8m8hmfarmzbplp3zqyyznccri03pv50"))))
d11d6fea
RW
7945 (properties `((upstream-name . "BGmix")))
7946 (build-system r-build-system)
7947 (propagated-inputs
7948 `(("r-kernsmooth" ,r-kernsmooth)))
7949 (home-page "https://bioconductor.org/packages/BGmix/")
7950 (synopsis "Bayesian models for differential gene expression")
7951 (description
7952 "This package provides fully Bayesian mixture models for differential
7953gene expression.")
7954 (license license:gpl2)))
75eb1149
RW
7955
7956(define-public r-bgx
7957 (package
7958 (name "r-bgx")
3cebe274 7959 (version "1.56.0")
75eb1149
RW
7960 (source
7961 (origin
7962 (method url-fetch)
7963 (uri (bioconductor-uri "bgx" version))
7964 (sha256
7965 (base32
3cebe274 7966 "0gm4wv9drqvg9r4f0id1ivrfgv0nvh0hb6hp63b3jd14092777im"))))
75eb1149
RW
7967 (properties `((upstream-name . "bgx")))
7968 (build-system r-build-system)
7969 (propagated-inputs
7970 `(("r-affy" ,r-affy)
7971 ("r-biobase" ,r-biobase)
7972 ("r-gcrma" ,r-gcrma)
7973 ("r-rcpp" ,r-rcpp)))
7974 (home-page "https://bioconductor.org/packages/bgx/")
7975 (synopsis "Bayesian gene expression")
7976 (description
7977 "This package provides tools for Bayesian integrated analysis of
7978Affymetrix GeneChips.")
7979 (license license:gpl2)))
6bd50acf
RW
7980
7981(define-public r-bhc
7982 (package
7983 (name "r-bhc")
2219bef1 7984 (version "1.42.0")
6bd50acf
RW
7985 (source
7986 (origin
7987 (method url-fetch)
7988 (uri (bioconductor-uri "BHC" version))
7989 (sha256
7990 (base32
2219bef1 7991 "1n2rkbj8j10f38d40wvi6mwjxnrlfx71a48ab07bp2s0hwhxd7yn"))))
6bd50acf
RW
7992 (properties `((upstream-name . "BHC")))
7993 (build-system r-build-system)
7994 (home-page "https://bioconductor.org/packages/BHC/")
7995 (synopsis "Bayesian hierarchical clustering")
7996 (description
7997 "The method implemented in this package performs bottom-up hierarchical
7998clustering, using a Dirichlet Process (infinite mixture) to model uncertainty
7999in the data and Bayesian model selection to decide at each step which clusters
8000to merge. This avoids several limitations of traditional methods, for example
8001how many clusters there should be and how to choose a principled distance
8002metric. This implementation accepts multinomial (i.e. discrete, with 2+
8003categories) or time-series data. This version also includes a randomised
8004algorithm which is more efficient for larger data sets.")
8005 (license license:gpl3)))
de9374b7
RW
8006
8007(define-public r-bicare
8008 (package
8009 (name "r-bicare")
4ec66569 8010 (version "1.48.0")
de9374b7
RW
8011 (source
8012 (origin
8013 (method url-fetch)
8014 (uri (bioconductor-uri "BicARE" version))
8015 (sha256
8016 (base32
4ec66569 8017 "1np3967rjx54hbjsynvya75lcsqa6zic6frw5fjwqybwv2pzzw2k"))))
de9374b7
RW
8018 (properties `((upstream-name . "BicARE")))
8019 (build-system r-build-system)
8020 (propagated-inputs
8021 `(("r-biobase" ,r-biobase)
8022 ("r-gseabase" ,r-gseabase)
8023 ("r-multtest" ,r-multtest)))
8024 (home-page "http://bioinfo.curie.fr")
8025 (synopsis "Biclustering analysis and results exploration")
8026 (description
8027 "This is a package for biclustering analysis and exploration of
8028results.")
8029 (license license:gpl2)))
40fe63ad
RW
8030
8031(define-public r-bifet
8032 (package
8033 (name "r-bifet")
d57be633 8034 (version "1.10.0")
40fe63ad
RW
8035 (source
8036 (origin
8037 (method url-fetch)
8038 (uri (bioconductor-uri "BiFET" version))
8039 (sha256
8040 (base32
d57be633 8041 "191m1xhsj4l64rrh67hqiz1rdkfhw0gfd5aymf3x0xm710l3rh4a"))))
40fe63ad
RW
8042 (properties `((upstream-name . "BiFET")))
8043 (build-system r-build-system)
8044 (propagated-inputs
8045 `(("r-genomicranges" ,r-genomicranges)
8046 ("r-poibin" ,r-poibin)))
a54fd409
RW
8047 (native-inputs
8048 `(("r-knitr" ,r-knitr)))
40fe63ad
RW
8049 (home-page "https://bioconductor.org/packages/BiFET")
8050 (synopsis "Bias-free footprint enrichment test")
8051 (description
8052 "BiFET identifies @dfn{transcription factors} (TFs) whose footprints are
8053over-represented in target regions compared to background regions after
8054correcting for the bias arising from the imbalance in read counts and GC
8055contents between the target and background regions. For a given TF k, BiFET
8056tests the null hypothesis that the target regions have the same probability of
8057having footprints for the TF k as the background regions while correcting for
8058the read count and GC content bias.")
8059 (license license:gpl3)))
e823337c
RW
8060
8061(define-public r-rsbml
8062 (package
8063 (name "r-rsbml")
3320f044 8064 (version "2.48.0")
e823337c
RW
8065 (source
8066 (origin
8067 (method url-fetch)
8068 (uri (bioconductor-uri "rsbml" version))
8069 (sha256
8070 (base32
3320f044 8071 "0vrjfhwcpc699sq78pkm022fam3ahar8h3lx3fr879dd21k02g61"))))
e823337c
RW
8072 (properties `((upstream-name . "rsbml")))
8073 (build-system r-build-system)
8074 (inputs
8075 `(("libsbml" ,libsbml)
8076 ("zlib" ,zlib)))
8077 (propagated-inputs
8078 `(("r-biocgenerics" ,r-biocgenerics)
8079 ("r-graph" ,r-graph)))
8080 (native-inputs
8081 `(("pkg-config" ,pkg-config)))
8082 (home-page "http://www.sbml.org")
8083 (synopsis "R support for SBML")
8084 (description
8085 "This package provides an R interface to libsbml for SBML parsing,
8086validating output, provides an S4 SBML DOM, converts SBML to R graph objects.")
8087 (license license:artistic2.0)))
75a8bb31
RW
8088
8089(define-public r-hypergraph
8090 (package
8091 (name "r-hypergraph")
294fd58a 8092 (version "1.62.0")
75a8bb31
RW
8093 (source
8094 (origin
8095 (method url-fetch)
8096 (uri (bioconductor-uri "hypergraph" version))
8097 (sha256
8098 (base32
294fd58a 8099 "1p5mzr2aiqqc1j2inh45abjvqhid9jqv6wiym1xxnz16mpaa7q97"))))
75a8bb31
RW
8100 (properties `((upstream-name . "hypergraph")))
8101 (build-system r-build-system)
8102 (propagated-inputs
8103 `(("r-graph" ,r-graph)))
8104 (home-page "https://bioconductor.org/packages/hypergraph")
8105 (synopsis "Hypergraph data structures")
8106 (description
8107 "This package implements some simple capabilities for representing and
8108manipulating hypergraphs.")
8109 (license license:artistic2.0)))
5aef09bd
RW
8110
8111(define-public r-hyperdraw
8112 (package
8113 (name "r-hyperdraw")
249b7030 8114 (version "1.42.0")
5aef09bd
RW
8115 (source
8116 (origin
8117 (method url-fetch)
8118 (uri (bioconductor-uri "hyperdraw" version))
8119 (sha256
8120 (base32
249b7030 8121 "0z3a3lpz7s0fw023fxldkgxvl2dl1wn8agnyj09sky11ainxdayz"))))
5aef09bd
RW
8122 (properties `((upstream-name . "hyperdraw")))
8123 (build-system r-build-system)
8124 (inputs `(("graphviz" ,graphviz)))
8125 (propagated-inputs
8126 `(("r-graph" ,r-graph)
8127 ("r-hypergraph" ,r-hypergraph)
8128 ("r-rgraphviz" ,r-rgraphviz)))
8129 (home-page "https://bioconductor.org/packages/hyperdraw")
8130 (synopsis "Visualizing hypergraphs")
8131 (description
8132 "This package provides functions for visualizing hypergraphs.")
8133 (license license:gpl2+)))
6ca6f866
RW
8134
8135(define-public r-biggr
8136 (package
8137 (name "r-biggr")
0f94a9ed 8138 (version "1.26.0")
6ca6f866
RW
8139 (source
8140 (origin
8141 (method url-fetch)
8142 (uri (bioconductor-uri "BiGGR" version))
8143 (sha256
8144 (base32
0f94a9ed 8145 "1hlsnss6071ck4ky1akxp1dnv3vmd8f85drdziqmm4nc2dfrr14y"))))
6ca6f866
RW
8146 (properties `((upstream-name . "BiGGR")))
8147 (build-system r-build-system)
8148 (propagated-inputs
8149 `(("r-hyperdraw" ,r-hyperdraw)
8150 ("r-hypergraph" ,r-hypergraph)
8151 ("r-lim" ,r-lim)
8152 ("r-limsolve" ,r-limsolve)
8153 ("r-rsbml" ,r-rsbml)
8154 ("r-stringr" ,r-stringr)))
8155 (home-page "https://bioconductor.org/packages/BiGGR/")
8156 (synopsis "Constraint based modeling using metabolic reconstruction databases")
8157 (description
8158 "This package provides an interface to simulate metabolic reconstruction
8159from the @url{http://bigg.ucsd.edu/, BiGG database} and other metabolic
8160reconstruction databases. The package facilitates @dfn{flux balance
8161analysis} (FBA) and the sampling of feasible flux distributions. Metabolic
8162networks and estimated fluxes can be visualized with hypergraphs.")
8163 (license license:gpl3+)))
820373db
RW
8164
8165(define-public r-bigmemoryextras
8166 (package
8167 (name "r-bigmemoryextras")
e80f8262 8168 (version "1.38.0")
820373db
RW
8169 (source
8170 (origin
8171 (method url-fetch)
8172 (uri (bioconductor-uri "bigmemoryExtras" version))
8173 (sha256
8174 (base32
e80f8262 8175 "1k31h746j8r3f92vj62s38fw12qjkv5814ipcqfbswnxgaan17zj"))))
820373db
RW
8176 (properties
8177 `((upstream-name . "bigmemoryExtras")))
8178 (build-system r-build-system)
8179 (propagated-inputs
8180 `(("r-bigmemory" ,r-bigmemory)))
eef9c99c
RW
8181 (native-inputs
8182 `(("r-knitr" ,r-knitr)))
820373db
RW
8183 (home-page "https://github.com/phaverty/bigmemoryExtras")
8184 (synopsis "Extension of the bigmemory package")
8185 (description
8186 "This package defines a @code{BigMatrix} @code{ReferenceClass} which adds
8187safety and convenience features to the @code{filebacked.big.matrix} class from
8188the @code{bigmemory} package. @code{BigMatrix} protects against segfaults by
8189monitoring and gracefully restoring the connection to on-disk data and it also
7230f6d5 8190protects against accidental data modification with a file-system-based
820373db
RW
8191permissions system. Utilities are provided for using @code{BigMatrix}-derived
8192classes as @code{assayData} matrices within the @code{Biobase} package's
8193@code{eSet} family of classes. @code{BigMatrix} provides some optimizations
8194related to attaching to, and indexing into, file-backed matrices with
8195dimnames. Additionally, the package provides a @code{BigMatrixFactor} class,
8196a file-backed matrix with factor properties.")
8197 (license license:artistic2.0)))
d38775b1
RW
8198
8199(define-public r-bigpint
8200 (package
8201 (name "r-bigpint")
1e288678 8202 (version "1.6.0")
d38775b1
RW
8203 (source
8204 (origin
8205 (method url-fetch)
8206 (uri (bioconductor-uri "bigPint" version))
8207 (sha256
8208 (base32
1e288678 8209 "1axgapy4iyx059777m9faczwwj03h3i5dyrs0rlc84axzhzd2kis"))))
d38775b1
RW
8210 (properties `((upstream-name . "bigPint")))
8211 (build-system r-build-system)
8212 (propagated-inputs
d0badcc1
RW
8213 `(("r-delayedarray" ,r-delayedarray)
8214 ("r-dplyr" ,r-dplyr)
d38775b1
RW
8215 ("r-ggally" ,r-ggally)
8216 ("r-ggplot2" ,r-ggplot2)
8217 ("r-gridextra" ,r-gridextra)
8218 ("r-hexbin" ,r-hexbin)
8219 ("r-hmisc" ,r-hmisc)
8220 ("r-htmlwidgets" ,r-htmlwidgets)
8221 ("r-plotly" ,r-plotly)
8222 ("r-plyr" ,r-plyr)
8223 ("r-rcolorbrewer" ,r-rcolorbrewer)
8224 ("r-reshape" ,r-reshape)
8225 ("r-shiny" ,r-shiny)
8226 ("r-shinycssloaders" ,r-shinycssloaders)
8227 ("r-shinydashboard" ,r-shinydashboard)
8228 ("r-stringr" ,r-stringr)
d0badcc1 8229 ("r-summarizedexperiment" ,r-summarizedexperiment)
d38775b1 8230 ("r-tidyr" ,r-tidyr)))
1f2f01ae
RW
8231 (native-inputs
8232 `(("r-knitr" ,r-knitr)))
d38775b1
RW
8233 (home-page "https://github.com/lindsayrutter/bigPint")
8234 (synopsis "Big multivariate data plotted interactively")
8235 (description
8236 "This package provides methods for visualizing large multivariate
8237datasets using static and interactive scatterplot matrices, parallel
8238coordinate plots, volcano plots, and litre plots. It includes examples for
8239visualizing RNA-sequencing datasets and differentially expressed genes.")
8240 (license license:gpl3)))
991554fc
RW
8241
8242(define-public r-chemminer
8243 (package
8244 (name "r-chemminer")
8c8d365c 8245 (version "3.42.2")
991554fc
RW
8246 (source
8247 (origin
8248 (method url-fetch)
8249 (uri (bioconductor-uri "ChemmineR" version))
8250 (sha256
8251 (base32
8c8d365c 8252 "10d8h6w24h4s7l02zzv6q46w3yiqsjizip7mf11cvkmd6p7qxfl9"))))
991554fc
RW
8253 (properties `((upstream-name . "ChemmineR")))
8254 (build-system r-build-system)
8255 (propagated-inputs
8256 `(("r-base64enc" ,r-base64enc)
8257 ("r-bh" ,r-bh)
8258 ("r-biocgenerics" ,r-biocgenerics)
8259 ("r-dbi" ,r-dbi)
8260 ("r-digest" ,r-digest)
8261 ("r-dt" ,r-dt)
8262 ("r-ggplot2" ,r-ggplot2)
8263 ("r-gridextra" ,r-gridextra)
8264 ("r-png" ,r-png)
8265 ("r-rcpp" ,r-rcpp)
8266 ("r-rcurl" ,r-rcurl)
8267 ("r-rjson" ,r-rjson)
8268 ("r-rsvg" ,r-rsvg)))
06908a73
RW
8269 (native-inputs
8270 `(("r-knitr" ,r-knitr)))
991554fc
RW
8271 (home-page "https://github.com/girke-lab/ChemmineR")
8272 (synopsis "Cheminformatics toolkit for R")
8273 (description
8274 "ChemmineR is a cheminformatics package for analyzing drug-like small
8275molecule data in R. It contains functions for efficient processing of large
8276numbers of molecules, physicochemical/structural property predictions,
8277structural similarity searching, classification and clustering of compound
8278libraries with a wide spectrum of algorithms. In addition, it offers
8279visualization functions for compound clustering results and chemical
8280structures.")
8281 (license license:artistic2.0)))
48bcbef0
RW
8282
8283(define-public r-bioassayr
8284 (package
8285 (name "r-bioassayr")
2528cad4 8286 (version "1.28.2")
48bcbef0
RW
8287 (source
8288 (origin
8289 (method url-fetch)
8290 (uri (bioconductor-uri "bioassayR" version))
8291 (sha256
8292 (base32
2528cad4 8293 "0ylnnm31jkmi8zz78kngqv36yn6i5lvjp1i27v59svw13m4r03g5"))))
48bcbef0
RW
8294 (properties `((upstream-name . "bioassayR")))
8295 (build-system r-build-system)
8296 (propagated-inputs
8297 `(("r-biocgenerics" ,r-biocgenerics)
8298 ("r-chemminer" ,r-chemminer)
8299 ("r-dbi" ,r-dbi)
8300 ("r-matrix" ,r-matrix)
8301 ("r-rjson" ,r-rjson)
8302 ("r-rsqlite" ,r-rsqlite)
8303 ("r-xml" ,r-xml)))
faaf2b35
RW
8304 (native-inputs
8305 `(("r-knitr" ,r-knitr)))
323aec6a 8306 (home-page "https://github.com/girke-lab/bioassayR")
48bcbef0
RW
8307 (synopsis "Cross-target analysis of small molecule bioactivity")
8308 (description
8309 "bioassayR is a computational tool that enables simultaneous analysis of
8310thousands of bioassay experiments performed over a diverse set of compounds
8311and biological targets. Unique features include support for large-scale
8312cross-target analyses of both public and custom bioassays, generation of
8313@dfn{high throughput screening fingerprints} (HTSFPs), and an optional
8314preloaded database that provides access to a substantial portion of publicly
8315available bioactivity data.")
8316 (license license:artistic2.0)))
29fd736a
RW
8317
8318(define-public r-biobroom
8319 (package
8320 (name "r-biobroom")
95e30d8f 8321 (version "1.22.0")
29fd736a
RW
8322 (source
8323 (origin
8324 (method url-fetch)
8325 (uri (bioconductor-uri "biobroom" version))
8326 (sha256
8327 (base32
95e30d8f 8328 "07wzamwl07p20s932aym2jkf6c1zz7d9h7kyby5ka4pw4abynlrv"))))
29fd736a
RW
8329 (properties `((upstream-name . "biobroom")))
8330 (build-system r-build-system)
8331 (propagated-inputs
8332 `(("r-biobase" ,r-biobase)
8333 ("r-broom" ,r-broom)
8334 ("r-dplyr" ,r-dplyr)
8335 ("r-tidyr" ,r-tidyr)))
e09ca033
RW
8336 (native-inputs
8337 `(("r-knitr" ,r-knitr)))
29fd736a
RW
8338 (home-page "https://github.com/StoreyLab/biobroom")
8339 (synopsis "Turn Bioconductor objects into tidy data frames")
8340 (description
8341 "This package contains methods for converting standard objects
8342constructed by bioinformatics packages, especially those in Bioconductor, and
8343converting them to @code{tidy} data. It thus serves as a complement to the
8344@code{broom} package, and follows the same tidy, augment, glance division of
8345tidying methods. Tidying data makes it easy to recombine, reshape and
8346visualize bioinformatics analyses.")
8347 ;; Any version of the LGPL.
8348 (license license:lgpl3+)))
c373223e
RW
8349
8350(define-public r-graphite
8351 (package
8352 (name "r-graphite")
26224e09 8353 (version "1.36.0")
c373223e
RW
8354 (source
8355 (origin
8356 (method url-fetch)
8357 (uri (bioconductor-uri "graphite" version))
8358 (sha256
8359 (base32
26224e09 8360 "1ihza8m397qfvr79fhghs2knmw862hwz2akysy39r8hndv6lc7wk"))))
c373223e
RW
8361 (properties `((upstream-name . "graphite")))
8362 (build-system r-build-system)
8363 (propagated-inputs
8364 `(("r-annotationdbi" ,r-annotationdbi)
8365 ("r-checkmate" ,r-checkmate)
8366 ("r-graph" ,r-graph)
8367 ("r-httr" ,r-httr)
8368 ("r-rappdirs" ,r-rappdirs)))
8369 (home-page "https://bioconductor.org/packages/graphite/")
8370 (synopsis "Networks from pathway databases")
8371 (description
8372 "Graphite provides networks derived from eight public pathway databases,
8373and automates the conversion of node identifiers (e.g. from Entrez IDs to gene
8374symbols).")
8375 (license license:agpl3+)))
f388834e
RW
8376
8377(define-public r-reactomepa
8378 (package
8379 (name "r-reactomepa")
a4f4a552 8380 (version "1.34.0")
f388834e
RW
8381 (source
8382 (origin
8383 (method url-fetch)
8384 (uri (bioconductor-uri "ReactomePA" version))
8385 (sha256
8386 (base32
a4f4a552 8387 "04b2ng9jp2bsfbg3wnbg6m6a5c3szcmbypk1lx34i63228g8z98m"))))
f388834e
RW
8388 (properties `((upstream-name . "ReactomePA")))
8389 (build-system r-build-system)
8390 (propagated-inputs
8391 `(("r-annotationdbi" ,r-annotationdbi)
8392 ("r-dose" ,r-dose)
8393 ("r-enrichplot" ,r-enrichplot)
8394 ("r-ggplot2" ,r-ggplot2)
8395 ("r-ggraph" ,r-ggraph)
8396 ("r-graphite" ,r-graphite)
8397 ("r-igraph" ,r-igraph)
8398 ("r-reactome-db" ,r-reactome-db)))
affb4ab3
RW
8399 (native-inputs
8400 `(("r-knitr" ,r-knitr)))
f388834e
RW
8401 (home-page "https://guangchuangyu.github.io/software/ReactomePA")
8402 (synopsis "Reactome pathway analysis")
8403 (description
8404 "This package provides functions for pathway analysis based on the
8405REACTOME pathway database. It implements enrichment analysis, gene set
8406enrichment analysis and several functions for visualization.")
8407 (license license:gpl2)))
21afe920
RW
8408
8409(define-public r-ebarrays
8410 (package
8411 (name "r-ebarrays")
b0f3bfe4 8412 (version "2.54.0")
21afe920
RW
8413 (source
8414 (origin
8415 (method url-fetch)
8416 (uri (bioconductor-uri "EBarrays" version))
8417 (sha256
8418 (base32
b0f3bfe4 8419 "1r2dl19my1hqkq01fqk48pk3agb98vgrplj56kb4srhz2xm0w9pd"))))
21afe920
RW
8420 (properties `((upstream-name . "EBarrays")))
8421 (build-system r-build-system)
8422 (propagated-inputs
8423 `(("r-biobase" ,r-biobase)
8424 ("r-cluster" ,r-cluster)
8425 ("r-lattice" ,r-lattice)))
8426 (home-page "https://bioconductor.org/packages/EBarrays/")
8427 (synopsis "Gene clustering and differential expression identification")
8428 (description
8429 "EBarrays provides tools for the analysis of replicated/unreplicated
8430microarray data.")
8431 (license license:gpl2+)))
f180be29
RW
8432
8433(define-public r-bioccasestudies
8434 (package
8435 (name "r-bioccasestudies")
7dced9ad 8436 (version "1.52.0")
f180be29
RW
8437 (source
8438 (origin
8439 (method url-fetch)
8440 (uri (bioconductor-uri "BiocCaseStudies" version))
8441 (sha256
8442 (base32
7dced9ad 8443 "03n49b6fvyyzmvdy4yif3cl7yv21c09c8xdx4cvvax5zz4v4sab1"))))
f180be29
RW
8444 (properties
8445 `((upstream-name . "BiocCaseStudies")))
8446 (build-system r-build-system)
8447 (propagated-inputs `(("r-biobase" ,r-biobase)))
8448 (home-page "https://bioconductor.org/packages/BiocCaseStudies")
8449 (synopsis "Support for the case studies monograph")
8450 (description
8451 "This package provides software and data to support the case studies
8452monograph.")
8453 (license license:artistic2.0)))
49f0860b
RW
8454
8455(define-public r-biocgraph
8456 (package
8457 (name "r-biocgraph")
abc18fc5 8458 (version "1.52.0")
49f0860b
RW
8459 (source
8460 (origin
8461 (method url-fetch)
8462 (uri (bioconductor-uri "biocGraph" version))
8463 (sha256
8464 (base32
abc18fc5 8465 "02y7vizc6jv8y9r8chsda4yysim0ch45i3rasqvv7m85zqsskf75"))))
49f0860b
RW
8466 (properties `((upstream-name . "biocGraph")))
8467 (build-system r-build-system)
8468 (propagated-inputs
8469 `(("r-biocgenerics" ,r-biocgenerics)
8470 ("r-geneplotter" ,r-geneplotter)
8471 ("r-graph" ,r-graph)
8472 ("r-rgraphviz" ,r-rgraphviz)))
8473 (home-page "https://bioconductor.org/packages/biocGraph/")
8474 (synopsis "Graph examples and use cases in Bioinformatics")
8475 (description
8476 "This package provides examples and code that make use of the
8477different graph related packages produced by Bioconductor.")
8478 (license license:artistic2.0)))
244270e6 8479
5ac55aea 8480(define-public r-biocstyle
8481 (package
8482 (name "r-biocstyle")
8483 (version "2.18.1")
8484 (source (origin
8485 (method url-fetch)
8486 (uri (bioconductor-uri "BiocStyle" version))
8487 (sha256
8488 (base32
8489 "0rsxyna4dd99x42vc82mlkxx774vb9375llpakg53max1hhwkrqp"))))
8490 (properties
8491 `((upstream-name . "BiocStyle")))
8492 (build-system r-build-system)
8493 (propagated-inputs
8494 `(("r-biocmanager" ,r-biocmanager)
8495 ("r-bookdown" ,r-bookdown)
8496 ("r-knitr" ,r-knitr)
8497 ("r-rmarkdown" ,r-rmarkdown)
8498 ("r-yaml" ,r-yaml)))
8499 (native-inputs
8500 `(("r-knitr" ,r-knitr)))
8501 (home-page "https://bioconductor.org/packages/BiocStyle")
8502 (synopsis "Bioconductor formatting styles")
8503 (description "This package provides standard formatting styles for
8504Bioconductor PDF and HTML documents. Package vignettes illustrate use and
8505functionality.")
8506 (license license:artistic2.0)))
8507
134404b4 8508(define-public r-biocviews
8509 (package
8510 (name "r-biocviews")
8511 (version "1.58.1")
8512 (source (origin
8513 (method url-fetch)
8514 (uri (bioconductor-uri "biocViews" version))
8515 (sha256
8516 (base32
8517 "1by2639z7n62z84dr8rj9jz12gsd1k8q42zsnxacxbwfwp6h0cl4"))))
8518 (properties
8519 `((upstream-name . "biocViews")))
8520 (build-system r-build-system)
8521 (propagated-inputs
8522 `(("r-biobase" ,r-biobase)
8523 ("r-biocmanager" ,r-biocmanager)
8524 ("r-graph" ,r-graph)
8525 ("r-rbgl" ,r-rbgl)
8526 ("r-rcurl" ,r-rcurl)
8527 ("r-xml" ,r-xml)
8528 ("r-runit" ,r-runit)))
8529 (home-page "https://bioconductor.org/packages/biocViews")
8530 (synopsis "Bioconductor package categorization helper")
8531 (description "The purpose of biocViews is to create HTML pages that
8532categorize packages in a Bioconductor package repository according to keywords,
8533also known as views, in a controlled vocabulary.")
8534 (license license:artistic2.0)))
8535
244270e6
RW
8536(define-public r-experimenthub
8537 (package
8538 (name "r-experimenthub")
49a72858 8539 (version "1.16.0")
244270e6
RW
8540 (source
8541 (origin
8542 (method url-fetch)
8543 (uri (bioconductor-uri "ExperimentHub" version))
8544 (sha256
8545 (base32
49a72858 8546 "1zi7vsrhf1hj27rlzrxl4jd81fqh1yhn0svp2d9w71fizsi71akg"))))
244270e6
RW
8547 (properties `((upstream-name . "ExperimentHub")))
8548 (build-system r-build-system)
8549 (propagated-inputs
8550 `(("r-annotationhub" ,r-annotationhub)
8551 ("r-biocfilecache" ,r-biocfilecache)
8552 ("r-biocgenerics" ,r-biocgenerics)
8553 ("r-biocmanager" ,r-biocmanager)
8554 ("r-curl" ,r-curl)
8555 ("r-rappdirs" ,r-rappdirs)
8556 ("r-s4vectors" ,r-s4vectors)))
b56a3462
RW
8557 (native-inputs
8558 `(("r-knitr" ,r-knitr)))
244270e6
RW
8559 (home-page "https://bioconductor.org/packages/ExperimentHub/")
8560 (synopsis "Client to access ExperimentHub resources")
8561 (description
8562 "This package provides a client for the Bioconductor ExperimentHub web
8563resource. ExperimentHub provides a central location where curated data from
8564experiments, publications or training courses can be accessed. Each resource
8565has associated metadata, tags and date of modification. The client creates
8566and manages a local cache of files retrieved enabling quick and reproducible
8567access.")
8568 (license license:artistic2.0)))
06784793
RW
8569
8570(define-public r-multiassayexperiment
8571 (package
8572 (name "r-multiassayexperiment")
13d0b780 8573 (version "1.16.0")
06784793
RW
8574 (source
8575 (origin
8576 (method url-fetch)
8577 (uri (bioconductor-uri "MultiAssayExperiment" version))
8578 (sha256
8579 (base32
13d0b780 8580 "1nx3gikl8vr54862h6wl0q30arnpynla085219lhh61ziswdffrs"))))
06784793
RW
8581 (properties
8582 `((upstream-name . "MultiAssayExperiment")))
8583 (build-system r-build-system)
8584 (propagated-inputs
8585 `(("r-biobase" ,r-biobase)
8586 ("r-biocgenerics" ,r-biocgenerics)
8587 ("r-genomicranges" ,r-genomicranges)
8588 ("r-iranges" ,r-iranges)
8589 ("r-s4vectors" ,r-s4vectors)
8590 ("r-summarizedexperiment" ,r-summarizedexperiment)
8591 ("r-tidyr" ,r-tidyr)))
5d45d711
RW
8592 (native-inputs
8593 `(("r-knitr" ,r-knitr)))
798ca8d0 8594 (home-page "https://waldronlab.io/MultiAssayExperiment/")
06784793
RW
8595 (synopsis "Integration of multi-omics experiments in Bioconductor")
8596 (description
8597 "MultiAssayExperiment harmonizes data management of multiple assays
8598performed on an overlapping set of specimens. It provides a familiar
8599Bioconductor user experience by extending concepts from
8600@code{SummarizedExperiment}, supporting an open-ended mix of standard data
8601classes for individual assays, and allowing subsetting by genomic ranges or
8602rownames.")
8603 (license license:artistic2.0)))
c2b36a04
RW
8604
8605(define-public r-bioconcotk
8606 (package
8607 (name "r-bioconcotk")
e29b15ee 8608 (version "1.10.0")
c2b36a04
RW
8609 (source
8610 (origin
8611 (method url-fetch)
8612 (uri (bioconductor-uri "BiocOncoTK" version))
8613 (sha256
8614 (base32
e29b15ee 8615 "1jwp0gww2xyx8qfv5h4y0v3g66mmlyrd1v64xn91si4fsymk4108"))))
c2b36a04
RW
8616 (properties `((upstream-name . "BiocOncoTK")))
8617 (build-system r-build-system)
8618 (propagated-inputs
8619 `(("r-bigrquery" ,r-bigrquery)
8620 ("r-car" ,r-car)
8621 ("r-complexheatmap" ,r-complexheatmap)
8622 ("r-curatedtcgadata" ,r-curatedtcgadata)
8623 ("r-dbi" ,r-dbi)
8624 ("r-dplyr" ,r-dplyr)
8625 ("r-dt" ,r-dt)
8626 ("r-genomicfeatures" ,r-genomicfeatures)
8627 ("r-genomicranges" ,r-genomicranges)
8628 ("r-ggplot2" ,r-ggplot2)
8629 ("r-ggpubr" ,r-ggpubr)
8630 ("r-graph" ,r-graph)
8631 ("r-httr" ,r-httr)
8632 ("r-iranges" ,r-iranges)
8633 ("r-magrittr" ,r-magrittr)
8634 ("r-plyr" ,r-plyr)
8635 ("r-rgraphviz" ,r-rgraphviz)
8636 ("r-rjson" ,r-rjson)
8637 ("r-s4vectors" ,r-s4vectors)
8638 ("r-scales" ,r-scales)
8639 ("r-shiny" ,r-shiny)
8640 ("r-summarizedexperiment" ,r-summarizedexperiment)))
1c518215
RW
8641 (native-inputs
8642 `(("r-knitr" ,r-knitr)))
c2b36a04
RW
8643 (home-page "https://bioconductor.org/packages/BiocOncoTK")
8644 (synopsis "Bioconductor components for general cancer genomics")
8645 (description
8646 "The purpose of this package is to provide a central interface to various
8647tools for genome-scale analysis of cancer studies.")
8648 (license license:artistic2.0)))
4d12c1e3
RW
8649
8650(define-public r-biocor
8651 (package
8652 (name "r-biocor")
072f722f 8653 (version "1.14.0")
4d12c1e3
RW
8654 (source
8655 (origin
8656 (method url-fetch)
8657 (uri (bioconductor-uri "BioCor" version))
8658 (sha256
8659 (base32
072f722f 8660 "12slrdn98h43j3y7klk3chrwa2ycwm4krhz3l3kfzbxr834mhy19"))))
4d12c1e3
RW
8661 (properties `((upstream-name . "BioCor")))
8662 (build-system r-build-system)
8663 (propagated-inputs
8664 `(("r-biocparallel" ,r-biocparallel)
8665 ("r-gseabase" ,r-gseabase)
8666 ("r-matrix" ,r-matrix)))
132abe5f
RW
8667 (native-inputs
8668 `(("r-knitr" ,r-knitr)))
4d12c1e3
RW
8669 (home-page "https://llrs.github.io/BioCor/")
8670 (synopsis "Functional similarities")
8671 (description
8672 "This package provides tools to calculate functional similarities based
8673on the pathways described on KEGG and REACTOME or in gene sets. These
8674similarities can be calculated for pathways or gene sets, genes, or clusters
8675and combined with other similarities. They can be used to improve networks,
8676gene selection, testing relationships, and so on.")
8677 (license license:expat)))
4a18112d
RW
8678
8679(define-public r-biocpkgtools
8680 (package
8681 (name "r-biocpkgtools")
6a5d8cad 8682 (version "1.8.0")
4a18112d
RW
8683 (source
8684 (origin
8685 (method url-fetch)
8686 (uri (bioconductor-uri "BiocPkgTools" version))
8687 (sha256
8688 (base32
6a5d8cad 8689 "12j4vag40zdgrxfzaqvf3ly7776qyziryz04c3jqzgsqfvzvzz8m"))))
4a18112d
RW
8690 (properties `((upstream-name . "BiocPkgTools")))
8691 (build-system r-build-system)
8692 (propagated-inputs
2d6a7bca
RW
8693 `(("r-biocfilecache" ,r-biocfilecache)
8694 ("r-biocmanager" ,r-biocmanager)
4a18112d
RW
8695 ("r-biocviews" ,r-biocviews)
8696 ("r-dplyr" ,r-dplyr)
8697 ("r-dt" ,r-dt)
8698 ("r-gh" ,r-gh)
8699 ("r-graph" ,r-graph)
8700 ("r-htmltools" ,r-htmltools)
8701 ("r-htmlwidgets" ,r-htmlwidgets)
8702 ("r-httr" ,r-httr)
8703 ("r-igraph" ,r-igraph)
8704 ("r-jsonlite" ,r-jsonlite)
8705 ("r-magrittr" ,r-magrittr)
2d6a7bca 8706 ("r-rappdirs" ,r-rappdirs)
4a18112d
RW
8707 ("r-rbgl" ,r-rbgl)
8708 ("r-readr" ,r-readr)
8709 ("r-rex" ,r-rex)
2d6a7bca 8710 ("r-rlang" ,r-rlang)
4a18112d
RW
8711 ("r-rvest" ,r-rvest)
8712 ("r-stringr" ,r-stringr)
8713 ("r-tibble" ,r-tibble)
8714 ("r-tidyr" ,r-tidyr)
2d6a7bca 8715 ("r-tidyselect" ,r-tidyselect)
4a18112d 8716 ("r-xml2" ,r-xml2)))
2d6a7bca
RW
8717 (native-inputs
8718 `(("r-knitr" ,r-knitr)))
4a18112d
RW
8719 (home-page "https://github.com/seandavi/BiocPkgTools")
8720 (synopsis "Collection of tools for learning about Bioconductor packages")
8721 (description
8722 "Bioconductor has a rich ecosystem of metadata around packages, usage,
8723and build status. This package is a simple collection of functions to access
8724that metadata from R. The goal is to expose metadata for data mining and
8725value-added functionality such as package searching, text mining, and
8726analytics on packages.")
8727 (license license:expat)))
43b66e3f
RW
8728
8729(define-public r-biocset
8730 (package
8731 (name "r-biocset")
feb0cbf4 8732 (version "1.4.0")
43b66e3f
RW
8733 (source
8734 (origin
8735 (method url-fetch)
8736 (uri (bioconductor-uri "BiocSet" version))
8737 (sha256
8738 (base32
feb0cbf4 8739 "16pjg09i0j5qk9s9qzm6fq5q0bgwb4wgqvp6scs06ajgrr07qjqg"))))
43b66e3f
RW
8740 (properties `((upstream-name . "BiocSet")))
8741 (build-system r-build-system)
8742 (propagated-inputs
8743 `(("r-annotationdbi" ,r-annotationdbi)
feb0cbf4 8744 ("r-biocio" ,r-biocio)
43b66e3f
RW
8745 ("r-dplyr" ,r-dplyr)
8746 ("r-keggrest" ,r-keggrest)
feb0cbf4 8747 ("r-ontologyindex" ,r-ontologyindex)
43b66e3f
RW
8748 ("r-plyr" ,r-plyr)
8749 ("r-rlang" ,r-rlang)
feb0cbf4 8750 ("r-s4vectors" ,r-s4vectors)
8751 ("r-tibble" ,r-tibble)
8752 ("r-tidyr" ,r-tidyr)))
723fa00d
RW
8753 (native-inputs
8754 `(("r-knitr" ,r-knitr)))
43b66e3f
RW
8755 (home-page
8756 "https://bioconductor.org/packages/BiocSet")
8757 (synopsis
8758 "Representing Different Biological Sets")
8759 (description
8760 "BiocSet displays different biological sets in a triple tibble format.
8761These three tibbles are @code{element}, @code{set}, and @code{elementset}.
5b98473a 8762The user has the ability to activate one of these three tibbles to perform
43b66e3f
RW
8763common functions from the @code{dplyr} package. Mapping functionality and
8764accessing web references for elements/sets are also available in BiocSet.")
8765 (license license:artistic2.0)))
0156297f
RW
8766
8767(define-public r-biocworkflowtools
8768 (package
8769 (name "r-biocworkflowtools")
7891c83c 8770 (version "1.16.0")
0156297f
RW
8771 (source
8772 (origin
8773 (method url-fetch)
8774 (uri (bioconductor-uri "BiocWorkflowTools" version))
8775 (sha256
8776 (base32
7891c83c 8777 "0lvckdy20bhgyhqbccp0rdfi2p6vvip694r27qwpyi5092nfmqh6"))))
0156297f
RW
8778 (properties
8779 `((upstream-name . "BiocWorkflowTools")))
8780 (build-system r-build-system)
8781 (propagated-inputs
8782 `(("r-biocstyle" ,r-biocstyle)
8783 ("r-bookdown" ,r-bookdown)
8784 ("r-git2r" ,r-git2r)
8785 ("r-httr" ,r-httr)
8786 ("r-knitr" ,r-knitr)
8787 ("r-rmarkdown" ,r-rmarkdown)
8788 ("r-rstudioapi" ,r-rstudioapi)
8789 ("r-stringr" ,r-stringr)
8790 ("r-usethis" ,r-usethis)))
4ecba230
RW
8791 (native-inputs
8792 `(("r-knitr" ,r-knitr)))
0156297f
RW
8793 (home-page "https://bioconductor.org/packages/BiocWorkflowTools/")
8794 (synopsis "Tools to aid the development of Bioconductor Workflow packages")
8795 (description
8796 "This package provides functions to ease the transition between
8797Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
8798 (license license:expat)))
77e2de36
RW
8799
8800(define-public r-biodist
8801 (package
8802 (name "r-biodist")
15be98c1 8803 (version "1.62.0")
77e2de36
RW
8804 (source
8805 (origin
8806 (method url-fetch)
8807 (uri (bioconductor-uri "bioDist" version))
8808 (sha256
8809 (base32
15be98c1 8810 "10p4iajpyqgqb35743jm1a33lwbsmax2g4vz9fbbhn2cpiq3chap"))))
77e2de36
RW
8811 (properties `((upstream-name . "bioDist")))
8812 (build-system r-build-system)
8813 (propagated-inputs
8814 `(("r-biobase" ,r-biobase)
8815 ("r-kernsmooth" ,r-kernsmooth)))
8816 (home-page "https://bioconductor.org/packages/bioDist/")
8817 (synopsis "Different distance measures")
8818 (description
8819 "This package provides a collection of software tools for calculating
8820distance measures.")
8821 (license license:artistic2.0)))
9bc516ba
RW
8822
8823(define-public r-pcatools
8824 (package
8825 (name "r-pcatools")
1174317e 8826 (version "2.2.0")
9bc516ba
RW
8827 (source
8828 (origin
8829 (method url-fetch)
8830 (uri (bioconductor-uri "PCAtools" version))
8831 (sha256
8832 (base32
1174317e 8833 "1fz9h99yyn49b5rcnkg2kjdfmczfwnc44fpwbia0izj6gx192phb"))))
9bc516ba
RW
8834 (properties `((upstream-name . "PCAtools")))
8835 (build-system r-build-system)
8836 (propagated-inputs
8837 `(("r-beachmat" ,r-beachmat)
8838 ("r-bh" ,r-bh)
8839 ("r-biocparallel" ,r-biocparallel)
8840 ("r-biocsingular" ,r-biocsingular)
8841 ("r-cowplot" ,r-cowplot)
8842 ("r-delayedarray" ,r-delayedarray)
8843 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
8844 ("r-dqrng" ,r-dqrng)
8845 ("r-ggplot2" ,r-ggplot2)
8846 ("r-ggrepel" ,r-ggrepel)
8847 ("r-lattice" ,r-lattice)
8848 ("r-matrix" ,r-matrix)
8849 ("r-rcpp" ,r-rcpp)
8850 ("r-reshape2" ,r-reshape2)))
8851 (native-inputs `(("r-knitr" ,r-knitr)))
8852 (home-page "https://github.com/kevinblighe/PCAtools")
8853 (synopsis "PCAtools: everything Principal Components Analysis")
8854 (description
8855 "@dfn{Principal Component Analysis} (PCA) extracts the fundamental
8856structure of the data without the need to build any model to represent it.
8857This \"summary\" of the data is arrived at through a process of reduction that
8858can transform the large number of variables into a lesser number that are
8859uncorrelated (i.e. the 'principal components'), while at the same time being
8860capable of easy interpretation on the original data. PCAtools provides
8861functions for data exploration via PCA, and allows the user to generate
8862publication-ready figures. PCA is performed via @code{BiocSingular}; users
8863can also identify an optimal number of principal components via different
8864metrics, such as the elbow method and Horn's parallel analysis, which has
8865relevance for data reduction in single-cell RNA-seq (scRNA-seq) and high
8866dimensional mass cytometry data.")
8867 (license license:gpl3)))
c89afe75
RW
8868
8869(define-public r-rgreat
8870 (package
8871 (name "r-rgreat")
7a242042 8872 (version "1.22.0")
c89afe75
RW
8873 (source
8874 (origin
8875 (method url-fetch)
8876 (uri (bioconductor-uri "rGREAT" version))
8877 (sha256
8878 (base32
7a242042 8879 "0p2b8cqxibxxmsh687y7yvlvr2a5ipiz53jb4wsr8ddypynb1asj"))))
c89afe75
RW
8880 (properties `((upstream-name . "rGREAT")))
8881 (build-system r-build-system)
8882 (propagated-inputs
8883 `(("r-genomicranges" ,r-genomicranges)
8884 ("r-getoptlong" ,r-getoptlong)
8885 ("r-iranges" ,r-iranges)
8886 ("r-rcurl" ,r-rcurl)
8887 ("r-rjson" ,r-rjson)))
8888 (native-inputs `(("r-knitr" ,r-knitr)))
8889 (home-page "https://github.com/jokergoo/rGREAT")
8890 (synopsis "Client for GREAT analysis")
8891 (description
8892 "This package makes GREAT (Genomic Regions Enrichment of Annotations
8893Tool) analysis automatic by constructing a HTTP POST request according to
8894user's input and automatically retrieving results from GREAT web server.")
8895 (license license:expat)))
0b8c7e4b
RW
8896
8897(define-public r-m3c
8898 (package
8899 (name "r-m3c")
126846a0 8900 (version "1.12.0")
0b8c7e4b
RW
8901 (source
8902 (origin
8903 (method url-fetch)
8904 (uri (bioconductor-uri "M3C" version))
8905 (sha256
8906 (base32
126846a0 8907 "05ygi4fd85hh17mlww5wcww8d5z5zvkn2r46s4n6g18mcbv8snv5"))))
0b8c7e4b
RW
8908 (properties `((upstream-name . "M3C")))
8909 (build-system r-build-system)
8910 (propagated-inputs
8911 `(("r-cluster" ,r-cluster)
8912 ("r-corpcor" ,r-corpcor)
8913 ("r-doparallel" ,r-doparallel)
8914 ("r-dosnow" ,r-dosnow)
8915 ("r-foreach" ,r-foreach)
8916 ("r-ggplot2" ,r-ggplot2)
8917 ("r-matrix" ,r-matrix)
8918 ("r-matrixcalc" ,r-matrixcalc)
8919 ("r-rtsne" ,r-rtsne)
8920 ("r-umap" ,r-umap)))
8921 (native-inputs `(("r-knitr" ,r-knitr)))
8922 (home-page "https://bioconductor.org/packages/M3C")
8923 (synopsis "Monte Carlo reference-based consensus clustering")
8924 (description
8925 "M3C is a consensus clustering algorithm that uses a Monte Carlo
8926simulation to eliminate overestimation of @code{K} and can reject the null
8927hypothesis @code{K=1}.")
8928 (license license:agpl3+)))
488001eb
PL
8929
8930(define-public r-icens
8931 (package
8932 (name "r-icens")
3cacc3bd 8933 (version "1.62.0")
488001eb
PL
8934 (source
8935 (origin
8936 (method url-fetch)
8937 (uri (bioconductor-uri "Icens" version))
8938 (sha256
8939 (base32
3cacc3bd 8940 "1w94mvh8pai77h4fcaiyacmzs58n4kbiq6bm4z0hk24j1ywph3dr"))))
488001eb
PL
8941 (properties `((upstream-name . "Icens")))
8942 (build-system r-build-system)
8943 (propagated-inputs
8944 `(("r-survival" ,r-survival)))
8945 (home-page "https://bioconductor.org/packages/Icens")
8946 (synopsis "NPMLE for censored and truncated data")
8947 (description
8948 "This package provides many functions for computing the
8949@dfn{nonparametric maximum likelihood estimator} (NPMLE) for censored and
8950truncated data.")
8951 (license license:artistic2.0)))
655c4bb2
PL
8952
8953;; This is a CRAN package but it depends on r-icens, which is published on
8954;; Bioconductor.
8955(define-public r-interval
8956 (package
8957 (name "r-interval")
65e361f9 8958 (version "1.1-0.7")
655c4bb2
PL
8959 (source
8960 (origin
8961 (method url-fetch)
8962 (uri (cran-uri "interval" version))
8963 (sha256
8964 (base32
65e361f9 8965 "1b31lh0sv7lzy76230djipahxa10lblbr37kdiigr6hp3dd1xmz9"))))
655c4bb2
PL
8966 (properties `((upstream-name . "interval")))
8967 (build-system r-build-system)
8968 (propagated-inputs
8969 `(("r-icens" ,r-icens)
8970 ("r-mlecens" ,r-mlecens)
8971 ("r-perm" ,r-perm)
8972 ("r-survival" ,r-survival)))
8973 (home-page "https://cran.r-project.org/web/packages/interval/")
8974 (synopsis "Weighted Logrank tests and NPMLE for interval censored data")
8975 (description
8976 "This package provides functions to fit nonparametric survival curves,
8977plot them, and perform logrank or Wilcoxon type tests.")
8978 (license license:gpl2+)))
7e88ee9f
PL
8979
8980;; This is a CRAN package, but it depends on r-interval, which depends on a
8981;; Bioconductor package.
8982(define-public r-fhtest
8983 (package
8984 (name "r-fhtest")
d7cfdc12 8985 (version "1.5")
7e88ee9f
PL
8986 (source
8987 (origin
8988 (method url-fetch)
8989 (uri (cran-uri "FHtest" version))
8990 (sha256
8991 (base32
d7cfdc12 8992 "00mql2r4f5hxhdqf27q3x9s5rz2zzakx2myym97b1w1s7c5znl4q"))))
7e88ee9f
PL
8993 (properties `((upstream-name . "FHtest")))
8994 (build-system r-build-system)
8995 (propagated-inputs
8996 `(("r-interval" ,r-interval)
8997 ("r-kmsurv" ,r-kmsurv)
8998 ("r-mass" ,r-mass)
8999 ("r-perm" ,r-perm)
9000 ("r-survival" ,r-survival)))
9001 (home-page "https://cran.r-project.org/web/packages/FHtest/")
9002 (synopsis "Tests for survival data based on the Fleming-Harrington class")
9003 (description
9004 "This package provides functions to compare two or more survival curves
9005with:
9006
9007@itemize
9008@item The Fleming-Harrington test for right-censored data based on
9009 permutations and on counting processes.
9010@item An extension of the Fleming-Harrington test for interval-censored data
9011 based on a permutation distribution and on a score vector distribution.
9012@end itemize
9013")
9014 (license license:gpl2+)))
f4d920b9 9015
9016(define-public r-fourcseq
9017 (package
9018 (name "r-fourcseq")
e5b2c80d 9019 (version "1.24.0")
f4d920b9 9020 (source
9021 (origin
9022 (method url-fetch)
9023 (uri (bioconductor-uri "FourCSeq" version))
9024 (sha256
e5b2c80d 9025 (base32 "1rwdphcj26xis47n8j1fiyc3k3qbsgn0bhf5bhgy5vm11yqyvicb"))))
f4d920b9 9026 (properties `((upstream-name . "FourCSeq")))
9027 (build-system r-build-system)
9028 (propagated-inputs
9029 `(("r-biobase" ,r-biobase)
9030 ("r-biostrings" ,r-biostrings)
9031 ("r-deseq2" ,r-deseq2)
9032 ("r-fda" ,r-fda)
9033 ("r-genomicalignments" ,r-genomicalignments)
9034 ("r-genomicranges" ,r-genomicranges)
9035 ("r-ggbio" ,r-ggbio)
9036 ("r-ggplot2" ,r-ggplot2)
9037 ("r-gtools" ,r-gtools)
9038 ("r-lsd" ,r-lsd)
9039 ("r-matrix" ,r-matrix)
9040 ("r-reshape2" ,r-reshape2)
9041 ("r-rsamtools" ,r-rsamtools)
9042 ("r-rtracklayer" ,r-rtracklayer)
9043 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9044 (native-inputs
9045 `(("r-knitr" ,r-knitr)))
9046 (home-page
9047 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
9048 (synopsis "Analysis of multiplexed 4C sequencing data")
9049 (description
9050 "This package is an R package dedicated to the analysis of (multiplexed)
90514C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
9052interactions between DNA elements and identify differential interactions
9053between conditions. The statistical analysis in R starts with individual bam
9054files for each sample as inputs. To obtain these files, the package contains
9055a Python script to demultiplex libraries and trim off primer sequences. With
9056a standard alignment software the required bam files can be then be
9057generated.")
9058 (license license:gpl3+)))
6e0ab26f 9059
9060(define-public r-preprocesscore
9061 (package
9062 (name "r-preprocesscore")
18ebacaa 9063 (version "1.52.1")
6e0ab26f 9064 (source
9065 (origin
9066 (method url-fetch)
9067 (uri (bioconductor-uri "preprocessCore" version))
9068 (sha256
9069 (base32
18ebacaa 9070 "1hz7rlpscaczvvcalky2f5bmr70aii455549m7f6wk10aklp3nll"))))
6e0ab26f 9071 (properties
9072 `((upstream-name . "preprocessCore")))
9073 (build-system r-build-system)
9074 (home-page "https://github.com/bmbolstad/preprocessCore")
9075 (synopsis "Collection of pre-processing functions")
9076 (description
9077 "This package provides a library of core pre-processing and normalization
9078routines.")
9079 (license license:lgpl2.0+)))
b3a99837 9080
3159fcf1
RW
9081;; This is a CRAN package, but it depends on preprocessorcore, which is a
9082;; Bioconductor package.
9083(define-public r-wgcna
9084 (package
9085 (name "r-wgcna")
ef8e4f41 9086 (version "1.70-3")
3159fcf1
RW
9087 (source
9088 (origin
9089 (method url-fetch)
9090 (uri (cran-uri "WGCNA" version))
9091 (sha256
9092 (base32
ef8e4f41 9093 "1m6b4a2xpb02c1ajndhk8qlqnhwxa7lkkwj6nzv3l618jy1kp15r"))))
3159fcf1
RW
9094 (properties `((upstream-name . "WGCNA")))
9095 (build-system r-build-system)
9096 (propagated-inputs
9097 `(("r-annotationdbi" ,r-annotationdbi)
9098 ("r-doparallel" ,r-doparallel)
9099 ("r-dynamictreecut" ,r-dynamictreecut)
9100 ("r-fastcluster" ,r-fastcluster)
9101 ("r-foreach" ,r-foreach)
9102 ("r-go-db" ,r-go-db)
9103 ("r-hmisc" ,r-hmisc)
9104 ("r-impute" ,r-impute)
9105 ("r-rcpp" ,r-rcpp)
9106 ("r-survival" ,r-survival)
9107 ("r-matrixstats" ,r-matrixstats)
9108 ("r-preprocesscore" ,r-preprocesscore)))
9109 (home-page
9110 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
9111 (synopsis "Weighted correlation network analysis")
9112 (description
9113 "This package provides functions necessary to perform Weighted
9114Correlation Network Analysis on high-dimensional data. It includes functions
9115for rudimentary data cleaning, construction and summarization of correlation
9116networks, module identification and functions for relating both variables and
9117modules to sample traits. It also includes a number of utility functions for
9118data manipulation and visualization.")
9119 (license license:gpl2+)))
9120
b3a99837 9121(define-public r-rgraphviz
9122 (package
9123 (name "r-rgraphviz")
b6348b0e 9124 (version "2.34.0")
b3a99837 9125 (source
9126 (origin
9127 (method url-fetch)
9128 (uri (bioconductor-uri "Rgraphviz" version))
9129 (sha256
9130 (base32
b6348b0e 9131 "1k0nrskak2v5xv7za226r3wypja3zxxmmc0cxz2imjhlgnkbha77"))))
b3a99837 9132 (properties `((upstream-name . "Rgraphviz")))
9133 (build-system r-build-system)
9134 (arguments
9135 `(#:phases
9136 (modify-phases %standard-phases
9137 (add-after 'unpack 'make-reproducible
9138 (lambda _
9139 ;; The replacement value is taken from src/graphviz/builddate.h
9140 (substitute* "src/graphviz/configure"
9141 (("VERSION_DATE=.*")
9142 "VERSION_DATE=20200427.2341\n"))
9143 #t)))))
9144 ;; FIXME: Rgraphviz bundles the sources of an older variant of
9145 ;; graphviz. It does not build with the latest version of graphviz, so
9146 ;; we do not add graphviz to the inputs.
9147 (inputs `(("zlib" ,zlib)))
9148 (propagated-inputs
9149 `(("r-graph" ,r-graph)))
9150 (native-inputs
9151 `(("pkg-config" ,pkg-config)))
9152 (home-page "https://bioconductor.org/packages/Rgraphviz")
9153 (synopsis "Plotting capabilities for R graph objects")
9154 (description
9155 "This package interfaces R with the graphviz library for plotting R graph
9156objects from the @code{graph} package.")
9157 (license license:epl1.0)))
8c7c6db4 9158
3292f6ed 9159(define-public r-fithic
9160 (package
9161 (name "r-fithic")
7105658e 9162 (version "1.16.0")
3292f6ed 9163 (source (origin
9164 (method url-fetch)
9165 (uri (bioconductor-uri "FitHiC" version))
9166 (sha256
9167 (base32
7105658e 9168 "1sdfkqc6s7m9whkzr0mllzzfjzhj2g54ncjwxj8q0azjgszrfwd2"))))
3292f6ed 9169 (properties `((upstream-name . "FitHiC")))
9170 (build-system r-build-system)
9171 (propagated-inputs
9172 `(("r-data-table" ,r-data-table)
9173 ("r-fdrtool" ,r-fdrtool)
9174 ("r-rcpp" ,r-rcpp)))
9175 (native-inputs
9176 `(("r-knitr" ,r-knitr)))
9177 (home-page "https://bioconductor.org/packages/FitHiC")
9178 (synopsis "Confidence estimation for intra-chromosomal contact maps")
9179 (description
9180 "Fit-Hi-C is a tool for assigning statistical confidence estimates to
9181intra-chromosomal contact maps produced by genome-wide genome architecture
9182assays such as Hi-C.")
9183 (license license:gpl2+)))
9184
7df42d37 9185(define-public r-hitc
9186 (package
9187 (name "r-hitc")
ed44a72a 9188 (version "1.34.0")
7df42d37 9189 (source (origin
9190 (method url-fetch)
9191 (uri (bioconductor-uri "HiTC" version))
9192 (sha256
9193 (base32
ed44a72a 9194 "1xbh36qgmzl8b6xq0hnl41li2x18yma50fq0v4dglh2ddn7as9iy"))))
7df42d37 9195 (properties `((upstream-name . "HiTC")))
9196 (build-system r-build-system)
9197 (propagated-inputs
9198 `(("r-biostrings" ,r-biostrings)
9199 ("r-genomeinfodb" ,r-genomeinfodb)
9200 ("r-genomicranges" ,r-genomicranges)
9201 ("r-iranges" ,r-iranges)
9202 ("r-matrix" ,r-matrix)
9203 ("r-rcolorbrewer" ,r-rcolorbrewer)
9204 ("r-rtracklayer" ,r-rtracklayer)))
9205 (home-page "https://bioconductor.org/packages/HiTC")
9206 (synopsis "High throughput chromosome conformation capture analysis")
9207 (description
9208 "The HiTC package was developed to explore high-throughput \"C\" data
9209such as 5C or Hi-C. Dedicated R classes as well as standard methods for
9210quality controls, normalization, visualization, and further analysis are also
9211provided.")
9212 (license license:artistic2.0)))
9213
63b75c01 9214(define-public r-hdf5array
9215 (package
9216 (name "r-hdf5array")
f7947f89 9217 (version "1.18.1")
63b75c01 9218 (source
9219 (origin
9220 (method url-fetch)
9221 (uri (bioconductor-uri "HDF5Array" version))
9222 (sha256
9223 (base32
f7947f89 9224 "14v2adhwi0yac834g23kvfid740raclhmribzd28k10gsjk9cj7g"))))
63b75c01 9225 (properties `((upstream-name . "HDF5Array")))
9226 (build-system r-build-system)
26cf5eb5 9227 (arguments
9228 `(#:phases
9229 (modify-phases %standard-phases
9230 (add-after 'unpack 'fix-linking
9231 (lambda _
9232 (substitute* "src/Makevars"
9233 ;; This is to avoid having a plain directory on the list of
9234 ;; libraries to link.
9235 (("\\(RHDF5LIB_LIBS\\)" match)
9236 (string-append match "/libhdf5.a")))
9237 #t)))))
63b75c01 9238 (inputs
9239 `(("zlib" ,zlib)))
9240 (propagated-inputs
9241 `(("r-biocgenerics" ,r-biocgenerics)
9242 ("r-delayedarray" ,r-delayedarray)
9243 ("r-iranges" ,r-iranges)
9244 ("r-matrix" ,r-matrix)
9245 ("r-rhdf5" ,r-rhdf5)
9246 ("r-rhdf5lib" ,r-rhdf5lib)
9247 ("r-s4vectors" ,r-s4vectors)))
9248 (home-page "https://bioconductor.org/packages/HDF5Array")
9249 (synopsis "HDF5 back end for DelayedArray objects")
9250 (description "This package provides an array-like container for convenient
9251access and manipulation of HDF5 datasets. It supports delayed operations and
9252block processing.")
9253 (license license:artistic2.0)))
9254
c61268c1 9255(define-public r-rhdf5lib
9256 (package
9257 (name "r-rhdf5lib")
a1357422 9258 (version "1.12.1")
c61268c1 9259 (source
9260 (origin
9261 (method url-fetch)
9262 (uri (bioconductor-uri "Rhdf5lib" version))
9263 (sha256
9264 (base32
a1357422 9265 "14fnq4gijxp2l7985pksfk52i6klvy81r3892lnna73c6hh1dj28"))
c61268c1 9266 (modules '((guix build utils)))
9267 (snippet
9268 '(begin
9269 ;; Delete bundled binaries
9270 (delete-file-recursively "src/wininclude/")
9271 (delete-file-recursively "src/winlib-4.9.3/")
9272 (delete-file-recursively "src/winlib-8.3.0/")
9273 (delete-file "src/hdf5small_cxx_hl_1.10.6.tar.gz")
9274 #t))))
9275 (properties `((upstream-name . "Rhdf5lib")))
9276 (build-system r-build-system)
9277 (arguments
9278 `(#:phases
9279 (modify-phases %standard-phases
9280 (add-after 'unpack 'do-not-use-bundled-hdf5
9281 (lambda* (#:key inputs #:allow-other-keys)
9282 (for-each delete-file '("configure" "configure.ac"))
9283 ;; Do not make other packages link with the proprietary libsz.
9284 (substitute* "R/zzz.R"
9285 ((" \"%s/libsz.a\"") ""))
9286 (with-directory-excursion "src"
9287 (invoke "tar" "xvf" (assoc-ref inputs "hdf5-source"))
9288 (rename-file (string-append "hdf5-" ,(package-version hdf5-1.10))
9289 "hdf5")
9290 ;; Remove timestamp and host system information to make
9291 ;; the build reproducible.
9292 (substitute* "hdf5/src/libhdf5.settings.in"
9293 (("Configured on: @CONFIG_DATE@")
9294 "Configured on: Guix")
9295 (("Uname information:.*")
9296 "Uname information: Linux\n")
9297 ;; Remove unnecessary store reference.
9298 (("C Compiler:.*")
9299 "C Compiler: GCC\n"))
c5ae5c1c
RJ
9300 (rename-file "hdf5/src/libhdf5.settings.in"
9301 "hdf5/src/libhdf5.settings")
c61268c1 9302 (rename-file "Makevars.in" "Makevars")
9303 (substitute* "Makevars"
9304 (("@ZLIB_LIB@") "-lz")
9305 (("@ZLIB_INCLUDE@") "")
9306 (("HDF5_CXX_LIB=.*")
9307 (string-append "HDF5_CXX_LIB="
9308 (assoc-ref inputs "hdf5") "/lib/libhdf5_cpp.a\n"))
9309 (("HDF5_LIB=.*")
9310 (string-append "HDF5_LIB="
9311 (assoc-ref inputs "hdf5") "/lib/libhdf5.a\n"))
9312 (("HDF5_CXX_INCLUDE=.*") "HDF5_CXX_INCLUDE=./hdf5/c++/src\n")
9313 (("HDF5_INCLUDE=.*") "HDF5_INCLUDE=./hdf5/src\n")
9314 (("HDF5_HL_INCLUDE=.*") "HDF5_HL_INCLUDE=./hdf5/hl/src\n")
9315 (("HDF5_HL_CXX_INCLUDE=.*") "HDF5_HL_CXX_INCLUDE=./hdf5/hl/c++/src\n")
9316 (("HDF5_HL_LIB=.*")
9317 (string-append "HDF5_HL_LIB="
9318 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl.a\n"))
9319 (("HDF5_HL_CXX_LIB=.*")
9320 (string-append "HDF5_HL_CXX_LIB="
9321 (assoc-ref inputs "hdf5") "/lib/libhdf5_hl_cpp.a\n"))
9322 ;; szip is non-free software
9323 (("cp \"\\$\\{SZIP_LIB\\}.*") "")
9324 (("PKG_LIBS =.*") "PKG_LIBS = -lz -lhdf5\n")))
9325 #t)))))
9326 (inputs
9327 `(("zlib" ,zlib)))
9328 (propagated-inputs
9329 `(("hdf5" ,hdf5-1.10)))
9330 (native-inputs
9331 `(("hdf5-source" ,(package-source hdf5-1.10))
9332 ("r-knitr" ,r-knitr)))
9333 (home-page "https://bioconductor.org/packages/Rhdf5lib")
9334 (synopsis "HDF5 library as an R package")
9335 (description "This package provides C and C++ HDF5 libraries for use in R
9336packages.")
9337 (license license:artistic2.0)))
9338
8863c14c 9339(define-public r-beachmat
9340 (package
9341 (name "r-beachmat")
79d51ffe 9342 (version "2.6.4")
8863c14c 9343 (source
9344 (origin
9345 (method url-fetch)
9346 (uri (bioconductor-uri "beachmat" version))
9347 (sha256
9348 (base32
79d51ffe 9349 "0vbqdkc52j2v1ghygmhy2cbgqm4l99vmv8930wkzkq1pm73pmjji"))))
8863c14c 9350 (build-system r-build-system)
9351 (propagated-inputs
9352 `(("r-biocgenerics" ,r-biocgenerics)
9353 ("r-delayedarray" ,r-delayedarray)
9354 ("r-matrix" ,r-matrix)))
9355 (native-inputs
9356 `(("r-knitr" ,r-knitr)))
9357 (home-page "https://bioconductor.org/packages/beachmat")
9358 (synopsis "Compiling Bioconductor to handle each matrix type")
9359 (description "This package provides a consistent C++ class interface for a
9360variety of commonly used matrix types, including sparse and HDF5-backed
9361matrices.")
9362 (license license:gpl3)))
9363
e6bc150b
RW
9364;; This package includes files that have been taken from kentutils. Some
9365;; parts of kentutils are not released under a free license, but this package
9366;; only uses files that are also found in the free parts of kentutils.
9367(define-public r-cner
9368 (package
9369 (name "r-cner")
9370 (version "1.26.0")
9371 (source
9372 (origin
9373 (method url-fetch)
9374 (uri (bioconductor-uri "CNEr" version))
9375 (sha256
9376 (base32 "0qy4pm23vyy23zwsjkf0mpf2c0p54nq26w9lq7j0ld4bx9l3jc6c"))))
9377 (properties `((upstream-name . "CNEr")))
9378 (build-system r-build-system)
9379 (inputs `(("zlib" ,zlib)))
9380 (propagated-inputs
9381 `(("r-annotate" ,r-annotate)
9382 ("r-biocgenerics" ,r-biocgenerics)
9383 ("r-biostrings" ,r-biostrings)
9384 ("r-dbi" ,r-dbi)
9385 ("r-genomeinfodb" ,r-genomeinfodb)
9386 ("r-genomicalignments" ,r-genomicalignments)
9387 ("r-genomicranges" ,r-genomicranges)
9388 ("r-ggplot2" ,r-ggplot2)
9389 ("r-go-db" ,r-go-db)
9390 ("r-iranges" ,r-iranges)
9391 ("r-keggrest" ,r-keggrest)
9392 ("r-powerlaw" ,r-powerlaw)
9393 ("r-r-utils" ,r-r-utils)
9394 ("r-readr" ,r-readr)
9395 ("r-reshape2" ,r-reshape2)
9396 ("r-rsqlite" ,r-rsqlite)
9397 ("r-rtracklayer" ,r-rtracklayer)
9398 ("r-s4vectors" ,r-s4vectors)
9399 ("r-xvector" ,r-xvector)))
9400 (native-inputs
9401 `(("r-knitr" ,r-knitr)))
9402 (home-page "https://github.com/ge11232002/CNEr")
9403 (synopsis "CNE Detection and Visualization")
9404 (description
9405 "This package provides tools for large-scale identification and
9406advanced visualization of sets of conserved noncoding elements.")
9407 ;; For all files in src/ucsc "license is hereby granted for all use -
9408 ;; public, private or commercial"; this includes those files that don't
9409 ;; have a license header, because they are included in the free parts of
9410 ;; the kentutils package.
9411 (license (list license:gpl2
9412 (license:non-copyleft
9413 "https://raw.githubusercontent.com/ucscGenomeBrowser/kent/v410_base/src/lib/LICENSE")))))
9414
2def2e20
RW
9415(define-public r-tfbstools
9416 (package
9417 (name "r-tfbstools")
9418 (version "1.28.0")
9419 (source
9420 (origin
9421 (method url-fetch)
9422 (uri (bioconductor-uri "TFBSTools" version))
9423 (sha256
9424 (base32
9425 "0p42hnwhipmcvrsqk3s8qfiian1fvh6izfd9m961bsx99r2clnha"))))
9426 (properties `((upstream-name . "TFBSTools")))
9427 (build-system r-build-system)
9428 (propagated-inputs
9429 `(("r-biobase" ,r-biobase)
9430 ("r-biocgenerics" ,r-biocgenerics)
9431 ("r-biocparallel" ,r-biocparallel)
9432 ("r-biostrings" ,r-biostrings)
9433 ("r-bsgenome" ,r-bsgenome)
9434 ("r-catools" ,r-catools)
9435 ("r-cner" ,r-cner)
9436 ("r-dbi" ,r-dbi)
9437 ("r-dirichletmultinomial" ,r-dirichletmultinomial)
9438 ("r-genomeinfodb" ,r-genomeinfodb)
9439 ("r-genomicranges" ,r-genomicranges)
9440 ("r-gtools" ,r-gtools)
9441 ("r-iranges" ,r-iranges)
9442 ("r-rsqlite" ,r-rsqlite)
9443 ("r-rtracklayer" ,r-rtracklayer)
9444 ("r-s4vectors" ,r-s4vectors)
9445 ("r-seqlogo" ,r-seqlogo)
9446 ("r-tfmpvalue" ,r-tfmpvalue)
9447 ("r-xml" ,r-xml)
9448 ("r-xvector" ,r-xvector)))
9449 (native-inputs `(("r-knitr" ,r-knitr)))
9450 (home-page "https://github.com/ge11232002/TFBSTools")
9451 (synopsis "Transcription factor binding site (TFBS) analysis")
9452 (description
9453 "TFBSTools is a package for the analysis and manipulation of
9454transcription factor binding sites. It includes matrices conversion
9455between @dfn{Position Frequency Matrix} (PFM), @dfn{Position Weight
9456Matrix} (PWM) and @dfn{Information Content Matrix} (ICM). It can also
9457scan putative TFBS from sequence/alignment, query JASPAR database and
9458provides a wrapper of de novo motif discovery software.")
9459 (license license:gpl2)))
9460
9a38f39e
RW
9461(define-public r-motifmatchr
9462 (package
9463 (name "r-motifmatchr")
9464 (version "1.12.0")
9465 (source
9466 (origin
9467 (method url-fetch)
9468 (uri (bioconductor-uri "motifmatchr" version))
9469 (sha256
9470 (base32
9471 "0zrpn0hqdg0hm80ydkfpiqncwyb8y0xp6mlin7g955p8zcpcm67z"))))
9472 (properties `((upstream-name . "motifmatchr")))
9473 (build-system r-build-system)
9474 (propagated-inputs
9475 `(("r-biostrings" ,r-biostrings)
9476 ("r-bsgenome" ,r-bsgenome)
9477 ("r-genomeinfodb" ,r-genomeinfodb)
9478 ("r-genomicranges" ,r-genomicranges)
9479 ("r-iranges" ,r-iranges)
9480 ("r-matrix" ,r-matrix)
9481 ("r-rcpp" ,r-rcpp)
9482 ("r-rcpparmadillo" ,r-rcpparmadillo)
9483 ("r-rsamtools" ,r-rsamtools)
9484 ("r-s4vectors" ,r-s4vectors)
9485 ("r-summarizedexperiment" ,r-summarizedexperiment)
9486 ("r-tfbstools" ,r-tfbstools)))
9487 (native-inputs `(("r-knitr" ,r-knitr)))
9488 (home-page "https://bioconductor.org/packages/motifmatchr")
9489 (synopsis "Fast motif matching in R")
9490 (description
9491 "Quickly find motif matches for many motifs and many sequences.
9492This package wraps C++ code from the MOODS motif calling library.")
9493 (license license:gpl3)))
9494
89d7c8ef
RW
9495(define-public r-chromvar
9496 (package
9497 (name "r-chromvar")
9498 (version "1.12.0")
9499 (source
9500 (origin
9501 (method url-fetch)
9502 (uri (bioconductor-uri "chromVAR" version))
9503 (sha256
9504 (base32 "0dn04ijgq8fncn2bkvnd0lnabjg2s4mpb91b3kwvv3nkgjgfx819"))))
9505 (properties `((upstream-name . "chromVAR")))
9506 (build-system r-build-system)
9507 (propagated-inputs
9508 `(("r-biocgenerics" ,r-biocgenerics)
9509 ("r-biocparallel" ,r-biocparallel)
9510 ("r-biostrings" ,r-biostrings)
9511 ("r-bsgenome" ,r-bsgenome)
9512 ("r-dt" ,r-dt)
9513 ("r-genomeinfodb" ,r-genomeinfodb)
9514 ("r-genomicranges" ,r-genomicranges)
9515 ("r-ggplot2" ,r-ggplot2)
9516 ("r-iranges" ,r-iranges)
9517 ("r-matrix" ,r-matrix)
9518 ("r-miniui" ,r-miniui)
9519 ("r-nabor" ,r-nabor)
9520 ("r-plotly" ,r-plotly)
9521 ("r-rcolorbrewer" ,r-rcolorbrewer)
9522 ("r-rcpp" ,r-rcpp)
9523 ("r-rcpparmadillo" ,r-rcpparmadillo)
9524 ("r-rsamtools" ,r-rsamtools)
9525 ("r-rtsne" ,r-rtsne)
9526 ("r-s4vectors" ,r-s4vectors)
9527 ("r-shiny" ,r-shiny)
9528 ("r-summarizedexperiment" ,r-summarizedexperiment)
9529 ("r-tfbstools" ,r-tfbstools)))
9530 (native-inputs `(("r-knitr" ,r-knitr)))
9531 (home-page "https://bioconductor.org/packages/release/bioc/html/chromVAR.html")
9532 (synopsis "Determine chromatin variation across regions")
9533 (description
9534 "This package @code{r-chromvar} determines variation in chromatin
9535accessibility across sets of annotations or peaks. @code{r-chromvar} is
9536designed primarily for single-cell or sparse chromatin accessibility data like
9537single cell assay for transposase-accessible chromatin using
9538sequencing (@code{scATAC-seq} or sparse bulk ATAC or deoxyribonuclease
9539sequence (@code{DNAse-seq}) experiments.")
9540 (license license:expat)))
9541
916a3e59 9542(define-public r-singlecellexperiment
9543 (package
9544 (name "r-singlecellexperiment")
4ef898d4 9545 (version "1.12.0")
916a3e59 9546 (source
9547 (origin
9548 (method url-fetch)
9549 (uri (bioconductor-uri "SingleCellExperiment" version))
9550 (sha256
9551 (base32
4ef898d4 9552 "0wpgb2rhxxlclpmwl08iyfy204f7gpj8ijd0qdy4j41c58bl4qm2"))))
916a3e59 9553 (properties
9554 `((upstream-name . "SingleCellExperiment")))
9555 (build-system r-build-system)
9556 (propagated-inputs
9557 `(("r-biocgenerics" ,r-biocgenerics)
9558 ("r-s4vectors" ,r-s4vectors)
9559 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9560 (native-inputs
9561 `(("r-knitr" ,r-knitr)))
9562 (home-page "https://bioconductor.org/packages/SingleCellExperiment")
9563 (synopsis "S4 classes for single cell data")
9564 (description "This package defines an S4 class for storing data from
9565single-cell experiments. This includes specialized methods to store and
9566retrieve spike-in information, dimensionality reduction coordinates and size
9567factors for each cell, along with the usual metadata for genes and
9568libraries.")
9569 (license license:gpl3)))
9570
0e60dda0
RW
9571(define-public r-scuttle
9572 (package
9573 (name "r-scuttle")
cf3e7038 9574 (version "1.0.4")
0e60dda0
RW
9575 (source
9576 (origin
9577 (method url-fetch)
9578 (uri (bioconductor-uri "scuttle" version))
9579 (sha256
9580 (base32
cf3e7038 9581 "0vfhxyv81y525qgk0s3bxy1yypj16h1bl7sc1a1jdqx11fxxv2l8"))))
0e60dda0
RW
9582 (properties `((upstream-name . "scuttle")))
9583 (build-system r-build-system)
9584 (propagated-inputs
9585 `(("r-beachmat" ,r-beachmat)
9586 ("r-biocgenerics" ,r-biocgenerics)
9587 ("r-biocparallel" ,r-biocparallel)
9588 ("r-delayedarray" ,r-delayedarray)
9589 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
3872153a 9590 ("r-genomicranges" ,r-genomicranges)
0e60dda0
RW
9591 ("r-matrix" ,r-matrix)
9592 ("r-rcpp" ,r-rcpp)
9593 ("r-s4vectors" ,r-s4vectors)
9594 ("r-singlecellexperiment" ,r-singlecellexperiment)
9595 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9596 (native-inputs `(("r-knitr" ,r-knitr)))
9597 (home-page "https://bioconductor.org/packages/scuttle")
9598 (synopsis "Single-cell RNA-Seq analysis utilities")
9599 (description
9600 "This package provides basic utility functions for performing single-cell
9601analyses, focusing on simple normalization, quality control and data
9602transformations. It also provides some helper functions to assist development
9603of other packages.")
9604 (license license:gpl3)))
9605
6b1946b3 9606(define-public r-scater
9607 (package
9608 (name "r-scater")
d4b5d186 9609 (version "1.18.3")
6b1946b3 9610 (source (origin
9611 (method url-fetch)
9612 (uri (bioconductor-uri "scater" version))
9613 (sha256
9614 (base32
d4b5d186 9615 "14f7yw277nykxmcm7wlhlsf3nizpwzz24hax1icx73lavfxmc535"))))
6b1946b3 9616 (build-system r-build-system)
9617 (propagated-inputs
d4b5d186 9618 `(("r-biocgenerics" ,r-biocgenerics)
6b1946b3 9619 ("r-biocneighbors" ,r-biocneighbors)
9620 ("r-biocparallel" ,r-biocparallel)
9621 ("r-biocsingular" ,r-biocsingular)
9622 ("r-delayedarray" ,r-delayedarray)
9623 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
9624 ("r-ggbeeswarm" ,r-ggbeeswarm)
9625 ("r-ggplot2" ,r-ggplot2)
d4b5d186 9626 ("r-gridextra" ,r-gridextra)
6b1946b3 9627 ("r-matrix" ,r-matrix)
6b1946b3 9628 ("r-rlang" ,r-rlang)
9629 ("r-s4vectors" ,r-s4vectors)
d4b5d186 9630 ("r-scuttle" ,r-scuttle)
6b1946b3 9631 ("r-singlecellexperiment" ,r-singlecellexperiment)
9632 ("r-summarizedexperiment" ,r-summarizedexperiment)
9633 ("r-viridis" ,r-viridis)))
9634 (native-inputs
9635 `(("r-knitr" ,r-knitr)))
9636 (home-page "https://github.com/davismcc/scater")
9637 (synopsis "Single-cell analysis toolkit for gene expression data in R")
9638 (description "This package provides a collection of tools for doing
9639various analyses of single-cell RNA-seq gene expression data, with a focus on
9640quality control.")
9641 (license license:gpl2+)))
9642
1193b77e 9643(define-public r-scran
9644 (package
9645 (name "r-scran")
de4fc492 9646 (version "1.18.5")
1193b77e 9647 (source
9648 (origin
9649 (method url-fetch)
9650 (uri (bioconductor-uri "scran" version))
9651 (sha256
9652 (base32
de4fc492 9653 "0mk4bs7pkzbaiaaap75nzsrlwr883h45xnbpn94fy91i8d9w1xy1"))))
1193b77e 9654 (build-system r-build-system)
9655 (propagated-inputs
9656 `(("r-beachmat" ,r-beachmat)
9657 ("r-bh" ,r-bh)
9658 ("r-biocgenerics" ,r-biocgenerics)
9659 ("r-biocneighbors" ,r-biocneighbors)
9660 ("r-biocparallel" ,r-biocparallel)
9661 ("r-biocsingular" ,r-biocsingular)
b03c955c 9662 ("r-bluster" ,r-bluster)
1193b77e 9663 ("r-delayedarray" ,r-delayedarray)
9664 ("r-delayedmatrixstats" ,r-delayedmatrixstats)
9665 ("r-dqrng" ,r-dqrng)
9666 ("r-edger" ,r-edger)
9667 ("r-igraph" ,r-igraph)
1193b77e 9668 ("r-limma" ,r-limma)
9669 ("r-matrix" ,r-matrix)
9670 ("r-rcpp" ,r-rcpp)
9671 ("r-s4vectors" ,r-s4vectors)
b03c955c 9672 ("r-scuttle" ,r-scuttle)
1193b77e 9673 ("r-singlecellexperiment" ,r-singlecellexperiment)
9674 ("r-statmod" ,r-statmod)
9675 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9676 (native-inputs
9677 `(("r-knitr" ,r-knitr)))
9678 (home-page "https://bioconductor.org/packages/scran")
9679 (synopsis "Methods for single-cell RNA-Seq data analysis")
9680 (description "This package implements a variety of low-level analyses of
9681single-cell RNA-seq data. Methods are provided for normalization of
9682cell-specific biases, assignment of cell cycle phase, and detection of highly
9683variable and significantly correlated genes.")
9684 (license license:gpl3)))
9685
5e719988
RW
9686(define-public r-sparsematrixstats
9687 (package
9688 (name "r-sparsematrixstats")
8acfd9f3 9689 (version "1.2.1")
5e719988
RW
9690 (source
9691 (origin
9692 (method url-fetch)
9693 (uri (bioconductor-uri "sparseMatrixStats" version))
9694 (sha256
9695 (base32
8acfd9f3 9696 "01gnmy9zqd0ygm40vqkmqmiwfqmdawj4m81dysmmcdm7z80rn9ii"))))
5e719988
RW
9697 (properties
9698 `((upstream-name . "sparseMatrixStats")))
9699 (build-system r-build-system)
9700 (propagated-inputs
9701 `(("r-matrix" ,r-matrix)
9702 ("r-matrixgenerics" ,r-matrixgenerics)
9703 ("r-matrixstats" ,r-matrixstats)
9704 ("r-rcpp" ,r-rcpp)))
9705 (native-inputs `(("r-knitr" ,r-knitr)))
9706 (home-page "https://bioconductor.org/packages/sparseMatrixStats/")
9707 (synopsis "Summary statistics for rows and columns of sparse matrices")
9708 (description
9709 "This package provides high performance functions for row and column
9710operations on sparse matrices. Currently, the optimizations are limited to
9711data in the column sparse format.")
9712 (license license:expat)))
9713
8c7c6db4 9714(define-public r-delayedmatrixstats
9715 (package
9716 (name "r-delayedmatrixstats")
311bb4bc 9717 (version "1.12.3")
8c7c6db4 9718 (source
9719 (origin
9720 (method url-fetch)
9721 (uri (bioconductor-uri "DelayedMatrixStats" version))
9722 (sha256
9723 (base32
311bb4bc 9724 "1hb8jv5dy3svf7xan6rym7amwdqm5mvl9qx5xhmj1vkb81bizn7h"))))
8c7c6db4 9725 (properties
9726 `((upstream-name . "DelayedMatrixStats")))
9727 (build-system r-build-system)
9728 (propagated-inputs
9729 `(("r-biocparallel" ,r-biocparallel)
9730 ("r-delayedarray" ,r-delayedarray)
9731 ("r-hdf5array" ,r-hdf5array)
9732 ("r-iranges" ,r-iranges)
9733 ("r-matrix" ,r-matrix)
7601015f 9734 ("r-matrixgenerics" ,r-matrixgenerics)
8c7c6db4 9735 ("r-matrixstats" ,r-matrixstats)
10c87ecf 9736 ("r-s4vectors" ,r-s4vectors)
9737 ("r-sparsematrixstats" ,r-sparsematrixstats)))
8c7c6db4 9738 (native-inputs
9739 `(("r-knitr" ,r-knitr)))
9740 (home-page "https://github.com/PeteHaitch/DelayedMatrixStats")
9741 (synopsis "Functions that apply to rows and columns of DelayedMatrix objects")
9742 (description
9743 "This package provides a port of the @code{matrixStats} API for use with
9744@code{DelayedMatrix} objects from the @code{DelayedArray} package. It
9745contains high-performing functions operating on rows and columns of
9746@code{DelayedMatrix} objects, e.g. @code{colMedians}, @code{rowMedians},
9747@code{colRanks}, @code{rowRanks}, @code{colSds}, and @code{rowSds}. Functions
9748are optimized per data type and for subsetted calculations such that both
9749memory usage and processing time is minimized.")
9750 (license license:expat)))
fa2201c1 9751
9752(define-public r-mscoreutils
9753 (package
9754 (name "r-mscoreutils")
9755 (version "1.2.0")
9756 (source
9757 (origin
9758 (method url-fetch)
9759 (uri (bioconductor-uri "MsCoreUtils" version))
9760 (sha256
9761 (base32
9762 "0fa3bcf2cmzf5y8wjs7pnzs26qwgqnrrl4hj4sa4fp9kv8z80630"))))
9763 (properties `((upstream-name . "MsCoreUtils")))
9764 (build-system r-build-system)
9765 (propagated-inputs
9766 `(("r-mass" ,r-mass)
9767 ("r-rcpp" ,r-rcpp)
9768 ("r-s4vectors" ,r-s4vectors)))
9769 (native-inputs
9770 `(("r-knitr" ,r-knitr)))
9771 (home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
9772 (synopsis "Core utils for mass spectrometry data")
9773 (description
9774 "This package defines low-level functions for mass spectrometry data and
9775is independent of any high-level data structures. These functions include
9776mass spectra processing functions (noise estimation, smoothing, binning),
9777quantitative aggregation functions (median polish, robust summarisation,
9778etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
9779well as misc helper functions, that are used across high-level data structure
9780within the R for Mass Spectrometry packages.")
9781 (license license:artistic2.0)))
ff4834c0 9782
9783(define-public r-biocio
9784 (package
9785 (name "r-biocio")
9786 (version "1.0.1")
9787 (source
9788 (origin
9789 (method url-fetch)
9790 (uri (bioconductor-uri "BiocIO" version))
9791 (sha256
9792 (base32
9793 "06gg5ra3r7q4b6mz14c2s9d453cnh1lxh517ffl9f8dr8vwv5s18"))))
9794 (properties `((upstream-name . "BiocIO")))
9795 (build-system r-build-system)
9796 (propagated-inputs
9797 `(("r-biocgenerics" ,r-biocgenerics)
9798 ("r-genomicranges" ,r-genomicranges)
9799 ("r-rcurl" ,r-rcurl)
9800 ("r-s4vectors" ,r-s4vectors)))
9801 (native-inputs
9802 `(("r-knitr" ,r-knitr)))
9803 (home-page "https://bioconductor.org/packages/BiocIO")
9804 (synopsis "Standard input and output for Bioconductor packages")
9805 (description
9806 "This package implements `import()` and `export()` standard generics for
9807importing and exporting biological data formats. `import()` supports
9808whole-file as well as chunk-wise iterative import. The `import()` interface
9809optionally provides a standard mechanism for 'lazy' access via `filter()` (on
9810row or element-like components of the file resource), `select()` (on
9811column-like components of the file resource) and `collect()`. The `import()`
9812interface optionally provides transparent access to remote (e.g. via https)
9813as well as local access. Developers can register a file extension, e.g.,
9814`.loom` for dispatch from character-based URIs to specific `import()` /
9815`export()` methods based on classes representing file types, e.g.,
9816`LoomFile()`.")
9817 (license license:artistic2.0)))
e520c68f 9818
9819(define-public r-msmseda
9820 (package
9821 (name "r-msmseda")
9822 (version "1.28.0")
9823 (source
9824 (origin
9825 (method url-fetch)
9826 (uri (bioconductor-uri "msmsEDA" version))
9827 (sha256
9828 (base32
9829 "1llmy8msxmrqik3s3439wffma1662vwvvcaz8q0a4g5ridkmdbrx"))))
9830 (properties `((upstream-name . "msmsEDA")))
9831 (build-system r-build-system)
9832 (propagated-inputs
9833 `(("r-gplots" ,r-gplots)
9834 ("r-mass" ,r-mass)
9835 ("r-msnbase" ,r-msnbase)
9836 ("r-rcolorbrewer" ,r-rcolorbrewer)))
9837 (home-page
9838 "https://bioconductor.org/packages/msmsEDA")
9839 (synopsis "Exploratory data analysis of LC-MS/MS data by spectral counts")
9840 (description
9841 "Exploratory data analysis to assess the quality of a set of LC-MS/MS
9842experiments, and visualize de influence of the involved factors.")
9843 (license license:gpl2)))
16f16b5e 9844
9845(define-public r-msmstests
9846 (package
9847 (name "r-msmstests")
9848 (version "1.28.0")
9849 (source
9850 (origin
9851 (method url-fetch)
9852 (uri (bioconductor-uri "msmsTests" version))
9853 (sha256
9854 (base32
9855 "1zsnmzj1qvjdwz7mwg9wrsk5iskpqs0f6jccqn8mxy9dgkskmp0j"))))
9856 (properties `((upstream-name . "msmsTests")))
9857 (build-system r-build-system)
9858 (propagated-inputs
9859 `(("r-edger" ,r-edger)
9860 ("r-msmseda" ,r-msmseda)
9861 ("r-msnbase" ,r-msnbase)
9862 ("r-qvalue" ,r-qvalue)))
9863 (home-page
9864 "https://bioconductor.org/packages/msmsTests")
9865 (synopsis "Differential LC-MS/MS expression tests")
9866 (description
9867 "This packages provides statistical tests for label-free LC-MS/MS data
9868by spectral counts, to discover differentially expressed proteins between two
9869biological conditions. Three tests are available: Poisson GLM regression,
9870quasi-likelihood GLM regression, and the negative binomial of the edgeR
9871package.The three models admit blocking factors to control for nuissance
9872variables.To assure a good level of reproducibility a post-test filter is
9873available, where we may set the minimum effect size considered biologicaly
9874relevant, and the minimum expression of the most abundant condition.")
9875 (license license:gpl2)))
45dfb751 9876
9877(define-public r-catalyst
9878 (package
9879 (name "r-catalyst")
9880 (version "1.14.0")
9881 (source
9882 (origin
9883 (method url-fetch)
9884 (uri (bioconductor-uri "CATALYST" version))
9885 (sha256
9886 (base32
9887 "13af7c4irx1f5yqi32k7kj661vzg32wn3dnps7r9pjijfl4drhrh"))))
9888 (properties `((upstream-name . "CATALYST")))
9889 (build-system r-build-system)
9890 (propagated-inputs
9891 `(("r-circlize" ,r-circlize)
9892 ("r-complexheatmap" ,r-complexheatmap)
9893 ("r-consensusclusterplus" ,r-consensusclusterplus)
9894 ("r-cowplot" ,r-cowplot)
9895 ("r-data-table" ,r-data-table)
9896 ("r-dplyr" ,r-dplyr)
9897 ("r-drc" ,r-drc)
9898 ("r-flowcore" ,r-flowcore)
9899 ("r-flowsom" ,r-flowsom)
9900 ("r-ggplot2" ,r-ggplot2)
9901 ("r-ggrepel" ,r-ggrepel)
9902 ("r-ggridges" ,r-ggridges)
9903 ("r-gridextra" ,r-gridextra)
9904 ("r-magrittr" ,r-magrittr)
9905 ("r-matrix" ,r-matrix)
9906 ("r-matrixstats" ,r-matrixstats)
9907 ("r-nnls" ,r-nnls)
9908 ("r-purrr" ,r-purrr)
9909 ("r-rcolorbrewer" ,r-rcolorbrewer)
9910 ("r-reshape2" ,r-reshape2)
9911 ("r-rtsne" ,r-rtsne)
9912 ("r-s4vectors" ,r-s4vectors)
9913 ("r-scales" ,r-scales)
9914 ("r-scater" ,r-scater)
9915 ("r-singlecellexperiment" ,r-singlecellexperiment)
9916 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9917 (native-inputs
9918 `(("r-knitr" ,r-knitr)))
9919 (home-page
9920 "https://github.com/HelenaLC/CATALYST")
9921 (synopsis "Cytometry data analysis tools")
9922 (description
9923 "This package is Cytometry dATa anALYSis Tools (CATALYST). Mass
9924cytometry (CyTOF) uses heavy metal isotopes rather than fluorescent tags as
9925reporters to label antibodies, thereby substantially decreasing spectral
9926overlap and allowing for examination of over 50 parameters at the single cell
9927level. While spectral overlap is significantly less pronounced in CyTOF than
9928flow cytometry, spillover due to detection sensitivity, isotopic impurities,
9929and oxide formation can impede data interpretability. We designed
9930CATALYST (Cytometry dATa anALYSis Tools) to provide a pipeline for
9931preprocessing of cytometry data, including i) normalization using bead
9932standards, ii) single-cell deconvolution, and iii) bead-based compensation.")
9933 (license license:gpl2+)))
7395458d 9934
8c2b7c9a 9935(define-public r-erma
9936 (package
9937 (name "r-erma")
9938 (version "1.6.0")
9939 (source
9940 (origin
9941 (method url-fetch)
9942 (uri (bioconductor-uri "erma" version))
9943 (sha256
9944 (base32
9945 "1k2j1xhv0vwn45xmh8ds0gz812px5hnpgzvp37ngsdn4j5ai1l0k"))))
9946 (build-system r-build-system)
9947 (propagated-inputs
9948 `(("r-annotationdbi" ,r-annotationdbi)
9949 ("r-biobase" ,r-biobase)
9950 ("r-biocgenerics" ,r-biocgenerics)
9951 ("r-biocparallel" ,r-biocparallel)
9952 ("r-genomeinfodb" ,r-genomeinfodb)
9953 ("r-genomicfiles" ,r-genomicfiles)
9954 ("r-genomicranges" ,r-genomicranges)
9955 ("r-ggplot2" ,r-ggplot2)
9956 ("r-homo-sapiens" ,r-homo-sapiens)
9957 ("r-iranges" ,r-iranges)
9958 ("r-rtracklayer" ,r-rtracklayer)
9959 ("r-s4vectors" ,r-s4vectors)
9960 ("r-shiny" ,r-shiny)
9961 ("r-summarizedexperiment" ,r-summarizedexperiment)))
9962 (native-inputs
9963 `(("r-knitr" ,r-knitr)))
9964 (home-page "https://bioconductor.org/packages/erma")
9965 (synopsis "Epigenomic road map adventures")
9966 (description
9967 "The epigenomics road map describes locations of epigenetic marks in DNA
9968from a variety of cell types. Of interest are locations of histone
9969modifications, sites of DNA methylation, and regions of accessible chromatin.
9970This package presents a selection of elements of the road map including
9971metadata and outputs of the ChromImpute procedure applied to ENCODE cell lines
9972by Ernst and Kellis.")
9973 (license license:artistic2.0)))
9974
610cd6a1 9975(define-public r-ggbio
9976 (package
9977 (name "r-ggbio")
9978 (version "1.38.0")
9979 (source
9980 (origin
9981 (method url-fetch)
9982 (uri (bioconductor-uri "ggbio" version))
9983 (sha256
9984 (base32
9985 "0vabil4jzrlv01aibqjhdkvrv2bf2kkpsidrkjj06isqr5fz54lw"))))
9986 (build-system r-build-system)
9987 (arguments
9988 `(#:phases
9989 (modify-phases %standard-phases
9990 ;; See https://github.com/tengfei/ggbio/issues/117
9991 ;; This fix will be included in the next release.
9992 (add-after 'unpack 'fix-typo
9993 (lambda _
9994 (substitute* "R/GGbio-class.R"
9995 (("fechable") "fetchable"))
9996 #t)))))
9997 (propagated-inputs
9998 `(("r-annotationdbi" ,r-annotationdbi)
9999 ("r-annotationfilter" ,r-annotationfilter)
10000 ("r-biobase" ,r-biobase)
10001 ("r-biocgenerics" ,r-biocgenerics)
10002 ("r-biostrings" ,r-biostrings)
10003 ("r-biovizbase" ,r-biovizbase)
10004 ("r-bsgenome" ,r-bsgenome)
10005 ("r-ensembldb" ,r-ensembldb)
10006 ("r-genomeinfodb" ,r-genomeinfodb)
10007 ("r-genomicalignments" ,r-genomicalignments)
10008 ("r-genomicfeatures" ,r-genomicfeatures)
10009 ("r-genomicranges" ,r-genomicranges)
10010 ("r-ggally" ,r-ggally)
10011 ("r-ggplot2" ,r-ggplot2)
10012 ("r-gridextra" ,r-gridextra)
10013 ("r-gtable" ,r-gtable)
10014 ("r-hmisc" ,r-hmisc)
10015 ("r-iranges" ,r-iranges)
10016 ("r-organismdbi" ,r-organismdbi)
10017 ("r-reshape2" ,r-reshape2)
10018 ("r-rlang" ,r-rlang)
10019 ("r-rsamtools" ,r-rsamtools)
10020 ("r-rtracklayer" ,r-rtracklayer)
10021 ("r-s4vectors" ,r-s4vectors)
10022 ("r-scales" ,r-scales)
10023 ("r-summarizedexperiment" ,r-summarizedexperiment)
10024 ("r-variantannotation" ,r-variantannotation)))
10025 (native-inputs
10026 `(("r-knitr" ,r-knitr)))
10027 (home-page "http://www.tengfei.name/ggbio/")
10028 (synopsis "Visualization tools for genomic data")
10029 (description
10030 "The ggbio package extends and specializes the grammar of graphics for
10031biological data. The graphics are designed to answer common scientific
10032questions, in particular those often asked of high throughput genomics data.
10033All core Bioconductor data structures are supported, where appropriate. The
10034package supports detailed views of particular genomic regions, as well as
10035genome-wide overviews. Supported overviews include ideograms and grand linear
10036views. High-level plots include sequence fragment length, edge-linked
10037interval to data view, mismatch pileup, and several splicing summaries.")
10038 (license license:artistic2.0)))
10039
81f481d6 10040(define-public r-gqtlbase
10041 (package
10042 (name "r-gqtlbase")
10043 (version "1.21.1")
10044 (source
10045 (origin
10046 (method url-fetch)
10047 (uri (bioconductor-uri "gQTLBase" version))
10048 (sha256
10049 (base32
10050 "0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
10051 (properties `((upstream-name . "gQTLBase")))
10052 (build-system r-build-system)
10053 (arguments
10054 `(#:phases
10055 (modify-phases %standard-phases
10056 ;; This is an upstream bug.
10057 (add-after 'unpack 'fix-imports
10058 (lambda _
10059 (substitute* "NAMESPACE"
10060 ((".*maxffmode.*") "")
10061 (("importFrom\\(ff,.*") "import(ff)\n"))
10062 #t)))))
10063 (propagated-inputs
10064 `(("r-batchjobs" ,r-batchjobs)
10065 ("r-bbmisc" ,r-bbmisc)
10066 ("r-biocgenerics" ,r-biocgenerics)
10067 ("r-bit" ,r-bit)
10068 ("r-doparallel" ,r-doparallel)
10069 ("r-ff" ,r-ff)
10070 ("r-ffbase" ,r-ffbase)
10071 ("r-foreach" ,r-foreach)
10072 ("r-genomicfiles" ,r-genomicfiles)
10073 ("r-genomicranges" ,r-genomicranges)
10074 ("r-rtracklayer" ,r-rtracklayer)
10075 ("r-s4vectors" ,r-s4vectors)
10076 ("r-summarizedexperiment" ,r-summarizedexperiment)))
10077 (native-inputs
10078 `(("r-knitr" ,r-knitr)))
10079 (home-page "https://bioconductor.org/packages/gQTLBase")
10080 (synopsis "Infrastructure for eQTL, mQTL and similar studies")
10081 (description
10082 "The purpose of this package is to simplify the storage and interrogation
10083of @dfn{quantitative trait loci} (QTL) archives, such as eQTL, mQTL, dsQTL,
10084and more.")
10085 (license license:artistic2.0)))
10086
9534e7b7 10087(define-public r-gqtlstats
10088 (package
10089 (name "r-gqtlstats")
10090 (version "1.21.3")
10091 (source
10092 (origin
10093 (method url-fetch)
10094 (uri (bioconductor-uri "gQTLstats" version))
10095 (sha256
10096 (base32
10097 "1h78l23idf867djmdk97b02jxgmz4vfr2dai01fp648d0lsx5mkl"))))
10098 (properties `((upstream-name . "gQTLstats")))
10099 (build-system r-build-system)
10100 (propagated-inputs
10101 `(("r-annotationdbi" ,r-annotationdbi)
10102 ("r-batchjobs" ,r-batchjobs)
10103 ("r-bbmisc" ,r-bbmisc)
10104 ("r-beeswarm" ,r-beeswarm)
10105 ("r-biobase" ,r-biobase)
10106 ("r-biocgenerics" ,r-biocgenerics)
10107 ("r-doparallel" ,r-doparallel)
10108 ("r-dplyr" ,r-dplyr)
10109 ("r-erma" ,r-erma)
10110 ("r-ffbase" ,r-ffbase)
10111 ("r-foreach" ,r-foreach)
10112 ("r-genomeinfodb" ,r-genomeinfodb)
10113 ("r-genomicfeatures" ,r-genomicfeatures)
10114 ("r-genomicfiles" ,r-genomicfiles)
10115 ("r-genomicranges" ,r-genomicranges)
10116 ("r-ggbeeswarm" ,r-ggbeeswarm)
10117 ("r-ggplot2" ,r-ggplot2)
10118 ("r-gqtlbase" ,r-gqtlbase)
10119 ("r-hardyweinberg" ,r-hardyweinberg)
10120 ("r-homo-sapiens" ,r-homo-sapiens)
10121 ("r-iranges" ,r-iranges)
10122 ("r-limma" ,r-limma)
10123 ("r-mgcv" ,r-mgcv)
10124 ("r-plotly" ,r-plotly)
10125 ("r-reshape2" ,r-reshape2)
10126 ("r-s4vectors" ,r-s4vectors)
10127 ("r-shiny" ,r-shiny)
10128 ("r-snpstats" ,r-snpstats)
10129 ("r-summarizedexperiment" ,r-summarizedexperiment)
10130 ("r-variantannotation" ,r-variantannotation)))
10131 (native-inputs
10132 `(("r-knitr" ,r-knitr)))
10133 (home-page "https://bioconductor.org/packages/gQTLstats")
10134 (synopsis "Computationally efficient analysis for eQTL and allied studies")
10135 (description
10136 "This package provides tools for the computationally efficient analysis
10137of @dfn{quantitative trait loci} (QTL) data, including eQTL, mQTL, dsQTL, etc.
10138The software in this package aims to support refinements and functional
10139interpretation of members of a collection of association statistics on a
10140family of feature/genome hypotheses.")
10141 (license license:artistic2.0)))
10142
2a4322f7 10143(define-public r-gviz
10144 (package
10145 (name "r-gviz")
10146 (version "1.34.0")
10147 (source
10148 (origin
10149 (method url-fetch)
10150 (uri (bioconductor-uri "Gviz" version))
10151 (sha256
10152 (base32
10153 "0v7bz46b91dnrr55ah42ljj1i2xs3090s4w0lw8098pag00p4vh2"))))
10154 (properties `((upstream-name . "Gviz")))
10155 (build-system r-build-system)
10156 (propagated-inputs
10157 `(("r-annotationdbi" ,r-annotationdbi)
10158 ("r-biobase" ,r-biobase)
10159 ("r-biocgenerics" ,r-biocgenerics)
10160 ("r-biomart" ,r-biomart)
10161 ("r-biostrings" ,r-biostrings)
10162 ("r-biovizbase" ,r-biovizbase)
10163 ("r-bsgenome" ,r-bsgenome)
10164 ("r-digest" ,r-digest)
10165 ("r-ensembldb" ,r-ensembldb)
10166 ("r-genomeinfodb" ,r-genomeinfodb)
10167 ("r-genomicalignments" ,r-genomicalignments)
10168 ("r-genomicfeatures" ,r-genomicfeatures)
10169 ("r-genomicranges" ,r-genomicranges)
10170 ("r-iranges" ,r-iranges)
10171 ("r-lattice" ,r-lattice)
10172 ("r-latticeextra" ,r-latticeextra)
10173 ("r-matrixstats" ,r-matrixstats)
10174 ("r-rcolorbrewer" ,r-rcolorbrewer)
10175 ("r-rsamtools" ,r-rsamtools)
10176 ("r-rtracklayer" ,r-rtracklayer)
10177 ("r-s4vectors" ,r-s4vectors)
10178 ("r-xvector" ,r-xvector)))
10179 (native-inputs
10180 `(("r-knitr" ,r-knitr)))
10181 (home-page "https://bioconductor.org/packages/Gviz")
10182 (synopsis "Plotting data and annotation information along genomic coordinates")
10183 (description
10184 "Genomic data analyses requires integrated visualization of known genomic
10185information and new experimental data. Gviz uses the biomaRt and the
10186rtracklayer packages to perform live annotation queries to Ensembl and UCSC
10187and translates this to e.g. gene/transcript structures in viewports of the
10188grid graphics package. This results in genomic information plotted together
10189with your data.")
10190 (license license:artistic2.0)))
10191
69a5e066 10192(define-public r-gwascat
10193 (package
10194 (name "r-gwascat")
10195 (version "2.22.0")
10196 (source
10197 (origin
10198 (method url-fetch)
10199 (uri (bioconductor-uri "gwascat" version))
10200 (sha256
10201 (base32
10202 "1aqi1ny93virnzsxkh9ccx3mws70bgv0r8nwgla09vffb7f16nna"))))
10203 (build-system r-build-system)
10204 (propagated-inputs
10205 `(("r-annotationdbi" ,r-annotationdbi)
10206 ("r-biocfilecache" ,r-biocfilecache)
10207 ("r-biostrings" ,r-biostrings)
10208 ("r-genomeinfodb" ,r-genomeinfodb)
10209 ("r-genomicfeatures" ,r-genomicfeatures)
10210 ("r-genomicranges" ,r-genomicranges)
10211 ("r-iranges" ,r-iranges)
10212 ("r-readr" ,r-readr)
10213 ("r-s4vectors" ,r-s4vectors)
10214 ("r-snpstats" ,r-snpstats)
10215 ("r-variantannotation" ,r-variantannotation)))
10216 (native-inputs
10217 `(("r-knitr" ,r-knitr)))
10218 (home-page "https://bioconductor.org/packages/gwascat")
10219 (synopsis "Tools for data in the EMBL-EBI GWAS catalog")
10220 (description
10221 "This package provides tools for representing and modeling data in the
10222EMBL-EBI GWAS catalog.")
10223 (license license:artistic2.0)))
10224
7395458d
MIP
10225(define-public r-kegggraph
10226 (package
10227 (name "r-kegggraph")
10228 (version "1.50.0")
10229 (source
10230 (origin
10231 (method url-fetch)
10232 (uri (bioconductor-uri "KEGGgraph" version))
10233 (sha256
10234 (base32 "1h293hn02ysm923bh9gxk87xv663xiqchqcvpaxpla9c3yrgkx2v"))))
10235 (properties `((upstream-name . "KEGGgraph")))
10236 (build-system r-build-system)
10237 (propagated-inputs
10238 `(("r-graph" ,r-graph)
10239 ("r-rcurl" ,r-rcurl)
10240 ("r-xml" ,r-xml)))
10241 (home-page "https://bioconductor.org/packages/KEGGgraph")
10242 (synopsis "Graph approach to Kegg Pathway database in R and Bioconductor")
10243 (description
10244 "@code{r-kegggraph} is an interface between Kegg Pathway database and graph
10245object as well as a collection of tools to analyze, dissect and visualize these
10246graphs. It parses the regularly updated kgml (Kegg XML) files into graph models
10247maintaining all essential pathway attributes. The package offers
10248functionalities including parsing, graph operation, visualization and etc.")
10249 (license license:gpl2+)))
e4b0794e 10250
8f1237c3 10251(define-public r-ldblock
10252 (package
10253 (name "r-ldblock")
10254 (version "1.20.0")
10255 (source
10256 (origin
10257 (method url-fetch)
10258 (uri (bioconductor-uri "ldblock" version))
10259 (sha256
10260 (base32
10261 "09i3ikv0axks9g842z1pjsc8x0fba51zyyc218h0bylbi1n9cdkm"))))
10262 (build-system r-build-system)
10263 (propagated-inputs
10264 `(("r-biocgenerics" ,r-biocgenerics)
10265 ("r-ensdb-hsapiens-v75" ,r-ensdb-hsapiens-v75)
10266 ("r-ensembldb" ,r-ensembldb)
10267 ("r-genomeinfodb" ,r-genomeinfodb)
10268 ("r-genomicfiles" ,r-genomicfiles)
10269 ("r-httr" ,r-httr)
10270 ("r-matrix" ,r-matrix)
10271 ("r-rsamtools" ,r-rsamtools)
10272 ("r-snpstats" ,r-snpstats)
10273 ("r-variantannotation" ,r-variantannotation)))
10274 (native-inputs
10275 `(("r-knitr" ,r-knitr)))
10276 (home-page "https://bioconductor.org/packages/ldblock")
10277 (synopsis "Data structures for linkage disequilibrium measures in populations")
10278 (description
10279 "This package defines data structures for @dfn{linkage
10280disequilibrium} (LD) measures in populations. Its purpose is to simplify
10281handling of existing population-level data for the purpose of flexibly
10282defining LD blocks.")
10283 (license license:artistic2.0)))
10284
a7d6e1b6
RW
10285;; This is a CRAN package, but it depends on r-snpstats, which is a
10286;; Bioconductor package.
10287(define-public r-ldheatmap
10288 (package
10289 (name "r-ldheatmap")
10290 (version "1.0-4")
10291 (source
10292 (origin
10293 (method url-fetch)
10294 (uri (cran-uri "LDheatmap" version))
10295 (sha256
10296 (base32
10297 "1jp578cf29qcgx95w10lpymlwx2pgjsf0nypwkl9b8g635gkisq7"))))
10298 (properties `((upstream-name . "LDheatmap")))
10299 (build-system r-build-system)
10300 (propagated-inputs
10301 `(("r-genetics" ,r-genetics)
10302 ("r-rcpp" ,r-rcpp)
10303 ("r-snpstats" ,r-snpstats)))
10304 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
10305 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
10306 (description
10307 "This package provides tools to produce a graphical display, as a heat
10308map, of measures of pairwise linkage disequilibria between SNPs. Users may
10309optionally include the physical locations or genetic map distances of each SNP
10310on the plot.")
10311 (license license:gpl3)))
10312
e4b0794e
MIP
10313(define-public r-pathview
10314 (package
10315 (name "r-pathview")
10316 (version "1.30.1")
10317 (source
10318 (origin
10319 (method url-fetch)
10320 (uri (bioconductor-uri "pathview" version))
10321 (sha256
10322 (base32 "11fisiksw1y64ii9q8p2znyp9w8mlqzgiaacmycw59rngkjlmbs4"))))
10323 (properties `((upstream-name . "pathview")))
10324 (build-system r-build-system)
10325 (propagated-inputs
10326 `(("r-annotationdbi" ,r-annotationdbi)
10327 ("r-graph" ,r-graph)
10328 ("r-kegggraph" ,r-kegggraph)
10329 ("r-keggrest" ,r-keggrest)
10330 ("r-org-hs-eg-db" ,r-org-hs-eg-db)
10331 ("r-png" ,r-png)
10332 ("r-rgraphviz" ,r-rgraphviz)
10333 ("r-xml" ,r-xml)))
10334 (home-page "https://pathview.uncc.edu/")
10335 (synopsis "Tool set for pathway based data integration and visualization")
10336 (description
10337 "@code{r-pathview} is a tool set for pathway based data integration and
10338visualization. It maps and renders a wide variety of biological data on
10339relevant pathway graphs. All users need is to supply their data and specify
10340the target pathway. This package automatically downloads the pathway graph
10341data, parses the data file, maps user data to the pathway, and render pathway
10342graph with the mapped data. In addition, @code{r-pathview} also seamlessly
10343integrates with pathway and gene set (enrichment) analysis tools for
10344large-scale and fully automated analysis.")
10345 (license license:gpl3+)))
838db0de 10346
61ec8928 10347(define-public r-snpstats
10348 (package
10349 (name "r-snpstats")
10350 (version "1.40.0")
10351 (source
10352 (origin
10353 (method url-fetch)
10354 (uri (bioconductor-uri "snpStats" version))
10355 (sha256
10356 (base32
10357 "1298a71swwav53yf9kfqkdpach3818plqcbw0lgb6sibs8y8ff24"))))
10358 (properties `((upstream-name . "snpStats")))
10359 (build-system r-build-system)
10360 (inputs `(("zlib" ,zlib)))
10361 (propagated-inputs
10362 `(("r-biocgenerics" ,r-biocgenerics)
10363 ("r-matrix" ,r-matrix)
10364 ("r-survival" ,r-survival)
10365 ("r-zlibbioc" ,r-zlibbioc)))
10366 (home-page "https://bioconductor.org/packages/snpStats")
10367 (synopsis "Methods for SNP association studies")
10368 (description
10369 "This package provides classes and statistical methods for large
10370@dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
10371the earlier snpMatrix package, allowing for uncertainty in genotypes.")
10372 (license license:gpl3)))
10373
838db0de 10374(define-public r-sushi
10375 (package
10376 (name "r-sushi")
10377 (version "1.28.0")
10378 (source (origin
10379 (method url-fetch)
10380 (uri (bioconductor-uri "Sushi" version))
10381 (sha256
10382 (base32
10383 "0ksj4f9z14mjsv6ssg5dwhpldw4r7wpdsln2if5g486mm1c56r8p"))))
10384 (properties `((upstream-name . "Sushi")))
10385 (build-system r-build-system)
10386 (propagated-inputs
10387 `(("r-biomart" ,r-biomart)
10388 ("r-zoo" ,r-zoo)))
10389 (home-page "https://bioconductor.org/packages/Sushi")
10390 (synopsis "Tools for visualizing genomics data")
10391 (description
10392 "This package provides flexible, quantitative, and integrative genomic
10393visualizations for publication-quality multi-panel figures.")
10394 (license license:gpl2+)))