Skip to content

Commit

Permalink
separate line into three to avoid running off beyond 80 character lin…
Browse files Browse the repository at this point in the history
…e max
  • Loading branch information
ashuaibi7 committed Jan 7, 2025
1 parent fce335c commit bc57fd9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/dialect/utils/discover.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ def run_discover_analysis(cnt_df, top_genes, interactions):
co_results = run_discover_for_interaction(events, interaction_type="co")

# Step 3: Extract results for the specified interactions
discover_results = extract_discover_results(interactions, me_results, co_results)
discover_results = extract_discover_results(
interactions,
me_results,
co_results,
)
logging.info("Finished running DISCOVER analysis.")
return discover_results

0 comments on commit bc57fd9

Please sign in to comment.