R script for Gene ID Mapping?
Hey everyone,
I have two files;
I want to create a new file with two columns ie. reaction ID and its corresponding Gene ID.
Is there a command similar to grep in R? if so, how can I use it in this scenario?
I would really appreciate any input/suggestions regarding this. Thank you!!
• 1,122 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Please search StackOverflow or any forum online for the
mergeordplyr::joinfunctions. R does have agrepbut it won't be of much use here.You'll need to use
tidyr::separate_rowson the second column of the first dataset, thendplyr::inner_joinon the datasets to get your results.Related StackOverflow posts: