| list.compare {MLDA} | R Documentation |
A function to get the overlap of two lists
list.compare(list1, list2)
list1 |
The first list |
list2 |
The second list |
A vector of logical values for the overlap in the second list
Wei Dai w.dai@imperial.ac.uk
list1<-paste("gene",1:8)
list2<-paste("gene",6:12)
result<-list.compare(list1,list2)
overlap<-list2[result]