Added function to convert from FASTA to BAPS (#24)

This commit is contained in:
Waldir Leoncio 2024-08-09 13:19:35 +02:00
parent 6e08c35f13
commit 7b7968f00b
5 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,24 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/convert_FASTA_to_BAPS.R
\name{convert_FASTA_to_BAPS}
\alias{convert_FASTA_to_BAPS}
\title{Convert an R object from FASTA to BAPS format}
\usage{
convert_FASTA_to_BAPS(data)
}
\arguments{
\item{data}{dataset to be converted}
}
\value{
`data` in BAPS format
}
\description{
Converts an R object from FASTA to BAPS format
}
\examples{
data <- system.file("extdata", "FASTA_clustering_diploid.fasta", package = "rBAPS")
convert_FASTA_to_BAPS(data)
}
\author{
Waldir Leoncio
}