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 was looking to merge multiple sav files but noticed that sav merge isn't recognized as a command. However, after looking through the source code, I noticed that there is a merge.cpp file that references a sav merge command?
What is the best method to merge multiple sav-formatted files, similar to bcftools merge?
The text was updated successfully, but these errors were encountered:
sav merge existed in version 1.x because the first version of the file format only allowed for bi-allelics and limited FORMAT fields. The second version of the SAV file format allows for multi-allelics and any format field, which makes merging VCFs that have a different set of variants a bit more complicated. I do intend on implementing a limited merge routine eventually, but it will be a while.
What is your use case? What FORMAT fields are you trying to merge? Is the variant set identical? How did you end up with files split into groups of samples?
Note: if each file has the same set of samples, then you should be using concat not merge.
I was looking to merge multiple
sav
files but noticed thatsav merge
isn't recognized as a command. However, after looking through the source code, I noticed that there is amerge.cpp
file that references asav merge
command?What is the best method to merge multiple
sav
-formatted files, similar tobcftools merge
?The text was updated successfully, but these errors were encountered: