1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#ifndef BALL_SCORING_COMMON_SCORINGFUNCTION_H
#define BALL_SCORING_COMMON_SCORINGFUNCTION_H
#include <set>
#include <BALL/KERNEL/system.h>
#include <BALL/DATATYPE/options.h>
#include <BALL/DATATYPE/string.h>
#include <BALL/DATATYPE/hashGrid.h>
#include <BALL/KERNEL/atomContainer.h>
#include <BALL/DOCKING/COMMON/staticLigandFragment.h>
#include <BALL/DOCKING/COMMON/constraints.h>
#include <BALL/SCORING/COMMON/baseFunction.h>
#include <BALL/SCORING/COMMON/scoringComponent.h>
#include <BALL/STRUCTURE/residueRotamerSet.h>
namespace BALL
{
typedef std::list<std::pair<Atom*, Atom*> > AtomPairList;
typedef std::vector<std::pair<Atom*, Atom*> > AtomPairVector;
class ScoringComponent;
class BALL_EXPORT ScoringFunction
{
friend class PharmacophoreConstraint;
friend class SideChainOptimizer;
public:
struct Option
{
/**
*/
static const char* VERBOSITY;
/**
*/
static const char* BASE_FUNCTION_TYPE;
/**
*/
static const char* HASHGRID_RESOLUTION;
/**
*/
static const char* HASHGRID_SIZE;
/**
*/
static const char* NONBONDED_CUTOFF;
/**
*/
static const char* CONFORMATION_SCALE;
/**
*/
static const char* ALL_LIG_NONB_PAIRS;
/**
*/
static const char* USE_STATIC_LIG_FRAGMENTS;
/**
*/
static const char* IGNORE_H_CLASHES;
/**
*/
static const char* ALLOWED_INTERMOL_OVERLAP;
/**
*/
static const char* ALLOWED_INTRAMOL_OVERLAP;
/**
*/
static const char* BURIAL_DEPTH_SCALE;
};
struct Default
{
/**
*/
static const Size VERBOSITY;
/**
*/
static const Size BASE_FUNCTION_TYPE;
/** width of one HashGridBox in Angstroem */
static double HASHGRID_RESOLUTION;
/** the size of the HashGridBox in units of boxes per axis */
static int HASHGRID_SIZE;
static double NONBONDED_CUTOFF;
/** allows scaling down the contribution of the conformational energy of the ligand to the overall score */
static double CONFORMATION_SCALE;
/** if set to true, all ligand nonbonded pairs are used to asses the conformational energy of the ligand. This way much time can be saved (for small+medium sized ligands) because the pairlist of the nonbonded comformation component will only be calculated _once_ for each ligand candidate. */
static bool ALL_LIG_NONB_PAIRS;
/** if set to true, StaticLigandFragments are calculated for each ligand candidate and the score for all nonbonded pairs _within_ one StaticLigandFragment is calculated ony _once_ for each ligand candidate. This way time can be saved if the static fragments of the ligands are not modified. */
static bool USE_STATIC_LIG_FRAGMENTS;
/** determines whether an overlap between two Hydrogen atoms should be considered a sterical clash */
static bool IGNORE_H_CLASHES;
/** the allowed intermolecular overlap in Angstroem for two atoms. */
static double ALLOWED_INTERMOL_OVERLAP;
/** the allowed intramolecular overlap in Angstroem for two atoms. */
static double ALLOWED_INTRAMOL_OVERLAP;
static int BURIAL_DEPTH_SCALE;
};
///
ScoringFunction();
///
ScoringFunction(const ScoringFunction& sf);
///
ScoringFunction(AtomContainer& receptor, AtomContainer& ligand);
///
ScoringFunction(AtomContainer& receptor, AtomContainer& ligand,
const Options& options);
ScoringFunction(AtomContainer& receptor,
AtomContainer& ligand, Options& options);
/**
* Constructor for use without reference ligand
* @param hashgrid_origin Origin of the HashGrid that will hold receptor atoms as potential interaction partners.
*/
ScoringFunction(AtomContainer& receptor, Vector3& hashgrid_origin, Options& options);
///
virtual ~ScoringFunction();
///
virtual void clear();
///
ScoringFunction& operator = (const ScoringFunction& sf);
///
bool setup();
///
bool setup(AtomContainer& receptor, AtomContainer& ligand);
///
bool setup(AtomContainer& receptor, AtomContainer& ligand, const Options& options);
///
void setMaximumNumberOfErrors(Size nr);
///
Size getMaximumNumberOfErrors() const;
///
void setFirstMolecule(AtomContainer& molecule1);
///
AtomContainer* getFirstMolecule() const;
///
void setSecondMolecule(AtomContainer& molecule2);
///
AtomContainer* getSecondMolecule() const;
/**
* Set the receptor of the complex (which is just the same as molecule1_).
*/
void setReceptor(AtomContainer& receptor);
/**
* Return the receptor of the complex (which is just the same as molecule1_).
*/
AtomContainer* getReceptor() const;
/**
* Set the ligand of the complex (which is just the same as molecule2_).
*/
void setLigand(AtomContainer& ligand);
/**
* Return the ligand of the complex (which is just the same as molecule2_).
*/
AtomContainer* getLigand() const;
///
void setIntercept(double intercept);
///
double getIntercept() const;
/// Set the instance of BaseFunction for the scoring function.
void setBaseFunction(ScoringBaseFunction& base_function);
/**
* Return a pointer to the instance of BaseFunction used by this scoring function.
*/
ScoringBaseFunction* getBaseFunction() const;
/**
* Add a scoring component to the scoring functions scoring_components_.
* @param component Scoring component to add.
*/
void insertComponent(ScoringComponent* component);
/**
* Add a scoring component and its coefficient to the scoring functions scoring_components_.
* @param component Scoring component to add.
* @param coefficient Coefficient associated with the added component.
*/
void insertComponent(ScoringComponent* component, float coefficient);
/**
* Remove a component from the component list of this scoring function and delete it
* from memory. If there was no matching component, do nothing. Note that the user
* will get no feedback if there was no component removed.
*/
void removeComponent(const ScoringComponent* component);
/**
* Remove a component from the component list of this scoring function and delete it
* from memory. If there was no matching component, do nothing. Note that the user
* will get no feedback if there was no component removed. Only the first occurrence
* of a name in the component list will be removed.
*/
void removeComponent(const String& name);
/**
* Set the coefficient of a component. If there was no matching component, do nothing.
* Note that the user will get no feedback if there was no coefficient set.
*/
void setCoefficient(const ScoringComponent* component, float coefficient);
/**
* Set the coefficient of a named component. If there was no matching component, do nothing.
* Note that the user will get no feedback if there was no coefficient set. Only the first
* occurrence of a name in the component list will be changed.
*/
void setCoefficient(const String& name, float coefficient);
/**
* Get the coefficient of a component.
* If there was no matching component, return false, ow return true.
*/
bool getCoefficient(const ScoringComponent* component,
float& coefficient) const;
/**
* Get the coefficient of a component. If there was no matching
* component, return false, ow return true.
*/
bool getCoefficient(const String& name, float& coefficient) const;
/**
* Return a pointer to a component in the components vector.
*/
ScoringComponent* getComponent(const String& name) const;
/**
* Return a pointer to a component in the components vector.
*/
ScoringComponent* getComponent(const Size index) const;
///
double calculateScore();
///
const HashSet<const Atom*>& getUnassignedAtoms() const;
///
HashSet<const Atom*>& getUnassignedAtoms();
///
static HashGrid3<Atom*>* initializeHashGrid(AtomContainer* sys,
Vector3& center,
double& resolution,
int hashgrid_size);
/**
* Returns the standard deviation of the experimentally determined binding free energy
* of the used training data set
*/
double getExpEnergyStddev();
void enableStoreInteractionsOnlyForPhContraints();
/** Converts the given seconds (e.g. result of BALL::Timer::getClockTime())
* into the appropriate unit and output a String containing value and unit.
*/
String convertTime(double seconds);
/**
* Update all nonbonded pair-lists.
*/
virtual void update();
/**
* Calculates the score for the current ligand pose.
*/
virtual double updateScore();
/**
* Prints an explanation of the score as obtained by the last call of updateScore() to stdout
* @param detail If true, information about inidividual score-contributions is printed as well as the overview.
*/
virtual void printResult(bool detail = 0);
void getScoreContributions(vector<double>& score_contributions, vector<String>& names);
/**
* Stores the default options of this ScoringFunction in the given Option object.
*/
static void getDefaultOptions(Options& options);
/**
* Returns a string containing the equation of this ScoringFunction (as sum of over all ScoringComponents).
*/
String getEquation();
/**
* Determines whether interactions calculated by this ScoringFunction should be saved to each ligand
* atom a in a->interactions. By default storing of interactions is disabled for new ScoringFunctions.
*/
void enableStoreInteractions(bool b = true);
/**
* Return the name of this ScoringFunction.
*/
String getName();
int getBurialDepthScale();
String valueToString(double value);
/**
* Sets the coefficients of all ScoringComponents to 1 and unsets all transformations.
* This is necessay if obtained scores are to be used for an optimization via regression.
*/
void unsetTrainingParameters();
/**
* Set mean and standard deviation of the experimentally determined binding free energy
* of the used training data set.
*/
void setNormalizationParameters(double stddev, double mean);
const HashGrid3<Atom*>* getHashGrid();
/**
* Returns geometrical center of the current ligand candidate.
*/
const Vector3& getLigandCenter() const;
double getLigandRadius() const;
/**
* Tells whether interactions calculated by this ScoringFunction should be saved to each ligand atom
* a in a->interactions. By default storing of interactions is disabled for new ScoringFunctions.
*/
bool storeInteractionsEnabled();
/**
* Returns the average number of receptor atoms neighboring each ligand atom as determined
* by the last call of update().
*/
virtual int getNoNeighboringReceptorAtoms();
/**
* Return the number of atoms of the current ligand.
*/
int getNoLigandAtoms();
/**
* Return the options set for this scoring function.
*/
Options getOptions();
/**
* Return pointer to the options set for this scoring function.
*/
Options* getOptionsToModify();
/**
* Creates StaticLigandFragments for the current ligand candidate. After this function has been called
* once for the current ligand candidate, conformation energy is only calculated anew between
* inter-fragment atom-pairs of this ligand candidate. This way, the speed of energy/score computation
* can be increased.
*/
void createStaticLigandFragments();
const vector<Bond*>* getRotatableLigandBonds() const;
const vector<StaticLigandFragment*>* getStaticLigandFragments() const;
bool hasFlexibleResidues();
void setFlexibleResidues(const std::set<Residue*>& flexible_residues);
/**
* Assign the given rotamer to the specified residue.\n
* After applying the new rotamer, it is checked whether it overlaps with any other receptor residues.
* If this is the case, the previously used rotamer will re-applied and zero will be returned.
* Else, one will be returned by this function. The hash_grid_ of this ScoringFunction that keeps track
* of all receptor atoms will be automatically updated.
*/
bool assignRotamer(Residue* residue, ResidueRotamerSet* rotamer_set, const Rotamer* rotamer);
/**
* Resets flexible residues to the conformations observed in the input pdb-file.\n
* This does only have any effect if optimization of flexible residues has been
* used before the call of this function.
*/
void resetFlexibleResidues();
/**
* Count the number of receptor atoms that have a distance <= distance_threshold to the specified atom.
* @param onePerCell If true, only one receptor atom within each hashgrid cell will be taken into account,
* i.e. the number of neighboring nonempty cells is counted.
*/
Size countNeighboringReceptorAtoms(const Atom* atom,
double distance_threshold,
bool onePerCell = 0,
int* number_of_overlaps = 0) const;
void resetResiduePositions(Residue* residue, list<Vector3>& old_positions);
/**
* Return the previously calculated score.
*/
double getScore();
const std::map<Atom*, int>* getAtomFragmentMap();
/**
* List holding all ReferenceAreas of the ScoringFunction. \n
* ReferenceAreas can be added/deleted/modified directly by the user and will be used
* during all future calls of updateScore().
*/
list<Constraint*> constraints;
protected:
/* @name Protected structs */
struct Result
{
/**
* Score for the conformation of the current ligand.
*/
double ligand_conformation;
/**
* Score for interaction between ligand and receptor.
*/
double interaction_score;
/**
* One penalty value for each ReferenceArea.
*/
vector<double> refArea_penalties;
};
/**
* Set the name of this ScoringFunction
*/
void setName(String name);
void updateComponent(int id, AtomPairList*);
/**
* Calculates the geometrical center of the given structure
* @param no_ligand_atoms if specified, the number of atoms of the current ligand candidate is saved here.
*/
Vector3 calculateGeometricalCenter(AtomContainer* s, int* no_ligand_atoms = NULL);
/**
* Calculates the radius of a given structure, i.e. the maximal distance from its geometrical center.
*/
double calculateMoleculeRadius(AtomContainer* sys, Vector3& center);
void setupFlexibleResidues_();
/**
* Use the current ligand as reference ligand. Thus, the average number of neighboring target atoms
* per reference ligand atom is calculated and can later be compared to the value for a ligand candidate,
* so that its depth of burial is thereby estimated.
*/
virtual void setupReferenceLigand();
/**
* Check how many of the atom pairs in the given AtomPairVector clash with each other.
*/
int checkForAtomOverlaps(const AtomPairVector* pair_vector);
/**
* Creates a vector of pairs of ligand atoms and receptor atoms (or atoms of additional systems,
* e.g. water molecules).\n
* The structure to which the interactions of the current ligand are to be search is represented by
* the given HashGrid. \n
* The vector of nonbonded atom pairs created by this function is to be used to update the ScoringComponents.
* @param rec_lig determines whether interactions between ligand and receptor are sought. If this is the case, the checks that make sure that two atoms chosen as an atompair are no neighbors and are not identical can be skipped. This way, some time can be saved.
* @param check_fragment if set to true it is is checked whether two atoms are not part of the same StaticLigandFragment
* @param intra_fragment if set to true (and check_fragment == 1), nonbonded interactions between atoms of the _same_ fragment are searched instead. This is used to calculated the energy of all StaticLigandFragments once for each ligand candidate.
* @param overlaps the number of atom overlaps will be added to this value.
*/
AtomPairVector* createNonbondedPairVector(HashGrid3<Atom*>* hashgrid, int& overlaps, bool rec_lig, bool check_fragments = 0, bool intra_fragment = 0);
/**
* Creates nonbonded pairs of ligand atoms. \n
* If StaticLigandFragments are used, only atoms that are part of different StaticLigandFragments are searched.
* This way, time can be saved during updating the ForceFields, since the score/energy _within_ each
* StaticLigandFragments will not change.
* @param intra_fragment if set to true (and check_fragment == 1), nonbonded interactions between atoms of the _same_ fragment are searched instead. \n
* This is used to calculated the energy of all StaticLigandFragments once for each ligand candidate.
* @param overlaps the number of atom overlaps will be added to this value */
AtomPairVector* createLigandNonbondedPairVector(bool intra_fragment, int& overlaps);
bool hasPharmacophoreConstraints_();
/**
* Clears the MolecularInteractions saved for each ligand- and receptor-atom.
*/
void clearStoredInteractions_();
/**
* Calculates penalty-scores for all defined Contraints and returns the sum.
*/
double calculateConstraintsScore();
/**
* Enabled the ScoringComponents of the given types and disables all other ScoringComponents.
* Components that evaluate the intramolecular energy of the ligand will be disabled.
*/
void enableInteractionComponents_(const list<String>& type_names);
virtual double getES();
/**
* Enables all ScoringComponents.
*/
void enableAllComponents_();
/**
* Fetches the StaticLigandFragments starting with a1. \n
* This function is used by createStaticLigandFragments(), so that is does not need to be called directly.
* @param already_processed_atoms a temporary hashmap that will store already processed atoms.
*/
void fetchStaticLigandFragment(Atom* a1, int index);
/**
* Returns the number of covalent bonds of the given atom
* @param threshold if specified, it is only checked whether there are at least so many covalent bonds.
*/
int countCovalentBonds(const Atom* atom, int threshold = -1);
/**
* Calculates _all_ nonbonded pairs of ligand atoms, i.e. _without_ using a cutoff.
* This way much time can be saved (for small+medium sized ligands) because the pairlist of the
* nonbonded comformation component will not be changed by future calls of update() for this ligand.
*/
virtual void createAllLigandNonBondedPairs();
/**
* Calculates the energy within the StaticLigandFragments only!\n
* This needs to be done only once for each ligand candidate.
*/
virtual double calculateStaticLigandFragmentEnergy();
/**
* Determines whether the given bond is a peptide bond and thereby not rotatable.
*/
bool isPeptideBond(const Bond* bond) const;
/**
*Name of the scoring function
*/
String name_;
/**
* Scoring function options
*/
Options options_;
/**
* Receptor to dock in
*/
AtomContainer* receptor_;
/**
* Ligand to dock
*/
AtomContainer* ligand_;
/**
* Overall score of the scoring function
*/
double score_;
/**
* The intercept necessary for calculating the score
*/
double intercept_;
/**
* The base funcion for scoring simple terms
*/
ScoringBaseFunction* base_function_;
/**
* The scoring components used by a particular scoring function (e.g. HBonds, VDW, etc.)
*/
vector<ScoringComponent*> scoring_components_;
/**
* Atoms, for which the setup of the force field fails
*/
HashSet<const Atom*> unassigned_atoms_;
/**
* Max number of unassigned atoms
*/
Size max_number_of_errors_;
/**
* Actual number of counted errors
*/
Size number_of_errors_;
/**
* Radius of the current ligand, i.e. the maximal distance from its geometrical center
*/
double ligand_radius_;
/**
* Number of atoms of the current ligand candidate.
* Value is set by each call of calculateGeometricalCenter()
*/
int ligand_atoms_;
/**
* Geometrical center of the current ligand
*/
Vector3 ligand_center_;
/**
* HashGrid used to find potential interaction partners for a ligand atom.
*/
HashGrid3<Atom*>* hashgrid_;
HashGrid3<Atom*>* all_residues_hashgrid_;
HashGrid3<Atom*>* static_residues_hashgrid_;
HashGrid3<Atom*>* flexible_residues_hashgrid_;
/**
* Resolution that was specified by use of the Options object in the constructor.
*/
double resolution_;
/**
* Maps each ligand atom to its StaticLigandFragments (if StaticLigandFragments have been calculated).
*/
std::map<Atom*, int> atoms_to_fragments_;
/**
* Average number of interactions per atom of a reference ligand within a small radius.
* This is used to estimate the depth of burial of the ligand (candidate).
*/
int reference_neighbors_;
/**
* Average number of target atoms within a distance of 'neighbor_cutoff' Angstroem of a ligand atom. \n
* the value is calculated during each call of createNonBondedPairList().
*/
int neighboring_target_atoms_;
/**
* Number of ligand atoms that were found to be lying outside of hash_grid_,
* as determined by the last call of createNonBondedPairList().
*/
int misplaced_ligand_atoms_;
/**
* Number of boxes around a ligand atom that are to be searched.
*/
int hashgrid_search_radius_;
/**
* Cutoff value for nonbonded energy.
*/
double nonbonded_cutoff_;
/**
* Squared cutoff value for nonbonded energy.
*/
double nonbonded_cutoff_2_;
/**
* Determines whether an overlap between two Hydrogen atoms should be considered a sterical clash.
*/
bool ignore_h_clashes_;
/**
* Number of overlapping receptor-ligand atom pairs as determined by the last call of update().
*/
int overlaps_;
/**
* Number of overlapping ligand atom pairs as determined by the last call of update().
*/
int ligand_intramol_overlaps_;
/**
* Allowed overlap in Angstroem for two atoms of two different molecules
* (used since even in many crystal structures, some atoms overlap minimally).
*/
double allowed_intermolecular_overlap_;
/**
* Allowed overlap in Angstroem for two atoms of the same molecule
* (used since even in many crystal structures, some atoms overlap minimally).
*/
double allowed_intramolecular_overlap_;
/**
* Number of target atoms within this squared distance of ligand atoms are used to approximate
* the depth of burial of the ligand.
*/
double neighbor_cutoff_2_;
/** contains the static fragments of the current ligand candidate.\n
* The conformation of each ligand is not changed during docking; only the position of fragments in
* relation to each other is modified.\n
* Thus, if static_ligand_fragments_ is not empty, createNonBondedPairList()
* will automatically search only for inter-fragment atom-pairs and ligand-receptor pairs,
* but not for intra-fragment pairs.
*/
vector<StaticLigandFragment*> static_ligand_fragments_;
/**
* Determines whether interactions calculated by this ScoringFunction should be saved
* to each ligand atom a in a->interactions.\n
* By default this is disabled for new ScoringFunctions.
*/
bool store_interactions_;
bool store_interactions_phC_only_;
/**
* All nonbonded pairs of the current ligand. Calculated without cutoff by createAllLigandNonBondedPairs().
*/
AtomPairVector* all_ligand_nonbonded_;
/**
* Allows scaling down the contribution of the conformational energy of the ligand to the overall score.
*/
double conformation_scale_;
/**
* see Default::ALL_LIG_NONB_PAIRS
*/
bool use_all_lig_nonb_;
/**
* see Default::USE_STATIC_LIG_FRAGMENTS
*/
bool use_static_lig_fragments_;
int burial_depth_scale_;
/**
* Standard deviation of the experimentally determined binding free energy of the used training data set.
*/
double exp_energy_stddev_;
/**
* Mean of the experimentally determined binding free energy of the used training data set.
*/
double exp_energy_mean_;
std::set<Residue*> flexible_residues_;
/**
* Saves the final and all intermediate results of the last call of updateScore().
*/
Result result_;
/**
* Energy of the StaticLigandFragments. Is calculated once for each ligand candidate by createStaticLigandFragments().
*/
double static_ligand_energy_;
/**
* Rotatable bonds of the current ligand molecule.
* They are calculated by the function createStaticLigandFragments().
*/
vector<Bond*> rotatable_ligand_bonds_;
/**
* Original positions of all atoms of all flexible residues,
* i.e. as they appear in the input receptor object.
*/
list<list<Vector3> > flexres_org_positions_;
};
} // namespace BALL
#endif // BALL_SCORING_COMMON_SCORINGFUNCTION_H
|