annotate sina.xml @ 0:a21965c8bcf1 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
author iuc
date Wed, 23 Oct 2019 18:28:17 -0400
parents
children 49b937f12aa4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
1 <tool id="sina" name="SINA" version="@TOOL_VERSION@+@WRAPPER_VERSION@">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
2 <description>reference based multiple sequence alignment</description>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
3 <macros>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
5 </macros>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
7 <stdio></stdio>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
9 ## initialize
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
10 ## parse custom reference from fasta to arb file format
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
11
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
12 #if $db.select == 'custom'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
13 #if $db.custom.ext == 'fasta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
14 sina -i '$db.custom' --prealigned -o ./reference.arb &&
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
15 #else
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
16 ln -s '$db.custom' ./reference.arb &&
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
17 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
18 #elif $db.select == 'local'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
19 ln -s '$db.arb_databases.fields.path' ./reference.arb &&
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
20 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
21
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
22 ## run
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
23 sina
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
24 --in='$in'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
25 --db=./reference.arb
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
26 -p \${GALAXY_SLOTS:-4}
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
27 --num-pts=\${GALAXY_SLOTS:-4}
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
28
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
29 #if $os.type == 'arb'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
30 --outtype='arb'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
31 --out=output.arb
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
32 #elif $os.type == 'fasta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
33 --outtype='fasta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
34 --out=output.fasta
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
35 --min-idty=$os.minidty
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
36 #elif $os.type == 'fasta_meta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
37 --outtype='fasta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
38 --out=output.fasta
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
39 --min-idty=$os.minidty
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
40 --meta-fmt='csv'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
41 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
42 #if $log == 'yes'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
43 --log-file=$logfile
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
44 #elif $log == 'yes_meta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
45 --log-file=$logfile
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
46 --show-diff
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
47 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
48
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
49 ## Advanced alignment parameters
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
50 --overhang=$ap.overhang
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
51 --insertion=$ap.insertion
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
52 #if $ap.turn == 'yes'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
53 -t
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
54 #elif $ap.turn == 'all'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
55 -t all
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
56 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
57
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
58 ## Expert Alignment Parameters
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
59 --fs-min=$eap.fsmin
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
60 --fs-max=$eap.fsmax
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
61 --fs-msc=$eap.fsmsc
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
62 --fs-weight=$eap.fsweight
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
63 --fs-req=$eap.fsreq
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
64 --fs-req-full=$eap.fsreqfull
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
65 --fs-full-len=$eap.fsfulllen
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
66 --gene-start=$eap.genestart
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
67 --gene-end=$eap.geneend
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
68 --fs-cover-gene=$eap.fscovergene
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
69 --match-score=$eap.matchscore
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
70 --mismatch-score=$eap.mismatchscore
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
71 --pen-gap=$eap.pengap
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
72 --pen-gapext=$eap.pengapext
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
73 --fs-kmer-len=$eap.fskmerlen
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
74 --fs-kmer-mm=$eap.fskmermm
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
75 $eap.fskmernofast
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
76 $eap.fskmernorel
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
77
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
78 ## Advanced search and classification parameters
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
79 #if $asacp.activate == 'yes'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
80 --search
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
81 --search-kmer-candidates=$asacp.searchkmercandidates
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
82 --lca-quorum=$asacp.lcaquorum
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
83 --search-kmer-len=$asacp.searchkmerlen
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
84 --search-kmer-mm=$asacp.searchkmermm
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
85 --search-max-result=$asacp.searchmaxresult
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
86 $asacp.searchnofast
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
87 $asacp.searchkmernorel
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
88 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
89
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
90 ## convert meta file to tabular
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
91 #if $os.type == 'fasta_meta'
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
92 && cat output.csv | sed 's/,/\t/g' > output.tsv
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
93 #end if
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
94 ]]></command>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
95 <!-- Sections and default parameters are based on https://www.arb-silva.de/aligner -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
96 <inputs>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
97 <param argument="--in" type="data" format="fasta" multiple="false" label="Sequence file" help="FASTA file format"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
98 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
99 <param name="select" type="select" label="Reference library type" help="">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
100 <option value="custom" selected="true">Custom</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
101 <option value="local">Local cached</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
102 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
103 <when value="custom">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
104 <param name="custom" type="data" format="data" label="Reference library file" help="FASTA or ARB file format (--db)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
105 </when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
106 <when value="local">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
107 <param name="arb_databases" type="select" label="Local cached libraries" help="">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
108 <options from_data_table="sina_references">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
109 <validator message="No database is available" type="no_options"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
110 </options>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
111 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
112 </when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
113 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
114 <conditional name="asacp">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
115 <param name="activate" type="select" label="Enable search stage" help="(--search)">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
116 <option value="no">No</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
117 <option value="yes">Yes</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
118 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
119 <when value="no"></when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
120 <when value="yes">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
121 <param name="searchkmercandidates" type="integer" value="1000" label="Set number of candidate reference sequences retrieved from the k-mer based search." help="For each candidate, the MSA based similarity is calculated and the search result based on these numbers. A value for n one or two orders larger than --search-max-result is usually quite sufficient. (--search-kmer-candidates)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
122 <param name="lcaquorum" type="float" value="0.8" min="0.0" max="1.0" label="Fraction of the search result that must share the same classification" help="Using the default parameters --search-max-result=10 and --lca-quorum=0.7, this means that the deepest classification shared by 7 out of the top 10 search results is chosen for the query sequence. (--lca-quorum)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
123 <param name="searchkmerlen" type="integer" value="10" min="0" label="Set k for the kmer based candidate search." help="See --fs-kmer-len. (--search-kmer-len)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
124 <param name="searchkmermm" type="integer" value="0" min="0" label="Set the number of allowed mismatches within each kmer." help="See --fs-kmer-mm. (--search-kmer-mm)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
125 <param name="searchnofast" type="boolean" truevalue="--search-no-fast" falsevalue="" checked="true" label="Skip fast family search." help="This option configures the same behavior for the search stage. See --fs-kmer-no-fast. (--search-no-fast)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
126 <param name="searchkmernorel" type="boolean" truevalue="--search-kmer-norel" falsevalue="" checked="false" label="Configures the candidate search to use absolute rather than length-relative scores for ordering the results." help="See --fs-kmer-norel. ( --search-kmer-norel)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
127 <param name="searchmaxresult" type="integer" value="10" min="0" label="The maximum number of search results to return for each query sequence." help="(--search-max-result)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
128 </when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
129 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
130 <conditional name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
131 <param name="type" type="select" label="Output file type" help="(--outtype)">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
132 <option value="fasta">FASTA</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
133 <option value="fasta_meta">FASTA with meta-file</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
134 <option value="arb">ARB</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
135 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
136 <when value="fasta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
137 <param name="minidty" type="float" value="0.7" min="0.0" max="1.0" label="Exclude sequences sharing less than this value fractional identity with any of the alignment reference sequences from the output." help="(--min-idty)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
138 </when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
139 <when value="fasta_meta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
140 <param name="minidty" type="float" value="0.7" min="0.0" max="1.0" label="Exclude sequences sharing less than this value fractional identity with any of the alignment reference sequences from the output." help="(--min-idty)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
141 </when>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
142 <when value="arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
143 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
144 <param name="log" type="select" label="Create log file" help="(--log-file, --show-diff)">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
145 <option value="no">no</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
146 <option value="yes">yes</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
147 <option value="yes_meta">yes with differences between the inferred alignment and the original alignment</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
148 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
149 <section name="ap" title="Alignment parameters">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
150 <param argument="--overhang" type="select" label="Bases remaining unaligned at the ends should be" help="">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
151 <option value="attach">attached to the last aligned base.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
152 <option value="edge">moved to the edge of the alignment.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
153 <!-- maybe broken, see https://sina.readthedocs.io/en/latest/commandline.html#alignment-options -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
154 <option value="remove">removed.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
155 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
156 <param argument="--insertion" type="select" label="Insertions wider than available columns should be">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
157 <option value="forbid">forbidden during alignment.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
158 <option value="shift">accomodated by pushing out surrounding bases.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
159 <option value="remove">removed.</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
160 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
161 <param argument="--turn" type="select" label="Enable turn check stage" help="Sequences not oriented in accordance with the reference database will be reverse complemented as needed. If all is specified, sequences will also be tested for only reversal or only complemented (this should only be necessary if your data was mishandled).">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
162 <option value="yes">Yes</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
163 <option value="no">No</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
164 <option value="all">All</option>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
165 </param>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
166 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
167 <section name="eap" title="Expert alignment parameters">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
168 <param name="fsmin" type="integer" value="15" min="0" label="Minimum number of reference sequences used for each query" help="(--fs-min)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
169 <param name="fsmax" type="integer" value="40" min="0" label="Maximum number of reference sequences used for each query" help="(--fs-max)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
170 <param name="fsmsc" type="float" value="0.7" min="0.0" max="1.0" label="Minimum similarity reference sequences" help="Required to have with the query sequence. This affects the range between --fs-min and --fs-max(--fs-msc)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
171 <param name="fsweight" type="integer" value="1" min="0" label="Adjust the weight factor for the frequency at which a node was observed in the reference alignment." help="Use 0 to disable weighting. This feature prefers the more common placement for bases with inconsistent alignment in the reference database. (--fs-weight)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
172 <param name="fsreq" type="integer" value="1" min="0" label="Minimum number of reference sequences that must be found in order to attempt alignment" help="If fewer sequences than indicated here are found, the respective query sequence will be discarded. (--fs-req)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
173 <param name="fsreqfull" type="integer" value="1" min="0" label="Minimum number of full length reference sequences that must be included in the selected reference set" help="The search will proceed regardless of other settings until this setting has been satisfied. If it cannot be satisfied by any sequence in the reference database, the query sequence will be discarded. This setting exists to ensure that the entire length of the query sequence will be covered in the presence of partial sequences contained within your reference database. Note: If you are working with sequences other than 16S, you need to adjust this value or the value of --fs-full-len accordingly. In particular when working with short reference sequences, this setting may prevent any acceptable reference sequences from being found, leading to no sequences being aligned. (--fs-req-full)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
174 <param name="fsfulllen" type="integer" value="1400" min="0" label="Minimum length a sequence is required to have to be considered full length" help="(--fs-full-len)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
175 <param name="genestart" type="integer" value="0" min="0" label="Sets the beginning of the gene within the reference alignment." help="See --fs-cover-gene. (--gene-start)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
176 <param name="geneend" type="integer" value="0" min="0" label="Sets the end of the gene within the reference alignment." help="See --fs-cover-gene. (--gene-end)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
177 <param name="fscovergene" type="integer" value="0" label="Require total of n sequences to cover each the beginning and the end of the gene within the alignment." help="Similar to --fs-req-full. This option is more precise than --fs-req-full, but requires that the column numbers for the range in which the full gene is expected be specified via --gene-start and --gene-end. (--fs-cover-gene)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
178 <param name="matchscore" type="integer" value="2" min="0" label="Score given for a match" help="(--match-score)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
179 <param name="mismatchscore" type="integer" value="-1" max="0" label="Score given for a mismatch" help="(--mismatch-score)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
180 <param name="pengap" type="integer" value="5" min="0" label="Set the penalty subtracted from the score for opening a gap." help="(--pen-gap)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
181 <param name="pengapext" type="integer" value="2" min="0" label="Set the penalty subtracted from the score for extending a gap." help="(--pen-gapext)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
182 <param name="fskmerlen" type="integer" value="10" min="0" label="Size of k for the reference search" help="For SSU rRNA sequences, the default of 10 is a good value. For different sequence types, different values may perform better. For 5S, for example, 6 has shown to be more effective. (--fs-kmer-len)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
183 <param name="fskmermm" type="integer" value="0" min="0" label="Allow k-mer matches in the reference database to contain this number of mismatches." help=" (--fs-kmer-mm)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
184 <param name="fskmernofast" type="boolean" truevalue="--fs-kmer-no-fast" falsevalue="" checked="false" label="Use all k-mers occurring in the query sequence in the search." help="By default, only k-mers starting with an A are used for extra performance. (--fs-kmer-no-fast)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
185 <param name="fskmernorel" type="boolean" truevalue="--fs-kmer-norel" falsevalue="" checked="false" label="Use absolute match scores in the kmer search." help="Absolute (number of shared k-mers) rather than relative (number or shared k-mers divided by length of reference sequence) (--fs-kmer-norel)"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
186 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
187 </inputs>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
188 <outputs>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
189 <data name="output_fasta" format="fasta" from_work_dir="output.fasta" label="${tool.name} on ${on_string}: alignment">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
190 <filter>os['type'] == 'fasta' or os['type'] == 'fasta_meta'</filter>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
191 </data>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
192 <data name="output_arb" format="data" from_work_dir="output.arb" label="${tool.name} on ${on_string}: alignment">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
193 <filter>os['type'] == 'arb'</filter>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
194 </data>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
195 <data name="output_meta" format="csv" from_work_dir="output.tsv" label="${tool.name} on ${on_string}: meta information">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
196 <filter>os['type'] == 'fasta_meta'</filter>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
197 </data>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
198 <data name="logfile" format="txt" label="${tool.name} on ${on_string}: log">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
199 <filter>log == 'yes' or log == 'yes_meta'</filter>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
200 </data>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
201 </outputs>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
202 <tests>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
203 <!-- name pattern of outputfile: output_<in_filetype>_<db_filetype>.<os.type>" -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
204 <!-- #1 in: *.fasta; db: *.fasta; out: *.fasta; standard parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
205 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
206 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
207 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
208 <param name="custom" value="reference.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
209 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
210 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
211 <param name="type" value="fasta_meta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
212 <param name="minidty" value="0.0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
213 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
214 <output name="output_meta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
215 <assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
216 <has_text text="FJ203641.1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
217 <has_n_lines n="18"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
218 </assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
219 </output>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
220 <output name="output_fasta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
221 <assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
222 <has_line line=">FJ203641.1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
223 <has_line line=">WH051F03"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
224 <has_n_lines n="34"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
225 </assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
226 </output>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
227 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
228 <!-- #2 in: *.fasta; db: *.fasta; out: *.arb; standard parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
229 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
230 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
231 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
232 <param name="custom" value="reference.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
233 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
234 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
235 <param name="type" value="arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
236 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
237 <output name="output_arb" file="output_fasta_fasta.arb" compare="sim_size" delta="100"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
238 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
239 <!-- #3 in: *.fasta; db: *.arb; out: *.fasta; standard parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
240 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
241 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
242 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
243 <param name="custom" value="reference.arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
244 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
245 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
246 <param name="type" value="fasta_meta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
247 <param name="minidty" value="0.0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
248 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
249 <output name="output_meta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
250 <assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
251 <has_text text="FJ203641.1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
252 <has_n_lines n="18"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
253 </assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
254 </output>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
255 <output name="output_fasta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
256 <assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
257 <has_line line=">FJ203641.1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
258 <has_line line=">WH051F03"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
259 <has_n_lines n="34"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
260 </assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
261 </output>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
262 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
263 <!-- #4 in: *.fasta; db: *.arb; out: *.arb; standard parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
264 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
265 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
266 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
267 <param name="custom" value="reference.arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
268 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
269 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
270 <param name="type" value="arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
271 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
272 <output name="output_arb" file="output_fasta_arb.arb" compare="sim_size" delta="1000"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
273 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
274 <!-- #5 in: *.fasta; db: *.arb; out: *.fasta; custom parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
275 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
276 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
277 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
278 <param name="custom" value="reference.arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
279 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
280 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
281 <param name="type" value="fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
282 <param name="minidty" value="0.0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
283 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
284 <section name="ap">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
285 <param name="overhang" value="edge"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
286 <param name="insertion" value="shift"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
287 <param name="turn" value="all"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
288 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
289 <section name="eap">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
290 <param name="fsmin" value="14"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
291 <param name="fsmax" value="41"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
292 <param name="fsmsc" value="0.8"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
293 <param name="fsweight" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
294 <param name="fsreq" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
295 <param name="fsreqfull" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
296 <param name="fsfulllen" value="1399"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
297 <param name="genestart" value="0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
298 <param name="geneend" value="0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
299 <param name="fscovergene" value="0"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
300 <param name="matchscore" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
301 <param name="mismatchscore" value="-2"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
302 <param name="pengap" value="6"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
303 <param name="pengapext" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
304 <param name="fskmerlen" value="9"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
305 <param name="fskmermm" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
306 <param name="fskmernofast" value="--fs-kmer-no-fast"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
307 <param name="fskmernorel" value=""/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
308 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
309 <section name="asacp">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
310 <param name="searchkmercandidates" value="1001"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
311 <param name="lcaquorum" value="0.9"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
312 <param name="searchkmerlen" value="9"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
313 <param name="searchkmermm" value="1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
314 <param name="searchnofast" value=""/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
315 <param name="searchkmernorel" value="--search-kmer-norel"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
316 <param name="searchmaxresult" value="10"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
317 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
318 <output name="output_fasta">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
319 <assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
320 <has_line line=">FJ203641.1"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
321 <has_line line=">WH051F03"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
322 <has_n_lines n="34"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
323 </assert_contents>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
324 </output>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
325 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
326 <!-- #6 in: *.fasta; db: <arb_databases>.arb; out: *.fasta; standard parameters -->
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
327 <test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
328 <param name="in" value="sequence.fasta"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
329 <conditional name="db">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
330 <param name="select" value="local"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
331 <param name="arb_databases" value="testarb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
332 </conditional>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
333 <section name="os">
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
334 <param name="type" value="arb"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
335 </section>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
336 <output name="output_arb" file="output_fasta_arb.arb" compare="sim_size" delta="1000"/>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
337 </test>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
338 </tests>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
339
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
340 <help><![CDATA[
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
341 .. class:: infomark
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
342
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
343 **What it does**
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
344
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
345 SINA aligns nucleotide sequences to match a pre-existing MSA using a graph-based alignment algorithm similar to PoA. The graph approach allows SINA to incorporate information from many reference sequences without blurring highly variable regions. While pure NAST implementations are highly dependent on finding a good match in the reference database, SINA is able to align sequences relatively distant to references with good quality and will yield a robust result for query sequences with many close references.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
346
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
347 While adding sequences to an MSA with SINA is usually faster than re-computing the entire MSA from an augmented set of unaligned sequences, the primary benefit lies in protecting investments made into the original MSA such as manual curation of the alignment, compute-intensive phylogenetic tree reconstruction and taxonomic annotation of the resulting phylogeny. Additionally, SINA includes a homology search which uses the previously computed alignment to determine the most similar sequences. Based on the search results, a LCA-based classification of the query sequence can be computed using taxonomic classifications assigned to the sequences comprising the reference MSA.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
348
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
349 SINA is used to compute the large and small subunit ribosomal RNA alignments provided by the `SILVA project <https://www.arb-silva.de/>`_ and is able to use the `ARB format reference databases <https://www.arb-silva.de/download/arb-files/>`_ released by the project.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
350
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
351 **Input**
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
352
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
353 SINA requires sequences in FASTA file format, whereas libraries can be also provided as ARB files. Furthermore, reference databases can be added as data tables. See README.md for more information.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
354
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
355 **Output**
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
356
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
357 Results are provided in FASTA or ARB file format, whereas additional metadata is provided as CSV.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
358
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
359 .. class:: infomark
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
360
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
361 **References**
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
362
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
363 More information can be found on the `project website <https://sina.readthedocs.io/en/latest>`_, and on `github <https://github.com/epruesse/SINA>`_. An `online version <https://www.arb-silva.de/aligner>`_ of SINA is provided by the SILVA project.
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
364 ]]></help>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
365 <citations>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
366 <citation type="doi">10.1093/bioinformatics/bts252</citation>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
367 </citations>
a21965c8bcf1 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina commit 776b362db87d508ca44983eae02dcd4f119b95e8"
iuc
parents:
diff changeset
368 </tool>