Tally a variation object like MAF, CopyNumber and return a matrix for NMF de-composition and more. This is a generic function, so it can be further extended to other mutation cases. Please read details about how to set sex for identifying copy number signatures. Please read https://osf.io/s93d5/ for the generation of SBS, DBS and ID (INDEL) components.

sig_tally(object, ...)

# S3 method for CopyNumber
sig_tally(
  object,
  method = "Wang",
  ignore_chrs = NULL,
  indices = NULL,
  add_loh = FALSE,
  feature_setting = sigminer::CN.features,
  cores = 1,
  keep_only_matrix = FALSE,
  ...
)

# S3 method for RS
sig_tally(object, keep_only_matrix = FALSE, ...)

# S3 method for MAF
sig_tally(
  object,
  mode = c("SBS", "DBS", "ID", "ALL"),
  ref_genome = "BSgenome.Hsapiens.UCSC.hg19",
  genome_build = NULL,
  add_trans_bias = FALSE,
  ignore_chrs = NULL,
  use_syn = TRUE,
  keep_only_matrix = FALSE,
  ...
)

Arguments

object

a CopyNumber object or MAF object or SV object (from read_sv_as_rs).

...

custom setting for operating object. Detail see S3 method for corresponding class (e.g. CopyNumber).

method

method for feature classification, can be one of "Wang" ("W"), "S" (for method described in Steele et al. 2019), "X" (for method described in Tao et al. 2023).

ignore_chrs

Chromsomes to ignore from analysis. e.g. chrX and chrY.

indices

integer vector indicating segments to keep.

add_loh

flag to add LOH classifications.

feature_setting

a data.frame used for classification. Only used when method is "Wang" ("W"). Default is CN.features. Users can also set custom input with "feature", "min" and "max" columns available. Valid features can be printed by unique(CN.features$feature).

cores

number of computer cores to run this task. You can use future::availableCores() function to check how many cores you can use.

keep_only_matrix

if TRUE, keep only matrix for signature extraction. For a MAF object, this will just return the most useful matrix.

mode

type of mutation matrix to extract, can be one of 'SBS', 'DBS' and 'ID'.

ref_genome

'BSgenome.Hsapiens.UCSC.hg19', 'BSgenome.Hsapiens.UCSC.hg38', 'BSgenome.Mmusculus.UCSC.mm10', 'BSgenome.Mmusculus.UCSC.mm9', etc.

genome_build

genome build 'hg19', 'hg38', 'mm9' or "mm10", if not set, guess it by ref_genome.

add_trans_bias

if TRUE, consider transcriptional bias categories. 'T:' for Transcribed (the variant is on the transcribed strand); 'U:' for Un-transcribed (the variant is on the untranscribed strand); 'B:' for Bi-directional (the variant is on both strand and is transcribed either way); 'N:' for Non-transcribed (the variant is in a non-coding region and is untranslated); 'Q:' for Questionable. NOTE: the result counts of 'B' and 'N' labels are a little different from SigProfilerMatrixGenerator, the reason is unknown (may be caused by annotation file).

use_syn

Logical. If TRUE, include synonymous variants in analysis.

Value

a list contains a matrix used for NMF de-composition.

Details

For identifying copy number signatures, we have to derive copy number features firstly. Due to the difference of copy number values in sex chromosomes between male and female, we have to do an extra step if we don't want to ignore them.

I create two options to control this, the default values are shown as the following, you can use the same way to set (per R session).

options(sigminer.sex = "female", sigminer.copynumber.max = NA_integer_)

  • If your cohort are all females, you can totally ignore this.

  • If your cohort are all males, set sigminer.sex to 'male' and sigminer.copynumber.max to a proper value (the best is consistent with read_copynumber).

  • If your cohort contains both males and females, set sigminer.sex as a data.frame with two columns "sample" and "sex". And set sigminer.copynumber.max to a proper value (the best is consistent with read_copynumber).

Methods (by class)

  • sig_tally(CopyNumber): Returns copy number features, components and component-by-sample matrix

  • sig_tally(RS): Returns genome rearrangement sample-by-component matrix

  • sig_tally(MAF): Returns SBS mutation sample-by-component matrix and APOBEC enrichment

References

Wang, Shixiang, et al. "Copy number signature analyses in prostate cancer reveal distinct etiologies and clinical outcomes." medRxiv (2020).

Steele, Christopher D., et al. "Undifferentiated sarcomas develop through distinct evolutionary pathways." Cancer Cell 35.3 (2019): 441-456.

Mayakonda, Anand, et al. "Maftools: efficient and comprehensive analysis of somatic variants in cancer." Genome research 28.11 (2018): 1747-1756.

Roberts SA, Lawrence MS, Klimczak LJ, et al. An APOBEC Cytidine Deaminase Mutagenesis Pattern is Widespread in Human Cancers. Nature genetics. 2013;45(9):970-976. doi:10.1038/ng.2702.

