From f4f672d514409d435d6e13a4290514b30f46d260 Mon Sep 17 00:00:00 2001 From: Joel Wallace Date: Thu, 20 Nov 2025 13:40:42 +0000 Subject: [PATCH] Prototype origin residue --- src/main.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main.py b/src/main.py index f39665b..bcb103c 100644 --- a/src/main.py +++ b/src/main.py @@ -2,3 +2,15 @@ # Build first residue including sidechain # Add ghost C' for first NeRF iteration # 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"])