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
c47a1309
Commit
c47a1309
authored
7 years ago
by
Rafal Gumienny
Browse files
Options
Downloads
Patches
Plain Diff
fix: SCHWED-3120 Even more better logging
parent
8d97e622
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
actions/ost-compare-structures
+7
-5
7 additions, 5 deletions
actions/ost-compare-structures
with
7 additions
and
5 deletions
actions/ost-compare-structures
+
7
−
5
View file @
c47a1309
...
...
@@ -541,7 +541,6 @@ def _Main():
result["options"]["cwd"] = os.path.abspath(os.getcwd())
#
# Perform scoring
ost.LogInfo("Performing scoring")
for model in models:
model_name = model.GetName()
model_results = dict()
...
...
@@ -561,7 +560,8 @@ def _Main():
opts.chain_mapping))
qs_scorer.chain_mapping = opts.chain_mapping
if opts.qs_score:
ost.LogInfo("-> Computing QS-score")
ost.LogInfo("-" * 80)
ost.LogInfo("Computing QS-score")
try:
reference_results["qs_score"] = {
"status": "SUCCESS",
...
...
@@ -586,6 +586,8 @@ def _Main():
}
# Calculate lDDT
if opts.lddt:
ost.LogInfo("-" * 80)
ost.LogInfo("Computing lDDT scores")
lddt_results = {
"single_chain_lddt": list()
}
...
...
@@ -598,9 +600,9 @@ def _Main():
structural_checks=False,
consistency_checks=opts.consistency_checks,
label="lddt")
if opts.verbosity > 3:
lddt_settings.PrintParameters
()
ost.LogInfo("lDDT settings: ")
ost.LogInfo(str(lddt_settings).rstrip
()
)
ost.LogInfo("===")
oligo_lddt_scorer = qsscoring.OligoLDDTScorer(
qs_scorer.qs_ent_1.ent,
qs_scorer.qs_ent_2.ent,
...
...
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