Copy
Appearance
(Redirected from CmdScript copy)
copy creates a new object that is an identical copy of an existing object
USAGE
[edit]copy target, source
PYMOL API
[edit]cmd.copy(string target,string source)
SEE ALSO
[edit]User Comments/Examples
[edit]## will copy the object "trna" into six new objects with a number suffic
s = range(6)
for x in s:
cmd.copy("trna%s" %x, "trna")