So, sorry, I didn't adequately describe the problem. I describe it below
I have the TMP from RNAseq data. These data come from Arabidopsis seeds infected with a fungal inoculum. Sequencing reads were aligned to the Arabidopsis transcriptome using Salmon, version 0.14.1 and I get isoforms separately.
My code WGCNA work very well, However, I suspect that there is a problem that I need to solve and I don't know how to do it.
datExpr <- read.csv("TPM_Zscore_Ready.csv", header=TRUE, sep=',') colnames(datExpr) row.names(datExpr) = datExpr$Genes datExpr$Genes = NULL datExpr = as.data.frame(t(datExpr)) dim(datExpr)
my input have 19 columns the first one is the genes. The remaining 18 correspond to three samples with three replicates each.
Commn genes looks like this (with isoforms) Genes AT1G04990.6 AT5G08450.2 AT5G07970.1 AT1G76970.1 AT5G17510.2 AT5G08335.1 AT1G08800.2 AT2G46800.5 AT1G05090.1 AT5G65510.4 AT2G15530.7 AT1G30000.1 AT2G32660.2 AT3G46920.2 AT3G07790.1 AT3G24870.1 AT3G10490.2
So, I don't know how to properly remove isoforms for to have unique genes. networks on cytoescape and genes selected look as isoforms.
Thank you very much
Tutorial:How To Ask Good Questions On Technical And Scientific Forums
you have the
gsubline that removes the dot, so what problem still persists?So sorry Istvan Albert I did not clearly describe the problem. The gsub in 'univero' had no problems, I was just trying to give an example but it caused confusion.
Thank you very much!