Skip to content

Commit

Permalink
fixed deduplicated file names
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandeorowicz committed Oct 11, 2024
1 parent 3dfe4d9 commit f3b5c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bkc/kmer_counter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ std::string CBarcodedCounter::get_dedup_file_name(const std::string& input_path,
std::filesystem::path out(filtered_input_path);

out /= path.filename();
out += ".dedup_" + to_string(id) + (filtered_input_in_FASTA ? ".fasta" : ".fastq") + ".gz";
out += ".dedup"s + (filtered_input_in_FASTA ? ".fasta" : ".fastq") + ".gz";

return out.string();
}
Expand Down

0 comments on commit f3b5c8a

Please sign in to comment.