Skip to content
Snippets Groups Projects
Commit cca00d94 authored by John Lafin's avatar John Lafin
Browse files

Fix script ordering

parent 58e53de1
No related merge requests found
# Initializing single cell data # Initializing single cell data
# Author: John T Lafin # Author: John T Lafin
# Updated: 2024-08-13 # Updated: 2024-09-17
print("Script begin at: ") print("Script begin at: ")
Sys.time() Sys.time()
...@@ -24,7 +24,7 @@ options(future.globals.maxSize = 8000 * 1024^2) ...@@ -24,7 +24,7 @@ options(future.globals.maxSize = 8000 * 1024^2)
set.seed(42) set.seed(42)
# Create output dir # Create output dir
outdir <- "data_modified/2024-08-13_initial_analysis/" outdir <- "data_modified/01_initial_analysis/"
dir.create(outdir, showWarnings = FALSE) dir.create(outdir, showWarnings = FALSE)
# Load data --------------------------------------------------------------- # Load data ---------------------------------------------------------------
......
# Pre-processing single cell data # Pre-processing single cell data
# Author: John T Lafin # Author: John T Lafin
# Updated: 2024-08-13 # Updated: 2024-09-17
print("Script begin at: ") print("Script begin at: ")
Sys.time() Sys.time()
...@@ -24,11 +24,11 @@ options(future.globals.maxSize = 8000 * 1024^2) ...@@ -24,11 +24,11 @@ options(future.globals.maxSize = 8000 * 1024^2)
set.seed(42) set.seed(42)
# Create output dir # Create output dir
outdir <- "data_modified/2024-08-13_preprocess/" outdir <- "data_modified/02_preprocess/"
dir.create(outdir, showWarnings = FALSE) dir.create(outdir, showWarnings = FALSE)
# Load data # Load data
seu <- readRDS("data_modified/2024-08-13_initial_analysis/merged_object.rds") seu <- readRDS("data_modified/01_initial_analysis/merged_object.rds")
# Clustering -------------------------------------------------------------- # Clustering --------------------------------------------------------------
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment