Entering edit mode
2.2 years ago
Omurice
▴
10
Apologies for the naive question, if the length of each read in my fastq file is 75bp
For example something like this:
@HS25_123:4:1567:891011:23248/2
CTCCGACAGACTGAGTCGCCCGGGGGGATCTCGAGCGGCCGCCACTGTGCTGGATAATTCGAGCTCGCCCCGACG
+
CCBCCGGGGGGGGGGGGGGGFGGGGGGGGGGGGEGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG
is it possible to grep search for a sequence longer than 75bp?
I would assume not, but just wanted to make sure.
Thank you!
If that is true/known then as @Mensur said you will not get any results since no read in your will will be longer then 75 bp.
If you want to test if that statement is true, then use @shenwei's code to get an answer.
You will want to use a tool that understands fastq format rather than
grep
.