Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ jobs:
- name: Run Snakemake workflow for DMMMs
shell: bash --login {0}
run: snakemake --cores 4 --configfile configs/dmmm.yaml --show-failed-logs -s spras/Snakefile
# TODO: re-enable PRAs once RN/synthetic data PRs are merged.
# - name: Run Snakemake workflow for PRAs
# shell: bash --login {0}
# run: snakemake --cores 1 --configfile configs/pra.yaml --show-failed-logs -s spras/Snakefile
- name: Run Snakemake workflow for PRAs
shell: bash --login {0}
run: snakemake --cores 1 --configfile configs/pra.yaml --show-failed-logs -s spras/Snakefile
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion datasets/rn-muscle-skeletal/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rule get_interactome:
output:
"raw/Muscle_Skeletal-Dec2018.tsv"
shell:
"uv run gdown https://drive.google.com/file/d/1mkvWrCkeDz1DU-PSEsRaGNM20EcpVLwE/view?usp=sharing -O raw/Muscle_Skeletal-Dec2018.tsv"
"uv run gdown https://drive.google.com/uc?id=1mkvWrCkeDz1DU-PSEsRaGNM20EcpVLwE -O raw/Muscle_Skeletal-Dec2018.tsv"

rule process_interactome:
input:
Expand Down
1 change: 1 addition & 0 deletions run_snakemake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cd "$(dirname "$0")"
main() {
uv run snakemake --cores 1 -d datasets/yeast-osmotic-stress -s datasets/yeast-osmotic-stress/Snakefile
uv run snakemake --cores 1 -d datasets/hiv -s datasets/hiv/Snakefile
uv run snakemake --cores 1 -d datasets/rn-muscle-skeletal -s datasets/rn-muscle-skeletal/Snakefile
}

main "$@"
Loading