Skip to content

Commit

Permalink
fix filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbio committed Jan 30, 2025
1 parent c15c8c9 commit b743d4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BALSAMIC/constants/variant_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,6 @@ def get_filters(

class WgsSNVFilters(BaseSNVFilters):
research = [
VCFFilter(
filter_name="MERGED", Description="SNV Merged with neighboring variants"
),
VCFFilter(tag_value=0.01, filter_name="SWEGENAF", field="INFO"),
VCFFilter(tag_value=0.001, filter_name="balsamic_high_pop_freq", field="INFO"),
]
Expand Down Expand Up @@ -332,6 +329,9 @@ class WgsSNVFilters(BaseSNVFilters):

class TgaSNVFilters(BaseSNVFilters):
research = [
VCFFilter(
filter_name="MERGED", Description="SNV Merged with neighboring variants"
),
VCFFilter(tag_value=0.01, filter_name="SWEGENAF", field="INFO"),
VCFFilter(tag_value=0.005, filter_name="balsamic_high_pop_freq", field="INFO"),
]
Expand Down

0 comments on commit b743d4d

Please sign in to comment.