Skip to content

Commit

Permalink
Merge branch 'hotfix/v3.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish committed Feb 17, 2023
2 parents f2d76a3 + c4468f5 commit bc8bf84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion repo_utils/test_files/answer_key/help.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
usage: truvari [-h] CMD ...

Truvari v4.0.0-dev Structural Variant Benchmarking and Annotation
Truvari v3.5.1 Structural Variant Benchmarking and Annotation

Available commands:
bench Performance metrics from comparison of two VCFs
Expand Down
2 changes: 1 addition & 1 deletion truvari/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
:data:`truvari.SZBINTYPE`
"""

__version__ = '4.0.0-dev'
__version__ = '3.5.1'


from truvari.annotations.af_calc import (
Expand Down
5 changes: 5 additions & 0 deletions truvari/collapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ def collapse_into_entry(entry, others, hap_mode=False):
"Unable to set FORMAT %s for sample %s", key, sample)
logging.warning("Kept entry: %s:%d %s", entry.chrom, entry.pos, entry.id)
logging.warning("Colap entry: %s:%d %s", o_entry.chrom, o_entry.pos, o_entry.id)
except KeyError:
logging.debug("Unshared format %s in sample %s ignored for pair %s:%d %s %s:%d %s",
key, sample, entry.chrom, entry.pos, entry.id, o_entry.chrom,
o_entry.pos, o_entry.id)


return entry, n_consolidate

Expand Down

0 comments on commit bc8bf84

Please sign in to comment.