table_to_fasta: Convert table to fasta.

Description Usage Arguments Examples

View source: R/table_to_fasta.R

Description

Convert table to fasta.

Usage

1
table_to_fasta(.data, .otu, .seq)

Arguments

.data

data.frame

.otu

otu column name.

.seq

sequence column name.

Examples

1
2
3
4
5
6
7
library(tibble)

table <-
   tibble(otu = c("otu_1", "otu_2"),
          seq = c("ATGGG", "GCCGTA"))

table_to_fasta(.data = table, .otu = otu, .seq = seq)

Hide-Fun/teco documentation built on July 28, 2021, 7:41 a.m.