Deck 15: Technology-Specific Tutorials -> Real Numbers

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:56 PM on 9/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

In the Visium tutorial, what genes are shown as examples of highly-expressed genes to color spots by?

Mitochondrial genes like mt-Co3 and mt-Co1.

2
New cards

How many fields of view does the MIBI-TOF example dataset contain, and what are they called?

3 → point8, point16, point23, each its own coordinate system.

3
New cards

In MIBI-TOF, what are the table's var_names instead of gene names?

Protein markers (e.g. ASCT2, CD11c, SMA).

4
New cards

Roughly how many points does the MERFISH example dataset contain, and how does the tutorial handle plotting them?

Over 3 million; the tutorial subsamples to 1% before plotting.

5
New cards

What is the Visium HD capture area size, and the smallest bin size?

6.5mm × 6.5mm capture area; 2µm smallest bins, giving ~10.5 million bins.

6
New cards

How much memory would a full raster representation of Visium HD data require (per the tutorial's estimate), vs. the actual sparse representation?

~187 GB fully rasterized, vs. ~130 MB for the actual sparse vector+table representation.

7
New cards

What artifact appears when plotting the (slightly rotated) Visium HD grid directly with matplotlib, and what mitigates it?

A Moiré pattern; switching to method="datashader" mitigates it.

8
New cards

What does scale="full" do in render_images(), and why is it essential for viewing rasterized-bins layers?

It disables auto-rasterization to canvas size — essential so the rasterized-bins layer is shown at its actual computed resolution rather than being re-rasterized.

9
New cards

What new capability does the Visium HD SpaceRanger 4.0 tutorial add over the standard Visium HD tutorial?

Cell and nucleus segmentation (not just binned data), read via load_segmentation_only=True, load_nucleus_segmentation=True in the visium_hd() reader.

10
New cards

What function derives point centroids from a Shapes element in the SpaceRanger 4.0 tutorial?

sd.get_centroids()

11
New cards

What are the 4 channels used for cell segmentation in the Xenium Cell-Segmentation-Kit dataset?

DAPI (nuclear), ATP1A1/CD45/E-Cadherin (boundary), 18S (interior-RNA), AlphaSMA/Vimentin (interior-protein)

12
New cards

How can you overlay the same gene expression on a different Shapes element (e.g. circles vs. full cell boundaries) in Xenium data?

Reassign the table's annotation target with sdata.set_table_annotates_spatialelement("table", region="cell_boundaries")

13
New cards

What is SpaceM, and what does its table's var_names represent?

A spatial metabolomics method combining MALDI imaging mass spectrometry with microscopy; var_names are ion names, not genes.

14
New cards

Why can SpaceM's expression matrix contain NaN values?

Because the dataset integrates many METASPACE datasets, and an ion may be detected in some but not others.