-
Notifications
You must be signed in to change notification settings - Fork 97
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
Not all cells requested could be found in the fragment file #748
Comments
In the count matrix, cell barcodes have the format like: |
Thank you for the reply. I have already done all above suggestions (replacing all the commas in the fragment file with periods, then sorting, compress with bgzip, and index with tabix), but is getting the same error. I could email a Dropbox folder link to the dataset (dataset in required format for input to Signac), if it helps? Greatly appreciate any help. |
Sure, you can email a link to [email protected] and I will take a look |
In this case the error message was misleading, the real issue was that there is a column missing in the fragment file. I have added a check for the correct number of columns in If you add the 5th column to the fragment file (just add 1 for all rows), then it should work as expected. eg: gzip -d GSM4156597_skin.late.anagen.atac.fragments.sorted.bed.gz
awk 'BEGIN {FS=OFS="\t"} {print $0, 1}' GSM4156597_skin.late.anagen.atac.fragments.sorted.bed > frags.bed
bgzip -@ 10 frags.bed
tabix -p bed frags.bed.gz |
i met the same problem , how did you solve it? give me help, please!
|
@XinshuXie please open a new issue including the full code and output of |
Sorry to reopen this, but I get the same error, |
I have downloaded the SHARE-seq ATAC-seq data and trying to create ChromatinAssay object:
I get the following error:
However, when I read in all the barcodes from the fragments file manually and compared them to barcodes of the ATAC counts matrix, all barcodes from counts are in the fragments, although there are more barcodes in fragments file.
I see that a similar issue was raised before, but even setting
max.lines = NULL
andtolerance = 0
to perform an exhaustive search, still resulted in the same error as above.Greatly appreciate if you could let me know what I might be doing wrong.
The text was updated successfully, but these errors were encountered: