Files
hifiasm/main.cpp
Haoyu Cheng 0b209dd1e9 Input reads
2019-05-10 00:11:19 -04:00

29 lines
384 B
C++

#include <stdio.h>
#include <stdlib.h>
#include "CommandLines.h"
#include "Process_Read.h"
#include "Assembly.h"
int main(int argc, char *argv[])
{
if (!CommandLine_process(argc, argv))
return 1;
if (!initiReadAllReads(read_file_name))
{
fprintf(stdout, "Cannot open read files. \n");
return 1;
}
Counting();
return 1;
}