view poretools_qualdist.xml @ 1:ae9060e764b5 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit d50758dbe64462ba3cdcb7f1df0bcc57a310deab"
author iuc
date Sun, 19 Jan 2020 09:07:55 -0500
parents 44111014e7c1
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="poretools_qualdist" name="Show quality" version="@VERSION@.0">
    <description>score distribution in nanopore sequencing reads</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="aggressive">
    <![CDATA[
        poretools qualdist '$input' > '$output'
    ]]>
    </command>
    <inputs>
        <param name="input" type="data" format="h5,fast5.tar,fast5.tar.gz,fast5.tar.bz2" label="Input fast5 or archive of fast5 files" />
    </inputs>
    <outputs>
        <data name="output" format="tabular" />
    </outputs>
    <tests>
        <test>
            <expand macro="test_input" />
            <output name="output" file="poretools-qualdist-out1.tabular" ftype="tabular" />
        </test>
        <test>
            <expand macro="test_input" />
            <output name="output" file="poretools-qualdist-out2.tabular" ftype="tabular" />
        </test>
    </tests>
    <help>
        Get the the quality score composition of a set of FAST5 files.
    </help>
    <expand macro="citations" />
</tool>