Skip to content

Commit

Permalink
better help on input/output file types
Browse files Browse the repository at this point in the history
closes #29
  • Loading branch information
brentp committed May 26, 2023
1 parent 11cf54c commit d6423a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ zip = { version = "0.6", default-features = false, features=["deflate"] }
byteorder = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
json5 = "*"

fasteval = { version = "0.2.4", features= ["unsafe-vars"]}

bincode = { version = "1.3.3" }
json5 = "0.4.1"

[profile.release]
lto = "fat"
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ fn main() -> Result<(), Box<dyn Error>> {
(about: "annotate a VCF/BCF with one or more echtvar files")
(@arg echtvar: -e + takes_value number_of_values(1) ... "echtvar files to annotate with. can be specified many times")
(@arg include: -i +takes_value number_of_values(1) "expression that determines which variants to keep in output")
(@arg INPUT_VCF: +required "vcf")
(@arg OUTPUT_VCF: +required "path to bcf output file")
(@arg INPUT_VCF: +required "input vcf or bcf")
(@arg OUTPUT_VCF: +required "path to bcf/vcf.gz output file (determined by extension)")
)
);
let matches = app.clone().get_matches();
Expand Down

0 comments on commit d6423a1

Please sign in to comment.