view poretools_times.xml @ 3:06c449875523 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit 506782d1e671505617ff539e6811fcdcc2c02cd5
author iuc
date Fri, 27 Sep 2024 07:42:24 +0000
parents a12cb383ec4c
children
line wrap: on
line source

<tool id="poretools_times" name="Extract time" version="@VERSION@.0" profile="@PROFILE@">
    <description>and channel information from a set of FAST5 files</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="bio_tools"/>
    <expand macro="requirements" />
    <command detect_errors="aggressive">
    <![CDATA[
        poretools times --utc '$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-times-out1.tabular" ftype="tabular" />
        </test>
    </tests>
    <help>
        Collect read size statistics from a set of FAST5 files.
    </help>
    <expand macro="citations" />
</tool>