I got an error when I try to use tophat analysing Solid data from:
and the err report is:
but I don't understand the read-name '32T3@'. the format of my fastq is like this:
So I tracked down the source code of bowtie and rewrite and rebuild the err report function so that it could also report the sequence and quality scores. Then my err report turned to this:
from the report we could see that this sequence have no quality score. I translate the base space sequence to color space sequence and then searched it in fastq file. but the sequence could not be found. What's more, the lenth of sequence also confused me because the sra file report a lenth of 50 bases. but this sequence is 49 bases. I add the '--library-type fr-secondstrand' in tophat command but the err still there.
Anyone have suggestions? I have write a python script to exam the consistency of sequence length and quality in fastq file. but did not find anything wrong. I use tophat2. the error also exist when switch to tophat1
and the err report is:
[2012-09-11 00:43:09] Mapping left_kept_reads to transcriptome M_genes with Bowtie
[FAILED]
Error running bowtie:
Too few quality values for read: 32T3@
are you sure this is a FASTQ-int file?
Command: /usr/local/bin/bowtie -q -C --col-keepends -v 1 -k 60 -m 60 -S -p 4 --sam-nohead --max /dev/null M_heart2_9out/tmp/M_genes -
[FAILED]
Error running bowtie:
Too few quality values for read: 32T3@
are you sure this is a FASTQ-int file?
Command: /usr/local/bin/bowtie -q -C --col-keepends -v 1 -k 60 -m 60 -S -p 4 --sam-nohead --max /dev/null M_heart2_9out/tmp/M_genes -
@SRR545797.117 1_35_540 length=50
T10223131112013200331001120211030313103322000132033
+SRR545797.117 1_35_540 length=50
!@@@8@@@@@?@@@@@@@;@@@@@@@2?-/-@6//6/5=@2?@6./2@28.
T10223131112013200331001120211030313103322000132033
+SRR545797.117 1_35_540 length=50
!@@@8@@@@@?@@@@@@@;@@@@@@@2?-/-@6//6/5=@2?@6./2@28.
Error running bowtie:
Too few quality values for read: 27T3;
are you sure this is a FASTQ-int file?
Name: 27T3;
Seq: GNTCAGNTCACTCCTGGTCAAAAGAGAAAACNGCAANTTAGTCCCGCTT (49)
Qual: (0)
terminate called after throwing an instance of 'int'
Too few quality values for read: 27T3;
are you sure this is a FASTQ-int file?
Name: 27T3;
Seq: GNTCAGNTCACTCCTGGTCAAAAGAGAAAACNGCAANTTAGTCCCGCTT (49)
Qual: (0)
terminate called after throwing an instance of 'int'
Anyone have suggestions? I have write a python script to exam the consistency of sequence length and quality in fastq file. but did not find anything wrong. I use tophat2. the error also exist when switch to tophat1
Comment