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
When running biometrics extract without --vcf specified, it results in the following error being raised:
biometrics extract
--vcf
This looks to stem from the fact that the vcf input is optional, and if not given the self.sites attribute remains an empty list from here:
self.sites
biometrics/biometrics/extract.py
Line 34 in 1e87bd5
If the self.sites is then an empty list, the self.pileup attribute is left as None instead of being a DataFrame from here:
self.pileup
None
Line 260 in 1e87bd5
When extract is then run, and save_to_file() is called, the above error is raised as self.pileup is None and not a dataframe:
save_to_file()
biometrics/biometrics/sample.py
Line 38 in 1e87bd5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When running
biometrics extract
without--vcf
specified, it results in the following error being raised:This looks to stem from the fact that the vcf input is optional, and if not given the
self.sites
attribute remains an empty list from here:biometrics/biometrics/extract.py
Line 34 in 1e87bd5
If the
self.sites
is then an empty list, theself.pileup
attribute is left asNone
instead of being a DataFrame from here:biometrics/biometrics/extract.py
Line 260 in 1e87bd5
When extract is then run, and
save_to_file()
is called, the above error is raised asself.pileup
isNone
and not a dataframe:biometrics/biometrics/sample.py
Line 38 in 1e87bd5
The text was updated successfully, but these errors were encountered: