Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions physlr/physlr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2694,6 +2694,7 @@ def physlr_find_ntcard_mode(self):
# Assumption: There is no negative slope to the right of the first local minimum
freq_count = [int(line.rstrip().split("\t")[2]) for line in open(self.args.FILES[0])
if line[0] != "k"]
min_idx = 0
min_val = freq_count[0]
for idx, freq in enumerate(freq_count):
if freq > min_val:
Expand Down