Hiiii....If anyone can please helo me how to convert fasta files into fastq using ubuntu....i shall be very thank ful....
Hiiii....If anyone can please helo me how to convert fasta files into fastq using ubuntu....i shall be very thank ful....
For those who may happen to reach this thread by way of search in future you can convert a fasta file to fastq format using reformat.sh
from BBMap suite.
Please remember that the Q-scores created here are fake (example below sets Q-scores to 35 for all bases).
reformat.sh in=test.fa out=fake.fq qfake=35
There is a perl script here
Usage is
perl fasta_to_fastq.pl reads.fasta > my_converted_fasta.fq
Hi,
FASTQ has more information content than FASTA. The conversion would require that you add some kind of quality scores, most probably some dummy values.
What would really enable us help you better is knowing the purpose behind your quest.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Note: This assumes a qual score of 40. Nice tool though!
very nice script, Thank you so much! It also works on Mac!
please, the qual string length is one base longer than the sequence length. Could you advise how to solve it?
Paste your sequence and qual strings here - maybe that will help figure out what's happening.
Hi! The script works unless I use warnings; If I use it, then it gives a warning:
In line 13 is:
Thank you in advance
See A: Convert from fasta to fastq for an alternative
You'll have to add
my $header;
somewhere at the top op the script (aka, declare the variable). I would also advise to adduse strict;
(next to use warnings)