# HG changeset patch # User luca_milaz # Date 1728826740 0 # Node ID d1370b6bb4c52d4d8eb0fbcc0d37c2cdade0cc01 # Parent 182c710c1660a63316ca2f22469f77f122ca9ab5 Uploaded diff -r 182c710c1660 -r d1370b6bb4c5 COBRAxy/ras_to_bounds.py --- a/COBRAxy/ras_to_bounds.py Sun Oct 13 13:23:12 2024 +0000 +++ b/COBRAxy/ras_to_bounds.py Sun Oct 13 13:39:00 2024 +0000 @@ -154,6 +154,7 @@ None """ model_new = model.copy() + warning(ras_row.index) apply_ras_bounds(model_new, ras_row, rxns_ids) bounds = pd.DataFrame([(rxn.lower_bound, rxn.upper_bound) for rxn in model_new.reactions], index=rxns_ids, columns=["lower_bound", "upper_bound"]) bounds.to_csv(output_folder + cellName + ".csv", sep='\t', index=True)