-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
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
VG graph with duplicate nodes at the same location #1801
Comments
The Ns make it into the graph because the Ns are in the reads and count as mismatches. When you add the reads to the graph with Ns in reads never match against anything, even other Ns, so on subsequent iterations you can add additional Ns at the same position (like on the right side in your image). For other characters, you can get duplicates because There might be an underlying bug here in that But on the other hand, Can you try doing your pipeline with |
If I use |
Hi I am augmenting vg graph for multiple sample. In each step, I index the graph, map my sample (paired-end fastq files), filter it and then finally augment this mapping with the graph (from previous iteration). For augmenting, I am using the following command:
vg mod -i graph.aln.gam graph.vg | vg mod -z - | vg mod -c - > graph.aug.vg
After several iteration I got a graph which looks like-
Why do I get multiple node with the same character at the same location and why would we keep
N
's in the graph? Some node looks like dangling (e.g: node 1878) as well. Could you please give some explanation for this graph?The text was updated successfully, but these errors were encountered: