view screen_abricate_results.xml @ 4:f06ea4673b49 draft default tip

planemo upload for repository https://github.com/dfornika/galaxy/tree/master/tools/screen_abricate_results commit 607fa944c574740d29ea3ce948707b8bd17c7d58-dirty
author dfornika
date Thu, 26 Sep 2019 19:18:44 -0400
parents 03e8644e3fd7
children
line wrap: on
line source

<tool id="screen_abricate_results" name="Screen Abricate Report" version="0.1.0">
    <description>Screens an abricate report for genes of interest</description>
    <requirements>
    </requirements>
    <command detect_errors="exit_code"><![CDATA[
        '${__tool_directory__}/screen_abricate_results.py'
             '${abricate_report}'
             --screen '${screening_file.fields.path}'
             > '${output}'
    ]]></command>
    <inputs>
        <param name="abricate_report" type="data" format="tabular" />
        <param name="screening_file" type="select" format="tabular">
	    <options from_data_table="abricate_report_screening_files">
	        <validator type="no_options" message="No abricate report screening files are available" />
            </options>
	</param>
    </inputs>
    <outputs>
        <data name="output" type="data" label="Output" />
    </outputs>
    <tests>
        <test>
            <param name="abricate_report" value="abricate_report.tsv"/>
            <param name="screen" value="screen.tsv"/>
        </test>
    </tests>
    <help><![CDATA[
    ]]></help>
    <citations>
    </citations>
</tool>