Commit d3d1fb93 by Riccardo Vicedomini

changed some eprint with print

parent b789b9ea
......@@ -28,7 +28,7 @@ class CladeController:
self.cladeCfgParser.read_file(clade_def) # first, read default values (read_file function must be used for those)
# load user parameters
self.fasta_path = os.path.abspath(args.fasta_path)
eprint(f"[{script_name}] fasta_path: {self.fasta_path}")
print(f"[{script_name}] fasta_path: {self.fasta_path}")
self.name = args.name
self.use_dama = args.use_dama
self.usr_domain_list = args.usr_domain_list
......@@ -65,7 +65,7 @@ class CladeController:
if self.clade_root == '' or (not os.path.isdir(self.clade_root)):
self.clade_root = clade_def_root
self.cladeCfgParser.set('DEFAULT',C.CLADE_OPT_ROOT,self.clade_root)
eprint(f'[{script_name}] MetaCLADE root path: {self.clade_root}')
print(f'[{script_name}] MetaCLADE root path: {self.clade_root}')
# Get remaining options which might depend on CLADE's base path
self.CCMs_path = self.cladeCfgParser.get(C.CLADE_SECTION,C.CLADE_OPT_CCMS_PATH)
self.CCMs_ext = self.cladeCfgParser.get(C.CLADE_SECTION,C.CLADE_OPT_CCMS_EXT)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment