-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
16,897 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Submodule minimap2
added at
0cc3cd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/bash | ||
|
||
# Running SeqAn3 | ||
|
||
# Running minimap | ||
|
||
|
Submodule seqan3
added at
f489f6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
cmake_minimum_required (VERSION 3.5) | ||
project (seqan3_tutorial CXX) | ||
|
||
# add seqan3 to search path | ||
list (APPEND CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../seqan3/build_system") | ||
|
||
# require seqan3 with a version between >=3.0.0 and <4.0.0 | ||
find_package (seqan3 3.0 REQUIRED) | ||
|
||
# build app with seqan3 | ||
# add_executable (hello_world hello_world.cpp) | ||
# target_link_libraries (hello_world seqan3::seqan3) | ||
add_executable (global_affine global_affine.cpp) | ||
target_link_libraries (global_affine seqan3::seqan3) | ||
add_executable (global_linear global_linear.cpp) | ||
target_link_libraries (global_linear seqan3::seqan3) | ||
add_executable (local_affine local_affine.cpp) | ||
target_link_libraries (local_affine seqan3::seqan3) | ||
add_executable (local_linear local_linear.cpp) | ||
target_link_libraries (local_linear seqan3::seqan3) | ||
add_executable (banded_local_linear banded_local_linear.cpp) | ||
target_link_libraries (banded_local_linear seqan3::seqan3) | ||
add_executable (semi_global_linear semi_global_linear.cpp) | ||
target_link_libraries (semi_global_linear seqan3::seqan3) | ||
add_executable (overlap_linear overlap_linear.cpp) | ||
target_link_libraries (overlap_linear seqan3::seqan3) |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.