Score candidate genes and select the top n genes
Usage
score_genes(
mined_candidates,
hubs = NULL,
tfs = NULL,
pick_top = 10,
weight_tf = 2,
weight_hub = 2,
weight_both = 3
)
Arguments
- mined_candidates
Data frame resulting from
mine_candidates()
ormine_step()
.- hubs
Character vector of hub genes.
- tfs
Character vector of transcription factors.
- pick_top
Number of top genes to select. Default: 10.
- weight_tf
Numeric scalar with the weight to which correlation coefficients will be multiplied if the gene is a TF. Default: 2.
- weight_hub
Numeric scalar with the weight to which correlation coefficients will be multiplied if the gene is a hub. Default: 2.
- weight_both
Numeric scalar with the weight to which correlation coefficients will be multiplied if the gene is both a TF and a hub. Default: 3.