Skip to the content.

Error Correction using Medaka

In addition to graph-based methods such as racon several tools use neural networks for error correction. The first polishing tool to use neural networks, Nanopolish, used the raw signal in the fast5 files of aligned reads to drastically reduce errors in the consensus sequences. Although still considered the best assembly polishing tool recent tests, such as Ryan Wick’s Racon comparison show that the consensus tool Medaka can achieve comparable results despite only working with mapped fastq reads. Given the significantly shorter run-times of Medaka we will not introduce nanopolish in this practical. However, I recommend running Nanopolish for real assemblies and compare the outcome to other error correction tools.

Change into directory ~/course_data/practicals/error_correction_practical/medaka. You will find two folders in there: flye as well as miniasm. These contain the nanofilt reads as well as the flye assembly and the miniasm consensus sequence produced with 2 rounds of racon (feel free to check why I didn’t provide the flye consensus sequence, i.e., what the effect of racon on this particular flye assembly is).

First change into the miniasm directory and run medaka on the consensus assembly:

medaka_consensus –d miniasm.racon_consensus.fasta \
-i filtered.fastq -o medaka_output –m r941_min_high_g303

The above command runs medaka on the miniasm-racon consensus using the filtered reads. The –m model specifies the basecalling model used by guppy to produce the reads. Medaka will write its results to the folder medaka_output. Use dnadiff to compare the consensus.fasta in the directory with the reference chr_17.fasta in the precompiled folder.

  1. What did medaka change, what got better or worse?
  2. How does the Medaka compare to the Minipolish?

Answers

Now change into the medaka/flye directory and polish the flye assembly with medaka:

medaka_consensus –d flye_assembly.fasta -i filtered.fastq \
-o medaka_output –m R941_min_high_g303 –b 50
The medaka call for the flye assembly has an additional option: -b 50. This reduces the batchsize and is needed if there is not enough memory. Otherwise you might get an OOM error. If so, set the number even lower than 50.

As before, compare the medaka result in file medaka_output/consensus.fasta with the reference.

  1. How did Medaka change the Flye assembly?

Answer