mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-22 02:08:12 +08:00
14 lines
305 B
C
14 lines
305 B
C
#ifndef __ASSEMBLY__
|
|
#define __ASSEMBLY__
|
|
#include "CommandLines.h"
|
|
|
|
#define FORWARD 0
|
|
#define REVERSE_COMPLEMENT (0x8000000000000000)
|
|
|
|
#define Get_Cigar_Type(RECORD) (RECORD&3)
|
|
#define Get_Cigar_Length(RECORD) (RECORD>>2)
|
|
|
|
void Overlap_calculate_multipe_thr();
|
|
void Correct_Reads(int last_round);
|
|
#endif
|