일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- single cell rnaseq
- javascript
- 싱글셀 분석
- CSS
- Batch effect
- Git
- drug muggers
- single cell
- MACS2
- Bioinformatics
- DataFrame
- single cell analysis
- scRNAseq analysis
- pandas
- js
- julia
- github
- ngs
- matplotlib
- HTML
- cellranger
- PYTHON
- scRNAseq
- drug development
- ChIPseq
- CUT&RUN
- EdgeR
- 비타민 C
- python matplotlib
- CUTandRUN
- Today
- Total
목록Programming enviorment (20)
바이오 대표
내가 맥북이니까,, 내 노동시간을 줄이기 위한 알짜배기 단축키들 ⌘: Command ⌃: Control ⌥: Option ⇧: Shift ↩: Enter ␣: Space ⇥: Tab ↩: 에디트모드로 변경 D,D(d,d): 선택한 셀 삭제 A(a): 선택한 셀의 위에 새로운 셀 삽입 B(b): 선택한 셀의 아래에 새로운 셀 삽입 X(x): 선택한 셀 잘라내기 C(c): 선택한 셀 복사 V(v): 선택한 셀의 아래에 복사한 셀 삽입 Y(y): 셀을 코드셀로 변경 M(m): 셀을 마크다운 셀로 변경 R(r): 셀을 서식없는셀로 변경 1: 헤딩1의 마크다운 셀로 변경 2: 헤딩2의 마크다운 셀로 변경 3: 헤딩3의 마크다운 셀로 변경 4: 헤딩4의 마크다..
실제로 사용 되는 기본 코드 예시 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 을 하면 된다
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 (..
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..