Description Usage Arguments Value Examples
View source: R/ranged_duplet_reduction.R
This function filters the dataset based on duplet labels, secondary structure, and relative ASA of the mutations. This function takes four inputs: the data frame to reduce, duplet labels, experimental DDG values, and the specified difference between intervals in kcal/mol. Secondary structure and relative ASA of the mutations are also applicable for reduction.
1 | ranged_duplet_reduction(data, duplets, DDG, r, SS = NULL, ASA = NULL)
|
data |
A redundant dataset of mutations |
duplets |
Column name of Duplets |
DDG |
Column name of Experimental DDG values |
r |
difference between each interval |
SS |
Default is Null. Specify the column name that contains secondary structure information |
ASA |
Default is Null. Specify the column name that contains relative ASA information |
A list of reduced dataset and a box plot
1 2 3 4 5 6 | ranged_class_reduction(data = df, duplets = "Duplets",
DDG = "Experimental", r = 2)
ranged_class_reduction(data = df, duplets = "Duplets",
DDG = "Experimental", r = 2, SS = "SStructure")
ranged_class_reduction(data = df, duplets = "Duplets",
DDG = "Experimental", r = 2, ASA = "ASA")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.