Skip to content

Commit

Permalink
Corrected starting index
Browse files Browse the repository at this point in the history
  • Loading branch information
gkarthik committed Aug 16, 2023
1 parent a9c1595 commit 88241e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dr/app/tools/TransmissionChainSummarizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private void closeOutputFile(PrintStream ps) {
}

private HashMap<String, Integer> createAndPrintIdMap(Tree tree){
int k = 1;
int k = 0;
int taxonCount = tree.getTaxonCount();
List<String> names = new ArrayList<String>();
for (int i = 0; i < tree.getTaxonCount(); i++) {
Expand Down

0 comments on commit 88241e6

Please sign in to comment.