We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dcce65 commit 78cee8cCopy full SHA for 78cee8c
1 file changed
physlr/physlr.py
@@ -2694,6 +2694,7 @@ def physlr_find_ntcard_mode(self):
2694
# Assumption: There is no negative slope to the right of the first local minimum
2695
freq_count = [int(line.rstrip().split("\t")[2]) for line in open(self.args.FILES[0])
2696
if line[0] != "k"]
2697
+ min_idx = 0
2698
min_val = freq_count[0]
2699
for idx, freq in enumerate(freq_count):
2700
if freq > min_val:
0 commit comments