Skip to content

Commit

Permalink
Merge branch 'fix-basecaller-file-header' into 'dev'
Browse files Browse the repository at this point in the history
Fix basecaller file header

See merge request epi2melabs/fastcat!62
  • Loading branch information
julibeg committed Jun 11, 2024
2 parents c49f81f + f36e129 commit 82e2d9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
## [v0.18.1]
### Fixed
- 'run_id' instead of 'basecaller' as column name in basecaller summary output header line.
- `(null)` in FASTQ header comments when run with `-H` on files that had `basecall_model_version_id=...` as only header comment.

## [v0.18.0]
Expand Down
2 changes: 1 addition & 1 deletion src/fastcat/writer.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ writer initialize_writer(char* output_dir, char* histograms, char* perread, char
writer->basecallers = fopen(basecallers, "w");
fprintf(writer->basecallers, "filename\t");
if (writer->sample != NULL) fprintf(writer->basecallers, "sample_name\t");
fprintf(writer->basecallers, "run_id\tcount\n");
fprintf(writer->basecallers, "basecaller\tcount\n");
}
return writer;
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

const char *argp_program_version = "0.18.0";
const char *argp_program_version = "0.18.1";

0 comments on commit 82e2d9e

Please sign in to comment.