mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
- 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.
21 lines
776 B
XML
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>
|