This file is indexed.

/usr/share/SBMLToolbox/test.xml is in sbmltoolbox 4.1.0-3.

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
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
  <model id="Branch">
    <notes>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>Simple branch system.</p>
        <p>The reaction looks like this:</p>
        <p>reaction-1:   X0 -&gt; S1; k1*X0;</p>
        <p>reaction-2:   S1 -&gt; X1; k2*S1;</p>
        <p>reaction-3:   S1 -&gt; X2; k3*S1;</p>
      </body>
    </notes>
    <listOfCompartments>
      <compartment id="compartmentOne" size="1"/>
    </listOfCompartments>
    <listOfSpecies>
      <species id="S1" compartment="compartmentOne" initialConcentration="0"/>
      <species id="X0" compartment="compartmentOne" initialConcentration="0" boundaryCondition="true"/>
      <species id="X1" compartment="compartmentOne" initialConcentration="0" boundaryCondition="true"/>
      <species id="X2" compartment="compartmentOne" initialConcentration="0" boundaryCondition="true"/>
    </listOfSpecies>
    <listOfReactions>
      <reaction id="reaction_1" reversible="false">
        <listOfReactants>
          <speciesReference species="X0"/>
        </listOfReactants>
        <listOfProducts>
          <speciesReference species="S1"/>
        </listOfProducts>
        <kineticLaw>
          <math xmlns="http://www.w3.org/1998/Math/MathML">
            <apply>
              <times/>
              <ci> k1 </ci>
              <ci> X0 </ci>
            </apply>
          </math>
          <listOfParameters>
            <parameter id="k1" value="0"/>
          </listOfParameters>
        </kineticLaw>
      </reaction>
      <reaction id="reaction_2" reversible="false">
        <listOfReactants>
          <speciesReference species="S1"/>
        </listOfReactants>
        <listOfProducts>
          <speciesReference species="X1"/>
        </listOfProducts>
        <kineticLaw>
          <math xmlns="http://www.w3.org/1998/Math/MathML">
            <apply>
              <times/>
              <ci> k2 </ci>
              <ci> S1 </ci>
            </apply>
          </math>
          <listOfParameters>
            <parameter id="k2" value="0"/>
          </listOfParameters>
        </kineticLaw>
      </reaction>
      <reaction id="reaction_3" reversible="false">
        <listOfReactants>
          <speciesReference species="S1"/>
        </listOfReactants>
        <listOfProducts>
          <speciesReference species="X2"/>
        </listOfProducts>
        <kineticLaw>
          <math xmlns="http://www.w3.org/1998/Math/MathML">
            <apply>
              <times/>
              <ci> k3 </ci>
              <ci> S1 </ci>
            </apply>
          </math>
          <listOfParameters>
            <parameter id="k3" value="0"/>
          </listOfParameters>
        </kineticLaw>
      </reaction>
    </listOfReactions>
  </model>
</sbml>