Skip to content

Updates to workflow examples #9611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion awscli/examples/omics/batch-delete-read-set.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ If there is an error deleting any of the specified read sets, the service return
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/cancel-annotation-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ The following ``cancel-annotation-import-job`` example cancels an annotation imp
aws omics cancel-annotation-import-job \
--job-id 04f57618-xmpl-4fd0-9349-e5a85aefb997

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/cancel-variant-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ The following ``cancel-variant-import-job`` example cancels a variant import job
aws omics cancel-variant-import-job \
--job-id 69cb65d6-xmpl-4a4a-9025-4565794b684e

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/create-annotation-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ Output::
}
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the Amazon Omics Developer Guide.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/create-reference-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Output::
"name": "my-ref-store"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
17 changes: 17 additions & 0 deletions awscli/examples/omics/create-run-cache.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
**To create a run cache**

The following ``create-run-cache`` example creates a run cache with a specified S3 location for storing the cached task outputs. ::

aws omics create-run-cache \
--cache-s3-location "s3://example-bucket/cache/"

Output::

{
"arn": "arn:aws:omics:us-west-2:123456789012:runCache/1234567",
"id": "1234567",
"status": "ACTIVE",
"tags": {}
}

For more information, see `Creating a run cache <https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-create.html>`__ in the *AWS HealthOmics User Guide*.
4 changes: 1 addition & 3 deletions awscli/examples/omics/create-run-group.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ The following ``create-run-group`` example creates a run group named ``cram-conv
aws omics create-run-group \
--name cram-converter \
--max-cpus 20 \
--max-gpus 10 \
--max-duration 600 \
--max-runs 5
--max-duration 600

Output::

Expand Down
2 changes: 1 addition & 1 deletion awscli/examples/omics/create-sequence-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Output::
"name": "my-seq-store"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/create-variant-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Output::
"status": "CREATING"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
1 change: 1 addition & 0 deletions awscli/examples/omics/create-workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Output::
"id": "1234567",
"status": "CREATING",
"tags": {}
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

For more information, see `Creating private workflows <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/delete-annotation-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ Output::
"status": "DELETING"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/delete-reference-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ The following ``delete-reference-store`` example deletes a reference store with
aws omics delete-reference-store \
--id 1234567890

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/delete-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ The following ``delete-reference`` example deletes a reference. ::
--reference-store-id 1234567890 \
--id 1234567890

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
8 changes: 8 additions & 0 deletions awscli/examples/omics/delete-run-cache.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
**To delete a run cache**

The following ``delete-run-cache`` example deletes the run cache ``1234567``. ::

aws omics delete-run-cache \
--id "1234567" \

For more information, see `Deleting a run cache <https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-delete.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/delete-sequence-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ The following ``delete-sequence-store`` example deletes a sequence store with ID
aws omics delete-sequence-store \
--id 1234567890

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/delete-variant-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ Output::
"status": "DELETING"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-annotation-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Output::
"updateTime": "2022-11-30T01:42:39.134009Z"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-annotation-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Output::
"tags": {}
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-read-set-activation-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Output::
"statusMessage": "The job completed successfully."
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-read-set-export-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Output::
"statusMessage": "The job is submitted and will start soon."
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-read-set-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ Output::
"statusMessage": "The job is currently in progress."
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-read-set-metadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Output::
"subjectId": "fastq-subject"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-read-set.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ The following ``get-read-set`` example downloads part 3 of a read set as ``12345
--id 1234567890 \
--part-number 3 1234567890.3.bam

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-reference-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ Output::
"statusMessage": "The job is currently in progress."
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-reference-metadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ Output::
"updateTime": "2022-11-22T22:27:09.033Z"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-reference-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Output::
"name": "my-rstore-0"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ The following ``get-reference`` example downloads part 1 of a genome as ``hg38.1
--id 1234567890 \
--part-number 1 hg38.1.fa

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
19 changes: 19 additions & 0 deletions awscli/examples/omics/get-run-cache.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
**To view a run cache**

The following ``get-run-cache`` example retrieves metadata for the run cache ``1234567``. ::

aws omics get-run-cache --id 1234567

Output::

