Description Usage Arguments Value Examples
View source: R/plot_arch_for_clusters.R
Given a collection of FASTA sequences as a DNAStringSet object, and the clusters information, this function plots the architectures for all clusters. If a name for the PDF file is provided, the resulting set of architecture sequence logos are saved as a multi-page PDF.
1 2 3 4 5 6 7 8 9 10 11 12 |
seqs |
Sequences as a |
clust_list |
Clusters as a list of sequence IDs in each cluster. |
pos_lab |
Labels for sequence positions, should be of same length as that of the sequences. Default value is NULL, when the positions are labeled from 1 to the length of the sequences. |
xt_freq |
Frequency of x-axis ticks. |
set_titles |
Specify TRUE if titles are to be written for the plots. With FALSE, there are no titles for the plots. The title for each plot includes the current cluster number, total number of clusters, start and end sequence numbers in the collection. |
pdf_width, pdf_height |
Width and height in inches of the PDF file. Default values are 11 and 2. |
pdf_name |
Specify the PDF filename. |
show |
Set TRUE if plot should be immediately shown/plotted. Default is TRUE. By setting FALSE, one can simply collect the list of plots and use any other approach to arrange/display them. See examples. |
... |
Additional args passed to |
A list of (ggplot2-based) sequence logo plots is returned. When a valid file name is specified, the list of plots is also written to the PDF file (one plot per page).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | res <- readRDS(system.file("extdata", "example_archRresult.rds",
package = "archR", mustWork = TRUE))
# Default position labels 1 to length of the sequences.
# Can also set pos_lab based on biology, e.g., use -50 to 49 denoting
# 50 basepairs upstream and 49 downstream of the transcription start site
# located at position 0.
arch_pl <- plot_arch_for_clusters(seqs = seqs_str(res),
clust_list = res$clustSol$clusters,
pos_lab = NULL,
pdf_name = NULL,
fixed_coord = TRUE)
# Using cowplot::plot_grid
arch_pl <- plot_arch_for_clusters(seqs = seqs_str(res),
clust_list = res$clustSol$clusters,
pos_lab = seq(100),
method = "bits",
pdf_name = NULL, show = FALSE)
cowplot::plot_grid(plotlist = arch_pl, ncol=1)
# Plotting architecture sequence logos with probability instead of
# information content
arch_pl <- plot_arch_for_clusters(seqs = seqs_str(res),
clust_list = res$clustSol$clusters,
pos_lab = seq(100),
method = "prob",
pdf_name = NULL, show = FALSE)
cowplot::plot_grid(plotlist = arch_pl, ncol=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.