IMP
2.4.0
The Integrative Modeling Platform
|
A class to evaluate the precision of an ensemble. More...
Inherits object.
A class to evaluate the precision of an ensemble.
Also can evaluate the cross-precision of multiple ensembles. Supports MPI for coordinate reading. Recommended procedure:
Definition at line 460 of file pmi/Analysis.py.
Public Member Functions | |
def | __init__ |
Constructor. More... | |
def | add_structure |
Read a structure into the ensemble and store (as coordinates). More... | |
def | add_structures |
Read a list of RMFs, supports parallel. More... | |
def | get_average_distance_wrt_reference_structure |
Compare the structure set to the reference structure. More... | |
def | get_precision |
Evaluate the precision of two named structure groups. More... | |
def | get_rmsf |
Calculate the residue mean square fluctuations (RMSF). More... | |
def | set_reference_structure |
Read in a structure used for reference computation. More... | |
def IMP.pmi.analysis.Precision.__init__ | ( | self, | |
model, | |||
resolution = 1 , |
|||
selection_dictionary = {} |
|||
) |
Constructor.
model | The IMP Model |
resolution | Use 1 or 10 (kluge: requires that "_Res:X" is part of the hier name) |
selection_dictionary | Dictionary where keys are names for selections and values are selection tuples for scoring precision. "All" is automatically made as well |
Definition at line 471 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.add_structure | ( | self, | |
rmf_name, | |||
rmf_frame_index, | |||
structure_set_name, | |||
setup_index_map = False |
|||
) |
Read a structure into the ensemble and store (as coordinates).
rmf_name | The name of the RMF file |
rmf_frame_index | The frame to read |
structure_set_name | Name for the set that includes this structure (e.g. "cluster 1") |
Definition at line 544 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.add_structures | ( | self, | |
rmf_name_frame_tuples, | |||
structure_set_name | |||
) |
Read a list of RMFs, supports parallel.
rmf_name_frame_tuples | list of (rmf_file_name,frame_number) |
structure_set_name | Name this set of structures (e.g. "cluster.1") |
Definition at line 596 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.get_average_distance_wrt_reference_structure | ( | self, | |
structure_set_name | |||
) |
Compare the structure set to the reference structure.
structure_set_name | The structure set to compute this on |
Definition at line 891 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.get_precision | ( | self, | |
structure_set_name1, | |||
structure_set_name2, | |||
outfile = None , |
|||
skip = 1 , |
|||
selection_keywords = None |
|||
) |
Evaluate the precision of two named structure groups.
Supports MPI. When the structure_set_name1 is different from the structure_set_name2, this evaluates the cross-precision (average pairwise distances).
outfile | Name of the precision output file |
structure_set_name1 | string name of the first structure set |
structure_set_name2 | string name of the second structure set |
skip | analyze every (skip) structure for the distance matrix calculation |
selection_keywords | Specify the selection name you want to calculate on. By default this is computed for everything you provided in the constructor, plus all the subunits together. |
Definition at line 708 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.get_rmsf | ( | self, | |
structure_set_name, | |||
outdir = './' , |
|||
skip = 1 , |
|||
set_plot_yaxis_range = None |
|||
) |
Calculate the residue mean square fluctuations (RMSF).
Automatically outputs as data file and pdf
structure_set_name | Which structure set to calculate RMSF for |
outdir | Where to write the files |
skip | Skip this number of structures |
set_plot_yaxis_range | In case you need to change the plot |
Definition at line 815 of file pmi/Analysis.py.
def IMP.pmi.analysis.Precision.set_reference_structure | ( | self, | |
rmf_name, | |||
rmf_frame_index | |||
) |
Read in a structure used for reference computation.
Needed before calling get_average_distance_wrt_reference_structure()
rmf_name | The RMF file to read the reference |
rmf_frame_index | The index in that file |
Definition at line 874 of file pmi/Analysis.py.