Hi everyone,
I'm a novice in the world of bioinformatics and I was wondering if anyone could help me blast a short series of sequences contained in a fasta file, against a fastq file obtained through Oxford Nanapore MinION sequencing? My goal is to see if the fastq files contains the gene(s) I'm looking for.
Thanks!
You should ideally use
minimap2
(https://github.com/lh3/minimap2 ). How many sequences are in respective files? How long are your fasta sequences?As your title suggests, you could do this with BLAST, but as Genomax points out, minimap2 might be better, depending on the data.
There are 35 sequences in the fasta file (all between 100bp and 300bp). The fastQ file(s) I would like to try and align the sequences contained in the fasta file against contains raw Oxford Nanapore fastq sequence at around 1Mb. Thanks for the minimap2 recommend.
Do you need to do this from reads? It may be sensible to assemble your nanopore data first, just on the off chance that one of your hits is at the end of a read or something. It would also reduce the dimensions of the output to just one or two hits, rather than several tens or hundreds of reads too.