Skip to content

Commit

Permalink
Changed default MAD cutoff.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Nov 16, 2014
1 parent 9995740 commit 6d77faf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/delly.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2112,7 +2112,7 @@ int main(int argc, char **argv) {
boost::program_options::options_description pem("PE options");
pem.add_options()
("map-qual,q", boost::program_options::value<unsigned short>(&c.minMapQual)->default_value(0), "min. paired-end mapping quality")
("mad-cutoff,s", boost::program_options::value<unsigned short>(&c.madCutoff)->default_value(5), "insert size cutoff, median+s*MAD (deletions only)")
("mad-cutoff,s", boost::program_options::value<unsigned short>(&c.madCutoff)->default_value(9), "insert size cutoff, median+s*MAD (deletions only)")
;

boost::program_options::options_description breaks("SR options");
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Contact: Tobias Rausch ([email protected])
namespace torali
{

std::string dellyVersionNumber = "0.5.9";
std::string dellyVersionNumber = "0.6.1";

inline
void printTitle(std::string const& title)
Expand Down

0 comments on commit 6d77faf

Please sign in to comment.