This file is indexed.

/var/lib/mobyle/programs/blast2seqids.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- XML Authors: Bertrand Neron,              -->
<!-- 'Biological Software and Databases' Group, Institut Pasteur, Paris.         -->
<!-- Distributed under LGPLv2 Licence. Please refer to the COPYING.LIB document. -->
<program>
    <head>
        <name>blast2seqids</name>
        <version>1.3</version>
        <doc>
            <title>blast2seqid</title>
            <description>
                <text lang="en">Extract sequence Ids from blast hits (in USA format)</text>
            </description>
            <authors>Bertrand NĂ©ron</authors>
            <sourcelink>http://dl.bintray.com/bneron/generic/blast2seqids-1.3.tar.gz</sourcelink>
            <homepagelink>https://github.com/bneron/blast2seqids</homepagelink>
            <comment>
                <text lang="en">
                    Extract the Identifier and Data Bank of the hits
                    from the summary of a blast report ( in text format -m 0-6 ) 
                    The result is in USA list format.
                </text>
          </comment>
        </doc>
        <category>database:search:display</category>
        <command>blast2seqids</command>    
    </head>
    <parameters>
        <parameter ismandatory="1" issimple="1">
          <name>infile</name>
          <prompt lang="en">BLAST text report</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>40</argpos>
          <comment>
            <text lang="en">
             A blast output in pairwise format ( option -m 0 default ).
          </text>
          </comment>
        </parameter>

        <paragraph>
            <name>output</name>
            <prompt lang="en">Output options</prompt>
            <parameters>
                <parameter>
                    <name>From</name>
                    <prompt lang="en">ignore the hits until the hit n (integer)</prompt>
                    <type>
                        <datatype>
                            <class>Integer</class>
                        </datatype>
                    </type>
                    <format>
                        <code proglang="perl">(defined $value) ? " --from $value" : ""</code>
                        <code proglang="python">( "" , " --from " + str(value) )[value is not None]</code>
                    </format>
                    <argpos>10</argpos>
                </parameter>

                <parameter>
                    <name>To</name>
                    <prompt lang="en">ignore the hits after the hit n (integer)</prompt>
                    <type>
                        <datatype>
                            <class>Integer</class>
                        </datatype>
                    </type>
                    <format>
                        <code proglang="perl">(defined $value) ? " --to $value" : ""</code>
                        <code proglang="python">( "" , " --to " + str(value) )[value is not None]</code>
                    </format>
                    <argpos>20</argpos>
                </parameter>
            </parameters>
         </paragraph>

         <parameter isstdout="1">
            <name>id_list</name>
            <prompt lang="en">hits identifier</prompt>
            <type>
                <datatype>
                    <class>GenesId</class>
                    <superclass>AbstractText</superclass>
                </datatype>
                <dataFormat>USAList</dataFormat>
            </type>
            <filenames>
                <code proglang="perl">"blast2seqids.out"</code>
                <code proglang="python">"blast2seqids.out"</code>
            </filenames>
         </parameter>
    </parameters>
</program>