Files
hifiasm/main.cpp
2019-05-12 04:03:54 -04:00

38 lines
748 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#include <stdio.h>
#include <stdlib.h>
#include "CommandLines.h"
#include "Process_Read.h"
#include "Assembly.h"
/********************************for debug***************************************/
///使用这个函数的时候必须把Counting_multiple_thr()里的destory_Total_Count_Table(&TCB)注释掉
void debug_Counting()
{
init_kseq(read_file_name);
Verify_Counting();
fprintf(stderr, "debug over!\n");
destory_kseq();
}
int main(int argc, char *argv[])
{
if (!CommandLine_process(argc, argv))
return 1;
init_kseq(read_file_name);
fprintf(stdout, "k-mer length: %d\n",k_mer_length);
///Counting();
Counting_multiple_thr();
destory_kseq();
///debug_Counting();
return 1;
}