Skip to content

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

omics_list_multipart_read_set_uploads(sequenceStoreId, maxResults,
  nextToken)

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"
      )
    )
  )
)

Request syntax

svc$list_multipart_read_set_uploads(
  sequenceStoreId = "string",
  maxResults = 123,
  nextToken = "string"
)