View source: R/cis.vs.trans.classification.R
cis.vs.trans.classification | R Documentation |
A cis/trans classifier
cis.vs.trans.classification(hits, panel, id, radius = 1e+06)
hits |
Data to be used, which contains prot, Chr, bp, id and/or other information such as SNPid. |
panel |
Panel data. |
id |
Identifier. |
radius |
The flanking distance for variants. |
The function classifies variants into cis/trans category according to a panel which contains id, chr, start, end, gene variables.
The cis/trans classification.
James Peters
cis.vs.trans.classification(hits=jma.cojo, panel=inf1, id="uniprot")
## Not run:
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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.