You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ================== Required Raw Data Directory Structure ==================
15
16
# The ExSeq-Toolbox currently assumes the following directory structure:
16
17
#
17
18
# raw_data_directory/
18
19
# ├── code0/
19
-
# │ ├── Channel405 SD_Seq0004.nd2
20
-
# │ ├── Channel488 SD_Seq0003.nd2
21
-
# │ ├── Channel561 SD_Seq0002.nd2
22
-
# │ ├── Channel594 SD_Seq0001.nd2
23
-
# │ ├── Channel604 SD_Seq0000.nd2
20
+
# │ ├── raw_fov0.h5
21
+
# │ ├── raw_fov1.h5
22
+
# │ ├── raw_fov2.h5
23
+
# │ ├── raw_fov3.h5
24
+
# │ ├── raw_fov4.h5
24
25
# ├── code1/
25
-
# │ ├── Channel405 SD_Seq0004.nd2
26
+
# │ ├── raw_fov0.h5
26
27
# │ ├── ...
27
28
# ├── ...
28
-
#
29
+
#
30
+
# Important: Each of the raw_fov{}.h5 assumed to contain different datasets for each channel. The dataset name needs to be the channel wavelength, e.g., '640', '594', '561', '488', '405'.
31
+
#
29
32
# Ensure that your raw data adheres to this directory structure before running the package.
# Absolute path to the CSV file containing the gene list.
67
+
# Optional: Absolute path to the CSV file containing the gene list.
57
68
gene_digit_file='./gene_list.csv'
69
+
params["gene_digit_csv"] =gene_digit_file
58
70
59
-
# If set to True, changes permission of the raw_data_path to allow other users to read and write on the generated files (Only for Linux and MacOS users).
71
+
# Optional: Changes permission of the raw_data_path for other users (Linux/Mac).
60
72
permissions_flag=False
73
+
params["permission"] =permissions_flag
61
74
62
-
# If set to True, creates the directory structure in the specified project path.
75
+
# Optional: Creates the directory structure in the specified project path.
0 commit comments