QIIME requests this (here) regarding the fasta files it receives as input:
The file is a FASTA file, with sequences in the single line format. That is, sequences are not broken up into multiple lines of a particular length, but instead the entire sequence occupies a single line.
Bio.SeqIO.write
of course follows the format recommendations, and splits the sequence every 80 bps.
I could write my own writer to write those "single-line" fastas - but my question is if there's a way that I missed to make SeqIO
do that.