Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue where region did not work for leveled var fix #46 ; assumes ... #55

Merged
merged 1 commit into from
Aug 21, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/python/wgne/scripts/wgne_metrics_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,12 @@ def applyCustomKeys(O,custom_dict,var):

regions_dict = {}
for var in parameters.vars:
rg = regions.get(var,[None,])
vr = var.split("_")[0]
rg = regions.get(vr,[None,])
if not isinstance(rg,(list,tuple)):
rg = [rg,]
regions_dict[var] = rg
regions_dict[vr] = rg
print "RGION DICT:",regions_dict

for var in parameters.vars: #### CALCULATE METRICS FOR ALL VARIABLES IN vars
try:
Expand Down