Skip to content

Commit

Permalink
Fixed typo in tips_in_gene_trees.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ang037 authored Jul 10, 2024
1 parent 6baa5ee commit 77239bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/tips_in_gene_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def count_unique_tips(tree_line):

def process_trees(input_file, output_file, save_path):
values = []
with open(input_file, 'r') as infile, open(output_file + "/num_species_gt.txt",, 'w') as outfile:
with open(input_file, 'r') as infile, open(output_file + "/num_species_gt.txt", 'w') as outfile:
for line in infile:
count = count_unique_tips(line)
values.append(count)
Expand Down

0 comments on commit 77239bb

Please sign in to comment.