Hi, Thanks but I get the following error!
data.in <- read.xlsx("tpm_matrix.xlsx")
Error in file(con, "r") : invalid 'description' argument
In addition: Warning message:
In unzip(xlsxFile, exdir = xmlDir) : error 1 in extracting from zip file
• 0 views
•
link
If your file is rather a text file but no MS xls, you can use
cut -f 1 tpm_matrix.xls | sort | uniq -c | sort -k1,1nrto find the duplicated row names. If there are only a few, you'll curate that manually; if you have a lot, you can use e.g. awk to add a consecutive number to the name.This helped, Thank you so much