File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class MinimizerMapper : public AlignerClient {
75
75
76
76
// If an extension's score is smaller than the best extension's score by
77
77
// more than this much, don't align it
78
- int extension_score_threshold = 0 ;
78
+ int extension_score_threshold = 1 ;
79
79
80
80
size_t max_multimaps = 1 ;
81
81
size_t distance_limit = 1000 ;
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ void help_gaffe(char** argv) {
62
62
<< " -a, --max-alignments INT align up to INT extensions [8]" << endl
63
63
<< " -s, --cluster-score INT only extend clusters if they are within cluster-score of the best score" << endl
64
64
<< " -u, --cluster-coverage FLOAT only extend clusters if they are within cluster-coverage of the best read coverage" << endl
65
- << " -v, --extension-score INT only align extensions if their score is within extension-score of the best score" << endl
65
+ << " -v, --extension-score INT only align extensions if their score is within extension-score of the best score [1] " << endl
66
66
<< " -w, --extension-set INT only align extension sets if their score is within extension-set of the best score" << endl
67
67
<< " -O, --no-dp disable all gapped alignment" << endl
68
68
<< " --track-provenance track how internal intermediate alignment candidates were arrived at" << endl
@@ -113,7 +113,7 @@ int main_gaffe(int argc, char** argv) {
113
113
// Throw away extension sets with scores that are this amount below the best
114
114
double extension_set = 0 ;
115
115
// Throw away extensions with scores that are this amount below the best
116
- int extension_score = 0 ;
116
+ int extension_score = 1 ;
117
117
// What sample name if any should we apply?
118
118
string sample_name;
119
119
// What read group if any should we apply?
You can’t perform that action at this time.
0 commit comments