start_annotation_import_job
(**kwargs)¶Starts an annotation import job.
See also: AWS API Documentation
Request Syntax
response = client.start_annotation_import_job(
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
}
},
items=[
{
'source': 'string'
},
],
roleArn='string',
runLeftNormalization=True|False
)
[REQUIRED]
A destination annotation store for the job.
Formatting options for the annotation file.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: tsvOptions
, vcfOptions
.
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.
[REQUIRED]
Items to import.
A source for an annotation import job.
The source file's location in Amazon S3.
[REQUIRED]
A service role for the job.
dict
Response Syntax
{
'jobId': 'string'
}
Response Structure
(dict) --
jobId (string) --
The job's ID.
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