일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Git
- EdgeR
- github
- julia
- 싱글셀 분석
- single cell analysis
- HTML
- cellranger
- Batch effect
- CUT&RUN
- scRNAseq analysis
- PYTHON
- ChIPseq
- javascript
- 비타민 C
- drug muggers
- drug development
- DataFrame
- python matplotlib
- CUTandRUN
- ngs
- scRNAseq
- CSS
- single cell
- MACS2
- pandas
- js
- single cell rnaseq
- matplotlib
- Bioinformatics
- Today
- Total
목록Programming enviorment (20)
바이오 대표
git clone [URL] Git clone is used to clone a remote repository into a local workspace git push Git push is used to push commits from your local repo to a remote repo git pull Git pull is used to fetch the newest updates from a remote repository Github 은 'Web-based Git Repository hosting service' 로 own git server 가 없어서 웹 사이트를 이용하는 것이다. Github 특징: Distributed system = 각 개발자들이 개인 컴퓨터로 모든 repository..
Undoing Unstaged $ git checkout [file] Undoing Staged $ git reset HEAD [file] Undoing Committed $ git commit --amend "commend" RollBack $ git revert HEAD $ git checkout [file] : Unstaged 상태의 파일이 수정 전으로 돌아간다. $ git reset HEAD [file] : Staged 되었던 파일 --> Unstaged * HEAD : current snapshot * -p flag를 사용하면, modify 할때마다 물어본다 if you want to snapshot or not (commi..
$ git rm [file] $ git status 에서도 확인 가능 --> deleted 확인) $ git mv [file] [file_renew] .gitignore file : A file containing a list of files or filename patterns for Git to skip for the current repo. ( git status에 쓸데없는 noise 가 뜨는것을 방지하기 위해 파일을 무시 ) *활용방법 $ echo [file] > .gitignore $ ls -la 를 통해 확인 가능 $ git add .gitignore git mv Similar to the Linux ..
기본 명령어 git [init/ config/ add/ commit] 에서 조금 더 활용적으로 사용하기 좋은 명령어이다. (Git 기본 사용법 (init, config, add, commit)) git commit -a -m git log -p git lot --stat git show $ git commit -a -m "message" 파일을 조금 수정할 때, staging area 를 스킵하고 바로 commit 을 할 수 있다. - a : stage와 commit 을 한번에! (shortcut to stage any changes to tracked files and commit them in one step) - m : message * Git uses the HEAD alias to represe..