Skip to content

Commit

Permalink
feat(mi): add STRdust alias for generic VCF calculator
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Dec 20, 2024
1 parent b93bcf3 commit 6266152
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions strkit/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
CALLER_GANGSTR = "gangstr"
CALLER_GENERIC_VCF = "generic-vcf"
CALLER_REPEATHMM = "repeathmm"
CALLER_STRDUST = "strdust"
CALLER_STRAGLR = "straglr"
CALLER_STRKIT = "strkit"
CALLER_STRKIT_JSON = "strkit-json"
Expand Down Expand Up @@ -51,6 +52,7 @@
CALLER_GENERIC_VCF,
CALLER_LONGTR,
CALLER_REPEATHMM,
CALLER_STRDUST,
CALLER_STRAGLR,
CALLER_STRKIT,
CALLER_STRKIT_JSON,
Expand Down
3 changes: 2 additions & 1 deletion strkit/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,9 @@ def _exec_mi(p_args) -> None:
c.CALLER_EXPANSIONHUNTER: ExpansionHunterCalculator,
c.CALLER_GANGSTR: GangSTRCalculator,
c.CALLER_GENERIC_VCF: GenericVCFLengthCalculator,
c.CALLER_LONGTR: GenericVCFLengthCalculator,
c.CALLER_LONGTR: GenericVCFLengthCalculator, # Alias
c.CALLER_REPEATHMM: RepeatHMMCalculator,
c.CALLER_STRDUST: GenericVCFLengthCalculator, # Alias
c.CALLER_STRAGLR: StraglrCalculator,
c.CALLER_STRKIT: StrKitCalculator,
c.CALLER_STRKIT_JSON: StrKitJSONCalculator,
Expand Down

0 comments on commit 6266152

Please sign in to comment.