Skip to content

Upload Read Set Part

omics_upload_read_set_part R Documentation

Uploads a specific part of a read set into a sequence store

Description

Uploads a specific part of a read set into a sequence store. When you a upload a read set part with a part number that already exists, the new part replaces the existing one. This operation returns a JSON formatted response containing a string identifier that is used to confirm that parts are being added to the intended upload.

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

Usage

omics_upload_read_set_part(sequenceStoreId, uploadId, partSource,
  partNumber, payload)

Arguments

sequenceStoreId

[required] The Sequence Store ID used for the multipart upload.

uploadId

[required] The ID for the initiated multipart upload.

partSource

[required] The source file for an upload part.

partNumber

[required] The number of the part being uploaded.

payload

[required] The read set data to upload for a part.

Value

A list with the following syntax:

list(
  checksum = "string"
)

Request syntax

svc$upload_read_set_part(
  sequenceStoreId = "string",
  uploadId = "string",
  partSource = "SOURCE1"|"SOURCE2",
  partNumber = 123,
  payload = raw
)