This is a test version of Biostars. For the public version, visit https://www.biostars.org.
STAR alignment error: ERROR in input reads

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

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

?

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 @

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.

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?

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

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

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

1 answer

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

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 ?

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 .

Thanks again. I will do that.

Should I expect to have a file named Aligned.toTranscriptome.out.bam from running quantMode TranscriptomeSAM. I dont see that file.

Log in to answer this question.