forked from thegenemyers/DALIGNER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter.h
37 lines (27 loc) · 912 Bytes
/
filter.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
/*******************************************************************************************
*
* Filter interface for the dazzler.
*
* Author: Gene Myers
* Date : July 2013
*
********************************************************************************************/
#ifndef _FILTER
#define _FILTER
#include "DB.h"
#include "align.h"
extern int BIASED;
extern int VERBOSE;
extern int MINOVER;
extern int HGAP_MIN;
extern int SYMMETRIC;
extern int IDENTITY;
extern char *SORT_PATH;
extern uint64 MEM_LIMIT;
extern uint64 MEM_PHYSICAL;
void Set_Filter_Params(int kmer, int binshift, int suppress, int hitmin, int nthreads);
void *Sort_Kmers(DAZZ_DB *block, int *len);
void Match_Filter(char *aname, DAZZ_DB *ablock, char *bname, DAZZ_DB *bblock,
void *atable, int alen, void *btable, int blen, Align_Spec *asettings);
void Clean_Exit(int val);
#endif