Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
vickydaiya authored Dec 6, 2023
1 parent aa443e2 commit caf1346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions containers/crosswalking/context/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ def crosswalk(
table: pd.DataFrame,
table_label_column: str,
table_clid_column: str,
table_merge_column: str,
table_match_column: str,
) -> anndata.AnnData:
"""Gives each cell a CL ID and Match type using crosswalk table"""
column_map = {
table_clid_column: data_clid_column,
table_merge_column: data_match_column,
table_match_column: data_match_column,
}
table = filter_crosswalk_table(
table, table_label_column, table_clid_column, table_merge_column
table, table_label_column, table_clid_column, table_match_column
)
merged_obs = (
matrix.obs.merge(
Expand Down

0 comments on commit caf1346

Please sign in to comment.