Skip to content

Commit

Permalink
Fix type error in sample.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Dec 4, 2024
1 parent 1bc101b commit 22cd569
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions micall/drivers/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,11 +417,11 @@ def run_denovo(self, excluded_seeds):
logger.info('Running de novo assembly on %s.', self)
scratch_path = self.get_scratch_path()

denovo(self.trimmed1_fastq,
self.trimmed2_fastq,
self.unstitched_contigs_fasta,
self.scratch_path,
self.merged_contigs_csv,
denovo(Path(self.trimmed1_fastq),
Path(self.trimmed2_fastq),
Path(self.unstitched_contigs_fasta),
Path(self.scratch_path),
Path(self.merged_contigs_csv),
)

with open(self.unstitched_contigs_csv, 'w') as unstitched_contigs_csv, \
Expand Down

0 comments on commit 22cd569

Please sign in to comment.