Note: This assumes a qual score of 40. Nice tool though!
Hiiii....If anyone can please helo me how to convert fasta files into fastq using ubuntu....i shall be very thank ful....
4 answers
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
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:
Use of uninitialized value $header in string ne at fasta_to_fastq.pl line 13, <FILE> line 1.
In line 13 is:
if($header ne "") {
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 add use strict; (next to use warnings)
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.
OP is thinking FASTA to FASTQ. Is that even possible?
You can convert but... without quality score?
MTE. Which is why I was wondering why OP wants to do this exactly. No tools that *needs* a FASTQ file will make do with a FASTA file's info content.
Yep. Now I'm curious about why the OP wants to do this conversion.. let's wait.
you can always filter out the reads with low quality score from fastq file and then convert to fasta
Does this work for fasta to fastq? since you wrote fastq > fasta
No it won't. But you can see my answer in this thread: A: Convert from fasta to fastq
Remember that the Q scores are fake and you set the value.
Ok, It worked, but I am trying to make a sam file from it and im getting a zero file out put with this error. Segmentation fault: 11 could you help?
Please open a separate question for this issue.
I am trying to make a sam file from it
You will need to add a lot more details here.
Log in to answer this question.