Skip to content

Commit

Permalink
Fix GPU parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaser authored Dec 19, 2021
1 parent 1a12aff commit a2cfcac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/racon_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ def run(self):
'-m', str(self.match),
'-x', str(self.mismatch),
'-g', str(self.gap),
'-t', str(self.threads),
self.subsampled_sequences, self.overlaps, ""])
'-t', str(self.threads)])
if (@racon_wrapper_enable_cuda@):
if (self.cuda_banded_alignment == True): racon_params.append('-b')
racon_params.extend([
'--cudaaligner-band-width', str(self.cudaaligner_band_width),
'--cudaaligner-batches', str(self.cudaaligner_batches),
'-c', str(self.cudapoa_batches)])
racon_params.extend([self.subsampled_sequences, self.overlaps, ""])

for target_sequences_part in self.split_target_sequences:
eprint('[RaconWrapper::run] processing data with racon')
Expand Down

0 comments on commit a2cfcac

Please sign in to comment.