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
I am currently working on developing a variant catalog that contains every location of the (GGGAGA)* repeat across the whole human genome (a couple thousand locations).
To make this I am using CRAM files (aligned to hg38), and I am keeping track of the location of each GGGAGA repeat using string searches. I am then using these locations to produce a variant catalog. Here is an example of a shortened variant catalog I have made:
Except I keep getting this error: 2024-11-20T13:41:25,[Error loading locus SVA: Locus SVA must specify reference regions for 1 variants]
How can I make a variant catalog like this without knowing the reference region from the reference genome?
Thanks!
Ross
The text was updated successfully, but these errors were encountered:
Thank you for the help.
Is there any way to get around this error: [Error loading locus SVA: Flanks can contain at most 5 characters N but found 985 Ns]?
It seems that some people have made some people have made changes to get rid of this warning (https://github.com/bw2/ExpansionHunter).
What is the best route to fix this error?
Yep, the bw2 version and my version (https://gitlab.com/andreassh/ExpansionHunter) both can skip those loci with the error and continue analysis instead of terminating it like the original version does. It happens because the locus is close to a chromosome edge or in unsequenced parts of the reference genome.
Hello,
I am currently working on developing a variant catalog that contains every location of the
(GGGAGA)*
repeat across the whole human genome (a couple thousand locations).To make this I am using CRAM files (aligned to hg38), and I am keeping track of the location of each GGGAGA repeat using string searches. I am then using these locations to produce a variant catalog. Here is an example of a shortened variant catalog I have made:
Except I keep getting this error:
2024-11-20T13:41:25,[Error loading locus SVA: Locus SVA must specify reference regions for 1 variants]
How can I make a variant catalog like this without knowing the reference region from the reference genome?
Thanks!
Ross
The text was updated successfully, but these errors were encountered: