-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
51 lines (34 loc) · 2.04 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ohcleandat
<!-- badges: start -->
[![R-CMD-check](https://github.com/ecohealthalliance/ohcleandat/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ecohealthalliance/ohcleandat/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
This package provides useful functions to orchestrate analytics and data cleaning pipelines for One Health projects.
## Installation
You can install the development version of ohcleandat from [GitHub](https://github.com/ecohealthalliance/ohcleandat) with:
``` r
# install.packages("devtools")
devtools::install_github("ecohealthalliance/ohcleandat")
```
## Getting Started
For help guides, check out the package vignettes.
## Contributions
This project uses the [Gitflow workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow).
All new feature requests should be done in a new branch based on `dev` or a fork of `dev`. New branches can take the form `feature/*` or `fix/*`. Once the feature is complete, automated CI checks and merge checks will be performed and a pull request should be raised to merge changes into `dev`.
Once the package is nearing a release, a `release/x.x.x` branch should be created from the head of `dev`. This is used to make any changes to convert the code to production level and to increment the version number and make release notes if required before raising a PR into `main`. Once the PR into `main` is accepted, a github release should be performed, using the package version
as the tag.
A final step is deleting any feature and release branches and merging `main` back into `dev` and
incrementing the `dev` version to `x.x.x.9000`.
## Getting Help
If you encounter a clear bug, please file a minimal reproducible example on [github](https://github.com/ecohealthalliance/ohcleandat/issues).