0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Excelの書式設定を使って、アミノ酸配列をセルごとに色分けする

Last updated at Posted at 2024-12-08

1次配列を、1文字ずつセルに入れる

以下のように入力すると、A3のセルを1文字ずつセルに入れていってくれる。

=MID($A$3,COLUMN()-1,1)

image.png

セル内の文字に応じて、色をつける

Excelの「条件付き書式」から、以下のようにルールを作成する。
入力する「適用先」「数式」「Hex(色)」は最後に記載。

image.png

image.png

image.png

以下の値を入れていく。

# excel_coloring
基本的にはMEGAに準拠
---------------------------

# 適用先 (必要に応じて拡張)
=$A$1:$AZ$100

#non-polar: #ffee52
=OR(A1="F",A1="I",A1="L",A1="A",A1="V",A1="M")
#G: #b652f7
=OR(A1="G")
#P: #C0AE00 #暫定
=OR(A1="P")


#C: #d3d385
=OR(A1="C")


#polar: #3cc63c
=OR(A1="S",A1="T",A1="N",A1="Q")
#W: #8BA35F #暫定
=OR(A1="W")
#Y: #b9ff55
=OR(A1="Y")



#basic: #55d7ff
=OR(A1="R",A1="K")
#H: #61f8ff
=OR(A1="H")

#acidic: #f46060
=OR(A1="D",A1="E")

image.png

完成!

(備考)

W, Pの色は検討中です。
いい具合に変更してください。いい感じの色が見つかったら、コメントで教えていただけると嬉しいです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?