check whether the proteomics ratio results files is following guidelines
check_ratio_proteomics(
df_ratio,
isPTM,
f_proof = TRUE,
output_prefix = "ratio-file",
out_qc_folder = NULL,
printPDF = TRUE,
return_n_issues = FALSE,
verbose = TRUE
)
(data.frame) proteomics ratio results data frame (required)
(logical) TRUE
if a PTM results file
(logical) TRUE
(default) to print out distribution and NA plots
(char) if f_proof = TRUE
, provide a prefix for the output name
(char) if f_proof is TRUE
, a folder path can be provided
(otherwise print in current working directory)
(logical) if TRUE
(default print plots to pdf)
(logical) if TRUE
returns the number of issues.
(logical) TRUE
(default) shows messages
(int) number of issues identified
{
test <- check_ratio_proteomics(df_ratio = metadata_metabolites_named,
isPTM = TRUE, return_n_issues = TRUE, verbose = FALSE)
# "test" should be NULL
}