Skip to content

Commit 30962ad

Browse files
committed
Fix bug in mapFast5Files
1 parent 3d3aea9 commit 30962ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

magnipore/nanosherlock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def mapFast5Files(raw_data_path : str, seq_sum : str = None) -> dict:
7272
filename, read_id = line.strip().split('\t')[:2]
7373
readid2file[read_id] = os.path.join(raw_data_path, filename)
7474

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

7878
def readSegSum(segSum : str):

0 commit comments

Comments
 (0)