NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes.
Last updates: 9/09/19 version 3.7
- Improved heteroplasmy calling
30/07/19 - Improved heteroplasmy calling
- Resolved several bugs
- Batch assemblies won't interrupt anymore after a failed assembly
10/07/19 - Resolved several bugs
- There were some problems with high memory usage, should be resolved now
24/04/19 - UPDATED CONFIG FILE!
- New heteroplasmy function (can link heteroplasmic mutations by local assembly)
- New batch function
- Small improvements in assembly
Any issues/requests/problems/comments that are not yet addressed on this page can be posted on Github issues and I will try to reply the same day.
Or you can contact me directly through the following email address:
nicolasdierckxsens at hotmail dot com
If your assembly was unsuccessful, you could already add the log file and the configuration file to the mail, this could help me to identify the problem!
!A more complete manual can found under the Wiki section!
There are different types of seed possible:
- A single read from the dataset that originates from the organelle genome.
- A organelle sequence derived from the same or a related species.
- A complete organelle sequence of a more distant species (recommended when there is no close related sequence available)
The format should be like a standard fasta file (first line: >Id_sequence)
Be cautious for seed sequences that are similar in both mitochondrial and chloroplast genomes.
We observed good results with RUBP sequences as seeds for chloroplast assembly.
You can download the example file (config.txt) and adjust the settings to your liking.
Every parameter of the configuration file is explained below.
No further installation is necessary:
perl NOVOPlasty3.2.pl -c config.txt
The input reads have to be uncompressed Illumina reads (fastq/fasta files) or gz/bz2 zipped files.
There is also an Ion Torrent option, but it does not produce the best results.
Either two separate files(forward and reverse) or a merged fastq/fasta file.
Multiple libraries as input is not yet supported.
DO NOT filter or quality trim the reads!!! Use the raw whole genome dataset (Only adapters should be removed)!
You can subsample to speed up the process and to reduce the memory requirements. This also possible by using the max memory option in the config file. But it is recommended to use as much reads as possible, especially when the organelle genome contains AT-rich stretches.
You can always try different K-mer's. In the case of low coverage problems or seed errors, it's recommended to lower the K-mer (set between 21-39)!!!.
A '*' in the fasta output files indicates that the nucleotide before is a possible deletion/insertion. This can occur when the exact length of single nucleotide repeat can't be determined exactly due to systemic Illumina sequencing errors or within repetitive regions. Since this sign can interfere with post processing algorithms it is best resolve them manually or to delete them.
Most gaps are caused by Single Nucleotide Repeats (SNR). Illumina seqeuncers have a high rate of systemic errors after SNR's and are therefore hard to assemble. NOVOPlasty is cabale of assembling these regions as correct as possible by approaching these regions from both sides (sequencing errors commence once in the SNR). If this region is not too long, NOVOPlasty can automaticallly merge both sides, otherwise it will output a gap. Although this gap can often be closed automatically (if both sides overlap).
You can find an example (form the Avicennia officinalis chloroplast assembly) below how to do this manually:
These regions are indicated by 15 N's:
TTCTTGTCATTTCTCCCCCCCCCCCCCBTTTTTTTTTTHAAAAAAAAAAAANNNNNNNNNNNNNNNTTTTTTTCCTTTCCCCCCCCCCCCCCCTTTTTTTTTTCAAAAAAAAAAGAGACGAGAAACTC
Remove the N's and align both sides (Remember that the end of the first sequence and the start of the second sequence are not reliable):
TTCTTGTCATTTCTCCCCCCCCCCCCCBTTTTTTTTTTHAAAAAAAAAAAA
TTTTTTTCCTTTCCCCCCCCCCCCCCCTTTTTTTTTTCAAAAAAAAAAGAGACGAGAAACTCTGAA
The most likable consensus sequence would be this, so you should correct the assembly like this:
TTCTTGTCATTTCTCCCCCCCCCCCCCCTTTTTTTTTTCAAAAAAAAAAGAGACGAGAAACTCTGAA
It is adviced to make these corrections before you verify the assembly by realigning the reads
Ideally you will have one or two outputted assemblies. When you have two assemblies from the same length, the only difference will be the orientation of the inverted repeat. This can be resolved manually by mapping the assemblies to the closest reference. (On NCBI's BLAST you can further examine your mapping by clicking on 'Graphics', this will show you which orientation is correct.) Otherwise you can first annotate the two assemblies and compare the gene order.
This is an example of a configuration file for the assembly of a chloroplast. To make the assembler work, your configuration file has to have the exact same structure. (Make sure there is always a space after the equals sign and every parameter is captured in one single line)
1. Example of configuration file:
Project: ----------------------- Project name = Test Type = mito Genome Range = 12000-22000 K-mer = 39 Max memory = Extended log = 0 Save assembled reads = no Seed Input = Seed.fasta Reference sequence = /path/to/reference_file/reference.fasta (optional) Variance detection = no Heteroplasmy = HP exclude list = Chloroplast sequence = /path/to/chloroplast_file/chloroplast.fasta (only for "mito_plant" option) Dataset 1: ----------------------- Read Length = 151 Insert size = 300 Platform = illumina Single/Paired = PE Combined reads = Forward reads = /path/to/reads/reads_1.fastq Reverse reads = /path/to/reads/reads_2.fastq Optional: ----------------------- Insert size auto = yes Insert Range = 1.8 Insert Range strict = 1.3 Use Quality Scores = no
2. Explanation parameters:
Project: ----------------------- Project name = Choose a name for your project, it will be used for the output files. Type = (chloro/mito/mito_plant) "chloro" for chloroplast assembly, "mito" for mitochondrial assembly and "mito_plant" for mitochondrial assembly in plants. Genome Range = (minimum genome size-maximum genome size) The expected genome size range of the genome. Default value for mito: 12000-20000 / Default value for chloro: 120000-200000 If the expected size is know, you can lower the range, this can be useful when there is a repetitive region, what could lead to a premature circularization of the genome. K-mer = (integer) This is the length of the overlap between matching reads (Default: 39). If reads are shorter then 90 bp or you have low coverage data, this value should be decreased down to 23. For reads longer then 101 bp, this value can be increased, but this is not necessary. Max memory = You can choose a max memory usage, suitable to automatically subsample the data or when you have limited memory capacity. If you have sufficient memory, leave it blank, else write your available memory in GB (if you have for example a 8 GB RAM laptop, put down 7 or 7.5 (don't add the unit in the config file)) Extended log = Prints out a very extensive log, could be useful to send me when there is a problem (0/1). Save assembled reads = All the reads used for the assembly will be stored in seperate files; if option 2 is used, the original ids will be retained. (yes/no/2) Seed Input = The path to the file that contains the seed sequence. Reference (optional) = If a reference is available, you can give here the path to the fasta file. The assembly will still be de novo, but references of the same genus can be used as a guide to resolve duplicated regions in the plant mitochondria or the inverted repeat in the chloroplast. References from different genus haven't beeen tested yet. Variance detection = If you select yes, you should also have a reference sequence (previous line). It will create a vcf file with all the variances compared to the give reference (yes/no) Heteroplasmy = If you want to detect heteroplasmy,first assemble the genome without this option. Then give the resulting sequence as a reference and as a seed input. And give the minimum minor allele frequency for this option (0.01 will detect heteroplasmy of >1%) HP exclude list = Option not yet available Chloroplast sequence = The path to the file that contains the chloroplast sequence (Only for mito_plant mode). You have to assemble the chloroplast before you assemble the mitochondria of plants! Dataset 1: ----------------------- Read Length = The read length of your reads. Insert size = Total insert size of your paired end reads, it doesn't have to be accurate but should be close enough. Platform = illumina/ion The performance of the Ion torrent is limited Single/Paired = PE/SE. Combined reads = The path to the file that contains the combined reads (forward and reverse in 1 file) Forward reads = The path to the file that contains the forward reads (not necessary when there is a merged file) Reverse reads = The path to the file that contains the reverse reads (not necessary when there is a merged file) Optional: ----------------------- Insert size auto = (yes/no) This will finetune your insert size automatically (Default: yes) Insert Range = This variation on the insert size, could lower it when the coverage is very high or raise it when the coverage is too low (Default: 1.6). Insert Range strict = Strict variation to resolve repetitive regions (Default: 1.2). Use Quality Scores = It will take in account the quality scores, only use this when reads have low quality, like with the 300 bp reads of Illumina (yes/no)