-
Notifications
You must be signed in to change notification settings - Fork 2
/
MICDeepDP.h
45 lines (39 loc) · 1.11 KB
/
MICDeepDP.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
42
43
44
45
#ifndef __MIC_DEEP_DP_H__
#define __MIC_DEEP_DP_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <time.h>
#include <omp.h>
#include "MIC-SRAAlgnmt.h"
#include "MIC-PEAlgnmt.h"
#include "MIC-DPAlgnmt.h"
#define MIC_DEEP_DP_SEED_PAIR_LIMIT 2
// -----------------------------
// Debug Flag
// -----------------------------
// Define to print output message on stdout
// Not advisable for data set larger than 1
//#define MIC_DP_DEBUG_PRINT_SEED_MATCHING
__attribute__((target(mic)))
int MICDeepDP(
MICPEArguments * peSeedArgs,
unsigned int * peOutputBuffer,
MICSRAOccMetadata * peMetaBuffer,
MICSRAArguments * readArgs,
MICSRAArguments * mateArgs,
MICSRAArguments * readSeedSRAArgs,
MICSRAArguments * mateSeedSRAArgs,
CPTSRAModel * cpPModels,
CPTSRAModel * cpNModels,
HSP * hsp,
DPWorkMIC * dpWork,
double seedLength,
double seedOverlap,
double orphanTrigger,
double dpScoreTF,
int seedOccLimit,
MICDPOccurrence * dpOcc);
#endif