Skip to content

Commit

Permalink
closes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
brentp committed Apr 11, 2022
1 parent d1172b6 commit 750486c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.1.6 (dev)
============
+ change VCF header (#19)

v0.1.5
======
+ fix build on OSX (#18 from @sstadick)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "echtvar"
version = "0.1.5"
version = "0.1.6"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion src/lib/echtvar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ impl EchtVars {
for e in &self.fields {
header.push_record(
format!(
"##INFO=<ID={},Type={},Number=1,Description=\"{}\">",
"##INFO=<ID={},Number=1,Type={},Description=\"{}\">",
e.alias,
if e.ftype == fields::FieldType::Integer {
"Integer"
Expand Down

0 comments on commit 750486c

Please sign in to comment.