Process sestats input into a hit incidence matrix
Source:R/jam_prep_sestats_hitim.R
process_sestats_to_hitim.Rd
Process sestats input into a hit incidence matrix
Usage
process_sestats_to_hitim(
sestats,
cutoff_names = NULL,
contrast_names = NULL,
assay_names = NULL,
contrast_suffix = NULL,
rename_contrasts = FALSE,
rows = NULL,
verbose = FALSE,
...
)
Arguments
- sestats
one of the following:
list
object output fromse_contrast_stats()
, containing"hit_array"
array
in format"hit_array"
with dimnames"Cutoffs","Contrasts","Signals"
.list
ofcharacter
vectors representingrownames(se)
for the parentheatmap_se()
function.list
ofnumeric
vectors named byrownames(se)
.
- cutoff_names, contrast_names, assay_names
character
ornumeric
passed tohit_array_to_list()
when the input issestats
orhit_array
.- contrast_suffix
character
optional suffix appended to the end of each contrast name.- rename_contrasts
logical
indicating whether to rename contrasts by callingcontrast2comp()
- rows
character
orNULL
with optional fixed set of rownames expected in the output matrix. Whenrows=NULL
all rows are returned using data fromsestats
. Otherwise, only rows defined byrows
are returned.- verbose
logical
indicating whether to print verbose output.- ...
additional arguments are passed to
contrast2comp()
if relevant.
See also
Other jamses stats:
ebayes2dfs()
,
format_hits()
,
handle_na_values()
,
hit_array_to_list()
,
run_limma_replicate()
,
save_sestats()
,
se_contrast_stats()
,
sestats_to_dfs()
,
sestats_to_df()
,
voom_jam()