diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2023-03-03 13:07:15 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-03 15:11:42 +0100 |
commit | 351de7426ca9d4f743ba83b129b6d44534394541 (patch) | |
tree | 68bcc7cbacf185481db291b4e7407b2f57a75ff6 /gnu | |
parent | 6385070190348acd61ae3fac4aaccdbcc61797ed (diff) |
gnu: Add r-stringendo.
* gnu/packages/bioinformatics.scm (r-stringendo): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 858fd1e975..be45a8ffbf 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -793,6 +793,31 @@ high-throughput sequence analysis. The package is primarily useful to developers of other R packages who wish to make use of HTSlib.") (license license:lgpl2.0+)))) +(define-public r-stringendo + (let ((commit "83b8f2d82a09b33b9e895438bb523a021138be01") + (revision "1")) + (package + (name "r-stringendo") + (version (git-version "0.3.4" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vertesy/Stringendo") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ap0nhbyd6xx0yl2vgmwk38p22yrkv4k9hw13r35z4wf343rry6v")))) + (properties `((upstream-name . "Stringendo"))) + (build-system r-build-system) + (propagated-inputs (list r-devtools r-usethis)) + (home-page "https://github.com/vertesy/Stringendo") + (synopsis "Stringendo is a string parsing library") + (description + "This package provides string parsing functionalites for generating +plotnames, filenames and paths.") + (license license:gpl3)))) + (define-public r-streamgraph (let ((commit "76f7173ec89d456ace5943a512e20b1f6810bbcb") (revision "1")) |