Skip to content

Commit

Permalink
upload baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysunl committed Jul 23, 2024
1 parent 3d15e00 commit f0d2019
Show file tree
Hide file tree
Showing 20 changed files with 16,897 additions and 0 deletions.
442 changes: 442 additions & 0 deletions baseline/software/build/Makefile

Large diffs are not rendered by default.

Binary file added baseline/software/build/banded_local_linear
Binary file not shown.
Binary file added baseline/software/build/global_affine
Binary file not shown.
Binary file added baseline/software/build/global_linear
Binary file not shown.
Binary file added baseline/software/build/local_affine
Binary file not shown.
Binary file added baseline/software/build/local_linear
Binary file not shown.
Binary file added baseline/software/build/overlap_linear
Binary file not shown.
Binary file added baseline/software/build/semi_global_linear
Binary file not shown.
1 change: 1 addition & 0 deletions baseline/software/minimap2
Submodule minimap2 added at 0cc3cd
7 changes: 7 additions & 0 deletions baseline/software/run_baseline.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/bash

# Running SeqAn3

# Running minimap


1 change: 1 addition & 0 deletions baseline/software/seqan3
Submodule seqan3 added at f489f6
26 changes: 26 additions & 0 deletions baseline/software/source/CMakeLists.txt
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)
2,053 changes: 2,053 additions & 0 deletions baseline/software/source/banded_local_linear.cpp

Large diffs are not rendered by default.

2,052 changes: 2,052 additions & 0 deletions baseline/software/source/global_affine.cpp

Large diffs are not rendered by default.

2,051 changes: 2,051 additions & 0 deletions baseline/software/source/global_linear.cpp

Large diffs are not rendered by default.

2,051 changes: 2,051 additions & 0 deletions baseline/software/source/hello_world.cpp

Large diffs are not rendered by default.

2,052 changes: 2,052 additions & 0 deletions baseline/software/source/local_affine.cpp

Large diffs are not rendered by default.

2,051 changes: 2,051 additions & 0 deletions baseline/software/source/local_linear.cpp

Large diffs are not rendered by default.

2,055 changes: 2,055 additions & 0 deletions baseline/software/source/overlap_linear.cpp

Large diffs are not rendered by default.

2,055 changes: 2,055 additions & 0 deletions baseline/software/source/semi_global_linear.cpp

Large diffs are not rendered by default.

0 comments on commit f0d2019

Please sign in to comment.