PLINK .bim file shows chromosome 0 on Affymetrix chip
3
0
Entering edit mode
8.5 years ago
philipovic ▴ 20

Currently I am working on PLINK genotype files. In the SNP file (.bim) the first two SNPs are showing as chromosome zero. The data has been genotyped on an Affymetrix Axiom array:

0       AFFX-SNP-000541 0       0       0       0
0       AFFX-SNP-002255 0       0       0       0

I am wondering why these first SNPs are coded as chromosome zero and how to deal with this. Should these just be excluded from further analysis?

Thank you

PLINK SNP Affymetrix • 5.8k views
ADD COMMENT
0
Entering edit mode

Control SNPs? SNPs remove from current reference build?

Before removing them, look in old version of this chip. Maybe you could find why the were removed.

ADD REPLY
0
Entering edit mode

Did you able to find out answer for this?

ADD REPLY
0
Entering edit mode
8.0 years ago

Did you able to find out answer for this ?, I have the same problem

ADD COMMENT
0
Entering edit mode

You can exclude them safely for further analysis.

ADD REPLY
0
Entering edit mode

But I have 23000 markers and 12909 markers are from zero chromosome? I dont know :/

ADD REPLY
0
Entering edit mode

This might be because of that some arrays were designed long ago and some of these positions are discontinued or not available now.

ADD REPLY
0
Entering edit mode
6.4 years ago

I have the same problem with plink. But I cannot delete them in the .map file since the data will not be comparable anymore with .ped file. There are 1000 SNPs from Chr 0. How can I exclude them without having any problem with .ped file? Is there another way to proceed?

ADD COMMENT
0
Entering edit mode

Did you try the --exclude option in PLINK?

ADD REPLY
0
Entering edit mode

Yeah, I tried it but I do not need to exclude a file, but the Chr 0 SNPs present in the .bim . When I use --exclude it says " No chr 0 file exists". I tried and succeeded in fixing X Y XY with 23 24 25 in the .map , but it's quite different. I am new of plink, only 2 months. Can you tell me something?

ADD REPLY
0
Entering edit mode

The --exclude parameter expects a file with SNPs IDs that you want to exclude.

If you are sure that all those that have chromosome 0 are control probes, then remove them like this:

plink ... --not-chr 0

See here: https://www.cog-genomics.org/plink/1.9/order

ADD REPLY
1
Entering edit mode

Oh thank you man. It worked. At least there is no error warning now. I will check later the results, but plink is running. Have a great day

ADD REPLY
1
Entering edit mode

Good day to you too, Sir / Madam.

ADD REPLY
0
Entering edit mode
6.4 years ago

These are control Affymetrix IDs. Control Affymetrix IDs on most of the older microarray chips begin with the prefix 'AFFX'.

You can safely remove these without worry.

To remove them:

Remove a subset of SNPs

To re-write the PED/MAP files, but with certain SNPs excluded, use the option

plink --file data --exclude mysnps.txt

where the file mysnps.txt is, as for the --extract command, just a list of SNPs, one per line. As described above, the --range command can modify the behaviour of --exclude in the same manner as for --extract.

[source: http://zzz.bwh.harvard.edu/plink/dataman.shtml#exclude]

Kevin

ADD COMMENT

Login before adding your answer.

Traffic: 2577 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6