Jasieniuk:Converting codominant to dominant data

From OpenWetWare
Revision as of 18:04, 31 October 2008 by Lindsay V. Clark (talk | contribs) (edited Notes section, added Screen Shots section)
Jump to navigationJump to search

Home        Contact        Internal        Lab Members        Publications        Research        Talks       


Overview

In polyploid species, codominant markers such as microsatellites become essentially dominant, because allele copy number is usually not known. Some programs such as STRUCTURE 2.2 can handle polyploid codominant data. However, for applications such as parentage analysis or quick visualization of data by Principal Coordinate Analysis or UPGMA, it is useful to recode each codominant allele as a dominant marker.

Materials

  • Codominant allele-calling output, such as that produced by ABI GeneMapper, in which all alleles for an individual for a given marker are listed in one row.
  • Microsoft Excel

Procedure

  1. Cut and paste the data so that each microsatellite marker has its own worksheet. You might also want to have multiple Excel files, for example one file per microsatellite panel, in order to avoid monstrously large files.
  2. Retain the following columns:
    • Sample Name (so you have an index of your individuals)
    • Run Name (so you can go look up the original data if anything comes into question)
    • Alleles
    • Height (or your favorite measure of allele quality)
    • Anything else that you need in order to feel comfortable, for example Panel and Marker to make sure you haven't pasted the wrong data into the wrong worksheet.
  3. Sort each worksheet by sample name. (For the less Excel-savvy, click the gray rectangle just to the upper left of the worksheet to highlight the whole sheet, then go to Data-Sort.) Each worksheet should have the same list of sample names (individuals). Each individual should be on the same row on each sheet. When I'm filling in holes in the data, I just paste the new rows of data over the old, so that I still have just one row per individual.
  4. Make a new worksheet for each microsatellite marker. Starting in cell B1 and going across row 1, list each unique allele for that marker. I list them from smallest to largest so that I can easily check to see if I've already listed an allele.
  5. In column A of these new worksheets, starting in A2, list all of your individuals. I find it easiest to just write a formula to retrieve the data from the Sample Name column on the codominant data worksheets. (For example, if your codominant data is in a sheet called ABC1, and your sample names are in column B on that sheet under a header row, then in the new sheet, in cell A2, you would write =ABC1!B2, then click and drag to fill in the rest of the column.)
  6. Here's the magical time-saving part. In cell B2 of this worksheet, you're going to write a formula that will put a 1 in the cell if that individual has that allele, a 0 in the cell if it doesn't, and a ? (or missing data symbol of your choice) in the cell if that individual has poor data quality for that marker. And you can drag that formula across and down the whole worksheet to fill it all in. I use nested IF statements to first check if the marker quality is acceptable, then check each column for the presence of the allele.
    • Let's say that in your worksheet of codominant data (which we'll call ABC1), you have four allele columns, F through I, and the peak height for the allele in column F is in column J. And let's say that if the first peak height is less than 100 (or if there's no data in the row), you want to mark the data as missing. We'll also assume that you have a header row, so your data starts in row 2. In cell B2 of the new worksheet (which has all your alleles across the top row, and all your individuals down the left column, and which we'll call ABC1dom), you will write:
    • =IF(ABC1!$J2<100,"?",IF(ABC1!$F2=ABC1dom!B$1,1,IF(ABC1!$G2=ABC1dom!B$1,1,IF(ABC1!$H2=ABC1dom!B$1,1,IF(ABC1!$I2=ABC1dom!B$1,1,0)))))
    • Click and drag to fill that formula across the row, then down to the last individual. It should change automatically to reference the correct cells. Visually check to see that the dominant data being generated matches your codominant data.
  7. Copy everything in the worksheet, then paste the values (under Paste Special) into a new spreadsheet file. You can paste the dominant data from multiple markers side by side (checking to see that the sample names match up) to make one big table with all of your dominant data. At this point I usually alter the allele names to indicate which marker they came from. (This can also be done with a simple formula. Insert a new row, then write ="ABC1-"&B2 (for example), drag it across, then copy and paste the values to make it something can be read if the table is converted to a text file.)

Screen Shots

Notes

Please feel free to post comments, questions, or improvements to this protocol. Happy to have your input!

  1. List troubleshooting tips here.
  2. You can also link to FAQs/tips provided by other sources such as other websites or programs.
  3. Anecdotal observations that might be of use to others can also be posted here.

Please sign your name to your note by adding '''*~~~~''': to the beginning of your tip.

Contact

User:Lindsay_V._Clark