-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsbml.rng
29 lines (22 loc) · 1.04 KB
/
sbml.rng
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
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- The following are the core SBML data classes -->
<include href="sbml-core/sbml-core.rng"/>
<include href="sbml-core/sbml-simple-types.rng"/>
<!-- NOTICE * NOTICE * NOTICE * NOTICE * NOTICE * NOTICE-->
<!--
If the model being validated uses SBML Level 3 packages,
you must *also* include the RNG schemas for those packages
below. Examples of including package schemas are shown
in the commented out lines below.
(Explanation: if these files are included but do not
make the 'required' attribute optional, then we get an
error for each one; conversely, if we make the required
attribute optional then it is not an error if it is
missing when the package is there.)
-->
<!-- <include href="sbml-comp/sbml-comp.rng"/>-->
<!-- <include href="sbml-req/sbml-req.rng"/> -->
<!-- <include href="sbml-qual/sbml-qual.rng"/> -->
</grammar>