Commit information:
Commit id: dc6a4fb0d2f235494ba7c90fce88f63c80dd496a
fiz an issue with log_average.
Shows up in affyPLM. this manifests as a breakage on some platforms, and on others it resulted in extremely long runtimes
Committed by: Ben Bolstad
Author Name: Ben Bolstad
Commit date: 2014-09-04 20:14:53 -0700
Author date: 2014-09-04 20:14:53 -0700
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/preprocessCore@93843 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -195,7 +195,7 @@ void LogAverage(double *data, size_t rows, size_t cols, int *cur_rows, double *r |
195 | 195 |
|
196 | 196 |
for (j=0; j < cols; j++){ |
197 | 197 |
results[j] = LogAvg(&z[j*nprobes],nprobes); |
198 |
- resultsSE[j] = LogAvgSE(&z[j*nprobes], results[j],rows); |
|
198 |
+ resultsSE[j] = LogAvgSE(&z[j*nprobes], results[j],nprobes); |
|
199 | 199 |
} |
200 | 200 |
Free(z); |
201 | 201 |
} |