Skip to content

Commit 97e74f4

Browse files
I added #include <getopt.h> to two files and #include <unistd.h> to msa.cc. (#20)
1 parent 7b61f32 commit 97e74f4

3 files changed

+3
-2
lines changed

detect_collinear_tandem_arrays.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "detect_collinear_tandem_arrays.h"
2-
2+
#include <getopt.h>
33
void read_gff(char* path)
44
{
55
if (!ifstream(path))

dissect_multiple_alignment.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "dissect_multiple_alignment.h"
2-
2+
#include <getopt.h>
33
void read_gff(char* path)
44
{
55
if (!ifstream(path))

msa.cc

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* This is the new code for generating and printing multiple alignment based on progressive alignment
33
*/
44
#include "msa.h"
5+
#include <unistd.h>
56

67
static vector <New_endpoint> endpoints;
78
int max_level;

0 commit comments

Comments
 (0)