-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- only attempt to execute tutorials with jupytext - introduction - cluster section for SARS-CoV-2
- Loading branch information
Showing
4 changed files
with
115 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Tutorials | ||
|
||
You can find two tutorials in this directory: | ||
|
||
- [tutorial_hiv.md](tutorial_hiv.md): uses HIV test data | ||
- [tutorial_sarscov2.md](tutorial_sarscov2.md): uses SARS-CoV-2 data from a publication | ||
|
||
## Note about the tutorials | ||
|
||
Due to automated texting, each copy-pastable block begins with a command entering the directory and ends with on leaving the directory: | ||
|
||
```bash | ||
cd tutorial/work/ | ||
# do something | ||
cd ../.. | ||
``` | ||
Of course you don't necessarily need to do that. You can simply remainin the working directory. | ||
|
||
When editing files like `config.yaml`, you can use your favorite editor (`vim`, `emacs`, `nano`, [butterflies](https://xkcd.com/378/), etc.). By default our tutorial use heredocs to make it easier to copy-paste the blocks into bash: | ||
|
||
```bash | ||
cat > config.yaml <<EOF | ||
general: | ||
virus_base_config: 'sars-cov-2' | ||
EOF | ||
``` |
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