view resistome_analyzer.xml @ 16:5d0768399bd1 draft

planemo upload for repository https://github.com/cdeanj/galaxytools/tree/master/tools/resistomeanalyzer commit 619031b21597c5b7e7753ae37edda7ccd0f85829
author chrisd
date Sun, 09 Oct 2016 06:12:31 -0400
parents 92c91dccf7de
children a54c93a53507
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">resistomeanalyzer</requirement>
    </requirements>
    <stdio>
        <exit_code range="1:" />
    </stdio>
    <command><![CDATA[
	resistome
	  -ref_fp $reference
	  -annot_fp $annotation
	  -sam_fp $sam
	  -gene_fp $gene
	  -mech_fp $mech
	  -class_fp $class
	  -group_fp $group
    ]]></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="gene" format="txt" />
	<data name="mech" format="txt" />
	<data name="class" format="txt" />
	<data name="group" format="txt" />
    </outputs>
    <citations>
    </citations>
</tool>