Closed viktor-hub closed 4 years ago
Hi @viktor-hub ,
I guess you're using IRFinder 1.2.6. And I'm sorry there is a bug in the DESeq2Constructor.R
. A quick fix is to change Line 22 in the R script
From
tmp6=max(tmp4,tmp5)
to
tmp6=pmax(tmp4,tmp5, na.rm=T)
And re-run from the beginning of the tutorial.
Alternatively, you can re-download IRFinder 1.2.6 from GitHub, as I've updated both the source code and the release.
I sincerely apologize for this terrible mistake.
Best, Dadi
Thank you!
I'm trying to conduct a differential IR analysis by following the Wiki example (https://github.com/williamritchie/IRFinder/wiki/Generalized-Linear-Model-with-Replicates).
The files
filePaths.txt
andexperiment.txt
have 3 WT samples and 3 KO samples.When I get to the step
metaList=DESeqDataSetFromIRFinder(filePaths=paths, designMatrix=experiment, designFormula=~1)
, I receive the following error:I would appreciate any advice, and thank you so much for IRFinder!