powered by
Convert bioseq DNA, RNA and AA to tibble
as_tibble.bioseq_dna(x, label = "label", sequence = "sequence", ...)as_tibble.bioseq_rna(x, label = "label", sequence = "sequence", ...)as_tibble.bioseq_aa(x, label = "label", sequence = "sequence", ...)
as_tibble.bioseq_rna(x, label = "label", sequence = "sequence", ...)
as_tibble.bioseq_aa(x, label = "label", sequence = "sequence", ...)
a DNA, RNA or AA vector.
Name of the column that stores the sequence labels in the returned tibble.
Name of the column that stores the sequences in the returned tibble.
Not used.
A tibble with two columns (if name is not NULL, the default) or one column (otherwise).
Other conversions: as-tibble-ape, as_AAbin, as_DNAbin, as_aa, as_dna, as_rna, as_seqinr_alignment
as-tibble-ape
as_AAbin
as_DNAbin
as_aa
as_dna
as_rna
as_seqinr_alignment
# NOT RUN { require(tibble) x <- dna(A = "ACGTTAGTGTAGCCGT", B = "CTCGAAATGA", C = NA) as_tibble(x) # }
Run the code above in your browser using DataLab