sbol3.expdata

Module Contents

Classes

ExperimentalData

The purpose of the ExperimentalData class is to aggregate links to

class ExperimentalData(identity: str, *, namespace: str = None, attachments: List[str] = None, name: str = None, description: str = None, derived_from: List[str] = None, generated_by: List[str] = None, measures: List[SBOLObject] = None, type_uri: str = SBOL_EXPERIMENTAL_DATA)

Bases: TopLevel

The purpose of the ExperimentalData class is to aggregate links to experimental data files. An ExperimentalData is typically associated with a single sample, lab instrument, or experimental condition and can be used to describe the output of the test phase of a design-build-test-learn workflow.

accept(visitor: Any) Any

Invokes visit_experimental_data on visitor with self as the only argument.

Parameters

visitor (Any) – The visitor instance

Raises

AttributeError – If visitor lacks a visit_experimental_data method

Returns

Whatever visitor.visit_experimental_data returns

Return type

Any