Skip to content

Commit

Permalink
feat: set default for records #109 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
balajtimate authored Nov 12, 2023
1 parent 172eb99 commit 5ef3322
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htsinfer/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __call__(
parser.add_argument(
"--records",
dest="records",
default=0,
default=1000000,
type=int,
metavar="INT",
help=(
Expand Down
2 changes: 1 addition & 1 deletion htsinfer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class Args(BaseModel):
Path(tempfile.gettempdir()) / 'tmp_htsinfer'
cleanup_regime: CleanupRegimes = \
CleanupRegimes.DEFAULT
records: int = 0
records: int = 1000000
threads: int = 1
transcripts_file: Path = Path()
read_layout_adapter_file: Path = Path()
Expand Down

0 comments on commit 5ef3322

Please sign in to comment.