comparison pal2nal.xml @ 0:a2a40f3bfbbd draft default tip

planemo upload for repository https://github.com/georgehe23/tools-iuc/tree/main/tools/pal2nal commit aed49bdc26e503297e1fc394ada087042dc23386
author iuc
date Sun, 09 Nov 2025 10:56:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a2a40f3bfbbd
1 <tool id="pal2nal" name="PAL2NAL" version="@TOOL_VERSION@+galaxy@WRAPPER_VERSION@" profile="24.0">
2 <description>Codon-based nucleotide alignment from protein and DNA sequences</description>
3
4 <macros>
5 <import>info.xml</import>
6 <import>macros.xml</import>
7 <import>tests.xml</import>
8 </macros>
9
10 <expand macro="requirements" />
11
12 <expand macro="version_command" />
13
14 <expand macro="command" />
15
16 <inputs>
17 <param name="protein_alignment" type="data" format="fasta,clustal" label="Protein alignment"
18 help="Accepts CLUSTAL/FASTA alignments uploaded through Galaxy." />
19 <param name="nucleotide_fastas" type="data" format="fasta" multiple="true" min="1"
20 label="Nucleotide FASTA files" help="Accepts FASTA-formatted nucleotide sequences." />
21
22 <param name="output_format" type="select" argument="-output" label="Output format">
23 <option value="clustal" selected="true">CLUSTAL (default)</option>
24 <option value="paml">PAML</option>
25 <option value="fasta">FASTA</option>
26 <option value="codon">CODON</option>
27 </param>
28
29 <param name="show_only_blocks" type="boolean" argument="-blockonly" truevalue="-blockonly" falsevalue=""
30 checked="false" label="Show only user-specified blocks" help="Use only '#' marked conserved blocks under CLUSTAL alignment." />
31
32 <param name="remove_gaps" type="boolean" argument="-nogap" truevalue="-nogap" falsevalue=""
33 checked="false" label="Remove codons with gaps or in-frame stop codons" />
34
35 <param name="remove_mismatches" type="boolean" argument="-nomismatch" truevalue="-nomismatch" falsevalue=""
36 checked="false" label="Remove mismatched codons" />
37
38 <param name="genetic_code" type="select" argument="-codontable" label="Genetic code">
39 <option value="1" selected="true">1: Universal</option>
40 <option value="2">2: Vertebrate mitochondrial</option>
41 <option value="3">3: Yeast mitochondrial</option>
42 <option value="4">4: Mold/Protozoan/Coelenterate mito + Mycoplasma</option>
43 <option value="5">5: Invertebrate mitochondrial</option>
44 <option value="6">6: Ciliate/Hexamita nuclear</option>
45 <option value="9">9: Echinoderm/Flatworm mitochondrial</option>
46 <option value="10">10: Euplotid nuclear</option>
47 <option value="11">11: Bacterial/Archaeal/Plastid</option>
48 <option value="12">12: Alternative yeast nuclear</option>
49 <option value="13">13: Ascidian mitochondrial</option>
50 <option value="14">14: Alternative flatworm mitochondrial</option>
51 <option value="15">15: Blepharisma nuclear</option>
52 <option value="16">16: Chlorophycean mitochondrial</option>
53 <option value="21">21: Trematode mitochondrial</option>
54 <option value="22">22: Scenedesmus obliquus mitochondrial</option>
55 <option value="23">23: Thraustochytrium mitochondrial</option>
56 </param>
57
58 <param name="html_output" type="boolean" truevalue="true" falsevalue=""
59 checked="false" label="Add HTML formatted output" help="Produce an additional dataset with PAL2NAL's HTML view." />
60
61 <param name="suppress_stderr" type="boolean" argument="-nostderr" truevalue="-nostderr" falsevalue=""
62 checked="false" label="Suppress STDERR messages" help="Hide warning messages (use for automated pipelines)." />
63 </inputs>
64
65 <outputs>
66 <data name="output_file" format="txt" label="PAL2NAL codon alignment output">
67 <change_format>
68 <when input="output_format" value="clustal" format="clustal" />
69 <when input="output_format" value="fasta" format="fasta" />
70 <when input="output_format" value="paml" format="phylip" />
71 <when input="output_format" value="codon" format="txt" />
72 </change_format>
73 </data>
74 <data name="html_output_file" format="html" label="${tool.name} on ${on_string}: HTML view">
75 <filter>html_output</filter>
76 </data>
77 </outputs>
78
79 <expand macro="tests" />
80
81 <expand macro="help" />
82
83 <expand macro="citations" />
84 </tool>