Skip to content

Commit

Permalink
call method to evaluate single gene from main function
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuaibi7 committed Jan 12, 2025
1 parent b5a5a1f commit 5443142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dialect/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
run_comparison_methods,
merge_pairwise_interaction_results,
create_single_gene_simulation,
evaluate_single_gene_simulation,
)


Expand Down Expand Up @@ -72,8 +73,7 @@ def main():
else: # args.mode == "evaluate"
logging.info("Evaluating methods on simulated data")
if args.type == "single":
logging.info("Evaluating methods on simulated data for a single gene")
raise NotImplementedError
evaluate_single_gene_simulation()
else: # args.type == "pair"
logging.info("Evaluating methods on simulated data for a pair of genes")
raise NotImplementedError
Expand Down

0 comments on commit 5443142

Please sign in to comment.