const isClustal = function(text, suffix)
{
    if (text.substring(0,7) === "CLUSTAL" || suffix == "clustal" || suffix == "aln") {
        return "clustal";
    }