hai guys,
i am doing my work in jmol,i am using jmol applet tags with perl programming so while using jmol with in for loop it creats som problem, i don't know how to clear those problems.
<code>
print "<applet name=\"jmol\" code=\"JmolAppl et\" archive=\"../../jmol-10.2.0/JmolApplet.jar\ "
width=\"500\" height=\"500\"> ";
print "<param name=\"load\" value=\"../../jmol-10.2.0/$pdbidsiva;\">" ;
foreach(@value)
{
print "<param name=\"script\" value=\"spacefi ll off;wireframe off;select $_;select not (nucleic or protein or hoh);color white;cpk 0.5;wireframe 0.2;rotate x 180;\">
}
<param name=\"progress bar\" value=\"true\">
<param name=\"bgcolor\ " value=\"black\" >";
print "</applet>";
</code>
while using this code it shows only the last value of that particular for loop value, other wise the value itself not displaying.
pelase can anyone give me suggession about this thing.
by muruga.
Thanks in advance.
i am doing my work in jmol,i am using jmol applet tags with perl programming so while using jmol with in for loop it creats som problem, i don't know how to clear those problems.
<code>
print "<applet name=\"jmol\" code=\"JmolAppl et\" archive=\"../../jmol-10.2.0/JmolApplet.jar\ "
width=\"500\" height=\"500\"> ";
print "<param name=\"load\" value=\"../../jmol-10.2.0/$pdbidsiva;\">" ;
foreach(@value)
{
print "<param name=\"script\" value=\"spacefi ll off;wireframe off;select $_;select not (nucleic or protein or hoh);color white;cpk 0.5;wireframe 0.2;rotate x 180;\">
}
<param name=\"progress bar\" value=\"true\">
<param name=\"bgcolor\ " value=\"black\" >";
print "</applet>";
</code>
while using this code it shows only the last value of that particular for loop value, other wise the value itself not displaying.
pelase can anyone give me suggession about this thing.
by muruga.
Thanks in advance.
Comment