<?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/30027?offset=560</link>
	<atom:link href="https://bioinformaticsonline.com/related/30027?offset=560" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22571/pattern-matching-problem-solution-with-perl</guid>
	<pubDate>Tue, 09 Jun 2015 23:58:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22571/pattern-matching-problem-solution-with-perl</link>
	<title><![CDATA[Pattern Matching Problem Solution with Perl]]></title>
	<description><![CDATA[<p>Problem at http://rosalind.info/problems/1c/</p><p>#Find all occurrences of a pattern in a string.<br />#Given: Strings Pattern and Genome.<br />#Return: All starting positions in Genome where Pattern appears as a substring. Use 0-based indexing.<br /><br />use strict;<br />use warnings;<br /><br />my $string="GATATATGCATATACTT";<br />my $subStr="ATAT";<br />my $kmer=length($subStr);<br /><br />kmerMatch ($string, $subStr, $kmer);<br /><br />sub kmerMatch { #Check the exact matching kmers with sliding window<br />my ($string, $myStr, $kmer)=@_;<br />for (my $aa=0; $aa&lt;=(length($string)-$kmer); $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;&nbsp; #print "$myWin eq $myStr\n";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print $aa;<br />&nbsp;&nbsp;&nbsp; }<br />}<br />}</p>]]></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/news/view/22793/sequencing-by-xpansion</guid>
	<pubDate>Wed, 17 Jun 2015 20:58:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22793/sequencing-by-xpansion</link>
	<title><![CDATA[Sequencing By Xpansion]]></title>
	<description><![CDATA[<p>Sequencing By Xpansion (SBX) is a DNA sequencing method that uses a simple biochemical reaction to encode the sequence of a DNA molecule into a highly measurable surrogate called an Xpandomer. This single molecule approach produces enough Xpandomer in a single drop reaction to sequence an entire human genome 1000X over. To achieve this, an Xpandomer replaces each DNA sequence with a sequence of large, high signal reporter molecules using the SBX molecular expansion technology. The DNA sequence is then read out as the Xpandomer reporters pass sequentially through a nanopore detector. SBX is a molecular engineering platform that benefits from core design principles that separate the multiple molecular functions. This systems approach enables efficient development and incorporation of improvements to SBX and is key to reconfiguring and optimizing Xpandomer measurement for different detection platforms.</p><p>http://www.stratosgenomics.com/stratos-genomics-technology</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</guid>
	<pubDate>Sun, 28 Jun 2015 07:46:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</link>
	<title><![CDATA[BioScripts]]></title>
	<description><![CDATA[<p>You are requested to please bookmark collection of bioinformatics tools, scripts, codes that can be pieced together in a very easy and flexible manner to perform both simple and complex bioinformatics tasks.</p>
<p>The next-generation sequencing included whole genome sequencing(WGS), transcriptome sequencing (whole cDNA sequencing, RNA-seq), digital gene expression sequencing (Tag-Seq), ChIP-Seq, and so on. And there are many sequencing platform to generate sequece, as well know Sanger/ABi(the frist generation), Solexa/illumina, SOLiD/ABi, 454/Roche. But thier sequence format is different, also they have different error type. High quality data is very important for further analysis or data mining. There are many pipeline for raw sequence quality analysis and control with few of process for reporting reads quality statistical details, trimming, filtering, and error correction. Please bookmarks them for the benefits of bioinformatics community.</p>
<p>https://code.google.com/p/biowiki/</p>
<p>https://code.google.com/p/ngs-pipeline/source/browse/#svn%2Ftrunk</p>
<p>NGSand Perl scripts https://code.google.com/hosting/search?q=NGS+perl&amp;projectsearch=Search+projects</p>
<p>NGS and Python scripts https://code.google.com/hosting/search?q=NGS+Python&amp;projectsearch=Search+projects</p><p>Address of the bookmark: <a href="https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search" rel="nofollow">https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/22995/bioinformatics-phd-postdoc-job-rejection</guid>
	<pubDate>Thu, 02 Jul 2015 08:52:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/22995/bioinformatics-phd-postdoc-job-rejection</link>
	<title><![CDATA[Bioinformatics PhD / PostDoc / Job Rejection]]></title>
	<description><![CDATA[<div><p>While your PhD or PostDoc application, it is more common that you got rejected by many professors. Don't disappoint reply it calmly.</p><p><img src="http://bioinformaticsonline.com/mod/photo/rejected1.png" alt="image" style="border: 0px; border: 0px;"></p><p>In grad school, I shared a house with three Bioinformatics PhD students. One, when he applied to a particular professor, received a letter that said, essentially, "If you are applying because you want to enrich yourself, great. If you are applying because you want a job, you should know that you won't get one." I am trying to tell you this is because if you, with a good background in Bioinformatics, are passing up opportunities, you must be a strong candidate in many areas. Enrich yourself.<br /><br /> So, my suggestion is take a deep breath, forgot about all. Don&rsquo;t take it personally. It's been usual processes while hunting for a good lab and professor. Take is positive, I am not sure why they reject, but don't worry perhaps the lab don't deserve you. Always remember there are billions of reasons not to hire someone for projects, especially in a research sector.<br /><br /> My suggestion, please do not whine about how you were a great research candidate for the post, and you just can't understand why they were so stupid as to have rejected you! This feeling will not win you any points in research, community. Especially, when in todays socially connected era everyone is linked. Remember, a nice E-mail saying, "I really wished to working with you on this project and I hope we cross paths again," is all you need to send to the professor. Send a thank you note to the professor. Thank them for the time they spend to judge you. In the future, If you and the professor (of your dream) are attending a bioinformatics conference, invite him/her to lunch (please remember to pay the bill). In today evolving scientific ere, always remember to build your solid network in order to get a job of interest. Join all possible networking sites like LinkedIn, ResearchGate, Acamedia, FB for the same reason. You as a researcher always build a bridge with student/researcher/colleague/professor who have the research potential to lead in research and hire you. Just because you didn't get this project, doesn't mean there isn't another that will open up in couple of month.<br /><br /> Mostly, jobs that are hard to get are hard to get. Only you can decide if the continued sacrifices are worth the expected payout. If it is, keep on plowing. Build relationships. Attend conferences.</p><p>Image ref @ JaSonYa</p></div>]]></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/opportunity/view/23578/srf-post-in-nehu-shillong</guid>
  <pubDate>Tue, 04 Aug 2015 03:17:05 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF post in NEHU, Shillong]]></title>
  <description><![CDATA[
<p>Bioinformatics Centre (DIC)<br />NORTH-EASTERN HILL UNIVERSITY<br />SHILLONG 793022</p>

<p>Applications with complete bio-data from candidates possessing the required qualifications are invited for the posts of JRF (1) and Project Assistant (1) in DBT, GOI-funded research project “Next Generation Sequencing (NGS)- based de novo assembly of expressed transcripts and genome information of Orchids in North-East India” in DBT’s Twinning programme for NE as per DBT sanction order and norms.</p>

<p>(i) JRF(1 no.):</p>

<p>Qualifications: M.Tech/M.Sc in Life Sciences/ Botany/ Zoology/ Biochemistry/ Biotechnology/ Bioinformatics;</p>

<p>Desirable: Aptitude for Bioinformatics and Computer Programming/ Next generation sequencing data analysis</p>

<p>(ii) Project Assistant (1 no.):</p>

<p>Qualifications: Graduation in Science,</p>

<p>Desirable: Experience of working in a Life Science/Plant Biotechnology lab. and familiarity with computers and field work viz. collection of samples.</p>

<p>The applications through email bicnehu@gmail.com or post must reach the undersigned within 15 days from the date of publication of this advertisement. The advertised posts are purely temporary for the duration of the project and subject to availability of the funds from DBT. The appointment does not confer any entitlement or right over the posts for absorption in the University service. Prof. Pramod Tandon, PI/Mr. Devendra Kumar Biswal (Co-PI) email: bicnehu@gmail.com</p>

<p>Advertisement: www.nehu.ac.in/Advertisements/BIC_AdvtPV_030815.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24462/icar-project-ra-position-institute-of-bioinformatics-iob-bangalore</guid>
  <pubDate>Tue, 22 Sep 2015 23:41:31 -0500</pubDate>
  <link></link>
  <title><![CDATA[ICAR project RA position @ Institute of Bioinformatics (IOB) Bangalore]]></title>
  <description><![CDATA[
<p>Applications are invited for the post of Research Associate (RA) in the ICAR project on "Lactation stress associated postpartum anestrus SNP array in buffaloes". We are looking for a motivated candidate for handling Next Generation sequencing data analysis with a strong background in bioinformatics and programming.</p>

<p>The position is open for immediate appointment and available for two years and then extendable for additional one year. The applicant will be appointed as Research Associate based on qualifications as detailed below:</p>

<p>Research Associate:</p>

<p>-Master’s degree with bioinformatics with at least 2 years of research experience in Next Generation sequencing data analysis as evidence from Fellowship/ Associateship / Training / other engagements.</p>

<p>-Familiarity with bioinformatics tools, database development, programming skills</p>

<p>-Minimum 1 publication in any peer reviewed journal</p>

<p>Salary will be as per ICAR rules and guidelines. Application will be shortlisted based on CV, reference letters from mentors and telephonic interview. Candidates will be called for a personal interview at Bangalore before appointment. No travel expense will be provided for attending interview at Bangalore.</p>

<p>Interested candidates may send a Letter of Interest and CV by email to: keshav@ibioinformatics.org before September 29, 2015.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24258/postdoctoral-fellowship-at-department-of-psychiatry-warneford-hospital-oxford</guid>
  <pubDate>Tue, 01 Sep 2015 05:24:49 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Fellowship at Department of Psychiatry, Warneford Hospital, Oxford]]></title>
  <description><![CDATA[
<p>Applications are invited for a postdoctoral research assistant to work in the Translational Neuroscience and Dementia Research Group (TNDRG) on a project using informatics approaches to understand and prevent dementia, specifically on the role of the immune system in Alzheimer’s. The post is for a fixed-term duration of 1 year.</p>

<p>Working with other members of the TNDRG you will analyse complex genomic and epidemiological datasets, evaluating which computational tools are most suitable. You will contribute to the generation of innovative tools for linking epidemiological and multilevel omics datasets, ensuring that computer programs are written in a form that other collaborators can use and expand.</p>

<p>You will have or be close to completion of a PhD in either: bioinformatics; neuroscience; machine learning; statistics; epidemiology; neurology; or other relevant field. You will have experience programming on either R, Matlab, Python, C++, Java or any other imperative, object oriented or functional language.</p>

<p>Please direct Informal enquiries to Dr Alejo Nevado-Holgado (alejo.nevado-holgado@psych.ox.ac.uk).</p>

<p>You will be required to upload a supporting statement explaining how you meet the selection criteria for the post, a CV, and details of two referees as part of your online application.</p>

<p>The closing date for applications is 12.00 midday on 2 September 2015. Interviews will be held on Tuesday 15 September 2015. </p>

<p>https://www.recruit.ox.ac.uk/pls/hrisliverecruit/erq_jobspec_version_4.jobspec?p_id=118696</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24328/walk-in-interview-for-srf-jrf-posts-at-junagadh-agricultural-university</guid>
  <pubDate>Tue, 08 Sep 2015 11:58:09 -0500</pubDate>
  <link></link>
  <title><![CDATA[Walk-in-interview for SRF, JRF posts at Junagadh Agricultural University]]></title>
  <description><![CDATA[
<p>Job Description: Walk-in-interview for SRF, JRF posts at Junagadh Agricultural University</p>

<p>Junagadh Agricultural University has given a recruitment notification to fill the posts of Senior, Junior Research Fellows in the establishment.</p>

<p>Name &amp; No: of Posts:</p>

<p>1. Senior Research Fellow: 05<br />2. Junior Research Fellow: 05</p>

<p>Title of the Projects under Senior Research Fellow:</p>

<p>1. Molecular mapping of important traits and their transfer through marker assisted selection in Groundnut and cotton<br />2. Aflatoxin and its management in groundnut at Saurashtra region of Gujarat.<br />3. Improvement in Agricultural Production through nanotechnological inventions at Junagadh.<br />4. Synthesis and Characterisation of chitosan based NPK-Nano fertilizers</p>

<p>Title of the Projects under Junior Research Fellow:</p>

<p>1. Improvement in Agricultural Production Through Nanotechnological Inventions at Junagadh.<br />2. Synthesis and Characterisation of chitosan based NPK-Nano fertilizers</p>

<p>Required Eligibility Criteria:</p>

<p>1. Senior Research Fellow:</p>

<p>Age Limit: Candidates age must be maximum 35 years<br />Educational Qualification: M.Sc in Nanotechnology/Biotechnology/Bioinformatics<br />Salary: Rs. 16,000/- + HRA for first and second year, Rs. 18,000/- + HRA during third year</p>

<p>2. Junior Research Fellow:</p>

<p>Age Limit: Candidates age must be maximum 30 years<br />Educational Qualification: B.Sc or M.Sc degree in the field of Nanotechnology/Biotechnology<br />Salary: Rs. 9,600/- , Rs. 14,400/- p.m</p>

<p>Eligible candidates may attend the walk-in-interview on 10-09-2015 with necessary certificates of testimonials</p>

<p>Click Here for Detailed Recruitment Notification<br />http://www.jau.in/attachments/Advt/BiotechSRFJRF.pdf</p>
]]></description>
</item>

</channel>
</rss>