일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Git
- 싱글셀 분석
- DataFrame
- python matplotlib
- scRNAseq analysis
- github
- scRNAseq
- MACS2
- cellranger
- pandas
- js
- single cell
- Bioinformatics
- Batch effect
- ngs
- julia
- CSS
- CUT&RUN
- CUTandRUN
- single cell rnaseq
- HTML
- ChIPseq
- EdgeR
- drug development
- PYTHON
- 비타민 C
- matplotlib
- javascript
- drug muggers
- single cell analysis
- Today
- Total
목록github (9)
바이오 대표
Git Project Git Directory - 과거의 모든 파일들과 수정 내용들 저장소 Working Tree - 프로젝트의 현재 상황 Staging Area - 다음 commit 에 바뀔 내용들 파일을 트랙킹 할때 크게 세가지 state로 구분할 수 있다. [1] Modified - changed but not commited yet [2] Staged - changes are ready to be committed (mark changed for tracking) [3] Committed - stored in the git directory Git 을 이용한 File tracking 의 기본 work flow 는 다음과 같다. Step 0..
[1] 내 컴퓨터에 git 이 깔려있는지 확인하기 (Mac) $ git --version (notepad++ 이나 atom ( integrated developer environments or IDEs) 을 사용할 수 도 있다) [2] Git 설치 내 컴퓨터에 git 이 설치되어 있지 않다면 https://git-scm.com/downloads 에서 설치 할 수 있다. - 아래 페이지에 Linux, Mac, Window 환경에서의 설치법이 자세히 설명되어있다. https://git-scm.com/book/en/v2/Getting-Started-Installing-Git Git - Installing Git This book was written using Git ve..
해당 코드를 통해 old_version 과 new_version을 비교 및 확인 할 수 있다. (All changes, context 확인 가능) 사용 이유: 사람이 직접 비교하면 시간도 많이 많이 걸릴뿐더러 error-prone => automatically by using diff/patch $ diff [old_file] [new_file] # difference 찾기 해당 코드의 아웃풋으로, difference 가 있는 code line 만보여준다. 두개의 파일 비교 후 는 new_version에서의 라인들을 보여준다. line #from [new_file] 만약 outpu..
" Git/Github은 VCS (version control system) 으로 많은 개발자들이 쉽게 코드를 저장, 공유, 로그 및 관리를 위해 널리 사용된다. " Store and share code, configuration ( branching & merging ) Remote repositories Track different revisions, rollback problematic changes, work together effectively 아래 사이트들를 통해 기본 Git command 을 확인 할 수 있다. https://git-scm.com/book/en/v2 https://git-scm.com/docs/gittutorial < Version Control Sy..