I am trying to create an intersection between two datasets/lists of genes. Specifically, I want to find which values in column 1 of dataset A are also in column 1 of dataset B. If it helps, they are both DESeq2 results that have been filtered to only include significant genes.
1 Like
Welcome, @Claire_Milsted
You can use one of the Join tools described in our text manipulation guide here → Hands-on: Data Manipulation Olympics / Data Manipulation Olympics / Foundations of Data Science
From what you describe, I would probably use this one.
After that, you can Cut to rearrange or add/remove the final output columns as wanted. See the guide for more choices.
Hope this helps!
1 Like
This worked! Thank you!
1 Like