-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Hi,
Thanks for developing this nice tool.
I have two genomes, assembly1 and assembly2. My goal is to use these two genomes as reference genomes, align reads to each of them, and call variants. To effectively compare the variants obtained from the two genomes and identify their similarities and differences, I am considering two approaches:
Coordinate Conversion Before Variant Calling: Should I first convert the coordinates between the two genome assemblies before calling variants, and then perform the comparison?
Coordinate Conversion After Variant Calling: Alternatively, should I proceed without converting the genome assembly coordinates initially, call variants separately for each genome, and then convert the coordinates of the resulting VCF files before performing the comparison?
Which of these methods would be more reasonable?
When using the second method (coordinate conversion after variant calling), I have encountered an issue where many structural variations (SVs) are reported as unmap. Could you please provide some advice on how to address this problem?
2024-10-18 08:46:32 [INFO] Keep variants [reference_allele == alternative_allele] ...
2024-10-18 08:46:32 [INFO] Updating contig field ...
2024-10-18 08:46:32 [INFO] Lifting over ...
2024-10-18 08:46:33 [INFO] Total entries: 1513
2024-10-18 08:46:33 [INFO] Failed to map: 643
Best regards.