我在r中创建了一个带有一些结果的文件。
此文件需要在另一个文本文件中引用(该文件是另一个程序的配置文件。
我想找出如何从R中查找和替换外部文本文件。具体来找文本
#CustomFile1Here
file=""
到目前为止,我已经(在R中)
#Create the file
write.table(mydata,"blabla.circos.txt",quote=FALSE,row.names=FALSE,col.names=FALSE,sep="\t")
#Assign the filename to be inserted into the config file
filename1="blabla.circos.txt"
#insert the filename just created into the config file at the line (and between the "" in
##CustomFile1Here
##file=""
system(paste("grep ^#CustomFile1Here\nfile='",filename1))
在我跑这一切的那一刻,一切都停滞不前。是因为双引号还是整件事不正确?