Open Lamoumni18 opened 2 weeks ago
GAPIT report "There are 0 common individuals in genotype , phenotype and CV files." Please check taxa of your genotype and phenotype files.
Well, first I've used pheno and geno datafiles that were already used with sucess in other packages. Moreover, in order to assure that I'll avoid such problems, I used the following simple function:
colnames(mygeno)[12:268] <- mypheno$taxa
And then, I've even went further...
to_check <- data.frame(pheno = mypheno$taxa, geno = colnames(mygeno)[12:268])
to_check$Check <- to_check$pheno == to_check$genono
sum(to_check$Check == FALSE)
[1] 0
So, I don't know exactly why it consider that no common individuals are found
Hi, the HapMap read into GAPIT should not have header. The first row should be the title of each column.
First I would like to point out that in page 6 of the GAPIT manual, it is mentionned that "GAPIT accepts multiple input data formats, including both numeric, hapmap, and PLINK genotype formats". However, later on we find that only HapMap and numeric formats are accepted, I don't know if I'm missing something here, but just to mention it. Now, I converted my data to HapMap format, upload it successfully, and checked the format, which was similar to the example shown in the manual. However, upon running an initial analysis, I encountered the following error, which I'm still unable to overcome: