<?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/30214?offset=1380</link>
	<atom:link href="https://bioinformaticsonline.com/related/30214?offset=1380" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22388/perl-one-liner-basics</guid>
	<pubDate>Sun, 24 May 2015 09:28:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22388/perl-one-liner-basics</link>
	<title><![CDATA[Perl One liner basics !!]]></title>
	<description><![CDATA[<p>Perl has a ton of command line switches (see perldoc perlrun), but I'm just going to cover the ones you'll commonly need to debug code. The most important switch is -e, for execute (or maybe "engage" :) ). The -e switch takes a quoted string of Perl code and executes it. For example:<br /><br />$ perl -e 'print "Hello, World!\n"'<br />Hello, World!<br /><br />It's important that you use single-quotes to quote the code for -e. This usually means you can't use single-quotes within the one liner code. If you're using Windows cmd.exe or PowerShell, you must use double-quotes instead.<br /><br />I'm always forgetting what Perl's predefined special variables do, and often test them at the command line with a one liner to see what they contain. For instance do you remember what $^O is?<br /><br />$ perl -e 'print "$^O\n"'<br />linux<br /><br />It's the operating system name. With that cleared up, let's see what else we can do. If you're using a relatively new Perl (5.10.0 or higher) you can use the -E switch instead of -e. This turns on some of Perl's newer features, like say, which prints a string and appends a newline to it. This saves typing and makes the code cleaner:<br /><br />$ perl -E 'say "$^O"'<br />linux<br /><br />Pretty handy! say is a nifty feature that you'll use again and again.</p>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/22416/rosenberg-lab</guid>
  <pubDate>Wed, 27 May 2015 17:52:24 -0500</pubDate>
  <link></link>
  <title><![CDATA[Rosenberg lab]]></title>
  <description><![CDATA[
<p>Research. Research in the lab focuses on mathematical, statistical, and computational problems in evolutionary biology and human genetics. Long-term interests of the lab include topics such as:</p>

<p>    Human genetic variation<br />    Inference of human evolutionary history from genetic markers<br />    Statistical analysis of population-genetic data<br />    Mathematical models of gene genealogies<br />    Theoretical population genetics<br />    Combinatorics of evolutionary trees<br />    The relationship between gene trees and species trees<br />    The role of human evolutionary genetics in the search for genes that contribute to disease-susceptibility <br />More at https://web.stanford.edu/group/rosenberglab/index.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22437/jrf-bioinformatics-icar-national-research-centre-for-orchids-pakyong</guid>
  <pubDate>Thu, 28 May 2015 19:33:19 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics @ ICAR - National Research Centre for Orchids  Pakyong]]></title>
  <description><![CDATA[
<p>ICAR - National Research Centre for Orchids</p>

<p>Pakyong</p>

<p>F.No:NRCO/Admn/DBT /136 /</p>

<p>Walk-in-Interviews will be held at 737106, Sikkim for the post of 01 (One Project ‘DBT’s Twinning programme for the NE’ titled “Assessment of some fragrant orchids of north-east India for sustainable improvement of community livelihood”, indicated below. The appointment will be on contractual basis and the incumbents shall not have any regular appointment in ICAR.</p>

<p>‘DBT’s Twinning programme for the NE’ titled “Assessment of chemical and genetic divergence of some fragrant orchids of north-east India for sustainable improvement of community livelihood”</p>

<p>Junior Research Fellow (One post)</p>

<p>Essential Qualification : a. MSc (with NET qualification) / M.Tech degree (with or without NET) with minimum 55% marks in Biotechnology/ Bioinformatics/ Molecular Biology or any other related field.</p>

<p>Desirable Qualification: Computer Skills (Linux, Perl, Java, MySQL) with experience in advanced molecular Biology techniques</p>

<p>2nd June 2015</p>

<p>Advertisement: www.nrcorchids.nic.in/Employments/Vacancy%20-%20JRF.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22570/frequent-words-problem-solution-by-perl</guid>
	<pubDate>Tue, 09 Jun 2015 23:38:44 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22570/frequent-words-problem-solution-by-perl</link>
	<title><![CDATA[Frequent words problem solution by Perl]]></title>
	<description><![CDATA[<div><p>Solved with perl <a href="http://rosalind.info/problems/1a/">http://rosalind.info/problems/1a/</a></p><p>#Find the most frequent k-mers in a string.<br />#Given: A DNA string Text and an integer k.<br />#Return: All most frequent k-mers in Text (in any order).<br /><br />use strict;<br />use warnings;<br /><br />my $string="ACGTTGCATGTCGCATGATGCATGAGAGCT";<br />my $kmer=4; <br />my %myHash;<br />my $max=0;<br /><br />for (my $aa=0; $aa&lt;=(length($string)-4); $aa++) {<br />&nbsp;&nbsp; &nbsp;my $myStr=substr&nbsp; $string, $aa,$kmer;<br />&nbsp;&nbsp; &nbsp;#print "$myStr\n";<br />&nbsp;&nbsp; &nbsp;my $km=kmerMatch ($string, $myStr, $kmer);<br />&nbsp;&nbsp; &nbsp;if ($km &gt; $max) { $max = $km;}<br />&nbsp;&nbsp; &nbsp;#print "$km\t$myStr\n";<br />&nbsp;&nbsp; &nbsp;$myHash{$myStr}=$km;<br />&nbsp;&nbsp; &nbsp;<br />}<br /><br />#Print all key which have matching values<br />foreach my $name (keys %myHash){<br />&nbsp;&nbsp;&nbsp; print "$name " if $myHash{$name} == $max;<br />}<br /><br />sub kmerMatch { #Check the exact matching kmers with sliding window<br />my ($string, $myStr, $kmer)=@_;<br />my $count=0;<br />for (my $aa=0; $aa&lt;=(length($string)-4); $aa++) {<br />&nbsp;&nbsp; &nbsp;my $myWin=substr&nbsp; $string, $aa,$kmer;<br />&nbsp;&nbsp; &nbsp;if ($myWin eq $myStr) {<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;#print "$myWin eq $myStr\n";<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$count++;<br />&nbsp;&nbsp; &nbsp;}<br />}<br />return $count;<br />}</p></div>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22580/appointment-of-two-traineeships-and-two-studentships-in-bioinformatics</guid>
  <pubDate>Wed, 10 Jun 2015 10:19:07 -0500</pubDate>
  <link></link>
  <title><![CDATA[Appointment of two traineeships and two studentships in Bioinformatics]]></title>
  <description><![CDATA[
<p>Jawaharlal Nehru<br />TROPICAL BOTANIC GARDEN AND RESEARCH INSTITUTE<br />An organization under the Kerala State Council for Science, Technology and Environment and<br />National Centre of Excellence, Government of India<br /> <br />Applications are invited for the appointment of two traineeships and two studentships in Bioinformatics for a period of six months sponsored by Department of Biotechnology, Government of India in the Bioinformatics Sub-DIC, Saraswathy Thangavelu Centre, JNTBGRI, Puthenthope, Thiruvananthapuram 695 586. The required qualifications and other details are given below.</p>

<p>Monthly fellowship (in rupee): 5,000/-<br />	<br />Traineeship<br />	<br />First Class M.Sc Bioinformatics/ Biotechnology/ Botany<br />	<br />Studentship: 5,000/-<br />	<br />M.Phil/M.Tech Bioinformatics/ Biotechnology/ any branch of Life Science students for doing their thesis work in the area of Bioinformatics.</p>

<p>Age limit as on 1.1.2015, 28 years. Age relaxation will be provided for SC, ST, OBC candidates as per Govt. norms.</p>

<p>Interested candidates may appear for walk-in-interview on 16th June 2015 at 10.30 am at JNTBGRI, Palode, Thiruvananthapuram. The candidate should report to the Office at Palode before 10.00 am</p>

<p>More at http://www.jntbgri.in/jntbgri/news/File0001.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22778/sr-research-fellow-technical-asst-at-indian-institute-of-maize-research-india</guid>
  <pubDate>Wed, 17 Jun 2015 18:47:51 -0500</pubDate>
  <link></link>
  <title><![CDATA[Sr Research Fellow &amp; Technical Asst at Indian Institute of Maize Research - India]]></title>
  <description><![CDATA[
<p>Indian Institute of Maize Research Jobs 2015 –</p>

<p>Sr Research Fellow &amp; Technical Asst Posts: Indian Institute of Maize Research (IIMR), New Delhi has advertised a notification for the recruitment of Senior Research Fellow &amp; Technical Assistant vacancies for the project titled “Genetic modifications to improve biological nitrogen fixation for augmenting nitrogen needs of cereals” on contractual basis. Eligible candidates may apply in prescribed application format on or before 25-06-2015. Other details like age, educational qualification, selection process, how to apply are given below…</p>

<p>Indian Institute of Maize Research Vacancy Details:<br />Total No. of Posts: 03<br />Name of the Posts :<br />1. Senior Research Fellow: 02 Posts<br />2. Technical Assistant: 01 Post</p>

<p>Age Limit: Candidates age should be 35 years for Senior Research Fellow, Minimum 21 years and maximum 45 years for Technical Assistant as on the closing date of the application. Age relaxation is 5 years to SC/ST and women candidates and 3 years to OBC candidates as per ICAR rules.</p>

<p>Educational Qualification: Candidates should possess Post graduate degree in Biotechnology/ Molecular Biology/ Bioinformatics/ Plant physiology for Senior Research fellow, Graduate degree in Agriculture/ Biotechnology/ any discipline of life sciences for Technical Assistant with relevant experience.</p>

<p>Selection Process: Candidates will be selected based on their performance in interview.</p>

<p>How to Apply: Eligible candidates can send their application in prescribed format along with bio-data to Dr. Pranjal Yadava, Principal Investigator, ICAR Indian Institute of Maize Research, Pusa Campus, New Delhi-110012 or mail to pranjal.yadava@gmail.com on or before 25-06-2015 &amp; attend the interview along with application in the attached format at the time of interview, one passport size photograph, self attested copies of certificates for age, and qualifications, reprints of publications and ‘No Objection Certificate’, original documents on 01-07-2015. Venue details are mentioned below.</p>

<p>Important Dates:<br />Last Date for Receipt of Application: 25-06-2015<br />Date &amp; Time of Interview : 01-07-2015.<br />Venue: IIMR, Pusa Campus, New Delhi</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22787/senior-technical-assistant-at-pondicherry-university</guid>
  <pubDate>Wed, 17 Jun 2015 20:46:12 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Technical Assistant at Pondicherry University]]></title>
  <description><![CDATA[
<p>Senior Technical Assistant</p>

<p>Eligibility : BE/B.Tech(CSE, ECE, IT)</p>

<p>Location : Pondicherry</p>

<p>Last Date : 26 Jun 2015</p>

<p>Hiring Process : Face to Face Interview<br />Pondicherry University - Job DetailsDate of posting:19 May 15</p>

<p>Senior Technical Assistant Job position in Pondicherry University on temporary basis  </p>

<p>Project Title : "Bioinformatics National Certification (BINC) for certifying quality human resource in Bioinformatics"</p>

<p>Qualification : i) B.E/ B.Tech Computer Science/ Electronics &amp; Communication Engineering/ Information Technology with 55% or equivalent marks. ii) One year Experience in relevant field in Government/ Public Sector or reputed Private Organizations. Desirable : Working experience in JSP and ASP/PHP</p>

<p>No. of Post : 01</p>

<p>Department : Biotechnology</p>

<p>Pay : Rs. 27,800/- </p>

<p>Age Limit : 30 Yrs<br />How to apply</p>

<p>Both above-mentioned posts are purely on temporary basis, extended by one year based on performance and will be terminated with the completion of BINC Program at Pondicherry University. Interested Candidates may send their application in the prescribed format with self-attested copies of all mark sheets and certificates to Dr. Basant K. Tiwary, Coordinator (BINC), Centre for Bioinformatics, Pondicherry University, Puducherry-605 014 before June 26, 2015.</p>

<p>Click Here http://www.pondiuni.edu.in/news/requirement-post-one-senior-technical-assistant-one-computer-assistant-–-dept-biotechnologygove</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/poll/view/22920/how-long-have-you-been-a-bioinformatics-scientist-for</guid>
	<pubDate>Tue, 23 Jun 2015 10:55:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/22920/how-long-have-you-been-a-bioinformatics-scientist-for</link>
	<title><![CDATA[How long have you been a bioinformatics scientist for?]]></title>
	<description><![CDATA[<p>Most of the researcher have been a scientist whole life, but infact they actually started paying&nbsp; it with at certain time.So, how long have you been in bioinformatics domain now?</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22966/ra-bioinformatics-at-icged</guid>
  <pubDate>Sun, 28 Jun 2015 12:24:01 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at ICGED]]></title>
  <description><![CDATA[
<p>Research Associate Position at ICGEB, New Delhi with Dr. Amit Sharma</p>

<p>Starting 15th July 2015, the position relates to a project specifically for in silico drug docking, screening, design, optimisation and linkage with active chemists. </p>

<p>Experience in many docking softwares and operating systems is essential. </p>

<p>Additional experience in bioinformatics and computational biology tools will be useful. </p>

<p>Submit curriculum vitae to: sb.icgeb@gmail.com</p>

<p>Closing date: 5 July 2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/23160/opencpu</guid>
	<pubDate>Sun, 05 Jul 2015 18:34:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/23160/opencpu</link>
	<title><![CDATA[OpenCPU]]></title>
	<description><![CDATA[<p>OpenCPU is a system for embedded scientific computing and reproducible research. The OpenCPU server provides a reliable and interoperable <a href="https://www.opencpu.org/api.html">HTTP API</a> for data analysis based on R.</p><p>The OpenCPU <a href="https://www.opencpu.org/jslib.html">JavaScript client library</a> provides the most seamless integration of R and JavaScript available today.</p><p>OpenCPU uses standard R packaging to develop, ship and deploy web applications. Several open source <a href="https://www.opencpu.org/apps.html">example apps</a> are available from Github.</p><p>Installing your own OpenCPU server is <a href="https://www.opencpu.org/download.html">super easy</a> and only takes a few minutes.</p><p>More at https://www.opencpu.org/</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

</channel>
</rss>