Skip to content
Snippets Groups Projects
Verified Commit d2fbbd73 authored by Xavier Robin's avatar Xavier Robin
Browse files

feat: SCHWED-5783 add transform to output

parent 8ce60a37
Branches
Tags
No related merge requests found
...@@ -437,6 +437,7 @@ class LigandScorer: ...@@ -437,6 +437,7 @@ class LigandScorer:
"chain_mapping": binding_site.GetFlatChainMapping(), "chain_mapping": binding_site.GetFlatChainMapping(),
"lddt_bs": binding_site.lDDT, "lddt_bs": binding_site.lDDT,
"bb_rmsd": binding_site.bb_rmsd, "bb_rmsd": binding_site.bb_rmsd,
"transform": binding_site.transform,
"bs_num_res": len(binding_site.substructure.residues), "bs_num_res": len(binding_site.substructure.residues),
"bs_num_overlap_res": len(binding_site.ref_residues), "bs_num_overlap_res": len(binding_site.ref_residues),
"target_ligand": target_ligand, "target_ligand": target_ligand,
...@@ -464,6 +465,7 @@ class LigandScorer: ...@@ -464,6 +465,7 @@ class LigandScorer:
"chain_mapping": binding_site.GetFlatChainMapping(), "chain_mapping": binding_site.GetFlatChainMapping(),
"lddt_bs": binding_site.lDDT, "lddt_bs": binding_site.lDDT,
"bb_rmsd": binding_site.bb_rmsd, "bb_rmsd": binding_site.bb_rmsd,
"transform": binding_site.transform,
"bs_num_res": len(binding_site.substructure.residues), "bs_num_res": len(binding_site.substructure.residues),
"bs_num_overlap_res": len(binding_site.ref_residues), "bs_num_overlap_res": len(binding_site.ref_residues),
"target_ligand": target_ligand, "target_ligand": target_ligand,
...@@ -664,6 +666,7 @@ class LigandScorer: ...@@ -664,6 +666,7 @@ class LigandScorer:
* `bs_num_overlap_res`: number of residues in the model overlapping * `bs_num_overlap_res`: number of residues in the model overlapping
with the target binding site. with the target binding site.
* `bb_rmsd`: the RMSD of the binding site backbone after superposition * `bb_rmsd`: the RMSD of the binding site backbone after superposition
* `transform`: transformation to superpose the model onto the target
* `target_ligand`: residue handle of the target ligand * `target_ligand`: residue handle of the target ligand
* `model_ligand`: residue handle of the model ligand * `model_ligand`: residue handle of the model ligand
* `chain_mapping`: local chain mapping as a dictionary, with target * `chain_mapping`: local chain mapping as a dictionary, with target
...@@ -717,6 +720,7 @@ class LigandScorer: ...@@ -717,6 +720,7 @@ class LigandScorer:
with the target binding site. with the target binding site.
* `bb_rmsd`: the RMSD of the binding site backbone after superposition. * `bb_rmsd`: the RMSD of the binding site backbone after superposition.
Note: not used for lDDT-PLI computation. Note: not used for lDDT-PLI computation.
* `transform`: transformation to superpose the model onto the target
* `target_ligand`: residue handle of the target ligand * `target_ligand`: residue handle of the target ligand
* `model_ligand`: residue handle of the model ligand * `model_ligand`: residue handle of the model ligand
* `chain_mapping`: local chain mapping as a dictionary, with target * `chain_mapping`: local chain mapping as a dictionary, with target
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment