diff options
author | Spencer King <spencer.king@geneoscopy.com> | 2024-02-20 21:37:45 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-08-26 12:24:59 +0200 |
commit | 7578bf8457c49f1e74585be84d0a6b91078461bd (patch) | |
tree | ee29faf879ceeadad242a34d636bde3336961c91 | |
parent | b70de89f2134a91b8dcd932ab9e1c8f84d3fa5a5 (diff) | |
download | guix-7578bf8457c49f1e74585be84d0a6b91078461bd.tar.gz guix-7578bf8457c49f1e74585be84d0a6b91078461bd.zip |
gnu: Add r-fuzzyjoin.
* gnu/pacakges/cran.scm (r-fuzzyjoin): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Change-Id: I47fd35ac4759c8c9cceaac32a5b78c2306404903
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 39bd480e90..b7c71706d1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -38,6 +38,7 @@ ;;; Copyright © 2022-2024 Navid Afkhami <navid.afkhami@mdc-berlin.de> ;;; Copyright © 2022 Greg Hogan <code@greghogan.com> ;;; Copyright © 2024 Marco Baggio <guix@mawumag.com> +;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1008,6 +1009,34 @@ work with FlowSOM and flow-cytometry use-cases.") Distance (EMD).") (license license:expat))) +(define-public r-fuzzyjoin + (package + (name "r-fuzzyjoin") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (cran-uri "fuzzyjoin" version)) + (sha256 + (base32 "0s5rhqz8vih4za3a8k1k7i3gq8hj0w7bqnakw40k6mg87jvyzsj7")))) + (properties `((upstream-name . "fuzzyjoin"))) + (build-system r-build-system) + (propagated-inputs (list r-dplyr + r-geosphere + r-purrr + r-stringdist + r-stringr + r-tibble + r-tidyr)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/dgrtwo/fuzzyjoin") + (synopsis "Join tables together on inexact matching") + (description + "Join tables together based not on whether columns match exactly, but +whether they are similar by some comparison. Implementations include string +distance and regular expression matching.") + (license license:expat))) + (define-public r-gfonts (package (name "r-gfonts") |