본문 바로가기

Contact English

【생물정보학】 CellPhoneDB Tutorial

 

CellPhoneDB Tutorial

 

추천글 : 【생물정보학】 리간드-수용체 상호작용 분석 


1. 설치 [본문]

2. 레퍼런스 [본문]


 

1. 설치 [목차]

리눅스 환경 준비 혹은 anaconda3 설치 

⑵ 입력 파일

① cellphonedb_meta.txt

 

② cellphonedb_count.txt

 

 

예제 코드  

 

# 1. 가상환경 생성 및 활성화
conda create -n cpdb python=3.7
activate cpdb # 혹은 conda activate cpdb
pip install cellphonedb
activate cpdb # 혹은 conda activate cpdb

# 2. 예시 데이터 설치
curl https://raw.githubusercontent.com/Teichlab/cellphonedb/master/in/example_data/test_counts.txt --output test_counts.txt
curl https://raw.githubusercontent.com/Teichlab/cellphonedb/master/in/example_data/test_meta.txt --output test_meta.txt

# 3. output 경로 설정 
mkdir custom_folder

# 4. cellphonedb 실행
cellphonedb method statistical_analysis cellphonedb_meta.txt cellphonedb_count.txt --output-path=custom_folder --counts-data=gene_name

 

① "--counts-data=gene_name"이 없으면 "All counts filtered: Are you using human data?" 에러 메시지가 출력됨

⑷ 생성 파일 

deconvoluted.txt

means.txt

pvalues.txt

values_means.txt

⑤ significant_means.txt

 

 

2. 레퍼런스 [목차]

https://pubmed.ncbi.nlm.nih.gov/32103204/

 

CellPhoneDB: inferring cell-cell communication from combined expression of multi-subunit ligand-receptor complexes - PubMed

Cell-cell communication mediated by ligand-receptor complexes is critical to coordinating diverse biological processes, such as development, differentiation and inflammation. To investigate how the context-dependent crosstalk of different cell types enable

pubmed.ncbi.nlm.nih.gov

https://www.cellphonedb.org/documentation

 

CellPhoneDB - Welcome

Database design and analysis method Database input files CellPhoneDB stores ligand-receptor interactions as well as other properties of the interacting partners, including their subunit architecture and gene and protein identifiers. In order to create the

www.cellphonedb.org

 https://github.com/Teichlab/cellphonedb

 

 

GitHub - Teichlab/cellphonedb

Contribute to Teichlab/cellphonedb development by creating an account on GitHub.

github.com

 

입력: 2021.04.13 20:40