I am running an experiment where I get 22,152,480 p-values in a given order, ranging from 0 to 1, but strongly tilted toward 1 (i.e. not uniformly distributed). I want to say that a given series of them is significant between two samples.
For example, the p-values for given tests are 0.0428, 0.0585, 0.0308, 0.0342, 0.124. It is like rolling dice, the probability of rolling any particular number over and over again is extremely low with the more rolls there are, about (1/6)^n, where n is the number of tests. Similarly, using a p-value cutoff of 0.05 means that the p-value of finding that many tests in a row decreases even more quickly, (0.05)^n, here the p-value product is 3.27e-07
I was told that the best way would be to combine all possible products of n pvalues of the number of p-values, i.e. 22,152,480^n which is impossible to do on a computer.
Would Fisher's method be appropriate here?