Skip to content

Commit

Permalink
Update submodules and wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaser committed May 7, 2020
1 parent 3654d72 commit 31a3c92
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.2)
project(racon)
set(racon_version 1.4.15)
set(racon_version 1.4.16)

set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib)
Expand Down
12 changes: 6 additions & 6 deletions scripts/racon_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ def __init__(self, sequences, overlaps, target_sequences, split, subsample,
self.mismatch = mismatch
self.gap = gap
self.threads = threads
self.cudaaligner_batches = cudaaligner_batches
self.cudapoa_batches = cudapoa_batches
self.cuda_banded_alignment = cuda_banded_alignment
# self.cudaaligner_batches = cudaaligner_batches
# self.cudapoa_batches = cudapoa_batches
# self.cuda_banded_alignment = cuda_banded_alignment
self.work_directory = os.getcwd() + '/racon_work_directory_' + str(time.time())

def __enter__(self):
Expand Down Expand Up @@ -119,16 +119,16 @@ def run(self):
racon_params = [RaconWrapper.__racon]
if (self.include_unpolished == True): racon_params.append('-u')
if (self.fragment_correction == True): racon_params.append('-f')
if (self.cuda_banded_alignment == True): racon_params.append('-b')
# if (self.cuda_banded_alignment == True): racon_params.append('-b')
racon_params.extend(['-w', str(self.window_length),
'-q', str(self.quality_threshold),
'-e', str(self.error_threshold),
'-m', str(self.match),
'-x', str(self.mismatch),
'-g', str(self.gap),
'-t', str(self.threads),
'--cudaaligner-batches', str(self.cudaaligner_batches),
'-c', str(self.cudapoa_batches),
# '--cudaaligner-batches', str(self.cudaaligner_batches),
# '-c', str(self.cudapoa_batches),
self.subsampled_sequences, self.overlaps, ""])

for target_sequences_part in self.split_target_sequences:
Expand Down
2 changes: 1 addition & 1 deletion vendor/bioparser
2 changes: 1 addition & 1 deletion vendor/rampler
Submodule rampler updated 2 files
+1 −1 src/main.cpp
+1 −1 vendor/bioparser
2 changes: 1 addition & 1 deletion vendor/spoa
2 changes: 1 addition & 1 deletion vendor/thread_pool

0 comments on commit 31a3c92

Please sign in to comment.