00001 00003 // 00004 // This file is part of the MADELINE 2 program 00005 // written by Edward H. Trager and Ritu Khanna 00006 // Copyright (c) 2005 by the 00007 // Regents of the University of Michigan. 00008 // All Rights Reserved. 00009 // 00010 // The latest version of this program is available from: 00011 // 00012 // http://eyegene.ophthy.med.umich.edu/madeline/ 00013 // 00014 // Released under the GNU General Public License. 00015 // A copy of the GPL is included in the distribution 00016 // package of this software, or see: 00017 // 00018 // http://www.gnu.org/copyleft/ 00019 // 00020 // ... for licensing details. 00021 // 00023 // 00024 // ColumnTypes.h 00025 // 00026 // 2005.04.15.ET.RK 00027 // 00028 00029 #ifndef DATAYTYPES_INCLUDED 00030 #define DATAYTYPES_INCLUDED 00031 00032 enum DATATYPE { 00033 ANY=0x0000, 00034 BOOLEAN=0x0001, 00035 DATE=0x0002, 00036 GENDER=0x0004, 00037 ALLELE=0x0008, 00038 GENOTYPE=0x0010, 00039 HAPLOTYPE=0x0020, 00040 NUMBER=0x0040, 00041 STRING=0x0080, 00042 AFFECTED=0x0100, 00043 SAMPLED=0x0200, 00044 PROBAND=0x0400, 00045 LIVINGDEAD=0x0800, 00046 TWIN=0x1000, 00047 UNCLASSIFIED=0x2000, // Column has not yet been scanned ... 00048 MISSING=0x4000 // Column has been scanned and still found empty/missing ... 00049 }; 00050 00051 #endif
1.4.4