check.contrast.format {metaseqR} | R Documentation |
Checks if the contrast vector follows the specified format. Internal use only.
check.contrast.format(cnt, sample.list)
cnt |
contrasts vector. |
sample.list |
the input sample list. |
Panagiotis Moulos
sample.list <- list(A=c("A1","A2"),B=c("B1","B2","B3")) cnt <- c("A_vs_B") # Will work #cnt <- c("A_vs_C") ## Will throw error! check.contrast.format(cnt,sample.list)