Dear @sqjin
Hi, I'm a big fan of your program.
However, I have just two questions.
Q1. Spot diameter
The spot diameter of 10X visium is 55um.
This is the note from 10X genomics.
"Answer: The capture area is 6.5 x 6.5 mm. There are a total of 4992 total spots per capture area and each spot is 55 µm in diameter with a 100 µm center to center distance between spots."
(Ref: https://kb.10xgenomics.com/hc/en-us/articles/360035487572-What-is-the-spatial-resolution-and-configuration-of-the-capture-area-of-the-Visium-v1-Gene-Expression-Slide)
But your program said it to "65" in the tutorial. Do you have any other meaning about that?
Q2. When I ran the following steps, the min value was so different with 100um.
It was 70um for spot.size =55.
Then, should I edit the conversion.factor arbitrarily? If it's right, how can I change the conversion.factor and tol value?
scalefactors = jsonlite::fromJSON(txt = "scalefactors_json.json")
spot.size = 55 # 65 in tutorial, the theoretical spot size (um) in 10X Visium
conversion.factor = spot.size/scalefactors$spot_diameter_fullres
spatial.factors = data.frame(ratio = conversion.factor, tol = spot.size/2)
d.spatial <- computeCellDistance(coordinates = spatial.locs,
ratio = spatial.factors$ratio,
tol = spatial.factors$tol)
min(d.spatial[d.spatial!=0]) #this value should approximately equal 100um for 10X Visium data
Thank you.
Best,
Oh.
Dear @sqjin
Hi, I'm a big fan of your program.
However, I have just two questions.
Q1. Spot diameter
The spot diameter of 10X visium is 55um.
This is the note from 10X genomics.
"Answer: The capture area is 6.5 x 6.5 mm. There are a total of 4992 total spots per capture area and each spot is 55 µm in diameter with a 100 µm center to center distance between spots."
(Ref: https://kb.10xgenomics.com/hc/en-us/articles/360035487572-What-is-the-spatial-resolution-and-configuration-of-the-capture-area-of-the-Visium-v1-Gene-Expression-Slide)
But your program said it to "65" in the tutorial. Do you have any other meaning about that?
Q2. When I ran the following steps, the min value was so different with 100um.
It was 70um for spot.size =55.
Then, should I edit the
conversion.factorarbitrarily? If it's right, how can I change theconversion.factorandtolvalue?Thank you.
Best,
Oh.