Prototype origin residue
This commit is contained in:
parent
859ee4e04d
commit
f4f672d514
12
src/main.py
12
src/main.py
|
|
@ -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"])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user