diff options
author | AndreaGuarracino | 2021-01-08 00:25:55 +0100 |
---|---|---|
committer | AndreaGuarracino | 2021-01-08 00:25:55 +0100 |
commit | 2ddf72a4028475eb65dfeab153f3565e698d5338 (patch) | |
tree | 9526d7271ec0b58d1e88b24dc1ed7043d91c5017 /workflows/yamlfa2ttl/check_metadata.cwl | |
parent | 8f385cdd408f8e72e13ec7f87b5413b11d3c2d53 (diff) | |
download | bh20-seq-resource-2ddf72a4028475eb65dfeab153f3565e698d5338.tar.gz bh20-seq-resource-2ddf72a4028475eb65dfeab153f3565e698d5338.tar.lz bh20-seq-resource-2ddf72a4028475eb65dfeab153f3565e698d5338.zip |
added check_metadata workflow and script
Diffstat (limited to 'workflows/yamlfa2ttl/check_metadata.cwl')
-rw-r--r-- | workflows/yamlfa2ttl/check_metadata.cwl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/workflows/yamlfa2ttl/check_metadata.cwl b/workflows/yamlfa2ttl/check_metadata.cwl new file mode 100644 index 0000000..72c4d36 --- /dev/null +++ b/workflows/yamlfa2ttl/check_metadata.cwl @@ -0,0 +1,24 @@ +#!/usr/bin/env cwl-runner + +cwlVersion: v1.1 +class: CommandLineTool +baseCommand: python3 + +inputs: + script: + type: File + inputBinding: {position: 1} + default: {class: File, location: check_metadata.py} + path_yaml: + type: string + inputBinding: {position: 2} + path_schema_yaml: + type: File + inputBinding: {position: 3} + default: {class: File, location: ../../bh20sequploader/bh20seq-schema.yml} + path_shex_rdf: + type: File + inputBinding: {position: 4} + default: {class: File, location: ../../bh20sequploader/bh20seq-shex.rdf} + +outputs: [] |