我试图使用 R 编写一个文件,为了区分每个文件,我尝试每次在函数中添加不同的后缀。
例如......
counts <- function(counts_file)
{
..............................
..............................
name <- substr(counts_file,1,5)
file <- paste(name,".cpm.csv")
write.csv(countpermillion, file)
}
但是当我运行该函数时counts("JKNC1.bam.tsv")
,创建的输出文件是这样的,
JKNE3 .cpm.csv
即JKNEE3 and .cpm.csv
. 我在这里做错了什么?
谢谢乌彭德拉