I have a data in that always comes in block of four in the following format (called FASTQ):

@SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
+SRR018006.2016 GA2:6:1:20:650 length=36
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!+!
@SRR018006.19405469 GA2:6:100:1793:611 length=36
ACCCGCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
+SRR018006.19405469 GA2:6:100:1793:611 length=36
7);;).;);;/;*.2>/@@7;@77<..;)58)5/>/

Is there a simple sed/awk/bash way to convert them into this format (called FASTA):

>SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
>SRR018006.19405469 GA2:6:100:1793:611 length=36
ACCCGCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

In principle we want to extract the first two lines in each block-of-4 and replace @ with >.

link|improve this question

Okay, I just received a headache. – Homework Oct 9 '09 at 7:30
feedback

12 Answers

up vote 8 down vote accepted

sed ain't dead. If we're golfing:

sed '/^@/!d;s//>/;N'

Or, emulating http://www.ringtail.tsl.ac.uk/david-studholme/scripts/fastq2fasta.pl posted by Pierre, which only prints the first word (the id) from the first line and does (some) error handling:

#!/usr/bin/sed -f
# Read a total of four lines
$b error
N;$b error
N;$b error
N
# Parse the lines
/^@\(\([^ ]*\).*\)\(\n[ACGTN]*\)\n+\1\n.*$/{
  # Output id and sequence for FASTA format.
  s//>\2\3/
  b
}
:error
i\
Error parsing input:
q

There seem to be plenty of existing tools for converting these formats; you should probably use these instead of anything posted here (including the above).

link|improve this answer
feedback

As detailed in Cock, et al (2009) NAR, many of these solutions are incorrect since "the ‘@’ marker character (ASCII 64) may occur anywhere in the quality string. This means that any parser must not treat a line starting with ‘@’ as indicating the start of the next record, without additionally checking the length of the quality string thus far matches the length of the sequence."

See http://ukpmc.ac.uk/articlerender.cgi?accid=PMC2847217 for details.

link|improve this answer
Not true for any solution specifying that the @ character is at the begining of the line with '^@', which seems to represent the majority of the answers. Cheers – Morlock Apr 13 '11 at 15:42
1  
Actually, this is a true statement since a quality value of @ can in principle occur anywhere in the quality string including the first character, '^@' is not guaranteed to catch the name lines only. – Casey Bergman Aug 10 '11 at 11:08
Indeed. Sorry for not having taken a few more seconds to think about the problem properly. Cheers – Morlock Aug 26 '11 at 0:02
feedback

just awk , no need other tools

# awk '/^@SR/{gsub(/^@/,">",$1);print;getline;print}' file
>SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
>SRR018006.19405469 GA2:6:100:1793:611 length=36
ACCCGCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
link|improve this answer
feedback

See fastq2fasta.pl in http://www.ringtail.tsl.ac.uk/david-studholme/scripts/

link|improve this answer
feedback

This is the fastest I've got, and I stuck it in my .bashrc file:

alias fq2fa="awk '{print \">\" substr(\$0,2);getline;print;getline;getline}'"

It doesn't fail on the infrequent but not impossible quality lines that start with @... but does fail on wrapped FASTQ, if that's even legal (it exists though).

link|improve this answer
feedback

This is an old question, and there have been many different solutions offered. Since the accepted answer uses sed but has a glaring problem (which is that it will replace @ with > when the @ sign appears as the first letter of the quality line), I feel compelled to offer a simple sed-based solution that actually works:

sed -n '1~4s/^@/>/p;2~4p' 

The only assumption made is that each read occupies exactly 4 lines in the FASTQ file, but that seems pretty safe, in my experience.

The fastq_to_fasta script in the fastx toolkit was mentioned, and while I really love a lot of what this toolkit offers, this script in particular seems to not play well with Phred+33 quality scores, which are common (again). Which is funny, since you're throwing away the quality info anyway.

