This file is indexed.

/var/lib/mobyle/programs/rnasubopt.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
<?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>rnasubopt</name>
    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Entities/ViennaRNA_package.xml"/>
    <doc>
      <title>RNAsubopt</title>
      <description>
        <text lang="en">Calculate suboptimal secondary structures of RNAs</text>
      </description>
      <authors>Wuchty, Hofacker, Fontana</authors>
      <reference>S. Wuchty, W. Fontana, I. L. Hofacker and P. Schuster Complete Suboptimal Folding of RNA and the Stability of Secondary Structures, Biopolymers, 49, 145-165 (1999)</reference>
      <comment>
        <text lang="en">RNAsubopt reads RNA sequences from file and (in the default -e mode) calculates all suboptimal secondary structures within a user defined energy range above the minimum free energy (mfe).It prints the suboptimal structures in bracket  notation  followed by  the  energy in kcal/mol to stdout. Be careful, the number of structures returned grows exponentially with both sequence length and energy range.</text>
        <text lang="en">Alternatively, when used with the -p option, RNAsubopt produces  Boltzmann  weighted samples of secondary structures.</text>
      </comment>
    </doc>
    <category>sequence:nucleic:2D_structure</category>
    <category>structure:2D_structure</category>
  </head>
  <parameters>
    <parameter iscommand="1" ishidden="1">
      <name>rnasubopt</name>
      <type>
        <datatype>
          <class>String</class>
        </datatype>
      </type>
      <vdef>
        <value>rnasubopt</value>
      </vdef>
      <format>
        <code proglang="perl">"RNAsubopt"</code>
        <code proglang="python">"RNAsubopt"</code>
      </format>
    </parameter>
    <parameter ismandatory="1" issimple="1">
      <name>seq</name>
      <prompt lang="en">RNA Sequences File</prompt>
      <type>
        <biotype>RNA</biotype>
        <datatype>
          <class>Sequence</class>
        </datatype>
        <dataFormat>FASTA</dataFormat>
      </type>
      <format>
        <code proglang="perl">" &lt; $value" </code>
        <code proglang="python">" &lt; " + str(value)</code>
      </format>
      <argpos>1000</argpos>
    </parameter>
    <paragraph>
      <name>control</name>
      <prompt lang="en">Control options</prompt>
      <argpos>2</argpos>
      <parameters>
        <parameter>
          <name>mfe</name>
          <prompt lang="en">Calculate suboptimal structures within this range kcal/mol of the mfe (-e)</prompt>
          <type>
            <datatype>
              <class>Integer</class>
            </datatype>
          </type>
          <vdef>
            <value>1</value>
          </vdef>
          <format>
            <code proglang="perl">(defined $value and $value != $vdef)? " -e $value" : ""</code>
            <code proglang="python">("", " -e " + str(value))[value is not None and value != vdef]</code>
          </format>
        </parameter>
        <parameter>
          <name>temperature</name>
          <prompt lang="en">Rescale energy parameters to a temperature of temperature Celcius (-T)</prompt>
          <type>
            <datatype>
              <class>Integer</class>
            </datatype>
          </type>
          <vdef>
            <value>37</value>
          </vdef>
          <format>
            <code proglang="perl">(defined $value and $value != $vdef)? " -T $value" : ""</code>
            <code proglang="python">( "" , " -T " + str(value) )[ value is not None and value != vdef]</code>
          </format>
        </parameter>
        <parameter>
          <name>tetraloops</name>
          <prompt lang="en">Do not include special stabilizing energies for certain tetraloops (-4)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value)? " -4" : ""</code>
            <code proglang="python">( "" , " -4" )[ value ]</code>
          </format>
        </parameter>
        <parameter>
          <name>dangling</name>
          <prompt lang="en">How to treat dangling end energies for bases adjacent to helices in free ends and multiloops (-d)</prompt>
          <type>
            <datatype>
              <class>Choice</class>
            </datatype>
          </type>
          <vdef>
            <value>-d2</value>
          </vdef>
          <vlist>
            <velem>
              <value>-d1</value>
              <label>Only unpaired bases can participate in at most one dangling end (-d1)</label>
            </velem>
            <velem>
              <value>-d0</value>
              <label>Ignores dangling ends altogether (-d0)</label>
            </velem>
            <velem>
              <value>-d2</value>
              <label>The check is ignored (-d2)</label>
            </velem>
            <velem>
              <value>-d3</value>
              <label>Coaxial stacking of adjacent helices in multi-loops (-d3)</label>
            </velem>
          </vlist>
          <format>
            <code proglang="perl">(defined $value and $value ne $vdef)? " $value" : ""</code>
            <code proglang="python">( "" , " " + str(value) )[ value is not None and value != vdef]</code>
          </format>
          <comment>
            <text lang="en">Change treatment of dangling ends, as in RNAfold and RNAeval.  The default is -d2  (as  in  partition  function  folding).  If -d1 or -d3 are specified the structures are generated as with -d2 but  energies  are  re-evaluated  before printing.</text>
          </comment>
        </parameter>
        <parameter>
          <name>logML</name>
          <prompt lang="en">Recalculate energies of structures using a logarithmic energy function for multi-loops (-logML)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value)? " -logML" : ""</code>
            <code proglang="python">("", " -logML")[ value ]</code>
          </format>
          <comment>
            <text lang="en">This option does not effect structure generation, only the energies that is printed out. Since logML lowers energies somewhat, some structures may be missing.</text>
          </comment>
        </parameter>
        <parameter>
          <name>ep</name>
          <prompt lang="en">Only print structures with energy within this prange of the mfe (-ep)</prompt>
          <type>
            <datatype>
              <class>Integer</class>
            </datatype>
          </type>
          <format>
            <code proglang="perl">(defined $value)? " -ep $value" : ""</code>
            <code proglang="python">("", " -ep " + str(value))[ value is not None]</code>
          </format>
          <comment>
            <text lang="en">Only print structures with energy within prange of the mfe.  Useful  in  conjunction  with  -logML,  -d1  or -d3: while the -e option specifies the range before energies are re-evaluated, -ep  specifies  the  maximum  energy  after re-evaluation.</text>
          </comment>
        </parameter>
        <parameter>
          <name>sort</name>
          <prompt lang="en">Sort the structures by energy (-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"> Since the sort in is done in memory, this
              becomes impractical when the number of structures  produced  goes  into  millions.</text>
          </comment>
        </parameter>
      </parameters>
    </paragraph>
    <paragraph>
      <name>input</name>
      <prompt lang="en">Input parameters</prompt>
      <argpos>2</argpos>
      <parameters>
        <parameter>
          <name>noLP</name>
          <prompt lang="en">Avoid lonely pairs (helices of length 1) (-noLP)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value)? " -noLP" : ""</code>
            <code proglang="python">("", " -noLP")[value]</code>
          </format>
          <comment>
            <text lang="en">Only  produce  structures  without  lonely  pairs (helices of length 1). This reduces the number of structures drastically and should therefore be used for longer sequences and larger energy ranges.</text>
          </comment>
        </parameter>
        <parameter>
          <name>noGU</name>
          <prompt lang="en">Do not allow GU pairs (-noGU)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value)? " -noGU" : ""</code>
            <code proglang="python">("", " -noGU")[value]</code>
          </format>
        </parameter>
        <parameter>
          <name>noCloseGU</name>
          <prompt lang="en">Do not allow GU pairs at the end of helices (-noCloseGU)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value)? " -noCloseGU" : ""</code>
            <code proglang="python">("", " -noCloseGU")[value]</code>
          </format>
        </parameter>
        <parameter>
          <name>nsp</name>
          <prompt lang="en">Non standard pairs (comma seperated list) (-nsp)</prompt>
          <type>
            <datatype>
              <class>String</class>
            </datatype>
          </type>
          <format>
            <code proglang="perl">(defined $value)? " -nsp $value" : "" </code>
            <code proglang="python">( ""  , " -nsp " + str(value) )[ value is not None ]</code>
          </format>
          <comment>
            <text lang="en">Allow other pairs in addition to the usual AU,GC,and GU pairs. pairs is a comma seperated list of additionally allowed pairs. If a the first character is a '-' then AB will imply that AB and BA are allowed pairs. e.g. RNAfold -nsp -GA will allow GA and AG pairs. Nonstandard pairs are given 0 stacking energy.</text>
          </comment>
        </parameter>
        <parameter>
          <name>parameter</name>
          <prompt lang="en">Parameter file (-P)</prompt>
          <type>
            <datatype>
              <class>EnergyParameterFile</class>
              <superclass>AbstractText</superclass>
            </datatype>
          </type>
          <format>
            <code proglang="perl">(defined $value)? " -P $value" : ""</code>
            <code proglang="python">( "" , " -P " + str(value) )[ value is not None ]</code>
          </format>
          <comment>
            <text lang="en">Read energy parameters from paramfile, instead of using the default parameter set. A sample parameterfile should accompany your distribution. See the RNAlib documentation for details on the file format.</text>
          </comment>
        </parameter>
        <parameter>
          <name>z</name>
          <prompt lang="en">Calculate z score</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">(defined $value)? " -z" : ""</code>
            <code proglang="python">( "" , " -z" )[ value ]</code>
          </format>
        </parameter>
      </parameters>
    </paragraph>
    <parameter ishidden="1">
      <name>readseq</name>
      <type>
        <datatype>
          <class>String</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">"<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/ViennaRNA_readseq.xml" xpointer="xpointer(/readseq_path/text())"><xi:fallback/></xi:include>readseq  -f=19 -a $seq &gt; $seq.tmp &amp;&amp; (cp $seq $seq.orig &amp;&amp; mv $seq.tmp $seq) ; "</code>
        <code proglang="python">"<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/ViennaRNA_readseq.xml" xpointer="xpointer(/readseq_path/text())"><xi:fallback/></xi:include>readseq  -f=19 -a "+ str(seq) + " &gt; "+ str(seq) +".tmp &amp;&amp; (cp "+ str(seq) +" "+ str(seq) +".orig &amp;&amp; mv "+ str(seq) +".tmp "+ str(seq) +") ; "</code>
      </format>
      <argpos>-10</argpos>
    </parameter>
    <parameter isout="1">
      <name>psfiles</name>
      <prompt>Postscript file</prompt>
      <type>
        <datatype>
          <class>PostScript</class>
          <superclass>Binary</superclass>
        </datatype>
      </type>
      <filenames>
        <code proglang="perl">"*.ps"</code>
        <code proglang="python">"*.ps"</code>
      </filenames>
    </parameter>
  </parameters>
</program>