<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Witold</id>
	<title>PyMOL Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.pymol.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Witold"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php/Special:Contributions/Witold"/>
	<updated>2026-04-04T22:05:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10660</id>
		<title>Talk:Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10660"/>
		<updated>2010-03-18T00:09:47Z</updated>

		<summary type="html">&lt;p&gt;Witold: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Greetings programs &lt;br /&gt;
&lt;br /&gt;
I would like to contribute some potentially useful movie scripts I've cobbled together over the years.  Where should I do that?&lt;br /&gt;
--[[User:Witold|-W2]] 18:38, 17 March 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
If they're scripts one can copy/paste, please just make a new page for each and add the category tag for Script_Library.&lt;br /&gt;
&lt;br /&gt;
Yep, they are easy cut/paste jobs.  I'll put them there, thanks. --[[User:Witold|-W2]] 00:09, 18 March 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Mset&amp;diff=12800</id>
		<title>Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Mset&amp;diff=12800"/>
		<updated>2010-03-17T18:52:20Z</updated>

		<summary type="html">&lt;p&gt;Witold: /* EXAMPLES */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''mset''' sets up a relationship between molecular states and movie frames.  This makes it possible to control which states are shown in which frame.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 mset specification [ ,frame ]&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset( string specification [, int frame] )&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1         // simplest case, one state -&amp;gt; one frame&lt;br /&gt;
mset 1 x10     // ten frames, all corresponding to state 1&lt;br /&gt;
mset 1 x30 1 -15 15 x30 15 -1&lt;br /&gt;
// more realistic example:&lt;br /&gt;
// the first thirty frames are state 1&lt;br /&gt;
// the next 15 frames pass through states 1-15&lt;br /&gt;
// the next 30 frames are of state 15&lt;br /&gt;
// the next 15 frames iterate back to state 1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1 x200 -78 -2 -78 -2 -78 x200 79 -156 157 x200 -234 235 x400 &lt;br /&gt;
# mset 1 x200 makes the first state last for 200 frames&lt;br /&gt;
# -78 -2 takes us FROM state 1 to 78, then back to frame 2.  I've repeated this for dramatic effect.&lt;br /&gt;
# Then we pause at 78 for 200 frames, then go from 79-156 and pause at 157 for 200 frames, etc.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset(&amp;quot;1 -%d&amp;quot; % cmd.count_states())&lt;br /&gt;
// this will create a one-to-one mapping of states to movie frames. useful for making movies from trajectory files. &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Cmd mdo]], [[Cmd mplay]], [[Cmd mclear]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Mset]]&lt;br /&gt;
[[Category:States|Mset]]&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Mset&amp;diff=12799</id>
		<title>Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Mset&amp;diff=12799"/>
		<updated>2010-03-17T18:51:20Z</updated>

		<summary type="html">&lt;p&gt;Witold: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''mset''' sets up a relationship between molecular states and movie frames.  This makes it possible to control which states are shown in which frame.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 mset specification [ ,frame ]&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset( string specification [, int frame] )&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1         // simplest case, one state -&amp;gt; one frame&lt;br /&gt;
mset 1 x10     // ten frames, all corresponding to state 1&lt;br /&gt;
mset 1 x30 1 -15 15 x30 15 -1&lt;br /&gt;
// more realistic example:&lt;br /&gt;
// the first thirty frames are state 1&lt;br /&gt;
// the next 15 frames pass through states 1-15&lt;br /&gt;
// the next 30 frames are of state 15&lt;br /&gt;
// the next 15 frames iterate back to state 1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1 x200 -78 -2 -78 -2 -78 x200 79 -156 157 x200 -234 235 x400 &lt;br /&gt;
// mset 1 x200 makes the first state last for 200 frames&lt;br /&gt;
// -78 -2 takes us FROM state 1 to 78, then back to frame 2.  I've repeated this for dramatic effect&lt;br /&gt;
// then we pause at 78 for 200 frames, then go from 79-156 and pause at 157 for 200 frames, etc.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset(&amp;quot;1 -%d&amp;quot; % cmd.count_states())&lt;br /&gt;
// this will create a one-to-one mapping of states to movie frames. useful for making movies from trajectory files. &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Cmd mdo]], [[Cmd mplay]], [[Cmd mclear]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Mset]]&lt;br /&gt;
[[Category:States|Mset]]&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=User:Witold&amp;diff=3232</id>
		<title>User:Witold</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=User:Witold&amp;diff=3232"/>
		<updated>2010-03-17T18:41:50Z</updated>

		<summary type="html">&lt;p&gt;Witold: Created page with 'Witold Witkowski PhD ABD  email me at my first name at gmail.com  Cheers  -W2'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Witold Witkowski PhD ABD&lt;br /&gt;
&lt;br /&gt;
email me at my first name at gmail.com&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;br /&gt;
-W2&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10658</id>
		<title>Talk:Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10658"/>
		<updated>2010-03-17T18:38:16Z</updated>

		<summary type="html">&lt;p&gt;Witold: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Greetings programs &lt;br /&gt;
&lt;br /&gt;
I would like to contribute some potentially useful movie scripts I've cobbled together over the years.  Where should I do that?&lt;br /&gt;
--[[User:Witold|-W2]] 18:38, 17 March 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10657</id>
		<title>Talk:Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Mset&amp;diff=10657"/>
		<updated>2010-03-17T18:37:33Z</updated>

		<summary type="html">&lt;p&gt;Witold: Created page with 'Greetings programs   I would like to contribute some potentially useful movie scripts I've cobbled together over the years.  Where should I do that?'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Greetings programs &lt;br /&gt;
&lt;br /&gt;
I would like to contribute some potentially useful movie scripts I've cobbled together over the years.  Where should I do that?&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Mset&amp;diff=12798</id>
		<title>Mset</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Mset&amp;diff=12798"/>
		<updated>2010-03-17T18:29:29Z</updated>

		<summary type="html">&lt;p&gt;Witold: /* EXAMPLES */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
'''mset''' sets up a relationship between molecular states and movie frames.  This makes it possible to control which states are shown in which frame.&lt;br /&gt;
&lt;br /&gt;
===USAGE===&lt;br /&gt;
 mset specification [ ,frame ]&lt;br /&gt;
&lt;br /&gt;
===PYMOL API===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset( string specification [, int frame] )&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1         // simplest case, one state -&amp;gt; one frame&lt;br /&gt;
mset 1 x10     // ten frames, all corresponding to state 1&lt;br /&gt;
mset 1 x30 1 -15 15 x30 15 -1&lt;br /&gt;
// more realistic example:&lt;br /&gt;
// the first thirty frames are state 1&lt;br /&gt;
// the next 15 frames pass through states 1-15&lt;br /&gt;
// the next 30 frames are of state 15&lt;br /&gt;
// the next 15 frames iterate back to state 1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
mset 1 x200 -78 -2 -78 -2 -78 x200 79 -156 157 x200 -234 235 x400 &lt;br /&gt;
#mset 1 x200 makes the first state last for 200 frames&lt;br /&gt;
# -78 -2 takes us FROM state 1 to 78, then back to frame 2.  I've repeated this for dramatic effect&lt;br /&gt;
# then we pause at 78 for 200 frames, then go from 79-156 and pause at 157 for 200 frames, etc.&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cmd.mset(&amp;quot;1 -%d&amp;quot; % cmd.count_states())&lt;br /&gt;
// this will create a one-to-one mapping of states to movie frames. useful for making movies from trajectory files. &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===SEE ALSO===&lt;br /&gt;
[[Cmd mdo]], [[Cmd mplay]], [[Cmd mclear]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Commands|Mset]]&lt;br /&gt;
[[Category:States|Mset]]&lt;/div&gt;</summary>
		<author><name>Witold</name></author>
	</entry>
</feed>