comparison pretext_snapshot.xml @ 4:0a10fddd97d2 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/pretext commit d4d8ca8335f9ec33fb889c9b283b9455190d2fb1
author iuc
date Tue, 19 Dec 2023 05:35:33 +0000
parents 44c66e8d21e6
children
comparison
equal deleted inserted replaced
3:44c66e8d21e6 4:0a10fddd97d2
1 <tool id="pretext_snapshot" name="Pretext Snapshot" version="@WRAPPER_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01"> 1 <tool id="pretext_snapshot" name="Pretext Snapshot" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01">
2 <description>image generator for Pretext contact maps</description> 2 <description>image generator for Pretext contact maps</description>
3 <macros> 3 <macros>
4 <token name="@WRAPPER_VERSION@">0.0.3</token> 4 <token name="@TOOL_VERSION@">0.0.3</token>
5 <token name="@VERSION_SUFFIX@">1</token> 5 <token name="@VERSION_SUFFIX@">2</token>
6 </macros> 6 </macros>
7 <requirements> 7 <requirements>
8 <requirement type="package" version="@WRAPPER_VERSION@">pretextsnapshot</requirement> 8 <requirement type="package" version="@TOOL_VERSION@">pretextsnapshot</requirement>
9 <requirement type="package" version="1.601">rename</requirement> 9 <requirement type="package" version="1.601">rename</requirement>
10 </requirements> 10 </requirements>
11 <version_command>PretextSnapshot --version</version_command> 11 <version_command>PretextSnapshot --version</version_command>
12 <command detect_errors="exit_code"><![CDATA[ 12 <command detect_errors="exit_code"><![CDATA[
13 PretextSnapshot -m $input 13 PretextSnapshot -m $input
41 <option value="jpeg">JPG</option> 41 <option value="jpeg">JPG</option>
42 </param> 42 </param>
43 <when value="png"/> 43 <when value="png"/>
44 <when value="bmp"/> 44 <when value="bmp"/>
45 <when value="jpeg"> 45 <when value="jpeg">
46 <param name="jpegQuality" argument="--jpegQuality" type="integer" label="JPEG quality factor" value="80" min="0" max="100" help="An integer between 1 and 100, default 80. Larger values result in increased image quality and file size."/> 46 <param argument="--jpegQuality" type="integer" label="JPEG quality factor" value="80" min="0" max="100" help="An integer between 0 and 100, default 80. Larger values result in increased image quality and file size."/>
47 </when> 47 </when>
48 </conditional> 48 </conditional>
49 <param name="resolution" argument="-r" type="integer" label="Output image resolution" min="1" value="1000" help="Image resolution, a positive integer, default 1080. For non-square images this will be the resolution of the longest dimension."/> 49 <param name="resolution" argument="-r" type="integer" label="Output image resolution" min="1" value="1000" help="Image resolution, a positive integer, default 1080. For non-square images this will be the resolution of the longest dimension."/>
50 <param name="colormap" argument='-c' type="integer" label="Color Map" value="5" min="0" max="30" help="Color map based on list available in the help section"/> 50 <param name="colormap" argument='-c' type="integer" label="Color Map" value="5" min="0" max="30" help="Color map based on list available in the help section"/>
51 <param name="sequences" argument="--sequences" type="text" label="Sequence specification string" value="=full, =all" help="Each entry, except for '=all', corresponds to one output image. More information available in the help section."> 51 <param argument="--sequences" type="text" label="Sequence specification string" value="=full, =all" help="Each entry, except for '=all', corresponds to one output image. More information available in the help section.">
52 <sanitizer invalid_char=""> 52 <sanitizer invalid_char="">
53 <valid initial="string.ascii_letters,string.digits"> 53 <valid initial="string.ascii_letters,string.digits">
54 <add value="="/> 54 <add value="="/>
55 <add value="_"/> 55 <add value="_"/>
56 <add value="&#32;"/> 56 <add value="&#32;"/>
65 </valid> 65 </valid>
66 </sanitizer> 66 </sanitizer>
67 </param> 67 </param>
68 <param name="mintexels" argument="--minTexels" type="integer" min="1" label="Min Texels" value="64" help="Minimum map texels per image (along a single dimension), a positive integer, Output images over too small a range that violate this minimum will not be created."/> 68 <param name="mintexels" argument="--minTexels" type="integer" min="1" label="Min Texels" value="64" help="Minimum map texels per image (along a single dimension), a positive integer, Output images over too small a range that violate this minimum will not be created."/>
69 <conditional name="grid"> 69 <conditional name="grid">
70 <param name="showGrid" label="Show grid?" type="boolean" truevalue="yes" falsevalue="no"/> 70 <param name="showGrid" label="Show grid?" type="select">
71 <option value="no">No</option>
72 <option value="yes">Yes</option>
73 </param>
71 <when value="yes"> 74 <when value="yes">
72 <param name="gridsize" argument="--gridSize" type="integer" label="Grid size" value="1" min="1" help="Width in pixels of the sequence separation grid, a non-negative integer. Set to 0 to not overlay a grid."/> 75 <param name="gridsize" argument="--gridSize" type="integer" label="Grid size" value="1" min="1" help="Width in pixels of the sequence separation grid, a non-negative integer. Set to 0 to not overlay a grid."/>
73 <param name="gridcolor" argument="--gridColour" type="text" label="Grid color" value="black" help="Colour of the sequence separation grid. Either, one of: 'black'(default), 'white', 'red', 'green', 'blue', 'yellow', 'cyan' or 'magenta'. Or, a sRGBA 32-bit hex code in RRGGBBAA format, e.g. 'ff00ff80' (magenta at half-occupancy)."/> 76 <param name="gridcolor" argument="--gridColour" type="text" label="Grid color" value="black" help="Colour of the sequence separation grid. Either, one of: 'black'(default), 'white', 'red', 'green', 'blue', 'yellow', 'cyan' or 'magenta'. Or, a sRGBA 32-bit hex code in RRGGBBAA format, e.g. 'ff00ff80' (magenta at half-occupancy)."/>
74 </when> 77 </when>
75 <when value="no"/> 78 <when value="no"/>