| hlaSNPID {HIBAG} | R Documentation |
Get the information of SNP ID with or without position.
hlaSNPID(obj, type=c("RefSNP+Position", "RefSNP", "Position"))
obj |
a genotypic object of |
type |
|
If type = "RefSNP+Position",
return paste(obj$snp.id, obj$snp.position, sep="-");
if type = "RefSNP",
return obj$snp.id;
otherwise,
return obj$snp.position.
Xiuwen Zheng
hlaGenoSwitchStrand, hlaGenoCombine
x <- hlaSNPID(HapMap_CEU_Geno) head(x) x <- hlaSNPID(HapMap_CEU_Geno, "RefSNP") head(x) x <- hlaSNPID(HapMap_CEU_Geno, "Position") head(x)