Skip to content

Commit

Permalink
Remove unused imports in cigar_tools and contig_sticher
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Nov 7, 2023
1 parent c773e0d commit d9f1201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
14 changes: 1 addition & 13 deletions micall/core/contig_stitcher.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
import argparse
import logging
import os
from typing import Iterable, Optional, Tuple, List
from collections import Counter, deque
from csv import DictWriter, DictReader
from collections import deque
from dataclasses import dataclass
from datetime import datetime
from glob import glob
from io import StringIO
from itertools import chain
from operator import itemgetter
from shutil import rmtree
from subprocess import run, PIPE, CalledProcessError, STDOUT
from tempfile import mkdtemp
from mappy import Aligner
from functools import cached_property
from gotoh import align_it
Expand Down
5 changes: 1 addition & 4 deletions micall/utils/cigar_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@

from math import ceil, floor
import re
from typing import List, Tuple, Iterable, Optional
from collections import OrderedDict
from typing import Tuple, Iterable, Optional
from dataclasses import dataclass
import itertools
import copy
from functools import cached_property

from micall.utils.consensus_aligner import CigarActions
Expand Down

0 comments on commit d9f1201

Please sign in to comment.