Mercurial > repos > iuc > bioext_bealign
annotate bealign.xml @ 0:6ef10b28e967 draft
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
author | iuc |
---|---|
date | Wed, 16 May 2018 17:34:42 -0400 |
parents | |
children | f9b72a376ec9 |
rev | line source |
---|---|
0
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
2 <tool id="bioext_bealign" name="Align sequences" version="@VERSION@.0"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
3 <description>to a reference using a codon alignment algorithm</description> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
4 <macros> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
6 </macros> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
7 <expand macro="requirements" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
8 <version_command>bealign --version</version_command> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
9 <command detect_errors="exit_code"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
10 <![CDATA[ |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
11 bealign --reference '$select_reference.reference' --alphabet $advanced.alphabet |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
12 #if $advanced.expected_identity: |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
13 --expected-identity $advanced.expected_identity |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
14 #end if |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
15 --score-matrix $advanced.score_matrix $advanced.reverse_complement $advanced.keep_reference |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
16 #if $advanced.discard: |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
17 $advanced.discard '$advanced.discarded_reads' |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
18 #end if |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
19 '$input' '$output' |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
20 ]]> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
21 </command> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
22 <inputs> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
23 <param name="input" type="data" format="fasta" label="Input reads" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
24 <conditional name="select_reference"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
25 <param name="reference_type" type="select"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
26 <option value="preset">Select preset</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
27 <option value="dataset">Use a history dataset</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
28 </param> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
29 <when value="preset"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
30 <param argument="--reference" type="select"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
31 <option value="HXB2_tat">HXB2 tat</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
32 <option value="HXB2_gag">HXB2 gag</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
33 <option value="HXB2_pol">HXB2 polymerase</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
34 <option value="HXB2_int">HXB2 integrase</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
35 <option value="HXB2_vif">HXB2 vif</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
36 <option value="HXB2_pr">HXB2 protease</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
37 <option value="HXB2_vpr">HXB2 vpr</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
38 <option value="NL4-3_prrt">NL4-3 protease and reverse transcriptase</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
39 <option value="HXB2_nef">HXB2 nef</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
40 <option value="HXB2_env">HXB2 envelope</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
41 <option value="HXB2_rt">HXB2 reverse transcriptase</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
42 <option value="HXB2_prrt">HXB2 protease and reverse transcriptase</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
43 <option value="HXB2_rev">HXB2 rev</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
44 <option value="HXB2_vpu">HXB2 vpu</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
45 </param> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
46 </when> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
47 <when value="dataset"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
48 <param argument="--reference" type="data" format="fasta" label="Reference sequences" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
49 </when> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
50 </conditional> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
51 <section name="advanced" title="Advanced options" expanded="False"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
52 <param name="expected_identity" argument="--expected-identity" type="float" min="0" max="1" optional="True" label="Discard sequences that are insufficiently identical to the reference" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
53 <param argument="--alphabet" type="select" label="Alphabet to use for alignment"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
54 <option value="codon" selected="True">Codon</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
55 <option value="dna">DNA</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
56 <option value="amino">Amino acids</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
57 </param> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
58 <param name="score_matrix" argument="--score-matrix" type="select" label="Parametrize using score matrix"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
59 <option value="BLOSUM62" selected="True">Blocks substitution</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
60 <option value="DNA65">DNA, 65% expected identity</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
61 <option value="DNA70">DNA, 70% expected identity</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
62 <option value="DNA88">DNA, 88% expected identity</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
63 <option value="DNA80">DNA, 80% expected identity</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
64 <option value="DNA95">DNA, 95% expected identity</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
65 <option value="PAM200">PAM 200 substitution</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
66 <option value="PAM250">PAM 250 substitution</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
67 <option value="HIV_BETWEEN_F">HIV between+F</option> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
68 </param> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
69 <param argument="--discard" type="boolean" checked="False" truevalue="--discard" falsevalue="" label="Output discarded sequences to a separate dataset" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
70 <param name="reverse_complement" argument="--reverse-complement" type="boolean" checked="False" truevalue="--reverse-complement" falsevalue="" label="Also try to align against reverse complement of reference" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
71 <param name="keep_reference" argument="--keep-reference" type="boolean" checked="False" truevalue="--keep-reference" falsevalue="" label="Include reference as first sequence in aligned BAM" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
72 </section> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
73 </inputs> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
74 <outputs> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
75 <data name="output" format="bam" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
76 <data name="discarded_reads" format="fasta"> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
77 <filter>advanced['discard']</filter> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
78 </data> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
79 </outputs> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
80 <tests> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
81 <test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
82 <param name="input" ftype="fasta" value="bealign-in1.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
83 <param name="reference_type" value="dataset" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
84 <param name="score_matrix" value="HIV_BETWEEN_F" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
85 <param name="reference" ftype="fasta" value="bealign-in-ref-1.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
86 <output name="output" file="bealign-out1.bam" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
87 </test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
88 <test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
89 <param name="input" ftype="fasta" value="bealign-in2.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
90 <param name="reference_type" value="dataset" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
91 <param name="score_matrix" value="BLOSUM62" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
92 <param name="reference" ftype="fasta" value="bealign-in-ref-2.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
93 <output name="output" file="bealign-out2.bam" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
94 </test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
95 <test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
96 <param name="input" ftype="fasta" value="bealign-in2.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
97 <param name="reference_type" value="dataset" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
98 <param name="expected_identity" value="0.9" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
99 <param name="score_matrix" value="BLOSUM62" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
100 <param name="reference" ftype="fasta" value="bealign-in-ref-2.fa" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
101 <output name="output" file="bealign-out3.bam" /> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
102 </test> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
103 </tests> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
104 <help> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
105 <![CDATA[ |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
106 bealign |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
107 ------- |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
108 |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
109 Align sequences to a reference using a codon alignment algorithm. |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
110 |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
111 NOTES |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
112 ----- |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
113 |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
114 Reference can be one of the presets or a custom history reference. |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
115 ]]></help> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
116 <expand macro="citations"/> |
6ef10b28e967
planemo upload for repository https://github.com/davebx/bioext-gx/ commit e85b8f45da435793513a47e4586b90ddec63fa86
iuc
parents:
diff
changeset
|
117 </tool> |