Description Usage Arguments Details Value See Also Examples
View source: R/ScoreAssessmentResults.R
Scores the results from the assessment of a set of genes using one of three modes
1 | ScoreAssessmentResults(x, mode = "a")
|
x |
An object of class |
mode |
Must either be "a" (use all evidence), "p" (use proteomics evidence only), or "c" (use evolutionary conservation evidence only) |
ScoreAssessmentResults
calculates an accuracy-like score for the categorization of genes within the given
Results
object using the given mode of calculation. The score for a mode is equal to the number of genes that
were categorized to be correct for that mode divided by the total number of genes that could have been categorized as
correct for that mode (i.e. a count of the number of genes that had available and useable evidence for that particular
mode).
Open reading frames with proteomics evidence but no predicted start are included in the total gene count when calculating the accuracy-like score for the proteomics mode and for the all evidence mode.
A numeric vector of length one containing the calculated accuracy-like score.
1 2 3 4 5 6 7 8 9 | currResObj <- readRDS(system.file("extdata",
"MGAS5005_PreSaved_ResultsObj_Prodigal.rds",
package = "AssessORF"))
ScoreAssessmentResults(currResObj, "a")
ScoreAssessmentResults(currResObj, "c")
ScoreAssessmentResults(currResObj, "p")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.