tidy_vst_psi | R Documentation |
This function works with inclusion tables generated both by vast-tools combine or compare. In the latter case, if there's a 'dPSI' column it will be automatically detect and included in the reshaped table.
tidy_vst_psi(
vst_psi_tbl,
num_id_cols = 6,
num_of_Score_Types = 5,
quality_col_suffix = "-Q",
return_quality_scores = TRUE,
return_S1_only = TRUE,
verbose = FALSE,
add_ID_col = FALSE,
col_ID_name = "banana"
)
vst_psi_tbl |
A dataframe generated with |
num_id_cols |
How many first num_id_cols to consider as info/metadata/IDs of the AS event ID in the table. |
num_of_Score_Types |
How many quality scores are present in the columns with headers ending with |
quality_col_suffix |
Suffix identifying the quality control columns. Default is "-Q". |
return_quality_scores |
Logical. Do you want the individual scores to be returned in the output data.frame? Defaul |
return_S1_only |
Logical. Return only the first quality score, default |
verbose |
Print out information |
add_ID_col |
Logical. Do you want to add an extra |
col_ID_name |
Extra column that could be used to add a new identifier to the data. Default is "banana". |
This function works well in conjunction with grep_psi()
function.
A reshaped data.frame
in long format as tibble
.
grep_psi(path_to_vst_PSI_tbl, vst_id = "HsaEX0000001") |>
tidy_vst_psi() -> psi_tbl
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.