From 5ef33223f876094b0f1afb5ad8a459192f4ffddd Mon Sep 17 00:00:00 2001 From: balajtimate <51365402+balajtimate@users.noreply.github.com> Date: Sun, 12 Nov 2023 22:29:17 +0100 Subject: [PATCH] feat: set default for records #109 (#148) --- htsinfer/cli.py | 2 +- htsinfer/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htsinfer/cli.py b/htsinfer/cli.py index 409e1438..6ebc764c 100644 --- a/htsinfer/cli.py +++ b/htsinfer/cli.py @@ -115,7 +115,7 @@ def __call__( parser.add_argument( "--records", dest="records", - default=0, + default=1000000, type=int, metavar="INT", help=( diff --git a/htsinfer/models.py b/htsinfer/models.py index 84c5cc42..5e2cf231 100644 --- a/htsinfer/models.py +++ b/htsinfer/models.py @@ -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()