I followed the TCGAWorkflow to run GAIA using TCGA Malignant melanoma (SKCM) level 3 segment data. According to GAIA load_cnv documentation, estimated copy number for segmented regions (kind of aberrations) are 0, 1 and 2 for losses, LOHs and gains. However, in TCGAWorkflow section "Identification of recurrent CNV in cancer", cnvMatrix contains 0s for losses and 1s for gains.
# Add label (0 for loss, 1 for gain)
cnvMatrix <- cbind(cnvMatrix,Label=NA)
cnvMatrix[cnvMatrix[,"Segment_Mean"] < -0.3,"Label"] <- 0
cnvMatrix[cnvMatrix[,"Segment_Mean"] > 0.3,"Label"] <- 1
cnvMatrix <- cnvMatrix[!is.na(cnvMatrix$Label),]
It would be extremely helpful if you can clarify the reason to deviate from GAIA documentation or let me know whether I have misunderstood the TCGAWorkflow.
I followed the TCGAWorkflow to run GAIA using TCGA Malignant melanoma (SKCM) level 3 segment data. According to GAIA load_cnv documentation, estimated copy number for segmented regions (kind of aberrations) are 0, 1 and 2 for losses, LOHs and gains. However, in TCGAWorkflow section "Identification of recurrent CNV in cancer", cnvMatrix contains 0s for losses and 1s for gains.
It would be extremely helpful if you can clarify the reason to deviate from GAIA documentation or let me know whether I have misunderstood the TCGAWorkflow.