Skip to content
Snippets Groups Projects
Commit f5b848e9 authored by chad.hanna's avatar chad.hanna
Browse files

gstlal_ll_inspiral_pipe: use relative paths in specifying web page stuff

parent cfd6cde4
No related branches found
No related tags found
No related merge requests found
......@@ -504,14 +504,14 @@ analysisStateNode = inspiral_pipe.generic_node(analysisStateJob, dag, [], opts =
# summary page
if options.injection_file:
pageNode = inspiral_pipe.generic_node(pageJob, dag, [], opts = {"directory":os.getcwd(), "injection-file": options.injection_file, "web-dir": options.web_dir}, input_files = {"":jobTags}, output_files = {})
pageNode = inspiral_pipe.generic_node(pageJob, dag, [], opts = {"directory":".", "injection-file": options.injection_file, "web-dir": options.web_dir}, input_files = {"":jobTags}, output_files = {})
for injfile, jobrange in inj_range_dict.items():
aggNode = inspiral_pipe.generic_node(aggJob, dag, [], opts = {"dump-period": 1, "base-dir":"%s_aggregator" % injfile.split(".")[0], "job-tag": os.getcwd(), "job-start": int(min(jobrange))+1000, "num-jobs": len(jobrange), "route": ["far_history", "likelihood_history", "snr_history"], "data-type":["max", "min"]})
else:
pageNode = inspiral_pipe.generic_node(pageJob, dag, [], opts = {"directory":os.getcwd(), "web-dir": options.web_dir}, input_files = {"":jobTags}, output_files = {})
pageNode = inspiral_pipe.generic_node(pageJob, dag, [], opts = {"directory":".", "web-dir": options.web_dir}, input_files = {"":jobTags}, output_files = {})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment