mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 12:47:57 +08:00
20 lines
364 B
C++
20 lines
364 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "CommandLines.h"
|
|
#include "Process_Read.h"
|
|
#include "Assembly.h"
|
|
#include "Levenshtein_distance.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
init_opt(&asm_opt);
|
|
|
|
if (!CommandLine_process(argc, argv, &asm_opt)) return 1;
|
|
|
|
Correct_Reads(asm_opt.number_of_round);
|
|
|
|
destory_opt(&asm_opt);
|
|
|
|
return 0;
|
|
}
|