In R, list all files in current directory ending with “.CEL”
Use regular expression matching, where the “$” means that this string ends with the preceding string:
dir(pattern=”.CEL$”)
Use regular expression matching, where the “$” means that this string ends with the preceding string:
dir(pattern=”.CEL$”)