forked from PacificBiosciences/DALIGNER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter.h
35 lines (26 loc) · 887 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
/*******************************************************************************************
*
* 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 uint64 MEM_LIMIT;
extern uint64 MEM_PHYSICAL;
int Set_Filter_Params(int kmer, int binshift, int suppress, int hitmin, int nthreads);
void *Sort_Kmers(HITS_DB *block, int *len);
void Match_Filter(char *aname, HITS_DB *ablock, char *bname, HITS_DB *bblock,
void *atable, int alen, void *btable, int blen,
int comp, Align_Spec *asettings);
#endif