Entries from 2021-02-01 to 1 month

必ず忘れるGit Command メモ

Grüezi, 使いたい時には忘れてるGit commandをメモ代わりにalias化しました. ~/.gitconfigに下記コードを保存すると,terminalでgit [alias]でgit コマンドとして使えます. 大体これで作業順な気がする. [alias] rv = remote -v ra = remote add origin #…

JupyterNotebookのショートカットメモ

いつも忘れてしまうやつの抜粋. jupyterとかMacOSのversionが違うと微妙に違うので注意. MacOS Big Sur, M1 Python 3.7.9 (conda 4.9.2) Cellを分割 ctr + Shift + - Cellを統合 Shift + M Kernelを中断 i, i 単語単位でアクション option + key 行単位で…

Uniprotで調べた標的タンパクのSummaryとPDBを取得する

Grüezi, Biopythonのライブラリを使ってUniprotをいじってみたので,以下覚書. # ライブラリのimport import pandas as pd from Bio import SeqIO from Bio.PDB import PDBList as pdbl from urllib.request import urlopen # 調べたいタンパクのUniprotKB …