Hi All,
This is my code for read the csv file generated by Rsubread library.
countData <- read.csv("counts.csv", header = TRUE, sep = "\t")
countData <- subset(countData, select=-c(Length))
colnames(countData) <- gsub("Aligned.sortedByCoord.out.bam","",colnames(countData))
I got the error during execution.
Error in eval(substitute(select), nl, parent.frame()) :
object 'Length' not found
Kindly help me.