<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6064395416762093817</id><updated>2011-07-08T07:20:00.187+07:00</updated><title type='text'>Journal on Bachelor Degree</title><subtitle type='html'>it's all about research journal on docking and virtual screening using DOVIS 2.0 for completing my undergraduate study</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-8759530293638638322</id><published>2010-01-25T14:52:00.002+07:00</published><updated>2010-01-25T14:56:31.030+07:00</updated><title type='text'>One Problem Solved, Come Another Problem</title><content type='html'>&lt;b&gt;This is some solution comes from DOVIS Developer&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Hi Muhammad,&lt;br /&gt;&lt;br /&gt;It took a while but here are some suggestions.&lt;br /&gt;The changes in the dovis_dock.cpp and perl scripts are not working because you are using the options for “lockfile” instead of those for “lockfile-create”.&lt;br /&gt;check:&lt;br /&gt;http://www.tin.org/bin/man.cgi?section=1&amp;topic=lockfile-create&lt;br /&gt;and&lt;br /&gt;http://linux.about.com/library/cmd/blcmdl1_lockfile.htm&lt;br /&gt;&lt;br /&gt;I have added below some suggestions on how to alter the code but they may not be 100% correct and you may need to include additional changes.  I cannot test here because I don’t have a machine with the Debian Sarge OS.&lt;br /&gt;&lt;br /&gt;Daniel&lt;br /&gt;&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;insert this line into dovis_dock.h&lt;br /&gt;after line 47, inside the  definition of  DOVIS_DATA_TYPE)&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;std::string lock_command2;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;In dovis_dock.cpp file:&lt;br /&gt;Replace these three lines  (lines 287-289):&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss.str("");&lt;br /&gt;command_oss &lt;&lt; "lockfile -" &lt;&lt; dovis_data.lock_sleep_time;command_oss &lt;&lt; " -r " &lt;&lt; dovis_data.lock_retries &lt;&lt; " ";&lt;i&gt;&lt;b&gt;with&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss.str("");&lt;br /&gt;command_oss &lt;&lt; "lockfile-touch “dovis_data.lock_command2 = command_oss.str();command_oss.str("");command_oss &lt;&lt; "lockfile-create –retry “ &lt;&lt; dovis_data.lock_retries &lt;&lt; " ";-------&lt;i&gt;&lt;b&gt;Also, after line 475 of dovis_dock.cpp, which reads:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss &lt;&lt; dovis_data.lock_command &lt;&lt; dovis_data.job_control_lock_1;&lt;i&gt;&lt;b&gt;add:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss &lt;&lt; dovis_data.lock_command2 &lt;&lt; dovis_data.job_control_lock_1 &lt;&lt; " &amp; ";-----&lt;i&gt;&lt;b&gt;after lines 1488 and 1682 of dovis_dock.cpp, which read:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss &lt;&lt; dovis_data.lock_command &lt;&lt; dovis_data.job_control_lock_2;&lt;i&gt;&lt;b&gt;add:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;command_oss &lt;&lt; dovis_data.lock_command2 &lt;&lt; dovis_data.job_control_lock_2 &lt;&lt; " &amp; ";&lt;i&gt;&lt;b&gt;In the perl script you should include something like:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;my $lockfile_command = "lockfile-create  --retry " . $dovis_opt{LOCK_RETRIES};&lt;br /&gt;my $lockfile_command2 = "lockfile-touch ”;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;Then, after these lines:&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;#############################&lt;br /&gt;&lt;br /&gt;# get lock to log cpu count&lt;br /&gt;&lt;br /&gt;#############################&lt;br /&gt;if (system "$lockfile_command $lockfile")&lt;br /&gt;{&lt;br /&gt;print "Can not get init lock!\n";&lt;br /&gt;exit;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;Add these ones&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;if (system "$lockfile_command2 $lockfile   &amp; ")&lt;br /&gt;{&lt;br /&gt;print "Cannot lock_touch file!\n";&lt;br /&gt;exit;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;And the result is&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;a href="http://img42.imageshack.us/i/energygriderror1.jpg/" target="_blank"&gt;&lt;img src="http://img42.imageshack.us/img42/2323/energygriderror1.jpg" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Well, I still have to work hard then . . . . .&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-8759530293638638322?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/8759530293638638322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2010/01/one-problem-solved-come-another-problem.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8759530293638638322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8759530293638638322'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2010/01/one-problem-solved-come-another-problem.html' title='One Problem Solved, Come Another Problem'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-3493813930955989975</id><published>2010-01-15T10:43:00.000+07:00</published><updated>2010-01-15T10:43:00.776+07:00</updated><title type='text'>Horray, I've got the solution</title><content type='html'>Horray, I've got the solution for the previous problem.&lt;br /&gt;&lt;br /&gt;Mr Daniel Ripoll personally sent it yesterday.&lt;br /&gt;&lt;br /&gt;It seems I could work with it next tuesday.&lt;br /&gt;&lt;br /&gt;Tommorow till monday, I've backpacking trip to Ujung Genteng, Sukabumi.&lt;br /&gt;&lt;br /&gt;Have a nice weekend&lt;br /&gt;&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-3493813930955989975?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/3493813930955989975/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2010/01/horray-ive-got-solution.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/3493813930955989975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/3493813930955989975'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2010/01/horray-ive-got-solution.html' title='Horray, I&apos;ve got the solution'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-3214540959617061906</id><published>2010-01-06T11:20:00.005+07:00</published><updated>2010-01-25T11:37:22.487+07:00</updated><title type='text'>Problems Today</title><content type='html'>Dear DOVIS developer&lt;br /&gt;&lt;br /&gt;I got trouble when trying to install DOVIS&lt;br /&gt;&lt;br /&gt;First, I checked the lockfile command on my OS (Debian Sarge)&lt;br /&gt;&lt;a href="http://img11.imageshack.us/i/lockfileondebian.png/" target="_blank"&gt;&lt;img src="http://img11.imageshack.us/img11/8867/lockfileondebian.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Yeah, the lockfile is on my OS with different form (lockfile-create)&lt;br /&gt;So, I changed the dovis_dock.cpp source code from original installer (openbabel)&lt;br /&gt;&lt;br /&gt;Before&lt;br /&gt;&lt;a href="http://img695.imageshack.us/i/lockfilecodeondovisdockz.png/" target="_blank"&gt;&lt;img src="http://img695.imageshack.us/img695/2620/lockfilecodeondovisdockz.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;After&lt;br /&gt;&lt;a href="http://img137.imageshack.us/i/newlockfilecodeondovisd.png/" target="_blank"&gt;&lt;img src="http://img137.imageshack.us/img137/4185/newlockfilecodeondovisd.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I install DOVIS in the usual way&lt;br /&gt;Then I changed the dovis_dock_driver.pl source code from script folder&lt;br /&gt;&lt;br /&gt;Before&lt;br /&gt;&lt;a href="http://img39.imageshack.us/i/lockfilecommandonscript.png/" target="_blank"&gt;&lt;img src="http://img39.imageshack.us/img39/4738/lockfilecommandonscript.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After&lt;br /&gt;&lt;a href="http://img707.imageshack.us/i/newlockfilecommandonscr.png/" target="_blank"&gt;&lt;img src="http://img707.imageshack.us/img707/7405/newlockfilecommandonscr.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But, still there's some mistake on my process&lt;br /&gt;The result is&lt;br /&gt;&lt;a href="http://img695.imageshack.us/i/resultm.png/" target="_blank"&gt;&lt;img src="http://img695.imageshack.us/img695/3521/resultm.png" width="430" height="336" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Actually, I'm newbie on using DOVIS and Debian&lt;br /&gt;I hope I can get some assistance on installation and running some test&lt;br /&gt;&lt;br /&gt;Thank You&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Muhammad H Hilman&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-3214540959617061906?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/3214540959617061906/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2010/01/problems-today.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/3214540959617061906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/3214540959617061906'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2010/01/problems-today.html' title='Problems Today'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-8545944194659564087</id><published>2010-01-04T08:49:00.005+07:00</published><updated>2010-01-06T11:47:11.472+07:00</updated><title type='text'>Can not access hastinapura !!!</title><content type='html'>Today, on my first 2010 day&lt;br /&gt;When I already in front of my computer&lt;br /&gt;Doing DOVIS work on hastinapura&lt;br /&gt;&lt;br /&gt;I CAN'T ACCESS THE SERVER&lt;br /&gt;&lt;br /&gt;updated:&lt;br /&gt;It's my wrong, I forgot my username and password&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-8545944194659564087?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/8545944194659564087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2010/01/can-not-access-hastinapura.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8545944194659564087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8545944194659564087'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2010/01/can-not-access-hastinapura.html' title='Can not access hastinapura !!!'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-7380230638639613833</id><published>2009-12-31T09:36:00.003+07:00</published><updated>2010-01-06T11:47:25.634+07:00</updated><title type='text'>Research Plan</title><content type='html'>Unless he is fool than everybody need a plan&lt;br /&gt;This is my plan for the research&lt;br /&gt;&lt;br /&gt;Two weeks on January (1-15 January 2010)&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Completing installation DOVIS 2.0 on hastinapura server&lt;/li&gt;&lt;li&gt;Doing run testing using dummy data on DOVIS 2.0&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Next plan will be updated after I met my research advisor =)&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-7380230638639613833?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/7380230638639613833/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2009/12/research-plan.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/7380230638639613833'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/7380230638639613833'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2009/12/research-plan.html' title='Research Plan'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6064395416762093817.post-8021575121105627010</id><published>2009-12-31T09:23:00.002+07:00</published><updated>2010-01-06T11:47:38.003+07:00</updated><title type='text'>The Blog is Revived</title><content type='html'>In the last period of my study, I choose to revive once again this blog&lt;br /&gt;Well, actually I need this blog as journal on research for completing my study&lt;br /&gt;And I think, I can get some help regarding my work through this media&lt;br /&gt;&lt;br /&gt;Software that I use for this research is kinda rare&lt;br /&gt;Not much biochemical researcher publish their experience on DOVIS 2.0&lt;br /&gt;I hope anybody after me that using DOVIS 2.0 can get some information from the blog&lt;br /&gt;&lt;br /&gt;regards,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Muhammad H Hilman&lt;br /&gt;&lt;br /&gt;&lt;span id="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6064395416762093817-8021575121105627010?l=hilman87.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hilman87.blogspot.com/feeds/8021575121105627010/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hilman87.blogspot.com/2009/12/blog-is-revived.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8021575121105627010'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6064395416762093817/posts/default/8021575121105627010'/><link rel='alternate' type='text/html' href='http://hilman87.blogspot.com/2009/12/blog-is-revived.html' title='The Blog is Revived'/><author><name>hilman</name><uri>http://www.blogger.com/profile/11128182989906683883</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
