Module:InfoboxforTarget

From Cysteinome
Revision as of 19:47, 23 July 2019 by Wu3857 (talk | contribs)
Jump to: navigation, search

Documentation for this module may be created at Module:InfoboxforTarget/doc

local p = {}
 
function p.run(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = 'Basic information',
		topStyle = 'background:#cfc;'
	} )
	:addRow('Short Name', frame.args[1])
	:addRow('UNP ID', frame.args[2])
        :addRow('Organism', frame.args[3])
        :addRow('Cys Site', frame.args[4])
        :addRow('Family/Domain', frame.args[5])
        :addRow('Related PDB', frame.args[6])
        :addRow('Known Ligand', frame.args[7])
end
 
return p