Skip to content

Commit

Permalink
Updates to README
Browse files Browse the repository at this point in the history
  • Loading branch information
amyheather committed Jun 11, 2024
1 parent e132ce7 commit 833f5a1
Showing 1 changed file with 27 additions and 20 deletions.
47 changes: 27 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# STARS: Computational reproducibility of Allen et al. 2020

<!-- Status badges checking:
* Whether CITATION file is still valid via GitHub action -->
<!-- Status badge from GitHub action checking validity of CITATION.cff -->
[![Valid CITATION.cff](https://github.com/pythonhealthdatascience/stars-reproduce-allen-2020/actions/workflows/cff_validation.yaml/badge.svg)](https://github.com/pythonhealthdatascience/stars-reproduce-allen-2020/actions/workflows/cff_validation.yaml)

⚠️ ***This is a test-run for STARS work package 1 using a paper that Tom Monks was involved with. It was created to help us test out the reproduction protocol and guide creation of the [template repository](https://github.com/pythonhealthdatascience/stars_reproduction_template).*** ⚠️

This repository forms part of work package 1 on the NIHR-funded project STARS: Sharing Tools and Artefacts for Reproducible Simulations. It assesses the computational reproducibility of:
This repository forms part of work package 1 on the project STARS: Sharing Tools and Artefacts for Reproducible Simulations. It assesses the computational reproducibility of:

> Allen, M., Bhanji, A., Willemsen, J., Dudfield, S., Logan, S., & Monks, T. **A simulation modelling toolkit for organising outpatient dialysis services during the COVID-19 pandemic**. *PLoS One* 15, 8 (2020). <https://doi.org/10.1371%2Fjournal.pone.0237628>
Expand All @@ -22,14 +21,16 @@ This website is created using Quarto and hosted using GitHub Pages. It shares ev
* Logbook with chronological entries detailing reproduction work.
* Final report describing the computational reproducibility assessment.

## Repository layout
## Repository overview

```bash
├── .github
│ └── workflows
│ └── ...
├── evaluation
│ └── ...
├── logbook
│ └── ...
├── original_study
│ └── ...
├── quarto_site
Expand All @@ -49,22 +50,28 @@ This website is created using Quarto and hosted using GitHub Pages. It shares ev
└── requirements.txt
```

* `.github/workflows/` - GitHub actions
* `evaluation/` - Markdown files from the evaluation of computational reproducibility. This includes the logbook, assessment of reproduction success, and comparison of the original study materials against various guidelines, criteria and frameworks
* `original_study/` - Journal article, supplementary material, code and any other research artefacts from the original study. These items are uploaded here for reference, but should be otherwise untouched.
* `quarto_site/` - A Quarto website is used to share information from this repository (including the original study, reproduced model, and reproducibility evaluation). This folder contains any additional files required for creation of the site that do not otherwise belong in the other folders (for example, logo image files, or `.qmd` files that appropriately pull and display the original study PDF on the website)
* `reproduction/` - Reproduction of the simulation model. Once complete, this functions as a research compendium for the model, containing all the code, parameters, outputs and documentation
* `.gitignore` - Instructions for Git of which local objects should not be included in the repository
* `CHANGELOG.md` - Details changes between versions (as in GitHub releases and versions on Zenodo)
* `CITATION.cff` - Instructions for citing this repository, created using [CFF INIT](https://citation-file-format.github.io/)
* `CONTRIBUTING.md` - Contribution instructions for repository
* `LICENSE` - Details of the license for this work
* `README.md` - Description for this repository. You'll find a seperate README for the model within the `reproduction/` folder, and potentially also the `original_study/` folder if a README was created by the original study authors
* `_quarto.yml` - Set-up instructions for the Quarto website
* `citation_apalike.bib` - APA citation generated from CITATION.cff
* `citation_bibtex.bib` - Bibtex citation generated from CITATION.cff
* `index.qmd` - Home page for the Quarto website
* `requirements.txt` - Environment for creation of Quarto site (used by `.github/workflows/quarto_publish.yaml`)
**Key sections:** This files have all the content related to the original study and reproduction...

* **`original_study/`** - Original study materials (i.e. journal article, supplementary material, code and any other research artefacts).
* **`reproduction/`** - Reproduction of the simulation model. Once complete, this functions as a research compendium for the model, containing all the code, parameters, outputs and documentation.
* **`evaluation/`** - Quarto documents from the evaluation of computational reproducibility. This includes the scope, assessment of reproduction success, and comparison of the original study materials against various guidelines, and summary report.
* **`logbook/`** - Daily record of work on this repository.

**Other sections:** The following files support creation of the Quarto site to share the reproduction, or are other files important to the repository (e.g. `README`, `LICENSE`, `.gitignore`)...

* `.github/workflows/` - GitHub actions.
* `quarto_site/` - A Quarto website is used to share information from this repository (including the original study, reproduced model, and reproducibility evaluation). This folder contains any additional files required for creation of the site that do not otherwise belong in the other folders.
* `.gitignore` - Untracked files.
* `CHANGELOG.md` - Description of changes between GitHub releases and the associated versions on Zenodo.
* `CITATION.cff` - Instructions for citing this repository, created using [CFF INIT](https://citation-file-format.github.io/).
* `CONTRIBUTING.md` - Contribution instructions for repository.
* `LICENSE` - Details of the license for this work.
* `README.md` - Description for this repository. You'll find a seperate README for the model within the `reproduction/` folder, and potentially also the `original_study/` folder if a README was created by the original study authors.
* `_quarto.yml` - Set-up instructions for the Quarto website.
* `citation_apalike.bib` - APA citation generated from CITATION.cff.
* `citation_bibtex.bib` - Bibtex citation generated from CITATION.cff.
* `index.qmd` - Home page for the Quarto website.
* `requirements.txt` - Environment for creation of Quarto site (used by `.github/workflows/quarto_publish.yaml`).

## Citation

Expand Down

0 comments on commit 833f5a1

Please sign in to comment.