일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- 3차원구조
- ab initio
- imgaemagick
- portaudio
- purification
- 분비단백질
- 파이썬3
- transmembrane
- python3
- 생물정보학
- 프로그램
- protein
- RMSD
- bioinformatics
- 파이썬
- pyaudio
- in planta
- overflowed
- dtw
- venn
- R
- python2
- python
- 파이몰
- 소리분석
- 리간드
- 단백질
- perl
- PyMOL
- librosa
- Today
- Total
목록python2 (2)
박사면뭐해
기본 명령어: # python2 EffectorP.py -i [input.fasta] -o [output.result.out] -E [effector.fasta] -N [non-effector.fasta] ※ NOTE: python2 기반이라서 환경변수 설정을 해주더라도 프로그램 경로를 다 입력해서 실행해야 함. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # EffectorP :: predicting fungal effector proteins from secretomes using machine learning # EffectorP 2.0 (November 2017); http://effectorp.csiro...
1. py2라는 이름의 Python2 환경 생성하고 Python 2.7 설치하기 conda create --name py2 python=2.7 2. py3이라는 Python3 환경 생성하고 Python 3.5 설치하기 conda create --name py3 python=3.5 ※ py2, py3 두 개의 환경이 만들어짐 3. 리눅스, macOS에서 Python2 환경 실행하기 / Python3도 마찬가지 conda activate py2 4. 리눅스, macOS에서 Python2 환경 종료하기 / Python3도 마찬가지 conda deactivate 출처: docs.anaconda.com/anaconda/user-guide/tasks/switch-environment/