Description Usage Arguments Value See Also Examples
View source: R/plot_signature_strand_bias.R
Plot strand bias per mutation type for each signature.
1 | plot_signature_strand_bias(signatures_strand_bias)
|
signatures_strand_bias |
Signature matrix with 192 features |
Barplot
link{extract_signatures}
,
link{mut_matrix}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## See the 'mut_matrix()' example for how we obtained the following
## mutation matrix.
mut_mat_s <- readRDS(system.file("states/mut_mat_s_data.rds",
package = "MutationalPatterns"
))
## Extracting signatures can be computationally intensive, so
## we use pre-computed data generated with the following command:
# nmf_res_strand <- extract_signatures(mut_mat_s, rank = 2)
nmf_res_strand <- readRDS(system.file("states/nmf_res_strand_data.rds",
package = "MutationalPatterns"
))
## Provide column names for the plot.
colnames(nmf_res_strand$signatures) <- c("Signature A", "Signature B")
## Creat figure
plot_signature_strand_bias(nmf_res_strand$signatures)
## You can also plot the bias of samples
plot_signature_strand_bias(mut_mat_s[, c(1, 2)])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.