My name is Ruddhida Vidwans, I am a Ph.D. Research Scholar at Jain University, Bengaluru, India. My research area is Forensic Microbiology.
Currently, apart from my Ph.D., I am focusing on learning next-generation sequencing analysis. For that, I am practicing with the publicly available data.
I am using the "GSE163207" ID from GEO datasets for practice.
and referring to the paper entitled "Analysis workflow of publicly available RNA-sequencing datasets" for the analysis guidance".
I am able to perform initial tasks,
But, after rownames(GSE163207)<-clindata$title
this command, I got error:
Error in `rownames<-`(`*tmp*`, value = c("Individual 1, PMI 0", "Individual 1, PMI 3", :
attempt to set 'rownames' on an object with no dimensions
Can anyone please help me in rectifying this error?
Welcome Ruddhida. To help other people, please choose a title which describes your problem in a more specific way. Thank you.
It seems as though the object
GSE163207
isn't a data.frame, but perhaps a vector. What happens you when you type inclass(GSE163207)
?After
this command,
I got,
this as
FALSE
instead ofTRUE
.