This is a read-only mirror of pymolwiki.org
Difference between revisions of "Copy"
Jump to navigation
Jump to search
m (14 revisions) |
|||
(10 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | '''copy''' creates a new object that is an identical copy of an existing object | |
− | + | ||
− | |||
− | |||
− | |||
===USAGE=== | ===USAGE=== | ||
<source lang="python"> | <source lang="python"> | ||
− | + | copy target, source | |
− | + | </source> | |
− | + | ||
− | |||
===PYMOL API=== | ===PYMOL API=== | ||
<source lang="python"> | <source lang="python"> | ||
− | + | cmd.copy(string target,string source) | |
− | </source> | + | </source> |
===SEE ALSO=== | ===SEE ALSO=== | ||
− | + | * [[Create|create]] | |
− | |||
===User Comments/Examples=== | ===User Comments/Examples=== | ||
− | [[Category:Commands| | + | <source lang="python"> |
+ | ## 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") | ||
+ | </source> | ||
+ | |||
+ | [[Category:Commands|Copy]] |
Latest revision as of 01:43, 28 March 2014
copy creates a new object that is an identical copy of an existing object
USAGE
copy target, source
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")