Closed dpelegri closed 3 years ago
Hi,
--chr-id is one of those function that I implemented on a whim and are therefore have a lot of undefined behavior.
To answer your question, --chr-id basically re-label your SNP in the bim
file with the corresponding parameter unless you didn't provide the --snp
parameter and the default doesn't pick up the SNP column, then we will also
construct the chr id for your base data. To understand the parameter, --chr-id
c:L-bad is translated as <chromosome>:
The problem with using chr id is that it highly limit PRSice's ability to do flipping as we are now mapping the SNP IDs w.r.t. their allele. To avoid that, a better chr id will be --chr-id c:L which doesn't include the alleles, in which case, PRSice can tried to do flipping. The only annoying problem that you will have to look out for will be to remove SNPs fall within the same location.
Hope this help
Sam
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hello choishingwan,
1 1:11012:C:G 0 11012 G C
1 1:13110:G:A 0 13110 A G
Thank you,