annotate poretools_qualpos.xml @ 0:2e22ebec211a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
author iuc
date Tue, 19 Dec 2017 14:53:26 -0500
parents
children 4fe6b96aff72
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
1 <?xml version="1.0"?>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
2 <tool id="poretools_qualpos" name="Generate box-whisker" version="@VERSION@.0">
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
3 <description>plot of quality score distribution over positions in nanopore reads</description>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
4 <macros>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
5 <import>macros.xml</import>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
6 </macros>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
7 <expand macro="requirements" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
8 <command detect_errors="aggressive">
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
9 <![CDATA[
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
10 poretools qualpos '$input' --saveas qualpos.$extension --min-length $min_length
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
11 --max-length $max_length --bin-width $bin_width $theme_bw && mv qualpos.$extension '$output'
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
12 ]]>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
13 </command>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
14 <inputs>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
15 <param name="input" type="data" format="h5,fast5.tar,fast5.tar.gz,fast5.tar.bz2" label="Input fast5 or archive of fast5 files" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
16 <expand macro="plot_options">
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
17 <option value="pdf">PDF</option>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
18 <option value="svg">SVG</option>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
19 </expand>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
20 <param name="theme_bw" argument="--theme-bw" type="boolean" truevalue="--theme-bw" falsevalue="" label="Use a monochrome color " />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
21 <expand macro="length_options" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
22 <param name="bin_width" argument="--bin-width" type="integer" value="1000" label="The width of bins" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
23 </inputs>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
24 <outputs>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
25 <expand macro="image_output">
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
26 <when input="extension" value="svg" format="svg" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
27 </expand>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
28 </outputs>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
29 <tests>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
30 <test>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
31 <expand macro="test_input" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
32 <param name="extension" value="png" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
33 <output name="output" file="poretools-qualpos-out1.png" ftype="png" lines_diff="195" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
34 </test>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
35 <test>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
36 <expand macro="test_input" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
37 <param name="extension" value="pdf" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
38 <output name="output" file="poretools-qualpos-out1.pdf" ftype="pdf" lines_diff="36" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
39 </test>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
40 </tests>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
41 <help>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
42 Produce a box-whisker plot of quality score distribution over positions in nanopore reads
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
43 </help>
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
44 <expand macro="citations" />
2e22ebec211a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools commit aee00b3755588862ab34c199c28578706c004a34
iuc
parents:
diff changeset
45 </tool>