Skip to content

Commit

Permalink
Merge branch 'master' into fusion_calling
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMoelder authored Oct 26, 2023
2 parents 333ae5e + 4250165 commit 289315a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [5.0.2](https://github.com/snakemake-workflows/dna-seq-varlociraptor/compare/v5.0.1...v5.0.2) (2023-10-09)


### Bug Fixes

* remove superfluous import of FTP remote provider ([ae68b90](https://github.com/snakemake-workflows/dna-seq-varlociraptor/commit/ae68b9079b92ddf6b0ace6888c171381d297ceee))

## [5.0.1](https://github.com/snakemake-workflows/dna-seq-varlociraptor/compare/v5.0.0...v5.0.1) (2023-08-25)


Expand Down
3 changes: 1 addition & 2 deletions workflow/rules/candidate_calling.smk
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ rule freebayes:
),
threads: max(workflow.cores - 1, 1) # use all available cores -1 (because of the pipe) for calling
wrapper:
#update to new release once available
"v2.6.0-35-g755343f/bio/freebayes"
"v2.7.0/bio/freebayes"


rule delly:
Expand Down
3 changes: 0 additions & 3 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ from os import path

import yaml
import pandas as pd
from snakemake.remote import FTP
from snakemake.utils import validate

ftp = FTP.RemoteProvider()

validate(config, schema="../schemas/config.schema.yaml")

samples = (
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"

0 comments on commit 289315a

Please sign in to comment.