SGoF(u, alpha = 0.05, gamma = 0.05)gamma is estimated without assuming that all the null hypotheses are true, which typically results in a more conservative decision (from this the method’s name). When the number of tests is large, Conservative SGoF and Binomial SGoF report approximately the same result. This method should no be used when the number of tests is small, because the binomial-normal approximation will perform poorly. Conservative SGoF method has the main properties of Binomial SGoF like weak control of the family-wise error rate (FWER) and the false discovery rate (FDR) at level alpha and a good balance between FDR and power, particularly when the number of tests is large, and the effect level is weak to moderate. See Binomial.SGoF for more details.
Typically, the choice alpha=gamma will be used; this common value will be set as one of the usual significance levels (0.001, 0.01, 0.05, 0.1). Note however that alpha and gamma have different roles.
The FDR is estimated by the simple method proposed by: Dalmasso, Broet, Moreau (2005), by taking n=1 in their formula.
The adjusted p-value of a given p-value pi is defined as the smallest alpha0 for which the null hypothesis attached to pi is rejected by Conservative SGoF with alpha=gamma=alpha0. Actually, Conservative.SGoF function provides these adjusted p-values by restricting alpha0 to the set of original p-values (Castro Conde and de Uña Álvarez , 2013 13/05).summary.SGoF,plot.SGoFp<-runif(387)^2 #387 independent p-values, non-uniform intersection null violated
res<-SGoF(p)
summary(res) #number of rejected nulls, estimated FDR
plot(res) #adjusted p-valuesRun the code above in your browser using DataLab