Skip to content

Commit

Permalink
Merge pull request #90 from andrewjpage/master
Browse files Browse the repository at this point in the history
typo in method, too many args
  • Loading branch information
andrewjpage committed Jul 10, 2013
2 parents 530839a + b6a7449 commit 0faea3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/branch_sequences.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 0faea3e

Please sign in to comment.