Project

General

Profile

Actions

Metadata » History » Revision 1

Revision 1/4 | Next »
Peter Amstutz, 10/21/2016 03:21 PM


Metadata

Input and output documents gain parallel "input metadata" and "output metadata" documents.

The input metadata is parallel to the input document, except that it describes metadata about each parameter. For example, for this input:

foo:
  class: File
  location: keep:abc+123/foo.bam

the metadata might be:

foo:
  xyz:sample: sample1122333
  xyz:sequencer: illumina

On workflow start, reverse lookup PDH to UUID and find all tags. Create input metadata document.

On workflow end, create output metadata document based on "arv:PropagateMetadata".

hints:
  arv:PropagateMetadata:
    setMetadata:
      - outputParameter: bar
        valueFrom: $(metadata.foo)

Resulting in output:

bar:
  class: File
  location: keep:abc+123/result.vcf

with output metadata:

bar:
  xyz:sample: sample1122333
  xyz:sequencer: illumina

Arvados then creates tags to the output collection based on output metadata document.

Updated by Peter Amstutz over 7 years ago · 1 revisions