-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #365 from SynBioDex/SBOL3
Merge SBOL3 Specification to Master
- Loading branch information
Showing
133 changed files
with
6,359 additions
and
8,762 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
.DS_Store | ||
sbol2.aux | ||
sbol2.bbl | ||
sbol2.blg | ||
sbol2.cb | ||
sbol2.cb2 | ||
sbol2.log | ||
sbol2.out | ||
sbol2.pdf | ||
sbol2.toc | ||
sbol3.aux | ||
sbol3.bbl | ||
sbol3.blg | ||
sbol3.cb | ||
sbol3.cb2 | ||
sbol3.log | ||
sbol3.out | ||
sbol3.pdf | ||
sbol3.toc | ||
jib.cls | ||
jib_abstract_3_0.aux | ||
jib_abstract_3_0.log | ||
jib_abstract_3_0.out | ||
jib_abstract_3_0.pdf | ||
*.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
\subsection{Annotation and Extension of SBOL} | ||
\label{sec:Annotations} | ||
|
||
SBOL intentionally does not attempt to describe how all types of biological design data should be captured, since many of these data types (e.g., biological context and design performance metrics) are already covered by other standards, or lack a clear consensus on their proper representation, or are outside of the scope of SBOL. | ||
|
||
SBOL is built upon the Resource Description Framework (RDF), and therefore can be used in conjunction with complementary standards as described in \ref{sec:complementaryStandards}. For example, use of the PROV-O ontology is recommended to capture provenance (see \ref{sec:provenance}). | ||
Additionally, user-defined RDF can be used in conjunction with SBOL objects to capture custom application-specific information that does not yet have a standardized representation. | ||
This annotation and extension mechanism is designed to enable new types of data to be easily incorporated into the SBOL standard once there is community consensus on their proper representation. | ||
|
||
Several methods are supported for connecting the SBOL data model with other types of application-specific data: | ||
|
||
\begin{itemize} | ||
\item Custom data can be added to an SBOL object by annotating that object with non-conflicting properties. These properties could contain \sbol{literal} data types such as \sbol{String}s or \sbol{URI}s that require a resolution mechanism to obtain external data. An example is annotating a \sbol{Component} with a property that contains a \sbol{String} description and \sbol{URI} for the parts registry from which its source data was originally imported. | ||
\item Custom data in the form of independent objects can participate in the SBOL data model if they are assigned one of the SBOL types \sbol{Identified} or \sbol{TopLevel}. An example is an RDF object that is annotated such that it represents a data sheet that describes the performance of a \sbol{Component} in a particular context. | ||
\item Finally, just as custom objects can be embedded in an SBOL document, external documents can embed or refer to SBOL objects. Support for this last case is not explicitly provided in this specification. Rather, this case depends on the external non-SBOL system managing its relationship to SBOL and data serialized in RDF, and is included here for completeness. | ||
\end{itemize} | ||
|
||
Each \sbol{Identified} object MAY be annotated with application-specific properties, which MUST be labelled using RDF predicates outside of the SBOL namespace. Additionally, application-specific types may be used in conjunction with the SBOL data model. These application-specific types MUST have two \external{rdf:type} properties: one type outside of the SBOL namespace AND an additional SBOL type of either: | ||
|
||
\begin{itemize} | ||
\item \sbol{TopLevel}, if the object is to be considered an SBOL top level (i.e., not owned by another object) | ||
\item \sbol{Identified}, if the object is not to be considered an SBOL top level (i.e., is owned by another object) | ||
\end{itemize} | ||
|
||
As with SBOL \sbol{Identified} objects, custom \sbol{Identified} objects (and thus also custom \sbol{TopLevel} objects) MAY also include the properties \sbol{displayId}, \sbol{name}, \sbol{description}, etc. |
Oops, something went wrong.