Files
galaxy/test/functional/tools/composite.xml
T
John Chilton 5a7a15d161 Test and clarifications for composite uploads.
- Add an API test for datatype-defined composite uploads - including exercising newline conversion and the space_to_tab parameter.
- Add a test decorator skip_without_datatype to mirror skip_without_tool for this test, improve both decorators.
- The ftype parameter in the composite test tools does nothing - drop it and drop it from the XSD spec.
- Slightly improve the documentation for these composite_data elements in the XSD.
2017-08-31 12:47:40 -04:00

21 lines
776 B
XML

<tool id="composite" name="composite" version="1.0.0">
<command>cat '$input.extra_files_path/Sequences' > $output</command>
<inputs>
<param name="input" type="data" format="velvet" label="Velvet Dataset" help="Prepared by velveth."/>
</inputs>
<outputs>
<data format="txt" name="output" label="${tool.name} on ${on_string}: LastGraph">
</data>
</outputs>
<tests>
<test>
<param name="input" value="velveth_test1/output.html" ftype="velvet" >
<composite_data value="velveth_test1/Sequences"/>
<composite_data value="velveth_test1/Roadmaps"/>
<composite_data value="velveth_test1/Log"/>
</param>
<output name="unused_reads_fasta" file="velveth_test1/Sequences" compare="diff"/>
</test>
</tests>
</tool>