thank you so much .. is there any option to remove the read of the same fragment from both paired-end FASTQ?
• 0 views
•
link
Dear All: Does anyone know an efficient tool or script that removes certain reads with from Fastq file when it matches specific sequence? this means : if the reads contain my sequence so the entire read should be completely removed from the FASTQ file.
Many many thanks
Use seqkit grep:
$ zcat input.fq.gz | seqkit grep -v -s -i -p aggcg
This will remove all reads containing "aggcg".
thank you so much .. is there any option to remove the read of the same fragment from both paired-end FASTQ?
Log in to answer this question.
Your question is similar to this one How to remove reads from fastq flle that match to a set of reads in my fasta file?