This file is indexed.

/var/lib/mobyle/programs/golden.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
<?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>golden</name>
    <version>1.1a</version>
    <doc>
      <title>GOLDEN</title>
      <description>
        <text lang="en">Fetch a database entry</text>
      </description>
      <authors>N. Joly</authors>
      <sourcelink>ftp://ftp.pasteur.fr/pub/gensoft/projects/golden/</sourcelink>
    </doc>
    <category>database:search:sequence</category>
    <command>golden</command>
  </head>
  <parameters xmlns:xi="http://www.w3.org/2001/XInclude">
    <parameter ismandatory="1" issimple="1" ismaininput="1">
      <name>db</name>
      <prompt lang="en">Database</prompt>
      <type>
        <datatype>
          <class>Choice</class>
        </datatype>
      </type>
      <vdef>
        <value>null</value>
      </vdef>
      <xi:include href="../../Local/Services/Programs/Env/goldendb.xml" />
      <format>
        <code proglang="perl">" $db:"</code>
        <code proglang="python">" " + db + ":"</code>
      </format>
      <argpos>2</argpos>
    </parameter>
    <parameter ismandatory="1" issimple="1" ismaininput="1">
      <name>query</name>
      <prompt lang="en">Query (Entry name or Accession number)</prompt>
      <type>
        <datatype>
          <class>String</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">"$value"</code>
        <code proglang="python">str(value)</code>
      </format>
      <argpos>3</argpos>
    </parameter>
    <parameter>
      <name>ac</name>
      <prompt lang="en">Search with Accession number only (-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>
      <argpos>1</argpos>
    </parameter>
    <parameter>
      <name>Id</name>
      <prompt lang="en">Search with entry name only (-i)</prompt>
      <type>
        <datatype>
          <class>Boolean</class>
        </datatype>
      </type>
      <vdef>
        <value>0</value>
      </vdef>
      <format>
        <code proglang="perl">($value) ? " -i" : ""</code>
        <code proglang="python">( "" , " -i" )[ value ]</code>
      </format>
      <argpos>1</argpos>
    </parameter>
    
    <parameter isstdout="1">
      <name>nucleic_sequence_out</name>
      <prompt lang="en">Sequence</prompt>
      <precond>
        <code proglang="perl">$db =~ /^(embl|genbank|imgt|rdpii)$/</code>
        <code proglang="python">db in ( 'embl' , 'genbank' , 'imgt' ,'rdpii' )</code>
      </precond>
      <type>
        <biotype>DNA</biotype>
        <datatype>
          <class>Sequence</class>
        </datatype>
        <dataFormat>
          <test param="db" eq="embl">EMBL</test>
          <test param="db" eq="genbank">GENBANK</test>
          <test param="db" eq="imgt">EMBL</test>
          <test param="db" eq="rdpii">GENBANK</test>
          <test param="db" eq="refseq">GENBANK</test>
        </dataFormat>
      </type>
      <filenames>
        <code proglang="perl">"golden.out"</code>
        <code proglang="python">"golden.out"</code>
      </filenames>
    </parameter>
    
    <parameter isstdout="1">
      <name>protein_sequence_out</name>
      <prompt lang="en">Sequence</prompt>
      <precond>
        <code proglang="perl">$db =~ /^(genpept|uniprot)$/</code>
        <code proglang="python">db in ( 'genpept' , 'uniprot' )</code>
      </precond>
      <type>
        <biotype>Protein</biotype>
        <datatype>
          <class>Sequence</class>
        </datatype>
        <dataFormat>
          <test param="db" eq="genpept">GENBANK</test>
          <test param="db" eq="uniprot">SWISSPROT</test>
        </dataFormat>
      </type>
      <filenames>
        <code proglang="perl">"golden.out"</code>
        <code proglang="python">"golden.out"</code>
      </filenames>
    </parameter>
    
    <parameter isstdout="1">
      <name>refseq_out</name>
      <prompt lang="en">Sequence</prompt>
      <precond>
        <code proglang="perl">$db eq 'refseq'</code>
        <code proglang="python">db == 'refseq' </code>
      </precond>
      <type>
        <biotype>DNA</biotype>
        <biotype>Protein</biotype>
        <datatype>
          <class>Sequence</class>
        </datatype>
        <dataFormat>GENBANK</dataFormat>
      </type>
      <filenames>
        <code proglang="perl">"golden.out"</code>
        <code proglang="python">"golden.out"</code>
      </filenames>
    </parameter>
    
    <parameter isstdout="1">
      <name>motif_out</name>
      <prompt lang="en">Motif</prompt>
      <precond>
        <code proglang="perl">$db eq 'prosite'</code>
        <code proglang="python">db == 'prosite'</code>
      </precond>
      <type>
        <biotype>Protein</biotype>
        <datatype>
          <superclass>AbstractText</superclass>
          <class>Motif</class>
        </datatype>
        <dataFormat>PROSITE</dataFormat>
      </type>
      <filenames>
        <code proglang="perl">"golden.out"</code>
        <code proglang="python">"golden.out"</code>
      </filenames>
    </parameter>
    
    <parameter isstdout="1">
      <name>enzyme_out</name>
      <prompt lang="en">Enzyme</prompt>
      <precond>
        <code proglang="perl">$db eq 'enzyme'</code>
        <code proglang="python">db == 'enzyme'</code>
      </precond>
      <type>
        <biotype>Protein</biotype>
        <datatype>
          <superclass>AbstractText</superclass>
          <class>Enzyme</class>
        </datatype>
        <dataFormat>ENZYME</dataFormat>
      </type>
      <filenames>
        <code proglang="perl">"golden.out"</code>
        <code proglang="python">"golden.out"</code>
      </filenames>
    </parameter>
    
  </parameters>
</program>