Skip to content
Snippets Groups Projects
Commit 6c7a379d authored by Fabrice  ALLAIN's avatar Fabrice ALLAIN
Browse files

Updated violation analysis if clusters

parent ceb1d134
No related branches found
No related tags found
No related merge requests found
......@@ -454,9 +454,13 @@ class EnsembleAnalysis(object):
# ens_getdists = ensemble.getDistances
LOG.info("Violation analysis")
out_file = os.path.join(out_path, 'violations.csv')
self.violation_analysis(project, iteration_id, restraints, bestensemble,
out_file, dists_ref=dists_ref)
for clustidx, clustensemble in clustensembles:
out_file = os.path.join(
out_path,
'violations.csv' if len(clustensembles) == 1 else
'violations-clust%d.csv' % clustidx)
self.violation_analysis(project, iteration_id, restraints,
clustensemble, out_file, dists_ref=dists_ref)
# For the plotting part, we need a StructureEnsemble instance with all
# pdb files from the iteration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment