list.compare {MLDA}R Documentation

List comparison

Description

A function to get the overlap of two lists

Usage

list.compare(list1, list2)

Arguments

list1 The first list
list2 The second list

Value

A vector of logical values for the overlap in the second list

Author(s)

Wei Dai w.dai@imperial.ac.uk

Examples


list1<-paste("gene",1:8)
list2<-paste("gene",6:12)
result<-list.compare(list1,list2)
overlap<-list2[result]


[Package MLDA version 1.0-1 Index]