Entering edit mode
7.2 years ago
ranjeet_maurya
•
0
At the time of "Mismatch correction" in SPAdesv3.10 Running bwa mem using bwa-spades , SPAdes pipeline abrupt abnormally with showing an error
ERROR:
[mem_sam_pe] **paired reads have different names**: "HWI-D00111:192:C39DEACXX:3:2101:13339503", "HWI-D00111:192:C39DEACXX:3:1901:13339503"
[mem_sam_pe] **paired reads have different names**: "HWI-D00111:192:C39DEACXX:3:2101:13339506", "HWI-D00111:192:C39DEACXX:3:1901:13339506"
Having illumina PE reads with headers
read_1
@HWI-D00111:192:C39DEACXX:3:**2101**:13339500 1:N:0:CGTACTAG
read_2
@HWI-D00111:192:C39DEACXX:3:**1901**:13339500 2:N:0:CGTACTAG
If i am n't wrong there is a difference in tile co-ordinates among two PE reads in FASTQ format(i do not have SRA file). So, what should i do with these reads to get my assembly completed?
download bbmap and use repair.sh from it like so:
./repair.sh in1=pair1.fastq in2=pair2.fastq out1=out_pair1.fastq out2=out_pair2.fastq outsingle=out_single.fastq
thanks stolarek.ir ..
It appears that the pairing of reads in your files is messed up. This happens if you trim your paired-end data files individually (rather than together using a paired-end aware data trimming program). You should ideally go back to original data and redo the trimming with both R1/R2 files in the same operation followed by alignments. Otherwise starting with the fastq files and "re-pairing" then as shown by @stolarker.ir is another option.
thanks genomax