mapgd  0.4
A program for the Maximum-likelihood analysis of population genomic data.
 All Data Structures Functions Variables Friends Groups Pages
proview.h
1 #ifndef _PROVIEW_H_
2 #define _PROVIEW_H_
3 
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <ctype.h>
7 #include <string.h>
8 #include <math.h>
9 #include <vector>
10 #include <iostream>
11 #include <fstream>
12 
13 #include "interface.h"
14 #include "stream_tools.h"
15 #include "map_file.h"
16 #include "locus.h"
17 #include "sample_name.h"
18 #include "bcf2pro_file.h"
19 #include "region.h"
20 
21 #define SQRT2 1.41421356237
22 
24 struct Args{
25  float_t pvalue;
26  int min;
27  bool pro;
28  bool binary;
29 };
30 
34 int proview(int argc, char *argv[]);
37 #endif
Struct to pass around command line arguments. Will either be depricated, or will be integreated into ...
Definition: proview.h:24