Skip to content

Commit

Permalink
update gwendia.vm
Browse files Browse the repository at this point in the history
  • Loading branch information
sandepat committed Jul 8, 2024
1 parent 11992a0 commit 9a9297c
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions vip-portal/src/main/resources/vm/gwendia-standalone.vm
Original file line number Diff line number Diff line change
Expand Up @@ -73,29 +73,25 @@ if ( result.startsWith("/") || result.startsWith("lfn:") ) {
#end
<iterationstrategy>
<cross>
#if($tools.getVipDotResultDirs)
#if($tool.getVipDotInputIds() && !$tool.getVipDotInputIds().isEmpty())
<dot>
#if($tools.getVipDotResultDirs)
<port name="results-directory" />
#foreach($input in $tool.getInputs())
#if($tool.getVipDotInputIds().contains($input.getId()))
<port name="$input.getId()"/>
#end
#end
#foreach($dotInput in $tool.getVipDotInputIds())
<port name="$dotInput"/>
#end
</dot>
#if( ! $tools.getVipDotResultDirs)
<port name="results-directory" />
#end
#else
<port name="results-directory" />
#end
#foreach($input in $tool.getInputs())
#if(!$tool.getVipDotInputIds().contains($input.getId()))
<port name="$input.getId()"/>
<port name="$input.getId()"/>
#end
#end
#end
#if($tool.getVipDotInputIds() && !$tool.getVipDotInputIds().isEmpty() && !$tools.getVipDotResultDirs)
<dot>
#foreach($dotInput in $tool.getVipDotInputIds())
<port name="$dotInput"/>
#end
</dot>
#end
</cross>
</iterationstrategy>
Expand Down

0 comments on commit 9a9297c

Please sign in to comment.