diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2023-09-01 20:45:11 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-09-02 11:12:19 +0200 |
commit | 9f1f80e24b23bc3d5f8b7cbe2196b31672b539cb (patch) | |
tree | 36709e4d4e58ee97fc8ca7498a5b60370004b16d /gnu/packages/cran.scm | |
parent | f6cf746938d29ab3d0888a5e58cad97ce634766a (diff) | |
download | guix-9f1f80e24b23bc3d5f8b7cbe2196b31672b539cb.tar.gz |
gnu: Add r-strawr.
* gnu/packages/cran.scm (r-strawr): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4ec6b802ff..b6a01a99b0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8287,6 +8287,29 @@ graphing packages. This package also forms the statistical processing backend for ggstatsplot.") (license license:gpl3))) +(define-public r-strawr + (package + (name "r-strawr") + (version "0.0.91") + (source (origin + (method url-fetch) + (uri (cran-uri "strawr" version)) + (sha256 + (base32 + "1nbcn20g3f3f5x9sscj3020n5h4iaphr70s90n2fz31vc4snzq2m")))) + (properties `((upstream-name . "strawr"))) + (build-system r-build-system) + (inputs (list curl zlib)) + (propagated-inputs (list r-rcpp)) + (home-page "https://github.com/aidenlab/straw/tree/master/R") + (synopsis "Fast implementation of reading / dumping of .hic files") + (description + "This package provides an API for efficient @file{.hic} file data +extraction with programmatic matrix access. It doesn't store the pointer data +for all the matrices, only the one queried, and currently it only supports +matrices.") + (license license:expat))) + (define-public r-stringdist (package (name "r-stringdist") |