comparison plot_selected.xml @ 0:448204d12325 draft default tip

"planemo upload commit 1a32efb8343938e8d49190003f251c78b5a58225-dirty"
author erinija
date Fri, 01 May 2020 12:13:00 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:448204d12325
1 <tool id="plot_selected" name="Plot columns" version="0.1.0">
2 <requirements>
3 </requirements>
4 <command detect_errors="exit_code" interpreter="sh"><![CDATA[
5 plot_selected.sh "$input" "$output" "$title" "$columns"
6 ]]></command>
7 <inputs>
8 <param type="data" name="input" format="tabular" label="Select profile from:"/>
9 <param type="text" name="title" value="Plot of " label="Name of the plot" />
10 <param type="text" name="columns" value="1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17" label="Columns to plot" />
11 </inputs>
12 <outputs>
13 <data name="output" format="png" />
14 </outputs>
15 <tests>
16 <test>
17 <param name="input" value="fourier-output.tabular"/>
18 <param name="title" value="Plot of"/>
19 <param name="columns" value="2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17"/>
20 <output name="output" >
21 <assert_contents>
22 <not_has_text text="16220" />
23 </assert_contents>
24 </output>
25 </test>
26 </tests>
27
28 <help><![CDATA[
29
30 Description::
31
32 Using gnu plot selected columns in a table are plotted.
33 It is useful for a quick inspection of the profiles.
34
35 ]]></help>
36 <citations>
37 <citation type="bibtex">
38 @misc{githubdnpatterntools,
39 author = {E.Pranckeviciene, S.Hosid},
40 year = {2018},
41 title = {dnpatterntools},
42 publisher = {GitHub},
43 journal = {GitHub repository},
44 url = {https://github.com/erinijapranckeviciene/dnpatterntools}
45 }</citation>
46 </citations>
47 </tool>
48