Project

General

Profile

Feature #16583

Updated by Peter Amstutz almost 3 years ago

Output collections have properties "container_request: <uuid>" and "type: output".    This allows workbench2 to offer a filter on outputs, logs, and general. 

 Similar to how I can filter on just top level containers, I'd like to be able to filter on top level outputs.    We also want to be able to do scripted cleaning up of intermediate outputs while leaving the final output alone. 

 Top level containers have "requested_by_container_uuid: null".    Technically we could look up the container request for each collection to determine if it is top level or not, but that can't be written as a single query filter. 

 Proposed approach: 

 # Add an @output_properties@ field on container_request which are properties that will be set on the final output collection (similar to output_name and output_ttl). 
 # Arvados-cwl-runner gains the ability to set properties of container outputs: #17004 
 # Arvados-cwl-runner starts on collections, has convention for marking intermediate and final collections, using output_properties to set it collections. 
 # Add a rake task that the admin can optionally use to infer the intermediate and final collection output property from requested_by_container_uuid. 
 # Add to Workbench2 the ability to filter out intermediate collections from project display. 

Back