View source: R/write_df_to_fasta.R
write.df_to_fasta | R Documentation |
This function writes a data frame to a fasta file with the same name as the data frame. The data frame is assumed to have two columns, "Header" and "Sequence", which represent the header and sequence lines of each fasta record, respectively.
write.df_to_fasta(df)
df |
A data frame containing fasta records with "Header" and "Sequence" columns. |
This function does not return a value, but writes a fasta file to the working directory.
sample_file_path <- system.file("extdata", "sample_fa.fasta", package = "baseq")
read.fasta_to_df(sample_file_path)
write.df_to_fasta(sample_fa)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.