You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to know if the region supplied to the VCF reader is a valid region?
# reading vcf of chr19reader=VCF("chr19.vcf")
# try getting a region fro chr30 region=reader("chr30:45407332-45424365")
# use invalid region with lettersregion=reader("chr19:45407332-aaaaaaa")
The creation of these invalid regions don't throw any errors. The "no intervals found for vcf" error in thrown only when iterating through the region.
Is there a way to know when an invalid region has been queried without trying to iterate through it?
The text was updated successfully, but these errors were encountered:
Is there a way to know if the region supplied to the VCF reader is a valid region?
The creation of these invalid regions don't throw any errors. The "no intervals found for vcf" error in thrown only when iterating through the region.
Is there a way to know when an invalid region has been queried without trying to iterate through it?
The text was updated successfully, but these errors were encountered: