Module:Clade/sequential
local p = {}
local pargs
function p.main(frame)
pargs = frame:getParent().args
local args = {}
local i=1
local contentString = ""
local max = getMax()
if pargs['inverse'] then
contentString = p.inverseClade(frame,max,max)
else
contentString = p.clade(frame,1,max)
end
return contentString
end
function p.clade(frame,i,max) -- |1= is basal at top
local args = {}
args[1] = pargs [i]
args['label1'] = pargs ['label'..tostring(i)]
args['sublabel1'] = pargs ['sublabel'..tostring(i)]
if i+1 == max then
args[2] = pargs [i+1]
args['label2'] = pargs ['label'..tostring(i+1)]
args['sublabel2'] = pargs ['sublabel'..tostring(i+1)]
else
args[2] = p.clade(frame,i+1,max) -- or the result of the next pair
end
local template = "Clade"
if pargs ['reverse'] then template = "CladeR" end
return frame:expandTemplate{ title = template, args = args }
end
function p.inverseClade(frame,i,max) -- |1= innermost at bottom
local args = {}
args[2] = pargs [i]
args['label2'] = pargs ['label'..tostring(i)]
args['sublabel2'] = pargs ['sublabel'..tostring(i)]
if i-1 == 1 then
args[1] = pargs [i-1]
args['label1'] = pargs ['label'..tostring(i-1)]
args['sublabel1'] = pargs ['sublabel'..tostring(i-1)]
else
args[1] = p.inverseClade(frame,i-1,max) -- or the result of the next pair
end
local template = "Clade"
if pargs ['reverse'] then template = "CladeR" end
return frame:expandTemplate{ title = template , args = args }
end
function p.inverseClade2(frame,i,max) -- |1= is innermost at bottom
local args = {}
args[1] = pargs [i]
args['label1'] = pargs ['label'..tostring(i)]
if i-1 == 1 then
args[2] = pargs [i-1]
args['label2'] = pargs ['label'..tostring(i-1)]
else
args[2] = p.inverseClade(frame,i-1,max) -- or the result of the next pair
end
return frame:expandTemplate{ title = "Clade", args = args }
end
function getMax()
local i=1
local max
while i<50 do
if pargs [i] then
max = i
i=i+1
else
break
end
end
return max
end
return p
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.