mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 21:53:47 +08:00
Remove more unused imports (F401)
Again, found by linting.
This commit is contained in:
committed by
Peter Cock
parent
87350ad4df
commit
81eb70b107
@ -50,7 +50,6 @@ You are expected to use this module via the Bio.Align functions.
|
||||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
import array
|
||||
import copy
|
||||
import io
|
||||
import itertools
|
||||
|
@ -23,7 +23,6 @@ import numpy as np
|
||||
from Bio.Align import Alignment
|
||||
from Bio.Align import Alignments
|
||||
from Bio.Align import bigbed
|
||||
from Bio.Align import psl
|
||||
from Bio.Align.bigbed import AutoSQLTable
|
||||
from Bio.Align.bigbed import Field
|
||||
from Bio.Seq import reverse_complement
|
||||
|
@ -29,12 +29,10 @@ zero-based end position. We can therefore manipulate ``start`` and
|
||||
``start + size`` as python list slice boundaries.
|
||||
"""
|
||||
|
||||
import itertools
|
||||
import shlex
|
||||
|
||||
from Bio.Align import Alignment
|
||||
from Bio.Align import interfaces
|
||||
from Bio.Seq import reverse_complement
|
||||
from Bio.Seq import Seq
|
||||
from Bio.SeqRecord import SeqRecord
|
||||
|
||||
|
@ -11,7 +11,6 @@ You are expected to use this module via the Bio.Align functions.
|
||||
|
||||
from Bio.Align import Alignment
|
||||
from Bio.Align import interfaces
|
||||
from Bio.Seq import reverse_complement
|
||||
from Bio.Seq import Seq
|
||||
from Bio.SeqRecord import SeqRecord
|
||||
|
||||
|
@ -20,7 +20,6 @@ See also the Seq_ wiki and the chapter in our tutorial:
|
||||
|
||||
"""
|
||||
|
||||
import array
|
||||
import collections
|
||||
import numbers
|
||||
import warnings
|
||||
|
@ -13,8 +13,6 @@
|
||||
You are expected to use this module via the Bio.SeqIO functions.
|
||||
"""
|
||||
|
||||
import warnings
|
||||
|
||||
from Bio.Seq import Seq
|
||||
from Bio.SeqRecord import SeqRecord
|
||||
|
||||
|
@ -6,7 +6,6 @@
|
||||
# package.
|
||||
"""Code for dealing with Codon Alignments."""
|
||||
|
||||
import copy
|
||||
import warnings
|
||||
from collections.abc import Iterable
|
||||
from collections.abc import Mapping
|
||||
|
Reference in New Issue
Block a user