Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/EDIT4/ED4_protein_2nd_structure.cxx

    r6100 r6141  
    636636 *                         #BETA_TURN and #STRUCTURE_SUMMARY, in this order) 
    637637 *  \param[in]  length     Size of \a sequence and \a structures[i] 
    638  *  \return     Error description, if an error occured; 0 otherwise 
     638 *  \return     Error description, if an error occurred; 0 otherwise 
    639639 *  
    640640 *  This function predicts the protein secondary structures from the amino acid 
     
    676676 *  \param[out] structure Predicted secondary structure summary 
    677677 *  \param[in]  length    Size of \a sequence and \a structure 
    678  *  \return     Error description, if an error occured; 0 otherwise 
     678 *  \return     Error description, if an error occurred; 0 otherwise 
    679679 * 
    680680 *  Basically the same as 
     
    882882                        // map to match characters and store in result_buffer 
    883883                        int prob_normalized = ED4_pfold_round_sym(prob * 9); 
    884                         //e4_assert(prob_normalized >= 0 && prob_normalized <= 9); // if this happens check if normalization is correct or some undefined charachters mess everything up 
     884                        //e4_assert(prob_normalized >= 0 && prob_normalized <= 9); // if this happens check if normalization is correct or some undefined characters mess everything up 
    885885                        char prob_symbol = *pair_chars[STRUCT_UNKNOWN]; 
    886886                        if (prob_normalized >= 0 && prob_normalized <= 9) {