Skip to content

Commit

Permalink
BUG fix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
psj1997 committed Feb 26, 2024
1 parent b06630c commit 5377260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/generate_data_coassembly_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

os.makedirs('test-outputs', exist_ok=True)
bam_files = glob('test/coassembly_sample_data/input.sorted*.bam')

abun_files = glob('test/coassembly_sample_data/*.txt')

for ext in ['', '.gz', '.bz2', '.xz']:
odir = f"test-outputs/output_coassembly{'_'+ext.replace('.', '_') if ext else '_fa'}"
Expand Down Expand Up @@ -37,7 +37,7 @@
'--ratio', '0.05',
'--ml-threshold', '4000',
'-p', '1',
'-a', 'test/coassembly_sample_data/*.txt'])
'-a'] + abun_files)

data = pd.read_csv(f'{odir}/data.csv', index_col=0)
data_split = pd.read_csv(f'{odir}/data_split.csv', index_col=0)
Expand Down

0 comments on commit 5377260

Please sign in to comment.