Mercurial > repos > bimib > cobraxy
comparison COBRAxy/flux_simulation_beta.py @ 422:27c5a67f1ee6 draft
Uploaded
author | francesco_lapi |
---|---|
date | Tue, 09 Sep 2025 09:58:19 +0000 |
parents | f9fe44c65772 |
children | f49c951c9fe6 |
comparison
equal
deleted
inserted
replaced
421:f9fe44c65772 | 422:27c5a67f1ee6 |
---|---|
413 ARGS.output_types = ARGS.output_type.split(",") if ARGS.output_type else [] | 413 ARGS.output_types = ARGS.output_type.split(",") if ARGS.output_type else [] |
414 # optional analysis output types -> list or empty | 414 # optional analysis output types -> list or empty |
415 ARGS.output_type_analysis = ARGS.output_type_analysis.split(",") if ARGS.output_type_analysis else [] | 415 ARGS.output_type_analysis = ARGS.output_type_analysis.split(",") if ARGS.output_type_analysis else [] |
416 | 416 |
417 print("=== INPUT FILES ===") | 417 print("=== INPUT FILES ===") |
418 print(ARGS.input_files) | 418 print(f"{ARGS.input_files}") |
419 print(ARGS.file_names) | 419 print(f"{ARGS.file_names}") |
420 print(ARGS.output_type) | 420 print(f"{ARGS.output_type}") |
421 print(ARGS.output_types) | 421 print(f"{ARGS.output_types}") |
422 print(ARGS.output_type_analysis) | 422 print(f"{ARGS.output_type_analysis}") |
423 | 423 |
424 if ARGS.model_and_bounds == "True": | 424 if ARGS.model_and_bounds == "True": |
425 # MODE 1: Model + bounds (separate files) | 425 # MODE 1: Model + bounds (separate files) |
426 print("=== MODE 1: Model + Bounds (separate files) ===") | 426 print("=== MODE 1: Model + Bounds (separate files) ===") |
427 | 427 |