--chr-prefix will cause all numeric (or X/Y/XY/MT) chromosome codes to be preceded by "chr" in output files.--chr-alphacode will cause X/Y/XY/MT chromosome codes to be represented alphabetically instead of numerically. So --chr-prefix + --chr-alphacode leads to "chrX", and --chr-alphacode by itself leads to "X". (If you can think of a more appropriate flag name than "alphacode", I'm all ears.)
--output-chr [MT code]
Normally, autosomal/sex/mitochondrial chromosome codes in PLINK output files are numeric, e.g. '23' for human X. The --output-chr flag lets you specify a different coding scheme by providing the desired human mitochondrial code. The supported options are: '26' (default), 'M', 'MT', '0M', 'chr26', 'chrM', and 'chrMT'.
(Note: PLINK 1.9 correctly interprets all of these encodings in input files.)
Examples:
--output-chr 26 --> all chromosomes are numeric, 1-26
--output-chr M --> all autosomal chromosomes are numeric, then X, XY, Y, M
--output-chr MT --> all autosomal chromosomes are numeric, then X, XY, Y, M
--output-chr 0M --> all autosomal chromosomes are numeric (01-09, 10-22), then 0X, XY, 0Y, 0M
--output-chr chrM --> all autosomal chromosomes are numeric (chr1-chr22), then chrX, chrXY, chrY, chrM
and so on.