Skip to content

Commit

Permalink
revert some changes which werent needed
Browse files Browse the repository at this point in the history
  • Loading branch information
GarethCabournDavies committed Aug 22, 2024
1 parent b12bad3 commit c6152aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pycbc/workflow/minifollowups.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def setup_foreground_minifollowups(workflow, coinc_file, single_triggers,
node.add_opt('--inspiral-data-read-name', insp_data_name)
node.add_opt('--inspiral-data-analyzed-name', insp_anal_name)
if tags:
node.add_list_opt('--tags', [tag.lower() for tag in tags])
node.add_list_opt('--tags', tags)
node.new_output_file_opt(workflow.analysis_time, '.dax', '--dax-file')
node.new_output_file_opt(workflow.analysis_time, '.dax.map', '--output-map')

Expand Down Expand Up @@ -216,7 +216,7 @@ def setup_single_det_minifollowups(workflow, single_trig_file, tmpltbank_file,
check_existing_options=False,
)
if tags:
node.add_list_opt('--tags', [tag.lower() for tag in tags])
node.add_list_opt('--tags', tags)
node.new_output_file_opt(workflow.analysis_time, '.dax', '--dax-file')
node.new_output_file_opt(workflow.analysis_time, '.dax.map',
'--output-map')
Expand Down Expand Up @@ -310,7 +310,7 @@ def setup_injection_minifollowups(workflow, injection_file, inj_xml_file,
node.add_opt('--inspiral-data-read-name', insp_data_name)
node.add_opt('--inspiral-data-analyzed-name', insp_anal_name)
if tags:
node.add_list_opt('--tags', [tag.lower() for tag in tags])
node.add_list_opt('--tags', tags)
node.new_output_file_opt(workflow.analysis_time, '.dax', '--dax-file', tags=tags)
node.new_output_file_opt(workflow.analysis_time, '.dax.map', '--output-map', tags=tags)

Expand Down Expand Up @@ -1236,7 +1236,7 @@ def setup_upload_prep_minifollowups(workflow, coinc_file, xml_all_file,
node.add_opt('--inspiral-data-read-name', insp_data_name)
node.add_opt('--inspiral-data-analyzed-name', insp_anal_name)
if tags:
node.add_list_opt('--tags', [tag.lower() for tag in tags])
node.add_list_opt('--tags', tags)
node.new_output_file_opt(workflow.analysis_time, '.dax', '--dax-file')
node.new_output_file_opt(workflow.analysis_time, '.dax.map', '--output-map')

Expand Down

0 comments on commit c6152aa

Please sign in to comment.