This file is indexed.

/usr/share/SBMLToolbox/Test/test-data/nestedPiecewise.xml is in sbmltoolbox 4.1.0-2.

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
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
  <model id="nestedPiecewise">
    <listOfUnitDefinitions>
      <unitDefinition id="mol_per_time">
        <listOfUnits>
          <unit kind="mole"/>
          <unit kind="second" exponent="-1"/>
        </listOfUnits>
      </unitDefinition>
    </listOfUnitDefinitions>
    <listOfCompartments>
      <compartment id="c" size="1"/>
    </listOfCompartments>
    <listOfSpecies>
      <species id="S1" compartment="c" initialAmount="1"/>
    </listOfSpecies>
    <listOfParameters>
      <parameter id="p1" value="1.5" units="mol_per_time"/>
      <parameter id="p2" value="1.5" units="mol_per_time"/>
    </listOfParameters>
    <listOfReactions>
      <reaction id="R1" reversible="false">
        <listOfReactants>
          <speciesReference species="S1"/>
        </listOfReactants>
        <kineticLaw>
          <math xmlns="http://www.w3.org/1998/Math/MathML">
            <piecewise>
              <piece>
                <piecewise>
                  <piece>
                    <ci> p1 </ci>
                    <apply>
                      <leq/>
                      <ci> kf </ci>
                      <cn type="integer"> 4 </cn>
                    </apply>
                  </piece>
                  <otherwise>
                    <ci> p2 </ci>
                  </otherwise>
                </piecewise>
                <apply>
                  <leq/>
                  <ci> kf </ci>
                  <cn type="integer"> 4 </cn>
                </apply>
              </piece>
              <otherwise>
                <ci> p2 </ci>
              </otherwise>
            </piecewise>
          </math>
          <listOfParameters>
            <parameter id="kf" value="7" units="dimensionless"/>
          </listOfParameters>
        </kineticLaw>
      </reaction>
    </listOfReactions>
  </model>
</sbml>