Jean Vila
Jean Vila
So I though i would share an extensions to slim_optimize that has proven helpful for what i suspect is a fairly common task when performing FBA. I don't know if...
In the passage function, new resources are not being diluted during passaging if refresh = True. Is this intentional? Line 316 in ```__init__.py```
Line 309 of __init__.py. ``` N[:,k] += np.random.multinomial(int(scale*N_tot[j]*f[k,j]),(self.N/N_tot).values[:,j])*1./scale ``` should probably be ``` N[:,k] += np.random.multinomial(round(scale*N_tot[j]*f[k,j]),(self.N/N_tot).values[:,j])*1./scale ``` Int convert a float to an integer by truncating the decimal part which...