Skip to content

Commit 1431de7

Browse files
author
Christopher Henry
committed
Triggering ModelSEEDpy update
1 parent 206845d commit 1431de7

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ RUN pip install networkx
3636
RUN pip install deepdiff
3737
RUN 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
4343
RUN echo '1' >/dev/null && cd deps && \
4444
git clone https://github.com/ModelSEED/ModelSEEDDatabase.git && \

lib/ModelSEEDReconstruction/modelseedrecon.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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"])

0 commit comments

Comments
 (0)