compose_error_v1.4.2 {biocompute} | R Documentation |
The error domain can be used to determine what range of input returns outputs that are within the tolerance level defined in this subdomain and therefore can be used to optimize algorithm (domain definition).
compose_error_v1.4.2(empirical = NULL, algorithmic = NULL)
compose_error(empirical = NULL, algorithmic = NULL)
empirical |
Data frame. Variables include |
algorithmic |
Data frame. Variables include |
A list of class bco.domain
empirical <- data.frame(
"key" = c("false_negative_alignment_hits", "false_discovery"),
"value" = c("<0.0010", "<0.05"),
stringsAsFactors = FALSE
)
algorithmic <- data.frame(
"key" = c("false_positive_mutation_calls", "false_discovery"),
"value" = c("<0.00005", "0.005"),
stringsAsFactors = FALSE
)
compose_error(empirical, algorithmic) %>% convert_json()