mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
20 lines
589 B
XML
20 lines
589 B
XML
<tool id="identifier_source" name="identifier_source" version="0.1.0">
|
|
<description>verifies identifier source can be specified from input</description>
|
|
<command>
|
|
<![CDATA[
|
|
cat '$inputA' '$inputB' >'$outputA' &&
|
|
cat '$inputA' '$inputB' > '$outputB'
|
|
]]>
|
|
</command>
|
|
<inputs>
|
|
<param name="inputA" type="data"/>
|
|
<param name="inputB" type="data"/>
|
|
</inputs>
|
|
<outputs>
|
|
<data name="outputA" default_identifier_source="inputA"/>
|
|
<data name="outputB" default_identifier_source="inputB"/>
|
|
</outputs>
|
|
<help>
|
|
</help>
|
|
</tool>
|