List Multipart Read Set Uploads
omics_list_multipart_read_set_uploads | R Documentation |
Lists multipart read set uploads and for in progress uploads¶
Description¶
Lists multipart read set uploads and for in progress uploads. Once the upload is completed, a read set is created and the upload will no longer be returned in the response.
Usage¶
Arguments¶
sequenceStoreId
[required] The Sequence Store ID used for the multipart uploads.
maxResults
The maximum number of multipart uploads returned in a page.
nextToken
Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
Value¶
A list with the following syntax:
list(
nextToken = "string",
uploads = list(
list(
sequenceStoreId = "string",
uploadId = "string",
sourceFileType = "FASTQ"|"BAM"|"CRAM"|"UBAM",
subjectId = "string",
sampleId = "string",
generatedFrom = "string",
referenceArn = "string",
name = "string",
description = "string",
tags = list(
"string"
),
creationTime = as.POSIXct(
"2015-01-01"
)
)
)
)