mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-27 18:58:11 +08:00
15 lines
255 B
C
15 lines
255 B
C
#ifndef __COMMAND_LINE_PARSER__
|
|
#define __COMMAND_LINE_PARSER__
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
extern char* read_file_name;
|
|
extern char* output_file_name;
|
|
extern int thread_num;
|
|
extern int k_mer_length;
|
|
|
|
|
|
int CommandLine_process (int argc, char *argv[]);
|
|
|
|
#endif |