Stereo-seq T FF

Stereo-seq kit information

SAW analyzes the sequencing data from the Stereo-seq chip for fresh frozen (FF) samples. The workflow graph is shown below:

--kit-version for analysis is important to be known, according to the STOmics Stereo-seq Transcriptomics Set User Manual.

Stereo-seq Solution
Stereo-seq Kit
--kit-version
--sequencing-type

Stereo-seq Transcriptomics Solution

V1.2.1

"Stereo-seq T FF V1.2"

"PE100_50+100"

Stereo-seq Transcriptomics mIF Solution

V1.2

"Stereo-seq T FF V1.2"

"PE100_50+100"

Stereo-seq Transcriptomics H&E Solution

V1.2.1

"Stereo-seq T FF V1.2"

"PE100_50+100"

Stereo-seq Transcriptomics Mini Chip Solution

V1.2

"Stereo-seq T FF V1.2"

"PE100_50+100"

Stereo-seq Large Chip Designs

V1.0

"Stereo-seq T FF V1.2"

"PE100_50+100"

Stereo-seq Transcriptomics Solution

V1.3

"Stereo-seq T FF V1.3"

"PE75_50+100"

Stereo-seq Transcriptomics mIF Solution

V1.3

"Stereo-seq T FF V1.3"

"PE75_50+100"

Stereo-seq Transcriptomics H&E Solution

V1.3

"Stereo-seq T FF V1.3"

"PE75_50+100"

Stereo-seq Transcriptomics Mini Chip Solution

V1.3

"Stereo-seq T FF V1.3"

"PE75_50+100"

Stereo-seq Large Chip Designs

V1.3

"Stereo-seq T FF V1.3"

"PE75_50+100"

*T and N stand for Chip T and Chip N respectively.

According to the relational reference table, confirm your --kit-version for the analysis.

Input files

SAW count pipeline requires input files as below:

  • The mask file of the Stereo-seq Chip T (--mask)

  • Stereo-seq sequencing FASTQ files (--fastqs)

--sequencing-type is related to FASTQs, for example, "PE75_50+100" indicates 75 bp of paired-end sequencing for the product kit, where the read length of read 1 is 50 and that of read 2 is 100. You can find this information in the sequencing report.

  • The microscopic staining image in TIFF or .tar.gz format (from SteroMap)

    • --image for brightfield or fluorescent images in TIFF

    • --image-tar for brightfield or fluorescent image .tar.gz from StereoMap

  • The reference, including the FASTA genome and GTF/GFF annotation files for the species from which the sample was obtained (--reference)

    • reference index files should be built in advance, using SAW makeRef

    • annotation files will be checked for compliance with the standard format automatically, using SAW checkGTF

Run SAW count

For a list of available parameters, please refer to the command-line arguments, or simple type saw count --help. Before running the pipeline, ensure you have downloaded the chip mask file from our website, which is significant for analysis.

After preparation of input files, choose a suitable workflow according to the image QC result.

Automatic workflow

To generate spatial feature expression matrices for a Stereo-seq Chip from a fresh frozen (FF) sample using automatic registration, tissue detection, cell segmentation and cell border expanding on a microscope image, run SAW count with the following arguments.

cd /saw/runs

saw count \
    --id=<task_id> \
    --sn=<SN> \
    --omics=transcriptomics \
    --kit-version="Stereo-seq T FF V1.3" \
    --sequencing-type="PE75_50+100" \
    --chip-mask=/path/to/chip/mask \
    --organism=<organism> \
    --tissue=<tissue> \
    --fastqs=/path/to/fastq/folders \
    --reference=/path/to/reference/folder \
    --image-tar=/path/to/image/tar

More in Stereo-seq FF tutorial.

Manual processing

After the first SAW count run, you can get the files from visualization.tar.gz for both presentation and manual processing in StereoMap. After a series of manual processes, an image .tar.gz will be passed back to SAW realign for the new results.

A QC-failed image should be performed registration between the image and the matrix in StereoMap. After that, SAW realign will restart the analysis, calling image-related algorithms based on the aligned image. But manually processed results (tissue and cell segmentation) from StereoMap will not be overwritten.

cd /saw/runs

saw realign \
    --id=<task_id2> \
    --sn=<SN> \
    --count-data=/path/to/previous/SAW/count/task/folder \
    --realigned-image-tar=/path/to/realigned/image/tar

More in Manual Processing tutorial.

Output files

All the metadata and outputs generated from SAW count are listed below:

Demo_Mouse_Brain
├── pipeline-logs
├── STEREO_ANALYSIS_WORKFLOW_PROCESSING
└── outs
    ├── analysis
    ├── bam
    ├── feature_expression
    ├── image
    ├── <SN>.report.html
    └── visualization.tar.gz

If you want to dig deeper into the results,

Last updated