Mercurial > repos > iuc > bandage
comparison bandage_image.xml @ 4:94fe43e75ddc draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage commit 585f5fa2d2714638c84b3c9ddaeb5a9557159a95"
author | iuc |
---|---|
date | Tue, 19 Jan 2021 10:06:26 +0000 |
parents | b2860df42e16 |
children | d8b1027d6ce0 |
comparison
equal
deleted
inserted
replaced
3:b2860df42e16 | 4:94fe43e75ddc |
---|---|
1 <tool id="bandage_image" name="Bandage Image" version="@TOOL_VERSION@+galaxy2" profile="18.01"> | 1 <tool id="bandage_image" name="Bandage Image" version="@TOOL_VERSION@+galaxy3" profile="18.01"> |
2 <description>visualize de novo assembly graphs</description> | 2 <description>visualize de novo assembly graphs</description> |
3 <macros> | 3 <macros> |
4 <import>macros.xml</import> | 4 <import>macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements"/> | 6 <expand macro="requirements"/> |
15 --height '$height' | 15 --height '$height' |
16 #end if | 16 #end if |
17 #if $width: | 17 #if $width: |
18 --width '$width' | 18 --width '$width' |
19 #end if | 19 #end if |
20 #if $fontsize: | |
21 --fontsize '$fontsize' | |
22 #end if | |
20 $names | 23 $names |
21 $lengths | 24 $lengths |
22 ]]></command> | 25 ]]></command> |
23 <inputs> | 26 <inputs> |
24 <param name="input_file" type="data" format="txt" label="Graphical Fragment Assembly" help="Supports multiple assembly graph formats: LastGraph (Velvet), FASTG (SPAdes), Trinity.fasta, ASQG and GFA."/> | 27 <param name="input_file" type="data" format="txt" label="Graphical Fragment Assembly" help="Supports multiple assembly graph formats: LastGraph (Velvet), FASTG (SPAdes), Trinity.fasta, ASQG and GFA."/> |
25 <param argument="--height" type="integer" min="1" value="1000" optional="True" label="Image height" help="If only height or width is set, the other will be determined automatically. If both are set, the image will be exactly that size. Default: 1000."/> | 28 <param argument="--height" type="integer" min="1" value="1000" optional="True" label="Image height" help="If only height or width is set, the other will be determined automatically. If both are set, the image will be exactly that size. Default: 1000."/> |
26 <param argument="--width" type="integer" min="1" optional="True" label="Image width" help="If only height or width is set, the other will be determined automatically. If both are set, the image will be exactly that size. Default: not set."/> | 29 <param argument="--width" type="integer" min="1" optional="True" label="Image width" help="If only height or width is set, the other will be determined automatically. If both are set, the image will be exactly that size. Default: not set."/> |
27 <param argument="--names" type="boolean" truevalue="--names" falsevalue="" label="Node name labels?"/> | 30 <param argument="--names" type="boolean" truevalue="--names" falsevalue="" label="Node name labels?"/> |
28 <param argument="--lengths" type="boolean" truevalue="--lengths" falsevalue="" label="Node length labels?"/> | 31 <param argument="--lengths" type="boolean" truevalue="--lengths" falsevalue="" label="Node length labels?"/> |
32 <param argument="--fontsize" type="integer" min="5" optional="true" label="Font size" help="Node font size?"/> | |
29 <param name="output_format" type="select" label="Produce jpg, png or svg file?"> | 33 <param name="output_format" type="select" label="Produce jpg, png or svg file?"> |
30 <option selected="True" value="jpg">.jpg</option> | 34 <option selected="True" value="jpg">.jpg</option> |
31 <option value="png">.png</option> | 35 <option value="png">.png</option> |
32 <option value="svg">.svg</option> | 36 <option value="svg">.svg</option> |
33 </param> | 37 </param> |
63 <param name="output_format" value="svg"/> | 67 <param name="output_format" value="svg"/> |
64 <param name="names" value="--names"/> | 68 <param name="names" value="--names"/> |
65 <param name="lengths" value="--lengths"/> | 69 <param name="lengths" value="--lengths"/> |
66 <output name="outfile" ftype="svg" file="out_labels.svg" compare="sim_size" delta="250000"/> | 70 <output name="outfile" ftype="svg" file="out_labels.svg" compare="sim_size" delta="250000"/> |
67 </test> | 71 </test> |
72 <test><!-- test with node name, length labels and fontsize--> | |
73 <param name="input_file" ftype="txt" value="bandage_input.txt"/> | |
74 <param name="output_format" value="jpg"/> | |
75 <param name="names" value="--names"/> | |
76 <param name="lengths" value="--lengths"/> | |
77 <param name="fontsize" value="5"/> | |
78 <output name="outfile" ftype="jpg" file="out_fontsize.jpg" compare="sim_size" delta="250000"/> | |
79 </test> | |
68 </tests> | 80 </tests> |
69 <help><![CDATA[ | 81 <help><![CDATA[ |
70 @BANDAGE_OVERVIEW@ | 82 @BANDAGE_OVERVIEW@ |
71 | 83 |
72 **Command Documentation** | 84 **Command Documentation** |