-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* README: Add links to folders * Put dev-related sections in contributing guide … instead of the top-level README (except for the pre-commit.ci badge - these badges seem to be commonly put at the top of the READMEs for other repos). * Remove snakefmt CI job Snakefmt is now run as a part of pre-commit.ci, so the inclusion here is redundant. * Update contributing guide
- Loading branch information
Showing
3 changed files
with
26 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,14 @@ | ||
# Nextstrain repository for mpox virus | ||
|
||
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/nextstrain/monkeypox/master.svg)](https://results.pre-commit.ci/latest/github/nextstrain/monkeypox/master) | ||
|
||
This repository contains two workflows for the analysis of mpox virus (MPXV) data: | ||
|
||
- `ingest/` - Download data from GenBank, clean and curate it and upload it to S3 | ||
- `phylogenetic/` - Make phylogenetic trees for nextstrain.org | ||
- [`ingest/`](./ingest) - Download data from GenBank, clean and curate it and upload it to S3 | ||
- [`phylogenetic/`](./phylogenetic) - Make phylogenetic trees for nextstrain.org | ||
|
||
Each folder contains a README.md with more information. | ||
|
||
## CI | ||
|
||
This repository uses GitHub Actions for CI. The workflows are defined in `.github/workflows/`. | ||
|
||
## Development | ||
|
||
### Pre-commit | ||
|
||
This repository uses [pre-commit](https://pre-commit.com/) to run checks on the code before committing. | ||
|
||
To install pre-commit on macOS, run: | ||
|
||
```bash | ||
brew install pre-commit | ||
``` | ||
|
||
To install pre-commit on Ubuntu, run: | ||
|
||
```bash | ||
sudo apt install pre-commit | ||
``` | ||
|
||
To activate pre-commit, run: | ||
|
||
```bash | ||
pre-commit install | ||
``` | ||
|
||
## Development | ||
|
||
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/nextstrain/monkeypox/master.svg)](https://results.pre-commit.ci/latest/github/nextstrain/monkeypox/master) | ||
## Documentation | ||
|
||
This repository can be used with pre-commit to automatically run checks before committing. | ||
- [Contributor documentation](./CONTRIBUTING.md) |