View source: R/utils-database.R
| eyeris_db_reconstruct_from_chunks | R Documentation |
Merges multiple chunked eyerisdb files back into a single database file.
Uses the reconstruction metadata file created by eyeris_db_split_for_sharing()
to ensure proper reconstruction.
eyeris_db_reconstruct_from_chunks(
chunked_dir,
output_path,
reconstruction_file = NULL,
verbose = TRUE
)
chunked_dir |
Directory containing the chunked database files and reconstruction metadata |
output_path |
Full path for the reconstructed database (e.g., "/path/to/reconstructed.eyerisdb") |
reconstruction_file |
Path to the reconstruction metadata JSON file. If NULL (default), searches for "*_reconstruction_info.json" in chunked_dir |
verbose |
Whether to print progress messages (default: TRUE) |
List containing information about the reconstruction process
## Not run:
# Reconstruct database from chunked files
reconstruction_info <- eyeris_db_reconstruct_from_chunks(
chunked_dir = "/path/to/chunked_db/project-name",
output_path = "/path/to/reconstructed-project.eyerisdb"
)
# Specify custom reconstruction file location
reconstruction_info <- eyeris_db_reconstruct_from_chunks(
chunked_dir = "/path/to/chunked_db/project-name",
output_path = "/path/to/reconstructed-project.eyerisdb",
reconstruction_file = "/path/to/custom_reconstruction_info.json"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.