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

Text Similarity 를 구하는 방법에는 String-based, Corpus(말뭉치)-based, Knowledge based가 있다 논문에서 Side Effect to Side Effect, Disease to Disease Similarity 를 위해 간단히 String-Based Text Similarity 를 적용하였다. String-Based Text Similarity: [1] Character-based [2] Term-based ( Cosine Similarity, Jaccard Similarity) Jaccard Similarity number of shared terms over the number of all unique terms in both strings Cosine S..

실제로 사용 되는 기본 코드 예시 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 을 하면 된다

여러 개발자들과 함께 코드를 공유 및 병합을 할때 각자 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..

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 (..