Skip to content

Commit

Permalink
Fix bug in mapFast5Files
Browse files Browse the repository at this point in the history
  • Loading branch information
JannesSP committed Aug 9, 2023
1 parent 3d3aea9 commit 30962ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magnipore/nanosherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def mapFast5Files(raw_data_path : str, seq_sum : str = None) -> dict:
filename, read_id = line.strip().split('\t')[:2]
readid2file[read_id] = os.path.join(raw_data_path, filename)

LOGGER.printLog(f'Indexed {ridx + 1} reads')
LOGGER.printLog(f'Indexed {len(readid2file) + 1} reads')
return readid2file

def readSegSum(segSum : str):
Expand Down

0 comments on commit 30962ad

Please sign in to comment.