Skip to content

Commit

Permalink
Corrected typo in mummer function call
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzsedlazeck committed Feb 5, 2018
1 parent 030c19d commit 0797c9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SURVIVOR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void official_interface(int argc, char *argv[]) {
std::cerr << "\tmerge\tCompare or merge VCF files to generate a consensus or multi sample vcf files." << std::endl;
std::cerr << "\tfilter\tFilter a vcf file based on size and/or regions to ignore" << std::endl;
std::cerr << "\tstats\tReport multipe stats over a VCF file" << std::endl;
std::cerr << "\tcompareMUMMer\tAnnotates a VCF file with the breakpoints found with MUMMer (Show-diff)."<< std::endl;
std::cerr << "\tcompMUMMer\tAnnotates a VCF file with the breakpoints found with MUMMer (Show-diff)."<< std::endl;
std::cerr << std::endl;


Expand Down
2 changes: 1 addition & 1 deletion src/analysis_sv/MUMmer_overlap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void comp_entries_mummer(std::vector<strvcfentry> & entries, std::string filenam
if (found != std::string::npos) {
id_denovo = filename.substr(found + 6);
} else {
cout << "not found" << endl;
//cout << "not found" << endl;
id_denovo = filename;
}

Expand Down

0 comments on commit 0797c9d

Please sign in to comment.