This is a test version of Biostars. For the public version, visit https://www.biostars.org.
VCFTools Removing Individuals and SNP counting

I have a vcf file that I have been processing and I have been tracking my SNP counts throughout the processing steps. However, upon removing several individuals from the dataset, the SNP count remained the same as before. Does anyone have any insight as to why this might have happened? For reference, the species being studied is a grass with three subspecies. The removal of these individuals was done to process out the two subspecies.

snp vcftools

1 answer

Generally, vcftools will not remove any SNPs, but will set the GT score to missing (./.) for the individuals you remove. I second Pierre's recommendation to prefer bcftools, where the use is far more clear on what the filtering steps do.

Log in to answer this question.