<?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/4162?offset=140</link>
	<atom:link href="https://bioinformaticsonline.com/related/4162?offset=140" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22436/ra-bioinformatics-at-national-bureau-of-animal-genetic-resources</guid>
  <pubDate>Thu, 28 May 2015 19:25:33 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at NATIONAL BUREAU OF ANIMAL GENETIC RESOURCES]]></title>
  <description><![CDATA[
<p>NATIONAL BUREAU OF ANIMAL GENETIC RESOURCES</p>

<p>Near Basant Vihar G.T. Road Bypass P.O. Box No.129</p>

<p>Karnal - 132001 (Haryana)</p>

<p>WALK-IN-INTERVIEW</p>

<p>A walk-in-Interview is proposed to be held at National Bureau of Animal Genetic Resources, Karnal (Haryana)-132001 at 10:30 AM on 10.06.2015 to select One Research Associate as per details given below:</p>

<p>1. One post of Research Associate under National Fellow project entitled “Genome data mining to unravel molecular basis of thermotolerance and adaptation to diverse environments in native cattle and buffaloes”.</p>

<p>The post duration is Upto 22.05.2016 or earlier &amp; Co-terminus with the project.</p>

<p>Essential Qualifications: Master’s degree (M.Sc. / M.V.Sc.) in Biotechnology/ Animal Genetics and Breeding/ Life Sciences/ Bioinformatics with 2 Years research experience in relevant subject or Ph.D in any of the above subjects.</p>

<p>Desirable: Working Experience in molecular biology, gene expression/ microarray data analysis, SNP genotyping and sequence data analysis, mammalian cell-culture handling etc.</p>

<p>Emolument: Rs. 23,000/- per month + HRA as per admissibility</p>

<p>Research Associate: ONE</p>

<p>Duration of engagement: Upto 22.05.2016 or earlier Co-terminus with the project</p>

<p>Age Limit:  40 years for Men  45 years for women as on date of interview</p>

<p>Note: Relaxation in age will be admissible for SC/ST &amp; OBC candidates as per Govt. of India /ICAR norms</p>

<p>1. The applicants must bring with them original documents and brief of research work done during post graduation along with a set of photocopy and latest two passport size photographs. 2. A panel of selected candidates will also be made which may be utilized for filling of positions of shorter durations in future if demand arises. 3. Experience certificate in original, if any 4. The above positions are purely on temporary basis and are coterminus with the project. No TA/DA will be paid to attend the interview. 5. Any other clarifications can be had on the date of interview. 6. The Director’s decision will be final and binding on all respects.</p>

<p>Advertisement: http://210.212.93.85/RAadvertisiment.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22615/jrf-position-%E2%80%93-bioinformatics-department-aravind-medical-research-foundation-amrf-madurai</guid>
  <pubDate>Fri, 12 Jun 2015 05:42:12 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF Position – Bioinformatics Department, Aravind Medical Research Foundation (AMRF), Madurai.]]></title>
  <description><![CDATA[
<p>Applications are invited from eligible candidates for the post of Junior Research Fellow (JRF) to work at the Department of Bioinformatics, Aravind Medical Research Foundation in the following DST-SERB funded project “Clinical exome analysis pipeline for eye disease next-generation sequencing panel”.</p>

<p>Post: Junior Research Fellow (1 Position)</p>

<p>Duration: Three years</p>

<p>Qualification: First class in M.Sc/M.tech in Bioinformatics/Life Sciences/Biophysics/ Biostatistics/Bioengineering. Experience in Database development, NGS data analysis, Systems Biology and Structural Bioinformatics is desired. Preference will be given to the candidates with good computer programming skills in C, C++, R, Perl, PHP, Unix Scripting etc.</p>

<p>Selected candidates will be paid fellowship as per existing DST norms.</p>

<p>How to apply:</p>

<p>Candidates are requested to apply through one of the two modes given below<br />1. Online application – Click here to submit the online application https://docs.google.com/forms/d/16h2GLnQ-Ny-tLtlgfY3Bx3sCjeHJE30cfhJaDqW_uRs/viewform?c=0&amp;w=1<br />2. Application forms can be downloaded from here.https://docs.google.com/file/d/0BwwJEudQStxFWXdNWXl4NWtDaWc/edit<br /> Filled in application form should be sent by post to Dr. D. Bharanidharan, Department of Bioinformatics, Aravind Medical Research Foundation No 1, Anna Nagar Madurai – 625 020,</p>

<p>Candidates should apply by online or submit their applications by post on or before 15th June, 2015. Only Short listed candidates will be called for an interview. No TA/DA will be paid.</p>
]]></description>
</item>
<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/opportunity/view/22780/ra-bioinformatics-at-institution-centre-for-human-genetics-bangalore</guid>
  <pubDate>Wed, 17 Jun 2015 19:14:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at Institution: Centre for Human Genetics,  Bangalore]]></title>
  <description><![CDATA[
<p>Institution: Centre for Human Genetics, <br />Bangalore <br />Discipline: Molecular Genetics of Human Disease Biology </p>

<p>Minimum qualification: MSc in any branch of life sciences</p>

<p>Applications are invited for the position of a Research Assistant in the Centre for Human Genetics, Bangalore. </p>

<p>The project involves identification of mutations in MPS (mucopolysaccharidosis) patients, and study of their predicted effects to understand how the mutations lead to disease. </p>

<p>Techniques used will be genomic DNA isolation, PCR, DNA sequencing and sequence analysis. Computational tools would also be used to analyse and interpret data. </p>

<p>Candidates may be assigned work in the ongoing project or in new ones. </p>

<p>The candidate who is selected and joins would acquire hands-on experience in research and the capability to conduct insightful research. </p>

<p>Candidates applying for the position should have an MSc in any branch of life sciences. Those with research experience in cell and molecular biology, and high NET/ GATE score would be preferred. </p>

<p>The successful applicant is expected to stay for at least one and a half years. </p>

<p>Please apply with CV to Sudha Srinivasan (sudha@ibab.ac.in), stating where you saw this ad.</p>
]]></description>
</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/23278/research-associate-project-fellow-biological-sciences-at-igib</guid>
  <pubDate>Sun, 12 Jul 2015 07:57:27 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate, Project Fellow (Biological Sciences) at IGIB]]></title>
  <description><![CDATA[
<p>Research Associate, Project Fellow (Biological Sciences)<br />Institute of Genomics &amp; Integrative Biology (IGIB) - New Delhi, Delhi<br />Pay Scale: Rs. 22,000/- + 30 % HRA per month<br />Educational Requirements: PhD in any branch of Biological Sciences with specialization in Bioinformatics with at least one research paper in Science Citation Indexed (SCI) journal<br />Desired Skills: Knowledge of molecular dynamics simulations<br />Details will be available at: http://www.igib.res.in/sites/default/files/24July2015.pdf</p>

<p>Project Fellow (Biological Sciences) Pay Scale: Rs. 16,000/- + 30 % HRA per month<br />Educational Requirements: M.Sc./B.Tech in life sciences/Biological sciences with at least 55 % marks<br />Experience Requirements: Research experience.<br />Details will be available at: http://www.igib.res.in/sites/default/files/24July2015.pdf</p>

<p>No of Post: 01<br />How To Apply: 1. Please fill up the proforma by clicking on the following link HR Online Form. 2. Candidate cannot apply for more than two posts. Last date of receiving application is 12-07-2015. No application would be entertained with “result awaited” status or after due date. List of shortlisted candidates will be put up on CSIR-IGIB website. No TA/DA will be paid to the candidates to attend the interview. The engagement shall be as per guidelines of CSIR/Funding agency. Candidates will have an option to give reply in Hindi. Note: The shortlisted candidates, have to report at 09:00 AM at Mall Road Campus, Delhi – 110007 on the day of interview along with any Photo ID card, (without photo ID card interview will not be conducted). 3 copies of updated signed C. V. (clearly mentioning Date of Birth and Highest Qualification with percentage), Dissertation (if any), PhD thesis (if any) and original certificates/Self attested photocopies for verification.<br />Detail of Interview: 24 July, 2015 at 10:30 AM<br />Age Limit: 28 Years</p>
]]></description>
</item>

</channel>
</rss>