print('No mechanism designed as main ("kt", "k", "t", "n").\nk = model_core main for kinetic data and model_to_translate main for thermo data.\n'+\
't = model_to_translate main for kinetic data and core_mechanism main for thermo data.\n'+\
'kt = model_core main for kinetic and themo data.\nn = modle_to_translate main for kinetic and thermo data.\n'+\
'Default order task is order=kt. You can also specify a list of order to generate multiple mechanism in the form "order=order1, order2, order3, ...".\n'+\
'\nORDER FOR EXTRACTION_MERGING IS ALWAYS SET TO "kt" !!!')
iftask_requestedisFalse:
print('No merging task requested ("extraction" or "full"). Default merging task is task=full.\n')
ifstring_to_del==[]:
print('No string to remove. You can specify to delete species containing a specific string with "string_to_del=chr1, chr2, chr3, ...".\n')
iflist_to_del==[]:
print('No species to remove. You can specify to delete specific species "list_to_del=species1, species2, species3, ...".\n')
retained=f'kinetics and thermodynamics retained from {md_core}'
eliforder=='k':
retained=f'kinetics retained from {md_core}, thermodynamics retained from {md_translate}'
eliforder=='t':
retained=f'kinetics retained from {md_translate}, thermodynamics retained from {md_core}'
eliforder=='n':
retained=f'kinetics and thermodynamics retained from {md_translate}'
else:
raiseException("Wrong order. New order are 'k', 't', 'kt', 'n' depending on whether the core mechanism retains its kinetics, its thermodynamics, both or neither")