Skip to content

Commit

Permalink
Fix bamstats output header
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw85 committed Nov 23, 2021
1 parent 4bb8c03 commit 353076c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [v0.4.6]
### Fixed
- Missing tab character in output header.

## [v0.4.5]
### Changed
- Pin openssl version in conda build to that which work across Python versions.
Expand Down
2 changes: 1 addition & 1 deletion src/bamstats/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void write_header() {
fprintf(stdout,
"name\tref\tcoverage\tref_coverage\t"\
"\tqstart\tqend\trstart\trend\t"\
"aligned_ref_len\tdirection\tlength\tread_length"\
"aligned_ref_len\tdirection\tlength\tread_length\t"\
"match\tins\tdel\tsub\tiden\tacc\n");
}

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.4.5";
const char *argp_program_version = "0.4.6";

0 comments on commit 353076c

Please sign in to comment.