mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-23 01:58:12 +08:00
28 lines
335 B
C++
28 lines
335 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;
|
|
|
|
init_kseq(read_file_name);
|
|
|
|
|
|
|
|
///Counting();
|
|
Counting_multiple_thr();
|
|
|
|
|
|
|
|
destory_kseq();
|
|
|
|
|
|
return 1;
|
|
}
|