Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
a0cf7b59
Commit
a0cf7b59
authored
7 years ago
by
Rafal Gumienny
Browse files
Options
Downloads
Patches
Plain Diff
docs: SCHWED-3132 Update function documentation that do not use lDDTSettings anymore
parent
e755be76
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/mol/alg/doc/molalg.rst
+15
-10
15 additions, 10 deletions
modules/mol/alg/doc/molalg.rst
modules/mol/alg/src/local_dist_diff_test.hh
+1
-1
1 addition, 1 deletion
modules/mol/alg/src/local_dist_diff_test.hh
with
16 additions
and
11 deletions
modules/mol/alg/doc/molalg.rst
+
15
−
10
View file @
a0cf7b59
...
@@ -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, s
ettings
)
.. function:: GetlDDTPerResidueStats(model, distance_list, s
tructural_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 s
ettings: lDDT settings
:param s
tructural_checks: Where structural checks performed on the model?
:type s
ettings: :class:`~ost.mol.alg.lDDTSettings`
:type s
tructural_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, s
ettings
)
.. function:: PrintlDDTPerResidueStats(scores, s
tructural_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, \
...
...
This diff is collapsed.
Click to expand it.
modules/mol/alg/src/local_dist_diff_test.hh
+
1
−
1
View file @
a0cf7b59
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment