pLOH score represents the genome that displayed LOH.

get_pLOH_score(data, rm_chrs = c("chrX", "chrY"), genome_build = "hg19")

Arguments

data

a CopyNumber object or a data.frame containing at least 'chromosome', 'start', 'end', 'segVal', "minor_cn", 'sample' these columns.

rm_chrs

chromosomes to be removed in calculation. Default is sex chromosomes (recommended).

genome_build

genome build version, should be 'hg19', 'hg38', 'mm9' or 'mm10'.

Value

A data.frame

References

Steele, Christopher D., et al. "Signatures of copy number alterations in human cancer." bioRxiv (2021).

Examples

# \donttest{
# Load toy dataset of absolute copynumber profile
load(system.file("extdata", "toy_segTab.RData",
  package = "sigminer", mustWork = TRUE
))

set.seed(1234)
segTabs$minor_cn <- sample(c(0, 1), size = nrow(segTabs), replace = TRUE)
cn <- read_copynumber(segTabs,
  seg_cols = c("chromosome", "start", "end", "segVal"),
  genome_measure = "wg", complement = TRUE, add_loh = TRUE
)
#>  [2024-03-13 10:46:36.021596]: Started.
#>  [2024-03-13 10:46:36.023285]: Genome build  : hg19.
#>  [2024-03-13 10:46:36.024638]: Genome measure: wg.
#>  [2024-03-13 10:46:36.025951]: When add_loh is TRUE, use_all is forced to TRUE.
#> Please drop columns you don't want to keep before reading.
#>  [2024-03-13 10:46:36.030026]: Chromosome size database for build obtained.
#>  [2024-03-13 10:46:36.031436]: Reading input.
#>  [2024-03-13 10:46:36.032809]: A data frame as input detected.
#>  [2024-03-13 10:46:36.03425]: Column names checked.
#>  [2024-03-13 10:46:36.035709]: Column order set.
#>  [2024-03-13 10:46:36.038584]: Chromosomes unified.
#>  [2024-03-13 10:46:36.05189]: Value 2 (normal copy) filled to uncalled chromosomes.
#>  [2024-03-13 10:46:36.056146]: Data imported.
#>  [2024-03-13 10:46:36.05759]: Segments info:
#>  [2024-03-13 10:46:36.058942]:     Keep - 477
#>  [2024-03-13 10:46:36.060323]:     Drop - 0
#>  [2024-03-13 10:46:36.062133]: Segments sorted.
#>  [2024-03-13 10:46:36.063533]: Adding LOH labels...
#>  [2024-03-13 10:46:36.065402]: Joining adjacent segments with same copy number value. Be patient...
#>  [2024-03-13 10:46:36.17035]: 410 segments left after joining.
#>  [2024-03-13 10:46:36.177701]: Segmental table cleaned.
#>  [2024-03-13 10:46:36.179195]: Annotating.
#>  [2024-03-13 10:46:36.1924]: Annotation done.
#>  [2024-03-13 10:46:36.193974]: Summarizing per sample.
#>  [2024-03-13 10:46:36.207344]: Summarized.
#>  [2024-03-13 10:46:36.208894]: Generating CopyNumber object.
#>  [2024-03-13 10:46:36.210773]: Generated.
#>  [2024-03-13 10:46:36.212134]: Validating object.
#>  [2024-03-13 10:46:36.213554]: Done.
#>  [2024-03-13 10:46:36.214929]: 0.193 secs elapsed.

df <- get_pLOH_score(cn)
df
#>                           sample      pLOH
#>                           <char>     <num>
#>  1: TCGA-05-4417-01A-22D-1854-01 0.3909788
#>  2: TCGA-06-0644-01A-02D-0310-01 0.5511234
#>  3: TCGA-19-2621-01B-01D-0911-01 0.3154956
#>  4: TCGA-26-6174-01A-21D-1842-01 0.5771739
#>  5: TCGA-99-7458-01A-11D-2035-01 0.5248894
#>  6: TCGA-A5-A0G2-01A-11D-A042-01 0.6509913
#>  7: TCGA-A8-A07S-01A-11D-A036-01 0.4353611
#>  8: TCGA-B6-A0X5-01A-21D-A107-01 0.3938989
#>  9: TCGA-CV-7432-01A-11D-2128-01 0.3113043
#> 10: TCGA-DF-A2KN-01A-11D-A17U-01 0.4588324

df2 <- get_pLOH_score(cn@data)
df2
#>                           sample      pLOH
#>                           <char>     <num>
#>  1: TCGA-05-4417-01A-22D-1854-01 0.3909788
#>  2: TCGA-06-0644-01A-02D-0310-01 0.5511234
#>  3: TCGA-19-2621-01B-01D-0911-01 0.3154956
#>  4: TCGA-26-6174-01A-21D-1842-01 0.5771739
#>  5: TCGA-99-7458-01A-11D-2035-01 0.5248894
#>  6: TCGA-A5-A0G2-01A-11D-A042-01 0.6509913
#>  7: TCGA-A8-A07S-01A-11D-A036-01 0.4353611
#>  8: TCGA-B6-A0X5-01A-21D-A107-01 0.3938989
#>  9: TCGA-CV-7432-01A-11D-2128-01 0.3113043
#> 10: TCGA-DF-A2KN-01A-11D-A17U-01 0.4588324
# }