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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Tools/paths finder resolves external paths from settings and/or environment
# variables
#
# Currently supported:
#
# PYLMM_PATH finds the root of the git repository of the pylmm_gn2 tool
import os
import sys
from wqflask import app
def get_setting(command_id,guess=None):
"""Resolve a setting from the environment or the global settings in
app.config, with get_valid_path is a function checking whether the
path points to an expected directory and returns the full path to
the binary command
guess = os.environ.get('HOME')+'/pylmm'
get_setting('PYLMM_PATH',guess)
first tries the environment variable in +id+, next gets the Flask
app setting for the same +id+ and finally does an educated
+guess+.
In all, the environment overrides the others, next is the flask
setting, then the guess. A valid path to the binary command is
returned. If none is resolved an exception is thrown.
Note that we do not use the system path. This is on purpose
because it will mess up controlled (reproducible) deployment. The
proper way is to either use the GNU Guix defaults as listed in
etc/default_settings.py or override them yourself by creating a
different settings.py file (or setting the environment).
"""
def value(command):
if command:
sys.stderr.write("Found value "+command+"\n")
return command
else:
return None
# ---- Check whether environment exists
sys.stderr.write("Looking for "+command_id+"\n")
command = value(os.environ.get(command_id))
if not command:
# ---- Check whether setting exists in app
command = value(app.config.get(command_id))
if not command:
command = value(guess)
if not command:
raise Exception(command_id+' path unknown or faulty (update settings.py?). '+command_id+' should point to the path')
return command
def valid_bin(bin):
if os.path.islink(bin) or os.path.isfile(bin):
return bin
return None
def valid_path(dir):
if os.path.isdir(dir):
return dir
return None
def pylmm_command(guess=None):
return valid_bin(get_setting("PYLMM_RUN",guess))
def gemma_command(guess=None):
return valid_bin(get_setting("GEMMA_RUN",guess))
def plink_command(guess=None):
return valid_bin(get_setting("PLINK_RUN",guess))
def flat_files(subdir=None):
base = get_setting("GENENETWORK_FILES")
if subdir:
return valid_path(base+"/"+subdir)
return valid_path(base)
def locate(name, subdir=None):
"""
Locate a static flat file in the GENENETWORK_FILES environment.
This function throws an error when the file is not found.
"""
base = get_setting("GENENETWORK_FILES")
if subdir:
base = base+"/"+subdir
if valid_path(base):
lookfor = base + "/" + name
if valid_path(lookfor):
return lookfor
else:
raise IOError("Can not locate "+lookfor)
raise IOError("Can not locate "+name)
def locate_without_error(name, subdir=None):
"""
Locate a static flat file in the GENENETWORK_FILES environment.
This function does not throw an error when the file is not found
but returns None.
"""
base = get_setting("GENENETWORK_FILES")
if subdir:
base = base+"/"+subdir
if valid_path(base):
lookfor = base + "/" + name
if valid_path(lookfor):
return lookfor
sys.stderr.write("WARNING: file "+name+" not found\n")
return None
def tempdir():
return valid_path(get_setting("TEMPDIR","/tmp"))
# Cached values
PYLMM_COMMAND = pylmm_command()
GEMMA_COMMAND = pylmm_command()
PLINK_COMMAND = pylmm_command()
FLAT_FILES = flat_files()
TEMPDIR = tempdir()
|