Skip to content

Commit

Permalink
refactor imports
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Oct 10, 2024
1 parent 3c8c4bd commit 99fb7c1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion bakta/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import multiprocessing as mp
import os
import re
import shutil
import sys
import tempfile

Expand Down
6 changes: 3 additions & 3 deletions bakta/expert/protein_sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
from pathlib import Path
from typing import Sequence

from Bio import SeqIO
from xopen import xopen

import bakta.config as cfg
import bakta.constants as bc
import bakta.features.orf as orf

from Bio import SeqIO
from xopen import xopen


log = logging.getLogger('EXPERT_AA_SEQ')

Expand Down
2 changes: 1 addition & 1 deletion bakta/features/cds.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import pyhmmer

from Bio import SeqIO
from Bio.Seq import Seq
from Bio import SeqFeature
from Bio.Seq import Seq
from Bio.SeqUtils.ProtParam import ProteinAnalysis
from xopen import xopen

Expand Down
1 change: 0 additions & 1 deletion bakta/features/orf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging
import subprocess as sp

from collections import OrderedDict
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion bakta/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
from pathlib import Path

import yaml
import Bio as bp

from Bio import SeqUtils
import Bio as bp

import bakta
import bakta.utils as bu
Expand Down
4 changes: 2 additions & 2 deletions bakta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import hashlib
import logging
import os
import shutil
import platform as pf
import re
import shutil
import sys
import subprocess as sp
import re

from argparse import Namespace
from datetime import datetime
Expand Down

0 comments on commit 99fb7c1

Please sign in to comment.