-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_full_pipe.sh
73 lines (52 loc) · 1.75 KB
/
run_full_pipe.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
# this is a gold standard reproducible pipeline for the analysis of Live-Cell timelapse imaging data
############################################
# Download and pre-process the data
############################################
echo "Starting the data download and pre-processing..."
# Download the data
# TODO: Add the link to the data once it is available
# pre-process the data
cd 1.pre_process_data/
source run_preprocessing.sh
cd ../
# run illumination correction
cd 2.cellprofiler_ic_processing
source run_ic.sh
cd ../
echo "Data download and pre-processing complete"
############################################
# CellProfiler analysis
############################################
echo "Starting the CellProfiler analysis..."
# run cellprofiler analysis
cd 3.cellprofiler_analysis
source run_cellprofiler_analysis.sh
cd ../
# process the features
cd 4.process_CP_features
source processing_features.sh
cd ../
echo "CellProfiler analysis complete"
############################################
# scDINO analysis
############################################
echo "Starting the scDINO analysis pipeline..."
# preprocess the data for scDINO
# run the scDINO analysis
# post-process the scDINO results
# deploy the scDINO results on a shiny app
cd 5.scDINO_analysis/
source run_scDINO_analysis.sh
echo "scDINO analysis complete"
############################################
# Harmonizing the CP and scDINO results
############################################
echo "Starting the harmonization of CP and scDINO results..."
# harmonize the CP and scDINO results
cd 6.data_harmonization/
source run_data_harmonization.sh
cd ../
echo "Harmonization of CP and scDINO results complete"
############################################
echo "Full pipeline complete"