Skip to content
Snippets Groups Projects
Commit 95f57d81 authored by Sylvia Biscoveanu's avatar Sylvia Biscoveanu Committed by Colm Talbot
Browse files

Shortening the pymultinest output directory name and adding a warning if the…

parent b5396cca
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@ re-instantiate the Prior in most cases
- Users can now choose to overwrite existing result files, rather than creating
a .old file.
- Make likelihood values stored in the posterior correct for dynesty and nestle
- pymultinest output now stored in {outdir}/pm_{label}/
### Removed
- Removes the "--detectors" command line argument (not a general CLI requirement)
......
......@@ -360,7 +360,7 @@ class TestPymultinest(unittest.TestCase):
def test_default_kwargs(self):
expected = dict(importance_nested_sampling=False, resume=True,
verbose=True, sampling_efficiency='parameter',
outputfiles_basename='outdir/pymultinest_label/',
outputfiles_basename='outdir/pm_label/',
n_live_points=500, n_params=None,
n_clustering_params=None, wrapped_params=None,
multimodal=True, const_efficiency_mode=False,
......@@ -374,7 +374,7 @@ class TestPymultinest(unittest.TestCase):
def test_translate_kwargs(self):
expected = dict(importance_nested_sampling=False, resume=True,
verbose=True, sampling_efficiency='parameter',
outputfiles_basename='outdir/pymultinest_label/',
outputfiles_basename='outdir/pm_label/',
n_live_points=123, n_params=None,
n_clustering_params=None, wrapped_params=None,
multimodal=True, const_efficiency_mode=False,
......
......@@ -2,6 +2,7 @@ from __future__ import absolute_import
from ..utils import check_directory_exists_and_if_not_mkdir
from .base_sampler import NestedSampler
from tupak.core.utils import logger
class Pymultinest(NestedSampler):
......@@ -48,12 +49,26 @@ class Pymultinest(NestedSampler):
kwargs['n_live_points'] = kwargs.pop(equiv)
def _verify_kwargs_against_default_kwargs(self):
"""
Test the length of the directory where multinest will write the output.
This is an issue with MultiNest that we can't solve here.
https://github.com/JohannesBuchner/PyMultiNest/issues/115
"""
if not self.kwargs['outputfiles_basename']:
self.kwargs['outputfiles_basename'] = self.outdir + '/pymultinest_{}/'.format(self.label)
self.kwargs['outputfiles_basename'] =\
'{}/pm_{}/'.format(self.outdir, self.label)
if self.kwargs['outputfiles_basename'].endswith('/') is False:
self.kwargs['outputfiles_basename'] = '{}/'.format(
self.kwargs['outputfiles_basename'])
check_directory_exists_and_if_not_mkdir(self.kwargs['outputfiles_basename'])
if len(self.kwargs['outputfiles_basename']) > (100 - 22):
logger.warning(
'The length of {} exceeds 78 characters. '
' Post-processing will fail because the file names will be cut'
' off. Please choose a shorter "outdir" or "label".'
.format(self.__kwargs['outputfiles_basename']))
check_directory_exists_and_if_not_mkdir(
self.kwargs['outputfiles_basename'])
NestedSampler._verify_kwargs_against_default_kwargs(self)
def run_sampler(self):
......
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