Skip to content

Commit 3ee5b33

Browse files
committed
2.8.1
1 parent 0e745db commit 3ee5b33

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Flye assembler
33

44
[![BioConda Install](https://img.shields.io/conda/dn/bioconda/flye.svg?style=flag&label=BioConda%20install)](https://anaconda.org/bioconda/flye)
55

6-
### Version: 2.8
6+
### Version: 2.8.1
77

88
Flye is a de novo assembler for single molecule sequencing reads,
99
such as those produced by PacBio and Oxford Nanopore Technologies.
@@ -22,6 +22,9 @@ Manuals
2222
Latest updates
2323
--------------
2424

25+
### Flye 2.8.1 release (02 Sep 2020)
26+
* Added a new option `--hifi-error` to control the expected error rate of HiFi reads (no other changes)
27+
2528
### Flye 2.8 release (04 Aug 2020)
2629
* Improvements in contiguity and speed for PacBio HiFi mode
2730
* Using the `--meta` k-mer selection strategy in isolate assemblies as well.
@@ -128,7 +131,7 @@ The assemblies generated using Flye 2.8 could be downloaded from [Zenodo](https:
128131
All datasets were run with default parameters for the corresponding read type
129132
with the following exceptions: CHM13 T2T was run with `--min-overlap 10000 --asm-coverage 50`;
130133
CHM1 was run with `--asm-coverage 50`. CHM13 HiFi and HG002 HiFi datasets were run in
131-
`--pacbio-hifi` mode and reduced error rate threshold (0.003%).
134+
`--pacbio-hifi` mode and `--hifi-error 0.003`.
132135

133136
Third-party
134137
-----------

docs/NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Flye 2.8.1 release (02 Sep 2020)
2+
===============================
3+
* Added a new option `--hifi-error` to control the expected error rate of HiFi reads (no other changes)
4+
15
Flye 2.8 release (04 Aug 2020)
26
==============================
37
* Improvements in contiguity and speed for PacBio HiFi mode

docs/USAGE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ optional arguments:
5454
minimum overlap between reads [auto]
5555
--asm-coverage int reduced coverage for initial disjointig assembly [not
5656
set]
57+
--hifi-error float expected HiFi reads error rate (e.g. 0.01 or 0.001)
58+
[0.01]
5759
--plasmids rescue short unassembled plasmids
5860
--meta metagenome / uneven coverage mode
5961
--keep-haplotypes do not collapse alternative haplotypes
@@ -126,7 +128,9 @@ ONT data than with PacBio data, especially in homopolymer regions.
126128
### PacBio HiFi
127129

128130
Flye now supports assembly of PacBio HiFi protocol via `--pacbio-hifi` option.
129-
The expected read error is <1%.
131+
The expected read error is 1% by default. In case the reads are more accurate,
132+
you can adjust `--hifi-error` parameter (for example to 0.001) to potentially
133+
generate more complete assemblies.
130134

131135
### PacBio CLR
132136

@@ -347,7 +351,7 @@ The assemblies generated using Flye 2.8 could be downloaded from [Zenodo](https:
347351
All datasets were run with default parameters for the corresponding read type
348352
with the following exceptions: CHM13 T2T was run with `--min-overlap 10000 --asm-coverage 50`;
349353
CHM1 was run with `--asm-coverage 50`. CHM13 HiFi and HG002 HiFi datasets were run in
350-
`--pacbio-hifi` mode and reduced error rate threshold (0.003%).
354+
`--pacbio-hifi` mode and `--hifi-error 0.003`.
351355

352356
## <a name="algorithm"></a> Algorithm Description
353357

flye/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.8"
1+
__version__ = "2.8.1"

0 commit comments

Comments
 (0)