This file is indexed.

/var/lib/mobyle/programs/dssp.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
<?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>dssp</name>
     <version>2000</version>
    <doc>
      <title>DSSP</title>
      <description>
        <text lang="en">Definition of secondary structure of proteins given a set of 3D coordinates</text>
      </description>
      <authors>W.Kabsch, C. Sander</authors>
      <reference>Kabsch,W. and Sander,C. (1983) Biopolymers 22, 2577-2637.</reference>
      <homepagelink>http://swift.cmbi.ru.nl/gv/dssp/</homepagelink>
      <sourcelink>ftp://ftp.cmbi.ru.nl/pub/molbio/software/</sourcelink>
    </doc>
    <category>sequence:protein:2D_structure</category>
    <category>structure:2D_structure</category>
    <command>dssp</command>
  </head>
  <parameters>
    <parameter issimple="1">
      <name>pdbfile</name>
      <prompt lang="en">PDB File</prompt>
      <type>
        <datatype>
          <superclass>AbstractText</superclass>
           <class>_3DStructure</class>
        </datatype>
        <dataFormat>PDB</dataFormat>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? " $value" : " -- "</code>
        <code proglang="python">( " -- " , " " + str(value) )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">You must enter either the PDB data or the PDB id</text>
        </message>
        <code proglang="perl">not defined $pdbid and defined $pdbfile</code>
        <code proglang="python">pdbfile is not None and pdbid is None</code>
      </ctrl>
      <argpos>10</argpos>
    </parameter>
    <parameter issimple="1">
      <name>pdbid</name>
      <prompt lang="en">or you can instead enter a PDB id.</prompt>
      <type>
        <datatype>
          <class>String</class>
        </datatype>
      </type>
      <format>
        <code proglang="perl">(defined $value) ? "cat <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/dssp_data.xml" xpointer="xpointer(/pdb_path/text())" />pdb$value.ent | " : ""</code>
        <code proglang="python">( "" , "cat <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../../Local/Services/Programs/Env/dssp_data.xml" xpointer="xpointer(/pdb_path/text())" />pdb" + str( value ).lower() + ".ent | " )[ value is not None ]</code>
      </format>
      <ctrl>
        <message>
          <text lang="en">You must enter either the PDB data or the PDB id</text>
        </message>
        <code proglang="perl">defined $pdbid and not defined $pdbfile</code>
        <code proglang="python">pdbid is not None and pdbfile is None</code>
      </ctrl>
      <argpos>-1</argpos>
    </parameter>
    <paragraph>
      <name>output</name>
      <prompt lang="en">Output parameters</prompt>
      <parameters>
        <parameter>
          <name>surface</name>
          <prompt lang="en">Disables the calculation of accessible surface (-na)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value) ? " -na " : ""</code>
            <code proglang="python">( "" , " -na " )[ value ]</code>
          </format>
          <argpos>1</argpos>
        </parameter>
        <parameter>
          <name>classic</name>
          <prompt lang="en">Classic (pre-July 1995) format (-c)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value) ? " -c " : ""</code>
            <code proglang="python">( "" , " -c " )[ value ]</code>
          </format>
          <argpos>1</argpos>
        </parameter>
        <parameter>
          <name>disulfide</name>
          <prompt lang="en">Adds information about disulfide bonds to output file (-ssa)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value) ? " -ssa " : ""</code>
            <code proglang="python">( "" , " -ssa " )[ value ]</code>
          </format>
          <argpos>1</argpos>
        </parameter>
        <parameter>
          <name>sidechains2X</name>
          <prompt lang="en">Renames residues with incomplete sidechains to 'X' (-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>
          <argpos>1</argpos>
        </parameter>
        <parameter>
          <name>altLoc</name>
          <prompt lang="en">Keeps an additional AltLoc indicator at the line ends (-alt2)</prompt>
          <type>
            <datatype>
              <class>Boolean</class>
            </datatype>
          </type>
          <vdef>
            <value>0</value>
          </vdef>
          <format>
            <code proglang="perl">($value) ? " -alt2 " : ""</code>
            <code proglang="python">( "" , " -alt2 " )[ value ]</code>
          </format>
          <argpos>1</argpos>
        </parameter>
      </parameters>
    </paragraph>
    <parameter isstdout="1">
      <name>outfile</name>
      <prompt lang="en">Standard output</prompt>
      <type>
        <datatype>
          <class>DsspReport</class>
          <superclass>Report</superclass>
        </datatype>
      </type>
      <filenames>
        <code proglang="perl">"dssp.out"</code>
        <code proglang="python">"dssp.out"</code>
      </filenames>
    </parameter>
  </parameters>
</program>