Skip to content

Commit

Permalink
update default config
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMoelder committed Jul 5, 2024
1 parent 445ed65 commit 93dc780
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions workflow/resources/config/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ mutational_burden:
- somatic_tumor_low
- somatic_tumor_high

mutational_signatures:
activate: true
events:
- present_variants

# Sets the minimum average coverage for each gene.
# Genes with lower average coverage will not be concidered in gene coverage datavzrd report
# If not present min_avg_coverage will be set to 0 rendering all genes.
Expand All @@ -83,7 +88,7 @@ tables:
observations: true
short_observations: true
annotation_fields:
- expr: ANN['EXON'].raw
- expr: ANN['EXON_NUMBER'].raw
name: exon
generate_excel: true

Expand All @@ -102,7 +107,7 @@ calling:
) and
not ('intron_variant' in ANN['Consequence'] and not 'splice' in ANN['Consequence'])
af_highly_relevant: >-
(FORMAT['AF']['tumor'] >= 0.05 and (ANN['gnomADg_AF'] < 0.01 or ANN['gnomADg_AF'] is NA))
(FORMAT['AF']['tumor'] >= 0.05 and (ANN['gnomADg_AF'] is NA or ANN['gnomADg_AF'] < 0.01))
revel_malign: >-
(ANN['REVEL'] is NA or ANN['REVEL'] >= 0.5)
any_score_malign: >-
Expand Down Expand Up @@ -168,13 +173,21 @@ calling:
mode: local-smart
events:
unfiltered:
types: ["variants"]
types: ["variants", "fusions"]
varlociraptor: ["somatic_tumor_high", "somatic_tumor_low", "germline"]
desc: Unfiltered variants
labels:
callset: Unfiltered
impact: All
impact: all
subcategory: Unfiltered variant calls
present_variants:
types: ["variants"]
varlociraptor: ["somatic_tumor_high", "somatic_tumor_low"]
desc: Present variants
labels:
callset: present
impact: all
subcategory: somatic variants
?for event_type in ["somatic_or_germline", "loh"]:
?f"{event_type}_likely_high_relevance":
types: ["variants"]
Expand Down Expand Up @@ -289,7 +302,7 @@ calling:
subcategory: ?get_description(event_type)

?f"{event_type}_cancer_genes":
types: ["variants", "fusions"]
types: ["variants"]
varlociraptor: ?get_events(event_type)
filter:
- af_highly_relevant
Expand Down

0 comments on commit 93dc780

Please sign in to comment.