Skip to content

Commit

Permalink
Merge pull request #244 from steineggerlab/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
martin-steinegger committed Feb 19, 2024
2 parents f629bbe + 6b1dd70 commit 38e5e93
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 191 deletions.
11 changes: 4 additions & 7 deletions src/strucclustutils/createcomplexreport.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,17 @@ const double MAX_ASSIGNED_CHAIN_RATIO = 1.0;
const double TOO_SMALL_MEAN = 1.0;
const double TOO_SMALL_CV = 0.1;
const double FILTERED_OUT = 0.0;
const unsigned int UNCLUSTERED = 0;
const unsigned int CLUSTERED = 1;
const unsigned int MIN_PTS = 2;
const bool UNCLUSTERED = false;
const bool CLUSTERED = true;
const float BIT_SCORE_MARGIN = 0.7;
const float DEF_BIT_SCORE = -1.0;
const int UNINITIALIZED = 0;
const float LEARNING_RATE = 0.1;
const float DEFAULT_EPS = 0.1;
const unsigned int MULTIPLE_CHAINED_COMPOLEX = 2;
const unsigned int MULTIPLE_CHAINED_COMPLEX = 2;
typedef std::pair<std::string, std::string> compNameChainName_t;
typedef std::map<unsigned int, unsigned int> chainKeyToComplexId_t;
typedef std::map<unsigned int, std::vector<unsigned int>> complexIdToChainKeys_t;
typedef std::vector<unsigned int> cluster_t;
typedef std::map<std::pair<unsigned int, unsigned int>, double> distMap_t;
typedef std::map<std::pair<unsigned int, unsigned int>, float> distMap_t;
typedef std::string resultToWrite_t;
typedef std::string chainName_t;
typedef std::pair<unsigned int, resultToWrite_t> resultToWriteWithKey_t;
Expand Down
Loading

0 comments on commit 38e5e93

Please sign in to comment.