#' Title Find Z-score Hit
#' @param table_treate_vs_control table computed with the function
#' \code{compute_data_table}
#' @param number_barcode Number of barcode that as to be differentially
#' expressed (DE)in order to consider the gene associated
#' DE. Example a gene is associated
#' with 10 shRNA we consider a gene DE if it has at least
#' number_barcode = 5 shRNA DE.
#' @param metric A string containing the metric to use. The value allowed are
#' "median" or "mean".
#' @return Return a tibble containing the hit for the Z-score
#' @export
#' @concept find
#' @examples
#' object <- get0("object", envir = asNamespace("ScreenR"))
#' table <- compute_metrics(object,
#' control = "TRT", treatment = "Time3",
#' day = "Time3"
#' )
#'
#' # For the the median
#' result <- find_zscore_hit(table, number_barcode = 6)
#' head(result)
#'
#' # For the mean
#' result <- find_zscore_hit(table, number_barcode = 6, metric = "mean")
#' head(result)
find_zscore_hit <- function(table_treate_vs_control, number_barcode = 6,
metric = "median") {
if (metric == "median") {
hit_table <- table_treate_vs_control %>%
# Filtering of the gene that have the Z-score under the median of
# the Z-scores
dplyr::filter(.data$Zscore < median(.data$Zscore)) %>%
dplyr::group_by(.data$Gene) %>%
dplyr::summarise(numberOfBarcode = n()) %>%
# Take only the gene that have 6 barcode under the median of the
# Z-scores
dplyr::filter(.data$numberOfBarcode > number_barcode)
} else if (metric == "mean") {
hit_table <- table_treate_vs_control %>%
# Filtering of the gene that have the Z-score under the median of
# the Z-scores
dplyr::filter(.data$Zscore < mean(.data$Zscore)) %>%
dplyr::group_by(.data$Gene) %>%
dplyr::mutate(numberOfBarcode = n()) %>%
dplyr::summarise(.data$numberOfBarcode) %>%
# Take only the gene that have 6 barcode under the median of the
# Z-scores
dplyr::filter(.data$numberOfBarcode > number_barcode)
}
hit_table <- dplyr::ungroup(hit_table)
return(hit_table)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.