Skip to content

Commit

Permalink
fix leftover from debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
fungs committed Apr 5, 2016
1 parent 8f14e47 commit a805682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taxator.cpp
Expand Up @@ -305,7 +305,7 @@ int main( int argc, char** argv ) {
// choose appropriate prediction model from command line parameters
//TODO: "address of temporary warning" is annoying but life-time is guaranteed until function returns
if( algorithm == "dummy" ) doPredictions( &DummyPredictionModel< RecordSetType >( tax.get() ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
else if( algorithm == "simple-lca" ) doPredictions( &MeganLCAPredictionModel< RecordSetType >( tax.get() ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
else if( algorithm == "simple-lca" ) doPredictions( &LCASimplePredictionModel< RecordSetType >( tax.get() ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
else if( algorithm == "megan-lca" ) doPredictions( &MeganLCAPredictionModel< RecordSetType >( tax.get(), ignore_unclassified, toppercent, minscore, minsupport, maxevalue ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
else if( algorithm == "ic-megan-lca" ) doPredictions( &MeganLCAPredictionModel< RecordSetType >( tax.get(), ignore_unclassified, toppercent, minscore, minsupport, maxevalue ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
else if( algorithm == "n-best-lca" ) doPredictions( &NBestLCAPredictionModel< RecordSetType >( tax.get(), nbest ), *seqid2taxid, tax.get(), split_alignments, alignments_sorted, logsink, number_threads );
Expand Down

0 comments on commit a805682

Please sign in to comment.