View source: R/3.2_read_proteingroups.R
is_file | R Documentation |
Is a file (and not a dir)
is_file(file)
file |
filepath |
This function distinguishies between dir and file. Others dont: is.file, fs::file_exists, assertive::is_existing_file
dir <- tempdir(); dir.create(dir, showWarnings = FALSE)
file <- tempfile(); invisible(file.create(file))
is_file(dir)
is_file(file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.