Skip to content
Snippets Groups Projects
Commit 7e87fd60 authored by Valerio Mariani's avatar Valerio Mariani
Browse files

Added helper function to fill ClashingDistances

parent 1350fae6
No related branches found
No related tags found
No related merge requests found
...@@ -3,3 +3,10 @@ from ost.mol.alg.superpose import * ...@@ -3,3 +3,10 @@ from ost.mol.alg.superpose import *
import ost.mol.alg.trajectory_analysis import ost.mol.alg.trajectory_analysis
import ost.mol.alg.structure_analysis import ost.mol.alg.structure_analysis
import ost.mol.alg.helix_kinks import ost.mol.alg.helix_kinks
def FillClashingDistancesFromFile(filename,default_clashing_distance,default_tolerance):
fh=open(filename,'r')
lines=fh.readlines()
fh.close()
return FillClashingDistances(lines,default_clashing_distance,default_tolerance)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment