epiwave.pipelines
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 1 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.9%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: idem-lab
- Language: R
- Default Branch: main
- Size: 745 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 3
- Open Issues: 14
- Releases: 2
Metadata Files
README.md
epiwave.pipelines
Repository for the new $Reff$ model using Gaussian Processes with greta. This model is centered on estimation of the infection timeseries, from which $Reff$ can be calculated when we add generation interval information.
This workflow has separate components for PCR and RAT data, and estimates separately by jurisdiction, in this case Australian state.
Instructions for contributing to this repository
Setting up
- Fork this repo into personal GitHub account
- Navigate to your fork [username]/epiwave.pipelines and clone a local version to your machine
- Open new project from version control in local RStudio
- Configure your remote repository
list remotes ``` git remote -v
origin git@github.com:[YOURUSERNAME]/epiwave.pipelines.git (fetch) origin git@github.com:[YOURUSERNAME]/epiwave.pipelines.git (push) ```
add upstream
git remote add upstream git@github.com:idem-lab/epiwave.pipelines.gitverify by checking remotes again ``` git remote -v
origin git@github.com:[YOURUSERNAME]/epiwave.pipelines.git (fetch) origin git@github.com:[YOURUSERNAME]/epiwave.pipelines.git (push) upstream git@github.com:idem-lab/epiwave.pipelines.git (fetch) upstream git@github.com:idem-lab/epiwave.pipelines.git (push) ```
Making changes
- Before beginning new work, make sure your fork is up to date with the remote
``` # if you are not on main branch git checkout main
# fetch from upstream repo git fetch upstream main
# then merge git merge upstream/main ```
- Make a new branch for your changes using:
git checkout -b <dev-branch>
Try and use a descriptive name for the new branch, for example 'updateCAR'
When you've made your changes, commit all changes to your branch, then repeat step 1 if necessary (if there have been changes to upstream)
Merge your new branch into your main, using
--no-ffto indicate 'no fast forward' because we want a commit recording the merge
git checkout main
git merge --no-ff <dev-branch>
- Add commit message, then push to origin and delete dev branch
git push origin main
git branch --delete <dev-branch>
- Create pull request on GitHub
Resources
Owner
- Name: The Infectious Disease Ecology and Modelling Team
- Login: idem-lab
- Kind: organization
Citation (CITATION.cff)
cff-version: 1.1.0 message: "If you use this software, please cite it as below." authors: - family-names: "Windecker" given-names: "Saras Mei" orcid: "https://orcid.org/0000-0002-4870-8353" - family-names: "Hao" given-names: "Tianxiao" orcid: "https://orcid.org/0000-0003-4363-1956" - family-names: "Senior" given-names: "Kate" orcid: "https://orcid.org/0000-0003-1123-1472" - family-names: "Golding" given-names: "Nick" orcid: "https://orcid.org/0000-0001-8916-5570" title: "idem-lab/epiwave.pipelines: First minor release" version: v.0.0.9-DEV date-released: 2023-12-18 <<<<<<< HEAD doi: XXXXXX url: "https://github.com/idem-lab/epiwave.pipelines" ======= doi: 10.5281/zenodo.10400665 url: "https://github.com/idem-lab/GPreff" >>>>>>> origin/main
GitHub Events
Total
- Release event: 1
- Create event: 1
Last Year
- Release event: 1
- Create event: 1
Dependencies
- greta.gpgreta.dynamics * imports
- testthat >= 3.0.0 suggests