-
Notifications
You must be signed in to change notification settings - Fork 9
/
map.h
41 lines (29 loc) · 982 Bytes
/
map.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************************
*
* Filter interface for the dazzler.
*
* Author: Gene Myers
* Date : July 2013
*
********************************************************************************************/
#ifndef _FILTER
#define _FILTER
#include "DB.h"
#include "align.h"
extern int VERBOSE;
extern int PROFILE;
extern int SPACING;
extern double BEST_TIE;
extern char *SORT_PATH;
extern uint64 MEM_LIMIT;
extern uint64 MEM_PHYSICAL;
int Set_Filter_Params(int kmer, int suppress, int nthreads);
void *Sort_Kmers(DAZZ_DB *block, int *len);
void Match_Filter(DAZZ_DB *ablock, DAZZ_DB *bblock,
void *atable, int alen, void *btable, int blen, int comp, int start);
#define FLAG_DOA 0x1
#define FLAG_DOB 0x2
void Reporter(char *aname, DAZZ_DB *ablock, char *bname, DAZZ_DB *bblock,
Align_Spec *asettings, int mflag);
void Clean_Exit(int val);
#endif