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
456beb98
Unverified
Commit
456beb98
authored
11 months ago
by
Xavier Robin
Browse files
Options
Downloads
Patches
Plain Diff
fix: rename CSV columns
The rmsd_ prefix was more confusing than helpful to Mike
parent
de5cb3ba
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-ligand-structures
+5
-6
5 additions, 6 deletions
actions/ost-compare-ligand-structures
with
5 additions
and
6 deletions
actions/ost-compare-ligand-structures
+
5
−
6
View file @
456beb98
...
...
@@ -98,7 +98,7 @@ If lDDT-PLI was enabled with --lddt-pli, the following columns are added:
If BiSyRMSD was enabled with --rmsd, the following columns are added:
* "rmsd", "rmsd_coverage". "
rmsd_
lddt_lp" "
rmsd_
bb_rmsd" and
* "rmsd", "rmsd_coverage". "lddt_lp" "bb_rmsd" and
"rmsd_(model|reference)_ligand" are the BiSyRMSD, the corresponding
coverage, lDDT-LP, backbone RMSD and assigned model ligand (or reference
ligand if the --by-model-ligand-output flag was set) if an assignment
...
...
@@ -794,16 +794,15 @@ def _WriteCSV(out, args):
})
if args.rmsd:
fieldnames.extend(["rmsd", "rmsd_coverage", "rmsd_lddt_lp",
"rmsd_bb_rmsd", "rmsd_%s" % ligand_other,
"rmsd_unassigned"])
fieldnames.extend(["rmsd", "lddt_lp", "bb_rmsd", "rmsd_coverage",
"rmsd_%s" % ligand_other, "rmsd_unassigned"])
for score in out["rmsd"]["assigned_scores"]:
csv_dict[score[ligand_by]].update({
ligand_by: score[ligand_by],
"rmsd": score["score"],
"lddt_lp": score["lddt_lp"],
"bb_rmsd": score["bb_rmsd"],
"rmsd_coverage": score["coverage"],
"rmsd_lddt_lp": score["lddt_lp"],
"rmsd_bb_rmsd": score["bb_rmsd"],
"rmsd_%s" % ligand_other: score[ligand_other],
})
for ligand, reason in out["rmsd"][
...
...
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