Change lower bound 'optim' function in DESeq2::unmix() to 0.001 to prevent error
1
0
Entering edit mode
a.v.vliet • 0
@avvliet-18792
Last seen 5.4 years ago

Hi,

I have more of a suggestion rather than a question. I used the unmix() function from the DEseq2 package on my data and kept getting the same error

Error in optim(par = rep(1, ncol(pure)), fn = sumLossVST, gr = NULL,  : 
  non-finite finite-difference value

A search for the error led me to a PDF where a solution is described, see page 7. I retrieved the unmix() code from GitHub and changed line 98 to

method="L-BFGS-B", lower=c(.0001,.0001),upper=c(Inf,Inf))$par

The function now worked for me. Of course now all values that would be zero are 0.001 or slightly higher but otherwise the output I got makes sense. Just wanted to report this because I'm not a statistician and don't know if this could have changed my output in any significant way. If not this might be helpful to people encountering the same problem.

deseq2 unmix • 1.7k views
ADD COMMENT
2
Entering edit mode
@mikelove
Last seen 4 hours ago
United States

Hi,

Thanks for the post. I’ve noticed that the optimization works stably and without error if the “pure” reference types are not too highly correlated. Anyway this is a good thing to check because it will produce non identifiable solutions.

That’s just another word of advice, but anyone is of course welcome to modify the code as needed. unmix() was added to DESeq2 in 2017 because some bioinformatic groups here at UNC wanted to do deconvolution in combination with our VST implementation. It’s a straightforward use of non-negative regression with comparison on the VST scaled data.

ADD COMMENT
0
Entering edit mode
Hi Michael, Many thanks for your answer. My pure samples are indeed quite similar (many >0.8 Pearson correlation), so that must've caused the error. I will check their correlation beforehand in the future.
ADD REPLY

Login before adding your answer.

Traffic: 874 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6