Exporting importFile()

This commit is contained in:
Waldir Leoncio 2023-09-11 12:51:41 +02:00
parent 3e4044bcec
commit 882fcd4112
3 changed files with 38 additions and 0 deletions

26
man/importFile.Rd Normal file
View file

@ -0,0 +1,26 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/importFile.R
\name{importFile}
\alias{importFile}
\title{Import data file}
\usage{
importFile(data, format, verbose)
}
\arguments{
\item{data}{raw dataset}
\item{format}{data format (guesses from extension if not provided)}
\item{verbose}{if \code{TRUE}, prints extra output information}
}
\value{
The data in a format that can be used by the other functions
}
\description{
Imports data from several formats (FASTA, VCF, SAM, BAM,
Genepop).
}
\examples{
path_inst <- system.file("extdata", "", package = "rBAPS")
importFile(file.path(path_inst, "FASTA_clustering_haploid.fasta"))
}