Skip to content

Update Annotation Store

omics_update_annotation_store R Documentation

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers

Description

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change.

Updates an annotation store.

Usage

omics_update_annotation_store(name, description)

Arguments

name

[required] A name for the store.

description

A description for the store.

Value

A list with the following syntax:

list(
  id = "string",
  reference = list(
    referenceArn = "string"
  ),
  status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
  name = "string",
  description = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  ),
  storeOptions = list(
    tsvStoreOptions = list(
      annotationType = "GENERIC"|"CHR_POS"|"CHR_POS_REF_ALT"|"CHR_START_END_ONE_BASE"|"CHR_START_END_REF_ALT_ONE_BASE"|"CHR_START_END_ZERO_BASE"|"CHR_START_END_REF_ALT_ZERO_BASE",
      formatToHeader = list(
        "string"
      ),
      schema = list(
        list(
          "LONG"|"INT"|"STRING"|"FLOAT"|"DOUBLE"|"BOOLEAN"
        )
      )
    )
  ),
  storeFormat = "GFF"|"TSV"|"VCF"
)

Request syntax

svc$update_annotation_store(
  name = "string",
  description = "string"
)