Hi Ruby,
The errors I see in your file seem to all have to do with chromosome names, and PLINK expects human chromosome identifiers, from the website:
https://zzz.bwh.harvard.edu/plink/data.shtml#plink
By default, each line of the MAP file describes a single marker and must contain exactly 4 columns:
chromosome (1-22, X, Y or 0 if unplaced)
rs# or snp identifier
Genetic distance (morgans)
Base-pair position (bp units)
Genetic distance can be specified in centimorgans with the --cm flag. Alternatively, you can use a MAP file with the genetic distance excluded by adding the flag --map3, i.e.
plink --file mydata --map3
In this case, the three columns are expected to be
chromosome (1-22, X, Y or 0 if unplaced)
rs# or snp identifier
Base-pair position (bp units)
Base-pair positions are expected to correspond to positive integers within the range of typical human chromosome sizes.
If your data are de novo, then they are unplaced and labeled “un” in the map file, you may need to replace that with “0”. However, I think a reference genome is required for most of the functionality in PLINK (e.g. LD analysis) but I am not a PLINK expert so YMMV.
julian
--
Stacks website: http://catchenlab.life.illinois.edu/stacks/
---
You received this message because you are subscribed to the Google Groups "Stacks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
stacks-users...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/stacks-users/da86e45c-4916-4637-912b-cec0013db670n%40googlegroups.com.