Skip to content

Commit

Permalink
add subparser for command to merge final pairwise interaction results…
Browse files Browse the repository at this point in the history
… obtained via DIALECT and alternative methods (MEGSA, WeSME, Fisher's)
  • Loading branch information
ashuaibi7 committed Jan 7, 2025
1 parent c20aa1a commit 4cc4d9a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/dialect/utils/argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,25 @@ def build_argument_parser():
help="Number of genes to consider (default: 100 genes with highest mutation count)",
)

merge_parser = subparsers.add_parser(
"merge", help="Merge DIALECT and alternative method results"
)
merge_parser.add_argument(
"-d",
"--dialect",
required=True,
help="Path to the DIALECT pairwise interaction results",
)
merge_parser.add_argument(
"-a",
"--alt",
required=True,
help="Path to the comparison interaction results",
)
merge_parser.add_argument(
"-o", "--out", required=True, help="Path to the output directory"
)

# Subparser for simulations
simulate_parser = subparsers.add_parser(
"simulate", help="Run simulations for evaluation and benchmarking"
Expand Down

0 comments on commit 4cc4d9a

Please sign in to comment.