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
Hi, When I performed LinkPeaks with a single gene name like:
LinkPeaks( object = seurat.obj, peak.assay = "ATAC", expression.assay = "RNA", genes.use = "INS")
It returned:
No peaks fall within distance threshold Have you set the proper genome and seqlevelsStyle for ATAC assay?"
I found the problem is caused by line 51 and 57. When genes.use is a single character, the expression.data will become a vector without a row.name.
expression.data <- expression.data[genes.keep, ] genes <- rownames(x = expression.data)
The text was updated successfully, but these errors were encountered:
Thanks for reporting, this should now be fixed on the develop branch. See installation instructions here: https://satijalab.org/signac/articles/install.html#development-version-1
Sorry, something went wrong.
No branches or pull requests
Hi,
When I performed LinkPeaks with a single gene name like:
It returned:
I found the problem is caused by line 51 and 57. When genes.use is a single character, the expression.data will become a vector without a row.name.
The text was updated successfully, but these errors were encountered: