List Read Set Upload Parts
| omics_list_read_set_upload_parts | R Documentation |
Lists all parts in a multipart read set upload for a sequence store and returns the metadata in a JSON formatted output¶
Description¶
Lists all parts in a multipart read set upload for a sequence store and returns the metadata in a JSON formatted output.
Usage¶
omics_list_read_set_upload_parts(sequenceStoreId, uploadId, partSource,
maxResults, nextToken, filter)
Arguments¶
sequenceStoreId |
[required] The Sequence Store ID used for the multipart uploads. |
uploadId |
[required] The ID for the initiated multipart upload. |
partSource |
[required] The source file for the upload part. |
maxResults |
The maximum number of read set upload parts returned in a page. |
nextToken |
Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results. |
filter |
Attributes used to filter for a specific subset of read set part uploads. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
parts = list(
list(
partNumber = 123,
partSize = 123,
partSource = "SOURCE1"|"SOURCE2",
checksum = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_read_set_upload_parts(
sequenceStoreId = "string",
uploadId = "string",
partSource = "SOURCE1"|"SOURCE2",
maxResults = 123,
nextToken = "string",
filter = list(
createdAfter = as.POSIXct(
"2015-01-01"
),
createdBefore = as.POSIXct(
"2015-01-01"
)
)
)