Prototype origin residue

This commit is contained in:
Joel Wallace 2025-11-20 13:40:42 +00:00
parent 859ee4e04d
commit f4f672d514

View File

@ -2,3 +2,15 @@
# Build first residue including sidechain # Build first residue including sidechain
# Add ghost C' for first NeRF iteration # Add ghost C' for first NeRF iteration
# Using C # Using C
from protein.residue import Residue, ResidueName
from geometry.backbone import GEO, ORI
met1 = Residue(ResidueName.MET)
print(met1.name.value)
for atom in ORI:
met1.backbone["atoms"][atom] = ORI[atom]
print(met1.backbone["atoms"])