-
Notifications
You must be signed in to change notification settings - Fork 36
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
Cells without alpha chain #246
Comments
Hi @nicoac, how did you do the QC filtering? |
Now that you've said that I realized I'm not dumping out the orphan VDJ, only the multi-chain. Is it possible to filter those cells as the multi-chain was done here? : adata = adata[adata.obs["multi_chain"] != "True", :].copy(). I guess I'm just surprised with how large that clone appears in the clonotype network graph when looking at the bar graph. |
Sure! You can always check the available categories of a column in adata.obs['chain_pairing'].unique() To filter, you can use, e.g. adata = adata[~adata.obs["chain_pairing"].isin(["orphan VDJ", "orphan VJ", "no IR"]), :].copy() (untested, hope there are no typos) |
Closing this for now - feel free to reopen if there are any other questions! |
Thanks so much Gregor. Will try this out soon. |
Hello! Really enjoying the package. I have a question regarding cells without alpha chains and how they should be interpreted. I have a very large TCR clonotype that is returning without an alpha chain and I'm having a hard time understanding why this would be the case based on the qc steps that were taken.
Results of QC:
Clonotype network after ct_cluster_aa_alignment
Any advice or thoughts would be much appreciated!
The text was updated successfully, but these errors were encountered: