Source code for EXOSIMS.util.fakeSingleRunAnalysis

# -*- coding: utf-8 -*-
"""
Template Plotting utility for post processing automation
Written by: Dean Keithly
Written on: 10/11/2018
"""

from EXOSIMS.util.vprint import vprint


[docs] class fakeSingleRunAnalysis(object): """Template format for adding singleRunPostProcessing to any plotting utility singleRunPostProcessing method is a required method with the below inputs to work with runPostProcessing.py """ _modtype = "util" def __init__(self, args=None): vprint(args) vprint("fakeSingleRunAnalysis done") pass
[docs] def singleRunPostProcessing(self, PPoutpath=None, folder=None): """This is called by runPostProcessing Args: PPoutpath (string) - output path to place data in folder (string) - full filepath to folder containing runs """ pass