Skip to content

Complete Multipart Read Set Upload

omics_complete_multipart_read_set_upload R Documentation

Completes a multipart read set upload into a sequence store after you have initiated the upload process with CreateMultipartReadSetUpload and uploaded all read set parts using UploadReadSetPart

Description

Completes a multipart read set upload into a sequence store after you have initiated the upload process with create_multipart_read_set_upload and uploaded all read set parts using upload_read_set_part. You must specify the parts you uploaded using the parts parameter. If the operation is successful, it returns the read set ID(s) of the uploaded read set(s).

For more information, see Direct upload to a sequence store in the Amazon Web Services HealthOmics User Guide.

Usage

omics_complete_multipart_read_set_upload(sequenceStoreId, uploadId,
  parts)

Arguments

sequenceStoreId

[required] The sequence store ID for the store involved in the multipart upload.

uploadId

[required] The ID for the multipart upload.

parts

[required] The individual uploads or parts of a multipart upload.

Value

A list with the following syntax:

list(
  readSetId = "string"
)

Request syntax

svc$complete_multipart_read_set_upload(
  sequenceStoreId = "string",
  uploadId = "string",
  parts = list(
    list(
      partNumber = 123,
      partSource = "SOURCE1"|"SOURCE2",
      checksum = "string"
    )
  )
)