Amazon HealthOmics · JSON Structure

Healthomics Sequence Information Structure

Details about a sequence.

Type: object Properties: 4
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

SequenceInformation is a JSON Structure definition published by Amazon HealthOmics, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalReadCount totalBaseCount generatedFrom alignment

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-sequence-information-schema.json",
  "name": "SequenceInformation",
  "type": "object",
  "properties": {
    "totalReadCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The sequence's total read count."
        }
      ]
    },
    "totalBaseCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The sequence's total base count."
        }
      ]
    },
    "generatedFrom": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GeneratedFrom"
        },
        {
          "description": "Where the sequence originated."
        }
      ]
    },
    "alignment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The sequence's alignment setting."
        }
      ]
    }
  },
  "description": "Details about a sequence."
}