Skip to content

Commit

Permalink
removed logging statement that was in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
evagunawan committed Jan 30, 2025
1 parent ebe70b1 commit c9b9b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/calculate_assembly_ratio.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def process_NCBI_and_tax(taxonomy_to_compare, tax, sample_name):

found = True

result = df.loc[df['Sample'] == sample_name,'Primary Species (%)'].values[0] logging.info(f"Genus {result}")
result = df.loc[df['Sample'] == sample_name,'Primary Species (%)'].values[0]
genus = result.split(' ')[0]

if genus == "":
Expand Down

0 comments on commit c9b9b8f

Please sign in to comment.