일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비타민 C
- scRNAseq
- ngs
- single cell
- CUT&RUN
- javascript
- Bioinformatics
- MACS2
- CUTandRUN
- Git
- CSS
- single cell rnaseq
- js
- HTML
- single cell analysis
- DataFrame
- pandas
- drug muggers
- cellranger
- EdgeR
- python matplotlib
- julia
- ChIPseq
- github
- scRNAseq analysis
- PYTHON
- 싱글셀 분석
- Batch effect
- matplotlib
- drug development
- Today
- Total
목록분류 전체보기 (217)
바이오 대표

맥북으로만 코딩을 해왔던 나로써,, ML을 여러개 돌리기 위해 집에 있는 다르 노트북과 본체를 활용하려 하였으나 Window cmd의 다른 명령어 벽에 막혀 멍을 때리다가 Jupyter lab을 설치하고자 마음을 먹었다 Step 0. 일단 cmd (명령 프롬프트) 창을 연다. pwd,,, ls,,, clear,,, 하하,, 아무것도 되지 않는구만 2021.09.26 - [Programming enviorment] - [CMD 명령 프롬포트] linux (pwd, ls, clear...) cmd 명령어 [CMD 명령 프롬포트] linux (pwd, ls, clear...) cmd 명령어 linux cmd 현재 경로 위치 pwd cd 디렉터리 이동 cd [path] cd [path] 목록 표시 ls dir ..
linux cmd 현재 경로 위치 pwd cd 디렉터리 이동 cd [path] cd [path] 목록 표시 ls dir 터미널 초기화 clear cls 파일 열기 open [file] type [.txt] 명령어 도움말 man help 파일 복사 cp copy 파일이동 mv move 파일 생성 touch fsutil file createnew [파일명] [파일길이 as bytes] 파일 삭제 rm del 디렉토리 생성 mkdir mkdir or md 디렉토리 삭제 rm -R rmdir 파일/ 디렉토리명 변경 mv rename 최고 권한 실행 sudo 현재 날짜 date date 실행중인 프로세스 top tasklist 아래와 같은것,, 보기 편한것으로 보십쇼 현재 경로 위치 pwd cd 디렉터리 이동 c..
Numeric Operator (산술연산자) +, - , /, *, %, ** Increment and Decrement Operator (증감연산자) ++, -- Assignment Operators (대입연산자) =, +=, -=, *=, /= Comparision Operators (비교연산자) , Logical Operators (논리연산자) ||, $$, ! Numeric Operator (산술연산자) +, - , /, *, %, ** + : 더하기 - : 빼기 / : 나누기 * : 곱하기 % : 나머지 ** : 승 Increment and Decrement Operator (증감연산자) ++, -- ++ : 1 증가 -- : 1 감소 (아래 예시와 같이 ++/-- 위치에 따라 변수에 저장하는 ..