R/core_functions.R
predict_coding_impact.Rd
Create Coding Impact Meta-prediction Score Data Frame
predict_coding_impact(
annovar_csv_path,
keep_highest_score = TRUE,
keep_single_symbol = TRUE,
na.string = "."
)
path to 'ANNOVAR' csv output file
boolean to indicate whether to keep only the maximal
impact score per gene (default = TRUE
). If FALSE
, all scores
per each gene are returned
in ANNOVAR outputs, a variant may be annotated as
exonic in multiple genes. This boolean argument controls whether or not to
keep only the first encountered symbol for a variant (default = TRUE
)
string that was used to indicate when a score is not available during annotation with ANNOVAR (default = '.')
data frame of meta-prediction scores containing 2 columns:
HGNC gene symbol
metapredictor impact score
path2annovar_csv <- system.file('extdata/example.hg19_multianno.csv',
package = 'driveR')
metapred_df <- predict_coding_impact(path2annovar_csv)