We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's not clear that anyone would rely on the actual exit status values on error conditions, but it's something to watch out for. E.g.:`
$ bcftools query performance/data/sim_10k.vcf.gz Error: Missing the --format option $ echo $? 255
vs
$ python3 -m vcztools query performance/data/sim_10k.vcz Usage: python -m vcztools query [OPTIONS] PATH Try 'python -m vcztools query --help' for help. Error: Missing option '-f' / '--format'. jk@empire$ echo $? 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's not clear that anyone would rely on the actual exit status values on error conditions, but it's something to watch out for. E.g.:`
vs
The text was updated successfully, but these errors were encountered: