// Read the data (first line comes from header analysis)
nLines = *nParam + 1;
while ( !feof(bayes) && !ferror(bayes) )
{
// Test for line too long
if ( strlen(line) + 1 == LINESIZE )
{
fprintf(stderr, "ERROR: while reading bayes.dat line %ld. Increase LINESIZE(current value is=%d) to match the line size in bayes.dat.\n", nLines, LINESIZE);