How can I tell my fastq is a fastqsanger or not?
2
0
Entering edit mode
7.3 years ago
diltsjeri ▴ 470

Hi,

If I'm given a fastq file. How am I able to tell if it's a fastqsanger format or not? Is there a command line tool available for this? I really don't want to have to go into galaxy to ensure its format.

Thanks!

fastq fastqsanger • 4.2k views
ADD COMMENT
1
Entering edit mode

A: Tool To Find Out If Fastq Is In Sanger Or Phred64 Encoding? head -n 40 file.fastq | awk '{if(NR%4==0) printf("%s",$0);}' | od -A n -t u1 | awk 'BEGIN{min=100;max=0;}{for(i=1;i<=NF;i++) {if($i>max) max=$i; if($i<min) min=$i;}}END{if(max<=74 && min<59) print "Phred+33"; else if(max>73 && min>=64) print "Phred+64"; else if(min>=59 && min<64 && max>73) print "Solexa+64"; else print "Unknown score encoding\!";}'

ADD REPLY
0
Entering edit mode

Also, for clarification. Is it safe to assume that all the latest nexgen (NexSeq, HiSeq, IonTorrent, etc) technologies are outputting fastqsanger as the .fastq? Or should I just never assume anything?

ADD REPLY
0
Entering edit mode

Assume it but make sure ;)

ADD REPLY
3
0
Entering edit mode

Thanks! Your google skills are better than mine.

ADD REPLY
1
Entering edit mode
7.3 years ago
GenoMax 141k

Use testformat.sh from BBMap suite.

ADD COMMENT

Login before adding your answer.

Traffic: 2005 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