Error in mitch analysis on R
I am trying to perform mitch analysis on R, I started by creating the results text files:
x <- list("results1", "results2")
y <- mitch_import(x, DEtype="DESeq2")
I got that error:
Error in mitch_import(x, DEtype = "DESeq2") :
Error: Input (x) must be a NAMED list of dataframes.
How to fix it?
Thanks in advance
• 753 views
•
link
1 answer
Solved:
x <- list("results1" = results1, "results2"= results2)
y <- mitch_import(x, DEtype="DESeq2")
• 0 views
•
link
Log in to answer this question.