Fix missing max(0,...) clamp on fasta.fetch() in add_normal_counts - #12
Open
Bonney96 wants to merge 1 commit into
Open
Fix missing max(0,...) clamp on fasta.fetch() in add_normal_counts#12Bonney96 wants to merge 1 commit into
Bonney96 wants to merge 1 commit into
Conversation
…d_normal_counts - Move indel record list inside the per-interval loop so it resets each iteration; previously vcf_dicts accumulated across all intervals, causing duplicate/incorrect VCF output - Clamp fetch() start to max(0, ...) in add_normal_counts to prevent ValueError for variants near chromosome start - Rename vcf_results/vcf_dicts to all_indel_records/indel_vcf_records for clarity
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
add_normal_counts()calledfasta.fetch(chrom, start_idx - flank, ...)at line 840 without clamping the start coordinate, causing aValueError: start out of rangewhen a variant sits withinflankbases of the chromosome start (e.g. IKZF2-KO-DNA hit this with start = -65).6e5b425) fixed the same pattern ingenerate_contig()but missed this call.max(0, start_idx - flank), consistent with all other fetch calls in the file.Reproduction
IKZF2-KO-DNA WGS sample hit a target site near chromosome start, crashing with: