-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dysgu_dev <- master (#108) * correct usage of update_filter_value in filter_normals It seems like at some point the usage of update_filter_value changed, because in several spots, it is missing the sample_name argument. This breaks `dysgu filter --keep-all`. * Update main.yml * Update main.yml * Update requirements.txt * updated build process to pyproject.toml (#103) * v1.6.6 updated README * Update main.yml * Added pyproject.toml * Updated pyproject.toml and setup.py * Update pyproject.toml --------- Co-authored-by: Dr. K. D. Murray <[email protected]> * Better recall+precision for long-reads. Improved merging pipeline. Faster runtime. Code refactoring. WIP # [skip ci] * Fixed issues with overriding presets. --mode option updated # [skip ci] * Fixed issues with overriding presets. --mode option updated to support r10 and revio, new presets available. --no-gt flat removed # [skip ci] * Fixed CLI issues for tests # [skip ci] * Fixed API issue * v1.7.0 * added deprecated warning for mode * Added filter for high divergence reads (long-reads only) # [skip ci] --------- Co-authored-by: Dr. K. D. Murray <[email protected]>
- Loading branch information
Showing
5 changed files
with
50 additions
and
31 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
#cython: language_level=3, boundscheck=False, c_string_type=unicode, c_string_encoding=utf8, infer_types=True | ||
|
||
from libc.stdint cimport uint32_t | ||
|
||
cdef float soft_clip_qual_corr(reads) | ||
|
||
cdef float soft_clip_qual_corr(reads) | ||
|
||
|
||
cdef struct WindowRate: | ||
float rate | ||
int index | ||
|
||
|
||
cdef void window_rate(WindowRate *result, uint32_t cigar_l, uint32_t *cigar_p, int index, int window_size, bint reverse) |
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
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