Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion degenotate_lib/vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def getVariants(globs, transcript, transcript_region, codons, extra_leading_nt,

## NOTE: Should we be comparing to ingroups with called genotypes here instead of number of all ingroups?

if not globs['count-fixed-alt-ingroups'] and len(in_hom_alts) == 1 and sum(in_hom_alts.values()) == globs['num-ingroups']:
if not globs['count-fixed-alt-ingroups'] and len(in_hom_alts) == 1 and sum(in_hom_alts.values()) == globs['num-ingroup-chr']:
pass;
# If we don't want to count fixed ingroups, check to see if any alt alleles are fixed and skip if so
else:
Expand Down