overwrite

write_fasta(fasta, path, width)

Arguments

fasta

tibble. see Value of read_fasta().

path

string. Path to the fasta file which you want write to.

width

logical scalar. NotYetUsed.

Value

the input invisibly

Examples

{
    input_file  <- system.file('extdata', 'example.fasta', package = 'rutil')
    output_file <- tempfile()
    write_fasta(read_fasta(input_file), output_file)
}