{
"arn": "arn:aws:omics:us-west-2:123456789012:runCache/1234567",
"cacheBehavior": "CACHE_ON_FAILURE",
"cacheS3Uri": "s3://omics-output-us-west-2-123456789012/cache/decbe15f-2b59-88bb-6c6d-2759000b90a1/",
"creationTime": "2025-06-30T21:29:03.406500+00:00",
"id": "1234567",
"status": "ACTIVE",
"tags": {}
}

For more information, see `Contents of a run cache <https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-contents.html>`__ in the *AWS HealthOmics User Guide*.
22 changes: 12 additions & 10 deletions awscli/examples/omics/get-run-task.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@
The following ``get-run-task`` example gets details about a workflow task. ::

aws omics get-run-task \
--id 1234567 \
--task-id 1234567
--id "6096280" \
--task-id "6657068"

Output::

{
"cpus": 1,
"creationTime": "2022-11-30T23:13:00.718651Z",
"logStream": "arn:aws:logs:us-west-2:123456789012:log-group:/aws/omics/WorkflowLog:log-stream:run/1234567/task/1234567",
"memory": 15,
"name": "CramToBamTask",
"startTime": "2022-11-30T23:17:47.016Z",
"taskId": "6657068",
"status": "COMPLETED",
"stopTime": "2022-11-30T23:18:21.503Z",
"taskId": "1234567"
"name": "FileCopy",
"cpus": 1,
"memory": 1,
"creationTime": "2025-06-30T23:14:54.329480+00:00",
"startTime": "2025-06-30T23:17:43.437000+00:00",
"stopTime": "2025-06-30T23:17:57.662000+00:00",
"logStream": "arn:aws:logs:us-west-2:123456789012:log-group:/aws/omics/WorkflowLog:log-stream:run/6096280/task/6657068",
"gpus": 0,
"instanceType": "omics.c.large"
}

For more information, see `Task lifecycle in a HealthOmics run <https://docs.aws.amazon.com/omics/latest/dev/workflow-run-tasks.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-sequence-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ Output::
"name": "my-seq-store"
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-variant-import-job.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Output::
"updateTime": "2022-11-23T22:43:05.898309Z"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/get-variant-store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Output::
"updateTime": "2022-11-23T22:09:24.931711Z"
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-annotation-import-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Output::
]
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-annotation-stores.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ Output::
]
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-read-set-activation-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-read-set-export-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-read-set-import-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-read-sets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-reference-import-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-reference-stores.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-references.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
30 changes: 30 additions & 0 deletions awscli/examples/omics/list-run-caches.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
**To get a list of run caches**

The following ``list-run-caches`` example lists all existing run caches in the associated AWS HealthOmics account. ::

aws omics list-run-caches

Output::

{
"items": [
{
"arn": "arn:aws:omics:us-west-2:123456789012:runCache/2743932",
"cacheBehavior": "CACHE_ON_FAILURE",
"cacheS3Uri": "s3://omics-output-us-west-2-123456789012/cache/decbe15f-2b59-88bb-6c6d-2759000b90a1/",
"creationTime": "2025-06-30T21:29:03.406500+00:00",
"id": "2743932",
"status": "ACTIVE"
},
{
"arn": "arn:aws:omics:us-west-2:123456789012:runCache/7038070",
"cacheBehavior": "CACHE_ON_FAILURE",
"cacheS3Uri": "s3://omics-output-us-west-2-123456789012/cache/30cbe158-d6cd-6e9e-2cf1-9e40ff641318/",
"creationTime": "2025-06-30T21:15:13.683730+00:00",
"id": "7038070",
"status": "ACTIVE"
},
]
}

For more information, see `Call caching for HealthOmics runs <https://docs.aws.amazon.com/omics/latest/dev/workflows-call-caching.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-sequence-stores.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Output::
]
}

For more information, see `Omics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Storage <https://docs.aws.amazon.com/omics/latest/dev/sequence-stores.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-tags-for-resource.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Output::
}
}

For more information, see `Tagging resources in Amazon Omics <https://docs.aws.amazon.com/omics/latest/dev/workflows.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `Tagging resources in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/tagging.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-variant-import-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Output::
]
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
2 changes: 1 addition & 1 deletion awscli/examples/omics/list-variant-stores.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Output::
]
}

For more information, see `Omics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *Amazon Omics Developer Guide*.
For more information, see `HealthOmics Analytics <https://docs.aws.amazon.com/omics/latest/dev/omics-analytics.html>`__ in the *AWS HealthOmics User Guide*.
Loading