comparison mrbayes.xml @ 1:bd36a094f934 draft

planemo upload commit 5e6b76536ce524b849abf98220dcb1ec77570813-dirty
author nml
date Tue, 15 Dec 2015 16:22:56 -0500
parents 25da76152cf2
children 2fe97192eb4b
comparison
equal deleted inserted replaced
0:25da76152cf2 1:bd36a094f934
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="mrbayes" name="MrBayes" version="1.0.0"> 2 <tool id="mrbayes" name="MrBayes" version="1.0.1">
3 <description>with options and commands</description> 3 <description>with options and commands</description>
4 <requirements> 4 <requirements>
5 <requirement type="package" version="3.2.6">mrbayes</requirement> 5 <requirement type="package" version="3.2.6">mrbayes</requirement>
6 </requirements> 6 </requirements>
7 <stdio>
8 <exit_code range="1:" level="fatal" description="Unknown error has occurred"/>
9 </stdio>
7 <command> mb $command_file > $outfile 10 <command> mb $command_file > $outfile
8 ## print list of avaialble variables 11 ## print list of avaialble variables
9 #silent sys.stderr.write("\n \n \n ======== Cheetah template variables ========\n") 12 #silent sys.stderr.write("\n \n \n ======== Cheetah template variables ========\n")
10 #for k,v in $searchList[2].items() 13 #for k,v in $searchList[2].items()
11 #silent sys.stderr.write(" %s = %s\n" % (str(k), str(v) )) 14 #silent sys.stderr.write(" %s = %s\n" % (str(k), str(v) ))
13 #silent sys.stderr.write("======== End of Cheetah template variables ========\n \n \n") 16 #silent sys.stderr.write("======== End of Cheetah template variables ========\n \n \n")
14 </command> 17 </command>
15 <configfiles> 18 <configfiles>
16 <configfile name="command_file"> 19 <configfile name="command_file">
17 begin mrbayes; 20 begin mrbayes;
18 set seed=$seed; 21 set Seed=$seed;
22 set Swapseed=$swapseed;
19 set quitonerror=no; 23 set quitonerror=no;
20 execute $data; 24 execute $data;
21 outgroup $outgroup; 25 outgroup $outgroup;
22 $model; 26 $model;
23 lset rates=$rates; 27 lset rates=$rates;
104 help="Requires .ckp file (i.e. that number of generations > checkpoint frequency for previous analysis)." /> 108 help="Requires .ckp file (i.e. that number of generations > checkpoint frequency for previous analysis)." />
105 <param name="seed" type="integer" label="&lt;hr&gt;Seed" optional="false" value="5" 109 <param name="seed" type="integer" label="&lt;hr&gt;Seed" optional="false" value="5"
106 help="Specify a seed with which to run the job."> 110 help="Specify a seed with which to run the job.">
107 <validator type="in_range" min="1" max="inf" message="Must be greater than or equal to 1"/> 111 <validator type="in_range" min="1" max="inf" message="Must be greater than or equal to 1"/>
108 </param> 112 </param>
113 <param name="swapseed" type="integer" label="&lt;hr&gt;Swap Seed" optional="false" value="5"
114 help="Specify a swap seed with which to run the job.">
115 <validator type="in_range" min="1" max="inf" message="Must be greater than or equal to 1"/>
116 </param>
109 </inputs> 117 </inputs>
110 <outputs> 118 <outputs>
111 <data name="outfile" format="txt"/> 119 <data name="outfile" format="txt"/>
112 </outputs> 120 </outputs>
113 121