일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- drug development
- cellranger
- python matplotlib
- javascript
- matplotlib
- EdgeR
- ngs
- pandas
- CSS
- PYTHON
- scRNAseq analysis
- github
- ChIPseq
- 비타민 C
- Batch effect
- 싱글셀 분석
- Bioinformatics
- MACS2
- single cell rnaseq
- single cell analysis
- Git
- HTML
- CUTandRUN
- single cell
- DataFrame
- julia
- drug muggers
- scRNAseq
- CUT&RUN
- js
- Today
- Total
목록분류 전체보기 (216)
바이오 대표
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 감소 (아래 예시와 같이 ++/-- 위치에 따라 변수에 저장하는 ..
JS 형변환은 즉 자료형 변경이다. * 앞글자 대문자 String ( ) - 문자열로 변경 Number ( ) - 숫자열로 변경 NaN(not a number) Boolean ( ) - true/false로 변경 숫자 0, "", null, undefined, NaN == false