anders-biostat / rlc_tutorial

GNU Lesser General Public License v3.0
0 stars 1 forks source link

citeseq_data.rda contains faulty expr #2

Closed FelixTheStudent closed 5 years ago

FelixTheStudent commented 5 years ago

@simon-anders recompute the citeseq_data.rda object, this time transposing the expr object. Thus, instead of expr <- apply( countMatrix, 1, function( x ) sqrt( x / sf ) )
do expr <- t( apply( countMatrix, 1, function( x ) sqrt( x / sf ) ) )

simon-anders commented 5 years ago

fixed in commit cf1869b