Skip to contents

Obtains a file name from a path.

Usage

getNameFromPath(path, prefix = NULL, suffix = NULL)

Arguments

path

Character string or vector with the path.

prefix

Character string with the prefix you want to remove from the filename. For example: "ATAC_"

suffix

Characer string with the suffix you want to remove from the filename. For example: ".bam"

Value

A character string or vector with the filename.

Examples

if (FALSE) {
getNameFromPath("test/data/cov_file.txt", suffix=".txt", preffix="cov_")
}