Skip to content
Snippets Groups Projects
Commit 9a838f6c authored by nfontrod's avatar nfontrod
Browse files

src/find_interaction_cluster/colocalisation_n_ppi_analysis.py: removing the...

src/find_interaction_cluster/colocalisation_n_ppi_analysis.py: removing the duplicates in final file
parent 062b1e37
No related branches found
No related tags found
No related merge requests found
......@@ -277,7 +277,7 @@ def create_scored_dataframe(df_comp: pd.DataFrame, fasterdb_ppi: Path
full_df = merge_community_and_score(full_df, df_score)
full_df['group'] = ["community"] * full_df.shape[0]
full_df.loc[full_df['community'] == "C-CTRL", "group"] = "ctrl"
return full_df
return full_df.drop_duplicates()
def create_figure(df_full: pd.DataFrame, outfile: Path) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment