Skip to content

Commit

Permalink
chore(call): revert max read cn iters to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Dec 19, 2024
1 parent 7aaff2b commit dcaf13e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/caller_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from 0.0-0.4. **Default:** 0.9
* `--max-rcn-iters ##`: Maximum number of read copy-number counting iterations to perform. Loci which require a lot of
iterations are probably impure tandem repeats, for which the resulting copy number will not be very accurate anyway.
**Default:** 200
**Default:** 50
* `--flank-size ##`: Size of the flanking region to use on either side of a region to properly anchor reads.
**Default:** 70
* `--realign` or `-a`: Whether to perform local re-alignment to attempt recovery of soft-clipped reads. Some aligners
Expand Down
2 changes: 1 addition & 1 deletion strkit/call/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
max_reads: int = 250,
min_avg_phred: int = 13,
min_read_align_score: float = 0.9,
max_rcn_iters: int = 200,
max_rcn_iters: int = 50,
num_bootstrap: int = 100,
flank_size: int = 70,
skip_supplementary: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion strkit/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def add_call_parser_args(call_parser):
call_parser.add_argument(
"--max-rcn-iters", "--mrci",
type=int,
default=200,
default=50,
help=(
"Maximum number of read copy-number counting iterations to perform. Loci which require a lot of "
"iterations are probably impure tandem repeats, for which the resulting copy number will not be very "
Expand Down

0 comments on commit dcaf13e

Please sign in to comment.