sbol3.feature ============= .. py:module:: sbol3.feature Classes ------- .. autoapisummary:: sbol3.feature.Feature Module Contents --------------- .. py:class:: Feature(identity: str, type_uri: str, *, roles: Optional[str, list[str]] = None, orientation: Optional[str] = None, name: str = None, description: str = None, derived_from: sbol3.typing.List[str] = None, generated_by: sbol3.typing.List[str] = None, measures: sbol3.typing.List[sbol3.SBOLObject] = None) Bases: :py:obj:`sbol3.Identified`, :py:obj:`abc.ABC` Feature is an abstract base class. :param identity: this object's Uniform Resource Identifier (URI). this URI MUST be globally unique among all other Identified object URIs. See SBOL 3.0.1 specification section 5.1. This can also be a `displayId`, which will be concatenated to a default namespace automatically. :param type_uri: the concrete type of this object, specified as a URI. These are typically in the SBOL3 namespace, like `http://sbols.org/v3#Sequence` or `http://sbols.org/v3#Component`. This can also be the type URI of an extension class. :param name: A human-readable name for this object, for display purposes. :param description: Per the SBOL 3.0.1 specification, "a more thorough text description" of this object. :param derived_from: The URIs of one or more SBOL or non-SBOL objects from which this object was derived. This property is defined by the PROV-O ontology. :param generated_by: The URIs of one or more prov:Activity objects that describe how this object was generated. This property is defined by the PROV-O ontology. :param measures: The URIs of one or more om:Measure objects, each of which refers to a om:Measure object that describes measured parameters for this object. om:Measure objects are defined by the OM ontology .. py:attribute:: orientation :type: sbol3.typing.uri_singleton .. py:attribute:: roles :type: sbol3.typing.uri_list .. py:method:: validate(report: ValidationReport = None) -> ValidationReport