comparison rnafold.xml @ 1:f87325531be8 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna commit 14f0b39f64982773ef0367379b915f742eabcc1b
author rnateam
date Wed, 21 Dec 2016 17:33:12 -0500
parents d6044fad075f
children 84aad99aca1f
comparison
equal deleted inserted replaced
0:d6044fad075f 1:f87325531be8
56 #if str($constraints.constraintLocation.constraintSelector) == "fromFile" 56 #if str($constraints.constraintLocation.constraintSelector) == "fromFile"
57 --constraint='$constraints.constraintLocation.constraintsFile' 57 --constraint='$constraints.constraintLocation.constraintsFile'
58 $constraints.constraintLocation.batch 58 $constraints.constraintLocation.batch
59 $constraints.constraintLocation.canonicalBPonly 59 $constraints.constraintLocation.canonicalBPonly
60 $constraints.constraintLocation.enforceConstraint 60 $constraints.constraintLocation.enforceConstraint
61 #end if
62 #if str($constraints.constraintLocation.constraintSelector) == "inFile"
63 -C
61 #end if 64 #end if
62 #if str($constraints.shapeOption.shapeSelector) == "isUsed" 65 #if str($constraints.shapeOption.shapeSelector) == "isUsed"
63 --shape='$constraints.shapeOption.shapeFile' 66 --shape='$constraints.shapeOption.shapeFile'
64 #if str($constraints.shapeOption.shapeMethod.methodSelector) == "W" 67 #if str($constraints.shapeOption.shapeMethod.methodSelector) == "W"
65 #set $s="W" 68 #set $s="W"
179 <param name="maxBPspan" type="integer" value="-1" label="Set the maximum base pair span" help="" argument="--maxBPspan"/> 182 <param name="maxBPspan" type="integer" value="-1" label="Set the maximum base pair span" help="" argument="--maxBPspan"/>
180 <conditional name="constraintLocation"> 183 <conditional name="constraintLocation">
181 <param name="constraintSelector" type="select" label="Constraints"> 184 <param name="constraintSelector" type="select" label="Constraints">
182 <!-- <option value="fromInput">The constraints are included in the input file</option> --> 185 <!-- <option value="fromInput">The constraints are included in the input file</option> -->
183 <option value="fromFile">The constraints are in a seperate file</option> 186 <option value="fromFile">The constraints are in a seperate file</option>
187 <option value="inFile">The constraints are in the fasta input file</option>
184 <option value="none" selected="true">Don't use constraints</option> 188 <option value="none" selected="true">Don't use constraints</option>
185 </param> 189 </param>
186 <!-- <when value="fromInput"></when> --> 190 <!-- <when value="fromInput"></when> -->
187 <when value="none"></when> 191 <when value="none"></when>
192 <when value="inFile"></when>
188 <when value="fromFile"> 193 <when value="fromFile">
189 <param name="constraintsFile" type="data" format="*" label="Constraints file" argument="--constraint"/> 194 <param name="constraintsFile" type="data" format="*" label="Constraints file" argument="--constraint"/>
190 <param name="batch" type="boolean" checked="false" truevalue="--batch" falsevalue="" 195 <param name="batch" type="boolean" checked="false" truevalue="--batch" falsevalue=""
191 label="Use constraints for all alignment records" 196 label="Use constraints for all alignment records"
192 help="Usually, constraints provided from input file are only applied to a single sequence alignment. Therefore, RNAalifold will stop its computation and quit after the first input alignment was processed. Using this switch, RNAalifold processes all sequence alignments in the input and applies the same provided constraints to each of them." 197 help="Usually, constraints provided from input file are only applied to a single sequence alignment. Therefore, RNAalifold will stop its computation and quit after the first input alignment was processed. Using this switch, RNAfold processes all sequence alignments in the input and applies the same provided constraints to each of them."
193 argument="--batch"/> 198 argument="--batch"/>
194 <param argument="--canonicalBPonly" type="boolean" truevalue="--canonicalBPonly" falsevalue="" checked="false" label="Remove non-canonical base pairs from he structure constraint" /> 199 <param argument="--canonicalBPonly" type="boolean" truevalue="--canonicalBPonly" falsevalue="" checked="false" label="Remove non-canonical base pairs from he structure constraint" />
195 <param argument="--enforceConstraint" type="boolean" truevalue="--enforceConstraint" falsevalue="" checked="false" label="Enforce base pair given by round brackets () in structure constraint" /> 200 <param argument="--enforceConstraint" type="boolean" truevalue="--enforceConstraint" falsevalue="" checked="false" label="Enforce base pair given by round brackets () in structure constraint" />
196 </when> 201 </when>
197 </conditional> 202 </conditional>
250 </section> 255 </section>
251 <section name="IDs" title="Naming Conventions"> 256 <section name="IDs" title="Naming Conventions">
252 <param name="auto_id" 257 <param name="auto_id"
253 type="boolean" truevalue="--auto-id" falsevalue="" checked="false" 258 type="boolean" truevalue="--auto-id" falsevalue="" checked="false"
254 label="Automatically generate an ID for each alignment." 259 label="Automatically generate an ID for each alignment."
255 help="If this flag is active, RNAalifold ignores any IDs retrieved from the input and automatically generates an ID for each alignment." 260 help="If this flag is active, RNAfold ignores any IDs retrieved from the input and automatically generates an ID for each sequence."
256 argument="--auto-id"/> 261 argument="--auto-id"/>
257 <param name="id_prefix" 262 <param name="id_prefix"
258 type="text" value="alignment" 263 type="text" value="sequence"
259 label="Prefix for automatically generated IDs (as used in output file names)" 264 label="Prefix for automatically generated IDs (as used in output file names)"
260 help="If this parameter is set, each alignment will be prefixed with the provided string. Hence, the output files will obey the following naming scheme: 'prefix_xxxx_ss.ps' (secondary structure plot), 'prefix_xxxx_dp.ps' (dot−plot), 'prefix_xxxx_aln.ps' (annotated alignment), etc. where xxxx is the alignment number beginning with the second alignment in the input. Use this setting in conjunction with the −−continuous−ids flag to assign IDs beginning with the first input alignment." 265 help="If this parameter is set, each sequence will be prefixed with the provided string. Hence, the output files will obey the following naming scheme: 'prefix_xxxx_ss.ps' (secondary structure plot), 'prefix_xxxx_dp.ps' (dot−plot), 'prefix_xxxx_aln.ps' (annotated sequence), etc. where xxxx is the sequence number beginning with the second sequence in the input. Use this setting in conjunction with the −−continuous−ids flag to assign IDs beginning with the first input sequence."
261 argument="--id-prefix"/> 266 argument="--id-prefix"/>
262 <param name="id_digits" 267 <param name="id_digits"
263 type="integer" value="4" min="1" max="18" 268 type="integer" value="4" min="1" max="18"
264 label="The number of digits of the counter in automatically generated alignment IDs" 269 label="The number of digits of the counter in automatically generated sequence IDs"
265 help="When alignments IDs are automatically generated, they receive an increasing number, starting with 1. This number will always be left−padded by leading zeros, such that the number takes up a certain width. Using this parameter, the width can be specified to the users need. We allow numbers in the range [1:18]." 270 help="When sequences IDs are automatically generated, they receive an increasing number, starting with 1. This number will always be left−padded by leading zeros, such that the number takes up a certain width. Using this parameter, the width can be specified to the users need. We allow numbers in the range [1:18]."
266 argument="--id-digits"/> 271 argument="--id-digits"/>
267 <param name="id_start" 272 <param name="id_start"
268 type="integer" value="1" min="0" 273 type="integer" value="1" min="0"
269 label="First number in automatically generated alignment IDs" 274 label="First number in automatically generated sequence IDs"
270 help="When alignment IDs are automatically generated, they receive an increasing number, usually starting with 1. Using this parameter, the first number can be specified to the users requirements. Note: negative numbers are not allowed. Note: Setting this parameter implies continuous alignment IDs, i.e. it activates the −−continuous−ids flag.." 275 help="When sequence IDs are automatically generated, they receive an increasing number, usually starting with 1. Using this parameter, the first number can be specified to the users requirements. Note: negative numbers are not allowed. Note: Setting this parameter implies continuous sequence IDs, i.e. it activates the −−continuous−ids flag.."
271 argument="--id-start"/> 276 argument="--id-start"/>
272 </section> 277 </section>
273 </inputs> 278 </inputs>
274 <outputs> 279 <outputs>
275 <data format="dbn" name="tabular_file"/> 280 <data format="dbn" name="tabular_file"/>