Skip to content

Commit ba2cac5

Browse files
committed
Update output file extension from .gz to .zst
1 parent 420f723 commit ba2cac5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)