Skip to content

Commit

Permalink
Fix iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Apr 23, 2024
1 parent 000a04a commit 288ecd0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/branch_sequences.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ void generate_branch_sequences(newick_node *node, FILE *vcf_file_pointer,int * s

// Move on to next child
child = child->next;
++child_counter;
}

// Fill in gaps from children
Expand Down Expand Up @@ -392,7 +393,7 @@ void generate_branch_sequences(newick_node *node, FILE *vcf_file_pointer,int * s

// Deallocate memory for child_sequences
free(child_sequences);

}

// Store node sequence
Expand Down

0 comments on commit 288ecd0

Please sign in to comment.