You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, thank you for creating this interesting package!
I am attempting to create my peak level Seurat object. I initially received an error when using PeakSeuratFromTransfer that there were no matching barcodes despite arranging them in the same order when aggregating peaks (the combined prepared Seurat object is has barcode suffixes _1-1, _2-1 etc, which was how I understood the Sierra barcode appending worked as well, but maybe I am incorrect?)
When I tried NewPeakSeurat I encountered another error. It seems to want tsne coordinates even though I am supplying umap coordinates in the function.
[1] "Creating Seurat object with 35146 peaks and 60227 cells"
Warning: The following arguments are not used: row.names
[1] "Preparing feature table for DEXSeq"
Performing log-normalization
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
[1] "No t-SNE coodinates included"
Error in umap.coords[colnames(peaks.seurat), ] : subscript out of bounds
Any help would be appreciated!
Thanks
The text was updated successfully, but these errors were encountered:
For aggregating multiple runs, by default with barcodes will be appended with '-1', '-2' etc. Looks like this is not the case for your data, so you will need to update the suffixes manually.
Regarding the t-SNE coordinates, yes this should be fixed in the current version as noted by @pratarora.
Hi there, thank you for creating this interesting package!
I am attempting to create my peak level Seurat object. I initially received an error when using PeakSeuratFromTransfer that there were no matching barcodes despite arranging them in the same order when aggregating peaks (the combined prepared Seurat object is has barcode suffixes _1-1, _2-1 etc, which was how I understood the Sierra barcode appending worked as well, but maybe I am incorrect?)
When I tried NewPeakSeurat I encountered another error. It seems to want tsne coordinates even though I am supplying umap coordinates in the function.
Here is what I did along with the error
umap.coords <- query[["proj.umap"]]@cell.embeddings
[1] "Creating Seurat object with 35146 peaks and 60227 cells"
Warning: The following arguments are not used: row.names
[1] "Preparing feature table for DEXSeq"
Performing log-normalization
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
[1] "No t-SNE coodinates included"
Error in umap.coords[colnames(peaks.seurat), ] : subscript out of bounds
Any help would be appreciated!
Thanks
The text was updated successfully, but these errors were encountered: