Skip to content

Commit

Permalink
Changed imports for conda build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrandallia committed Apr 18, 2024
1 parent ed232a3 commit 8b39feb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions metamate/binning.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
"""Functions for assigning clades to a set of sequences"""

# Imports


import os
import sys
import subprocess
Expand All @@ -22,8 +20,6 @@


# Function definitions


def parse_taxa(taxafile, names):
taxa = defaultdict(set)
allnames = set()
Expand Down
6 changes: 3 additions & 3 deletions metamate/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@

from Bio.SeqIO.FastaIO import SimpleFastaParser

import filterlength
import filtertranslate
import filterreference
from metamate import filterlength
from metamate import filtertranslate
from metamate import filterreference


def count_categories(catdict, metric):
Expand Down
2 changes: 1 addition & 1 deletion metamate/filterreference.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import re
import sys
import pysam
import binning
from Bio import AlignIO, SeqIO

from metamate import binning

# Functions
def make_temp_bbmapwd(path, name):
Expand Down
6 changes: 3 additions & 3 deletions metamate/metamate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
from functools import partial
from shutil import which

import core
import binning
import filterlength
from metamate import core
from metamate import binning
from metamate import filterlength


# Class definitions
Expand Down

0 comments on commit 8b39feb

Please sign in to comment.