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
I was working on a new sprocket validate-inputs subcommand (WIP here) modeled after this code: https://github.com/stjude-rust-labs/wdl/blob/main/wdl-engine/tests/inputs.rs
sprocket validate-inputs
The bug could be on my end, but I don't think so.
$ cargo run -- validate-inputs -i ../workflows/workflows/reference/inputs/qc-reference-inputs.json ../workflows/workflows/reference/qc-reference.wdl Compiling sprocket v0.9.0 (/Users/afrantz/sprocket) Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.76s Running `target/debug/sprocket validate-inputs -i ../workflows/workflows/reference/inputs/qc-reference-inputs.json ../workflows/workflows/reference/qc-reference.wdl` error: failed to validate inputs: failed to validate inputs for workflow `qc_reference` Caused by: missing required input `tarballs`
the referenced files are on main of the workflows repo here and here
main
Notably, tarballs is not a workflow input. It is an input to a call, but that is explicitly provided by the call here
tarballs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was working on a new
sprocket validate-inputs
subcommand (WIP here) modeled after this code: https://github.com/stjude-rust-labs/wdl/blob/main/wdl-engine/tests/inputs.rsThe bug could be on my end, but I don't think so.
the referenced files are on
main
of the workflows repo here and hereNotably,
tarballs
is not a workflow input. It is an input to a call, but that is explicitly provided by the call hereThe text was updated successfully, but these errors were encountered: