Skip to content
Snippets Groups Projects
Commit a0cf7b59 authored by Rafal Gumienny's avatar Rafal Gumienny
Browse files

docs: SCHWED-3132 Update function documentation that do not use lDDTSettings anymore

parent e755be76
Branches
Tags
No related merge requests found
...@@ -306,7 +306,7 @@ Local Distance Test scores (lDDT, DRMSD) ...@@ -306,7 +306,7 @@ Local Distance Test scores (lDDT, DRMSD)
:returns: :class:`~ost.mol.alg.GlobalRDMap` :returns: :class:`~ost.mol.alg.GlobalRDMap`
.. function:: PreparelDDTGlobalRDMap(reference_list, settings) .. function:: PreparelDDTGlobalRDMap(reference_list, cutoff_list, sequence_separation, max_dist)
A wrapper around :func:`CreateDistanceList` and A wrapper around :func:`CreateDistanceList` and
:func:`CreateDistanceListFromMultipleReferences`. Depending on the length of :func:`CreateDistanceListFromMultipleReferences`. Depending on the length of
...@@ -315,9 +315,12 @@ Local Distance Test scores (lDDT, DRMSD) ...@@ -315,9 +315,12 @@ Local Distance Test scores (lDDT, DRMSD)
:param reference_list: a list of reference structures from which distances are :param reference_list: a list of reference structures from which distances are
derived derived
:type reference_list: list of :class:`~ost.mol.EntityView` :type reference_list: list of :class:`~ost.mol.EntityView`
:param settings: lDDT settings :param max_dist: the inclusion radius in Angstroms (to determine which
:type settings: :class:`~ost.mol.alg.lDDTSettings` distances are checked for conservation)
:type max_dist: :class:`float`
:param sequence_separation: sequence separation parameter ie. maximum distance
between two sequences.
:type sequence_separation: :class:`int`
:returns: :class:`~ost.mol.alg.GlobalRDMap` :returns: :class:`~ost.mol.alg.GlobalRDMap`
...@@ -361,7 +364,7 @@ Local Distance Test scores (lDDT, DRMSD) ...@@ -361,7 +364,7 @@ Local Distance Test scores (lDDT, DRMSD)
:type angle_tolerance: float :type angle_tolerance: float
.. function:: GetlDDTPerResidueStats(model, distance_list, settings) .. function:: GetlDDTPerResidueStats(model, distance_list, structural_checks, label)
Get the per-residue statistics from the lDDT calculation. Get the per-residue statistics from the lDDT calculation.
...@@ -369,20 +372,22 @@ Local Distance Test scores (lDDT, DRMSD) ...@@ -369,20 +372,22 @@ Local Distance Test scores (lDDT, DRMSD)
:type model: :class:`~ost.mol.EntityHandle` :type model: :class:`~ost.mol.EntityHandle`
:param distance_list: The list of distances to check for conservation :param distance_list: The list of distances to check for conservation
:type distance_list: :class:`~ost.mol.alg.GlobalRDMap` :type distance_list: :class:`~ost.mol.alg.GlobalRDMap`
:param settings: lDDT settings :param structural_checks: Where structural checks performed on the model?
:type settings: :class:`~ost.mol.alg.lDDTSettings` :type structural_checks: bool
:returns: Per-residue local lDDT scores :returns: Per-residue local lDDT scores
:rtype: :class:`list` of :class:`~ost.mol.alg.lDDTLocalScore` :rtype: :class:`list` of :class:`~ost.mol.alg.lDDTLocalScore`
.. function:: PrintlDDTPerResidueStats(scores, settings) .. function:: PrintlDDTPerResidueStats(scores, structural_checks, cutoffs_length)
Print per-residue statistics from lDDT calculation. Print per-residue statistics from lDDT calculation.
:param scores: Local lDDT scores :param scores: Local lDDT scores
:type scores: :class:`list` of :class:`~ost.mol.alg.lDDTLocalScore` :type scores: :class:`list` of :class:`~ost.mol.alg.lDDTLocalScore`
:param settings: lDDT settings :param structural_checks: Where structural checks performed on the model?
:type settings: :class:`~ost.mol.alg.lDDTSettings` :type structural_checks: bool
:param cutoffs_length: Length of the cutoffs list used to calculate lDDT
:type cutoffs_length: int
.. class:: lDDTLocalScore(cname, rname, rnum, is_assessed, quality_problems, \ .. class:: lDDTLocalScore(cname, rname, rnum, is_assessed, quality_problems, \
......
...@@ -168,7 +168,7 @@ Real DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl, ...@@ -168,7 +168,7 @@ Real DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl,
Real cutoff, Real cutoff,
Real max_dist, Real max_dist,
const String& local_ldt_property_string=""); const String& local_ldt_property_string="");
/// TODO document me /// \brief Wrapper around LocalDistDiffTest
Real DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& v, Real DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& v,
std::vector<EntityView>& ref_list, std::vector<EntityView>& ref_list,
const GlobalRDMap& glob_dist_list, const GlobalRDMap& glob_dist_list,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment