From b6a7449f4aed69970ccec3e445f75183081d2e5b Mon Sep 17 00:00:00 2001 From: andrewjpage Date: Wed, 10 Jul 2013 16:17:20 +0100 Subject: [PATCH] too many args --- src/branch_sequences.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/branch_sequences.c b/src/branch_sequences.c index 78f1f079..ac2d49ce 100644 --- a/src/branch_sequences.c +++ b/src/branch_sequences.c @@ -672,7 +672,7 @@ void move_blocks_inwards_while_likelihood_improves(int number_of_blocks,int ** b while(current_start < current_end && block_snp_count >= min_snps && block_snp_count >= cutoff_value && block_genome_size_without_gaps > MIN_WINDOW_SIZE) { next_start_position++; - next_start_position = advance_window_start_to_next_snp(next_start_position, snp_site_coords, branch_snp_sequence, number_of_branch_snps,start_index,end_index); + next_start_position = advance_window_start_to_next_snp(next_start_position, snp_site_coords, branch_snp_sequence, number_of_branch_snps); if(next_start_position >= current_end) {