This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to make plink treat SNP (counts of minor alleles) as categorical
  1. When I tried running additive logistic model using the following command, I always get one predictor for the genotype (A1). But since there are 3 values (0,1,2) for the counts of minor alleles, there should be two predictors associated with SNP for the output model right? How do I make plink do that?

  2. Another question is that I always get NAs for all the output statistics. Got really frustrated on this.

  3. I saw in many tutorial they have the flags --genotypic used with --logistic. However when I am trying to run --logistic --genotypic or with the two flags switched, --genotypic always gets deprecated. Anyone knows why this happened?

The code I was basically using is: plink --bfile filename.bed --logistic --make-pheno covfile.txt 1

snp plink additive model

Don't worry about the "deprecated" warning message; that's just informing you that the preferred syntax is now "--logistic genotypic" instead of "--logistic --genotypic". But the latter still works.

However, if all your results are NAs, something else is wrong. The first thing I'd check is the phenotype values; are they being set properly? (--make-just-fam provides one way to dump the phenotype values plink is using.) If they're all missing, or identical, that explains the all-NA result.

0 answers

No answers yet.

Log in to answer this question.