Omics / Client / start_read_set_export_job
start_read_set_export_job¶
- Omics.Client.start_read_set_export_job(**kwargs)¶
- Starts a read set export job. When the export job is finished, the read set is exported to an Amazon S3 bucket which can be retrieved using the - GetReadSetExportJobAPI operation.- To monitor the status of the export job, use the - ListReadSetExportJobsAPI operation.- See also: AWS API Documentation - Request Syntax- response = client.start_read_set_export_job( sequenceStoreId='string', destination='string', roleArn='string', clientToken='string', sources=[ { 'readSetId': 'string' }, ] ) - Parameters:
- sequenceStoreId (string) – - [REQUIRED] - The read set’s sequence store ID. 
- destination (string) – - [REQUIRED] - A location for exported files in Amazon S3. 
- roleArn (string) – - [REQUIRED] - A service role for the job. 
- clientToken (string) – To ensure that jobs don’t run multiple times, specify a unique token for each job. 
- sources (list) – - [REQUIRED] - The job’s source files. - (dict) – - A read set. - readSetId (string) – [REQUIRED] - The set’s ID. 
 
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'id': 'string', 'sequenceStoreId': 'string', 'destination': 'string', 'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLING'|'CANCELLED'|'FAILED'|'COMPLETED'|'COMPLETED_WITH_FAILURES', 'creationTime': datetime(2015, 1, 1) } - Response Structure- (dict) – - id (string) – - The job’s ID. 
- sequenceStoreId (string) – - The read set’s sequence store ID. 
- destination (string) – - The job’s output location. 
- status (string) – - The job’s status. 
- creationTime (datetime) – - When the job was created. 
 
 
 - Exceptions- Omics.Client.exceptions.InternalServerException
- Omics.Client.exceptions.ServiceQuotaExceededException
- Omics.Client.exceptions.ThrottlingException
- Omics.Client.exceptions.ValidationException
- Omics.Client.exceptions.ResourceNotFoundException
- Omics.Client.exceptions.AccessDeniedException
- Omics.Client.exceptions.RequestTimeoutException