$ fastq_to_fasta -help
usage: fastq_to_fasta [-h] [-r] [-n] [-v] [-z] [-i INFILE] [-o OUTFILE]
Part of FASTX Toolkit 0.0.13 by A. Gordon (gordon@cshl.edu)

$ cat data.fastq | fastq_to_fasta 
fastq_to_fasta: Invalid quality score value (char '#' ord 35 quality value -29) on line 4

$ head data.fastq 
@HS3:140:c0adtacxx:1:1101:2942:1999 1:Y:0:TTAGGC
NATGNCCTCTCATCCTCATTCCCTCCAGTAGTAGTGAGGGCATGCCTGTGCTCTTGCCCTTACCTGCCATCCACTGTTCCTTTCTCTCCTGTATCTCTTC
+
#0;@#2@@@@@@@@@@@?@@@@@?@@?@@@@@@@????????????????????????@@>@@>>;???=??@>?????????==;9==><>>>:7;===
@HS3:140:c0adtacxx:1:1101:3196:1996 1:Y:0:TTAGGC
NCCGNNCTCTAGATCGGAAGAGCACACGTCTGGCACCAAGATCGGAAGAGCACACGTCTGAACTCCAGTCACTTAGGCATCTCGTATGCCGTCTTCTGCT
+
#4;@##4<>@@?@@??@?@@@@@@@?@@??????<??<???????<?????>??????@???????????>??>????=<===<<<=<==99:<<<=;<<
link|improve this answer
feedback

Here's the solution to the "skip every other line" part of the problem that I just learned from SO:

while read line
do
    # print two lines
    echo "$line"
    read line_to_print
    echo "$line_to_print"

    # and skip two lines
    read line_to_skip
    read line_to_skip
done

If all that needs to be done is change one @ to >, then I reckon

while read line
do
    echo "$line" | sed 's/@/>/'
    read line
    echo "$line"

    read line_to_skip
    read line_to_skip
done

will do the job.

link|improve this answer
there should be an input redirection for the input file. to replace characters in bash, ${line/@/>} should suffice. no need sed. – ghostdog74 Oct 9 '09 at 12:00
feedback

Something like:

awk 'BEGIN{a=0}{if(a==1){print;a=0}}/^@/{print;a=1}' myFastqFile | sed 's/^@/>/'

should work.

link|improve this answer
since you are using awk already, there is no need to waste an extra process calling sed. do the substitution inside awk. – ghostdog74 Oct 9 '09 at 11:58
You are right. I have upvoted your answer. – mouviciel Oct 9 '09 at 12:44
feedback

I think, with gnu grep this could be done with this:

grep -A 1 "^@" t.txt | grep -v "^--" | sed -e "s/^@/\>/"
link|improve this answer
if the file happens to be very big, there's no point chaining greps and sed together like that. – ghostdog74 Oct 9 '09 at 12:02
feedback
awk 'BEGIN{P=1}{if(P==1||P==2){gsub(/^[@]/,">");print}; if(P==4)P=0; P++}' data

>SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
>SRR018006.19405469 GA2:6:100:1793:611 length=36
ACCCGCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

below

awk '{gsub(/^[@]/,">"); print}' data

where data is your data file. I've received:

>SRR018006.2016 GA2:6:1:20:650 length=36
NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN
+SRR018006.2016 GA2:6:1:20:650 length=36
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!+!
>SRR018006.19405469 GA2:6:100:1793:611 length=36
ACCCGCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
+SRR018006.19405469 GA2:6:100:1793:611 length=36
7);;).;);;/;*.2>/@@7;@77<..;)58)5/>/
link|improve this answer
1  
this is correct ! – bua Oct 9 '09 at 8:25
feedback

I know I'm way in the future, but for the benefit of googlers:

You may want to use fastq_to_fasta from the fastx toolkit. It will keep the @ sign, though. It will also remove lines with Ns unless you tell it not to.

link|improve this answer
feedback

I'd write

awk '
    NR%4 == 1 {print ">" substr($0, 2)}
    NR%4 == 2 {print}
' fastq > fasta
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.