Skip to content

Commit

Permalink
update wesme external code to only include q values in final output
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuaibi7 committed Jan 6, 2025
1 parent a2dcdf8 commit ed959a9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions external/WeSME/WeSME.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,12 +527,12 @@ def compute_pairwise_pvalues(mut_fn, dout, gene_pairs):
{
"Gene A": [g[0] for g in ws_me_pv_dic.keys()],
"Gene B": [g[1] for g in ws_me_pv_dic.keys()],
"ws_me_pv": list(ws_me_pv_dic.values()),
"ws_me_qv": ws_me_qv,
"ws_co_pv": list(ws_co_pv_dic.values()),
"ws_co_qv": ws_co_qv,
"jaccard": list(jaccard_dic.values()),
"fisher_co_pv": list(fisher_co_pv_dic.values()),
# "WeSME P-Val": list(ws_me_pv_dic.values()),
"WeSME Q-Val": ws_me_qv,
# "WeSCO P-Val": list(ws_co_pv_dic.values()),
"WeSCO Q-Val": ws_co_qv,
# "jaccard": list(jaccard_dic.values()),
# "fisher_co_pv": list(fisher_co_pv_dic.values()),
}
)
return df

0 comments on commit ed959a9

Please sign in to comment.