mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-01 07:46:22 +02:00
Exception fixes for Python 3 compat
This commit is contained in:
parent
74f8caba2b
commit
c6b43d91da
8 changed files with 10 additions and 10 deletions
|
|
@ -785,7 +785,7 @@ def hapmap3(data_set='hapmap3'):
|
|||
from sys import stdout
|
||||
import bz2
|
||||
except ImportError as i:
|
||||
raise i, "Need pandas for hapmap dataset, make sure to install pandas (http://pandas.pydata.org/) before loading the hapmap dataset"
|
||||
raise i("Need pandas for hapmap dataset, make sure to install pandas (http://pandas.pydata.org/) before loading the hapmap dataset")
|
||||
|
||||
dir_path = os.path.join(data_path,'hapmap3')
|
||||
hapmap_file_name = 'hapmap3_r2_b36_fwd.consensus.qc.poly'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue