simplot | R Documentation |
Sequence similarity plot
simplot(
file,
query,
window = 200,
step = 20,
group = FALSE,
id,
sep,
sd = FALSE,
smooth = FALSE,
smooth_params = list(method = "loess", se = FALSE)
)
file |
alignment fast file |
query |
query sequence |
window |
sliding window size (bp) |
step |
step size to slide the window (bp) |
group |
whether grouping sequence.(eg. For "A-seq1,A-seq-2,B-seq1 and B-seq2", using sep = "-" and id = 1 to divide sequences into groups A and B) |
id |
position to extract id for grouping; only works if group = TRUE |
sep |
separator to split sequence name; only works if group = TRUE |
sd |
whether display standard deviation of similarity among each group; only works if group=TRUE |
smooth |
FALSE(default)or TRUE; whether display smoothed spline. |
smooth_params |
a list that add params for geom_smooth, (default: smooth_params = list(method = "loess", se = FALSE)) |
ggplot object
guangchuang yu
fas <- system.file("extdata/GVariation/sample_alignment.fa",
package="ggmsa")
simplot(fas, 'CF_YL21')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.