/var/lib/mobyle/programs/blast2taxonomy.xml is in mobyle-programs 5.1.2-1.
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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | <?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>blast2taxonomy</name>
<version>2.1</version>
<doc>
<title>blast2taxonomy</title>
<description>
<text lang="en">Blast Taxonomy report</text>
</description>
<authors>C. Maufrais</authors>
<homepagelink>http://sourceforge.net/p/krona/home/krona/</homepagelink>
<reference>Krona-2.0: Ondov BD, Bergman NH, and Phillippy AM. Interactive metagenomic visualization in a Web browser. BMC Bioinformatics. 2011 Sep 30; 12(1):385.</reference>
</doc>
<category>database:search:display</category>
<command>blast2taxonomy</command>
</head>
<parameters>
<parameter ismandatory="1" issimple="1">
<name>infile</name>
<prompt lang="en">Blast output file</prompt>
<type>
<datatype>
<class>BlastTextReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<format>
<code proglang="perl">" $value"</code>
<code proglang="python">" " + str(value)</code>
</format>
<argpos>10</argpos>
</parameter>
<paragraph>
<name>display</name>
<prompt lang="en">Display options</prompt>
<argpos>1</argpos>
<parameters>
<parameter>
<name>single</name>
<prompt lang="en">Report one branch per organism (-s)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value) ? " -s" : ""</code>
<code proglang="python">("" , " -s") [value]</code>
</format>
<comment>
<text lang="en">All hit are display in tree by default.</text>
</comment>
</parameter>
<parameter>
<name>acc</name>
<prompt lang="en">Report accession number (-a)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value) ? " -a" : ""</code>
<code proglang="python">("" , " -a") [value]</code>
</format>
</parameter>
<parameter>
<name>node_name</name>
<prompt lang="en">Lowest common ancestor name (-n).</prompt>
<type>
<datatype>
<class>String</class>
</datatype>
</type>
<format>
<code proglang="perl">($value) ? " -n $value" : ""</code>
<code proglang="python">("" , " -n " + str(value)) [value is not None]</code>
</format>
</parameter>
<parameter>
<name>filterevalue</name>
<prompt lang="en">Select hit blast with e-value lower than value (-E).</prompt>
<type>
<datatype>
<class>Float</class>
</datatype>
</type>
<vdef>
<value>10.0</value>
</vdef>
<format>
<code proglang="perl">($value) ? " - $value" : ""</code>
<code proglang="python">("" , " -E " + str(value)) [value and value != vdef]</code>
</format>
</parameter>
<parameter>
<name>evalue</name>
<prompt lang="en">Report score and e-value Blast hit (-e).</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value) ? " -e" : ""</code>
<code proglang="python">("" , " -e") [value]</code>
</format>
</parameter>
<parameter>
<name>perlen</name>
<prompt lang="en">Report ratio of Blast hit length per query length (-l).</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value) ? " -l" : ""</code>
<code proglang="python">("" , " -l") [value]</code>
</format>
</parameter>
</parameters>
</paragraph>
<paragraph>
<name>output</name>
<prompt lang="en">Output option</prompt>
<parameters>
<parameter issimple="1">
<name>htmlKronaOutput</name>
<prompt>krona.2-0 representation of HSPs</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>1</value>
</vdef>
<comment>
<text lang="en">Abundance is report in html file with krona Specification and Krona javascript library (-k).</text>
</comment>
<format>
<code proglang="python">('', ' -k blast_kronaView.html' )[value]</code>
</format>
<argpos>30</argpos>
</parameter>
<parameter isout="1">
<name>kronahtmloutfile</name>
<prompt>HTML Output file(s)</prompt>
<type>
<datatype>
<class>KronaHtmlReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<precond>
<code proglang="python">htmlKronaOutput</code>
</precond>
<filenames>
<code proglang="python">"blast_kronaView.html"</code>
</filenames>
</parameter>
<parameter>
<name>xlsoutput</name>
<prompt lang="en">Tabular output (-x)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -x" : ""</code>
<code proglang="python">("" , " -x") [value]</code>
</format>
</parameter>
<parameter>
<name>htmloutput</name>
<prompt lang="en">Html output (-w)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -w" : ""</code>
<code proglang="python">("" , " -w") [value]</code>
</format>
</parameter>
<parameter>
<name>dndoutput</name>
<prompt lang="en">Taxonomy report in Newick format (-t)</prompt>
<type>
<datatype>
<class>Boolean</class>
</datatype>
</type>
<vdef>
<value>0</value>
</vdef>
<format>
<code proglang="perl">($value)? " -t" : ""</code>
<code proglang="python">("" , " -t") [value]</code>
</format>
</parameter>
<parameter>
<name>outputfile</name>
<prompt lang="en">Output file name (-o)</prompt>
<type>
<datatype>
<class>Filename</class>
</datatype>
</type>
<format>
<code proglang="perl">(defined $value)? " -o $value" : ""</code>
<code proglang="python">("" , " -o " + str(value)) [value is not None ]</code>
</format>
</parameter>
<parameter isout="1">
<name>outfile_name</name>
<prompt>Output file</prompt>
<type>
<datatype>
<class>Blast2taxonomyReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<precond>
<code proglang="perl">not $htmloutput and $outputfile</code>
<code proglang="python">not htmloutput and outputfile</code>
</precond>
<filenames>
<code proglang="perl">$outputfile</code>
<code proglang="python">str(outputfile)</code>
</filenames>
</parameter>
<parameter isstdout="1">
<name>outfile</name>
<prompt>Output file</prompt>
<type>
<datatype>
<class>Blast2taxonomyReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<precond>
<code proglang="perl">not ($htmloutput and $outputfile)</code>
<code proglang="python">not (htmloutput and outputfile)</code>
</precond>
<filenames>
<code proglang="perl">"blast2taxonomy.out"</code>
<code proglang="python">"blast2taxonomy.out"</code>
</filenames>
</parameter>
<parameter isout="1">
<name>htmloutfile</name>
<prompt>Html output file</prompt>
<type>
<datatype>
<class>Blast2taxonomyHtmlReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<precond>
<code proglang="perl">$htmloutput</code>
<code proglang="python">htmloutput</code>
</precond>
<filenames>
<code proglang="perl">(defined $outputfile)? "$outputfile.html": "blast2taxonomy.html"</code>
<code proglang="python">("blast2taxonomy.html", str(outputfile)+".html")[outputfile is not None]</code>
</filenames>
</parameter>
<parameter isout="1">
<name>htmloutfilealn</name>
<prompt>Alignment Html output file</prompt>
<type>
<datatype>
<class>AlnHtmlReport</class>
<superclass>Report</superclass>
</datatype>
</type>
<precond>
<code proglang="perl">$htmloutput</code>
<code proglang="python">htmloutput</code>
</precond>
<filenames>
<code proglang="perl">"alignment.html"</code>
<code proglang="python">"alignment.html"</code>
</filenames>
</parameter>
<parameter isout="1">
<name>dndoutfile</name>
<prompt>Newick tree file</prompt>
<type>
<datatype>
<class>Tree</class>
</datatype>
<dataFormat>NEWICK</dataFormat>
</type>
<precond>
<code proglang="perl">$dndoutput</code>
<code proglang="python">dndoutput</code>
</precond>
<filenames>
<code proglang="perl">(defined $outputfile)? "$outputfile.dnd": "blast2taxonomy.dnd"</code>
<code proglang="python">("blast2taxonomy.dnd", str(outputfile)+".dnd")[outputfile is not None]</code>
</filenames>
</parameter>
</parameters>
</paragraph>
</parameters>
</program>
|