sc-TCR/BCR-seq analysis tool
Project description
Hi there! I have put together a python package for analyzing single cell BCR/TCR data from 10x Genomics 5' solution! It streamlines the pre-processing, leveraging some tools from immcantation suite, and integrates with scanpy/anndata for single-cell BCR/TCR analysis. It also includes a couple of functions for visualization.
Citation
dandelion
is now published at Nature Biotechnology!
Please cite the following if you use version 0.3.0 onwards:
Suo, C., Polanski, K., Dann, E. et al. Dandelion uses the single-cell adaptive immune receptor repertoire to explore lymphocyte developmental origins. Nat Biotechnol (2023). https://doi.org/10.1038/s41587-023-01734-7
dandelion
was originally published at Nature Medicine:
Emily Stephenson, Gary Reynolds, Rachel A Botting, Fernando J Calero-Nieto, Michael Morgan, Zewen Kelvin Tuong, Karsten Bach, Waradon Sungnak, Kaylee B Worlock, Masahiro Yoshida, Natsuhiko Kumasaka, Katarzyna Kania, Justin Engelbert, Bayanne Olabi, Jarmila Stremenova Spegarova, Nicola K Wilson, Nicole Mende, Laura Jardine, Louis CS Gardner, Issac Goh, Dave Horsfall, Jim McGrath, Simone Webb, Michael W Mather, Rik GH Lindeboom, Emma Dann, Ni Huang, Krzysztof Polanski, Elena Prigmore, Florian Gothe, Jonathan Scott, Rebecca P Payne, Kenneth F Baker, Aidan T Hanrath, Ina CD Schim van der Loeff, Andrew S Barr, Amada Sanchez-Gonzalez, Laura Bergamaschi, Federica Mescia, Josephine L Barnes, Eliz Kilich, Angus de Wilton, Anita Saigal, Aarash Saleh, Sam M Janes, Claire M Smith, Nusayhah Gopee, Caroline Wilson, Paul Coupland, Jonathan M Coxhead, Vladimir Y Kiselev, Stijn van Dongen, Jaume Bacardit, Hamish W King, Anthony J Rostron, A John Simpson, Sophie Hambleton, Elisa Laurenti, Paul A Lyons, Kerstin B Meyer, Marko Z Nikolic, Christopher JA Duncan, Ken Smith, Sarah A Teichmann, Menna R Clatworthy, John C Marioni, Berthold Gottgens, Muzlifah Haniffa. Single-cell multi-omics analysis of the immune response in COVID-19. Nature Medicine 2021.04.20; doi: https://dx.doi.org/10.1038/s41591-021-01329-2
Overview
Illustration of the Dandelion
class slots
Please refer to the documentation.
The raw files for the examples can be downloaded from 10X's Single Cell Immune Profiling datasets website.
Installation
Singularity container
dandelion
now comes ready in the form of a singularity container:
singularity pull library://kt16/default/sc-dandelion:latest
singularity shell --writable-tmpfs -B $PWD sc-dandelion_latest.sif
This will load up a container that has all the required dependencies installed.
This can be used for the preprocessing steps by navigating to the data folder and use:
singularity run -B $PWD sc-dandelion_latest.sif dandelion-preprocess
If you have multiple samples to process, it is reccomended to specify the --meta
option with a .csv
file detailing the samples:
singularity run -B $PWD sc-dandelion_latest.sif dandelion-preprocess --meta meta.csv
Python package
Start off by creating a conda environment containing scanpy, following official scanpy instructions. Once done, run the following:
conda install -c conda-forge graph-tool
pip install sc-dandelion
Between this and the pipelines within the singularity container, you should be covered for most of your needs.
Manual Full Installation
I understand that the singularity container may not be for everyone, so here is a more detailed installation guide for those who want to install the package manually. The instructions may vary depending on your system, so please adjust accordingly. The easiest way is to still to just use the singularity container for the preprocessing steps.
# install igblast and blast
conda install -c bioconda igblast blast # if this doesn't work, download them manually
# https://ftp.ncbi.nih.gov/blast/executables/igblast/release/LATEST/
# https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/
# Set the paths to them appropriately
echo 'export PATH=path/to/igblast/bin:$PATH' >> ~/.bash_profile
echo 'export PATH=path/to/blast+/bin:$PATH' >> ~/.bash_profile
You will need to download the database folder in this repository and place them somewhere accessible. There are scripts in the container
folder that will help you download the imgt/ogrdb databases and you can use them like this:
python prepare_imgt_database.py
python prepare_ogrdb_database.py
Also set the paths to the germline and igblast databases
echo 'export GERMLINE=path/to/database/germlines/' >> ~/.bash_profile
echo 'export IGDATA=path/to/database/igblast/' >> ~/.bash_profile
echo 'export BLASTDB=path/to/database/blast/' >> ~/.bash_profile
source ~/.bash_profile
For some of the pre-processing steps, you will need to install rpy2
and some R packages. The easiest way to do this is to install them all via conda:
# in bash/zsh terminal
conda install -c conda-forge rpy2 r-optparse r-alakazam r-tigger r-airr r-shazam
Otherwise, you can also use pip
to install rpy2
and then install the R packages manually:
pip install rpy2
# If it fails because it's compiling using clang, first, work out where the path is to your gcc compiler (use brew to install gcc if needed):
# then run
# env CC=/path/to/location/of/bin/gcc-9 pip install rpy2
# Use pip to install the following with --no-cache-dir --upgrade if necessary
# in R
install.packages(c("optparse", "alakazam", "tigger", "airr", "shazam"))
and then lastly install dandelion:
pip install sc-dandelion
# or
pip install git+https://github.com/zktuong/dandelion.git
# or installing from a specific branch
pip install git+https://github.com/zktuong/dandelion@branch_name
Basic requirements
Python packages
# conda
python>=3.7 (conda-forge)
numpy>=1.18.4 (conda-forge)
pandas>=1.0.3 (conda-forge)
distance>=0.1.3 (conda-forge)
jupyter (conda-forge) # if running via a notebook
scikit-learn>=0.23.0 (conda-forge)
numba>=0.48.0 (conda-forge)
pytables>=3.6.1 (conda-forge)
seaborn>=0.10.1 (conda-forge)
leidenalg>=0.8.0 (conda-forge)
plotnine>=0.6.0 (conda-forge)
graph-tool>=2.3.5 (conda-forge) # optional
# Other executables (through conda)
blast>=2.10.1 (bioconda)
igblast>=1.15.0 (bioconda)
# pip
anndata>=0.7.1
scanpy>=1.4.6
scrublet>=0.2.1
changeo>=1.0.0
presto>=0.6.0
polyleven>=0.5
networkx>=2.4
rpy2>=3.4.2
Acknowledgements
I would like to acknowledge the contributions from Dr. Chenqu Suo, Dr. Krysztof Polanksi, Dr. Sarah Teichmann and Prof. Menna Clatworthy, who helped with the initial conception of the project and for all discussions.
I would also like to acknowledge Dr. Ondrej Suschanek, Dr. Benjamin Stewart, Dr. Rachel Bashford-Rogers, Dr. Jongeun Park, Dr. Cecilia-Dominguez Conde, Dr. Kirsten Stewart, Dr. Hamish King and Dr. Peng He with whom I have had very useful discussions. I would also like to thank my wife who helped name the package, because she thought the plots looked like a dandelion =D.
Support
Support is provided on a voluntary basis, as time permits.
If there are any ideas, comments, suggestions, thing you would like to know more etc., please feel free to email me at z.tuong@uq.edu.au or post in the issue tracker and I will get back to you.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sc-dandelion-0.5.0.tar.gz
.
File metadata
- Download URL: sc-dandelion-0.5.0.tar.gz
- Upload date:
- Size: 24.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e639ea7a1b268665c7123313f9d590507ee441d9a598becb2079cec9a87398a0 |
|
MD5 | c69abcf53a0da47ca7841b584b851da3 |
|
BLAKE2b-256 | 54c6b9bd7cbd1a4300ab90570475321a8ab14864af595d56c98b0ba406b3e4a5 |
File details
Details for the file sc_dandelion-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: sc_dandelion-0.5.0-py3-none-any.whl
- Upload date:
- Size: 548.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32fc2c40c212f94b58200cc8b9fac91e265577f11afdf6cdfc5c083e001ccb1b |
|
MD5 | 3afe487f467514464c5fa9b01bf0d506 |
|
BLAKE2b-256 | bfc7b2a1ef4470b4fa9895c5c4a3935a4921524a560246b9ea80471566520884 |