Skip to content

Commit

Permalink
simplify imports from utils
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuaibi7 committed Dec 21, 2024
1 parent f180ac3 commit 150062d
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/dialect/__main__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
import os
import logging
import pandas as pd
from dialect.utils.logger import configure_logging

from dialect.utils.argument_parser import (
from dialect.utils import (
configure_logging,
build_argument_parser,
) # TODO: export function from argument_parser.py

from dialect.utils.generate import (
generate_bmr_and_counts,
) # TODO: export function from generate.py

from dialect.utils.identify import (
identify_pairwise_interactions,
) # TODO: export function from identify.py
)

configure_logging()

Expand Down

0 comments on commit 150062d

Please sign in to comment.