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
cwl.input.json
InitialWorkDirRequirement
Possible example:
Before:
requirements: InlineJavascriptRequirement: {} InitialWorkDirRequirement: listing: - entryname: cwl_inputs.json entry: $(JSON.stringify(inputs)) arguments: - -ini - cwl_inputs.json
After:
requirements: InputsAsJson: {} # default name is "cwl.input.json" arguments: - -ini - cwl.input.json
or very concisely, perhaps:
arguments: - -ini - ${InputAsJson} # resolves to a random filename ending in ".json" located not in the current working directory
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cwl.input.json
file go in the working directory?InitialWorkDirRequirement
?Possible example:
Before:
After:
or very concisely, perhaps:
The text was updated successfully, but these errors were encountered: