| unzip_single_gt3x {read.gt3x} | R Documentation | 
Unzip a single gt3x file
Description
A .gt3x file is a zipped archive with two files: log.bin and info.txt. This function unzips the contents of the archive to a single folder. This is a helper for unzip.gt3x()
Usage
unzip_single_gt3x(
  path,
  dirname = basename(gsub(".gt3x$| ", "", path)),
  location = tempdir(),
  files = c("info.txt", "log.bin"),
  remove_original = FALSE,
  check_structure = TRUE,
  verbose = TRUE
)
Arguments
| path | Path to a .gt3x file | 
| dirname | The name of the resulting directory where the content of
 | 
| location | A path to an output directory. Default is a  | 
| files | The names of files to extract. Default is  | 
| remove_original | Remove the zip file after unzipping? | 
| check_structure | check to see if the structure is right for the file | 
| verbose | print diagnostic messages | 
[Package read.gt3x version 1.2.0 Index]