/var/lib/mobyle/programs/treealign.xml is in mobyle-programs 5.1.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | <?xml version='1.0' encoding='UTF-8'?>
<!-- XML Authors: Corinne Maufrais, Nicolas Joly and Bertrand Neron, -->
<!-- 'Biological Software and Databases' Group, Institut Pasteur, Paris. -->
<!-- Distributed under LGPLv2 License. Please refer to the COPYING.LIB document. -->
<program>
<head>
<name>treealign</name>
<doc>
<title>treealign</title>
<description>
<text lang="en">Phylogenetic alignment of homologous sequences</text>
</description>
<authors>J. Hein</authors>
<reference>Hein, J.: Unified approach to alignment and phylogenies. Meth. Enzymol. 183:626-645 (1990).</reference>
<reference>Hein, J.: A new method that simultaneously aligns and reconstruct ancestral sequences for any number of homologous sequences, when the phylogeny is given. Mol. Biol. Evol. 6:649-668 (1989).</reference>
<reference>Hein, J.: A tree reconstruction method that is economical in the number of pairwise comparisons used. Mol. Biol. Evol. 6:669-684 (1989).</reference>
</doc>
<category>alignment:pairwise</category>
<category>phylogeny:parsimony</category>
<command>treealign</command>
</head>
<parameters>
<parameter ismandatory="1" issimple="1">
<name>fileseq</name>
<prompt lang="en">Sequences File</prompt>
<type>
<datatype>
<class>Sequence</class>
</datatype>
<dataFormat>NBRF</dataFormat>
</type>
<format>
<code proglang="perl">"$value\\n"</code>
<code proglang="python">str(value)+ "\n"</code>
</format>
<argpos>30</argpos>
<comment>
<text lang="en">The sequences should
be homologous and there should be a history to be found. If you give it a set
of COMPLETELY unrelated sequences, it is possible that it will not be able to
align them, since it cannot allocate enough memory.</text>
<text lang="en">The sequences should not vary in length because they have been sequenced
unequally much. Length differences should be due to evolution. Thus it should
not be used to look for local homologies.</text>
</comment>
<paramfile>par.dat</paramfile>
<example>
>P1;alpha
GDGKMTADKLNFPGNS*
>P1;beta
GDGKNTRDKINFPGNS*
>P1;gamma
GDGKNTADKINFPGNS*
</example>
</parameter>
<parameter ismandatory="1" issimple="1">
<name>seqtype</name>
<prompt lang="en">Sequence type</prompt>
<type>
<datatype>
<class>Choice</class>
</datatype>
</type>
<vdef>
<value>null</value>
</vdef>
<vlist>
<velem undef="1">
<value>null</value>
<label>Choose a sequence type</label>
</velem>
<velem>
<value>1</value>
<label>Protein (1)</label>
</velem>
<velem>
<value>0</value>
<label>DNA (0)</label>
</velem>
</vlist>
<format>
<code proglang="perl">"$value"</code>
<code proglang="python">str(value)</code>
</format>
<argpos>11</argpos>
<paramfile>par.dat</paramfile>
</parameter>
<parameter ismandatory="1" issimple="1">
<name>nuseq</name>
<prompt lang="en">Number of sequences</prompt>
<type>
<datatype>
<class>Integer</class>
</datatype>
</type>
<format>
<code proglang="perl">" $value"</code>
<code proglang="python">" "+str(value)</code>
</format>
<argpos>12</argpos>
<paramfile>par.dat</paramfile>
</parameter>
<parameter ismandatory="1" issimple="1">
<name>gap_open</name>
<prompt lang="en">Gap open penalty</prompt>
<type>
<datatype>
<class>Integer</class>
</datatype>
</type>
<format>
<code proglang="perl">" $value"</code>
<code proglang="python">" "+str(value)</code>
</format>
<ctrl>
<message>
<text lang="en">Enter a non-negative value</text>
</message>
<code proglang="perl">$value >= 0</code>
<code proglang="python">value >= 0</code>
</ctrl>
<argpos>13</argpos>
<paramfile>par.dat</paramfile>
</parameter>
<parameter ismandatory="1" issimple="1">
<name>gap_ext</name>
<prompt lang="en">Gap extension penalty</prompt>
<type>
<datatype>
<class>Integer</class>
</datatype>
</type>
<format>
<code proglang="perl">" $value\\n"</code>
<code proglang="python">" " + str(value) + "\n"</code>
</format>
<argpos>14</argpos>
<paramfile>par.dat</paramfile>
</parameter>
<paragraph>
<name>other_options</name>
<prompt lang="en">Other options</prompt>
<parameters>
<parameter>
<name>ancesterout</name>
<prompt lang="en">Present ancestral sequences</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value) ? "1" : "0"</code>
<code proglang="python">( "0" , "1" )[ value ]</code>
</format>
<argpos>21</argpos>
<paramfile>par.dat</paramfile>
</parameter>
</parameters>
</paragraph>
<parameter isout="1">
<name>filetree</name>
<prompt lang="en">Output tree file</prompt>
<type>
<datatype>
<class>Text</class>
</datatype>
</type>
<format>
<code proglang="perl">"$fileseq.tree\\n"</code>
<code proglang="python">str(fileseq)+ ".tree\n"</code>
</format>
<argpos>40</argpos>
<paramfile>par.dat</paramfile>
<filenames>
<code proglang="perl">"*.tree"</code>
<code proglang="python">"*.tree"</code>
</filenames>
</parameter>
<parameter isout="1">
<name>fileali</name>
<prompt lang="en">Output alignment file</prompt>
<type>
<datatype>
<class>Text</class>
</datatype>
</type>
<format>
<code proglang="perl">"$fileseq.ali\\n"</code>
<code proglang="python">str(fileseq)+".ali\n"</code>
</format>
<argpos>50</argpos>
<paramfile>par.dat</paramfile>
<filenames>
<code proglang="perl">"*.ali"</code>
<code proglang="python">"*.ali"</code>
</filenames>
</parameter>
</parameters>
</program>
|