Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a homology model for an input sequence, using template.pdb as a custom template:

Code Block
languagepy
from engine.single_chain_hm.client import SingleChainHmClient

client = SingleChainHmClient()
job_id = client.submit(sequence="SECVENGGFCPDPEKMGDWCCGRCIRNECRNG", template="template.pdb")

Create a homology model for an input sequence, with disulfides fixed between residues 3 and 21 and residues 10 and 24:

Code Block
languagepy
from engine.single_chain_hm.client import SingleChainHmClient

client = SingleChainHmClient()
job_id = client.submit(sequence="SECVENGGFCPDPEKMGDWCCGRCIRNECRNG", disulfide_list=[(3,21), (10,24)])

...