Skip to content

Commit

Permalink
doc: adapterTemplate set reviewed to false
Browse files Browse the repository at this point in the history
by default allow for more uniprot protein matches
  • Loading branch information
edkerk committed Jul 17, 2024
1 parent d5db374 commit bf8cfdc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/src/geckomat/model_adapter/adapterTemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" sr
0054 <span class="comment">% Whether only reviewed data from UniProt should be considered.</span>
0055 <span class="comment">% Reviewed data has highest confidence, but coverage might be (very)</span>
0056 <span class="comment">% low for non-model organisms</span>
0057 obj.params.uniprot.reviewed = true;
0057 obj.params.uniprot.reviewed = false;
0058
0059 <span class="comment">% Reaction ID for glucose exchange reaction (or other preferred carbon source)</span>
0060 obj.params.c_source = <span class="string">'r_1714'</span>;
Expand Down
2 changes: 1 addition & 1 deletion src/geckomat/model_adapter/adapterTemplate.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
% Whether only reviewed data from UniProt should be considered.
% Reviewed data has highest confidence, but coverage might be (very)
% low for non-model organisms
obj.params.uniprot.reviewed = true;
obj.params.uniprot.reviewed = false;

% Reaction ID for glucose exchange reaction (or other preferred carbon source)
obj.params.c_source = 'r_1714';
Expand Down
4 changes: 2 additions & 2 deletions test/manual_tests/TestYeastGEMSimpleWorkflow.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

GECKORoot = findGECKOroot();

yeastAdapter = ModelAdapterManager.getAdapter(fullfile(GECKORoot, 'tutorials', 'tutorial_yeast-GEM', 'YeastGEMAdapter.m'));
yeastGEM = importModel(fullfile(yeastAdapter.getParameters().path,'models','yeast-GEM.yml'));
yeastAdapter = ModelAdapterManager.getAdapter(fullfile(GECKORoot, 'tutorials', 'full_ecModel', 'YeastGEMAdapter.m'));
yeastGEM = readYAMLmodel(fullfile(yeastAdapter.getParameters().path,'models','yeast-GEM.yml'));

%Full model
%%%%%%%%%%%%
Expand Down

0 comments on commit bf8cfdc

Please sign in to comment.