Skip to content

Commit

Permalink
clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
briney committed Dec 4, 2024
1 parent 03ec531 commit 10b582e
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions abutils/tools/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,24 @@


import os
import platform

# import platform
import random
import string
import subprocess as sp
import sys
import tempfile
from typing import Any, Dict, Iterable, Optional, Union

from Bio.Align import AlignInfo
# import sys
import tempfile
from typing import Iterable, Optional, Union

# from Bio.Align import AlignInfo
from ..bin import get_path as get_binary_path
from ..core.pair import Pair
from ..core.sequence import Sequence, read_fasta, to_fasta
from ..utils.decorators import lazy_property
from ..utils.pipeline import make_dir
from ..core.sequence import Sequence
from ..io import read_fasta, to_fasta

# from ..utils.decorators import lazy_property
# from ..utils.pipeline import make_dir
from .alignment import make_consensus

__all__ = [
Expand Down

0 comments on commit 10b582e

Please sign in to comment.