Skip to content

Commit bbf35ae

Browse files
committed
fix: correct gecko path
1 parent 4b7c129 commit bbf35ae

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ComplementaryScripts/enhanceGEM_cellLine.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function [ecModel,ecModel_batch] = enhanceGEM_cellLine(cellName,GECKO_path)
1+
function [ecModel,ecModel_batch] = enhanceGEM_cellLine(cellName)
22
%enhanceGEM_cellLine
33
%
44
% Function that loads a cell-line or tissue specific human metabolism model
@@ -40,8 +40,9 @@
4040
mkdir(newDir)
4141
save([newDir '/enzData.mat'],'model_data','kcats');
4242
%GEt ecModel matlab structure
43+
cd ../../..
4344
model_data = removeFields(model_data);
44-
cd ../change_model
45+
cd GECKO/geckomat/change_model
4546
ecModel = readKcatData(model_data,kcats);
4647
% Save output models:
4748
save(['../../../../models/' cellName '/ecModel.mat'],'ecModel')

ComplementaryScripts/generate_human_ecModels_NCI60.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
mkdir Data
3636
cd (current)
3737
%Models mat files are saved in their respective folder by enhanceGEM_cellLine
38-
[ecModel,ecModel_batch] = enhanceGEM_cellLine(cellName,[current '/GECKO']);
38+
[ecModel,ecModel_batch] = enhanceGEM_cellLine(cellName);
3939
end
4040
cd (current)
4141
rmdir('GECKO', 's')

0 commit comments

Comments
 (0)