A script that allows you to automate the creation of proteins
Best for
Code
--
-- A script that allows you to automate the creation of proteins
--
function start ()
structure.WiggleAll ( 3 )
structure.MutateSidechainsAll ( 3 )
structure.ShakeSidechainsAll ( 3 )
end
function message ()
local okMsg = dialog.CreateDialog ( ReVersion )
okMsg.l15 = dialog.AddLabel ( "Factory finished" )
okMsg.OK = dialog.AddButton ( "OK", 1 )
dialog.Show ( okMsg )
end
function main ()
Recipe = "Automator"
Version = "1.01"
ReVersion = Recipe .. " " .. Version
start ()
message ()
end
main ()