Create Annotation Store
| omics_create_annotation_store | R Documentation |
Creates an annotation store¶
Description¶
Creates an annotation store.
Usage¶
omics_create_annotation_store(reference, name, description, tags,
versionName, sseConfig, storeFormat, storeOptions)
Arguments¶
referenceThe genome reference for the store's annotations.
nameA name for the store.
descriptionA description for the store.
tagsTags for the store.
versionNameThe name given to an annotation store version to distinguish it from other versions.
sseConfigServer-side encryption (SSE) settings for the store.
storeFormat[required] The annotation file format of the store.
storeOptionsFile parsing options for the annotation store.
Value¶
A list with the following syntax:
list(
id = "string",
reference = list(
referenceArn = "string"
),
storeFormat = "GFF"|"TSV"|"VCF",
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"
)
)
)
),
status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
name = "string",
versionName = "string",
creationTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$create_annotation_store(
reference = list(
referenceArn = "string"
),
name = "string",
description = "string",
tags = list(
"string"
),
versionName = "string",
sseConfig = list(
type = "KMS",
keyArn = "string"
),
storeFormat = "GFF"|"TSV"|"VCF",
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"
)
)
)
)
)