I am desperate of doing DGA on my data. So far, I could not find any guide which helps me to perform it and I could not find a reason why I cannot do it. Here I write my idea maybe one who really knows the technique can guide me to perform it.
I have a Matrix-1 (each row is a gene and each column is a sample) this matrix is controlled
I have another matrix-2 ( each row is the same gene as matri-1 and each column is a sample) but this one is untreated.
Now, I want to find those genes which are unregulated and those which are down regulated. There are over 100 comments, 100 packages to perform DA. some says Limma, Dseq and so many other packages, some says pairwise T-test , multi comparison. There is an any well-written comment or guide showing what we need and why we cannot perform such analysis using my data.
By the way, I also tried to filter out those genes which do not express by genefilter method as follows:
f1 <- pOverA(0.25, 3.5)
ffun1 <- filterfun(f1)
flrGene <- genefilter(data,ffun1)
sum(flrGene)
Then it gives me zero, why? Means I should keep all the genes? Is there any other method to remove those genes with very low expression over samples?
differential-gene-expression
microarray
r
By the way, I also tried to filter out those genes which do not express by genefilter method as follows:
Then it gives me zero , why? Means I should keep all the genes? Is there any other method to remove those genes with very low expression over samples?