|
Hi, We are trying to reproduce the results from the paper: Spatially resolved transcriptomics reveals the architecture of the tumor-microenvironment interface, We have downloaded the data from GEO. The data provided is: GSM4838131_Visium_Sample_A_filtered_feature_bc_matrix.h5, GSM4838131_Visium_A_image.tif.gz, GSM4838131_Visium_Sample_A_tissue_positions_list.csv.gz. (spatial folder) We couldn't read the data in R with load10X_Spatial function from Seurat package. |
Replies: 3 comments 7 replies
|
Hello @MJoseMo, To help us diagnose the issue, can you please reply and share:
Thanks! |
|
Dear @anashen The code is the next one: A1_new <- Load10X_Spatial( Error en FUN(X[[i]],...):File not found
|
|
Thank you @MJoseMo. You will need the So, say you have a folder named "A1", with the path to A1 being "C:/Users/MM.5076373/Downloads/GSE159709_RAW/A1" from your code above. The folder should contain "spatial/" and "filtered_feature_bc_matrix.h5". Then the following call to A1_new <- Load10X_Spatial(
data.dir = "C:/Users/MM.5076373/Downloads/GSE159709_RAW/A1"
)Hope this helps - please let me know if you have any follow ups. |



Thank you @MJoseMo.
You will need the
filtered_feature_bc_matrix.h5file in the directory passed toLoad10X_Spatial. See the function documentation: https://satijalab.org/seurat/reference/load10x_spatial.So, say you have a folder named "A1", with the path to A1 being "C:/Users/MM.5076373/Downloads/GSE159709_RAW/A1" from your code above. The folder should contain "spatial/" and "filtered_feature_bc_matrix.h5". Then the following call to
Load10X_Spatialshould be successful:Hope this helps - please let me know if you have any follow ups.