Skip to content

Commit

Permalink
select alignment algo - fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
iiSeymour committed Feb 10, 2021
1 parent b94a368 commit bbe5c8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyspoa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ auto poa(std::vector<std::string> sequences, int algorithm, bool genmsa,
int m, int n, int g, int e, int q, int c) -> pybind11::tuple
{
auto alignment_engine = spoa::AlignmentEngine::Create(
spoa::AlignmentType::kSW, m, n, g, e, q, c);
static_cast<spoa::AlignmentType>(algorithm), m, n, g, e, q, c
);

spoa::Graph graph{};

Expand Down

0 comments on commit bbe5c8a

Please sign in to comment.