-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
I am having trouble running backwash with length(cov_of_interest) > 1. With 102 samples of gene expression data in 18 groups of affymetrix arrays, I get the following error:
ematrix <- load("ematrix.RData")
groups <- as.factor(sub("_[_0-9\\.]*$", "", rownames(ematrix)))
X <- model.matrix(~groups)
mout <- backwash(ematrix, X, cov_of_interest=2:3, scale_var=TRUE)
Number of confounders not provided so being estimated with package sva.
longer object length is not a multiple of shorter object lengthlonger object length is not a multiple of shorter object length
Error in eigen(crossprod(alpha_tilde, alpha_tilde), symmetric = TRUE) : infinite or missing values in 'x'
4.
stop("infinite or missing values in 'x'")
3.
eigen(crossprod(alpha_tilde, alpha_tilde), symmetric = TRUE)
2.
backwash_second_step(betahat_ols = betahat_ols_star, S_diag = S_diag_star, alpha_tilde = alpha_tilde_star, tau2_seq = tau2_seq, lambda_seq = lambda_seq, pi_init_type = pi_init_type, scale_var = scale_var, sprop = sprop, var_inflate_pen = var_inflate_pen)
1.
backwash(ematrix, X, cov_of_interest = 2:3, scale_var = TRUE)
Expression matrix is here: ematrix.zip
I tried simulating some simpler data to recreate the issue and I got another issue.
Y <- matrix(rnbinom(n=100*20000, size=200, mu=1000), ncol=20000)
groups <- as.factor(rep(1:10, times=10))
X <- model.matrix(~groups)
mout <- backwash(Y, X, cov_of_interest=2:3, scale_var=TRUE)
Number of confounders not provided so being estimated with package sva.
Error: alpha_tilde is not a matrix
4.
stop(assertError(attr(res, "msg")))
3.
assertthat::assert_that(is.matrix(alpha_tilde))
2.
backwash_second_step(betahat_ols = betahat_ols_star, S_diag = S_diag_star, alpha_tilde = alpha_tilde_star, tau2_seq = tau2_seq, lambda_seq = lambda_seq, pi_init_type = pi_init_type, scale_var = scale_var, sprop = sprop, var_inflate_pen = var_inflate_pen)
1.
backwash(Y, X, cov_of_interest = 2:3, scale_var = TRUE)
Any ideas how I can use mouthwash or backwash to estimate effects of more than one covariate?
Thanks!