A cis/trans classifier
Details
The function classifies variants into cis/trans category according to a panel which contains id, chr, start, end, gene variables.
Examples
cis.vs.trans.classification(hits=jma.cojo, panel=inf1, id="uniprot")
if (FALSE) { # \dontrun{
INF <- Sys.getenv("INF")
f <- file.path(INF,"work","INF1.merge")
clumped <- read.delim(f,as.is=TRUE)
hits <- merge(clumped[c("CHR","POS","MarkerName","prot","log10p")],
inf1[c("prot","uniprot")],by="prot")
names(hits) <- c("prot","Chr","bp","SNP","log10p","uniprot")
cistrans <- cis.vs.trans.classification(hits,inf1,"uniprot")
cis.vs.trans <- with(cistrans,data)
knitr::kable(with(cistrans,table),caption="Table 1. cis/trans classification")
with(cistrans,total)
} # }