Bergstrom EN, Huang MN, Mahto U, Barnes M, Stratton MR, Rozen SG, Alexandrov LB: SigProfilerMatrixGenerator: a tool for visualizing and exploring patterns of small mutational events. BMC Genomics 2019, 20:685 https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-6041-2

See also

sig_estimate for estimating signature number for sig_extract, sig_auto_extract for extracting signatures using automatic relevance determination technique.

Author

Shixiang Wang

Examples

# Load copy number object
load(system.file("extdata", "toy_copynumber.RData",
  package = "sigminer", mustWork = TRUE
))
# \donttest{
# Use method designed by Wang, Shixiang et al.
cn_tally_W <- sig_tally(cn, method = "W")
#>  [2024-03-13 10:53:46.962193]: Started.
#>  [2024-03-13 10:53:46.965808]: Step: getting copy number features.
#>  [2024-03-13 10:53:46.994985]: Getting breakpoint count per 10 Mb...
#>  [2024-03-13 10:53:47.260406]: Getting breakpoint count per chromosome arm...
#>  [2024-03-13 10:53:47.437491]: Getting copy number...
#>  [2024-03-13 10:53:47.445114]: Getting change-point copy number change...
#>  [2024-03-13 10:53:47.592673]: Getting length of chains of oscillating copy number...
#>  [2024-03-13 10:53:47.741307]: Getting (log10 based) segment size...
#>  [2024-03-13 10:53:47.748866]: Getting the minimal number of chromosome with 50% CNV...
#>  [2024-03-13 10:53:47.825438]: Getting burden of chromosome...
#>  [2024-03-13 10:53:47.841615]: Gotten.
#>  [2024-03-13 10:53:47.843478]: Step: generating copy number components.
#>  [2024-03-13 10:53:47.845169]: `feature_setting` checked.
#>  [2024-03-13 10:53:47.84888]: Step: counting components.
#>  [2024-03-13 10:53:48.180823]: Counted.
#>  [2024-03-13 10:53:48.183122]: Step: generating components by sample matrix.
#>  [2024-03-13 10:53:48.186218]: Matrix generated.
#>  [2024-03-13 10:53:48.188205]: 1.226 secs elapsed.
# }
# Use method designed by Steele et al.
# See example in read_copynumber
# \donttest{
# Prepare SBS signature analysis
laml.maf <- system.file("extdata", "tcga_laml.maf.gz", package = "maftools")
laml <- read_maf(maf = laml.maf)
#> -Reading
#> -Validating
#> -Silent variants: 475 
#> -Summarizing
#> -Processing clinical data
#> --Missing clinical data
#> -Finished in 0.191s elapsed (0.237s cpu) 
if (require("BSgenome.Hsapiens.UCSC.hg19")) {
  mt_tally <- sig_tally(
    laml,
    ref_genome = "BSgenome.Hsapiens.UCSC.hg19",
    use_syn = TRUE
  )
  mt_tally$nmf_matrix[1:5, 1:5]

  ## Use strand bias categories
  mt_tally <- sig_tally(
    laml,
    ref_genome = "BSgenome.Hsapiens.UCSC.hg19",
    use_syn = TRUE, add_trans_bias = TRUE
  )
  ## Test it by enrichment analysis
  enrich_component_strand_bias(mt_tally$nmf_matrix)
  enrich_component_strand_bias(mt_tally$all_matrices$SBS_24)
} else {
  message("Please install package 'BSgenome.Hsapiens.UCSC.hg19' firstly!")
}
#>  [2024-03-13 10:53:48.384378]: Started.
#>  [2024-03-13 10:53:48.388958]: We would assume you marked all variants' position in + strand.
#>  [2024-03-13 10:53:48.391051]: Reference genome loaded.
#>  [2024-03-13 10:53:48.395989]: Variants from MAF object queried.
#>  [2024-03-13 10:53:48.398562]: Chromosome names checked.
#>  [2024-03-13 10:53:48.402093]: Sex chromosomes properly handled.
#>  [2024-03-13 10:53:48.40397]: Only variants located in standard chromosomes (1:22, X, Y, M/MT) are kept.
#>  [2024-03-13 10:53:48.409205]: Variant start and end position checked.
#>  [2024-03-13 10:53:48.413469]: Variant data for matrix generation preprocessed.
#>  [2024-03-13 10:53:48.414977]: SBS matrix generation - start.
#>  [2024-03-13 10:53:48.417105]: Extracting 5' and 3' adjacent bases.
#>  [2024-03-13 10:53:48.743473]: Extracting +/- 20bp around mutated bases for background C>T estimation.
#>  [2024-03-13 10:53:49.151433]: Estimating APOBEC enrichment scores.
#>  [2024-03-13 10:53:49.153552]: Performing one-way Fisher's test for APOBEC enrichment.
#>  [2024-03-13 10:53:49.230558]: APOBEC related mutations are enriched in 3.297% of samples (APOBEC enrichment score > 2; 6 of 182 samples)
#>  [2024-03-13 10:53:49.23435]: Creating SBS sample-by-component matrices.
#>  [2024-03-13 10:53:49.239156]: SBS-6 matrix created.
#>  [2024-03-13 10:53:49.244447]: SBS-96 matrix created.
#>  [2024-03-13 10:53:49.260556]: SBS-1536 matrix created.
#>  [2024-03-13 10:53:49.262692]: Return SBS-96 as major matrix.
#>  [2024-03-13 10:53:49.265692]: Done.
#>  [2024-03-13 10:53:49.26755]: 0.883 secs elapsed.
#>  [2024-03-13 10:53:49.269277]: Started.
#>  [2024-03-13 10:53:49.273544]: We would assume you marked all variants' position in + strand.
#>  [2024-03-13 10:53:49.275681]: Reference genome loaded.
#>  [2024-03-13 10:53:49.280721]: Variants from MAF object queried.
#>  [2024-03-13 10:53:49.283594]: Chromosome names checked.
#>  [2024-03-13 10:53:49.287324]: Sex chromosomes properly handled.
#>  [2024-03-13 10:53:49.289629]: Only variants located in standard chromosomes (1:22, X, Y, M/MT) are kept.
#>  [2024-03-13 10:53:49.295524]: Variant start and end position checked.
#>  [2024-03-13 10:53:49.301136]: Variant data for matrix generation preprocessed.
#>  [2024-03-13 10:53:49.30315]: SBS matrix generation - start.
#>  [2024-03-13 10:53:49.305707]: Extracting 5' and 3' adjacent bases.
#>  [2024-03-13 10:53:49.688189]: Extracting +/- 20bp around mutated bases for background C>T estimation.
#>  [2024-03-13 10:53:50.066149]: Estimating APOBEC enrichment scores.
#>  [2024-03-13 10:53:50.068179]: Performing one-way Fisher's test for APOBEC enrichment.
#>  [2024-03-13 10:53:50.143516]: APOBEC related mutations are enriched in 3.297% of samples (APOBEC enrichment score > 2; 6 of 182 samples)
#>  [2024-03-13 10:53:50.147157]: Creating SBS sample-by-component matrices.
#>  [2024-03-13 10:53:50.151805]: SBS-6 matrix created.
#>  [2024-03-13 10:53:50.157109]: SBS-96 matrix created.
#>  [2024-03-13 10:53:50.171888]: SBS-1536 matrix created.
#>  [2024-03-13 10:53:50.218352]: SBS-24 (6x4) matrix created.
#>  [2024-03-13 10:53:50.267709]: SBS-384 (96x4) matrix created.
#>  [2024-03-13 10:53:50.395082]: SBS-6144 (1536x4) matrix created.
#>  [2024-03-13 10:53:50.397084]: Return SBS-192 as major matrix.
#>  [2024-03-13 10:53:50.404902]: Done.
#>  [2024-03-13 10:53:50.40665]: 1.137 secs elapsed.
#>             sample component   N_T   N_U Total_T Total_U Enrichment    p_value
#>             <char>    <char> <int> <int>   <int>   <int>      <num>      <num>
#>    1: TCGA-AB-2838       C>T     3     7      12       8  0.4285714 0.01976661
#>    2: TCGA-AB-3002       C>T     5    11      13      14  0.4545455 0.05423790
#>    3: TCGA-AB-2950       C>T     4     2       4       6  2.0000000 0.07619048
#>    4: TCGA-AB-2878       C>T     3     4       8       4  0.7500000 0.08080808
#>    5: TCGA-AB-2863       T>C     3     0       8       9        Inf 0.08235294
#>   ---                                                                         
#> 1154: TCGA-AB-3012       T>A     0     0       5       2        NaN 1.00000000
#> 1155: TCGA-AB-3012       T>C     1     0       5       2        Inf 1.00000000
#> 1156: TCGA-AB-2876       C>T     3     4       5       6  0.7500000 1.00000000
#> 1157: TCGA-AB-2920       C>G     1     0       7       2        Inf 1.00000000
#> 1158: TCGA-AB-2920       C>T     6     2       7       2  3.0000000 1.00000000
#>             fdr
#>           <num>
#>    1: 0.1185997
#>    2: 0.3254274
#>    3: 0.4571429
#>    4: 0.4848485
#>    5: 0.4941176
#>   ---          
#> 1154: 1.0000000
#> 1155: 1.0000000
#> 1156: 1.0000000
#> 1157: 1.0000000
#> 1158: 1.0000000
# }