SynBioDex / SBOL-specification

The Synthetic Biology Open Language (SBOL)
http://sbolstandard.org
14 stars 9 forks source link

Enhancing combinatorial derivations #373

Closed jakebeal closed 3 years ago

jakebeal commented 4 years ago

In SBOL3, combinatorial derivations can also represent things like the design of an experiment, e.g., test strains A, B, and C in media X, Y, and Z.

Currently, however, it is not able to take advantage of the full succinctness offered by the new Feature class. In particular:

Thus, if we design a sample with 0.5 uM arabinose, we can express that directly as an ExternallyDefined with 0.5 uM concentration, but if we want to express a CombinatorialDerivation in which the dosage varies between 0.0, 0.2, and 0.5 uM, we need to use a SubComponent for the variable and then create 3 Component objects, one for each dosage.

I believe this was a simple oversight in our updating, because our discussions clearly envisioned using CombinatorialDerivation in these ways. I believe this can be fixed quite simply by:

  1. Changing the range of VariableComponent:variable from SubComponent to Feature.
  2. Adding a VariableComponent:variantMeasure field, with cardinality 0..* and range om:Measure

The first change will allow modulation of all component features, which I believe is appropriate. We want to be able to change the dose of small molecules (ExternallyDefined), fill in blank variables (LocalSubComponent), vary the type of junction or scar (SequenceFeature), and might want to vary something in a subsystem (ComponentReference).

The second change will allow direct specification of variation of dosages, temperatures, and other design properties.

cjmyers commented 4 years ago

Seems reasonable to me.

jakebeal commented 4 years ago

SEP is up: https://github.com/SynBioDex/SEPs/issues/103