Skip to content
Snippets Groups Projects
Commit 0c4dd2bb authored by alex's avatar alex
Browse files

change output naming

parent ab5a1ec1
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ def main(MSfile, numSB=10, NDPPPfill=True, stepname=None, mergeLastGroup=False, ...@@ -127,7 +127,7 @@ def main(MSfile, numSB=10, NDPPPfill=True, stepname=None, mergeLastGroup=False,
if timestamp in time_groups: if timestamp in time_groups:
time_groups[timestamp]['files'].append(ms) time_groups[timestamp]['files'].append(ms)
else: else:
time_groups[timestamp] = {'files': [ ms ], 'basename' : os.path.splitext(ms)[0] } time_groups[timestamp] = {'files': [ ms ], 'basename' : '_'.join(os.path.splitext(os.path.basename(ms))[0].split('_')[:2]) }
logging.info("Found" + str(len(time_groups)) + "time-groups") logging.info("Found" + str(len(time_groups)) + "time-groups")
# sort time-groups by frequency # sort time-groups by frequency
...@@ -233,7 +233,7 @@ def main(MSfile, numSB=10, NDPPPfill=True, stepname=None, mergeLastGroup=False, ...@@ -233,7 +233,7 @@ def main(MSfile, numSB=10, NDPPPfill=True, stepname=None, mergeLastGroup=False,
files.append('dummy.ms') files.append('dummy.ms')
if not skip_this: if not skip_this:
freqID = int((freqborders[groupIdx]+freqborders[groupIdx+1])/2e6) freqID = int((freqborders[groupIdx]+freqborders[groupIdx+1])/2e6)
groupname = time_groups[time]['basename']+'_%Xt_%dMHz'%(time,freqID) groupname = time_groups[time]['basename']+'_%dMHz_uv'%(freqID)
if type(stepname) is str: if type(stepname) is str:
groupname += stepname groupname += stepname
groupname = os.path.basename(groupname) groupname = os.path.basename(groupname)
......
...@@ -93,3 +93,4 @@ hints: ...@@ -93,3 +93,4 @@ hints:
DockerRequirement: DockerRequirement:
dockerPull: lofareosc/prefactor3-cwl dockerPull: lofareosc/prefactor3-cwl
stdout: find_skymodel_cal.log stdout: find_skymodel_cal.log
stderr: find_skymodel_cal_err.log
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