Attempts to connect to the specified file-based engine. Returns FALSE if the file is not available or not properly formatted.
file_engine_check(filename, warn = TRUE)TRUE if the database is available and properly formatted, FALSE otherwise.
if (FALSE) { # file_engine_check("https://kghub.io/kg-obo/sepio/2023-06-13/sepio_kgx_tsv.tar.gz")
print(file_engine_check("https://kghub.io/kg-obo/sepio/2023-06-13/sepio_kgx_tsv.tar.gz"))
print(file_engine_check("https://no-such-host.kghub.io/sepio_kgx_tsv.tar.gz"))
print(file_engine_check(system.file("extdata", "mondo_kgx_tsv.tar.gz", package = "monarchr")))
print(file_engine_check(system.file("extdata", "nosuch_kgx_tsv.tar.gz", package = "monarchr")))
}