Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix free disk space #268

Merged
merged 3 commits into from
Oct 26, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: update apt
run: sudo apt-get update
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@v1.2.0
uses: jlumbroso/free-disk-space@v1.3.0
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
Expand All @@ -57,7 +57,7 @@ jobs:
dotnet: true
haskell: true
large-packages: true
docker-images: true
docker-images: false
swap-storage: true

- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/candidate_calling.smk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rule freebayes:
),
threads: max(workflow.cores - 1, 1) # use all available cores -1 (because of the pipe) for calling
wrapper:
"v2.3.2/bio/freebayes"
"v2.7.0/bio/freebayes"


rule delly:
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ rule multiqc:
log:
"logs/multiqc/{group}.log",
wrapper:
"v2.3.2/bio/multiqc"
"v2.7.0/bio/multiqc"
Loading