SysBioChalmers/GECKO

Bug: Filter proteomics only return one column, despite there are 3 conditions

ae-tafur opened this issue · 2 comments

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),

protData.abundances = filtAbund(notAllNan);

Then, this line should be:

protData.abundances = filtAbund(notAllNan, :);

to return one column per condition

And line 140

filtAbund(:,1) = mean(condAbund,2,'omitnan');

should be

filtAbund(:,i) = mean(condAbund,2,'omitnan');

right?

right?

You are right