/* * dcidentwrite.c Jim Piper 31-09-88 * * Dicentric finding system - write identification results * * The input parameters are the "chromcands" structure for the current object, * the number of objects, the input file name, and the monitoring file. * * MODIFICATIONS * ------------- */ #include #include #include dcidentwrite(chc,number,cell,pf) struct chromcands *chc; FILE *pf; char *cell; { int i; for (i=0; ibtype&DICENTRIC) { if (chc->Cbtype&DICENTRIC) fprintf(pf,"TP %2d %s\n",chc->number,cell); else fprintf(pf,"FP %2d %s\n",chc->number,cell); } else if (chc->Cbtype&DICENTRIC) { fprintf(pf,"FN %2d %s\n",chc->number,cell); } } }