pachterlab / sleuth

Differential analysis of RNA-Seq
http://pachterlab.github.io/sleuth
GNU General Public License v3.0
305 stars 95 forks source link

Simple Error in measurement_error.R #284

Open pcp2117 opened 1 year ago

pcp2117 commented 1 year ago

Hi --

I found what I think is a pretty simple error in measurement_error.R. In the following block of code, $lwr is incorrectly written into upr:

if ('upr' %in% names(extra_opts)) { upr <- extra_opts$lwr } else { upr <- 0.75 }

Suggest the following quick fix: upr <- extra_opts$lwr -----------> upr <- extra_opts$upr