Skip to content

Commit

Permalink
fix: no verbose output by default (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jun 21, 2023
1 parent 3b09803 commit 0ad10cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clinvar_tsv/__main__.py
Expand Up @@ -37,7 +37,7 @@ def run_main(args):
"clinvar_version": args.clinvar_version,
},
"printshellcmds": True,
"verbose": True,
"verbose": args.verbose,
"force_incomplete": True,
"cores": args.cores,
}
Expand Down Expand Up @@ -114,6 +114,9 @@ def main(argv=None):
# -----------------------------------------------------------------------

parser_main = subparsers.add_parser("main", help="Run the full process pipeline")
parser_main.add_argument(
"--verbose", default=False, action="store_true", help="Enable verbose output"
)
parser_main.add_argument(
"--b37-path", required=True, help="Path to GRCh37 FAI-indexed FASTA file."
)
Expand Down

0 comments on commit 0ad10cb

Please sign in to comment.