-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem in imMVP execution "Number of individuals in phenotype and genotype doesn't match" #77
Comments
DominiqueAhouanhode
changed the title
Problem in imMVP execution "Number of individuals in phenotype doesn't match"
Problem in imMVP execution "Number of individuals in phenotype and genotype doesn't match"
Apr 25, 2022
Please use |
They have a same dimension |
Would you mind sending us your data by email? we are pleased to debug rMVP with this issue. |
I have seen the error. The matrix was auto-transposed. So I used
auto-transpose=False in the conversion of my matrix in MVP file.
Thanks for this amazing package.
Le mar. 26 avr. 2022 à 10:05, Lilin Yin ***@***.***> a écrit :
… Would you mind sending us your data by email? we are pleased to debug rMVP
with this issue.
—
Reply to this email directly, view it on GitHub
<#77 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AYXNQNDPYBVWPUPICM5AZYDVG6PULANCNFSM5UIVOAAQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thanks for your answer,
But I find the same dimension when for them.
There are not another possibility please?
Le mar. 26 avr. 2022 à 02:33, Lilin Yin ***@***.***> a écrit :
… Please use dim(phenotype) and dim(genotype) to check the dimension of
those two matrices again.
—
Reply to this email directly, view it on GitHub
<#77 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AYXNQNC4LVCIMJOPAMHUH2LVG42U5ANCNFSM5UIVOAAQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
Here is my code to perform imMVP function, but error message occurs.
I have 24 individuals in the phenotype file and 24 columns in genotype matrix.
imMVP <- MVP(phe=phenotype,
geno=genotype,
map=map,
#K=Kinship,
#CV.GLM=Covariates,
#CV.MLM=Covariates,
#CV.FarmCPU=Covariates,
nPC.GLM=5,
nPC.MLM=3,
nPC.FarmCPU=3,
priority="speed",
#ncpus=10,
vc.method="BRENT",
maxLoop=10,
method.bin="FAST-LMM",
#permutation.threshold=TRUE,
#permutation.rep=100,
threshold=0.05,
method=c("GLM", "MLM", "FarmCPU")
)
Error in MVP(phe = phenotype, geno = genotype, map = map, nPC.GLM = 5, :
The number of individuals in phenotype and genotype doesn't match!
The text was updated successfully, but these errors were encountered: