Skip to content

Commit

Permalink
fix build dataframe
Browse files Browse the repository at this point in the history
  • Loading branch information
the-code-magician committed Nov 25, 2015
1 parent ee5a146 commit 672969f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cameo/strain_design/deterministic/linear_programming.py
Expand Up @@ -329,7 +329,7 @@ def target(self):
@property
def data_frame(self):
return pd.DataFrame(
{"Knockouts": [tuple(k.id for k in design) for design in self.knockouts],
{"Knockouts": [tuple(design) for design in self.knockouts],
"Production": self.production,
"Objective": self.growth,
"FVA_min": self._min_production,
Expand Down

0 comments on commit 672969f

Please sign in to comment.