comparison variant.xml @ 1:43388fc8ad0b draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka commit e5b495e8ace37eaf31a3430a29de11c83416dc2c"
author iuc
date Thu, 28 May 2020 02:38:34 -0400
parents 3cde72a6e37c
children e86fcef8ed91
comparison
equal deleted inserted replaced
0:3cde72a6e37c 1:43388fc8ad0b
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
8 <expand macro="version_command"/> 8 <expand macro="version_command"/>
9 <command detect_errors="exit_code"><![CDATA[ 9 <command detect_errors="exit_code"><![CDATA[
10 ## initialize 10 ## initialize
11 @REF_FASTA@ 11 @REF_FASTA@
12 12
13 ## run 13 ## run
14 medaka variant 14 medaka variant
15 ## optional 15 ## optional
16 --debug 16 --debug
17 #if $region 17 #if $region
18 --region '${region}' 18 --region '${region}'
19 #end if 19 #end if
20 $verbose 20 $verbose
21 ## required 21 ## required
22 'reference.fa' 22 reference.fa
23 #for $current in $inputs 23 #for $current in $inputs
24 '$current' 24 '$current'
25 #end for 25 #end for
26 'result.vcf' ## output 26 '$out_result' ## output
27 27
28 |& tee log.txt 28 |& tee '$out_log'
29 ]]></command> 29 ]]></command>
30 <inputs> 30 <inputs>
31 <param argument="inputs" type="data" format="h5" multiple="true" label="Select consensus file(s)"/> 31 <param argument="inputs" type="data" format="h5" multiple="true" label="Select consensus file(s)"/>
32 <expand macro="reference"/> 32 <expand macro="reference"/>
33 <param argument="--region" type="text" value="" optional="true" label="Set reference names to limit variant calling" help="Separated by ','."/> 33 <param argument="--region" type="text" value="" optional="true" label="Set reference names to limit variant calling" help="Separated by ','."/>
34 <param argument="--verbose" type="boolean" truevalue="--verbose" falsevalue="" label="Populate VCF info fields?"/> 34 <param argument="--verbose" type="boolean" truevalue="--verbose" falsevalue="" label="Populate VCF info fields?"/>
37 <option value="log">Log</option> 37 <option value="log">Log</option>
38 </param> 38 </param>
39 </inputs> 39 </inputs>
40 <outputs> 40 <outputs>
41 <!-- standard --> 41 <!-- standard -->
42 <data name="out_result" format="vcf" from_work_dir="result.vcf" label="${tool.name} on ${on_string}: Result"> 42 <data name="out_result" format="vcf" label="${tool.name} on ${on_string}: Result">
43 <filter>'result' in out</filter> 43 <filter>'result' in out</filter>
44 </data> 44 </data>
45 <!-- optional --> 45 <!-- optional -->
46 <data name="out_log" format="tabular" from_work_dir="log.txt" label="${tool.name} on ${on_string}: Log"> 46 <data name="out_log" format="tabular" label="${tool.name} on ${on_string}: Log">
47 <filter>'log' in out</filter> 47 <filter>'log' in out</filter>
48 </data> 48 </data>
49 </outputs> 49 </outputs>
50 <tests> 50 <tests>
51 <!-- #1 default --> 51 <!-- #1 default -->