<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/42166?offset=1130</link>
	<atom:link href="https://bioinformaticsonline.com/related/42166?offset=1130" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/43605/installing-elgg-on-ubuntu</guid>
	<pubDate>Thu, 25 Nov 2021 01:45:59 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/43605/installing-elgg-on-ubuntu</link>
	<title><![CDATA[Installing ELGG on Ubuntu !]]></title>
	<description><![CDATA[<p>Follow this:</p><h3>Settings file</h3><ul>
<li>
<div>
<div>
<div>Error</div>
<div>
<p>Your web server does not have permission to create the settings.php file in your installation directory. You have two choices:</p>
<p>1. Change the permissions on the elgg-config directory of your Elgg installation</p>
<p>2. Copy the file elgg-config/settings.example.php to elgg-config/settings.php and follow the instructions in it for setting your database parameters.</p>
</div>
</div>
</div>
</li>
</ul><p>&nbsp;</p><p>To resolve this --&nbsp;</p><p>Change the permision&nbsp;</p><p>chmod 777 elgg-config</p><h3>Web server</h3><ul>
<li>
<div>
<div>
<div>Warning</div>
<div>
<p>Your server does not support automatic testing of the rewrite rules and your browser does not support checking via JavaScript. You can continue the installation, but you may experience problems with your site. You can manually test the rewrite rules by clicking this link:&nbsp;test. You will see the word success if the rules are working.</p>
</div>
</div>
</div>
</li>
</ul><p>create a .httaccess</p><p>and provide detail in it</p><p><span style="text-decoration: underline;">Installation of Elgg</span><span></span></p><p>&nbsp;</p><p>(Note: Elgg requires&nbsp;<a href="http://www.cs.oswego.edu/~odendahl/misc/howto/mysql/">installing an instance of MySQL</a>.)</p><p>&nbsp;</p><p><span style="text-decoration: underline;">Steps to make adjustment and disposal of trial installations easier</span>.</p><p>&nbsp;</p><p><span style="text-decoration: underline;">MySQL</span></p><p>At this point, we assume you've set up your&nbsp;<tt>MySQL</tt>&nbsp;database</p><div><ol>
<li>Start your&nbsp;<tt>mysqld</tt>&nbsp;server daemon.<br />(For the sake of this example, we'll assume we're running on port 9999; you shouldn't actually use this port because only one daemon can run on any port number.)</li>
<li>Login to the server as&nbsp;<tt>root</tt>&nbsp;user, using the&nbsp;<tt>mysql</tt>&nbsp;client.</li>
<li>Create a database to store Elgg's tables. We'll call the database&nbsp;<tt>elggalpha</tt>.<br /><tt>mysql&gt; create database elggalpha;</tt></li>
<li>Grant access to a user &mdash; for this example we'll call him/her&nbsp;<tt>elggalphauser</tt>.
<pre>mysql&gt; grant all privileges on elggalpha.* to 'elggalphauser'@'moxie'
    -&gt; identified by 'secretpassword';
</pre>
</li>
</ol></div><p>&nbsp;</p><p><span style="text-decoration: underline;">Elgg</span></p><p>&nbsp;</p><div><ol>
<li>Type&nbsp;<tt>umask 022</tt></li>
<li>Change into your&nbsp;<tt>public_html</tt>&nbsp;directory (<em>aka</em>&nbsp;folder).<br /><tt>cd public_html</tt></li>
<li>make a directory called&nbsp;<tt>elgg</tt><br /><tt>mkdir elgg</tt></li>
<li>Change into the&nbsp;<tt>elgg</tt>&nbsp;subdirectory of&nbsp;<tt>public_html</tt>.<br /><tt>cd elgg</tt></li>
<li>download elgg into this directory</li>
<li>you'll end up with a file named<br /><tt>/home/<em>your-user-id</em>/public_html/elgg/elgg-X.X.X.X.zip</tt><br />(It's not literally&nbsp;<tt>X.X.X.X</tt>, it might be&nbsp;<tt>elgg-1.8.0.1.zip</tt>, for example.)</li>
<li>unzip elgg<br /><tt>unzip -q elgg-1.8.0.1.zip</tt></li>
<li>you'll end up with a directory (folder) named<br /><tt>/home/<em>your-user-id</em>/public_html/elgg/elgg-X.X.X.X</tt></li>
<li>make a symbolic link (<em>aka</em>&nbsp;shortcut) to this<br /><tt>ln -s elgg-X.X.X.X alpha</tt><br />(For example,&nbsp;<tt>ln -s elgg-1.8.0.1 alpha</tt>)</li>
<li>Give user&nbsp;<tt>nobody</tt>&nbsp;access to this directory<br /><tt>/usr/misc/bin/acl.sh -r -u nobody elgg-1.8.0.1</tt></li>
<li>create a data directory for&nbsp;<tt>elgg</tt>&nbsp;(get into your home directory first):
<pre>cd
mkdir -p elgg/alpha/data
chmod -R 755 elgg/alpha/data
</pre>
</li>
<li>Change into the&nbsp;<tt>elgg/alpha</tt>&nbsp;directory.<br /><tt>cd elgg/alpha</tt></li>
<li>Give user&nbsp;<tt>nobody</tt>&nbsp;access to this subdirectory&nbsp;<tt>data</tt><br /><tt>/usr/misc/bin/acl.sh -u nobody data</tt></li>
<li>In your browser, navigate to your elgg installation<br /><tt>http://moxie.cs.oswego.edu/~<em>your-user-id</em>/elgg/alpha/</tt><br />You'll have a screen which includes this message:
<pre>Welcome

Installing Elgg has 6 simple steps and reading this welcome is the first one!

If you haven't already, read through the installation instructions included with Elgg (or click the instructions link at the bottom of the page).

If you are ready to proceed, click the Next button.
</pre>
</li>
<li>Follow configuration process:
<ul>
<li>The first screen probably will contain a success message in green and a failure message in pink:
<pre><span>Requirements check</span>

Your server failed the requirements check. After you have fixed the below issues, refresh this
page. Check the troubleshooting links at the bottom of this page if you need further assistance.
<span>PHP</span></pre>
<div>Your server's PHP satisfies all of Elgg's requirements.</div>
<pre>
<span>Web server</span></pre>
<div>We think your server is running the Apache web server. The rewrite test failed and the most likely cause is that AllowOverride is not set to All for Elgg's directory. This prevents Apache from processing the .htaccess file which contains the rewrite rules. A less likely cause is Apache is configured with an alias for your Elgg directory and you need to set the RewriteBase in your .htaccess. There are further instructions in the .htaccess file in your Elgg directory.</div>
<pre>
<span>Database</span></pre>
<div>The database requirements are checked when Elgg loads its database.</div>
</li>
<li>To correct this, replace the&nbsp;<tt>.htaccess</tt>&nbsp;file that Elgg created with one that you can edit:
<pre>cp -ip .htaccess temp-htaccess
rm .htaccess
mv temp-htaccess .htaccess
</pre>
</li>
<li>Edit the&nbsp;<tt>.htaccess</tt>&nbsp;file: Go to approximately line 101 (where it says&nbsp;<tt>#RewriteBase /</tt>) and add the line:<br /><tt>RewriteBase /~<em>your-user-id</em>/elgg/alpha/</tt></li>
<li>Be sure to save the edited file.
<p>&nbsp;</p>
<p>&nbsp;</p>
</li>
<li>Click the&nbsp;<span>Refresh</span>&nbsp;button.
<p>&nbsp;</p>
<p>&nbsp;</p>
</li>
<li>If this hasn't fixed things, seek professional help.
<p>&nbsp;</p>
<p>&nbsp;</p>
</li>
<li>Click the&nbsp;<span>Next</span>&nbsp;button.
<p>&nbsp;</p>
<p>&nbsp;</p>
</li>
<li>Fill in the parameters appropriate to your MySQL installation.
<pre><span>Database installation</span>

If you haven't already created a database for Elgg, do that now. Then fill in the values below to
initialize the Elgg database.

<span>Database Username</span></pre>
<div>elggalphauser</div>
<pre>User that has full priviledges to the MySQL database that you created for Elgg

<span>Database Password</span></pre>
<div>secretpassword</div>
<pre>Password for the above database user account

<span>Database Name</span></pre>
<div>elggalpha</div>
<pre>Name of the Elgg database

<span>Database Host</span></pre><sup>&Dagger;</sup>
<div>moxie:9999</div>
<pre>Hostname of the MySQL server (usually localhost)
<strong>&Dagger;You might need to use <tt>127.0.0.1:9999</tt> for the host
    if you haven't set up MySQL as we've done.</strong>



<span>Database Table Prefix</span></pre>
<div>elgg_</div>
<pre>The prefix given to all of Elgg's tables (usually elgg_)
</pre>
<div><span>Next</span></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</li>
<li>Continue filling in forms as requested.
<pre>Configure site</pre>
<div>Database has been installed.</div>
<pre>
We need some information about the site as we configure Elgg. If you haven't created a data directory for Elgg, you need to do so now.

<span>Site Name</span></pre>
<div>My Elgg Site version Alpha</div>
<pre>The name of your new Elgg site

<span>Site Email Address</span></pre>
<div><em>your-user-id</em>@oswego.edu</div>
<pre>Email address used by Elgg for communication with users

<span>Site URL</span></pre>
<div>http://moxie.cs.oswego.edu/~<em>your-user-id</em>/elgg/alpha/</div>
<pre>The address of the site (Elgg usually guesses this correctly)

<span>Elgg Install Directory</span></pre>
<div>/home/<em>your-user-id</em>/public_html/elgg/elgg.1.8.0.1/</div>
<pre>The directory where you put the Elgg code (Elgg usually guesses this correctly)

<span>Data Directory</span></pre>
<div>/home/<em>your-user-id</em>/elgg/alpha/data</div>
<pre>The directory that you created for Elgg to save files (the permissions on this directory are checked
when you click Next)

<span>Default Site Access</span></pre>
<div>Public</div>
<pre>The default access level for new user created content
</pre>
</li>
<li>
<pre><span>Create admin account</span></pre>
<div>Site settings have been saved.</div>
<pre>
It is now time to create an administrator's account.

<span>Display Name</span></pre>
<div>&nbsp;</div>
<pre>The name that is displayed on the site for this account

<span>Email Address</span></pre>
<div>&nbsp;</div>
<pre>
<span>Username</span></pre>
<div>&nbsp;</div>
<pre>Account username used for logging in

<span>Password</span></pre>
<div>&nbsp;</div>
<pre>Account password must be at least 6 characters long

<span>Password Again</span></pre>
<div>&nbsp;</div>
<pre>Retype password to confirm</pre>
</li>
</ul>
</li>
</ol></div>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/20362/20th-international-bioinformatics-workshop-on-virus-evolution-and-molecular-epidemiology-veme</guid>
  <pubDate>Mon, 12 Jan 2015 01:39:45 -0600</pubDate>
  <link></link>
  <title><![CDATA[20th International BioInformatics Workshop on Virus Evolution and Molecular Epidemiology (VEME)]]></title>
  <description><![CDATA[
<p>20th International BioInformatics Workshop on Virus Evolution and Molecular Epidemiology (VEME)<br />9 - 14 August 2015 St. Augustine, Trinidad and Tobago </p>

<p>Organiser: Christine Carrington (University of the West Indies - UWI, St. Augustine, Trinidad and Tobago)<br />Co-organisers: Anne-Mieke Vandamme, Philippe Lemey (Katholieke Universiteit Leuven, Belgium), Marco Salemi, Mattia Prosperi (University of Florida, Gainesville, USA) and Karen E. Nelson (J. Craig Venter Institute, Rockville, USA)</p>

<p>Requests for information directly to:<br />Christine Carrington<br />Department of Preclinical Sciences<br />Faculty of Medical Sciences<br />University of the West Indies (UWI)<br />St. Augustine<br />Trinidad and Tobago<br />Telephone: +1-868-6452640 ext. 5009, +1-868-6848803<br />Fax: +1-868-6621873<br />E-mail: veme2015@sta.uwi.edu</p>

<p>Deadline for receipt of applications by local organiser: 15 March 2015<br />CALL FOR APPLICATIONS NOW OPEN<br />http://www.icgeb.org/course-application-trinidad-and-tobago-2015.html</p>

<p>http://rega.kuleuven.be/cev/veme-workshop/2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/20437/wuxi-has-acquired-nextcode-health</guid>
	<pubDate>Mon, 19 Jan 2015 08:17:35 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/20437/wuxi-has-acquired-nextcode-health</link>
	<title><![CDATA[WuXi has acquired NextCODE Health]]></title>
	<description><![CDATA[<p>Shanghai, China-headquartered pharmatech company WuXi (NYSE: WX) has acquired NextCODE Health, a genomic analysis and bioinformatics company based in the USA.<br /><br />The acquisition was made for $65 million in cash, and WuXi plans to merge its genome center with NextCODE Health to form a new company, WuXi NextCODE Genomics. The business will be headquartered in Shanghai and have operations in Cambridge, Massachusetts, and Reykjavik, Iceland.<br /><br />With the huge unmet medical needs in diseases with a genetic component and the rapid advances in genomics and bioinformatics, now is the right time for WuXi to make a strategic investment in this field, and NextCODE is the right partner. This new venture of WuXi NextCODE Genomics will create important new genomic and bioinformatic products and services to help make personalized treatment and medicine a reality.&nbsp; It will also enable doctors to provide better treatments to patients.<br /><br /></p>]]></description>
	<dc:creator>Pranjali Yadav</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21200/ra-bioinformatics-at-ciba</guid>
  <pubDate>Fri, 13 Feb 2015 11:23:18 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at CIBA]]></title>
  <description><![CDATA[
<p>Recruitment The following posts are to be filled purely on temporary basis under CIBA Component of “Centre for Agricultural Bioinformatics (CABin)” project at this Institute.</p>

<p>Posts Research Associate</p>

<p>Date &amp; Time of Interview 18th Feb 2015 at 10.00 a.m.</p>

<p>Project Name “Centre for Agricultural Bioinformatics (CABin)”</p>

<p>Duration 12th Plan (2012-2017) / co-terminus with the project 12th Plan (2012-2017) / co-terminus with the project</p>

<p>Essential Qualification Ph.d / M.Sc./ M.Phil (Bioinformatics) With 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience in the relevant subject.</p>

<p>Technician</p>

<p>B.Tech. or Master degree in computer science/Computer Engineering /MCA or equivalent. Desirable qualification: Experience in Java/ C++/ PHP/ PERL/ Python etc. based application development using Linux, Apache and MySQL/Oracle.</p>

<p>Emoluments Rs.24000/- p.m. + 30% HRA for Ph.D holders / Rs.23000/- p.m. + 30% HRA for Master Degree holders A consolidated pay Rs.25000/- per month.</p>

<p>Age Limit Maximum 40 years for men and 45 years for women as on date of interview.</p>

<p>Age limits are relaxable for SC / ST / OBC candidates as per rules.</p>

<p>Maximum 40 years for men and 45 years for women as on date of interview.</p>

<p>Age limits are relaxable for SC / ST / OBC candidates as per rules.</p>

<p>Eligible Candidates may send their Curriculum Vitae along with the contact numbers to ashok@ciba.res.in on or before 13-02-2015.</p>

<p>Candidates selected after initial screening will be called for interview.</p>

<p>Advertisement: www.ciba.res.in/attachments/jobs/CABin-3006.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/20677/postdoctoral-researcher-at-department-of-biotechnology-catholic-university-of-daegu-kyungsan-kyungbuk-south-korea</guid>
  <pubDate>Thu, 29 Jan 2015 12:11:16 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Researcher at Department of Biotechnology, Catholic University of Daegu, Kyungsan, Kyungbuk, South Korea.]]></title>
  <description><![CDATA[
<p>Applications are invited from Indian nationals for a Post Doctoral position at Molecular Medical Laboratory, Department of Biotechnology, Catholic University of Daegu, Kyungsan, Kyungbuk, South Korea.</p>

<p>Qualification required: PhD in Life Sciences/ Molecular Biology/ Bioinformatics or related discipline.</p>

<p>Desirable Qualification:</p>

<p>1. Candidates having experience in molecular biology techniques and must be well versed with bioinformatics tool or expert in relevant fields will be preferred.<br />2. The candidate should have good communication skill, knowledge about designing experiments and analyzing data.<br />3. Sense of initiative, autonomy, organization and thoroughness, good relation qualities.<br />Remuneration: 2000USD per month.</p>

<p>Last date of submitting the complete applications furnishing Bio-data is 10th February, 2015.</p>

<p>Interested candidates should send their resume including all personal as well as academic details to the principal investigator Prof Seung-Won Park (email:microsw@cu.ac.kr)</p>

<p>The shortlisted candidates will be intimated within February 2015.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22438/research-associate-nbfgr-lucknow-uttar-pradesh</guid>
  <pubDate>Thu, 28 May 2015 19:37:22 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate NBFGR - Lucknow, Uttar Pradesh]]></title>
  <description><![CDATA[
<p>NBFGR, Lucknow is recruiting Bioinformatics experts for the post of Research Associate</p>

<p>Name of Position : Research Associate<br />No of Post : One<br />Desired candidate Profile : Candidate should be PhD in Bioinformatics or equivalent or Post-Graduation Bioinformatics with 1st division or 60% marks. Preference will be given to candidates having experience in server management<br />Remuneration : Rs 24000/- pm + HRA for PhD holders<br />Age requirement- 40 years (5 years relaxation for SC/ST/women candidates and 3 years for OBC candidates) as on date of interview.</p>

<p>How to apply- Interested candidates can walk -in-interview on 30.05.2015 at 10:00 hrs at National Bureau of Fish Genetic Resources, Lucknow.</p>

<p>Ref- http://www.nbfgr.res.in/PDF/News%20&amp;%20Events/Walk%20in%20interview%20on%2030.05.2015.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21021/ra-bioinformatics-at-iiser</guid>
  <pubDate>Fri, 06 Feb 2015 04:05:49 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at IISER]]></title>
  <description><![CDATA[
<p>Advertisement: Research Position in Computational Biology in the group of Shree P. Pandey Positions available in the area of NGS data analysis, bioinformatics, plant genomics Project Description: Projects involves high throughput analysis of data mostly generated by massively parallel sequencing (RNA-Seq and small-RNA-Seq), microarrays and related platforms.</p>

<p>We are looking for highly motivated and bright individuals interested in high-throughput cutting-edge data analyses methods in genomics (computational positions). Available positions:</p>

<p>Applications are invited from suitable candidates in both, the Max Planck India Partner Program and the CRP Wheat Program for openings at the levels:</p>

<p>Minimum qualification Salary scale (per month)</p>

<p>Project assistant Bachelor’s / Master’s Rs. 10000 / Rs. 14000</p>

<p>Project fellow (junior data analyst) Masters + research experience Rs. 16000</p>

<p>Research fellow (senior data analyst) Masters + adequate research experience/desirable skill sets Rs. 22000</p>

<p>Research Associated PhD (&lt;1yr) / &gt; 1 yr experience Rs. 28000 / Rs. 32000</p>

<p>Condition to satisfactory performance, availability of funds and requirements of the project, the positions could be available upto a period of ~2 years (or funding of the project).</p>

<p>Essential qualification: MSc/BTech/MTech/PhD (or other suitable qualification) in discipline related to bioinformatics, computational biology, computer application (or equivalent)/ ‘Advance PostGraduate Diploma in Bioinformatics’. Proficiency in one of the programming languages or statistics (proficient in R for example) is compulsory.</p>

<p>Desirable qualification:</p>

<p>1. Programming experiences in at least one low level language such as C/C++ and one scripting language such as Perl/Python/PHP and knowledge of SQL/MySQL.</p>

<p>2. Substantial experience in the linux or other unix environments.</p>

<p>Application process: Applications should contain CV along with brief description (maximum 1 page) of research conducted (highlighting skills and experience) till now. Applications should be sent by email to Shree P. Pandey, Department of Biological Sciences, IISER-Kolkata, Mohanpur Campus, West Bengal within 2 weeks (Feb 19th 2015). E-mail: sppiiserkol@gmail.com, sppandey@iiserkol.ac.in Brief description of the group: We are an interdisciplinary group focusing on small-RNA (miRNA, siRNA) mediated regulation of signaling and defense. Project equally involve bioinformatics and systems biology (specially microarrays and next-generation sequencing (NGS) data analysis and its use), along with plant molecular biology, genetic engineering, field biology, and analytical plant chemistry for understanding response of plants to biotic stresses. For more details visit: http://www.iiserkol.ac.in/~sppandey/</p>

<p>Advertisement:</p>

<p>www.iiserkol.ac.in/images/iiserk/advertisements/advertisement_7_spp_feb_2015.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21065/ra-bioinformatics-at-north-eastern-hill-university</guid>
  <pubDate>Sat, 07 Feb 2015 06:06:05 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at North Eastern Hill University]]></title>
  <description><![CDATA[
<p>Bioinformatics Infrastructure Facility, Department of RDAP, NEHU vacancy of Research Associate</p>

<p>Name of the Post: Research Associate<br />No. of the Post: 01 One<br />Age Limit: Max. 35 years<br />Salary: Rs. 22000/- per month plus HRA</p>

<p>Required Job Profile:<br />Candidate must possess M.Sc. in bioinformatics or biotechnology from recognized university or institute.<br />Desired Job Profile;<br />Candidate having Ph.D. or pursuing Ph.D. in the related subject or equivalent published work in reputed peer reviewed journals or advance PG dipoma in bioinformatics course.</p>

<p>How to apply:<br />Eligible and interested candidates should need to send the bio-data and bring all related documents in original and set of attested copies of the same in the time of interview.</p>

<p>Last date: 16.02.2015<br />Refer to http://www.nehu.ac.in/Advertisements/BIFTuraAdvt_221214.pdf</p>

<p>Summary <br />Employer Address:	Dr.B.K. Mishra Coordinator BIF, RDAP Department, North Eastern Hill University, Tura Campus, Tura, Meghalaya<br />Email:	drbkm1972@yahoo.co.in;birendramishra14@gmail.com<br />URL:	http://www.nehu.ac.in/Advertisements/BIFTuraAdvt_221214.pdf<br />Phone:	03651-223107<br />Required Skills:	not mentioned / required for this post<br />Required Experience:	not mentioned / required for this job post<br />Required Education:	M.Sc. in bioinformatics or biotechnology from recognized university or institute.<br />Job Location:	Tura, Meghalaya, India</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/21241/pacman</guid>
	<pubDate>Mon, 16 Feb 2015 12:15:17 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/21241/pacman</link>
	<title><![CDATA[Pacman]]></title>
	<description><![CDATA[<p><span>The pacman package is an R package management tool that combines the functionality of base library related functions into intuitively named functions. This package is ideally added to .Rprofile to increase workflow by reducing time recalling obscurely named functions, reducing code and integrating functionality of base functions to simultaneously perform multiple actions.<br /><br />Function names in the pacman package follow the format of p_xxx where &lsquo;xxx&rsquo; is the task the function performs. For instance the p_load function allows the user to load one or more packages as a more generic substitute for the library or require functions and if the package isn&rsquo;t available locally it will install it for you.<br /><br /></span></p><p><strong>Installation</strong></p><p><span>To download the development version of pacman:</span></p><p><span>Download the </span><a href="https://github.com/trinker/pacman/zipball/master">zip ball</a><span> or </span><a href="https://github.com/trinker/pacman/tarball/master">tar ball</a><span>, decompress and run </span><code>R CMD INSTALL</code><span> on it, or use th</span><span>e </span><strong>devtools</strong><span> package to install the development version:</span></p><pre title="">## Make sure your current packages are up to date
update.packages()
## devtools is required
devtools::install_github("trinker/pacman")
</pre><p>Note: Windows users need <a href="http://www.murdoch-sutherland.com/Rtools/">Rtools</a> and <a href="http://CRAN.R-project.org/package=devtools">devtools</a> to install this way.</p><p>More at https://github.com/trinker/pacman</p><p>&nbsp;</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21435/ra-walk-in-interview-nbfgr-lucknow</guid>
  <pubDate>Tue, 24 Feb 2015 08:23:48 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA WALK-IN-INTERVIEW @ NBFGR, Lucknow]]></title>
  <description><![CDATA[
<p>F.No. 1(122)/2015-Admn. (CABin Project)<br />Research Associate/Young Professional/SRF Zoology job vacancies in National Bureau of Fish Genetic Resources (NBFGR)<br />Post Name: Research Associate (Computer Science/ Applications)                <br />Qualification: Ph.D. In Computer Science/Computer Applications or equivalent. Or Post-Graduation in Computer Science/ Computer Applications with 1st Division or 60% marks or equivalent overall grade point average with at least two years of research experience. Desirable: 1. Expertise and experience of working/ handling High Performance Computing (H PC) and genomic resource data. 2. Expertise on database management, data mining technologies/ softwares/tools. 3. Published Research papers	<br />No.of Post: 1<br />Pay Scale: Consolidated Rs.24,000/- p.m. + HRA (as admissible) for Ph.D. holders and consolidated `23,000/- + HRA (as admissible) for Master degree holder.	<br />Age:40 years</p>

<p>Young Professional II (Computer Science/Applications)	<br />Master degree in Computer Science/Computer Applications/B.Tech (Computer Science) or equivalent. <br />Desirable: 1. Knowledge of Statistical and Computational Genomics/ Proteomics/ Bioinformatics/Data mining tools. 2. Experience in handling HPC, programming languages and database management packages.	<br />A consolidated salary of Rs.25,000/- per month.	<br />21 to 45 year</p>

<p>Young Professional II (Biotechnology/ Bioinformatics)	<br />Master degree in Bioinformatics/ Biotechnology/ B. Tech(Biotech) or equivalent. Desirable: 1. Knowledge of Computational Genomics/Proteomics/Bioinformatics. 2. Expertise in NGS data analysis and knowledge of allied software and tools.	<br />A consolidated salary of Rs.25,000/- per month.	</p>

<p>Senior Research Fellow	<br />1. Bachelors degree with Zoology, Fisheries and 2. Master's degree in Fishery science/ Zoology with Fisheries/ Biotechnology/ Life Sciences with specialization in Fisheries/ Molecular Biology. 3. 1 st Division or 60% marks or equivalent overall grade point average. <br />Desirable: Work experience in Fisheries, molecular research techniques, bioinformatics and Computer skills. NET qualified <br />Note: The project involves extensive exploration tours and sampling from water bodies all over India	<br />Rs.16,000/- p.m. for 1st &amp; 2nd year and `18,000/- p.m. for 3rd and subsequent years +HRA (as per rules)	35 years for male and 40 years for female candidate</p>

<p>How to apply</p>

<p>A walk-in-interview will be held on 04th March, 2015 at 10:00 hrs at National Bureau of Fish Genetic Resources, Lucknow. Eligible and desirous candidates fulfilling all the requirements may appear for the interview with duly filled in application giving full details of academic records and experience(s) along with attested photocopy as well as original copy of the relevant documents and a passport size photograph on the attached proforma.</p>

<p>http://www.nbfgr.res.in/</p>
]]></description>
</item>

</channel>
</rss>