-
Notifications
You must be signed in to change notification settings - Fork 11
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
mutations with no data in some samples #26
Comments
The major_cn has to be greater than zero in all samples or a mutation is filtered out, since there is possible way to have a mutation at a loci which is absent. Long term this needs to be altered, but for now your second solution correct. Ideally you would put the actual CN and allele counts observed in the sample, even if it is not reported as mutated by the variant caller. |
Thank you @aroth85 for your feedback. So ideally I can add ref_counts = counts reported in that location alt_counts = 0 as there is no altered allele and for the cn i used the cp at the gene level Did i get it right ? |
Hello, I'm in the similar situation, and followed the second advice. I attached my example. test.input.txt Best regards, |
I'm afraid I should input ref/alt_count of "tumor+normal", not only "tumor" ?? I tried to input former (ref_count≠0, alt_count=0), the result was CCF=0. Or my poor understanding? |
Now I imput tumor ref/alt count, and calculate CCF succesfully.
Following is a part of my data, which called 0 alt_count. Hugo_Symbol NCBI_Build Chromosome Start_Position End_Position Strand Variant_Classification Variant_Type Reference_Allele Tumor_Seq_Allele1 Tumor_Seq_Allele2 Tumor_Sample_Barcode t_depth t_ref_count t_alt_count |
Hello @aroth85,
I'am using PyClone-VI to infer the clonal structure between samples from the same subject
My aim is to have a description of mutation gain/loss
as stated in the README file PyClone-VI removes mutations without entries for all samples
this is the case in my data and also in the example provided from tracerx "/examples/tracerx.tsv"
the recommended solution is to "set ref/alt counts to 0 for the corresponding sample."
so I have added this line
but as in the original file this mutation was removed in PyClone resulting table
My second attempt was to add a major_cn equal to that in normal cell
in this case the mutation was retained with 0 in cellular prevalence in the R2 sample
What should I consider for the major_cn ? the normal_cn , copy number of the overlapping gene segment even if there is no mutated allele ?
The text was updated successfully, but these errors were encountered: