mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 20:57:57 +08:00
18 lines
336 B
C++
18 lines
336 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);
|
|
|
|
return 1;
|
|
}
|