mapgd  0.4
A program for the Maximum-likelihood analysis of population genomic data.
 All Data Structures Functions Variables Friends Groups Pages
datatypes.h
1 /* This file should include all data types that are supported for
2  * reading and writing to files. Indexed files need to have the id0
3  * and id1 members (which specify their positions in the reference)
4  * and all data types need a table_name, file_name, header(), >>,
5  * <<, size(), and a constructor from column names. See map_file.cc
6  */
7 
8 #ifndef DATA_TYPES_H_
9 #define DATA_TYPES_H_
10 
11 #include "data_types/data.h"
12 #include "raw/quartet.h"
13 #include "raw/genotype.h"
14 #include "data_types/locus.h"
15 #include "data_types/allele.h" //FORMALLY Allele.
16 #include "data_types/pooled_data.h" //FORMALLY Allele.
17 #include "data_types/sample_name.h" //FORMALLY Allele.
18 #include "data_types/linkage_data.h"
19 #include "data_types/key.h"
20 #include "data_types/phenotype.h"
21 
22 #endif