STAR alignment error: ERROR in input reads
1
0
Entering edit mode
5.4 years ago
prabin.dm ▴ 260

Hi,

I am using STAR to align my RNAseq datasets and I am having this error

ReadAlignChunk_processChunks.cpp:115:processChunks EXITING because of FATAL ERROR in input reads: unknown file format: the read ID should start with @ or >

This is my code

module load star/2.5.3a

STAR -- genomeDir mouse/star_genome_mm10 \
        -- readFilesIn L001_R1_001.fastq.gz \
        --outSAMtype BAM SortedByCoordinate \
        --outSAMunmapped Within \
        --twopassMode Basic \
        --outFilterMultimapNmax 1 
        --quantMode TranscriptomeSAM \
        --runThreadN 6 \
        --outFileNamePrefix "STAR_output/Test/"

The Fastq files look like this

@NS500540:133:HNFTLBGX5:1:11101:11802:1042 1:N:0:ACTGAT
CTCCGNTTTATTTATTTGTTCTGCAAATTCGATGCGTCTACCTTCAAATAAAGCATTCATCTTTCTCTGTGACTCT
+
AAAAA#EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE

Is there something wrong I am not able to figure out? I have checked the file for each line, they start with @

thank you

fastq STAR RNA-Seq • 9.5k views
ADD COMMENT
1
Entering edit mode

I have checked the file for each line, they start with @

Are you certain about that? Did you do anything to this file that may have corrupted the format (e.g. improper trimming)?

You can try validateFiles utility from Jim Kent to see if your file checks out.

ADD REPLY
0
Entering edit mode

Thats looks like an useful utility.

When I downloaded it saves as a text file, which I cant run. Can you please let me know how to use it?

ADD REPLY
0
Entering edit mode

You need to add execute permission to it by doing chmod a+x validateFiles before you can run it.

ADD REPLY
1
Entering edit mode

There shouldn't be a space in -- readFilesIn. Please select a title which describes your problem better than this.

ADD REPLY
0
Entering edit mode

thank you. I will make that change. Also, I changed the title.

ADD REPLY
0
Entering edit mode

what are the outputs of

file L001_R1_001.fastq.gz

and

gunzip -c L001_R1_001.fastq.gz | paste - - - - | cut -c 1 | uniq | sort | uniq

?

ADD REPLY
0
Entering edit mode

the output for file L001_R1_001.fastq.gz is L001_R1_001.fastq.gz: gzip compressed data, extra field

and the output for gunzip -c L001_R1_001.fastq.gz | paste - - - - | cut -c 1 | uniq | sort | uniq is @

ADD REPLY
11
Entering edit mode
5.4 years ago
h.mon 35k

If your fastq files are gzip-compressed, you have to use the parameter --readFilesCommand zcat.

ADD COMMENT
0
Entering edit mode

That worked. Thank you

While we are at it, can i ask another question?

I prepared STAR genome indices with --sjdbOverhang 99. Currently the readlength of my fastq files are 75bp.

Should I prepare genome indices again ?

ADD REPLY
2
Entering edit mode

Biostars is better organized if each thread has only one question. Anyway, no, you do not need to build the indices again, see this post: Confused about sjdbOverhang .

ADD REPLY
0
Entering edit mode

Thanks again. I will do that.

ADD REPLY

Login before adding your answer.

Traffic: 1544 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6