Skip to content

Commit

Permalink
Copied manually from commit 1aa6bfa
Browse files Browse the repository at this point in the history
  • Loading branch information
tihomirkonosic committed Dec 19, 2023
1 parent 7bf9fe9 commit 8fa6a2b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ int main(int argc, char **argv) {

std::uint8_t ploidy = 2;

std::uint8_t kmer_len = 15;
std::uint8_t window_len = 5;
std::uint8_t kmer_len = 31;
std::uint8_t window_len = 17;
std::uint16_t bandwidth = 500;
std::uint16_t chain_n = 4;
std::uint16_t match_n = 100;
Expand Down Expand Up @@ -307,9 +307,10 @@ int main(int argc, char **argv) {

raven::Graph_Constructor graph_constructor{graph, thread_pool};
if (!skip_contruction){
graph_constructor.Construct(sequences, disagreement, split, kMaxNumOverlaps, ploidy, kmer_len, window_len, bandwidth, chain_n, match_n, gap_size, freq, hpc, paf, valid_region_size);
std::cout << "Constructing graph with params: kmer_size:" << kmer_len << " winodw_size:" << window_len << " " << std::endl;
graph_constructor.Construct(sequences, disagreement, split, kMaxNumOverlaps, ploidy, kmer_len, window_len, bandwidth, chain_n, match_n, gap_size, freq, hpc, paf, valid_region_size);
} else {
graph_constructor.LoadFromGfa(input_gfa_path);
graph_constructor.LoadFromGfa(input_gfa_path);
}

graph.PrintGfa("post_construction.gfa");
Expand Down

0 comments on commit 8fa6a2b

Please sign in to comment.