error in classify tumor cell and nontumor cell?
Opened this issue · 6 comments
Hi,
Thanks for your software. I want to use CONICSmat to classify tumor and nontumor cells in a 10X dataset. AND I come across two probelms.
1. Compared to tumor cell markers, I'm surprised that CONICSmat result may be reversed.
2. The color of Chromosome Heatmap is very light.
I really appreciate your positive reponse.Thank you very much!
Best regards
Mengyan Zhu
Hi Mengyan,
Even I am facing the same problem with my data. Did you figure-out this issue?
In case you have, will you mind to share your experience about how did you manage to get it solved?
Thanks
I'm getting the same issue. I'm looking for specific chromosomal deletions as tumour markers, but the histogram used to detect tumour/normal does not keep the order of clusters consistent (in terms of high expression and low expression clusters) between samples. Therefore, using normal = which(hi==1) as shown in the tutorial does not always work. Is there any way to specify a deletion event rather than a generic CNV event?
Hi dsteuckm,
Its not always "normal = which(hi==1)", you need to check the figure you generate after the step
candRegions=rownames(lrbic)[which(lrbic[,"BIC difference"]>200 & lrbic[,"LRT adj. p-val"]<0.01)]
That figure will show you which cluster does not harbor any of the copy number in your dataset and pick that one as normal.
I hope this is the answer you are looking for.
Hi @biobug16,
Thanks for the reply. I should have clarified; I do understand that you can determine which clusters are normal, my point was more from an automation perspective. If I am running a large number of samples, and the histogram produced does not necessarily have any "order" in terms of which CNVs occur from left to right, it will require visual inspection each time. It would be helpful to have a function with a readout of which clusters contain which CNVs, so we could then subset the histogram in that way.
Hi,
Thanks for your software. I want to use CONICSmat to classify tumor and nontumor cells in a 10X dataset. AND I come across two probelms.
- Compared to tumor cell markers, I'm surprised that CONICSmat result may be reversed.
- The color of Chromosome Heatmap is very light.
I really appreciate your positive reponse.Thank you very much!Best regards
Mengyan Zhu
got similar issue to test glioma datasets, and have tried different ways to modify the expression level and those cutoffs.
for 10x dataset usually it couldn't have as large nFeature/nCount as smart-seq2 data, then might use log2(CPM +1) rather than 1e4 based normalization to get a significant (brighter~) CNV pattern in the end.
about the possible automatical solution to filter for right tumor cells I think it might be tissue/tumor specific. for gliomas, could define putative 'myeloid' cell group (like microglia, T cell) using markers from the top highly variable genes 'ts' in tsne clustering plot, then after 'hi <- ...' could set '1' or '2' as normal cells according to which has the much larger proportion in these 'myeloid' cells.