Skip to content

Commit

Permalink
./sircel/Sircel_master.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshay Tambe committed Sep 26, 2017
1 parent e565d61 commit 4e7b999
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sircel/Split_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,9 @@ def get_threshold(grad, second_grad, lmax, num_cells, unique_paths_sorted):
threshold = lmax[-1]
except IndexError:
return len(unique_paths_sorted)
for i in lmax:
print(i, grad[i], second_grad[i])
for i in lmax:
print(i, grad[i - LOCAL_WINDOW_LEN])


if(grad[i] > grad[threshold]):
threshold = i
Expand Down

0 comments on commit 4e7b999

Please sign in to comment.