[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
50/54: gnu: r-methylkit: Move to (gnu packages bioconductor).
From: |
guix-commits |
Subject: |
50/54: gnu: r-methylkit: Move to (gnu packages bioconductor). |
Date: |
Mon, 31 May 2021 10:03:20 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit c294c0d782bf36a88e24eb4efcd2fbbf8209ace2
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Fri May 21 22:26:22 2021 +0200
gnu: r-methylkit: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-methylkit): Move from here...
* gnu/packages/bioconductor.scm (r-methylkit): ...to here.
---
gnu/packages/bioconductor.scm | 47 +++++++++++++++++++++++++++++++++++++++++
gnu/packages/bioinformatics.scm | 47 -----------------------------------------
2 files changed, 47 insertions(+), 47 deletions(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index fae6073..196ee22 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -3307,6 +3307,53 @@ and the assessment of differential expression. The
analysis methods apply to
different technologies, including microarrays, RNA-seq, and quantitative PCR.")
(license license:gpl2+)))
+(define-public r-methylkit
+ (package
+ (name "r-methylkit")
+ (version "1.16.1")
+ (source (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "methylKit" version))
+ (sha256
+ (base32
+ "1c9b11gfh3cc37iwym9rgsba3mh2xkp78a1gvnjqhzlkiz667mn3"))))
+ (properties `((upstream-name . "methylKit")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-data-table" ,r-data-table)
+ ("r-emdbook" ,r-emdbook)
+ ("r-fastseg" ,r-fastseg)
+ ("r-genomeinfodb" ,r-genomeinfodb)
+ ("r-genomicranges" ,r-genomicranges)
+ ("r-gtools" ,r-gtools)
+ ("r-iranges" ,r-iranges)
+ ("r-kernsmooth" ,r-kernsmooth)
+ ("r-limma" ,r-limma)
+ ("r-mclust" ,r-mclust)
+ ("r-mgcv" ,r-mgcv)
+ ("r-qvalue" ,r-qvalue)
+ ("r-r-utils" ,r-r-utils)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rhtslib" ,r-rhtslib)
+ ("r-rsamtools" ,r-rsamtools)
+ ("r-rtracklayer" ,r-rtracklayer)
+ ("r-s4vectors" ,r-s4vectors)
+ ("r-zlibbioc" ,r-zlibbioc)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr))) ; for vignettes
+ (home-page "https://github.com/al2na/methylKit")
+ (synopsis
+ "DNA methylation analysis from high-throughput bisulfite sequencing
results")
+ (description
+ "MethylKit is an R package for DNA methylation analysis and annotation
+from high-throughput bisulfite sequencing. The package is designed to deal
+with sequencing data from @dfn{Reduced representation bisulfite
+sequencing} (RRBS) and its variants, but also target-capture methods and whole
+genome bisulfite sequencing. It also has functions to analyze base-pair
+resolution 5hmC data from experimental protocols such as oxBS-Seq and
+TAB-Seq.")
+ (license license:artistic2.0)))
+
(define-public r-motifrg
(package
(name "r-motifrg")
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index abfaa3d..11dbad5 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8486,53 +8486,6 @@ analysis, variant tools is project based and provides a
whole set of tools to
manipulate and analyze genetic variants.")
(license license:gpl3+)))
-(define-public r-methylkit
- (package
- (name "r-methylkit")
- (version "1.16.1")
- (source (origin
- (method url-fetch)
- (uri (bioconductor-uri "methylKit" version))
- (sha256
- (base32
- "1c9b11gfh3cc37iwym9rgsba3mh2xkp78a1gvnjqhzlkiz667mn3"))))
- (properties `((upstream-name . "methylKit")))
- (build-system r-build-system)
- (propagated-inputs
- `(("r-data-table" ,r-data-table)
- ("r-emdbook" ,r-emdbook)
- ("r-fastseg" ,r-fastseg)
- ("r-genomeinfodb" ,r-genomeinfodb)
- ("r-genomicranges" ,r-genomicranges)
- ("r-gtools" ,r-gtools)
- ("r-iranges" ,r-iranges)
- ("r-kernsmooth" ,r-kernsmooth)
- ("r-limma" ,r-limma)
- ("r-mclust" ,r-mclust)
- ("r-mgcv" ,r-mgcv)
- ("r-qvalue" ,r-qvalue)
- ("r-r-utils" ,r-r-utils)
- ("r-rcpp" ,r-rcpp)
- ("r-rhtslib" ,r-rhtslib)
- ("r-rsamtools" ,r-rsamtools)
- ("r-rtracklayer" ,r-rtracklayer)
- ("r-s4vectors" ,r-s4vectors)
- ("r-zlibbioc" ,r-zlibbioc)))
- (native-inputs
- `(("r-knitr" ,r-knitr))) ; for vignettes
- (home-page "https://github.com/al2na/methylKit")
- (synopsis
- "DNA methylation analysis from high-throughput bisulfite sequencing
results")
- (description
- "MethylKit is an R package for DNA methylation analysis and annotation
-from high-throughput bisulfite sequencing. The package is designed to deal
-with sequencing data from @dfn{Reduced representation bisulfite
-sequencing} (RRBS) and its variants, but also target-capture methods and whole
-genome bisulfite sequencing. It also has functions to analyze base-pair
-resolution 5hmC data from experimental protocols such as oxBS-Seq and
-TAB-Seq.")
- (license license:artistic2.0)))
-
(define-public r-raremetals2
(package
(name "r-raremetals2")
- 39/54: gnu: r-rhtslib: Move to (gnu packages bioconductor)., (continued)
- 39/54: gnu: r-rhtslib: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 23/54: gnu: r-keggrest: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 30/54: gnu: r-vsn: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 35/54: gnu: r-sva: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 38/54: gnu: r-zlibbioc: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 41/54: gnu: r-rcas: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 44/54: gnu: r-rhdf5filters: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 47/54: gnu: r-chipseq: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 45/54: gnu: r-annotationfilter: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 49/54: gnu: r-copywriter: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 50/54: gnu: r-methylkit: Move to (gnu packages bioconductor).,
guix-commits <=
- 53/54: gnu: r-spp: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 52/54: gnu: r-geneoverlap: Move out of experiment section., guix-commits, 2021/05/31
- 37/54: gnu: r-seqlogo: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 40/54: gnu: r-bamsignals: Move to (gnu packages bioconductor)., guix-commits, 2021/05/31
- 54/54: gnu: r-chipseeker: Move out of experiment section., guix-commits, 2021/05/31