diff --git a/bilby/core/result.py b/bilby/core/result.py index 657eb66ed730416521151984d4d05139dc3cf584..ed8dd799658d2dacc74c6a96893e82973a57e60c 100644 --- a/bilby/core/result.py +++ b/bilby/core/result.py @@ -1288,6 +1288,10 @@ class ResultList(object): # get first result result = deepcopy(self.results[0]) + # append 'combined' to the label + if result.label is not None: + result.label += 'combined' + # check all results are equivalent sampler = result.sampler if not np.all([res.sampler == sampler for res in self]):