Skip to contents

Normalises genes scores to account for the length of the input list.

Usage

normalise_gene_scores(data)

Arguments

data

Data frame in the format of ARDSMAICR::data_genes

Value

A data frame

Details

Normalised by dividing the gene scores for each list by the length of the list. Input columns for data_genes should be (this is the standard output of the MAIC algorithm):

  • gene - HGNC gene symbol - chr

  • 1...

  • uID - Study unique identifier. Column contains study specific gene score - dbl

  • n...

  • maic_score - MAIC score for gene - dbl

  • contributors - Studies contributing to MAIC score by method - chr

Examples

if (FALSE) {
if(interactive()){
 normalised_info_content_matrix <- ARDSMAICR::data_genes |>
 normalise_gene_scores() |>
 inf_adj_matrix(unique = FALSE)
 }
}