Skip to content

Commit

Permalink
update savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Aug 1, 2024
1 parent 58ad628 commit ba52deb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bio_check/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,10 @@ def save_plot(self, fig: Figure, save_dest: str) -> None:

return plt.close(fig)

def export_csv(self):
pass
def export_csv(self, data: dict, save_dest: str):
species_data_content = data['content']['results']['results']
species_names = list(species_data_content.keys())
# TODO: Finish this here: one df where rows are num points and cols are each observable: one for each simulator for each species name. Flattened.

def get_compatible(self, file: str, versions: bool) -> List[Tuple[str, str]]:
pass
Expand Down

0 comments on commit ba52deb

Please sign in to comment.