mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
24 lines
605 B
XML
24 lines
605 B
XML
<tool id="explicit_conversion" name="explicit_conversion">
|
|
<command>
|
|
cut -f 1 '${input1_table}' > '$output1'
|
|
</command>
|
|
<inputs>
|
|
<param type="data" format="fasta" name="input1" label="Input 1">
|
|
<conversion name="input1_table" type="tabular" />
|
|
</param>
|
|
</inputs>
|
|
<outputs>
|
|
<data name="output1" format="tabular" />
|
|
</outputs>
|
|
<tests>
|
|
<test>
|
|
<param name="input1" value="1.fasta" ftype="fasta" />
|
|
<output name="output1">
|
|
<assert_contents>
|
|
<has_line line="hg17" />
|
|
</assert_contents>
|
|
</output>
|
|
</test>
|
|
</tests>
|
|
</tool>
|