This function reads and parses a multiple sequence alignment file produced by the MAFFT –text algorithm. It extracts showID and sequence information from the file and returns it as a data frame.
Value
A data frame with two columns:
showID: An integer vector of show identifiers.
sequence: A character vector of aligned sequences.
Examples
if (FALSE) { # \dontrun{
alignment_data <- read_mafft_clustal_alignment("path/to/mafft_alignment.txt")
head(alignment_data)
} # }