Skip to content

Releases: rrwick/Trycycler

Trycycler v0.5.5

28 Mar 04:49
Compare
Choose a tag to compare

Just some small fixes and enhancements in this release, including:

  • Fix a Pillow deprecation which broke trycycler dotplot (issues #68 and #72).
  • Parallelise pairwise alignments for better performance (PR #64, thanks @danpal96).
  • All circularisations are now attempted before trycycler reconcile quits with an error. Should help reduce the number of times this command needs to be rerun.

Trycycler v0.5.4

15 Mar 03:29
Compare
Choose a tag to compare

The most significant change in this release affects the final pairwise sequence comparison in Trycycler reconcile. Previously, the maximum pairwise indel size was reported for each sequence pair, but since edlib doesn't do affine-gap alignment, this value wasn't very useful. So I've replaced it with worst-1kbp identity, i.e. the lowest identity across a 1-kbp sliding window. This does a better job of showing how divergent two sequences are at their worst point.

A few other small fixes are also included:

Trycycler v0.5.3

09 Dec 06:53
Compare
Choose a tag to compare

Just one tiny fix in this release: the version number in the tool now correctly matches the version number in GitHub. Thanks to @pvstodghill for catching this one!

Trycycler v0.5.2

19 Nov 06:31
Compare
Choose a tag to compare

Changes since the last version:

  • Trycycler now supports the recently released MUSCLE v5.
  • Fixed a crash in Trycycler dotplot when no expected fonts were found on the system.

Trycycler v0.5.1

11 Oct 22:04
Compare
Choose a tag to compare

Just a couple little changes in this release:

  • Increased the default value of --max_indel_size from 250 to 1000 for trycycler reconcile (#16).
  • Fixed a bug where trycycler cluster could crash when trying to save the newick file (#21).

Trycycler v0.5.0

19 Mar 04:25
Compare
Choose a tag to compare

This version adds a new command: trycycler dotplot. This is an optional step which gives a visual representation of the contigs in a cluster. It can help users to make decisions when making decisions during cluster reconciliation.

Trycycler v0.4.3

23 Feb 05:10
Compare
Choose a tag to compare

Just one small fix in this version: previously, Trycycler would crash if any of the input contigs contained a slash character (/) in their name. Now Trycycler checks for this and quits with an error message if it finds a slash. Thanks to @aruginkgo for pointing this out in issue #11.

Trycycler v0.4.2

10 Jan 23:14
Compare
Choose a tag to compare

This release fixes a bug where Trycycler would crash (probably at the MSA step) if any of the input FASTA files had lowercase bases. Thanks to @jdakota1305 for spotting this one: #10.

Trycycler now explicitly uses uppercase bases for all its steps. You can still give it lowercase FASTAs as input, but it will convert them to uppercase.

Trycycler v0.4.1

08 Dec 00:28
Compare
Choose a tag to compare

Just a small change from the previous release: I decided to remove read subset interleaving (for simplicity) and instead interleave the assembler order in the documentation.

Trycycler v0.4.0

07 Dec 04:46
Compare
Choose a tag to compare

This version contains a new command, trycycler subsample, which assists with creating subsampled read sets for generating input assemblies. See the wiki for more details!

It also has a few bug fixes and better test coverage 😄