scATAC-seq analysis, data preprocessing
Hi,
During scATAC-seq data preprocessing, does it make sense to filter data matrix, so it contains only most variable peaks (in the same way how we do it for scRNA-seq), before any further dimensionality reduction or clustering analysis?
Thanks
scatac-seq
• 3,022 views
•
link
updated
by
GouthamAtla
•
written
by
chipolino •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Best practice for combining Ambient RNA correction and sc.pp.regress_out() in scRNA-seq
written by messy_cat •I am new to scRNA-seq data analysis and would appreciate some guidance on the preprocessing workflow. I noticed that my dataset contains stress- and hypoxia-related …
-
Tool: New scRNA-seq analysis software - Web-base - No coding needed
written by Matt •Hi, I'm pleased to introduce sc-analyzer, a new web-based software designed for single-cell RNA sequencing (scRNA-seq) analysis. sc-analyzer offers an intuitive interface similar to the …
-
News: Online single-cell RNA-seq Analysis Course (Nov 4-8)
written by Physalia-coursesDear all, Join our online course on Single-Cell RNA-Seq Analysis with R/Bioconductor (Nov 4-8). > Course website: https://www.physalia-courses.org/courses-workshops/course18/ This course will introduce biologists and bioinformaticians …
-
Correlation analysis in single-cell sequencing data
written by Yingying •Hi everyone, I am working with scRNA-seq and scATAC-seq datasets, and I'm wondering if it is suitable to apply correlation analysis to single-cell sequencing data …
-
How to remove the analysis slots added to my scRNA-Seq and scATAC-Seq data objects in R?
written by mohammedtoufiq91Hi, I have a question about the removing or deleting the analysis slots added to my `scRNA-Seq` and `scATAC-Seq` data objects in R perhaps performed …
-
scATAC-seq and scRNA-seq integration issue
written by inayat45shaikh •Hi All, I have scATAC-seq and scRNA-seq multi-OMICs dataset and I am trying to do integration analysis with the tutorial using vignette https://satijalab.org/seurat/articles/atacseq_integration_vignette.html But at …
-
Constructing GRNs from multimodal data?
written by kgoss •Hello all, I have a multimodal single cell dataset consisting of scRNA-seq and scATAC-seq. I'm wanting to construct gene regulatory networks, and was looking into …
-
PCA vs ICA prior to t-SNE or UMAP
written by rtrende •I'm working on a project involving analyzing scRNA-seq data. A large part of the project involves clustering cells, identifying DE genes between clusters, pathway analysis …
-
mitochondrial/ribosomal protein genes in scRNA-seq analysis
written by chipolino •Hi everyone, According to this [tutorial][1], during the first steps of scRNA-seq analysis (normalization, dimensionality reduction, and finding DE genes), you should remove all mitochondrial/ribosomal …
-
scRNA-seq: how to visualize SNN-Cliq clustering result
written by pacmanI am comparing various clustering methods for scRNA-seq data. Does it make sense to show SNN-Cliq clustering result on a 2D tSNE plot? I am …
To better define cell types, it makes sense.
That depends on the type of analysis you're referring to. PCA, for example, will always focus on the most variable regions. I haven't looked at scATAC-seq data myself but given that it's basically binary, I'm not sure how well the typical variance measures even hold up.
can I do sparse PCA on scATAC-seq matrix and see, what peaks correspond to, let's say the first component? And choose those as the most informative (variable)?
Well, I'm not sure how "peaks" would be defined in scATAC-seq as there's a maximum of 2 reads per open region per cell. Maybe you want to collapse the information from multiple cells at the same region? What exactly is the question you're trying to address?
Usually, dimensionality reduction is done on top variable features (usually top 500). So you can take top variable peaks and build a PCA and see how the tSNE clusters looks like. If you want to overcome the sparsity of data, you could use KNN approach to merge data from n-similar cell. Before doing that I would check tSNE on top 500 variable peaks.
I did not know that the data is binary, so this paper seems to have a nice method to process the data.
Thanks! But how do you find most variable peaks, if the data is binary?
Sorry I am not aware that it's binary. I updated my answer and moved it to comment as it doesn't qualify as an answer anymore
Asked on BioC in the first place and then cross-posted here as suggested there.