Skip to content

Commit a2cfcac

Browse files
authored
Fix GPU parameters
1 parent 1a12aff commit a2cfcac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/racon_wrapper.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ def run(self):
126126
'-m', str(self.match),
127127
'-x', str(self.mismatch),
128128
'-g', str(self.gap),
129-
'-t', str(self.threads),
130-
self.subsampled_sequences, self.overlaps, ""])
129+
'-t', str(self.threads)])
131130
if (@racon_wrapper_enable_cuda@):
132131
if (self.cuda_banded_alignment == True): racon_params.append('-b')
133132
racon_params.extend([
134133
'--cudaaligner-band-width', str(self.cudaaligner_band_width),
135134
'--cudaaligner-batches', str(self.cudaaligner_batches),
136135
'-c', str(self.cudapoa_batches)])
136+
racon_params.extend([self.subsampled_sequences, self.overlaps, ""])
137137

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

0 commit comments

Comments
 (0)