What is the standard way to test whether two samples exhibit significantly different expression on a global basis?
Most rna-seq and microarray analysis packages seem to be concerned with identifying differentially expressed genes on a gene-by-gene basis, then correct for multiple testing.
Is there a single statistic, like an f-test, that is typically used for comparing all the genes of two samples at once? Or do they just aggregate the individual tests?
What about a simple correlation ? Computing p-values with only two samples in your hands is quite complex. You just can NOT make a parametric test with only one observation from each population, even with 10000 genes expression values. You need multiple observations to estimate parameters (mean and variance if we consider the Gaussian case) of your population. I would personally go for a non parametric randomization test as David suggested below.