Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. match.interest <- function(str){
  2. match <- match(str, V.interest[,1])
  3.  
  4. if(is.na(match)){
  5. return(c(NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA))
  6.  
  7. }else{
  8. return(unlist(PvsNP.vdj[,c(1:15)]))
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement