Volatile:PlantBiotech/Media/IonComparison

From Metabolomics.JP
(Difference between revisions)
Jump to: navigation, search
(Created page with "==培地の比較== {{#formtag:form|action="/wiki/Volatile:PlantBiotech/Media/IonComparison"| Compare {{#formtag:select|name="ARG1"| {{#formtag:option|value="-"|-}} {{#formt...")
 
m
 
(6 intermediate revisions by one user not shown)
Line 1: Line 1:
==培地の比較==
+
{{PlantBiotech/Header}}
 +
 
 +
==培地イオンの有無==
 +
<div>正確な培地成分と量の比較は[[Volatile:PlantBiotech/Media/Comparison|こちら]]</div>
  
 
{{#formtag:form|action="/wiki/Volatile:PlantBiotech/Media/IonComparison"|
 
{{#formtag:form|action="/wiki/Volatile:PlantBiotech/Media/IonComparison"|
Compare {{#formtag:select|name="ARG1"|
+
比較対象 {{#formtag:select|name="ARG1"|
 
   {{#formtag:option|value="-"|-}}
 
   {{#formtag:option|value="-"|-}}
 
   {{#formtag:option|value="Media/MS (1962)" {{#ifeq:{{{1|}}}|Media/MS (1962)|selected="yes"}}|MS (1962) Murashige & Skoog}}
 
   {{#formtag:option|value="Media/MS (1962)" {{#ifeq:{{{1|}}}|Media/MS (1962)|selected="yes"}}|MS (1962) Murashige & Skoog}}
Line 22: Line 25:
 
   {{#formtag:option|value="Media/WPM (1981)" {{#ifeq:{{{2|}}}|Media/WPM (1981)|selected="yes"}}|Woody Plant Medium (1956) Lloyd & McCown}} }}
 
   {{#formtag:option|value="Media/WPM (1981)" {{#ifeq:{{{2|}}}|Media/WPM (1981)|selected="yes"}}|Woody Plant Medium (1956) Lloyd & McCown}} }}
  
{{#formtag:input|type="submit"}} }}
+
{{#formtag:input|type="submit"}} (&larr; 選択後に、ここをクリック) }}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 28: Line 31:
 
{{#lua:
 
{{#lua:
 
   i = 0
 
   i = 0
   L = {
+
   L = {}
 
---ラベルまとめ---
 
---ラベルまとめ---
"糖" = {},
+
T = {"糖","アミノ酸","ペプチド","Al","K","Ca","Co","Na","Ni","Mg","Mn","Mo","I","Zn","Fe","Cu","NH4","H2BO3","H2PO4","Cl","HSO4","NO3","チアミン","ニコチン酸","パントテン酸","ビオチン","ピリドキシン","葉酸","有機酸","EDTA","ゲル化剤","ハイポネックス"}
"アミノ酸" = {},
+
"ペプチド" = {},
+
"Al" = {},
+
"K" = {},
+
"Ca" = {},
+
"Co" = {},
+
"Na" = {},
+
"Ni" = {},
+
"Mg" = {},
+
"Mn" = {},
+
"Mo" = {},
+
"I" = {},
+
"Zn" = {},
+
"Fe" = {},
+
"Cu" = {},
+
"NH4" = {},
+
"H2BO3" = {},
+
"H2PO4" = {},
+
"Cl" = {},
+
"HSO4" = {},
+
"NO3" = {},
+
"チアミン" = {},
+
"ニコチン酸" = {},
+
"パントテン酸" = {},
+
"ビオチン" = {},
+
"ピリドキシン" = {},
+
"葉酸" = {},
+
"有機酸" = {},
+
"EDTA" = {},
+
"ゲル化剤" = {},
+
"ハイポネックス" = {}
+
}
+
  
 
   for l,v in stdin:gmatch("&&[a-zA-Z0-9/%(%)_]+.([^=]+)=%s*([^=]+)\n") do
 
   for l,v in stdin:gmatch("&&[a-zA-Z0-9/%(%)_]+.([^=]+)=%s*([^=]+)\n") do
     if (l == "培地名") then
+
     if (l == "培地名") then i = i+1 end
      i = i+1
+
 
    end
+
    if (string.byte(l,1) > 127) then
+
     
+
 
---SUGARS---
 
---SUGARS---
if (l.find"グルコース") ~= null) then (L["糖"])[i] = "○" end
+
if (string.find(l,"グルコース") ~= null) then if (L["糖"] == null) then L["糖"] = {} end (L["糖"])[i] = "○" end
if (l.find"ソルビトール") ~= null) then (L["糖"])[i] = "○" end
+
if (string.find(l,"ソルビトール") ~= null) then if (L["糖"] == null) then L["糖"] = {} end (L["糖"])[i] = "○" end
if (l.find"マンニトール") ~= null) then (L["糖"])[i] = "○" end
+
if (string.find(l,"マンニトール") ~= null) then if (L["糖"] == null) then L["糖"] = {} end (L["糖"])[i] = "○" end
if (l.find"ミオイノシトール") ~= null) then (L["糖"])[i] = "○" end
+
if (string.find(l,"ミオイノシトール") ~= null) then if (L["糖"] == null) then L["糖"] = {} end (L["糖"])[i] = "○" end
 
---AMINO ACIDS---
 
---AMINO ACIDS---
if (l.find"アスパラギン酸") ~= null) then (L["アミノ酸"])[i] = "○" end
+
if (string.find(l,"アスパラギン酸") ~= null) then if (L["アミノ酸"] == null) then L["アミノ酸"] = {} end (L["アミノ酸"])[i] = "○" end
if (l.find"アルギニン") ~= null) then (L["アミノ酸"])[i] = "○" end
+
if (string.find(l,"アルギニン") ~= null) then if (L["アミノ酸"] == null) then L["アミノ酸"] = {} end (L["アミノ酸"])[i] = "○" end
if (l.find"グリシン") ~= null) then (L["アミノ酸"])[i] = "○" end
+
if (string.find(l,"グリシン") ~= null) then if (L["アミノ酸"] == null) then L["アミノ酸"] = {} end (L["アミノ酸"])[i] = "○" end
if (l.find"グルタミン") ~= null) then (L["アミノ酸"])[i] = "○" end
+
if (string.find(l,"グルタミン") ~= null) then if (L["アミノ酸"] == null) then L["アミノ酸"] = {} end (L["アミノ酸"])[i] = "○" end
if (l.find"システイン") ~= null) then (L["アミノ酸"])[i] = "○" end
+
if (string.find(l,"システイン") ~= null) then if (L["アミノ酸"] == null) then L["アミノ酸"] = {} end (L["アミノ酸"])[i] = "○" end
 
---PEPTIDES---
 
---PEPTIDES---
if (l.find"カザミノ酸") ~= null) then (L["ペプチド"])[i] = "○" end
+
if (string.find(l,"カザミノ酸") ~= null) then if (L["ペプチド"] == null) then L["ペプチド"] = {} end (L["ペプチド"])[i] = "○" end
if (l.find"トリプトン") ~= null) then (L["ペプチド"])[i] = "○" end
+
if (string.find(l,"トリプトン") ~= null) then if (L["ペプチド"] == null) then L["ペプチド"] = {} end (L["ペプチド"])[i] = "○" end
if (l.find"プロリン") ~= null) then (L["ペプチド"])[i] = "○" end
+
if (string.find(l,"プロリン") ~= null) then if (L["ペプチド"] == null) then L["ペプチド"] = {} end (L["ペプチド"])[i] = "○" end
if (l.find"ペプトン") ~= null) then (L["ペプチド"])[i] = "○" end
+
if (string.find(l,"ペプトン") ~= null) then if (L["ペプチド"] == null) then L["ペプチド"] = {} end (L["ペプチド"])[i] = "○" end
if (l.find"酵母エキス") ~= null) then (L["ペプチド"])[i] = "○" end
+
if (string.find(l,"酵母エキス") ~= null) then if (L["ペプチド"] == null) then L["ペプチド"] = {} end (L["ペプチド"])[i] = "○" end
 
---SALTS---
 
---SALTS---
if (l.find"アルミニウム") ~= null) then (L["Al"])[i] = "○" end
+
if (string.find(l,"アルミニウム") ~= null) then if (L["Al"] == null) then L["Al"] = {} end (L["Al"])[i] = "○" end
if (l.find"カリウム") ~= null) then (L["K"])[i] = "○" end
+
if (string.find(l,"カリウム") ~= null) then if (L["K"] == null) then L["K"] = {} end (L["K"])[i] = "○" end
if (l.find"カルシウム") ~= null) then (L["Ca"])[i] = "○" end
+
if (string.find(l,"カルシウム") ~= null) then if (L["Ca"] == null) then L["Ca"] = {} end (L["Ca"])[i] = "○" end
if (l.find"コバルト") ~= null) then (L["Co"])[i] = "○" end
+
if (string.find(l,"コバルト") ~= null) then if (L["Co"] == null) then L["Co"] = {} end (L["Co"])[i] = "○" end
if (l.find"ナトリウム") ~= null) then (L["Na"])[i] = "○" end
+
if (string.find(l,"ナトリウム") ~= null) then if (L["Na"] == null) then L["Na"] = {} end (L["Na"])[i] = "○" end
if (l.find"ニッケル") ~= null) then (L["Ni"])[i] = "○" end
+
if (string.find(l,"ニッケル") ~= null) then if (L["Ni"] == null) then L["Ni"] = {} end (L["Ni"])[i] = "○" end
if (l.find"マグネシウム") ~= null) then (L["Mg"])[i] = "○" end
+
if (string.find(l,"マグネシウム") ~= null) then if (L["Mg"] == null) then L["Mg"] = {} end (L["Mg"])[i] = "○" end
if (l.find"マンガン") ~= null) then (L["Mn"])[i] = "○" end
+
if (string.find(l,"マンガン") ~= null) then if (L["Mn"] == null) then L["Mn"] = {} end (L["Mn"])[i] = "○" end
if (l.find"モリブデン酸") ~= null) then (L["Mo"])[i] = "○" end
+
if (string.find(l,"モリブデン酸") ~= null) then if (L["Mo"] == null) then L["Mo"] = {} end (L["Mo"])[i] = "○" end
if (l.find"ヨウ化") ~= null) then (L["I"])[i] = "○" end
+
if (string.find(l,"ヨウ化") ~= null) then if (L["I"] == null) then L["I"] = {} end (L["I"])[i] = "○" end
if (l.find"亜鉛") ~= null) then (L["Zn"])[i] = "○" end
+
if (string.find(l,"亜鉛") ~= null) then if (L["Zn"] == null) then L["Zn"] = {} end (L["Zn"])[i] = "○" end
if (l.find"鉄)") ~= null) then (L["Fe"])[i] = "○" end
+
if (string.find(l,"鉄)") ~= null) then if (L["Fe"] == null) then L["Fe"] = {} end (L["Fe"])[i] = "○" end
if (l.find"銅") ~= null) then (L["Cu"])[i] = "○" end
+
if (string.find(l,"銅") ~= null) then if (L["Cu"] == null) then L["Cu"] = {} end (L["Cu"])[i] = "○" end
if (l.find"アンモニウム") ~= null) then (L["NH4"])[i] = "○" end
+
if (string.find(l,"アンモニウム") ~= null) then if (L["NH4"] == null) then L["NH4"] = {} end (L["NH4"])[i] = "○" end
if (l.find"ホウ酸") ~= null) then (L["H2BO3"])[i] = "○" end
+
if (string.find(l,"ホウ酸") ~= null) then if (L["H2BO3"] == null) then L["H2BO3"] = {} end (L["H2BO3"])[i] = "○" end
if (l.find"リン酸") ~= null) then (L["H2PO4"])[i] = "○" end
+
if (string.find(l,"リン酸") ~= null) then if (L["H2PO4"] == null) then L["H2PO4"] = {} end (L["H2PO4"])[i] = "○" end
if (l.find"塩化") ~= null) then (L["Cl"])[i] = "○" end
+
if (string.find(l,"塩化") ~= null) then if (L["Cl"] == null) then L["Cl"] = {} end (L["Cl"])[i] = "○" end
if (l.find"塩酸") ~= null) then (L["Cl"])[i] = "○" end
+
if (string.find(l,"塩酸") ~= null) then if (L["Cl"] == null) then L["Cl"] = {} end (L["Cl"])[i] = "○" end
if (l.find"硝酸") ~= null) then (L["HNO3"])[i] = "○" end
+
if (string.find(l,"硝酸") ~= null) then if (L["HNO3"] == null) then L["HNO3"] = {} end (L["HNO3"])[i] = "○" end
if (l.find"硫酸") ~= null) then (L["HSO4"])[i] = "○" end
+
if (string.find(l,"硫酸") ~= null) then if (L["HSO4"] == null) then L["HSO4"] = {} end (L["HSO4"])[i] = "○" end
if (l.find"---VITAMINES---") ~= null) then (L["---VITAMINES---"])[i] = "○" end
+
---VITAMINES---
if (l.find"チアミン") ~= null) then (L["チアミン"])[i] = "○" end
+
if (string.find(l,"チアミン") ~= null) then if (L["チアミン"] == null) then L["チアミン"] = {} end (L["チアミン"])[i] = "○" end
if (l.find"ニコチン酸") ~= null) then (L["ニコチン酸"])[i] = "○" end
+
if (string.find(l,"ニコチン酸") ~= null) then if (L["ニコチン酸"] == null) then L["ニコチン酸"] = {} end (L["ニコチン酸"])[i] = "○" end
if (l.find"パントテン酸") ~= null) then (L["パントテン酸"])[i] = "○" end
+
if (string.find(l,"パントテン酸") ~= null) then if (L["パントテン酸"] == null) then L["パントテン酸"] = {} end (L["パントテン酸"])[i] = "○" end
if (l.find"ビオチン") ~= null) then (L["ビオチン"])[i] = "○" end
+
if (string.find(l,"ビオチン") ~= null) then if (L["ビオチン"] == null) then L["ビオチン"] = {} end (L["ビオチン"])[i] = "○" end
if (l.find"ピリドキシン") ~= null) then (L["ピリドキシン"])[i] = "○" end
+
if (string.find(l,"ピリドキシン") ~= null) then if (L["ピリドキシン"] == null) then L["ピリドキシン"] = {} end (L["ピリドキシン"])[i] = "○" end
if (l.find"葉酸") ~= null) then (L["葉酸"])[i] = "○" end
+
if (string.find(l,"葉酸") ~= null) then if (L["葉酸"] == null) then L["葉酸"] = {} end (L["葉酸"])[i] = "○" end
 
---OTHERS---
 
---OTHERS---
if (l.find"クエン酸") ~= null) then (L["有機酸"])[i] = "○" end
+
if (string.find(l,"クエン酸") ~= null) then if (L["有機酸"] == null) then L["有機酸"] = {} end (L["有機酸"])[i] = "○" end
if (l.find"酒石酸") ~= null) then (L["有機酸"])[i] = "○" end
+
if (string.find(l,"酒石酸") ~= null) then if (L["有機酸"] == null) then L["有機酸"] = {} end (L["有機酸"])[i] = "○" end
if (l.find"エチレンジアミン四酢酸") ~= null) then (L["EDTA"])[i] = "○" end
+
if (string.find(l,"エチレンジアミン四酢酸") ~= null) then if (L["EDTA"] == null) then L["EDTA"] = {} end (L["EDTA"])[i] = "○" end
if (l.find"ハイポネックス") ~= null) then (L["ハイポネックス"])[i] = "○" end
+
if (string.find(l,"ハイポネックス") ~= null) then if (L["ハイポネックス"] == null) then L["ハイポネックス"] = {} end (L["ハイポネックス"])[i] = "○" end
 
---GEL---
 
---GEL---
if (l.find"寒天") ~= null) then (L["ゲル化剤"])[i] = "○" end
+
if (string.find(l,"寒天") ~= null) then if (L["ゲル化剤"] == null) then L["ゲル化剤"] = {} end (L["ゲル化剤"])[i] = "○" end
if (l.find"ゲルライト") ~= null) then (L["ゲル化剤"])[i] = "○" end
+
if (string.find(l,"ゲルライト") ~= null) then if (L["ゲル化剤"] == null) then L["ゲル化剤"] = {} end (L["ゲル化剤"])[i] = "○" end
if (l.find"フィタゲル") ~= null) then (L["ゲル化剤"])[i] = "○" end
+
if (string.find(l,"フィタゲル") ~= null) then if (L["ゲル化剤"] == null) then L["ゲル化剤"] = {} end (L["ゲル化剤"])[i] = "○" end
  
    end
 
 
   end
 
   end
   for l,v in pairs(L) do
+
   for l,v in ipairs(T) do
 +
    if (L[v] ~= null) then
 
       print("{{#bar:}}-\n{{#bar:}} "..v)
 
       print("{{#bar:}}-\n{{#bar:}} "..v)
 
       for j=1,i do
 
       for j=1,i do
 
         if ((L[v])[j] == null) then print("{{#bar:}} -") else print("{{#bar:}}" ..(L[v])[j]) end
 
         if ((L[v])[j] == null) then print("{{#bar:}} -") else print("{{#bar:}}" ..(L[v])[j]) end
 
       end
 
       end
 +
    end
 
   end
 
   end
 
|
 
|

Latest revision as of 06:23, 5 September 2011

トップページ イネ ミヤコグサ トマト ダイズ 培地一覧

[edit] 培地イオンの有無

正確な培地成分と量の比較はこちら

比較対象 and

(← 選択後に、ここをクリック)

要素
Personal tools
Namespaces

Variants
Actions
Navigation
metabolites
Toolbox