-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new directory structure and adjust the notebook * Adjust the paths in the snakemake workflow
- Loading branch information
1 parent
d3a572b
commit 67b6b30
Showing
11 changed files
with
54 additions
and
13 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Private files | ||
private/ | ||
data/ | ||
# Snakemake-generated files | ||
generated/ | ||
.snakemake/ | ||
|
||
.DS_Store | ||
src/.DS_Store | ||
|
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,12 @@ | ||
*.csv | ||
*.tsv | ||
*.yml | ||
*.yaml | ||
*.npy | ||
*.npz | ||
*.zip | ||
*.png | ||
*.jpg | ||
*.gif |
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,19 @@ | ||
# Main data set | ||
|
||
This is the main data set from which we load the data. | ||
|
||
Structure: | ||
|
||
data/main | ||
├── deconvolved.csv | ||
├── README.md | ||
└── var_dates.yaml | ||
|
||
Checksums: | ||
``` | ||
$ sha256sum data/main/deconvolved.csv | ||
b8dbd93634a6310e13f639eff5402b40d47ed484a905d450b4e0a518d18d0f04 data/main/deconvolved.csv | ||
$ sha256sum data/main/var_dates.yaml | ||
a6464599af6859d9542862e081766d31baffd7bc36792a0c671501142f9eda66 data/main/var_dates.yaml | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
results/ | ||
.snakemake/ |
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,11 @@ | ||
# Comparison with clinical data | ||
|
||
To run the workflow, ensure that you have the `data/main` directory set up with the data. | ||
Note that the workflow should be run from this directory: | ||
|
||
Usage: | ||
|
||
```bash | ||
$ snakemake -s compare_clinical.smk --configfile CONFIG_NAME.yaml | ||
``` | ||
|
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
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