• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

libnuml/H03-May-2022-30,10513,750

.gitattributesH A D29-Apr-2021378 1815

.gitignoreH A D29-Apr-20212.6 KiB222177

.gitmodulesH A D29-Apr-2021307 87

.travis.ymlH A D29-Apr-20211.3 KiB4133

NUMLDocument.xmlH A D29-Apr-20211.9 KiB4241

NUMLSchema.xsdH A D29-Apr-20218.1 KiB225186

README.mdH A D29-Apr-20213.3 KiB6857

_config.ymlH A D29-Apr-202127 11

README.md

1## NuML - Numerical Markup Language
2
3### Project Information
4The Numerical Markup Language (NuML) aims to standardize the exchange and archiving of numerical results. NuML originates from the numerical aspects of the [Systems Biology Results Markup Language (SBRML)][1] with the aim of re-using it in multiple other standardization efforts.
5
6This project hosts the [schema][2], the [specification of NuML][4], as well as the [library for reading and writing NuML (libNUML)][3].
7
8### Get involved:
9
10Join our mailing list at: [http://groups.google.com/group/numl-discuss/](http://groups.google.com/group/numl-discuss/)
11
12### NuML is being / planned to be used by:
13
14* [SBRML](1)
15* [SED-ML](http://sed-ml.org)
16
17### Software supporting NuML:
18
19* [SBRML.NET](http://sbrml.sourceforge.net/SBRML/Welcome.html)
20
21
22### Example of a NuML Document
23	<?xml version="1.0" encoding="UTF-8"?>
24	<numl version="1" level="1" xmlns="http://www.numl.org/numl/level1/version1">
25	  <ontologyTerms>
26	      <ontologyTerm id="term1" term="time" sourceTermId="SBO:0000345" ontologyURI="http://www.ebi.ac.uk/sbo/" />
27	      <ontologyTerm id="term2" term="concentration" sourceTermId="SBO:0000196" ontologyURI="http://www.ebi.ac.uk/sbo/" />
28	  </ontologyTerms>
29	  <resultComponent id="component1">
30	      <dimensionDescription>
31	        <compositeDescription name="Time" ontologyTerm="term1" indexType="double">
32	            <compositeDescription name="Species" indexType="xpath">
33	              <atomicDescription name="Concentration" ontologyTerm="term2" valueType="double" />
34	            </compositeDescription>
35	        </compositeDescription>
36	      </dimensionDescription>
37	      <dimension>
38	        <compositeValue indexValue="0">
39	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='x_CO2']">
40	              <atomicValue>1</atomicValue>
41	            </compositeValue>
42	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='RuBP_ch']">
43	              <atomicValue>0.33644</atomicValue>
44	            </compositeValue>
45	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='PGA_ch']">
46	              <atomicValue>3.35479</atomicValue>
47	            </compositeValue>
48	        </compositeValue>
49	        <compositeValue indexValue="1">
50	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='x_CO2']">
51	              <atomicValue>0.66356</atomicValue>
52	            </compositeValue>
53	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='RuBP_ch']">
54	              <atomicValue>8.90632e-31</atomicValue>
55	            </compositeValue>
56	            <compositeValue indexValue="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='PGA_ch']">
57	              <atomicValue>3.35479</atomicValue>
58	            </compositeValue>
59	        </compositeValue>
60	        <resultComponent id="recomponet2"> ... </resultComponent>
61	      </dimension>
62	  </resultComponent>
63	</numl>
64
65[1]: http://www.comp-sys-bio.org/tiki-index.php?page=SBRML
66[2]: https://raw.githubusercontent.com/NuML/NuML/master/NUMLSchema.xsd
67[3]: https://github.com/NuML/NuML/tree/master/libnuml
68[4]: https://github.com/NuML/NuML/blob/master/numl-spec-l1v1.pdf