Mercurial > repos > iuc > poretools_tabular
view poretools_tabular.xml @ 1:97ebdb2ad713 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit d50758dbe64462ba3cdcb7f1df0bcc57a310deab"
| author | iuc |
|---|---|
| date | Sun, 19 Jan 2020 14:01:11 +0000 |
| parents | 1f11cae77530 |
| children | d5e08d639ab4 |
line wrap: on
line source
<?xml version="1.0"?> <tool id="poretools_tabular" name="Extract FASTQ" version="@VERSION@.0"> <description>in tabular format from a set of FAST5 files</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="aggressive"> <![CDATA[ poretools tabular --type $type '$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" /> <expand macro="stat_options" /> </inputs> <outputs> <data name="output" format="tabular" /> </outputs> <tests> <test> <expand macro="test_input" /> <param name="types" value="fwd" /> <param name="detailed" value="true" /> <output name="output" file="poretools-tabular-out1.tabular" ftype="tabular" /> </test> <test> <expand macro="test_input" /> <param name="types" value="rev" /> <param name="detailed" value="false" /> <output name="output" file="poretools-tabular-out2.tabular" ftype="tabular" /> </test> <test> <expand macro="test_input" /> <param name="types" value="2D" /> <param name="detailed" value="true" /> <output name="output" file="poretools-tabular-out3.tabular" ftype="tabular" /> </test> <test> <expand macro="test_input" /> <param name="types" value="best" /> <param name="detailed" value="false" /> <output name="output" file="poretools-tabular-out4.tabular" ftype="tabular" /> </test> <test> <expand macro="test_input" /> <param name="types" value="all" /> <param name="detailed" value="true" /> <output name="output" file="poretools-tabular-out5.tabular" ftype="tabular" /> </test> </tests> <help> Dump the length, name, sequence, and quality scores of the sequence in one or a set of FAST5 files. </help> <expand macro="citations" /> </tool>
