Skip to content

Run

Author: SeekGene
Time: 3 min
Words: 528 words
Updated: 2026-02-27
Reads: 0 times
SeekSpace™ Tools

Run Examples

Example 1: Basic Usage

TIP

Set necessary configuration files for analysis, including sample data paths, reagent types, genome index, GTF, etc. Use the following command to run SeekSpace™ Tools:

shell
seekspacetools run \
--fq1 /path/to/demo/demo_expression_S8_L007_R1_001.fastq.gz \
--fq2 /path/to/demo/demo_expression_S8_L007_R2_001.fastq.gz \
--spatialfq1 /path/to/demo/demo_spatial_S7_L007_R1_001.fastq.gz \
--spatialfq2 /path/to/demo/demo_spatial_S7_L007_R2_001.fastq.gz \
--hdmifq /path/to/demo/2P231224030A4.fq.gz \
--samplename demo \
--outdir /path/to/outdir \
--genomeDir /path/to/GRCh38/star \
--gtf /path/to/GRCh38/genes/genes.gtf \
--chemistry DDVS \
--core 4 \
--include-introns \
--forceCell 80000 \
--min_umi 200 \
--chip_id 2P231224030A4 \
--DAPI /path/to/demo/2P231224030A4.tif

NOTE

--HE is optional. If an HE image is provided, specify the HE image path.

Parameter Description

ParameterDescription
--fq1Expression library R1 FASTQ data path.
--fq2Expression library R2 FASTQ data path.
--spatialfq1Spatial library R1 FASTQ data path.
--spatialfq2Spatial library R2 FASTQ data path.
--hdmifqHDMI library FASTQ data path.
--samplenameSample name. Supports numbers, letters, and underscores only.
--outdirOutput directory. Default: ./
--genomeDirReference genome path built by STAR, version must match STAR used by SeekSpace™ Tools.
--gtfGTF path for the corresponding species.
--coreNumber of threads used for analysis.
--chemistryReagent type, each corresponds to a set of --shift, --pattern, --structure, --barcode and --sc5p combination. Options: DDVS;
DDVS corresponds to Spatial Transcriptome Kit;
--skip_misBDo not allow base mismatches in barcode. Default allows one base mismatch.
--skip_misLDo not allow base mismatches in linker. Default allows one base mismatch.
--skip_multiDiscard Reads that can be corrected to multiple whitelist barcodes. Default corrects to the barcode with the highest proportion.
--forceCellIf this parameter is used followed by an expected number N, SeekSpace™ Tools will select the top N cells based on UMI counts from high to low. Default: 80000.
--min_umiMinimum UMI count for cells. Cells with UMI counts lower than this value will be discarded. Default: 200.
--include-intronsWhen disabled, only exon Reads are used for quantification; when enabled, intron Reads are also used for quantification.
--star_pathSpecify other versions of STAR path for alignment. Version must be compatible with --genomeDir version. Default --star_path is STAR in the environment.
--chip_idChip ID.
--DAPIDAPI stained tissue image (TIFF).
--HEH&E stained tissue image (TIFF).

Example 2: Support skipping Reads processing steps, adjusting images

shell
seekspacetools realign \
--results_path /path/to/outdir \
--outdir /path/to/new_dir \
--samplename demo \
--chip_id 2P231224030A4 \
--core 4 \
--DAPI /path/to/demo/2P231224030A4.tif \
--alignment_file /path/to/demo/parameters.json \
--lenient_segmentation

NOTE

--HE is optional. If an HE image is provided, specify the HE image path.

Parameter Description

ParameterDescription
--results_pathDirectory path after the first analysis of seekspacetools.
--outdirOutput directory.
--samplenameSample name.
--chip_idChip ID.
--coreNumber of threads used for analysis.
--DAPIDAPI stained tissue image (TIFF).
--HEH&E stained tissue image (TIFF).
--alignment_fileJSON file path containing image adjustment parameters.
--lenient_segmentationWhether to enable lenient segmentation strategy.
0 comments·0 replies