Skip to content

Commit

Permalink
fixing some indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sena committed May 18, 2022
1 parent 61f811b commit ea86749
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/falco.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ read_stream_into_stats(T &in, FastqStats &stats, FalcoConfig &falco_config) {

if (tot_bytes_read < file_size)
progress.report(cerr, file_size);

}

// Write module content into html maker if requested
Expand Down Expand Up @@ -519,10 +520,12 @@ int main(int argc, const char **argv) {
// if file was given with relative path in the current dir, we set a dot
if (last_slash_idx == string::npos) {
cur_outdir = ".";
} else {
}
else {
cur_outdir = falco_config.filename.substr(0, last_slash_idx);
}
} else {
}
else {
cur_outdir = outdir;
}

Expand Down

0 comments on commit ea86749

Please sign in to comment.