This is a test version of Biostars. For the public version, visit https://www.biostars.org.
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

deseq2 r mitch

1 answer

Solved:

x <- list("results1" = results1, "results2"= results2)

y <- mitch_import(x, DEtype="DESeq2")

Log in to answer this question.