File size: 645 Bytes
8a79f2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
###################
### ENVIRONMENT ###
###################
import git
import imp
import os
import yaml
# LOAD GSLAB MAKE
ROOT = '.'
ROOTDEEP = '../..'
f, path, desc = imp.find_module('gslab_make', [os.path.join(ROOT, 'lib')])
gs = imp.load_module('gslab_make', f, path, desc)
###########
### RUN ###
###########
### RUN SCRIPTS
#gs.run_module(root = ROOT, module = 'data/temptation')
gs.run_module(root = ROOT, module = 'analysis/descriptive')
gs.run_module(root = ROOTDEEP, module = 'analysis/treatment_effects')
gs.run_module(root = ROOTDEEP, module = 'analysis/structural')
#gs.run_module(root = ROOTDEEP, module = 'paper_slides')
|