const isFasta = function(text, suffix)
{
    if (text.substring(0,1) === ">" || suffix == "fasta" || suffix == "fa") {
        return "fasta";
    }