Skip to content
dstoeckel edited this page Feb 20, 2015 · 2 revisions

How can radii be assigned?

Use BALL's AssignRadiusProcessor. There exist several radii definition files in BALL/data, e.g. PARSE.siz.

python

from BALL import *

protein = Protein()

arp = AssignRadiusProcessor("radii/PARSE.siz")
protein.apply(arp)

Clone this wiki locally