View source: R/commonSeqsPlot.R
| commonSeqsPlot | R Documentation | 
Creates a scatter plot of just the sequences in common between two samples.
commonSeqsPlot(sample1, sample2, productive_aa, show = "common")
sample1 | 
 A name of a repertoire_id in a list of data frames generated by the LymphoSeq function productiveSeq.  | 
sample2 | 
 A name of a repertoire_id in a list of data frames generated by the LymphoSeq function productiveSeq.  | 
productive_aa | 
 A tibble of productive amino acid sequences produced by the LymphoSeq function productiveSeq containing the samples to be compared.  | 
show | 
 A character vector specifying whether only the common sequences should be shown or all sequences. Available options are "common" or "all".  | 
The plot is made using the package ggplot2 and can be reformatted using ggplot2 functions. See examples below.
Returns a frequency scatter plot of two samples showing only the shared sequences.
An excellent resource for examples on how to reformat a ggplot can be found in the R Graphics Cookbook online (http://www.cookbook-r.com/Graphs/).
commonSeqs
file_path <- system.file("extdata", "TCRB_sequencing", package = "LymphoSeq2")
stable <- readImmunoSeq(path = file_path)
atable <- productiveSeq(study_table = stable, aggregate = "junction_aa")
commonSeqsPlot("TRB_Unsorted_32", "TRB_Unsorted_83", 
   productive_aa = atable)
# Change the X and Y axis to log-10 scale
commonSeqsPlot("TRB_Unsorted_32", "TRB_Unsorted_83", 
   productive_aa = atable) +
   ggplot2::scale_x_log10() + 
   ggplot2::scale_y_log10() + 
   ggplot2::annotation_logticks(sides = "bl")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.