forked from DavidsonGroup/flexiplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for speed. Major changes: i) second alignment of primer added …
…so that start position of barcode is more refined, this change alters the output compared to the previous version, ii) search for exact match of barcode sequence against known barcodes (much faster for low error reads as this is just a hash look up, ii) switch barcode alignment again to known list from edlib to custom dynamic programming function (faster by ~30%, with exactly the same output). see Martinsos/edlib#144
- Loading branch information
1 parent
f412fed
commit a2dc160
Showing
3 changed files
with
115 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
|
||
|
||
CC=g++ | ||
|
||
#GPROF=/opt/homebrew/Cellar/gperftools/2.9.1_1 | ||
|
||
all: flexiplex | ||
|
||
flexiplex: flexiplex.c++ | ||
${CC} $^ -O3 -std=c++11 -o $@ edlib-1.2.7/edlib.cpp -I edlib-1.2.7/ | ||
${CC} $^ -Ofast -std=c++11 -o $@ edlib-1.2.7/edlib.cpp -I edlib-1.2.7/ | ||
|
||
clean: | ||
rm flexiplex |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters