Skip to content

Commit

Permalink
Update DNAscope default arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
DonFreed committed Sep 9, 2024
1 parent e58d66b commit 9e49edb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sentieon_cli/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ def __init__(
self,
output: pathlib.Path,
dbsnp: Optional[pathlib.Path] = None,
emit_mode: str = "variant",
emit_mode: Optional[str] = None,
model: Optional[pathlib.Path] = None,
pcr_indel_model: str = "CONSERVATIVE",
var_type: str = "SNP,INDEL",
ploidy: int = 2,
pcr_indel_model: Optional[str] = None,
var_type: Optional[str] = None,
ploidy: Optional[int] = None,
):
self.output = output
self.dbsnp = dbsnp
Expand Down

0 comments on commit 9e49edb

Please sign in to comment.