Closed jamesc99 closed 3 months ago
For people also have this problem, I found this script worked for me: https://github.com/PapenfussLab/gridss/blob/09900c48d6d0e899a155cbc185f3d8e7c511bf05/example/simple-event-annotation.R#L4
though you need to modify the codes a little bit to avoid missing header:
info(header(vcf)) = unique(as(rbind(as.data.frame(info(header(vcf))), data.frame(
row.names = c("SVLEN"),
Number = c("1"),
Type = c("Integer"),
Description = c("Length of the structural variant"))), "DataFrame"))
Hi there,
Thanks for developing this tool!
I am trying to run GRIDSS2 to call inversions but it turned out to be a problem for me. the codes mentioned in #74 didn't work and I can not download the v1.21.0 of StructuralVariantAnnotation package (mine is v1.20.0). I get the inversion GRange object by:
but don't know how to output it into standard vcf file.
also the output bedpe file of inversion looks strange as the strands of paired reads is not opposite (after following the codes above):
Could you please teach us how to find out all INV calls?
Thank you