Skip to content

Commit

Permalink
fix: generate high quality report .csv file (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasbtf authored Jan 3, 2022
1 parent f883ce2 commit 077b80d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/scripts/generate-high-quality-report.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
)

# Only include samples with include flag
csv_table = csv_table[csv_table["include"] == "1"]
csv_table["include"] = csv_table["include"].astype(int)
csv_table = csv_table[csv_table["include"] == 1]
csv_table.drop(columns=["include"], inplace=True)

# Final touches
Expand Down

0 comments on commit 077b80d

Please sign in to comment.