Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinggerm committed Jun 29, 2019
1 parent 3274f2c commit 60379bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_organelle_from_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ def estimate_maximum_n_reads_using_mapping(
check_percents.append(1)
estimated_maximum_n_reads_list[f_id] = int(len(open(check_fq).readlines()) / 4)
else:
check_percents.append(min(check_f_size / original_fq_sizes[f_id], 1))
check_percents.append(min(float(check_f_size) / original_fq_sizes[f_id], 1))
estimated_maximum_n_reads_list[f_id] = int(check_num_line / check_percents[-1])
check_fq_files.append(check_fq)
count_round += 1
Expand Down

0 comments on commit 60379bc

Please sign in to comment.