일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- cellranger
- javascript
- ngs
- pandas
- js
- 싱글셀 분석
- matplotlib
- DataFrame
- EdgeR
- single cell rnaseq
- MACS2
- 비타민 C
- single cell
- julia
- ChIPseq
- HTML
- single cell analysis
- CUTandRUN
- CSS
- Batch effect
- scRNAseq analysis
- github
- CUT&RUN
- python matplotlib
- drug development
- scRNAseq
- PYTHON
- Bioinformatics
- drug muggers
- Git
- Today
- Total
목록분류 전체보기 (216)
바이오 대표
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bGNXMQ/btrp8qsQh90/LAvCScKgjIekn681OktB4K/img.png)
실제로 사용 되는 기본 코드 예시 1. Github Account 만들기 2. 저장 후 Repository 만들기 3. 연동 $ git clone [url] 4. 해당 directory로 이동 $ cd [directory_name] 5. Configure Git $ git config --global user.name [Name] $ git config --global user.email [user@example.com] 만약 github page 에서 수정된게 있으면 push 할때 문제가 생겨서 $ git pull origin main 후에 $ git push origin main 을 하면 된다
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bd2TFN/btrotlM0BFt/zdhYaLC5fdOKEmEW850Mo1/img.png)
여러 개발자들과 함께 코드를 공유 및 병합을 할때 각자 branch에서 수정 후 master branch에 Three-way 로 병합되거나, fast-forward 로 병합된다. 보통 three way merge 는 error debug할때 어떤 branch 에서 발생했는지 찾기 어려움으로 rebase를 이용해서 하나를 base로 fast forward merge 가 가능하게 해서 debug를 좀더 쉽게 할수 있도록 한다. => commit history 를 linearly 확인 할 수 있다. $ git merge $ git rebase --> changing the base commit that's used for our branch $ git checkou..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/oBzoW/btrns28KBFa/Wo8ssSiO09RkJJG08zcuZK/img.png)
git remote Lists remote repos remote 저장소 리스트 git remote -v List remote repos verbosely remote 저장소 좀 더 자세하게 git remote show Describes a single remote repo remote 저장소 한개 설명 git remote update Fetches the most up-to-date objects 최신버전 fetch git fetch Downloads specific objects 특정부분 fetch git branch -r Lists remote branches git 이 현재 tracking 하는 remote branch Github을 Remote repository 로 이용을 할 때: Pull (..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/c9do2p/btrmXkbDI1o/gcNyOScOFVKcJUYKcZKuLK/img.png)
git branch Creates the branch git branch -d Deletes the branch git branch -D Forcibly deletes the branch git checkout Switches to a branch. git checkout -b Creates a new branch and switches to it. git merge Merge joins branches together. git merge --abort If there are merge conflicts (meaning files are incompatible), --abort can be used to abort the merge action. git log --graph --online This sh..