Icon representing a recipe

Recipe: Automator

created by furi0us

Profile


Name
Automator
ID
108306
Shared with
Public
Parent
None
Children
None
Created on
May 29, 2023 at 14:33 PM UTC
Updated on
May 29, 2023 at 14:42 PM UTC
Description

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 ()

Comments