Bug: Filter proteomics only return one column, despite there are 3 conditions
ae-tafur opened this issue · 2 comments
ae-tafur commented
At this point filtering proteomics data contains many columns as many conditions, but this line only returns one column. This because the index inside parenthesis it is only for rows, must be filtAbund(m,n)
,
Then, this line should be:
protData.abundances = filtAbund(notAllNan, :);
to return one column per condition
edkerk commented
And line 140
should be
filtAbund(:,i) = mean(condAbund,2,'omitnan');
right?
ae-tafur commented
right?
You are right