Hi, I read the your three research papers, These works will surely promote our understanding of tumor evolution.
- The evolution of lung cancer and impact of subclonal selection in TRACERx
- Clonal neoantigens elicit T cell immunoreactivity and sensitivity to immune checkpoint blockade
- Tracking the Evolution of Non–Small-Cell Lung Cancer
We are also interested in the tumor clonal progress and want to use the methods provided in the above three works. Code of the first work is deposited here and of the second work is deposited in https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/src/master/. I campared the input files of both repos.
In this repo, you used integer copy number (as indicated by COPY_NUMBER_A and COPY_NUMBER_B https://github.com/McGranahanLab/CONIPHER-wrapper/blob/main/data/input_tsv.tsv) for function create.subclonal.copy.number
|
create.subclonal.copy.number <- function(seg.mat.copy, min.subclonal = 0.1) { |
while the deposited code of (Clonal neoantigens elicit T cell immunoreactivity and sensitivity to immune checkpoint blockade) (the same function https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/src/296734efc3c4a05df0f8da0b8ea472213ea26216/clonalDissectionFunctions.R#lines-553) use a raw copy number computed by ASCAT (the example input file was in https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/downloads/ExampleFiles.zip)
Some questions:
- Does the format of copy number (integer or raw copy number) matters for this clustering analysis?
- If integer copy number can be used, Can we use integer copy number computed by sequenza for this analysis?
- For ASCAT analysis, we have two segment results, if use numeric copy number (with decimal) (segments_raw: https://github.com/VanLoo-lab/ascat/blob/8e16a1ff78e3c3210ab79bd8c020904905474ca5/ASCAT/R/ascat.runAscat.R#L28), there are some failed arrays, should we remove them? If we need, is there any method to do this, I find sements (without failed arrays but integer copy number) and segments_raw much difference but the failedarrays result is length zero (so I don't know how to remove these from the segments_raw result)
Hi, I read the your three research papers, These works will surely promote our understanding of tumor evolution.
We are also interested in the tumor clonal progress and want to use the methods provided in the above three works. Code of the first work is deposited here and of the second work is deposited in https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/src/master/. I campared the input files of both repos.
In this repo, you used integer copy number (as indicated by COPY_NUMBER_A and COPY_NUMBER_B https://github.com/McGranahanLab/CONIPHER-wrapper/blob/main/data/input_tsv.tsv) for function
create.subclonal.copy.numberCONIPHER-wrapper/src/TRACERxHelperFunctions.R
Line 1 in b58235d
while the deposited code of (Clonal neoantigens elicit T cell immunoreactivity and sensitivity to immune checkpoint blockade) (the same function https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/src/296734efc3c4a05df0f8da0b8ea472213ea26216/clonalDissectionFunctions.R#lines-553) use a raw copy number computed by ASCAT (the example input file was in https://bitbucket.org/nmcgranahan/clonalneoantigenanalysispipeline/downloads/ExampleFiles.zip)
Some questions: