Is it OK for bbmerge and SPAdes that my reads have diffenet length? i.e. Illumina is 2x300bp and dnbseq is 2x100bp.
Hi all!
I have two data sets for one metagenome sample:
Illumina2x300 bp shotgun metagenome library.DNBSEQ2x100 bp shotgun metagenome library.
THe question is: is it possible to get more deep and complex assembly by combining those datasets before\after assembly step?
I've tried just merge forward and reverse reads from both Illumina and DNBSEQ into mergred_forward.fastq and mergred_reverse.fastq and pass it to SPAdes or megahit. But I feel this is wrong approach. I figured out that genes of 16S rRNA look more accurate from separated assemblies than from merged.
Also I've heard about unicycler but it needs long-read sequencing data which i haven't. also I thought about using assembled contigs of Illumina or DNBSEQ data as pseudo-long-reads and pass to unicycler but it seems illegal.
So I'm cunfused and need some advice at this point.
Thanks a lot!
1 answer
You may read about bbmerge here: https://github.com/BioInfoTools/BBMap/blob/master/sh/bbmerge.sh, then you can try to them using SPAdes.
yes, I think the tool is quite adaptable and can work with reads of different lengths.
Log in to answer this question.
Can you clarify what you mean by this?
Did you just
catthe forward read files into one? I think that is what you seem to have done based on names of files.OR
Did you try to merge individual reads from each of the technologies (e.g. using a tool like
bbmerge.shreferred to below) into a single long read (assuming reads are overlapping i.e the length of sequencing is > than size of insert)?Hi! Yes , I just use
catfor iilumina fiorward and dnbseq forward and same for reverse and pass in to assembler. I haven't tried yetbbmerge.shso I'll try it right now. If I am clearly understand this tool will just mate my paired reads into single-end reads?It will merge the overlapping part of the reads into one long read, only IF the two reads overlap. If they don't then nothing will happen.