diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-29 21:38:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:59 +0100 |
commit | 5f8f7435a228a4df0a47e36c9e52d988f145c3a0 (patch) | |
tree | 5a2d098bbc995c1353598c326e2daf12d5045717 /gnu/packages/bioconductor.scm | |
parent | 85c3a9385fb96c5c152a625968d20bdb66c31d9d (diff) | |
download | guix-5f8f7435a228a4df0a47e36c9e52d988f145c3a0.tar.gz guix-5f8f7435a228a4df0a47e36c9e52d988f145c3a0.zip |
gnu: Add r-chipexoqualexample.
* gnu/packages/bioconductor.scm (r-chipexoqualexample): New variable.
Change-Id: I181bb085e441d056d886d4110a46668d92cd39f4
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index ac73a8aec0..5b283863bb 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2262,6 +2262,28 @@ single-cell data or deconvolution of bulk RNA-seq.") and blood controls for CNA analysis.") (license license:gpl3))) +(define-public r-chipexoqualexample + (package + (name "r-chipexoqualexample") + (version "1.30.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "ChIPexoQualExample" version + 'experiment)) + (sha256 + (base32 "0c6lxl79j65pqy6sgnwaqz83r9fwh0m10xmnj9zcp8s0j1cxn5xq")))) + (properties `((upstream-name . "ChIPexoQualExample"))) + (build-system r-build-system) + (native-inputs (list r-knitr)) + (home-page "https://www.github.com/keleslab/ChIPexoQualExample") + (synopsis "Example data for the ChIPexoQual package") + (description + "This package contains data for the @code{ChIPexoQual} package, +consisting of 3 chromosome 1 aligned reads from a @code{ChIP-exo} experiment +for @code{FoxA1} in mouse liver cell lines aligned to the mm9 genome.") + (license license:gpl2+))) + (define-public r-chromstardata (package (name "r-chromstardata") |