ta <- data.frame(sym$ID, gsub(" /// ","-",sym$GENE SYMBOL), stringsAsFactors = FALSE)
It seems it could find sym$ID (total 45220) but not sym$GENE SYMBOL (0 rows). Thats why it is not able to create a data frame.
Check whether in GPL4133.soft file whether GENE SYMBOL is there or not? If something else is there, then you need to modify GENE SYMBOL with the particular column name.
We need more input info from you to pinpoint the result
gpl <- "./GPL4133.soft"
sym <- Table(gpl)
Error in Table(gpl) : could not find function "Table"
print(str(sym));
Error in str(sym) : object 'sym' not found
thanks for your reply try it but show error
Hi
Maybe Table is an internal function. I tried to search for it coexnet package, couldn't get.
Anyhow if you go the link, you can see in the table, its GENE_SYMBOL and not GENE SYMBOL.
The geneSymbol function code has `GENE SYMBOL`. To fix this, you manually edit the geneSymbol function and run. Here i am showing below
Then call the function.
I have replaced sym$`GENE SYMBOL` to sym$`GENE_SYMBOL`. If this does not work try replacing with sym$GENE_SYMBOL (Remove the two quotes)
Hope this solves.
HI thanks for your reply i used gpl8715 this gpl didnot have genesymbol and have description how can deal with this problem thanks again
Did u try what I have suggested.