Extatrcting only sequnces from fastq.gz
I have a fastq.gz file which contains millions of DNA sequences. IS there fast way to extract only the sequences (one sequence/read per line) and save all the sequences into csv or text file for further analysis?
• 1,015 views
•
link
1 answer
gunzip -c in.fastq.gz | awk '(NR%4==2)' > out.seq
• 0 views
•
link
Log in to answer this question.