<?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/19272?offset=220</link>
	<atom:link href="https://bioinformaticsonline.com/related/19272?offset=220" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<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/news/view/22769/ensembl-27</guid>
	<pubDate>Tue, 16 Jun 2015 16:10:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22769/ensembl-27</link>
	<title><![CDATA[Ensembl 27]]></title>
	<description><![CDATA[<h3>What is new?</h3><ul>
<li>Expansion of Protists and Fungi with hundreds of annotated genomes</li>
<li>Variation data for bread wheat, rice, <em>Aedes aegypti</em>, and <em>Ixodes scapularis</em></li>
<li>Whole genome alignments for <em>O. longistaminata</em> and <em>T. cacao</em></li>
<li>Non-coding RNA gene models in <a href="http://bacteria.ensembl.org">Bacteria</a></li>
<li>New assembly of tomato (version 2.50)</li>
<li>Full support for UCSC Track Hub format for hosting your own data in Ensembl</li>
</ul><p>More at http://www.ensembl.info/blog/2015/06/16/ensembl-genomes-release-27-is-out/</p>]]></description>
	<dc:creator>Jit</dc:creator>
</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/researchlabs/view/23209/bisr-jaipur</guid>
  <pubDate>Tue, 07 Jul 2015 23:12:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[BISR Jaipur]]></title>
  <description><![CDATA[
<p>The Bioinformatics Centre at BISR has created an infrastructure for providing facilities to the users working in the field of Biological Sciences. The users of Rajasthan, Jaipur in particular, are using facilities available at the Bioinformatics Centre extensively. The centre has leased line Internet connection as well latest Bioinformatics software for sequence and structure analysis. The centre provides the following services:</p>

<p>    Bioinformatics supports to researchers<br />    Customized training in Bioinformatics for researchers and faculty members<br />    Support in Installing, implementing and maintaining software on computer.<br />    Create awareness for taking preventive measure against data security<br />    Organize workshops on thrust ares of Bioinformatics<br />    Research Training to students of Biotechnology and Bioinformatics </p>

<p>More at http://bioinfo.bisr.res.in/index.php</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/23892/bioinformatics-made-easy-search-bioinformatics-tools-and-run-genomic-analysis-in-the-cloud</guid>
	<pubDate>Thu, 20 Aug 2015 02:21:20 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/23892/bioinformatics-made-easy-search-bioinformatics-tools-and-run-genomic-analysis-in-the-cloud</link>
	<title><![CDATA[Bioinformatics Made Easy Search: Bioinformatics tools and run genomic analysis in the cloud]]></title>
	<description><![CDATA[<p>InsideDNA makes hundreds of bioinformatics tools immediately available to run via an easy-to-use web interface and allows an accurate search across all functions, tools and pipelines.</p>
<p>With InsideDNA, you can upload and store your own genomic/genetic datasets in a limitless cloud space, and instantly analyze it with a powerful compute instance, without any tool installation or set up hassle.</p>
<p>More at https://insidedna.me/</p><p>Address of the bookmark: <a href="https://insidedna.me/" rel="nofollow">https://insidedna.me/</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24984/ra-bioinformatics-at-nii</guid>
  <pubDate>Thu, 22 Oct 2015 01:56:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at NII]]></title>
  <description><![CDATA[
<p>NATIONAL INSTITUTE OF IMMUNOLOGY</p>

<p>NEW DELHI-110067</p>

<p>Applications are invited for the position of Research Associate (RA) for the following time-bound sponsored project as per the details given below:</p>

<p>1. BTIS project entitled, “National Infrastructural Facility in the Area of Immunology” funded by DBT</p>

<p>Research Associate (One Position only)</p>

<p>Dr. Debasisa Mohanty Staff Scientist-VI deb@nii.res.in</p>

<p>Educational Qualifications: Ph.D in Bioinformatics or Biological Sciences or Biotechnology with research experience and publication record in indexed peer reviewed journals in the area of bioinformatics or computational biology.</p>

<p>Emoluments: The selected candidates will draw consolidated emoluments as per Institute Rules, depending upon qualifications &amp; experience Research Associate: Rs. 36,000/- per month plus 30% HRA</p>

<p>Job description &amp; Desired Knowledge: The candidate should be well versed in Programming in PERL/C++, HTML, CGI, web sever and portal development, computational analysis of protein structure &amp; function, molecular dynamics simulations and use of high performance computing systems.</p>

<p>General Terms &amp; Conditions:-</p>

<p>1. The candidates selected for the above posts will be on contract for one year or duration of the project whichever is shorter, at a time.</p>

<p>2. No hostel/ housing facility will be provided.</p>

<p>3. Applicants may clearly mention the category they belong to i.e. SC/ST/OBC/PH and attach documentary proof of the same.</p>

<p>4. No TA/DA will be paid for attending the interview, if called for.</p>

<p>5. Apart from sending application in the prescribed format given below, candidates should send complete Curriculum Vitae along with the names of three referees. Curriculum Vitae should contain details of the experimental expertise and list of publications. 6. Canvassing in any form will be a disqualification.</p>

<p>HOW TO APPLY Interested candidates may apply directly, STRICTLY IN THE PRESCRIBED FORMAT GIVEN BELOW, through e-mail, to the Investigator of the project, clearly indicating the name of the project along with their complete C.V., Email ID, fax numbers, telephone numbers. Only Short listed candidates will be called for interview and they required to submit attested copies of all their certificates and a Demand Draft of Rs 100/- drawn on Canara Bank or Indian Bank payable at Delhi/New Delhi in favour of the Director, NII (SC/ST/PH and Women candidates are exempted from payment of fees) subject to submission of documentary proof), at the time of interview. (E-MAIL APPLICATIONS SHOULD MENTION BTIS-RA 2015 IN THE SUBJECT LINE)</p>

<p>LAST DATE OF RECEIPT OF APPLICATIONS: 29th October, 2015</p>

<p>Advertisement:</p>

<p>www1.nii.res.in/sites/default/files/projectappointments-Dr.Mohanty-29oct2015.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26306/busco</guid>
	<pubDate>Sun, 07 Feb 2016 16:02:39 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26306/busco</link>
	<title><![CDATA[BUSCO]]></title>
	<description><![CDATA[<p>Assessing genome assembly and annotation completeness with Benchmarking Universal Single-Copy Orthologs</p>
<p>More at http://busco.ezlab.org/</p><p>Address of the bookmark: <a href="http://busco.ezlab.org/" rel="nofollow">http://busco.ezlab.org/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26325/crossmap</guid>
	<pubDate>Mon, 08 Feb 2016 15:47:00 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26325/crossmap</link>
	<title><![CDATA[CrossMap]]></title>
	<description><![CDATA[<p>CrossMap is a program for convenient conversion of genome coordinates (or annotation files) between <em>different assemblies</em> (such as Human <a href="http://www.ncbi.nlm.nih.gov/assembly/2928/">hg18 (NCBI36)</a> &lt;&gt; <a href="http://www.ncbi.nlm.nih.gov/assembly/2758/">hg19 (GRCh37)</a>, Mouse <a href="http://www.ncbi.nlm.nih.gov/assembly/165668/">mm9 (MGSCv37)</a> &lt;&gt; <a href="http://www.ncbi.nlm.nih.gov/assembly/327618/">mm10 (GRCm38)</a>).</p>
<p>It supports most commonly used file formats including SAM/BAM, Wiggle/BigWig, BED, GFF/GTF, VCF.</p>
<p>CrossMap is designed to liftover genome coordinates between assemblies. It&rsquo;s <em>not</em> a program for aligning sequences to reference genome.</p>
<p>We <em>do not</em> recommend using CrossMap to convert genome coordinates between species.</p>
<p>More at http://crossmap.sourceforge.net/</p><p>Address of the bookmark: <a href="http://crossmap.sourceforge.net/" rel="nofollow">http://crossmap.sourceforge.net/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26537/destruct</guid>
	<pubDate>Mon, 29 Feb 2016 17:34:59 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26537/destruct</link>
	<title><![CDATA[destruct]]></title>
	<description><![CDATA[<p>Destruct is a tool for joint prediction of rearrangement breakpoints from single or multiple tumour samples.</p>
<p>More at&nbsp;https://bitbucket.org/dranew/destruct</p><p>Address of the bookmark: <a href="https://bitbucket.org/dranew/destruct" rel="nofollow">https://bitbucket.org/dranew/destruct</a></p>]]></description>
	<dc:creator>Jitendra Prajapati</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/27555/phd-at-institute-of-life-sciences-bhubaneswar</guid>
  <pubDate>Mon, 30 May 2016 03:36:04 -0500</pubDate>
  <link></link>
  <title><![CDATA[PhD at INSTITUTE OF LIFE SCIENCES, Bhubaneswar]]></title>
  <description><![CDATA[
<p>INSTITUTE OF LIFE SCIENCES</p>

<p>Bhubaneswar 751023</p>

<p>Advt No. 07/2016</p>

<p>Institute of Life Sciences (ILS), Bhubaneswar, an autonomous Institute of the Department of Biotechnology, Ministry of Science &amp; Technology, Government of India engaged in advanced research invites applications from Indian nationals for the Ph.D. program. The main focus of the projects will be computational biology in the following areas.</p>

<p>S. No. Area of Research Principal investigator</p>

<p>1. Computational Cancer Biology Dr. Anshuman Dixit</p>

<p>2. Immunogenomics &amp; Systems Biology Dr. Sunil Kumar Raghav</p>

<p>3. Chromatin remodeling and hematopoiesis Dr. Punit Prasad</p>

<p>Candidates are strongly encouraged to visit ILS webpage for detailed information, regarding the research activities of the above mentioned scientists.</p>

<p>Essential Qualifications:</p>

<p>(a) Eligibility: M.Sc., M.V.Sc., M.Pharm., M.S. Pharma. (with NET/GATE/GPAT/BINC/any other equivalent national level exam) or M.Tech with minimum of 60% marks (or equivalent grade point). Those awaiting final result may also apply.</p>

<p>Applications received after the last date will not be accepted. The envelope should clearly be superscribed with “Application for Ph.D. program (computational biology)”. Short-listed candidates selected for the interview will be published in the Institute website (www.ils.res.in).</p>

<p>Application Fees: Applicants except SC/ST candidates are required to send a non-refundable D.D. for Rs.100/- in favour of “Director, Institute of Life Sciences, Bhubaneswar” payable at Bhubaneswar along with duly filled-in application form by the date mentioned below. Director, ILS reserves the right to withdraw the procedure without assigning any reasons thereof.</p>

<p>Important dates: </p>

<p>Last date of receiving applications: 24th June 2016 </p>

<p>Date of display of short-listed candidates and instructions on the Institute website: 30th June 2016 </p>

<p>Date of interview: The interview will be organized on 25th July 2016</p>

<p>Advertisement: https://www.ils.res.in/wp-content/uploads/2016/05/advt07-16.pdf</p>
]]></description>
</item>

</channel>
</rss>