Skip to content

Commit 2ec749c

Browse files
jtarragajtarraga
jtarraga
authored and
jtarraga
committed
Computes CIGAR code for seeds, and extends seeds first to the left-side, and then ,to the right-side (for an efficient CIGAR generatiion)
1 parent 1e06c30 commit 2ec749c

File tree

7 files changed

+856
-768
lines changed

7 files changed

+856
-768
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
*.gch
77
*~
88

9+
*.OLD
10+
911
# Build folders
1012
bin/*
1113
build/*

src/dna/dna_aligner.c

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#include "dna_aligner.h"
22
//--------------------------------------------------------------------
33

4+
#ifdef _VERBOSE
5+
extern int num_dup_reads;
6+
extern int num_total_dup_reads;
7+
#endif
8+
49
//--------------------------------------------------------------------
510
// main
611
//--------------------------------------------------------------------

0 commit comments

Comments
 (0)