Skip to content

Commit

Permalink
Merge pull request #160 from BIH-CEI/doc_charts
Browse files Browse the repository at this point in the history
Doc charts
  • Loading branch information
frehburg authored Oct 8, 2024
2 parents ab5ff23 + 4ed3932 commit cc943f5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

A Python library to map from any bespoke tabular data format to the GA4GH Phenopacket schema.

![Mapping Flow](res/imgs/docs/phenopacket_mapper_flow_simplified.png)

## Table of Contents

- [Motivation](#motivation)
Expand Down
Binary file added res/imgs/docs/phenopacket_mapper_flow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/phenopacket_mapper/pipeline/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def load_data_using_data_model(

data_model_instances = []

for i in range(len(df)):
for i in range(len(df)): # todo: change to iter also non tabular data
values = []
for f in data_model.fields:
column_name = column_names[f.id]
Expand Down

0 comments on commit cc943f5

Please sign in to comment.