-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
135 lines (118 loc) · 5.41 KB
/
setup.py
File metadata and controls
135 lines (118 loc) · 5.41 KB
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
125
126
127
128
129
130
131
132
133
134
import os
import re
import sys
import subprocess
#Check python version
if sys.version_info[:2] >= (3,0):
print 'Sorry.. MutationInfo is a python 2 tool..'
sys.exit(1)
if sys.version_info[:2] < (2,7):
print 'Python 2.7 is required for MutationInfo'
print 'Python version detected: ', str(sys.version_info)
sys.exit(1)
try:
from setuptools import setup
except ImportError as e:
print 'setuptools package is not installed'
print 'On linux install with the following command:'
print 'wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python '
print 'For more info please visit: https://pypi.python.org/pypi/setuptools'
sys.exit(1)
try:
import Bio
except ImportError as e:
print 'Biopython is not installed'
# Check if gcc exists..
try:
subprocess.call(['gcc', '--version'])
except OSError as e:
print '***** WARNING ******'
if e.errno == os.errno.ENOENT:
print 'Before installing biopython you may need to install a C compiler such as gcc.'
print 'gcc and other necessary libraries can be installed on Linux with the following command:'
print 'sudo apt-get install gcc python-dev libpq-dev python-pip python-mysqldb-dbg'
else:
print 'Trying to run gcc produced the following error: %s' % (str(e))
print 'Not being able to run gcc might be a problem when installing biopython'
print '********************'
_ = raw_input("Press Enter to continue or Ctrl-C to stop.. ")
try:
#subprocess.call(['pg_config', '--version'])
pg_v = None
pg_version = subprocess.check_output(['pg_config', '--version']) # i.e. 'PostgreSQL 9.4.4\n'
pg_s = re.search(r'([\d]+)\.([\d]+)\.([\d]+)', pg_version)
pg_v = (int(pg_s.group(1)), int(pg_s.group(2)), int(pg_s.group(3)))
except:
print 'PostgreSQL does not seem to be installed'
print 'PostgreSQL is a dependency for BioPython (http://biopython.org/DIST/docs/biosql/python_biosql_basic.html#htoc2)'
_ = raw_input("Press Enter to continue or Ctrl-C to stop.. ")
# psycopg2 does not seem to work for before a certain version of PostgreSQL
# We took the last working version from here: https://github.com/psycopg/psycopg2/blob/master/tests/test_connection.py#L434
# Also: https://github.com/kantale/MutationInfo/issues/16
if pg_v:
if pg_v < (9,2,0):
print 'Your current PostgreSQL version is: %s' % (str(pg_v))
print 'This is lower than 9.2.0 which is the highest version of PostgreSQL that is compatible with psycopg2.'
print 'psycopg2 is the PostgreSQL driver that certain MutationInfo tools (biocommons hgvs) are using.'
_ = raw_input("Press Enter to continue or Ctrl-C to stop.. ")
setup(name='MutationInfo',
version='1.3.0',
description='Tool to retrieve meta-information of genetic variants',
url='https://github.com/kantale/MutationInfo',
author='Alexandros Kanterakis',
author_email='alexandros.kanterakis@gmail.com',
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
'biopython==1.69',
'appdirs',
#'hgvs>=0.4,<0.5',
'hgvs>=0.5',
'feedparser',
'cruzdb',
'pygr',
'sqlalchemy',
'beautifulsoup4',
'pyhgvs>=0.0.1',
'pyVEP>=0.0.1',
'myvariant', # https://pypi.python.org/pypi/myvariant/0.2.0
],
# http://stackoverflow.com/questions/3472430/how-can-i-make-setuptools-install-a-package-thats-not-on-pypi
dependency_links=[
#'https://github.com/counsyl/hgvs/tarball/master#egg=pyhgvs-2.0.0',
'https://github.com/kantale/hgvs-1/tarball/master#egg=pyhgvs-2.0.0',
'https://github.com/kantale/pyVEP/tarball/master#egg=pyVEP-2.0.0',
],
packages=['MutationInfo', 'biopython_mapper'],
)
# Check if psycopg2 is 'importable'
try:
import psycopg2
except ImportError as e:
if 'Library not loaded: libssl.1.0.0.dylib' in str(e):
print '='*10 + '==========' + '='*10
print ' '*10 + 'IMPORTANT:'
print '='*10 + '==========' + '='*10
print 'Module psycopg2 although installed cannot be imported properly. Error message:'
print '=' * 20
print str(e)
print '=' * 20
print 'To resolve this, before running MutationInfo set the following environment variable:'
lib_path = os.path.split(os.path.split(os.__file__)[0])[0]
DYLD_FALLBACK_LIBRARY_PATH = os.environ.get('DYLD_FALLBACK_LIBRARY_PATH', '') # Not used..
command = "export DYLD_FALLBACK_LIBRARY_PATH={}:$DYLD_FALLBACK_LIBRARY_PATH".format(lib_path)
print command
print 'For more please check: http://stackoverflow.com/questions/27264574/import-psycopg2-library-not-loaded-libssl-1-0-0-dylib'
#raise e
try:
import hgvs
except ImportError as e:
if 'cannot import name ExtendedInterpolation' in str(e):
print str(e)
print 'This is a known issue.'
print 'Please refer to https://github.com/kantale/MutationInfo/issues/9 in order to resolve it'
print 'WARNING: hgvs could not been imported:'
print str(e)