The clean PDB API is made available to all Cyrus Engine API customers free of charge. Use of the clean PDB does not count towards yearly request quotas.

The Clean PDB API prepares input PDB files for optimal performance using the Cyrus Engine APIs. When a PDB file is submitted to the API the following changes are made:

Cyrus recommends that all PDBs used with the Cyrus Engine API are first passed through this endpoint. prior to use.

Quickstart

Command Line Examples

Clean a PDB file:

cyrus engine submit clean-pdb input_file.pdb

Clean a PDB from RCSB for chains A and B

cyrus engine submit clean-pdb --pdb-id 3hmx --chains A,B

Python Examples

Clean a PDB file:

from engine.clean_pdb.client import CleanPdbClient

client = CleanPdbClient()
job_id = client.submit(pdb_path="input.pdb")

Inputs

Either a PDB file or a published PDB ID (ex. 1ubq)

Options

Outputs