Simply apply Filter Genotype Table Taxa first to filter individuals, then apply Filter Genotype Table Sites on the resulting dataset to filter loci. In the CLI pipeline, place your taxa filter arguments before your site filter arguments. Note that filtering individuals first means site-level statistics (like MAF) will be recalculated based on your retained individuals, which is often the desired behavior. Here's a CLI example: ./run_pipeline.pl -Xmx4g \ -fork1 \ -h genotypes.hmp.txt \ -FilterTaxaBuilderPlugin \ -minNotMissing 0.8 \ -minHeterozygous 0.0 \ -maxHeterozygous 0.05 \ -endPlugin \ -FilterSiteBuilderPlugin \ -siteMinAlleleFreq 0.05 \ -siteMaxAlleleFreq 0.95 \ -siteMinCount 100 \ -maxHeterozygous 0.9 \ -removeSitesWithIndels true \ -endPlugin \ -export filtered_output.hmp.txt \ -runfork1