NVIDIA NIM · Arazzo Workflow

NVIDIA NIM BioNeMo Drug Discovery

Version 1.0.0

Fold a protein from sequence, dock a ligand into the predicted structure, then generate optimized analog molecules.

1 workflow 1 source API 1 provider
View Spec View on GitHub Artificial IntelligenceInferenceMicroservicesLLMFoundation ModelsGPUKubernetesNVIDIAOpenAI-CompatibleArazzoWorkflows

Provider

nvidia-nim

Workflows

bionemo-drug-discovery
Fold a protein, dock a ligand, then generate analog molecules.
Predicts a protein structure from sequence, docks a seed ligand into it, and generates optimized analogs of the seed ligand.
3 steps inputs: apiKey, ligandSmiles, numMolecules, numPoses, sequence outputs: predictedPdb, topAnalogSmiles, topPoseConfidence
1
predictStructure
Predict the 3D structure of the target protein from its amino acid sequence with the AlphaFold2 NIM, returning PDB-format structures.
2
dockLigand
Dock the seed ligand against the predicted protein structure with DiffDock to predict candidate binding poses.
3
generateAnalogs
Generate optimized analog molecules around the seed ligand SMILES with MolMIM, optimizing for drug-likeness (QED).

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: NVIDIA NIM BioNeMo Drug Discovery
  summary: Fold a protein from sequence, dock a ligand into the predicted structure, then generate optimized analog molecules.
  description: >-
    A structure-based drug-discovery pipeline chaining three NVIDIA BioNeMo
    NIMs. AlphaFold2 first predicts the 3D structure of a target protein from
    its amino acid sequence; the resulting PDB structure is docked against a
    seed ligand with DiffDock to find candidate binding poses; and MolMIM then
    generates optimized analogs around the seed ligand SMILES to explore the
    chemical neighborhood. Outputs of each stage feed the next, turning a bare
    sequence and seed molecule into a ranked set of docked poses and generated
    candidates. Every step spells out its request inline so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: biologyApi
  url: ../openapi/nvidia-nim-biology-api-openapi.yml
  type: openapi
workflows:
- workflowId: bionemo-drug-discovery
  summary: Fold a protein, dock a ligand, then generate analog molecules.
  description: >-
    Predicts a protein structure from sequence, docks a seed ligand into it, and
    generates optimized analogs of the seed ligand.
  inputs:
    type: object
    required:
    - apiKey
    - sequence
    - ligandSmiles
    properties:
      apiKey:
        type: string
        description: NVIDIA developer API key (nvapi-...) sent as a Bearer token.
      sequence:
        type: string
        description: Single-letter amino acid sequence of the target protein.
      ligandSmiles:
        type: string
        description: Seed ligand as a SMILES string, used for docking and analog generation.
      numPoses:
        type: integer
        description: Number of docking poses to predict.
        default: 10
      numMolecules:
        type: integer
        description: Number of analog molecules to generate.
        default: 10
  steps:
  - stepId: predictStructure
    description: >-
      Predict the 3D structure of the target protein from its amino acid
      sequence with the AlphaFold2 NIM, returning PDB-format structures.
    operationId: predictProteinStructure
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        sequence: $inputs.sequence
        databases:
        - uniref90
        - mgnify
        - small_bfd
        relax_prediction: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      predictedPdb: $response.body#/pdbs/0
  - stepId: dockLigand
    description: >-
      Dock the seed ligand against the predicted protein structure with
      DiffDock to predict candidate binding poses.
    operationId: dockLigand
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        protein: $steps.predictStructure.outputs.predictedPdb
        ligand: $inputs.ligandSmiles
        num_poses: $inputs.numPoses
        time_divisions: 20
        steps: 18
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ligandPositions: $response.body#/ligand_positions
      topPoseConfidence: $response.body#/position_confidence/0
  - stepId: generateAnalogs
    description: >-
      Generate optimized analog molecules around the seed ligand SMILES with
      MolMIM, optimizing for drug-likeness (QED).
    operationId: generateMolecules
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        smi: $inputs.ligandSmiles
        algorithm: CMA-ES
        num_molecules: $inputs.numMolecules
        property_name: QED
        minimize: false
        min_similarity: 0.3
        particles: 30
        iterations: 10
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      generated: $response.body#/generated
      topAnalogSmiles: $response.body#/generated/0/sample
      topAnalogScore: $response.body#/generated/0/score
  outputs:
    predictedPdb: $steps.predictStructure.outputs.predictedPdb
    topPoseConfidence: $steps.dockLigand.outputs.topPoseConfidence
    topAnalogSmiles: $steps.generateAnalogs.outputs.topAnalogSmiles

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/nvidia-nim-bionemo-drug-discovery-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.