Omics.Client.
get_annotation_import_job
(**kwargs)¶Gets information about an annotation import job.
See also: AWS API Documentation
Request Syntax
response = client.get_annotation_import_job(
jobId='string'
)
[REQUIRED]
The job's ID.
{
'completionTime': datetime(2015, 1, 1),
'creationTime': datetime(2015, 1, 1),
'destinationName': 'string',
'formatOptions': {
'tsvOptions': {
'readOptions': {
'comment': 'string',
'encoding': 'string',
'escape': 'string',
'escapeQuotes': True|False,
'header': True|False,
'lineSep': 'string',
'quote': 'string',
'quoteAll': True|False,
'sep': 'string'
}
},
'vcfOptions': {
'ignoreFilterField': True|False,
'ignoreQualField': True|False
}
},
'id': 'string',
'items': [
{
'jobStatus': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLED'|'COMPLETED'|'FAILED'|'COMPLETED_WITH_FAILURES',
'source': 'string'
},
],
'roleArn': 'string',
'runLeftNormalization': True|False,
'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLED'|'COMPLETED'|'FAILED'|'COMPLETED_WITH_FAILURES',
'statusMessage': 'string',
'updateTime': datetime(2015, 1, 1)
}
Response Structure
When the job completed.
When the job was created.
The job's destination annotation store.
Formatting options for a file.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: tsvOptions
, vcfOptions
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
Options for a TSV file.
The file's read options.
The file's comment character.
The file's encoding.
A character for escaping quotes in the file.
Whether quotes need to be escaped in the file.
Whether the file has a header row.
A line separator for the file.
The file's quote character.
Whether all values need to be quoted, or just those that contain quotes.
The file's field separator.
Options for a VCF file.
The file's ignore filter field setting.
The file's ignore qual field setting.
The job's ID.
The job's imported items.
Details about an imported annotation item.
The item's job status.
The source file's location in Amazon S3.
The job's service role ARN.
The job's left normalization setting.
The job's status.
The job's status message.
When the job was updated.
Exceptions
Omics.Client.exceptions.InternalServerException
Omics.Client.exceptions.ThrottlingException
Omics.Client.exceptions.ValidationException
Omics.Client.exceptions.ResourceNotFoundException
Omics.Client.exceptions.AccessDeniedException