list_read_sets(**kwargs)¶Retrieves a list of read sets.
See also: AWS API Documentation
Request Syntax
response = client.list_read_sets(
    filter={
        'createdAfter': datetime(2015, 1, 1),
        'createdBefore': datetime(2015, 1, 1),
        'name': 'string',
        'referenceArn': 'string',
        'status': 'ARCHIVED'|'ACTIVATING'|'ACTIVE'|'DELETING'|'DELETED'
    },
    maxResults=123,
    nextToken='string',
    sequenceStoreId='string'
)
A filter to apply to the list.
The filter's start date.
The filter's end date.
A name to filter on.
A genome reference ARN to filter on.
A status to filter on.
[REQUIRED]
The jobs' sequence store ID.
dict
Response Syntax
{
    'nextToken': 'string',
    'readSets': [
        {
            'arn': 'string',
            'creationTime': datetime(2015, 1, 1),
            'description': 'string',
            'fileType': 'FASTQ'|'BAM'|'CRAM',
            'id': 'string',
            'name': 'string',
            'referenceArn': 'string',
            'sampleId': 'string',
            'sequenceInformation': {
                'alignment': 'string',
                'generatedFrom': 'string',
                'totalBaseCount': 123,
                'totalReadCount': 123
            },
            'sequenceStoreId': 'string',
            'status': 'ARCHIVED'|'ACTIVATING'|'ACTIVE'|'DELETING'|'DELETED',
            'subjectId': 'string'
        },
    ]
}
Response Structure
(dict) --
nextToken (string) --
A pagination token that's included if more results are available.
readSets (list) --
A list of read sets.
(dict) --
A read set.
arn (string) --
The read set's ARN.
creationTime (datetime) --
When the read set was created.
description (string) --
The read set's description.
fileType (string) --
The read set's file type.
id (string) --
The read set's ID.
name (string) --
The read set's name.
referenceArn (string) --
The read set's genome reference ARN.
sampleId (string) --
The read set's sample ID.
sequenceInformation (dict) --
Details about a sequence.
alignment (string) --
The sequence's alignment setting.
generatedFrom (string) --
Where the sequence originated.
totalBaseCount (integer) --
The sequence's total base count.
totalReadCount (integer) --
The sequence's total read count.
sequenceStoreId (string) --
The read set's sequence store ID.
status (string) --
The read set's status.
subjectId (string) --
The read set's subject ID.
Exceptions
Omics.Client.exceptions.InternalServerExceptionOmics.Client.exceptions.ThrottlingExceptionOmics.Client.exceptions.ValidationExceptionOmics.Client.exceptions.ResourceNotFoundExceptionOmics.Client.exceptions.AccessDeniedExceptionOmics.Client.exceptions.RequestTimeoutException