I am writing a program that reads a file of amino acids and calculates their variances. I am having a hard time getting the variances to print out correctly. I designed the for loop to go from 1-21, but the loop only prints 0-10 and then never stops. Please help!
Here is the while loop that has the for loops nested in it.
while ((l = kseq_read(seq)) >= 0)/*this loop reads in file per gene*/{
fprintf(file2,"%s,", seq->name.s); //this prints out the name of the gene for which the statistics belong
for (k=0; seq->seq.s[k] !='\0'; k++) {//this loop uses my switch function to change the letter character to an index
amino[assign((char)(seq->seq.s[k]))]++;
}
/*for (k=1; k<AA; k++){//this loop is just for debugging and AA=22 (static const int)
printf("Frequency of %d is %d\n",k,amino[k]);
}*/
for (k=1; k < AA; k++){ //<<<---THIS IS THE LOOP THAT WON'T GO TO COMPLETION BUT CONTINUES INFINITELY
var[k]=variance(amino[k], total_avg[k], aa);//this uses my function to calculate the variance, it seems to be working correctly
printf("Variance of %d = %lf\n", k, var[k]);//when this prints out, it is not going from 1-21, it goes from 0-10 forever
//fprintf(file2, "Variance of %d = %lf\n", k, var[k]);
}
//amino[i]=0;
}
fclose(file2); /*done!*/
printf("return value: %d\n", l);
kseq_destroy(seq);
gzclose(fp);
return 0;
}