Skip to content

Commit b7453f4

Browse files
Fix the sys.time function
1 parent b4a243b commit b7453f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server.R

+4-4
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ function(input, output, session) {
17171717
}
17181718

17191719
# Creates new folder to keep the plots organized. Adding date and time helps to avoid overwriting the data
1720-
path_new <- paste0("./images/one_sample_plots", format(Sys.time(),'_%Y%-%m%-%d%__%H%M%S'))
1720+
path_new <- paste0("./images/one_sample_plots", format(Sys.time(),'_%Y-%m-%d__%H%M%S'))
17211721

17221722
dir.create(path_new)
17231723
dir.create( paste0(path_new,"/feature_plots") )
@@ -3206,7 +3206,7 @@ function(input, output, session) {
32063206
}
32073207

32083208
# Creates new folder to keep the plots organized. Adding date and time helps to avoid overwriting the data
3209-
path_new <- paste0("./images/integrated_sample_plots", format(Sys.time(),'_%Y%-%m%-%d%__%H%M%S'))
3209+
path_new <- paste0("./images/integrated_sample_plots", format(Sys.time(),'_%Y-%m-%d__%H%M%S'))
32103210

32113211
dir.create(path_new)
32123212
dir.create( paste0(path_new,"/feature_plots") )
@@ -4427,7 +4427,7 @@ function(input, output, session) {
44274427
}
44284428

44294429
# Creates new folder to keep the plots organized. Adding date and time helps to avoid overwriting the data
4430-
path_new <- paste0("./images/trajectories_plots", format(Sys.time(),'_%Y%-%m%-%d%__%H%M%S'))
4430+
path_new <- paste0("./images/trajectories_plots", format(Sys.time(),'_%Y-%m-%d__%H%M%S'))
44314431

44324432
dir.create(path_new)
44334433
dir.create( paste0(path_new,"/Dimension_reduction") )
@@ -4783,7 +4783,7 @@ function(input, output, session) {
47834783
}
47844784

47854785
# Creates new folder to keep the plots organized. Adding date and time helps to avoid overwriting the data
4786-
path_new <- paste0("./images/trajectories_plots", format(Sys.time(),'_%Y%-%m%-%d%__%H%M%S'))
4786+
path_new <- paste0("./images/trajectories_plots", format(Sys.time(),'_%Y-%m-%d__%H%M%S'))
47874787

47884788
dir.create(path_new)
47894789
dir.create( paste0(path_new,"/Dimension_reduction") )

0 commit comments

Comments
 (0)