annotate gene_family_aligner.xml @ 5:a73c2e65098e draft

Uploaded
author greg
date Fri, 25 Aug 2017 13:01:25 -0400
parents d3f8c8b77dbe
children 3384b6a842b0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
d3f8c8b77dbe Uploaded
greg
parents: 3
diff changeset
1 <tool id="plant_tribes_gene_family_aligner" name="GeneFamilyAligner" version="@WRAPPER_VERSION@.2">
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
2 <description>aligns integrated orthologous gene family clusters</description>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
3 <macros>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
4 <import>macros.xml</import>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
5 </macros>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
6 <expand macro="requirements_gene_family_aligner" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
7ba9469800b9 Uploaded
greg
parents:
diff changeset
8 #set input_format = $input_format_cond.input_format
7ba9469800b9 Uploaded
greg
parents:
diff changeset
9 #set alignment_method_cond = $input_format_cond.alignment_method_cond
7ba9469800b9 Uploaded
greg
parents:
diff changeset
10 #set alignment_method = $alignment_method_cond.alignment_method
7ba9469800b9 Uploaded
greg
parents:
diff changeset
11 #if str($input_format_cond.input_format) == 'ptortho':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
12 #set output_codon_alignments = False
7ba9469800b9 Uploaded
greg
parents:
diff changeset
13 #else if str($input_format_cond.input_format) == 'ptorthocs' and str($input_format_cond.codon_alignments ) == 'no':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
14 #set output_codon_alignments = False
7ba9469800b9 Uploaded
greg
parents:
diff changeset
15 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
16 #set output_codon_alignments = True
7ba9469800b9 Uploaded
greg
parents:
diff changeset
17 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
18
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
19 python '$__tool_directory__/gene_family_aligner.py'
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
20 --alignment_method $alignment_method
7ba9469800b9 Uploaded
greg
parents:
diff changeset
21 #if str($alignment_method) == 'pasta':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
22 --pasta_script_path '$__tool_directory__/run_pasta.py'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
23 --pasta_iter_limit $alignment_method_cond.pasta_iter_limit
7ba9469800b9 Uploaded
greg
parents:
diff changeset
24 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
25 --num_threads \${GALAXY_SLOTS:-4}
7ba9469800b9 Uploaded
greg
parents:
diff changeset
26 #if str($input_format) == 'ptortho':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
27 --orthogroup_faa '$input_format_cond.input_ptortho.extra_files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
28 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
29 ## str($input_format) == 'ptorthocs'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
30 --orthogroup_faa '$input_format_cond.input_ptorthocs.extra_files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
31 #if str($input_format_cond.codon_alignments) == 'yes':
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
32 --codon_alignments true
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
33 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
34 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
35 #set remove_gappy_sequences = $remove_gappy_sequences_cond.remove_gappy_sequences
7ba9469800b9 Uploaded
greg
parents:
diff changeset
36 #if str($remove_gappy_sequences) == 'yes':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
37 #set trim_type_cond = $remove_gappy_sequences_cond.trim_type_cond
7ba9469800b9 Uploaded
greg
parents:
diff changeset
38 #set trim_type = $trim_type_cond.trim_type
7ba9469800b9 Uploaded
greg
parents:
diff changeset
39 #if str($trim_type) == 'gap_trimming' and str($trim_type_cond.gap_trimming):
7ba9469800b9 Uploaded
greg
parents:
diff changeset
40 --gap_trimming $trim_type_cond.gap_trimming
7ba9469800b9 Uploaded
greg
parents:
diff changeset
41 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
42 ## str($trim_type) == 'automated_trimming'
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
43 --automated_trimming true
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
44 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
45 #set remove_sequences_with_gaps_cond = $remove_gappy_sequences_cond.remove_sequences_with_gaps_cond
7ba9469800b9 Uploaded
greg
parents:
diff changeset
46 #set remove_sequences_with_gaps = $remove_sequences_with_gaps_cond.remove_sequences_with_gaps
7ba9469800b9 Uploaded
greg
parents:
diff changeset
47 #if str($remove_sequences_with_gaps) == 'yes':
7ba9469800b9 Uploaded
greg
parents:
diff changeset
48 #if str($remove_sequences_with_gaps_cond.remove_sequences_with_gaps_of):
7ba9469800b9 Uploaded
greg
parents:
diff changeset
49 --remove_sequences $remove_sequences_with_gaps_cond.remove_sequences_with_gaps_of
7ba9469800b9 Uploaded
greg
parents:
diff changeset
50 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
51 #if str($remove_sequences_with_gaps_cond.iterative_realignment):
7ba9469800b9 Uploaded
greg
parents:
diff changeset
52 --iterative_realignment $remove_sequences_with_gaps_cond.iterative_realignment
7ba9469800b9 Uploaded
greg
parents:
diff changeset
53 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
54 #if $output_codon_alignments:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
55 --output '$output_aln_filtered_ca'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
56 --output_dir '$output_aln_filtered_ca.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
57 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
58 --output '$output_aln_filtered'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
59 --output_dir '$output_aln_filtered.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
60 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
61 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
62 #if $output_codon_alignments:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
63 --output '$output_aln_trimmed_ca'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
64 --output_dir '$output_aln_trimmed_ca.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
65 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
66 --output '$output_aln_trimmed'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
67 --output_dir '$output_aln_trimmed.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
68 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
69 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
70 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
71 #if $output_codon_alignments:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
72 --output '$output_aln_ca'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
73 --output_dir '$output_aln_ca.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
74 #else:
7ba9469800b9 Uploaded
greg
parents:
diff changeset
75 --output '$output_aln'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
76 --output_dir '$output_aln.files_path'
7ba9469800b9 Uploaded
greg
parents:
diff changeset
77 #end if
7ba9469800b9 Uploaded
greg
parents:
diff changeset
78 #end if
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
79 #if str($output_dataset_collection) == 'yes':
2810338344a1 Uploaded
greg
parents: 0
diff changeset
80 --output_dataset_collection dataset_collection
2810338344a1 Uploaded
greg
parents: 0
diff changeset
81 #end if
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
82 ]]></command>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
83 <inputs>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
84 <conditional name="input_format_cond">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
85 <param name="input_format" type="select" label="Classified orthogroup fasta files">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
86 <option value="ptortho">Proteins orthogroup fasta files</option>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
87 <option value="ptorthocs">Protein and coding sequences orthogroup fasta files</option>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
88 </param>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
89 <when value="ptortho">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
90 <param name="input_ptortho" format="ptortho" type="data" label="Proteins orthogroup fasta files">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
91 <validator type="empty_extra_files_path" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
92 </param>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
93 <expand macro="cond_alignment_method" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
94 </when>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
95 <when value="ptorthocs">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
96 <param name="input_ptorthocs" format="ptorthocs" type="data" label="Protein and coding sequences orthogroup fasta files">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
97 <validator type="empty_extra_files_path" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
98 </param>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
99 <expand macro="cond_alignment_method" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
100 <expand macro="param_codon_alignments" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
101 </when>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
102 </conditional>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
103 <expand macro="cond_remove_gappy_sequences" />
5
a73c2e65098e Uploaded
greg
parents: 4
diff changeset
104 <param name="output_dataset_collection" type="select" display="radio" label="Output additional dataset collection of files?">
a73c2e65098e Uploaded
greg
parents: 4
diff changeset
105 <option value="no" selected="true">No</option>
a73c2e65098e Uploaded
greg
parents: 4
diff changeset
106 <option value="yes">Yes</option>
a73c2e65098e Uploaded
greg
parents: 4
diff changeset
107 </param>
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
108 </inputs>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
109 <outputs>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
110 <data name="output_aln" format="ptalign" label="${tool.name} (proteins orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
111 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'no')) and remove_gappy_sequences_cond['remove_gappy_sequences'] == 'no'</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
112 </data>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
113 <data name="output_aln_ca" format="ptalignca" label="${tool.name} (protein and coding sequences orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
114 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'yes')) and remove_gappy_sequences_cond['remove_gappy_sequences'] == 'no'</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
115 </data>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
116 <data name="output_aln_filtered" format="ptalignfiltered" label="${tool.name} (filtered proteins orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
117 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'no')) and (remove_gappy_sequences_cond['remove_gappy_sequences'] == 'yes' and remove_gappy_sequences_cond['remove_sequences_with_gaps_cond']['remove_sequences_with_gaps'] == 'yes')</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
118 </data>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
119 <data name="output_aln_filtered_ca" format="ptalignfilteredca" label="${tool.name} (filtered protein and coding sequences orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
120 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'yes')) and (remove_gappy_sequences_cond['remove_gappy_sequences'] == 'yes' and remove_gappy_sequences_cond['remove_sequences_with_gaps_cond']['remove_sequences_with_gaps'] == 'yes')</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
121 </data>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
122 <data name="output_aln_trimmed" format="ptaligntrimmed" label="${tool.name} (trimmed proteins orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
123 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'no')) and (remove_gappy_sequences_cond['remove_gappy_sequences'] == 'yes' and remove_gappy_sequences_cond['remove_sequences_with_gaps_cond']['remove_sequences_with_gaps'] == 'no')</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
124 </data>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
125 <data name="output_aln_trimmed_ca" format="ptaligntrimmedca" label="${tool.name} (trimmed protein and coding sequences orthogroup alignments) on ${on_string}">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
126 <filter>(input_format_cond['input_format'] == 'ptortho' or (input_format_cond['input_format'] == 'ptorthocs' and input_format_cond['codon_alignments'] == 'yes')) and (remove_gappy_sequences_cond['remove_gappy_sequences'] == 'yes' and remove_gappy_sequences_cond['remove_sequences_with_gaps_cond']['remove_sequences_with_gaps'] == 'no')</filter>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
127 </data>
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
128 <collection name="dataset_collection" type="list" label="${tool.name} (dataset collection) on ${on_string}">
2810338344a1 Uploaded
greg
parents: 0
diff changeset
129 <discover_datasets pattern="__name__" directory="dataset_collection" format="fasta" />
5
a73c2e65098e Uploaded
greg
parents: 4
diff changeset
130 <filter>output_dataset_collection == 'yes'</filter>
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
131 </collection>
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
132 </outputs>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
133 <tests>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
134 <!-- Test framework does not currently support inputs whose associated extra_files_path contains files to be analyzed.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
135 <test>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
136 </test>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
137 -->
7ba9469800b9 Uploaded
greg
parents:
diff changeset
138 </tests>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
139 <help>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
140 This tool is one of the PlantTribes collection of automated modular analysis pipelines for comparative and evolutionary
7ba9469800b9 Uploaded
greg
parents:
diff changeset
141 analyses of genome-scale gene families and transcriptomes. This tool estimates protein and codon multiple sequence alignments
7ba9469800b9 Uploaded
greg
parents:
diff changeset
142 of integrated orthologous gene family fasta files produced by the GeneFamilyIntegrator tool.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
143
7ba9469800b9 Uploaded
greg
parents:
diff changeset
144 -----
7ba9469800b9 Uploaded
greg
parents:
diff changeset
145
7ba9469800b9 Uploaded
greg
parents:
diff changeset
146 **Required options**
7ba9469800b9 Uploaded
greg
parents:
diff changeset
147
7ba9469800b9 Uploaded
greg
parents:
diff changeset
148 * **Classified orthogroup fasta files** - orthogroup fasta files produced by the GeneFamilyClassifier tool selected from your history. Depending on how the GeneFamilyClassifier tool was executed, these could either be proteins or proteins and their corresponding coding sequences.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
149
7ba9469800b9 Uploaded
greg
parents:
diff changeset
150 * **Multiple sequence alignment method** - method for estimating orthogroup multiple sequence alignments. PlantTribes estimates alignments using either MAFFT's L-INS-i algorithm or the divide and conquer approach implemented in the PASTA pipeline for large alignments.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
151
7ba9469800b9 Uploaded
greg
parents:
diff changeset
152 - **PASTA iteration limit** - number of PASTA iterations. By default, PASTA performs 3 iterations.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
153
7ba9469800b9 Uploaded
greg
parents:
diff changeset
154 * **Codon alignments** - select 'Yes' to create codon multiple sequence alignments. This option requires protein and their corresponding coding sequences to be provided as input data.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
155
7ba9469800b9 Uploaded
greg
parents:
diff changeset
156 **Other options**
7ba9469800b9 Uploaded
greg
parents:
diff changeset
157
7ba9469800b9 Uploaded
greg
parents:
diff changeset
158 * **Alignment post-processing configuration** - select 'Yes' to enable multiple sequence alignment post-processing configuration options.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
159
7ba9469800b9 Uploaded
greg
parents:
diff changeset
160 - **Trimming method** - multiple sequence alignment trimming method. PlantTribes trims alignments using two automated approaches implemented in trimAl. Gap score based trimming removes alignments sites that do not achieve a user specified gap score. For example, a setting of 0.1 removes sites that have gaps in 90% or more of the sequences in the multiple sequence alignment. The automated heuristic trimming approach determines the best automated trimAl method to trim a given alignment as described in the trimAl tutorial `trimAl`_.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
161
7ba9469800b9 Uploaded
greg
parents:
diff changeset
162 - **Gap score** - the fraction of sequences with gap allowed in an alignment site. The score is restricted to the range 0.0 - 1.0. Zero value has no effect.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
163
7ba9469800b9 Uploaded
greg
parents:
diff changeset
164 - **Remove sequences** - select 'Yes' to remove sequences in multiple sequence alignments that do not achieve a user specified alignment coverage score. For example, a setting of 0.7 removes sequences with more than 30% gaps in the alignment. This option requires one of the trimming methods to be set.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
165
7ba9469800b9 Uploaded
greg
parents:
diff changeset
166 - **Coverage score** - minimum fraction of sites without gaps for a sequence in a multiple sequence alignment. The score is restricted to the range 0.0 - 1.0. Zero value has no effect.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
167
7ba9469800b9 Uploaded
greg
parents:
diff changeset
168 - **Realignment iteration limit** - number of iterations to perform trimming, removal of sequences, and realignment of orthogroup sequences. Zero value has no effect.
7ba9469800b9 Uploaded
greg
parents:
diff changeset
169
2
2810338344a1 Uploaded
greg
parents: 0
diff changeset
170 * **Output additional dataset collection of files** - selecting 'Yes' will produce an additional output dataset collection whose elements are copies of the directories of files (these elements can be viewed with visualization tools).
2810338344a1 Uploaded
greg
parents: 0
diff changeset
171
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
172 .. _trimAl: http://trimal.cgenomics.org
7ba9469800b9 Uploaded
greg
parents:
diff changeset
173
7ba9469800b9 Uploaded
greg
parents:
diff changeset
174 </help>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
175 <citations>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
176 <expand macro="citation1" />
7ba9469800b9 Uploaded
greg
parents:
diff changeset
177 <citation type="bibtex">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
178 @article{Wall2008,
7ba9469800b9 Uploaded
greg
parents:
diff changeset
179 journal = {Nucleic Acids Research},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
180 author = {2. Wall PK, Leebens-Mack J, Muller KF, Field D, Altman NS},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
181 title = {PlantTribes: a gene and gene family resource for comparative genomics in plants},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
182 year = {2008},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
183 volume = {36},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
184 number = {suppl 1},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
185 pages = {D970-D976},}
7ba9469800b9 Uploaded
greg
parents:
diff changeset
186 </citation>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
187 <citation type="bibtex">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
188 @article{Katoh2013,
7ba9469800b9 Uploaded
greg
parents:
diff changeset
189 journal = {Molecular biology and evolution},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
190 author = {3. Katoh K, Standley DM},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
191 title = {MAFFT multiple sequence alignment software version 7: improvements in performance and usability},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
192 year = {2013},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
193 volume = {30},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
194 number = {4},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
195 pages = {772-780},}
7ba9469800b9 Uploaded
greg
parents:
diff changeset
196 </citation>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
197 <citation type="bibtex">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
198 @article{Mirarab2014,
7ba9469800b9 Uploaded
greg
parents:
diff changeset
199 journal = {Research in Computational Molecular Biology (RECOMB)},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
200 author = {4. Mirarab S, Nguyen N, Warnow T},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
201 title = {PASTA: Ultra-Large Multiple Sequence Alignment. In R. Sharan (Ed.)},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
202 year = {2014},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
203 pages = {177–191},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
204 url = {https://github.com/smirarab/pasta},}
7ba9469800b9 Uploaded
greg
parents:
diff changeset
205 </citation>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
206 <citation type="bibtex">
7ba9469800b9 Uploaded
greg
parents:
diff changeset
207 @article{Capella-Gutierrez2009,
7ba9469800b9 Uploaded
greg
parents:
diff changeset
208 journal = {Bioinformatics,},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
209 author = {5. Capella-Gutierrez S, Silla-Martínez JM, Gabaldón T},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
210 title = {trimAl: a tool for automated alignment trimming in large-scale phylogenetic analyses},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
211 year = {2009},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
212 volume = {25},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
213 number = {15},
7ba9469800b9 Uploaded
greg
parents:
diff changeset
214 pages = {1972-1973},}
7ba9469800b9 Uploaded
greg
parents:
diff changeset
215 </citation>
3
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
216 <citation type="bibtex">
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
217 @article{Yachdav2016,
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
218 journal = {Bioinformatics,},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
219 author = {6. Yachdav G, Wilzbach S, Rauscher B, Sheridan R, Sillitoe I, Procter J, Lewis SE, Rost B, Goldberg T},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
220 title = {MSAViewer: interactive JavaScript visualization of multiple sequence alignments},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
221 year = {2016},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
222 volume = {32},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
223 number = {22},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
224 pages = {3501-3503},}
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
225 </citation>
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
226 <citation type="bibtex">
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
227 @article{Clamp2004,
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
228 journal = {Bioinformatics,},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
229 author = {7. Clamp M, Cuff J, Searle SM, Barton GJ},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
230 title = {The jalview java alignment editor},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
231 year = {2004},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
232 volume = {20},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
233 number = {3},
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
234 pages = {426-427},}
a54d1ecdf5b3 Uploaded
greg
parents: 2
diff changeset
235 </citation>
0
7ba9469800b9 Uploaded
greg
parents:
diff changeset
236 </citations>
7ba9469800b9 Uploaded
greg
parents:
diff changeset
237 </tool>