Skip to main content

read_set_metadatas

Creates, updates, deletes, gets or lists a read_set_metadatas resource.

Overview

Nameread_set_metadatas
TypeResource
Idaws.omics.read_set_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe read set's ID. (pattern: <code>[0-9]+</code>)
namestringThe read set's name. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
arnstringThe read set's ARN. (pattern: <code>arn:.+</code>)
creation_job_idstringThe read set's creation job ID. (pattern: <code>[a-zA-Z0-9]+</code>)
creation_timestring (date-time)When the read set was created.
creation_typestringThe creation type of the read set. (IMPORT, UPLOAD)
descriptionstringThe read set's description. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
etagobjectThe entity tag (ETag) is a hash of the object meant to represent its semantic content.
file_typestringThe read set's file type. (FASTQ, BAM, CRAM, UBAM)
filesobjectThe read set's files.
reference_arnstringThe read set's genome reference ARN. (pattern: <code>arn:.+</code>)
sample_idstringThe read set's sample ID. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
sequence_informationobjectThe read set's sequence information.
sequence_store_idstringThe read set's sequence store ID. (pattern: <code>[0-9]+</code>)
statusstringThe read set's status. (ARCHIVED, ACTIVATING, ACTIVE, DELETING, DELETED, PROCESSING_UPLOAD, UPLOAD_FAILED)
status_messagestringThe status message for a read set. It provides more detail as to why the read set has a status. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
subject_idstringThe read set's subject ID. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_read_set_metadataselectid, sequence_store_id, regionRetrieves the metadata for a read set from a sequence store in JSON format. This operation does not return tags. To retrieve the list of tags for a read set, use the ListTagsForResource API operation.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringThe read set's ID.
regionstringAWS region (default: us-east-1)
sequence_store_idstringThe read set's sequence store ID.

SELECT examples

Retrieves the metadata for a read set from a sequence store in JSON format. This operation does not return tags. To retrieve the list of tags for a read set, use the ListTagsForResource API operation.

SELECT
id,
name,
arn,
creation_job_id,
creation_time,
creation_type,
description,
etag,
file_type,
files,
reference_arn,
sample_id,
sequence_information,
sequence_store_id,
status,
status_message,
subject_id
FROM aws.omics.read_set_metadatas
WHERE id = '{{ id }}' -- required
AND sequence_store_id = '{{ sequence_store_id }}' -- required
AND region = '{{ region }}' -- required
;