comparison poretools_occupancy.xml @ 0:336791b5665f 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:47:30 -0500
parents
children 338d15b8d6fb
comparison
equal deleted inserted replaced
-1:000000000000 0:336791b5665f
1 <?xml version="1.0"?>
2 <tool id="poretools_occupancy" name="Plot performance" version="@VERSION@.0">
3 <description>per cell in nanopore reads</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <command detect_errors="aggressive">
9 <![CDATA[
10 poretools occupancy
11 '$input'
12 --saveas occupancy.$extension
13 --plot-type $plot_type
14 &&
15 mv occupancy.$extension '$output'
16 ]]>
17 </command>
18 <inputs>
19 <param name="input" type="data" format="h5,fast5.tar,fast5.tar.gz,fast5.tar.bz2" label="Input fast5 or archive of fast5 files" />
20 <param name="extension" type="select" label="File format for histogram">
21 <option value="png">PNG</option>
22 <option value="pdf">PDF</option>
23 <option value="svg">SVG</option>
24 </param>
25 <param name="plot_type" argument="--plot-type" type="select" label="Plot type to generate">
26 <option value="read_count">Read count</option>
27 <option value="total_bp">Total base pairs</option>
28 </param>
29 </inputs>
30 <outputs>
31 <expand macro="image_output" />
32 </outputs>
33 <tests>
34 <test>
35 <expand macro="test_input" />
36 <param name="extension" value="png" />
37 <param name="plot_type" value="read_count" />
38 <output name="output" file="poretools-occupancy-out1.png" ftype="png" lines_diff="420" />
39 </test>
40 <test>
41 <expand macro="test_input" />
42 <param name="extension" value="pdf" />
43 <param name="plot_type" value="total_bp" />
44 <output name="output" file="poretools-occupancy-out1.pdf" ftype="pdf" lines_diff="36" />
45 </test>
46 </tests>
47 <help>
48 Plot the throughput performance of each pore on the flowcell during a given sequencing run.
49 </help>
50 <expand macro="citations" />
51 </tool>