Skip to content

Commit ea983ea

Browse files
authored
Merge branch 'master' into feat/varpubs
2 parents 1855286 + 85ca86e commit ea983ea

7 files changed

Lines changed: 20 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [6.6.1](https://github.com/snakemake-workflows/dna-seq-varlociraptor/compare/v6.6.0...v6.6.1) (2026-03-18)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* release 6.6.1 ([4ecaa79](https://github.com/snakemake-workflows/dna-seq-varlociraptor/commit/4ecaa7939bf3e555dac12cea6fed7d7e605a7b38))
9+
310
## [6.6.0](https://github.com/snakemake-workflows/dna-seq-varlociraptor/compare/v6.5.2...v6.6.0) (2026-03-06)
411

512

workflow/rules/candidate_calling.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rule freebayes:
1818
config["params"]["freebayes"].get("min_alternate_fraction", "0.05"),
1919
config["params"]["freebayes"].get("extra", ""),
2020
),
21-
threads: max(workflow.cores - 1, 1) # use all available cores -1 (because of the pipe) for calling
21+
threads: 96 # with more cores, we expect freebayes to become too IO bound and memory hungry
2222
wrapper:
2323
"v2.7.0/bio/freebayes"
2424

workflow/rules/table.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rule vembrane_table:
1111
log:
1212
"logs/vembrane-table/{group}.{event}.{calling_type}.log",
1313
shell:
14-
'vembrane table --header "{params.config[header]}" "{params.config[expr]}" '
14+
'vembrane table --wide --header "{params.config[header]}" "{params.config[expr]}" '
1515
"{input.bcf} > {output.bcf} 2> {log}"
1616

1717

workflow/schemas/config.schema.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-07/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22

33
description: snakemake configuration file
44

@@ -31,7 +31,7 @@ definitions:
3131
properties:
3232
varlociraptor:
3333
type: array
34-
items:
34+
items:
3535
type: string
3636
filter:
3737
anyOf:
@@ -93,7 +93,7 @@ properties:
9393
trimming:
9494
type: object
9595
properties:
96-
activate:
96+
activate:
9797
type: boolean
9898
primers_fq1:
9999
type: string
@@ -145,7 +145,7 @@ properties:
145145
type: string
146146
events:
147147
type: array
148-
items:
148+
items:
149149
type: string
150150
required:
151151
- activate
@@ -164,7 +164,7 @@ properties:
164164
type: boolean
165165
annotation_fields:
166166
type: array
167-
items:
167+
items:
168168
anyOf:
169169
- type: string
170170
- type: object
@@ -224,7 +224,7 @@ properties:
224224
type: boolean
225225
mode:
226226
type: string
227-
enum:
227+
enum:
228228
- local-smart
229229
- local-strict
230230
- global-smart
@@ -240,7 +240,7 @@ properties:
240240
- scenario
241241
- filter
242242
- fdr-control
243-
243+
244244
remove_duplicates:
245245
type: object
246246
properties:
@@ -266,7 +266,7 @@ properties:
266266
type: boolean
267267
datasources:
268268
type: array
269-
items:
269+
items:
270270
type: string
271271
vep:
272272
properties:

workflow/schemas/primers.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-04/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22
description: row of the primer_panels.tsv, representing a primer panel, i.e. single-end or paired-end data
33
type: object
44
properties:

workflow/schemas/samples.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ required:
6565
- calling
6666

6767
dependentRequired:
68-
umi_read: ["umi_len"]
68+
umi_read: ["umi_len"]

workflow/schemas/units.schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: "http://json-schema.org/draft-04/schema#"
1+
$schema: "https://json-schema.org/draft/2020-12/schema"
22
description: row of the units.tsv, representing a sequencing unit, i.e. single-end or paired-end data
33
type: object
44
properties:

0 commit comments

Comments
 (0)