Changeset 8321 for trunk

Show
Ignore:
Timestamp:
23/12/11 12:44:43 (5 months ago)
Author:
westram
Message:
  • the daily wtf
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/RNACMA/Cma.h

    r7896 r8321  
    3737typedef vector<map<int, int> > MapVecType; 
    3838// Vector of vectors to store the aligned sequences (each one represented by a vector) 
    39 typedef vector<vector<string> > VecVecType; 
     39typedef vector<vector<string> > VecVecType; // @@@ string always is length 1. this should be vector<vector<char>> or vector<string> 
    4040// Matrix of maps to store the joint histogram of sequences. 
    4141typedef vector<MapVecType> MapMatrixType; 
     
    6464     * The alphabet considered. 
    6565     */ 
    66     vector<string> alphabet; 
     66    vector<string> alphabet; // @@@ string always is length 1. this should be vector<char> 
    6767    /** 
    6868     * A map from alphabet letters to integers. This speeds things considerably up, 
    6969     * and we use less memory. 
    7070     */ 
    71     map<string, int> alphabet_map; 
     71    map<string, int> alphabet_map; // @@@ string is length 1 most of the time, disregarding alphabet_map["total"] which is used as global counter. this should be vector<char> 
    7272    /** 
    7373     * The number of sequences in the MSA.