Skip to content

Commit

Permalink
feat: disulfide bonding
Browse files Browse the repository at this point in the history
  • Loading branch information
YaoYinYing committed Aug 24, 2024
1 parent db42183 commit e4d6821
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions apps/protein_folding/helixfold3/data/demo_disulf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"entities": [
{
"type": "protein",
"sequence": "MASVKSSSSSSSSSFISLLLLILLVIVLQSQVIECQPQQSCTASLTGLNVCAPFLVPGSPTASTECCNAVQSINHDCMCNTMRIAAQIPAQCNLPPLSCSAN",
"count": 1
},
{
"type": "bond",
"bond": "A,CYS,41,SG,A,CYS,77,SG,disulf,2.2;A,CYS,51,SG,A,CYS,66,SG,disulf,2.2;A,CYS,67,SG,A,CYS,92,SG,disulf,2.2;A,CYS,79,SG,A,CYS,99,SG,disulf,2.2",
"_case_from": "https://www.uniprot.org/uniprotkb/Q43495/entry#ptm_processing"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def parse_covalent_bond_input(input_string: str) -> List[CovalentBond]:

# Append the CovalentBond instance to the list
covalent_bonds.append(covalent_bond)
logging.info(f"Added {len(covalent_bonds)} bonds: {covalent_bonds}")
logging.info(f"Added {len(covalent_bonds)} bonds: {covalent_bonds}")

return covalent_bonds

Expand Down

0 comments on commit e4d6821

Please sign in to comment.