comparison dist.seqs.xml @ 4:2211f97b6d1b draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 4648c7574a78601e03ae6a318cbcd5b492a8a9f4
author iuc
date Wed, 14 Feb 2018 09:49:49 -0500
parents 699ed9de9edf
children 3456fb5f8a3a
comparison
equal deleted inserted replaced
3:3b8c738bd002 4:2211f97b6d1b
5 </macros> 5 </macros>
6 <expand macro="requirements"/> 6 <expand macro="requirements"/>
7 <expand macro="stdio"/> 7 <expand macro="stdio"/>
8 <expand macro="version_command"/> 8 <expand macro="version_command"/>
9 <command><![CDATA[ 9 <command><![CDATA[
10 @SHELL_OPTIONS@ 10 @SHELL_OPTIONS@
11 11
12 ## create symlinks to input datasets 12 ## create symlinks to input datasets
13 ln -s "$fasta" fasta.dat && 13 ln -s '$fasta' fasta.dat &&
14 14
15 echo 'dist.seqs( 15 echo 'dist.seqs(
16 fasta=fasta.dat, 16 fasta=fasta.dat,
17 #if $calc: 17 #if $calc:
18 calc=$calc, 18 calc=$calc,
19 #end if 19 #end if
20 countends=$countends, 20 countends=$countends,
21 #if $cutoff: 21 #if $cutoff:
22 cutoff=$cutoff, 22 cutoff=$cutoff,
23 #end if 23 #end if
24 #if $output: 24 #if $output:
25 output=$output, 25 output=$output,
26 #end if 26 #end if
27 processors='\${GALAXY_SLOTS:-8}' 27 processors='\${GALAXY_SLOTS:-8}'
28 )' 28 )'
29 | sed 's/ //g' ## mothur trips over whitespace 29 | sed 's/ //g' ## mothur trips over whitespace
30 | mothur 30 | mothur
31 | tee mothur.out.log 31 | tee mothur.out.log
32 ]]></command> 32 ]]></command>
33 <inputs> 33 <inputs>
34 <param name="fasta" type="data" format="mothur.align,fasta" label="fasta - Alignment Fasta"/> 34 <param name="fasta" type="data" format="mothur.align,fasta" label="fasta - Alignment Fasta"/>
35 <param name="calc" type="select" label="calc - Calc Method - Gap Penality"> 35 <param name="calc" type="select" label="calc - Calc Method - Gap Penality">
36 <option value="" selected="true">use default</option> 36 <option value="" selected="true">use default</option>
37 <option value="onegap">onegap - counts a string of gaps as a single gap</option> 37 <option value="onegap">onegap - counts a string of gaps as a single gap</option>
38 <option value="nogaps">nogaps - ignores gaps</option> 38 <option value="nogaps">nogaps - ignores gaps</option>
39 <option value="eachgap ">eachgap - penalize each gap</option> 39 <option value="eachgap ">eachgap - penalize each gap</option>
40 </param> 40 </param>
41 <param name="countends" type="boolean" checked="true" truevalue="true" falsevalue="false" label="countends - Penalize terminal gaps"/> 41 <param name="countends" type="boolean" checked="true" truevalue="true" falsevalue="false" label="countends - Penalize terminal gaps"/>
42 <param name="cutoff" type="float" value="" min="0.0" optional="true" label="cutoff - Distance Cutoff threshold - ignored if not > 0" help="Do not save any distances larger than this, a common value would be 0.10"/> 42 <param name="cutoff" type="float" value="" min="0.0" optional="true" label="cutoff - Distance Cutoff threshold - ignored if not > 0"
43 help="Do not save any distances larger than this, a common value would be 0.10"/>
43 <param name="output" type="select" label="output - Distance Matrix Output Format" help=""> 44 <param name="output" type="select" label="output - Distance Matrix Output Format" help="">
44 <option value="" selected="true">Default Column-Formatted Matrix</option> 45 <option value="" selected="true">Default Column-Formatted Matrix</option>
45 <option value="lt">Phylip formatted Lower Triangle Matrix</option> 46 <option value="lt">Phylip formatted Lower Triangle Matrix</option>
46 <option value="square">Phylip formatted Square Matrix</option> 47 <option value="square">Phylip formatted Square Matrix</option>
47 </param> 48 </param>
69 <param name="output" value="lt"/> 70 <param name="output" value="lt"/>
70 <output name="out_dist" md5="8a5ccf1ad8f1c344cf4d3e2c97d4cdc6" ftype="mothur.lower.dist"/> 71 <output name="out_dist" md5="8a5ccf1ad8f1c344cf4d3e2c97d4cdc6" ftype="mothur.lower.dist"/>
71 <expand macro="logfile-test"/> 72 <expand macro="logfile-test"/>
72 </test> 73 </test>
73 </tests> 74 </tests>
74 <help> 75 <help><![CDATA[
75 <![CDATA[
76 76
77 @MOTHUR_OVERVIEW@ 77 @MOTHUR_OVERVIEW@
78 78
79 **Command Documentation** 79 **Command Documentation**
80 80
84 .. _phylip-formatted_distance_matrix: https://www.mothur.org/wiki/Phylip-formatted_distance_matrix 84 .. _phylip-formatted_distance_matrix: https://www.mothur.org/wiki/Phylip-formatted_distance_matrix
85 .. _dist.seqs: https://www.mothur.org/wiki/Dist.seqs 85 .. _dist.seqs: https://www.mothur.org/wiki/Dist.seqs
86 86
87 v.1.20.0: Updated to Mothur 1.33 87 v.1.20.0: Updated to Mothur 1.33
88 88
89 ]]> 89 ]]></help>
90 </help>
91 <expand macro="citations"/> 90 <expand macro="citations"/>
92 </tool> 91 </tool>