Skip to content

Commit

Permalink
Modifying est_abundance.py to work with Kraken2Uniq and KrakenUniq re…
Browse files Browse the repository at this point in the history
…port files
  • Loading branch information
Jennifer Lu committed Mar 5, 2021
1 parent f420218 commit f119872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/est_abundance.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def process_kraken_report(curr_str):
#Extract relevant information
all_reads = int(split_str[1])
level_reads = int(split_str[2])
level_type = split_str[3]
taxid = split_str[4]
level_type = split_str[-3]
taxid = split_str[-2]
#Get name and spaces
spaces = 0
name = split_str[-1]
Expand Down

0 comments on commit f119872

Please sign in to comment.