Hello Chris,
I cannot figure out how to format my PGEN files to avoid this error:
Error: Non-concatenating --pmerge[-list] is under development.
What conditions must be satisfied for concatenation to proceed?
Here is a minimally reproducible example with a single variant. The variant is shared across the two files but there are different sets of samples in each file.
unzip plink2_linux_x86_64_20251205.zip
for i in 1 2; do ./plink2 --out simple$i --vcf simple$i.vcf; done
./plink2 --pmerge-list <(ls simple{1,2}.pgen | sed 's/.pgen$//') --make-pgen --out simple
Thanks!