view get_out_folder.py @ 2:8e5dbded3070 draft default tip

planemo upload for repository https://github.com/muon-spectroscopy-computational-project/muon-galaxy-tools/main/pm_muairss_write commit 4f06b404d8b7fb83995f3052faa7e2ec7811f507
author muon-spectroscopy-computational-project
date Fri, 03 Feb 2023 15:39:39 +0000
parents 0679aeb7cefc
children
line wrap: on
line source

import sys

import yaml


try:
    with open('params.yaml') as f:
        data = yaml.safe_load(f)
    sys.stdout.write(data['out_folder'])
except KeyError:
    sys.stdout.write('muon-airss-out')