QMS2 How-To: A step-by-step guide for using the QTL Macro for SASŪ Software[1] | ||
---|---|---|
Prev | Chapter 2. I just want to analyze my data! | Next |
This section is put at the beginning to both provide a quick reference to remind the user of the commands to type and to provide an introduction to what will come in later sections. Unless you are already familiar QMS2 this section will probably not be enough to get the data analysis started.
Example 2-1. What to type
$ gunzip -c qms2-0.07.tar.gz | tar -xvf - |
Example 2-2. my_genehunter.in
disp score off load mark linkage.dat increment distance 2 scan ped genehunter.ped dump ibd dump.ibd quit |
Example 2-3. myanalyzer.sas
/* Tell SAS to look in the current directory for any macros */ options mautosource sasautos=('.'); /* read in data files */ %ghimport(ibdfile=dump-sas.ibd, phenfile=genehunter.ped, markers=10, missing=-99); /* analyze the imported data and produce plots */ %qms2(infce=1, plot=1); /* print out the results of the analysis */ proc print data=stats; /* print out the influence statistics */ proc print data=infce |