rekado pushed a commit to branch master
in repository guix.
commit 100f56024e72ad5effff340d34cd7a91a34a830a
Author: Nicolò Balzarotti <[email protected]>
Date: Thu Mar 14 10:53:25 2019 +0100
gnu: Add r-rematch2.
* gnu/packages/cran.scm (r-rematch2): New variable.
Signed-off-by: Ricardo Wurmus <[email protected]>
---
gnu/packages/cran.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b04a69d..eac6293 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2018 Leo Famulari <[email protected]>
;;; Copyright © 2018 Marius Bakke <[email protected]>
;;; Copyright © 2018, 2019 Brett Gilio <[email protected]>
+;;; Copyright © 2019 Nicolò Balzarotti <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -11717,3 +11718,24 @@ plotting functions are available for analyzing
clustering results.")
signals. It provides functionality similar to command-line tool suites within
R, enabling interactive analysis and visualization of genome-scale data.")
(license license:expat)))
+
+(define-public r-rematch2
+ (package
+ (name "r-rematch2")
+ (version "2.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "rematch2" version))
+ (sha256
+ (base32
+ "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-tibble" ,r-tibble)))
+ (home-page "https://github.com/r-lib/rematch2")
+ (synopsis "Tidy output from regular expression matching")
+ (description
+ "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
+return the match results in tidy data frames.")
+ (license license:expat)))