[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/54: gnu: r-genomation: Move to (gnu packages bioconductor).
From: |
guix-commits |
Subject: |
12/54: gnu: r-genomation: Move to (gnu packages bioconductor). |
Date: |
Mon, 31 May 2021 10:03:06 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit f8fe5497c7b9f598786d46d96fd1bd5002e7e57f
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Fri May 21 22:25:44 2021 +0200
gnu: r-genomation: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-genomation): Move from here...
* gnu/packages/bioconductor.scm (r-genomation): ...to here.
---
gnu/packages/bioconductor.scm | 48 +++++++++++++++++++++++++++++++++++++++++
gnu/packages/bioinformatics.scm | 48 -----------------------------------------
2 files changed, 48 insertions(+), 48 deletions(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 8cf8b43..b90e315 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -2304,6 +2304,54 @@ CAGE.")
high-throughput sequencing experiments.")
(license license:artistic2.0)))
+(define-public r-genomation
+ (package
+ (name "r-genomation")
+ (version "1.22.0")
+ (source (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "genomation" version))
+ (sha256
+ (base32
+ "1ana06irlpdgnmk8mb329nws9sm8n6max4qargf1xdcdf3rnk45g"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-biostrings" ,r-biostrings)
+ ("r-bsgenome" ,r-bsgenome)
+ ("r-data-table" ,r-data-table)
+ ("r-genomeinfodb" ,r-genomeinfodb)
+ ("r-genomicalignments" ,r-genomicalignments)
+ ("r-genomicranges" ,r-genomicranges)
+ ("r-ggplot2" ,r-ggplot2)
+ ("r-gridbase" ,r-gridbase)
+ ("r-impute" ,r-impute)
+ ("r-iranges" ,r-iranges)
+ ("r-matrixstats" ,r-matrixstats)
+ ("r-plotrix" ,r-plotrix)
+ ("r-plyr" ,r-plyr)
+ ("r-rcpp" ,r-rcpp)
+ ("r-readr" ,r-readr)
+ ("r-reshape2" ,r-reshape2)
+ ("r-rsamtools" ,r-rsamtools)
+ ("r-rtracklayer" ,r-rtracklayer)
+ ("r-runit" ,r-runit)
+ ("r-s4vectors" ,r-s4vectors)
+ ("r-seqpattern" ,r-seqpattern)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
+ (synopsis "Summary, annotation and visualization of genomic data")
+ (description
+ "This package provides a package for summary and annotation of genomic
+intervals. Users can visualize and quantify genomic intervals over
+pre-defined functional regions, such as promoters, exons, introns, etc. The
+genomic intervals represent regions with a defined chromosome position, which
+may be associated with a score, such as aligned reads from HT-seq experiments,
+TF binding sites, methylation scores, etc. The package can use any tabular
+genomic feature data as long as it has minimal information on the locations of
+genomic intervals. In addition, it can use BAM or BigWig files as input.")
+ (license license:artistic2.0)))
+
(define-public r-genomeinfodb
(package
(name "r-genomeinfodb")
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1396631..cc6e1b1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8023,54 +8023,6 @@ used to obtain robust estimates of the predominant
fragment length or
characteristic tag shift values in these assays.")
(license license:bsd-3)))
-(define-public r-genomation
- (package
- (name "r-genomation")
- (version "1.22.0")
- (source (origin
- (method url-fetch)
- (uri (bioconductor-uri "genomation" version))
- (sha256
- (base32
- "1ana06irlpdgnmk8mb329nws9sm8n6max4qargf1xdcdf3rnk45g"))))
- (build-system r-build-system)
- (propagated-inputs
- `(("r-biostrings" ,r-biostrings)
- ("r-bsgenome" ,r-bsgenome)
- ("r-data-table" ,r-data-table)
- ("r-genomeinfodb" ,r-genomeinfodb)
- ("r-genomicalignments" ,r-genomicalignments)
- ("r-genomicranges" ,r-genomicranges)
- ("r-ggplot2" ,r-ggplot2)
- ("r-gridbase" ,r-gridbase)
- ("r-impute" ,r-impute)
- ("r-iranges" ,r-iranges)
- ("r-matrixstats" ,r-matrixstats)
- ("r-plotrix" ,r-plotrix)
- ("r-plyr" ,r-plyr)
- ("r-rcpp" ,r-rcpp)
- ("r-readr" ,r-readr)
- ("r-reshape2" ,r-reshape2)
- ("r-rsamtools" ,r-rsamtools)
- ("r-rtracklayer" ,r-rtracklayer)
- ("r-runit" ,r-runit)
- ("r-s4vectors" ,r-s4vectors)
- ("r-seqpattern" ,r-seqpattern)))
- (native-inputs
- `(("r-knitr" ,r-knitr)))
- (home-page "https://bioinformatics.mdc-berlin.de/genomation/")
- (synopsis "Summary, annotation and visualization of genomic data")
- (description
- "This package provides a package for summary and annotation of genomic
-intervals. Users can visualize and quantify genomic intervals over
-pre-defined functional regions, such as promoters, exons, introns, etc. The
-genomic intervals represent regions with a defined chromosome position, which
-may be associated with a score, such as aligned reads from HT-seq experiments,
-TF binding sites, methylation scores, etc. The package can use any tabular
-genomic feature data as long as it has minimal information on the locations of
-genomic intervals. In addition, it can use BAM or BigWig files as input.")
- (license license:artistic2.0)))
-
(define-public r-genomationdata
(package
(name "r-genomationdata")
- 13/54: gnu: r-genomationdata: Move to (gnu packages bioconductor)., (continued)
- 13/54: gnu: r-genomationdata: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 11/54: gnu: r-go-db: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 14/54: gnu: r-pcamethods: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 16/54: gnu: r-aroma-light: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 19/54: gnu: r-interactivedisplaybase: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 06/54: gnu: r-msnid: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 07/54: gnu: r-msnbase: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 05/54: gnu: r-bsgenome: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 03/54: gnu: r-genomicfeatures: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 01/54: gnu: r-genomicalignments: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 12/54: gnu: r-genomation: Move to (gnu packages bioconductor).,
guix-commits <=
- 10/54: gnu: r-seqpattern: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 15/54: gnu: r-mzid: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 18/54: gnu: r-edaseq: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 17/54: gnu: r-deseq: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 29/54: gnu: r-affyio: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 21/54: gnu: r-fastseg: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 25/54: gnu: r-complexheatmap: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 20/54: gnu: r-annotationhub: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 22/54: gnu: r-affy: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 32/54: gnu: r-ensembldb: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31