diff mbox series

[bug#59543] Added r-rfacts, whoch is a none free package to cran.scm

Message ID 20221124151211.59764-1-navid.afkhami@mdc-berlin.de
State New
Headers show
Series [bug#59543] Added r-rfacts, whoch is a none free package to cran.scm | expand

Commit Message

nafkhamdc Nov. 24, 2022, 3:12 p.m. UTC
---
 guix-science-nonfree/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

Comments

Ricardo Wurmus Nov. 24, 2022, 4:41 p.m. UTC | #1
Hi,

thanks for the patch.

Since this is a patch for the “guix-science-nonfree” channel, the
contribution is handled as a pull request against that channel’s
repository.

Closing here and continuing there!
diff mbox series

Patch

diff --git a/guix-science-nonfree/packages/cran.scm b/guix-science-nonfree/packages/cran.scm
index c320a55..fdb1e63 100644
--- a/guix-science-nonfree/packages/cran.scm
+++ b/guix-science-nonfree/packages/cran.scm
@@ -53,3 +53,29 @@  interpolator on regular grids.")
     (license
      (nonfree "https://cran.r-project.org/web/packages/akima/LICENSE"
               "Non-commercial, ACM"))))
+
++(define-public r-rfacts
+  (package
+    (name "r-rfacts")
+    (version "0.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "rfacts" version))
+              (sha256
+               (base32
+                "0h2ryyl5zc3pxi85y0qwadfz7sdzz0m6ilwzabw317sb0z5lms5b"))))
+    (properties `((upstream-name . "rfacts")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-digest r-fs r-tibble r-xml2))
+    (native-inputs (list r-knitr))
+    (home-page "https://elilillyco.github.io/rfacts/")
+    (synopsis "Tool for invoking FACTS to run clinical trial simulations")
+    (description
+     "The rfacts package is an R interface to the Fixed and Adaptive
+Clinical Trial         Simulator @code{FACTS}. It programmatically
+invokes @code{FACTS} to run clinical trial simulations.It
+aggregates simulation output data into tidy data frames. These
+capabilities provide end-to-end automation for large-scale simulation
+pipelines, and they enhance computational reproducibility.")   
+
+    (license license:expat)))