pachterlab / sleuth

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

sleuth_to_matrix returns columns in random order #174

Closed vegardny closed 6 years ago

vegardny commented 6 years ago

This might be a feature since it is deliberately done:

s_data <- s_data[, sample(1:ncol(s_data))]

However this behaviour is undocumented and may lead to users errors.

i use sleuth_0.29.0

pimentel commented 6 years ago

Ugh. That's an artifact of testing from a bugfix a while ago... Fixing this also uncovered some other nasty bugs. Anyway, fixed in devel and coming in the imminent v0.30.0 release.

Thanks for reporting