# HG changeset patch # User rv43 # Date 1649274502 0 # Node ID baf9f5eef12858e4facf4f91019e5faf26a466ff # Parent 4646c4b174be6456d8f5b51149f2ff70c38ba573 "planemo upload for repository https://github.com/rolfverberg/galaxytools commit 47f763393ddfbfa788158e789ed3814f45e0aeee" diff -r 4646c4b174be -r baf9f5eef128 msnc_tools.py --- a/msnc_tools.py Wed Apr 06 19:20:30 2022 +0000 +++ b/msnc_tools.py Wed Apr 06 19:48:22 2022 +0000 @@ -619,10 +619,11 @@ if not os.path.isfile(config_file): logging.error(f'Unable to load {config_file}') return + print(f'\nLoading {config_file}\n') # Load config file self.suffix = os.path.splitext(config_file)[1] - if self.suffix == '.yml' or self.suffix == '.yaml': + if self.suffix == '.yml' or self.suffix == '.yaml' or self.suffix == '.dat': with open(config_file, 'r') as f: self.config = yaml.safe_load(f) elif self.suffix == '.txt':