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
load_document
Python has
load_document()
load_document_by_string()
load_document_by_yaml
Java has
loadDocument()
java.nio.file.Path
java.io.File
All functions will parse any of the schema objects marked documentRoot: true, which are provided to the epilogue function of the cpp codegen (but is sadly, currently ignored).
documentRoot: true
epilogue
With load_document() implemented I can work on #5 "Test CWL loading with valid documents from the conformance tests"
The text was updated successfully, but these errors were encountered:
SGSSGene
No branches or pull requests
Python has
load_document()
taking a URL or a YAML objectload_document_by_string()
parses the provided string into YAML and then into a CWL object using the provided base URIload_document_by_yaml
takes only a YAML object and a base URIJava has
loadDocument()
supporting loading from a Map,java.nio.file.Path
,java.io.File
, String (unparsed YAML/JSON)All functions will parse any of the schema objects marked
documentRoot: true
, which are provided to theepilogue
function of the cpp codegen (but is sadly, currently ignored).With
load_document()
implemented I can work on #5 "Test CWL loading with valid documents from the conformance tests"The text was updated successfully, but these errors were encountered: