Amazon HealthOmics · Arazzo Workflow

Amazon HealthOmics Activate an Archived Read Set

Version 1.0.0

Start a read set activation job in a sequence store and poll it to completion.

1 workflow 1 source API 1 provider
View Spec View on GitHub BioinformaticsGenomicsHealthcareLife SciencesCloud ComputingArazzoWorkflows

Provider

amazon-healthomics

Workflows

activate-read-set
Start a read set activation job and wait for it to complete.
Starts a read set activation job for the supplied sources and polls GetReadSetActivationJob until the job is COMPLETED, COMPLETED_WITH_FAILURES, CANCELLED, or FAILED.
2 steps inputs: sequenceStoreId, sources outputs: activationJobId, finalStatus
1
startActivationJob
Start a read set activation job for the supplied read sets.
2
pollActivationJob
Poll the activation job until it reaches a terminal status. The status enum is SUBMITTED, IN_PROGRESS, CANCELLING, CANCELLED, FAILED, COMPLETED, or COMPLETED_WITH_FAILURES.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon HealthOmics Activate an Archived Read Set
  summary: Start a read set activation job in a sequence store and poll it to completion.
  description: >-
    To reduce storage charges, Amazon HealthOmics archives unused read sets
    after 30 days; they must be reactivated before they can be read or exported.
    This workflow starts a read set activation job for the supplied read sets in
    a sequence store and polls GetReadSetActivationJob until the job reaches a
    terminal state. Each step spells out its AWS REST-JSON request inline so the
    flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: sequencestoreApi
  url: ../openapi/amazon-healthomics-sequencestore-api-openapi.yml
  type: openapi
workflows:
- workflowId: activate-read-set
  summary: Start a read set activation job and wait for it to complete.
  description: >-
    Starts a read set activation job for the supplied sources and polls
    GetReadSetActivationJob until the job is COMPLETED, COMPLETED_WITH_FAILURES,
    CANCELLED, or FAILED.
  inputs:
    type: object
    required:
    - sequenceStoreId
    - sources
    properties:
      sequenceStoreId:
        type: string
        description: The sequence store ID that holds the archived read sets.
      sources:
        type: array
        description: The activation job sources, each with a readSetId.
        items:
          type: object
  steps:
  - stepId: startActivationJob
    description: Start a read set activation job for the supplied read sets.
    operationId: StartReadSetActivationJob
    parameters:
    - name: sequenceStoreId
      in: path
      value: $inputs.sequenceStoreId
    requestBody:
      contentType: application/json
      payload:
        sources: $inputs.sources
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      activationJobId: $response.body#/id
      activationStatus: $response.body#/status
  - stepId: pollActivationJob
    description: >-
      Poll the activation job until it reaches a terminal status. The status
      enum is SUBMITTED, IN_PROGRESS, CANCELLING, CANCELLED, FAILED, COMPLETED,
      or COMPLETED_WITH_FAILURES.
    operationId: GetReadSetActivationJob
    parameters:
    - name: sequenceStoreId
      in: path
      value: $inputs.sequenceStoreId
    - name: id
      in: path
      value: $steps.startActivationJob.outputs.activationJobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobStatus: $response.body#/status
      statusMessage: $response.body#/statusMessage
      completionTime: $response.body#/completionTime
    onSuccess:
    - name: activationComplete
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "COMPLETED"
        type: jsonpath
    - name: activationFailed
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "FAILED" || $.status == "CANCELLED"
        type: jsonpath
    - name: activationStillRunning
      type: goto
      stepId: pollActivationJob
      criteria:
      - context: $response.body
        condition: $.status == "IN_PROGRESS" || $.status == "SUBMITTED"
        type: jsonpath
  outputs:
    activationJobId: $steps.startActivationJob.outputs.activationJobId
    finalStatus: $steps.pollActivationJob.outputs.jobStatus

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amazon-healthomics-activate-read-set-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.