Nothing
"egscore.old" <-
function(formula,data,snpsubset,idsubset,kinship.matrix,naxes=3,strata,times=1,quiet=FALSE,bcast=10,clambda=TRUE,propPs=1.0) {
if (!is(data,"gwaa.data")) {
stop("wrong data class: should be gwaa.data")
}
checkphengen(data)
if (!missing(snpsubset)) data <- data[,snpsubset]
if (!missing(idsubset)) data <- data[idsubset,]
if (missing(strata)) {nstra=1; strata <- rep(0,data@gtdata@nids)}
if (length(strata)!=data@gtdata@nids) stop("Strata variable and the data do not match in length")
if (any(is.na(strata))) stop("Strata variable contains NAs")
if ( is(try(formula,silent=TRUE),"try-error") ) {
formula <- phdata(data)[[as(match.call()[["formula"]],"character")]]
}
# if (!missing(data)) attach(data@phdata,pos=2,warn.conflicts=FALSE)
if (is(formula,"formula")) {
mf <- model.frame(formula,data,na.action=na.omit,drop.unused.levels=TRUE)
y <- model.response(mf)
desmat <- model.matrix(formula,mf)
lmf <- glm.fit(desmat,y)
mids <- rownames(data@phdata) %in% rownames(mf)
resid <- lmf$resid
} else if (is(formula,"numeric") || is(formula,"integer") || is(formula,"double")) {
y <- formula
mids <- (!is.na(y))
y <- y[mids]
resid <- y
if (length(unique(resid))==1) stop("trait is monomorphic")
} else {
stop("formula argument must be a formula or one of (numeric, integer, double)")
}
# if (!missing(data)) detach(data@phdata)
if (length(strata)!=data@gtdata@nids) stop("Strata variable and the data do not match in length")
if (any(is.na(strata))) stop("Strata variable contains NAs")
if (any(strata!=0)) {
olev <- levels(as.factor(strata))
nstra <- length(olev)
tstr <- strata
for (i in 0:(nstra-1)) tstr <- replace(tstr,(strata==olev[i+1]),i)
strata <- tstr
rm(tstr)
}
nstra <- length(levels(as.factor(strata)))
tmeas <- as.logical(mids)
strata <- strata[tmeas]
if (any(tmeas == FALSE)) {
if (!quiet) warning(paste(sum(!tmeas),"people (out of",length(tmeas),") excluded because they have trait or covariate missing\n"),immediate. = TRUE)
data <- data[tmeas,]
}
tmp <- dim(kinship.matrix)
if (tmp[1] == tmp[2]) {
tmp <- t(kinship.matrix)
kinship.matrix[upper.tri(kinship.matrix)] <- tmp[upper.tri(tmp)]
ev <- eigen(kinship.matrix,symmetric=TRUE)$vectors
rownames(ev) <- rownames(kinship.matrix)
ev <- ev[data@phdata$id,1:naxes]
# ev <- ev[tmeas,]
rm(kinship.matrix,tmp);gc()
} else {
if (tmp[2]<naxes) stop("Eigenvector matrix supplied, but naxes supplied is smaller than naxes parameter")
ev <- kinship.matrix[data@phdata$id,1:naxes]
# ev <- ev[tmeas,]
rm(kinship.matrix);gc()
}
resid <- lm(resid~ev)$resid
lenn <- data@gtdata@nsnps;
out <- list()
for (j in c(1:(times+1*(times>1)))) {
if (j>1) resid <- sample(resid,replace=FALSE)
chi2 <- .C("egscore",as.raw(data@gtdata@gtps),as.double(resid),as.integer(naxes),as.double(ev),as.integer(data@gtdata@nids),as.integer(data@gtdata@nsnps), as.integer(nstra), as.integer(strata), chi2 = double(7*data@gtdata@nsnps), PACKAGE="GenABEL")$chi2
# if (any(data@gtdata@chromosome=="X")) {
# ogX <- data@gtdata[,data@gtdata@chromosome=="X"]
# sxstra <- strata; sxstra[ogX@male==1] <- strata[ogX@male==1]+nstra
# chi2X <- .C("egscore",as.raw(ogX@gtps),as.double(resid),as.integer(naxes),as.double(ev),as.integer(ogX@nids),as.integer(ogX@nsnps), as.integer(nstra*2), as.integer(sxstra), chi2 = double(7*ogX@nsnps), PACKAGE="GenABEL")$chi2
# revec <- (data@gtdata@chromosome=="X")
# revec <- rep(revec,6)
# chi2 <- replace(chi2,revec,chi2X)
# rm(ogX,chi2X,revec);gc(verbose=FALSE)
# }
if (j == 1) {
chi2.1df <- chi2[1:lenn];
out$chi2.1df <- chi2.1df
chi2.2df <- rep(NA,lenn) #chi2[(lenn+1):(2*lenn)];
out$chi2.2df <- chi2.2df
actdf <- chi2[(2*lenn+1):(3*lenn)];
lambda <- list()
if (is.logical(clambda)) {
if (lenn<10) {
warning("no. observations < 10; Lambda set to 1")
lambda$estimate <- 1.0
lambda$se <- NA
} else {
if (lenn<100) warning("Number of observations < 100, Lambda estimate is unreliable")
lambda <- estlambda(chi2.1df,plot=FALSE,proportion=propPs)
if (lambda$estimate<1.0 && clambda==TRUE) {
warning("Lambda estimated < 1, set to 1")
lambda$estimate <- 1.0
lambda$se <- NA
}
}
} else {
if (is.numeric(clambda)) {
lambda$estimate <- clambda
lambda$se <- NA
} else if (is.list(clambda)) {
if (any(is.na(match(c("estimate","se"),names(clambda)))))
stop("when clambda is list, should contain estimate and se")
lambda <- clambda
lambda$se <- NA
} else {
stop("clambda should be logical, numeric, or list")
}
}
chi2.c1df <- chi2.1df/lambda$estimate
effB <- chi2[(3*lenn+1):(lenn*4)]
effAB <- chi2[(4*lenn+1):(lenn*5)]
effBB <- chi2[(5*lenn+1):(lenn*6)]
if (times>1) {
pr.1df <- rep(0,lenn)
pr.2df <- rep(0,lenn)
pr.c1df <- rep(0,lenn)
}
} else {
th1 <- max(chi2[1:lenn])
pr.1df <- pr.1df + 1*(chi2.1df < th1)
pr.2df <- pr.2df + 1*(chi2.2df < max(chi2[(lenn+1):(2*lenn)]))
pr.c1df <- pr.c1df + 1*(chi2.c1df < th1)
if (!quiet && ((j-1)/bcast == round((j-1)/bcast))) {
cat("\b\b\b\b\b\b",round((100*(j-1)/times),digits=2),"%",sep="")
flush.console()
}
}
}
if (times > bcast) cat("\n")
if (times>1) {
out$P1df <- pr.1df/times
out$P1df <- replace(out$P1df,(out$P1df==0),1/(1+times))
out$P2df <- pr.2df/times
out$P2df <- replace(out$P2df,(out$P2df==0),1/(1+times))
out$Pc1df <- pr.c1df/times
out$Pc1df <- replace(out$Pc1df,(out$Pc1df==0),1/(1+times))
} else {
out$P1df <- pchisq(chi2.1df,1,lower.tail=FALSE)
out$P2df <- pchisq(chi2.2df,actdf,lower.tail=FALSE)
out$Pc1df <- pchisq(chi2.c1df,1,lower.tail=FALSE)
}
out$lambda <- lambda
out$effB <- effB
out$effAB <- effAB
out$effBB <- effBB
out$snpnames <- data@gtdata@snpnames
out$map <- data@gtdata@map
out$chromosome <- data@gtdata@chromosome
out$idnames <- data@gtdata@idnames
out$formula <- match.call()
out$family <- paste("score test for association, eigen-adjustment")
out$N <- chi2[(6*lenn+1):(lenn*7)]
class(out) <- "scan.gwaa"
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.