Skip to content

Commit

Permalink
modified function statement for simulate evaluate method and usage in…
Browse files Browse the repository at this point in the history
… main
  • Loading branch information
ashuaibi7 committed Jan 12, 2025
1 parent e0273a5 commit 2c52ed4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/dialect/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ def main():
else: # args.mode == "evaluate"
logging.info("Evaluating methods on simulated data")
if args.type == "single":
evaluate_single_gene_simulation()
evaluate_single_gene_simulation(
params=args.params,
data=args.data,
out=args.out,
)
else: # args.type == "pair"
logging.info("Evaluating methods on simulated data for a pair of genes")
raise NotImplementedError
Expand Down
2 changes: 1 addition & 1 deletion src/dialect/utils/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,6 @@ def create_single_gene_simulation(
# ---------------------------------------------------------------------------- #
# SIMULATION EVALUATION MAIN FUNCTIONS #
# ---------------------------------------------------------------------------- #
def evaluate_single_gene_simulation():
def evaluate_single_gene_simulation(params, data, out):
logging.info("Evaluating DIALECT on simulated data for a single gene")
raise NotImplementedError

0 comments on commit 2c52ed4

Please sign in to comment.