Troubles importing FASTA file

Hi @aeriel.belk,
It looks like the issue is that a number of sequences contain lower-case characters. use the following to convert your file before importing:

tr 'acgt' 'ACGT' < reference-hit.seqs.fa > seqs.fna

That will do the trick!

3 Likes