Description Usage Arguments Value Examples
View source: R/standard_tables.R
Builds a standard table from user variants
1 | build_standard_table(bay, g, table_name, strand_type = NA, overwrite = FALSE)
|
bay |
Input samples |
g |
A BSgenome object indicating which genome reference the variants and their coordinates were derived from. |
table_name |
Name of standard table to build SBS96, SBS192, DBS, or Indel |
strand_type |
Only for SBS192 Transcript_Strand or Replication_Strand |
overwrite |
Overwrite existing count table |
None
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | g <- select_genome("19")
bay <- readRDS(system.file("testdata", "bagel.rds", package = "BAGEL"))
build_standard_table(bay, g, "SBS96", overwrite = TRUE)
bay <- readRDS(system.file("testdata", "bagel.rds", package = "BAGEL"))
annotate_transcript_strand(bay, "19")
build_standard_table(bay, g, "SBS192", "Transcript_Strand")
bay <- readRDS(system.file("testdata", "bagel.rds", package = "BAGEL"))
annotate_replication_strand(bay, BAGEL::rep_range)
build_standard_table(bay, g, "SBS192", "Replication_Strand")
bay <- readRDS(system.file("testdata", "dbs_bagel.rds",
package = "BAGEL"))
build_standard_table(bay, g, "DBS")
bay <- readRDS(system.file("testdata", "indel_bagel.rds", package = "BAGEL"))
build_standard_table(bay, g, table_name = "INDEL")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.