We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
utils.hgvs._normalized_vcf
There are a few VCF normalization tools/algorithms that can be used in our _normalized_vcf function, e.g.:
_normalized_vcf
Our current implementation fails to meet the Parsimony definition of VCF normalization:
A variant is parsimonious if and only if it is represented in as few nucleotides as possible without an allele of length 0.
E.g. our current implementation cannot handle cases like ref = "TCCCCT", alt = "CCCCT". Normalized sequences should be ref = 'TC', alt = 'C'.
ref = "TCCCCT", alt = "CCCCT"
ref = 'TC', alt = 'C'
The text was updated successfully, but these errors were encountered:
newgene
erikyao
No branches or pull requests
There are a few VCF normalization tools/algorithms that can be used in our
_normalized_vcf
function, e.g.:Our current implementation fails to meet the Parsimony definition of VCF normalization:
E.g. our current implementation cannot handle cases like
ref = "TCCCCT", alt = "CCCCT"
. Normalized sequences should beref = 'TC', alt = 'C'
.The text was updated successfully, but these errors were encountered: