Skip to content

Commit

Permalink
remove extra column and make comma separated cell count data
Browse files Browse the repository at this point in the history
  • Loading branch information
gwaybio committed May 15, 2020
1 parent 9ba43e0 commit bee9e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions profiles/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
)

# Count cells
count_file = pathlib.PurePath(cell_count_dir, f"{plate_name}_cell_count.tsv")
count_file = pathlib.PurePath(cell_count_dir, f"{plate_name}_cell_count.csv")
cell_count_df = ap.count_cells()
cell_count_df.to_csv(count_file, sep="\t")
cell_count_df.to_csv(count_file, sep=",", index=False)

del ap

Expand Down

0 comments on commit bee9e79

Please sign in to comment.