Skip to content

Commit

Permalink
fix python path
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Mar 28, 2024
1 parent 3f54202 commit 3b47071
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/test_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import Bio.Data.IUPACData
import unittest
import argparse
import glob
import os
import os.path
import shutil
Expand Down Expand Up @@ -695,7 +696,7 @@ def test_output_sorted_by_product(self):
with util.file.tempfnames(('.skani.dist.out', '.skani.dist.filtered', '.clusters.filtered')) \
as (out_skani_dist, out_skani_dist_filtered, out_clusters_filtered):
contigs = os.path.join(inDir, 'USA-MA-Broad_BWH-19947-2023.l000013249603_C5.HTKJ7DRX3.1.acellular.dedup.assembly1-spades.fasta')
refs = os.path.glob(os.path.join(inDir, 'RVA*.fa'))
refs = glob.glob(os.path.join(inDir, 'RVA*.fa'))

assembly.skani_contigs_to_refs(contigs, refs, out_skani_dist, out_skani_dist_filtered, out_clusters_filtered, threads=1)

Expand Down

0 comments on commit 3b47071

Please sign in to comment.