File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ int main(int argc, char** argv)
105105(" greedy-length" , " greedily select a non-overlapping alignment set based on alignment length" )
106106(" greedy-E" , " greedily select a non-overlapping alignment set based on E-value" )
107107(" greedy-score" , " greedily select a non-overlapping alignment set based on alignment score" )
108+ (" no-colinear-chaining" , " do not run colinear chaining and align as in GraphAligner, default parameters" )
108109;
109110
110111boost::program_options::options_description cmdline_options;
@@ -194,6 +195,9 @@ int main(int argc, char** argv)
194195if (vm.count (" fast-mode" ))
195196params.fastMode = true ;
196197
198+ if (vm.count (" no-colinear-chaining" ))
199+ params.colinearChaining = false ;
200+
197201if (params.colinearChaining )
198202{
199203params.alignmentSelectionMethod = AlignmentSelection::SelectionMethod::All;
You can’t perform that action at this time.
0 commit comments