Copy
From PyMOLWiki
copy creates a new object that is an identical copy of an existing object
Contents |
USAGE
copy target, source copy target = source # (DEPRECATED)
PYMOL API
cmd.copy(string target,string source)
SEE ALSO
User Comments/Examples
## 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")

