@@ -3279,9 +3279,9 @@ Convert between VCF and BCF. Former *bcftools subset*.
32793279Note that filter options below dealing with counting the number of alleles
32803280will, for speed, first check for the values of AC and AN in the INFO column to
32813281avoid parsing all the genotype (FORMAT/GT) fields in the VCF. This means
3282- that a filter like '--min-af 0.1' will be calculated from INFO/AC and INFO/AN
3283- when available or FORMAT/GT otherwise. However, it will not attempt to use any other existing
3284- field, like INFO/AF for example. For that, use '--exclude AF<0.1' instead.
3282+ that filters like '--uncalled', --exclude-uncalled', or '-- min-af 0.1' will be calculated from INFO/AC and
3283+ INFO/AN when available or FORMAT/GT otherwise. However, it will not attempt to use any other existing field,
3284+ like INFO/AF for example. For that, use '--exclude AF<0.1' instead.
32853285
32863286Also note that one must be careful when sample subsetting and filtering is performed in a single command
32873287because the order of internal operations can influence the result. For example, the *-i/-e* filtering
@@ -3357,10 +3357,14 @@ when piping!)
33573357 most frequent ('nonmajor') alleles.
33583358
33593359*-u, --uncalled*::
3360- print sites without a called genotype
3360+ print sites without a called genotype, i.e. print sites with all genotypes
3361+ missing. Note that the missingness is determined from INFO/AN and AC tags
3362+ when available to avoid parsing sample fields.
33613363
33623364*-U, --exclude-uncalled*::
3363- exclude sites without a called genotype
3365+ exclude sites without a called genotype, i.e. print sites with at least one
3366+ non-missing genotype. Note that the missingness is determined from INFO/AN
3367+ and AC tags when available to avoid parsing sample fields.
33643368
33653369*-v, --types* 'snps'|'indels'|'mnps'|'other'::
33663370 comma-separated list of variant types to select. Site is selected if
0 commit comments