CellBin allows software flexibility to support individual single-step module operations. The corresponding execution is placed in directory scripts.
python qc.py
--tiles_path /data/SS200000135TL_D1
--chip_no SS200000135TL_D1
--tiles_pathThe path of all tiles.--chip_noThe chip number of the Stereo-seq data.
python stitching.py
--tiles_path /data/SS200000135TL_D1
--output_file /result/stitched_image.tif
--tiles_pathThe path of all tiles.--output_fileThe output path of the stitched image file.
python registration.py
--image_file /result/stitched_image.tif
--output_file /result/registered_image.tif
--gene_exp_data /data/SS200000135TL_D1.gem.gz
--chip_no SS200000135TL_D1
--image_fileThe stitched image.--output_fileThe registered image.--gene_exp_dataThe compressed file of spatial gene expression data.--chip_noThe chip number of the Stereo-seq data.
python segmentation.py
--type tissue
--image_file /result/registered_image.tif
--output_file /result/tissue_mask.tif
--typeCan be tissue or nuclei.--image_fileThe registered image.--output_fileThe tissue mask image.
python segmentation.py
--type nuclei
--image_file /result/registered_image.tif
--output_file /result/nuclei_mask.tif
--typeCan be tissue or nuclei.--image_fileThe registered image.--output_fileThe nuclei mask image.
python filtering.py
--tissue_mask /result/tissue_mask.tif
--nuclei_mask /result/nuclei_mask.tif
--output_file /result/nuclei_mask.tif
--tissue_maskThe tissue mask image.--nuclei_maskThe nuclei mask image.--output_fileThe filtered nuclei mask image.
python labeling.py
--image_file /result/nuclei_mask.tif
--gene_exp_data /data/SS200000135TL_D1.gem.gz
--output_path /result
--image_fileThe nuclei mask image.--gene_exp_dataThe compressed file of spatial gene expression data.--output_pathThe output path.