Skip to content
Snippets Groups Projects
Commit eac3b335 authored by yunusek77's avatar yunusek77
Browse files

Upload New File

parent 68762843
No related branches found
No related tags found
No related merge requests found
library(readxl)
df <- read_excel("C:/Users/Emre/Desktop/multimir_results_cyto.xlsx")
mrna <- read_excel("C:/Users/Emre/Desktop/mRNAs.xlsx")
mrna_genes <- mrna$external_gene_name
filtered_df <- df[df$target_symbol %in% mrna_genes | duplicated(df$target_symbol) %in% mrna_genes, ]
print(filtered_df)
library(writexl)
output_file <- ("C:/Users/Emre/Desktop/cytoscape.xlsx")
write_xlsx(filtered_df, output_file)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment