Skip to content

Commit

Permalink
bump to v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
David Heller committed Oct 8, 2020
1 parent d61e5dc commit 15fb588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Installation
Changelog
---------
- **v1.4.2**: fix invalid start coordinates in VCF output, issue warning for invalid characters in contig names
- **v1.4.1**: improve clustering of translocation breakpoints (BNDs), improve --all_bnds mode, bugfixes
- **v1.4.0**: fix and improve clustering of insertions, add option --all_bnds to output all SV classes in breakend notation, update default value of --partition_max_distance to avoid very large partitions, bugfixes
- **v1.3.1**: small changes to partitioning and clustering algorithm, add two new command-line options to output duplications as INS records in VCF, remove limit on number of supplementary alignments, remove q5 filter, bugfixes
Expand Down
4 changes: 2 additions & 2 deletions src/svim/svim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

__version__ = '1.4.1'
__version__ = '1.4.2'
__author__ = 'David Heller'

import sys
Expand Down Expand Up @@ -215,4 +215,4 @@ if __name__ == "__main__":
try:
sys.exit(main())
except Exception as e:
logging.error(e, exc_info=True)
logging.error(e, exc_info=True)

0 comments on commit 15fb588

Please sign in to comment.