diff --git a/src/.gitignore b/src/.gitignore index 83989c9..36cc750 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1 +1 @@ -config.R +script.R diff --git a/src/Makefile b/src/Makefile index ae9c3a0..204394e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,2 +1,2 @@ -testing.R: - cp ./testing.def.R ./testing.R +script.R: + cp ./script.def.R ./script.R diff --git a/src/testing.def.R b/src/script.def.R similarity index 97% rename from src/testing.def.R rename to src/script.def.R index 2e4def2..d548fa6 100644 --- a/src/testing.def.R +++ b/src/script.def.R @@ -5,9 +5,9 @@ library("stringr") # Configurations ############################################################# # file : decides which file to read in data from ############################# -file <- "~/Documents/dwalker/pattern/data/data.txt" +file <- "/path/to/file" # separator: decides separator of file ####################################### -separator <- "," +separator <- "separator" ############################################################################## # Read in the Table ##########################################################