# HG changeset patch # User luca_milaz # Date 1732043817 0 # Node ID aa59a249ec0707581a536193a604106dbe451321 # Parent f6bedfd54055563ca7cf819579040aa20dced36c Uploaded diff -r f6bedfd54055 -r aa59a249ec07 COBRAxy/flux_simulation.py --- a/COBRAxy/flux_simulation.py Tue Nov 19 19:07:59 2024 +0000 +++ b/COBRAxy/flux_simulation.py Tue Nov 19 19:16:57 2024 +0000 @@ -238,7 +238,7 @@ model_input.reactions.get_by_id(rxn_index).lower_bound = row.lower_bound model_input.reactions.get_by_id(rxn_index).upper_bound = row.upper_bound - name = cell_name + name = '.'.join(cell_name.rsplit('.', 1)[:-1]) if ARGS.algorithm == 'OPTGP': OPTGP_sampler(model_input, name, ARGS.n_samples, ARGS.thinning, ARGS.n_batches, ARGS.seed)