Benchling · Schema

DnaSequenceTranscription

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
end integer 0-based exclusive end index. The end of the sequence is always represented as 0.
sequenceId string Linked RNA sequence ID.
start integer 0-based inclusive start index.
strand integer
View JSON Schema on GitHub

JSON Schema

DnaSequenceTranscription.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DnaSequenceTranscription.json",
  "title": "DnaSequenceTranscription",
  "properties": {
    "end": {
      "description": "0-based exclusive end index. The end of the sequence is always represented as 0.",
      "type": "integer"
    },
    "sequenceId": {
      "description": "Linked RNA sequence ID.",
      "example": "seq_VfVOART1",
      "type": "string"
    },
    "start": {
      "description": "0-based inclusive start index.",
      "type": "integer"
    },
    "strand": {
      "example": 1,
      "maximum": 1,
      "minimum": -1,
      "type": "integer"
    }
  },
  "type": "object"
}