comparison genome_diversity/src/admix_prep.c @ 24:248b06e86022

Added gd_genotype datatype. Modified tools to support new datatype.
author Richard Burhans <burhans@bx.psu.edu>
date Tue, 28 May 2013 16:24:19 -0400
parents 2c498d40ecde
children
comparison
equal deleted inserted replaced
23:66a183c44dd5 24:248b06e86022
15 */ 15 */
16 16
17 #include "lib.h" 17 #include "lib.h"
18 18
19 // bounds line length for a line of the Galaxy table 19 // bounds line length for a line of the Galaxy table
20 #define MOST 5000 20 #define MOST 50000
21 struct individual { 21 struct individual {
22 int column; 22 int column;
23 char *name; 23 char *name;
24 } I[MOST/8]; // each individual has 4 columns and 4 tab characters 24 } I[MOST/8]; // each individual has 4 columns and 4 tab characters
25 int nI; // number of individuals 25 int nI; // number of individuals