Skip to content

Commit

Permalink
set default compression level to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed May 4, 2018
1 parent 52bf66f commit 5aade51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ int main(int argc, char* argv[]){
cmd.add<string>("out_folder", 'o', "output folder, default is current working directory", false, ".");
cmd.add<string>("suffix1", 'f', "the suffix to be appended to the output file name given in sample sheet, default is none", false, "");
cmd.add<string>("undetermined", 'u', "the file name of undetermined data, default is Undetermined", false, "Undetermined");
cmd.add<int>("compression", 'z', "compression level for gzip output (1 ~ 9). 1 is fastest, 9 is smallest, default is 2.", false, 2);
cmd.add<int>("compression", 'z', "compression level for gzip output (1 ~ 9). 1 is fastest, 9 is smallest, default is 6.", false, 6);

cmd.parse_check(argc, argv);

Expand Down
2 changes: 1 addition & 1 deletion src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Options::Options(){
in1 = "";
compression = 2;
compression = 6;
umdeterminedFileName = "Undetermined";
}

Expand Down

0 comments on commit 5aade51

Please sign in to comment.