Skip to content

Bin-Chen-Lab/spider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SPIDER

SPIDER (surface protein prediction using deep ensembles from single-cell RNA-seq) is a context-agnostic zero-shot deep ensemble model, which can predict the abundance for thousands of cell surface proteins in single cells based on transcriptomic data.

Read our SPIDER paper here: Ruoqiao Chen et al., Imputing abundance of over 2,500 surface proteins from single-cell transcriptomes with context- agnostic zero-shot deep ensembles, Cell Systems, 2024

Step 1: Installation of dependency packages

Before installing SPIDER, you will need to install all the dependent R and python packages (dependent python and python packages requirements, and dependent R and R packages requirements). We provide a convenient way for you to install these dependencies via our environment file, which will create a conda environment named "SPIDER" with the required dependencies (If your computer does not have conda, you should go the the conda website to install conda (conda version requirement: 23.x.x or lower) first):

1.1

In your computer's terminal, first type the following commands. The downloaded folder will also contain SPIDER's pretrained weights:

mkdir SPIDER
cd SPIDER
git init
git remote add -f origin https://github.com/Bin-Chen-Lab/spider.git
git config core.sparseCheckout true
echo "SPIDER_python/" >> .git/info/sparse-checkout
git pull origin main

1.2

For users who are NOT using osx-arm64 for their computer system, they can use our yaml file to conveniently install all the dependency packages. To do this, in your terminal, type the following:

conda env create -f SPIDER_python/SPIDER_env/SPIDER_environment_test_basic_all.yaml

1.3 (optional) For osx-arm64 users who fail to execute 1.2

osx-arm64 is incompatible with the Bioconda approach of installation, therefore, these users may fail to execute our yaml file in 1.2. Also see Q2 in the frequently asked questions section below. If you use osx-arm64 and directly run the yaml file as in 1.2, you are likely to encounter the error shown in Q2. Instead, you can replace the codes in 1.2 with the following codes:

CONDA_SUBDIR=osx-64 conda env create -f SPIDER_python/SPIDER_env/SPIDER_environment_test_basic_all_osx-arm64.yaml

1.4

In your terminal, type the following commands to download the scArches package in the "SPIDER" folder. It will create another folder "scarches-0.4.0" there:

wget https://github.com/theislab/scarches/archive/refs/tags/v0.4.0.zip
unzip 'v0.4.0.zip'

(Alternatively, you can also simply open the link in your browser and directly download the zip file without wget. Munually unzip the file and put the "scarches-0.4.0" folder in your "SPIDER" folder.)

Step 2: Installation of SPIDER

You should first complete step 1 before you do this step 2. After you have created the conda environment with all the dependency packages installed as previously described, first open R in the activated conda environment by typing the following commands in the terminal:

conda activate SPIDER
R

Then install the SPIDER package in R by typing the following lines in R:

devtools::install_github(repo = 'Bin-Chen-Lab/spider', subdir = '/SPIDER')

Your system may ask you "Enter one or more numbers, or an empty line to skip updates", just enter an empty line to skip updates.

Step 3: SPIDER usage with sample data

First, let's create an empty folder for saving your results. In your computer's terminal, use the following command to create another folder named "SPIDER_results" in your "SPIDER" folder, and then open R in the activated conda environment:

mkdir SPIDER_results
conda activate SPIDER
R

Then in R (opened in the activated conda environment), load our sample query transcriptomes:

library(SPIDER)
data("sample_query")

In R, use SPIDER as following to predict on the sample query transcriptomes. This demo will predict the abundance of ~2,000 surface proteins in 1,239 single cells. The run time on a typical M2 Mac laptop is around 1 hour.

prefix = getwd() #The SPIDER_predict function uses ABSOLUTE paths as input parameters

SPIDER_predict ( seurat_data = RNA,
                 tissue = 'pancreas',
                 disease = 'healthy',
                 SPIDER_model_file_path = paste0(prefix, '/SPIDER_python/SPIDER_weight/'), 
                 use_cell_type = 'SingleR',
                 protein = 'All',
                 use_pretrain = 'T', #Using pretrained SPIDER
                 save_path = paste0(prefix, '/SPIDER_results/'), 
                 use_python_path = NULL, 
                 scarches_path = paste0(prefix, '/scarches-0.4.0/')) 

Note that you may need to modify "use_python_path = NULL" here according to your system setting. SPIDER will pass this parameter to reticulate's use_python function. You can use "use_python_path = NULL" if your default python configuration for reticulate is the same as the python installed in your SPIDER conda environment. However, if your default python configuration for reticulate is different from the python installed in your SPIDER conda environment, you'll need to modify the "use_python_path" parameter to indicate the path to the python installed in your SPIDER conda environment. If you don't know how to locate your python path, see Q1 in frequently asked questions section below.

For other commonly used parameters here:

"seurat_data": The Seurat object of your transcriptomic data after prepocessing. The Seurat object should include Seurat log normalization, clustering and umap reductions. Your meta.data should include a column named "study" which specifies the batch IDs for all cells (this column will be passed to scArches-SCANVI's condition_key parameter). You can look at the example transcriptomic data we provided (using data("sample_query") in R).

"tissue": The name of the source tissue of your transcriptome data (If your data contain multiple tissues, subset your data by tissue and run SPIDER separately on each subset). Use help(SPIDER_predict) to read more about this parameter. If your data's corresponding tissue is NOT among the 5 default tissues ('bone marrow', 'brain', 'blood', 'pleura', 'peritoneum'), use a new name that represents your data's corresponding tissue.

"disease": The name of the disease state of your transcriptome data (If your data contain multiple diseases, subset your data by disease and run SPIDER separately on each subset). Use help(SPIDER_predict) to read more about this parameter. If your data's corresponding disease is NOT among the 4 default diseases ('healthy', 'mesothelioma', 'glioblastoma', 'leukemia'), use a new name that represents your data's corresponding disease.

"SPIDER_model_file_path": This is the ABSOLUTE path to the "SPIDER_weight" folder, a sub-folder stored in your "SPIDER" folder. Avoid using the "~" symbol to locate your path.

"save_path": This is the ABSOLUTE path to the folder where you want to save your prediction results. Avoid using the "~" symbol to locate your path.

"scarches_path": This is the ABSOLUTE path to the "scarches-0.4.0" folder, a sub-folder stored in your "SPIDER" folder. Avoid using the "~" symbol to locate your path.

You can also type the following line in R to access the help file and check more details for other parameters:

help(SPIDER_predict)

Step 4: Downstream applications with SPIDER's output files

The output files from SPIDER will be stored in your specified directory.
"all_seen_proteins_predicted.csv": The predicted surface abundance for all the seen proteins.
"all_unseen_proteins_predicted.csv": the predicted surface abundance for all the unseen proteins.
"confidence_score_all_unseen_proteins.csv": The estimated prediction confidence for all the unseen proteins.

We provide a series of tutorials for SPIDER's downstream applications, which you can follow to analyze the SPIDER-predicted surface protein abundance data for your research:

Using SPIDER for disease biomarker/target discovery

Using SPIDER for cell type marker identification (cell annotation)

Using SPIDER for cell-cell interaction analysis

Frequently asked questions

Q1:

I have already executed the codes from step 1 & 2 without encountering error, but when I run step 3, why do I still encounter the following errors such as:

No non-system installation of Python could be found.
Would you like to download and install Miniconda? [Y/n]

and

Error in py_module_import(module, convert = convert) : 
  ModuleNotFoundError: No module named 'scanpy'

A1:

These errors are because you set the "use_python_path" parameter to NULL in step 3, however, you have multiple pythons on your computer, and your default python configuration for reticulate is different from the python installed in your SPIDER conda environment. To solve this problem, in the "use_python_path" parameter, you should specify the path to the python installed in your SPIDER conda environment. SPIDER will pass this parameter to reticulate's use_python function. If you don't know how to locate your python path, you can locate it by doing the following:

First open python in your activated conda environment by typing the following command in your terminal:

conda activate SPIDER
python

Then type the following lines in python:

import sys 
sys.path[1]

It should return a path in the format of '.../SPIDER/lib/python39.zip'.
You should set your "use_python_path" parameter as '.../SPIDER/bin/python'
(the "..." parts are the same thing).

Q2:

When I run the commands in 1.2, why do I encounter the following error?

PackagesNotFoundError: The following packages are not available from current channels:

  - bioconductor-singler

A2:

This is likely because you use osx-arm64 for your computer system, which is incompatible with the Bioconda approach of installing the dependency packages. You should run the commands following step 1.3 instead of 1.2.

Q3:

Can I run SPIDER on mouse scRNA-seq data?

A3:

Yes, you can run SPIDER on other species' scRNA-seq data besides human data. But note that if you choose to use our pretrained SPIDER model (i.e., use_pretrain = 'T') to directly predict on other species' data, you will need to convert the gene names in your scRNA-seq data to human gene names (uppercase letters) first before you run SPIDER on your data.

Reproducibility

To find code to reproduce the results we generated in the manuscript, please visit this separate github repository, which provides all code necessary to reproduce our results.

Citation

If SPIDER is helpful in your research, please consider citing our paper:
Ruoqiao Chen et al., Imputing abundance of over 2,500 surface proteins from single-cell transcriptomes with context- agnostic zero-shot deep ensembles, Cell Systems, 2024

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages