Description Usage Arguments Value Examples
View source: R/make_database.R
This function takes three inputs of CSV files and transforms them into
a RSQLite database. The three inputs are:
gtseq: Output of the GTseq pipeline
metadata: Metadata about the samples
allele_info: Information of the loci being used
1 | make_database(gtseq, metadata, allele_info, verbose = TRUE)
|
gtseq |
Comma separated file that is the output of the GT-seq pipeline.
Sample IDs must match the Sample IDs in the |
metadata |
Comma separated file that includes two columns: |
allele_info |
Comma separated file with information about the loci of interest.
The |
verbose |
show messages, logical - default = TRUE |
An RSQLite database saved to memory
1 2 3 4 5 | ## Not run:
DBs <- make_database(gtseq = geno, metadata = meta_data,
allele_info = allele_info)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.