biocore / Platypus-Conquistador

Confirming specific taxonomic groups within your samples.
Other
19 stars 5 forks source link

platypus_compare.py consistency #5

Closed jwdebelius closed 9 years ago

jwdebelius commented 10 years ago

Line 108-110 of platypus calls process_results from platypus/parse.py using 7 arguments:

results = process_results(percentage_ids, alignment_lengths,
        percentage_ids_other, alignment_lengths_other, best_hits, 
        input_path_interest, input_path_other)

But, the original function in platypus.parse only takes 5 arguments:

def process_results(percentage_ids, alignment_lengths, percentage_ids_other,
                    alignment_lengths_other, best_hits):

When input_path_interest and input_path_other are commented out, the code runs without error.