Entering edit mode
11 months ago
zhang yi xing
▴
20
After constructing the graph pangenome with VG, how can I quickly transform the node information of the graph into the original linear reference coordinates (i.e., which sample a node comes from and its specific position)?
Thanks for your reply, actually, I want to have many nodes Postion, I find user Can get this information from P or W lines in gfa file.
Not directly. The P and W lines hold the list of nodes, but not the lengths of the node sequences. You would have to first build a map of node lengths from the S lines and then iterate over the nodes in the P/W line. I don't fully know your use case, but I think there's a pretty good chance it would be simpler and easier to prepare a file that lists the nodes you want to query than then use
vg find -P -N
.