#ifndef _GENERR_H #define _GENERR_H 1 /* Output from p2c, the Pascal-to-C translator */ /* From input file "ilink.p" */ /* This file contains definitions for a modified version of the ILINK program*/ /* The modifications are described in the papers: */ /* R. W. Cottingham, Jr., R. M. Idury, and A. A. Schaffer */ /* Faster Sequential Genetic Linkage Computations */ /* American Journal of Human Genetics, 53(1993), pp. 252-263*/ /* and A. A. Schaffer, S. K. Gupta, K. Shriram, and R. W. Cottingham, Jr., */ /* Avoiding Recomputation in Linkage Analysis, */ /* Human Heredity 44(1994), pp. 225-237. */ #ifndef rate #define rate 0.01 /* ERROR RATE */ #endif #ifndef prettyout /* Set to 1 to print test statistics */ #define prettyout 1 /* in decreasing order */ #endif int NewPene, iplace, jplace, totalgenotypes, nrepplace,nrep; int pedind[maxped]; double ErrorRate, personunk[maxlocus][maxind]; double altlocuspen[maxlocus][maxall+1][maxall][3][maxliab]; double lhdiff[maxlocus][maxind]; #endif