SysBioChalmers/GECKO

Bug detected in applyComplexData (line 77)

Yu-sysbio opened this issue · 5 comments

In E.coli case I got the error below

Undefined function 'height' for input arguments of type 'struct'.

Error in applyComplexData (line 77)
for j = 1:height(complexData)

Here I attached ComplexPortal.json.zip

I load this file by using applyComplexData and it does not generate and error. Which Matlab version do you have ?

2019b

2019b

Probably this is the problem, can you please replace in your code line 77 with this, to test if this is the problem,

for j = 1:size(complexData,1)

Now it works. Thanks!
What shall we do to fix this then?

I will commit immediately the solution