Entering edit mode
3.1 years ago
Princy
▴
60
Hello everyone,
I was doing Trimmomatic on paired fastq file, but this is giving an error.
head SO_5494_LR_20_MS_01_S27_R2_001.fq
@NS500223:167:H3T5HBGXY:1:11101:21506:1055 2:N:0:GCCAATAT+NGANCTCG
ATGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN
+
AAA###################################################################################################################################################
--
@NS500223:167:H3T5HBGXY:1:11101:3745:1056 2:N:0:GCCAATAT+NGANCTCG
AGGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN
+
AAA###################################################################################################################################################
--
While doing Trimmomatic it is giving this error,
Exception in thread "main" java.lang.RuntimeException: Invalid FASTQ name line: --
at org.usadellab.trimmomatic.fastq.FastqParser.parseOne(FastqParser.java:68)
at org.usadellab.trimmomatic.fastq.FastqParser.parse(FastqParser.java:156)
at org.usadellab.trimmomatic.TrimmomaticPE.process(TrimmomaticPE.java:265)
at org.usadellab.trimmomatic.TrimmomaticPE.run(TrimmomaticPE.java:555)
at org.usadellab.trimmomatic.Trimmomatic.main(Trimmomatic.java:80)
How can I remove -- this from my fastq file?
how where they 'added' to that file in the first place? That is indeed not standard fastq format.
(looks like it's the output of
grep
or such)