File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
lib/ModelSEEDReconstruction Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ RUN pip install networkx
3636RUN pip install deepdiff
3737RUN pip install h5py
3838
39- RUN echo '36 ' >/dev/null && pip install --use-deprecated=legacy-resolver git+https://github.com/cshenry/ModelSEEDpy.git
39+ RUN echo '38 ' >/dev/null && pip install --use-deprecated=legacy-resolver git+https://github.com/cshenry/ModelSEEDpy.git
4040
41- RUN echo '30 ' >/dev/null && mkdir deps && cd deps && \
41+ RUN echo '31 ' >/dev/null && mkdir deps && cd deps && \
4242 git clone --branch main https://github.com/cshenry/KBBaseModules.git
4343RUN echo '1' >/dev/null && cd deps && \
4444 git clone https://github.com/ModelSEED/ModelSEEDDatabase.git && \
Original file line number Diff line number Diff line change @@ -172,11 +172,7 @@ def build_metabolic_models(self,params):
172172 for rxn in mdl .reactions :
173173 if not mdlutl .is_core (rxn ) and rxn .id [0 :3 ] != "bio" and rxn .id [0 :3 ] != "DM_" and rxn .id [0 :3 ] != "EX_" and rxn .id [0 :3 ] != "SK_" :
174174 remove_list .append (rxn .id )
175- print ("Removing non-core reactions:" ,remove_list )
176175 mdl .remove_reactions (remove_list )
177- print ("Remaining reactions:" )
178- for item in mdl .reactions :
179- print (item .id )
180176 #Now extending model with selected ontology priorities
181177 if params ["ontology_events" ] == None and len (params ["annotation_priority" ]) > 0 :
182178 params ["ontology_events" ] = genome .annoont .get_events_from_priority_list (params ["annotation_priority" ])
You can’t perform that action at this time.
0 commit comments