[1]:
import warnings
warnings.filterwarnings("ignore")

load stereo-seq data using pysodb

[2]:
import pysodb
sodb = pysodb.SODB()

[7]:
dataset_name = 'chen2022spatiotemporal'
experiment_name = 'E14.5_E1S1.MOSTA'
adata = sodb.load_experiment(dataset_name,experiment_name)

load experiment: E14.5_E1S1.MOSTA in dataset: chen2022spatiotemporal

plot SOView for stereo-seq data

[5]:
import SOView
scanpy==1.9.1 anndata==0.8.0 umap==0.5.2 numpy==1.22.4 scipy==1.7.3 pandas==1.5.2 scikit-learn==1.0.2 statsmodels==0.13.5 python-igraph==0.10.2 pynndescent==0.5.8
squidpy==1.1.2
[8]:
SOView.SOViewer_plot(
    adata = adata, # the data to plot
    save = None, # save the result to specified path or don't save (None)
    embedding_use='X_umap', # which embedding to be used for plot
    dot_size=10, # the marker size of the plot
    marker = 'o' # marker style


)
generating color coding...
1.0 0.0
../_images/Examples_Stereo-seq_6_1.png
1.0 0.0
../_images/Examples_Stereo-seq_6_3.png
[ ]: