Skip to content

Commit

Permalink
Update physlr.py (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
aafshinfard authored Jul 5, 2022
1 parent 0dcce65 commit 78cee8c
Showing 1 changed file with 1 addition and 0 deletions.
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

0 comments on commit 78cee8c

Please sign in to comment.