File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ int main(int argc, char *argv[]) {
107107 " The number of ibd segments that a breakpoint must have to be tested." )->default_val (0 );
108108 app.add_option (" -o,--output" ,
109109 params.output_path ,
110- " Output to a specified file. Default output is is ./output/{date-time}.results.gz ." );
110+ " Output to a specified file. Default output is is ./output/{date-time}.results.zst ." );
111111 app.add_option (" --pheno_col" ,
112112 params.pheno_col ,
113113 " The column to read from the phenotype file. Column 0 should be sample ID and column 1+ should be 0, 1, NA." )->default_val (1 );
@@ -162,7 +162,7 @@ int main(int argc, char *argv[]) {
162162 std::time_t t = std::time (nullptr );
163163 std::strftime (cur_time, 99 , " %F-%T" , std::localtime (&t));
164164 std::stringstream default_output;
165- default_output << out_dir << " /" << cur_time << " .results.gz " ;
165+ default_output << out_dir << " /" << cur_time << " .results.zst " ;
166166 params.output_path = default_output.str ();
167167 }
168168
You can’t perform that action at this time.
0 commit comments