powered by
Takes as arguments two vectors of IDs and test whether they have a common ID.
check.path(p1, p2)
Return 0 if the two genes don't belong to a common pathway, return 1 otherwise. This is an internal function used by the function target.help.
target.help
Vector of pathways that gene 1 belongs to.
Vector of pathways that gene 2 belongs to.
Monika Jelizarow and Vincent Guillemot
g1 <- c("path1","path2","path3","path4") g2 <- c("path5","path6","path3","path11") g3 <- c("path10","path5","path12","path13") check.path(g1, g2) # 1 check.path(g1, g3) # 0
Run the code above in your browser using DataLab