deviation = <float:1> | 0.0 | coordinate randomizaton amplitude in angstroms |
# Example for: model.randomize_xyz() # This will randomize the X,Y,Z of the model: env = environ() mdl = model(env, file='1fas') # Change existing X,Y,Z for +- 4 angstroms: mdl.randomize_xyz(deviation=4.0) mdl.write(file='1fas.ini1') # Assign X,Y,Z in the range from -100 to 100 angstroms: mdl.randomize_xyz(deviation=-100.0) mdl.write(file='1fas.ini2')