Compare commits

...

3 Commits

Author SHA1 Message Date
148bdbcdc0 Typo 2021-04-19 11:16:24 +02:00
8fdf433691 automatically save generated csv 2021-04-15 17:00:32 +02:00
4659bd1938 added foundation option some_molecules 2021-04-15 11:00:34 +02:00

View File

@@ -1,4 +1,4 @@
# mc_sim.py - Helpers for Monte-Carlo style simulations # mc_in.py - Helpers for Monte-Carlo style simulations
# #
# Author: Konstantin E Bosbach <konstantin.bosbach@mars.uni-freiburg.de> # Author: Konstantin E Bosbach <konstantin.bosbach@mars.uni-freiburg.de>
@@ -29,11 +29,13 @@ def load_config(input_folder="input/", section="default"):
print(f"No {configFilePath} provided.") print(f"No {configFilePath} provided.")
def conc_df_from_file(input_path="input/", foundation="vivo_average"): def conc_df_from_file(input_path="input/", foundation="vivo_average",
include_molecules=[], save_df=True):
sections = load_config(input_path, "") sections = load_config(input_path, "")
"""Generates concentration dataframe for mc method. """Generates concentration dataframe for mc method.
Supports different variation types (absolute/delta/relative) Supports different variation types (absolute/delta/relative)
Returns data_frame of different concentrations""" Returns data_frame of different concentrations.
include_molecules needed for option some_molecules"""
# Load all relevant sections # Load all relevant sections
list_parser_parameter = [] list_parser_parameter = []
@@ -64,6 +66,15 @@ def conc_df_from_file(input_path="input/", foundation="vivo_average"):
df_foundation[molecule] = 0 df_foundation[molecule] = 0
except: except:
print("No basis/fit_conc_result.csv file supplied") print("No basis/fit_conc_result.csv file supplied")
if foundation == "some_molecules":
try:
df_foundation = pd.read_csv(
"basis/fit_conc_result.csv").mean().to_frame().transpose()
for molecule in molecule_names:
if molecule not in include_molecules:
df_foundation[molecule] = 0
except:
print("No basis/fit_conc_result.csv file supplied")
else: else:
print("Only foundation mode vivo_average not chosen") print("Only foundation mode vivo_average not chosen")
@@ -107,4 +118,7 @@ def conc_df_from_file(input_path="input/", foundation="vivo_average"):
df_conc[parameter_name] = parameter_values df_conc[parameter_name] = parameter_values
i = i+1 i = i+1
if save_df:
df_conc.to_csv(str(input_path+"df_conc.csv"))
return df_conc return df_conc