diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2022-06-27 23:39:36 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-10-27 15:50:33 +0200 |
commit | f0d0b6a0c5e3cc5d7232ef16c5ded3dfc458bf01 (patch) | |
tree | 91b8632ebcdc6e264dd58dd0e444d1e8bdbc00bc /gnu | |
parent | c969517cec2b403c13cb9150e12a4e6804b5326e (diff) |
gnu: Add r-badregionfinder.
* gnu/packages/bioconductor.scm (r-badregionfinder): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 111785800f..7aef32286a 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2428,6 +2428,33 @@ variables in the model can be returned in the form of posterior samples, which can be used for further down-stream analyses such as gene set enrichment.") (license license:gpl2))) +(define-public r-badregionfinder + (package + (name "r-badregionfinder") + (version "1.24.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "BadRegionFinder" version)) + (sha256 + (base32 + "1a1pqmh5ak9s3k1lxw6flanchk24zyznwm34ixi2b78wdc3hqgm9")))) + (properties `((upstream-name . "BadRegionFinder"))) + (build-system r-build-system) + (propagated-inputs + (list r-biomart + r-genomicranges + r-rsamtools + r-s4vectors + r-variantannotation)) + (home-page "https://bioconductor.org/packages/BadRegionFinder") + (synopsis "Identifying regions with bad coverage in sequence alignment data") + (description + "BadRegionFinder is a package for identifying regions with a bad, +acceptable and good coverage in sequence alignment data available as bam +files. The whole genome may be considered as well as a set of target regions. +Various visual and textual types of output are available.") + (license license:lgpl3))) + (define-public r-biocversion (package (name "r-biocversion") |