I have a TF2Gene [1326] list that looks like
view(TF2Gene) structure(list(Sp1=c("a","b","c"),p53=c("x","y","z"),Elk1=c("1","2","3"),...))
So this is basically a list of 1326 lists.
Now I want to combine the values ββof these lists into 1 so that I can find unique members. I'm doing it:
cols <- unique(unlist(TF2Gene))
It is right?
source share