void printAllHistograms()
{
htmlParagraph("Frequency Counts of 5' Ends of Exons:");
printHis(preHis);
htmlParagraph("Frequency Counts of Intron Starts:");
printHis(startHis);
htmlParagraph("Frequency Counts of Intron Ends:");
printHis(endHis);
htmlParagraph("Frequency Counts of 3' Ends of Exons:");
printHis(postHis);
}
Esempio n. 2
0
void printAllHistograms(FILE *f)
/* Print all frequency histograms. */
{
fprintf(f, "Frequency Counts of 5' Ends:\n");
printHis(f, hist5, exSize-7, 14);
fprintf(f, "Frequency Counts of 3' Ends:\n");
printHis(f, hist3, inSize-7, 14);

#ifdef USUAL
fprintf(f, "Frequency Counts of 5' Ends of Exons:\n");
printHis(f, hist5, 0, exSize);
fprintf(f, "Frequency Counts of Intron Starts:\n");
printHis(f, hist5, exSize, inSize);
fprintf(f, "Frequency Counts of Intron Ends:\n");
printHis(f, hist3, 0, inSize);
fprintf(f, "Frequency Counts of 3' Ends of Exons:\n");
printHis(f, hist3, inSize, exSize);
#endif
}