comparison data_manager/data_manager_selection_background.py @ 2:f6d4b709b0bf draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit f3390425582c26c4018eb13eb0f8f2a85189ce08"
author iuc
date Tue, 24 Aug 2021 17:58:05 +0000
parents e8718792723c
children 90e46fb64edf
comparison
equal deleted inserted replaced
1:e8718792723c 2:f6d4b709b0bf
123 shutil.copy(background_fasta, os.path.join(work_dir, table_entry)) 123 shutil.copy(background_fasta, os.path.join(work_dir, table_entry))
124 124
125 # Update Data Manager JSON and write to file 125 # Update Data Manager JSON and write to file
126 data_manager_entry = { 126 data_manager_entry = {
127 'data_tables': { 127 'data_tables': {
128 'bealign_selection': {'value': args.dbkey, 'label': args.label, 'path': table_entry} 128 'selection_background': {'value': args.dbkey, 'label': args.label, 'path': table_entry}
129 } 129 }
130 } 130 }
131 131
132 with open(os.path.join(args.output), 'w+') as fh: 132 with open(os.path.join(args.output), 'w+') as fh:
133 json.dump(data_manager_entry, fh, sort_keys=True) 133 json.dump(data_manager_entry, fh, sort_keys=True)