view resistome_analyzer.xml @ 5:12dcd63b996f draft

planemo upload for repository https://github.com/cdeanj/galaxytools/tree/master/tools/resistomeanalyzer commit 572d62295b0bb8f2fe9a3f484717ab52d4c93b39
author chrisd
date Sun, 09 Oct 2016 04:38:54 -0400
parents 431eaab8b903
children d67a1250153c
line wrap: on
line source

<tool id="resistome_analyzer" name="ResistomeAnalyzer" version="0.1.0">
    <description>A simple tool for analyzing the resistome of metagenomic sequence data</description>
    <requirements>
	<requirement type="package" version="0.1">resistome_analyzer</requirement>
    </requirements>
    <stdio>
        <exit_code range="1:" />
    </stdio>
    <command><![CDATA[
	resistome
	  -ref_fp $reference
	  -annot_fp $annotation
	  -sam_fp $sam
	  -prefix $prefix
    ]]></command>
    <inputs>
	<param type="data" name="reference" format="fasta" label="Reference sequence" />
	<param type="data" name="sam" format="sam" label="SAM file" />
	<param type="data" name="annotation" format="csv" label="Annotation file" />
    </inputs>
    <outputs>
	<data name="prefix" format="tabular" />
    </outputs>
    <citations>
    </citations>
</tool>