mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-01 07:46:22 +02:00
Fixing fruitfly_tomancak data load.
This commit is contained in:
parent
62920c2811
commit
cff37293d9
1 changed files with 2 additions and 2 deletions
|
|
@ -369,7 +369,7 @@ def sod1_mouse(data_set='sod1_mouse'):
|
|||
from pandas import read_csv
|
||||
dirpath = os.path.join(data_path, data_set)
|
||||
filename = os.path.join(dirpath, 'sod1_C57_129_exprs.csv')
|
||||
Y = read_csv(filename, header=0, index_col=0).T
|
||||
Y = read_csv(filename, header=0, index_col=0)
|
||||
num_repeats=4
|
||||
num_time=4
|
||||
num_cond=4
|
||||
|
|
@ -381,7 +381,7 @@ def fruitfly_tomancak(data_set='fruitfly_tomancak', gene_number=None):
|
|||
download_data(data_set)
|
||||
from pandas import read_csv
|
||||
dirpath = os.path.join(data_path, data_set)
|
||||
filename = os.path.join(dirpath, 'tomancak_expr.csv')
|
||||
filename = os.path.join(dirpath, 'tomancak_exprs.csv')
|
||||
Y = read_csv(filename, header=0, index_col=0).T
|
||||
num_repeats = 3
|
||||
num_time = 12
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue