Skip to content

Commit

Permalink
s/rank/taxonomic_rank/
Browse files Browse the repository at this point in the history
  • Loading branch information
rvosa committed Aug 16, 2024
1 parent d773669 commit 1510176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barcode_validator/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main(fasta_file_path, bold_sheet, actions):
tip = get_tip_by_processid(process_id, bold_tree)
species = tip.name
for node in bold_tree.root.get_path(tip):
if node.rank == config.get('level'):
if node.taxonomic_rank == config.get('level'):
taxon = node.name
logging.info(f"Species: {species}")

Expand Down

0 comments on commit 1510176

Please sign in to comment.