Skip to content

Commit

Permalink
Enabled mergeMost=True in reformat_results() to make checks less sens…
Browse files Browse the repository at this point in the history
…itive to gapping. Note that since 'correct' test results haven't been updated accordingly yet, for now all this does is make most tests fail
  • Loading branch information
Marek Szuba committed Jun 11, 2009
1 parent 4e17e5b commit 552b9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/blast_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def check_results_relaxed_blastx(results, correct, formatter, delta=0.01,
def reformat_results(results, formatter):
reffed = []
for result in results:
for t in result.edges():
for t in result.edges(mergeMost=True):
reffed.append(formatter(t))
reffed.sort()
return reffed
Expand Down

0 comments on commit 552b9de

Please sign in to comment.