Skip to content

Commit

Permalink
change type of parameters to adhere to specification of EBFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuela Benary committed Dec 12, 2024
1 parent 0d03919 commit db30f80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions snappy_pipeline/workflows/somatic_variant_filtration/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ class FilterSets(SnappyModel):
class EbfilterSet(SnappyModel):
shuffle_seed: int = 1
panel_of_normals_size: int = 25
min_mapq: float = 20
min_baseq: float = 15
min_mapq: int = 20
min_baseq: int = 15


class Ebfilter(SnappyModel):
ebfilter_threshold: float = 2.4
shuffle_seed: int = 1
panel_of_normals_size: int = 25
min_mapq: float = 20
min_baseq: float = 15
min_mapq: int = 20
min_baseq: int = 15


class Dkfz(SnappyModel):
Expand Down

0 comments on commit db30f80

Please sign in to comment.