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
AgnosticSNP quality is a string and should be float
This is an issue for comparison because in python 2.7:
'0.001' > 20 True
For SNP filter this will silently fail:
def filter(self, chromosome, **kwargs): for snp_set, snp in kwargs.iteritems(): if snp.quality > self.threshold: return SequenceSNP(snp.alt)
snp.quality must be cast to float to obtain the expected result
The text was updated successfully, but these errors were encountered:
True. Where is this snippet coming from?
Sorry, something went wrong.
Fixed in 1.3.1
No branches or pull requests
AgnosticSNP quality is a string and should be float
This is an issue for comparison because in python 2.7:
For SNP filter this will silently fail:
snp.quality must be cast to float to obtain the expected result
The text was updated successfully, but these errors were encountered: