Skip to content

Commit

Permalink
fill paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
Dainius Kirsnauskas committed Apr 10, 2024
1 parent 096ab9a commit a9e8e12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data_collection/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ def main():

# final join
main_frame = main_frame.iloc[:, range(13)]
main_frame = pd.merge(main_frame, lovd_with_gnomad, how="left", on=list(main_frame.columns[:13]))
main_frame = pd.merge(main_frame,
lovd_with_gnomad,
how="left",
on=list(main_frame.columns[:13]))

main_frame.to_csv(DATA_PATH + "/final.csv")

Expand Down

0 comments on commit a9e8e12

Please sign in to comment.