R/target.help.R

Defines functions target.help

Documented in target.help

target.help <-
function(genes) {
  T <- diag(1,length(genes))                              
  for (i in 2:length(genes)) {                            
   for(j in 1:(i-1)) {                                    
    T[j,i] <- T[i,j] <- check.path(genes[[i]],genes[[j]]) 
   }
  }
  return(T)
}

Try the SHIP package in your browser

Any scripts or data that you put into this service are public.

SHIP documentation built on May 1, 2019, 8:29 p.m.