Skip to content

Commit

Permalink
Minor mod to hbv2gfa
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wright committed Sep 12, 2016
1 parent 021df32 commit af8bab1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/modules/hbv2gfa.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ int main(const int argc, const char * argv[]) {
hbv.Involution(inv);
paths.ReadAll(in_prefix + ".paths");
std::cout << " DONE!" << std::endl;
std::cout << "Dumping gfa" << std::endl;
int MAX_CELL_PATHS = 50;
int MAX_DEPTH = 10;

std::cout<<"=== Graph stats === "<<std::endl;
std::vector<uint64_t> e_sizes;
Expand Down Expand Up @@ -111,7 +108,11 @@ int main(const int argc, const char * argv[]) {
std::cout<<"NG" << i << ": " << *(ns-1) << std::endl;
}
}

int MAX_CELL_PATHS = 50;
int MAX_DEPTH = 10;
if (!stats_only) {
std::cout << "Dumping gfa" << std::endl;
GFADump(out_prefix, hbv, inv, paths, MAX_CELL_PATHS, MAX_DEPTH, find_lines);
}

Expand Down

0 comments on commit af8bab1

Please sign in to comment.