Skip to content

Commit

Permalink
Updating combine_kreports.py to be compatible with kraken2uniq/kraken…
Browse files Browse the repository at this point in the history
…uniq reports
  • Loading branch information
Jennifer Lu committed Apr 19, 2021
1 parent c640d7b commit 50b081e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions combine_kreports.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,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 50b081e

Please sign in to comment.