R/Spatial_vgm_formation.R

Defines functions Spatial_vgm_formation

Documented in Spatial_vgm_formation

#' Addition of the spatial information to the VGM matrix, output of VDJ_GEX_matrix()
#' @param vgm Large list, output of VDJ_GEX_matrix()
#' @param tissue_lowres_image_path Path to file containing the image of the tissue in png format
#' @param scalefactors_json_path Path to a file for converting pixel positions in the original, full-resolution image to pixel positions in the histological image in json format
#' @param tissue_positions_list_path Path to a text file containing a table with rows that correspond to spots in csv format
#' @param cluster_path Path to 10X Genomic clustering file that is not specific for immune cells, in csv format
#' @param matrix_path Path to the filtered feature barcode matrix containing barcode from fixed list of known-good barcode sequences in the h5 format
#' @return Returns the input VGM matrix (output of VDJ_GEX_matrix()) with an additional list containing the spatial information.
#' @export
#' @examples
#' \dontrun{
#' #Needed spatial files
#' tissue_lowres_image_path<-list()
#' tissue_lowres_image_path[[1]]<-c("c:/.../tissue_lowres_image.png")
#'
#' scalefactors_json_path<-list()
#' scalefactors_json_path[[1]]<-c("c:/.../scalefactors_json.json")
#'
#' tissue_positions_list_path<-list()
#' tissue_positions_list_path[[1]]<-c("c:/.../tissue_positions_list.csv")
#'
#' cluster_path<-list()
#' cluster_path[[1]]<-c("c:/.../analysis/clustering/graphclust/clusters.csv")
#'
#' matrix_path<-list()
#' matrix_path[[1]]<-c("c:/.../filtered_feature_bc_matrix/filtered_feature_bc_matrix.h5")
#'
#' #VGM formation with spatial data
#' vgm_spatial<-Spatial_vgm_formation(vgm = vgm_without_spatial_data_and_VDJ,
#' tissue_lowres_image_path = tissue_lowres_image_path,
#' tissue_positions_list_path = tissue_positions_list_path,
#' scalefactors_json_path = scalefactors_json_path,
#' cluster_path = cluster_path, matrix_path = matrix_path)
#'}

Spatial_vgm_formation<-function(vgm,
                                tissue_lowres_image_path,
                                scalefactors_json_path,
                                tissue_positions_list_path,
                                cluster_path,matrix_path){

  if(missing(vgm)) stop("Please provide vgm input for this function")
  if(missing(tissue_lowres_image_path)) stop("Please provide tissue_lowres_image_path input for this function")
  if(missing(scalefactors_json_path)) stop("Please provide scalefactors_json_path input for this function")
  if(missing(tissue_positions_list_path)) stop("Please provide tissue_positions_list_path input for this function")
  if(missing(cluster_path)) stop("Please provide cluster_path,matrix_path input for this function")
  if(missing(matrix_path)) stop("Please provide cluster_path,matrix_path input for this function")

  platypus.version <- "v3"

  vgm$spatial<-list()
  for (i in 1:length(tissue_lowres_image_path)){
    vgm$spatial$image[[i]]<-readbitmap::read.bitmap(tissue_lowres_image_path[[i]])
    #CHANGED TO function from jsonlite for package version compatibility!
    vgm$spatial$scalefactor[[i]] <- jsonlite::fromJSON(scalefactors_json_path[[i]], flatten = TRUE)
    vgm$spatial$tissue[[i]] <- utils::read.csv(tissue_positions_list_path[[i]], col.names=c("barcode","tissue","row","col","imagerow","imagecol"), header = FALSE)
    vgm$spatial$cluster[[i]] <- utils::read.csv(cluster_path[[i]])
    vgm$spatial$matrix[[i]]<-as.data.frame(Matrix::t(Seurat::Read10X_h5(matrix_path[[i]])))
  }
  return(vgm)
}

Try the Platypus package in your browser

Any scripts or data that you put into this service are public.

Platypus documentation built on Aug. 15, 2022, 9:08 a.m.