We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The issue is still open please answer.
The text was updated successfully, but these errors were encountered:
The error is suggesting there might be a problem w/ the way you're reading data into the object containing your phenotype data.
Try explicitly specifying the delimiters you used in the file containing your phenotype data.
For example, if you load in your phenotype data with: phenotype <- read.table("somefile.txt", sep=","),head= TRUE)
You'd load in a csv file with a header row at the top of the file.
Change sep="," to sep=" " or sep="\t" and the delimiter would change to a space or tab between different columns respectively.
Sorry, something went wrong.
No branches or pull requests
The issue is still open please answer.
The text was updated successfully, but these errors were encountered: