THANK YOU IT WORKS !!!!!!!!
• 0 views
•
link
can anyone help me in finding the script that convert .fastq to .fasta format it would be help full if the script would be in perl scrpt or awk
How about this?
awk 'BEGIN {id=1; seq=2;} NR==id{ sub(/^@/,">",$0); print $0; id += 4;} NR==seq{ print $0; seq += 4}' FASTQ_FILE
THANK YOU IT WORKS !!!!!!!!
Just did this with fastq_to_fasta from the fastx package (http://hannonlab.cshl.edu/fastx_toolkit/)
Thank YOU !!!!!!!!!!!
Log in to answer this question.
http://hannonlab.cshl.edu/fastx_toolkit/