[28aa3b]: / man / basenameSansCEL.Rd

Download this file

29 lines (27 with data), 754 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/auxiliary_functions.R
\name{basenameSansCEL}
\alias{basenameSansCEL}
\title{Get file basename and remove .CEL extension}
\usage{
basenameSansCEL(x)
}
\arguments{
\item{x}{A \code{character} vector of filenames and possibly with path.}
}
\value{
A \code{character} vector of the same length as \code{x} with the
file basename without the path and \code{.CEL} extension.
}
\description{
Functions as \code{\link{basename}} but also remove any \code{.CEL}
or \code{.CEL.gz} extension. The function is not case sensitive of toward
the extension.
}
\examples{
x <- c("C:/test/mycelfile.cel", "myothercelfile.cel")
basenameSansCEL(x)
}
\seealso{
\code{\link{basename}}
}