Skip to content

Commit

Permalink
added back readme
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewphamilton committed Oct 3, 2023
1 parent a3f5ec2 commit 01d097a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# ready4pack

## Author R Packages of Health Economic Model Modules

<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![ready4](https://img.shields.io/badge/ready4-authoring-maroon?style=flat&labelColor=black&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC)](https://www.ready4-dev.com/docs/software/libraries/types/framework/)
[![R-CMD-check](https://github.com/ready4-dev/ready4pack/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ready4-dev/ready4pack/actions/workflows/R-CMD-check.yaml)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5644322.svg)](https://doi.org/10.5281/zenodo.5644322)
<!-- badges: end -->

ready4pack provides a set of tools for authoring R packages
of model modules developed with the ready4 framework
(https://www.ready4-dev.com/). This development version of the
ready4pack package has been made available as part of the process of
testing and documenting the package. Therefore you should only trial
this software if you feel confident that you understand what it does
and have created a sandpit area in which you can safely undertake
testing. If you have any questions, please contact the authors
([email protected]).

To install a development version of this software, run the following commands in your R console:

```r
utils::install.packages("devtools")

devtools::install_github("ready4-dev/ready4pack")

```
6 changes: 3 additions & 3 deletions data-raw/DATASET.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ write_to_edit_workflow("pkgdown.yaml") # In other packages, run for "test-covera
readLines("_pkgdown.yml") %>%
stringr::str_replace_all(" - text: Model", " - text: Framework & Model") %>%
writeLines(con = "_pkgdown.yml")
readme_chr <- readLines("README.md")
readme_chr[-which(readme_chr %>% purrr::map_lgl(~startsWith(.x, "[![test-coverage]")))] %>%
writeLines(con = "README.md")
# readme_chr <- readLines("README.md")
# readme_chr[-which(readme_chr %>% purrr::map_lgl(~startsWith(.x, "[![test-coverage]")))] %>%
# writeLines(con = "README.md")
devtools::build_vignettes()

0 comments on commit 01d097a

Please sign in to comment.