Search
Duplicate
🛠️

genomepy 사용법

Installation

pip install genomepy # conda install genomepy는 왠지 몰라도 안됨 # 2020.5.25 수정: 이제 됨
Shell
복사
genePredToBed
genePredToGtf
bedToGenePred
gtfToGenePred
gff3ToGenePred
를 PATH로 옮겨온다.

Configuration

~/.config/genomepy/genomepy.yaml 를 수정한다.
# 원래 이렇게 되어 있음. genomes_dir: ~/.local/share/genomes/ # 수정 후. genomes_dir: /data/project/dohoon/reference/
Shell
복사

Installing genomes

# ALT 까지 다 설치할 떄. genomepy install hg38 UCSC # Major chromosome만 설치할 때. genomepy install hg38 UCSC -r 'chr[0-9XY]+$' # Annotation까지 다 설치할 떄. genomepy install hg38 UCSC -r 'chr[0-9XY]+$' --annotation
Shell
복사