Skip to content

Update Annotation Store

omics_update_annotation_store R Documentation

Updates an annotation store

Description

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"
)