Get Reference Metadata
| omics_get_reference_metadata | R Documentation |
Retrieves metadata for a reference genome¶
Description¶
Retrieves metadata for a reference genome. This operation returns the
number of parts, part size, and MD5 of an entire file. This operation
does not return tags. To retrieve the list of tags for a read set, use
the list_tags_for_resource API operation.
Usage¶
omics_get_reference_metadata(id, referenceStoreId)
Arguments¶
id |
[required] The reference's ID. |
referenceStoreId |
[required] The reference's reference store ID. |
Value¶
A list with the following syntax:
list(
id = "string",
arn = "string",
referenceStoreId = "string",
md5 = "string",
status = "ACTIVE"|"DELETING"|"DELETED",
name = "string",
description = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
files = list(
source = list(
totalParts = 123,
partSize = 123,
contentLength = 123,
s3Access = list(
s3Uri = "string"
)
),
index = list(
totalParts = 123,
partSize = 123,
contentLength = 123,
s3Access = list(
s3Uri = "string"
)
)
),
creationType = "IMPORT",
creationJobId = "string"
)
Request syntax¶
svc$get_reference_metadata(
id = "string",
referenceStoreId = "string"
)