mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 07:10:24 +08:00
33 lines
852 B
C++
33 lines
852 B
C++
// $Id: granthamChemicalDistances.h 962 2006-11-07 15:13:34Z privmane $
|
|
|
|
#ifndef ___GRANTHAM_CHEMICAL_DISTANCES
|
|
#define ___GRANTHAM_CHEMICAL_DISTANCES
|
|
|
|
#include "definitions.h"
|
|
|
|
class granthamChemicalDistances {
|
|
public:
|
|
explicit granthamChemicalDistances();
|
|
MDOUBLE getGranthamDistance(const int aa1,const int aa2) const ;
|
|
MDOUBLE getGranthamPolarityDistance(const int aa1,const int aa2) const;
|
|
MDOUBLE getGranthamPolarity(const int aa1) const;
|
|
virtual ~granthamChemicalDistances() {}
|
|
|
|
MDOUBLE getHughesChargeDistance(const int aa1,const int aa2) const;// page 520
|
|
MDOUBLE getHughesPolarityDistance(const int aa1,const int aa2) const;// page 520
|
|
MDOUBLE getHughesHydrophobicityDistance(const int aa1,const int aa2) const;// page 520
|
|
|
|
|
|
private:
|
|
|
|
// private members:
|
|
MDOUBLE GranChemDist[20][20];
|
|
MDOUBLE GranPolarityTable[20];
|
|
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|