-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix important bug in expand function. I also move the function, so we…
… cannot see the change, See below for bug. Add variable for files, and when re-running check if file exist and do not re-run hmmer or infernal if file already exists. Bug was in search_left: window_beg = (window_beg - DISTANCE_THRESHOLD) % SIZE_REPLICON window_end = (window_beg + 200) % SIZE_REPLICON where in the second line window_beg does not have the expected value anymore as we change it the line before. I change this to: window_end = (window_beg + 200) % SIZE_REPLICON window_beg = (window_beg - DISTANCE_THRESHOLD) % SIZE_REPLICON And any occurrences of similar problem. I change some file name
- Loading branch information
Showing
1 changed file
with
92 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters