<?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/33629?offset=270</link>
	<atom:link href="https://bioinformaticsonline.com/related/33629?offset=270" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21242/summer-intern-research-bioinformatics</guid>
  <pubDate>Mon, 16 Feb 2015 12:26:32 -0600</pubDate>
  <link></link>
  <title><![CDATA[Summer Intern - Research Bioinformatics]]></title>
  <description><![CDATA[
<p>Be proficient in LINUX, know perl or python, understand biology and Next Generation Sequencing.<br />The intern will port Agile Assay Design pipelines into Galaxy.<br />The intern will also learn to develope his/her own bioinformatics pipelines for PCR or NGS data analysis.</p>

<p>Who you are<br />You’re someone who wants to influence your own development. You’re looking for a company where you have the opportunity to pursue your interests across functions and geographies. Where a job title is not considered the final definition of who you are, but the starting point.</p>

<p>Qualifications:<br />Major: Bioinformatcis or biology major who is interested and wants to learn Biocomputing, At least 2 years of college.<br />Basic knowledge of LINUX and programming, e.g., perl, python, XML.</p>

<p>More at http://www.roche.com/careers/jobs/jobsearch/job.htm?id=E-00437679&amp;locale=en&amp;title=Summer%20Intern%20-%20Research%20Bioinformatics</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21436/jrf-bioinformatics-iisr-kozhikode</guid>
  <pubDate>Tue, 24 Feb 2015 08:44:17 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics @ IISR, Kozhikode]]></title>
  <description><![CDATA[
<p>JRF Bioinformatics Jobs recruitment in Indian Institute of Spices Research on temporary basis</p>

<p>Name of the Scheme : Distributed Information Sub Centre – DISC</p>

<p>Qualifications :  M.Sc/ B Tech in Bioinformatics with NET/GATE or M Tech in Bioinformatics</p>

<p>Number of posts : One</p>

<p>Emoluments : Rs. 25,000/-</p>

<p>Upper age limit : 35 years for Men &amp; 40 years for Women as on date of Interview<br />How to apply</p>

<p>Date of Interview : 12-03-2015 at 10.00 AM. All relevant certificates (in original) and bio data, No objection certificate in case he/she is employed elsewhere and experience certificate in original (if any) need to be produced at the time of interview.</p>

<p>More at http://spices.res.in/index.php?option=com_content&amp;view=article&amp;id=263</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</guid>
	<pubDate>Tue, 24 Feb 2015 20:23:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</link>
	<title><![CDATA[A guide for complete R beginners :- Installing R packages]]></title>
	<description><![CDATA[<p>Part of the reason R has become so popular is the vast array of packages available at the <a href="http://cran.r-project.org/" target="_blank">cran</a> and <a href="http://www.bioconductor.org/" target="_blank">bioconductor</a> repositories. In the last few years, the number of packages has grown <a href="http://blog.revolutionanalytics.com/2010/09/what-can-other-languages-learn-from-r.html" target="_blank">exponentially</a>!</p><p>This is a short post giving steps on how to actually install R packages. Let&rsquo;s suppose you want to install the <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> package. Well nothing could be easier. We just fire up an R shell and type:<br /><code><br />&gt; install.packages("ggplot2")</code></p><p>In theory the package should just install, however:</p><ul>
<li>if you are using Linux and don&rsquo;t have root access, this command won&rsquo;t work.</li>
<li>you will be asked to select your local mirror, i.e. which server should you use to download the package.</li>
</ul><h4>Installing packages without root access</h4><p>First, you need to designate a directory where you will store the downloaded packages. On my machine, I use the directory <code>/data/Rpackages/</code> After creating a package directory, to install a package we use the command:<br /><code><br />&gt; install.packages("ggplot2"</code><code>, lib="/data/Rpackages/")<br />&gt; library(ggplot2, lib.loc="/data/Rpackages/")<br /></code></p><p>It&rsquo;s a bit of a pain having to type <code>/data/Rpackages/</code> all the time. To avoid this burden,&nbsp; we create a file <code>.Renviron</code> in our home area, and add the line <code>R_LIBS=/data/Rpackages/</code> to it. This means that whenever you start R, the directory <code>/data/Rpackages/</code> is added to the list of places to look for R packages and so:</p><p><code>&gt; install.packages("ggplot2"</code><code>)<br />&gt; library(ggplot2)</code></p><p>just works!</p><h4>Setting the repository</h4><p>Every time you install a R package, you are asked which repository R should use. To set the repository and avoid having to specify this at every package install, simply:</p><ul>
<li>create a file <code>.Rprofile</code> in your home area.</li>
<li>Add the following piece of code to it:</li>
</ul><p><code><br />cat(".Rprofile: Setting UK repositoryn")<br />r = getOption("repos") # hard code the UK repo for CRAN<br />r["CRAN"] = "http://cran.uk.r-project.org"<br />options(repos = r)<br />rm(r)<br /></code></p><p>I found this tip in a stackoverflow <a href="http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile/1189826#1189826" target="_blank">answer </a>.</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21830/research-associate-bioinformatics-job-position-in-indian-agricultural-statistics-research-institute-iasri</guid>
  <pubDate>Tue, 31 Mar 2015 20:45:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI)]]></title>
  <description><![CDATA[
<p>Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI)</p>

<p>Qualification : Ph.D. in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent. Desirable: Knowledge of Statistical and Computational Genomics/ Proteomics/ Bioinformatics OR Post-Graduation in Bioinformatics/ Agricultural Statistics/ Statistics/ Computer Science/ Computer Application/ Life Science/ Biotechnology/ Agricultural Science or equivalent with 1st Division or 60% marks or equivalent with at least two years of research experience. Desirable:Expertise on use of various software/ tool.</p>

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

<p>Emoluments for RA: Consolidated Rs. 24000/- per month + 30% HRA for Ph.D holders and consolidated Rs. 23000/- per month + 30% HRA for Master Degree.</p>

<p>Age Limit : Age should not be more than 40 years for the post of Research associate (5 years relaxation for SC/ST/ women candidates) and 3 years for OBC candidates as on date of interview.<br />How to apply</p>

<p>Interested candidates are invited to appear for Walk-In interview at Indian Agricultural Statistics Research Institute, Library Avenue, Pusa, New Delhi -110012, along with filled in application form , all the original certificates from matriculation onwards, Ph.D. or M.Sc. certificate (as the case may be) must be produced at the time of interview in either original or provisional, Bio-Data, attested copies of all experience certificates, testimonials etc., one passport size photograph and one set of the self-attested photocopies of all the required certificates from matriculation onwards and an attested copy of recent passport size photograph pasted onto the application form. Walk-in interview will be held on 16th April, 2015 at 10:30 a.m.</p>

<p>Click Here for Job Details &amp; Application Form http://www.iasri.res.in/employment/employment.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23626/walk-ins-for-ra-jrf-and-srf-post-in-nbagr-karnal</guid>
  <pubDate>Tue, 04 Aug 2015 18:50:07 -0500</pubDate>
  <link></link>
  <title><![CDATA[Walk-ins for RA, JRF and SRF post in NBAGR, Karnal]]></title>
  <description><![CDATA[
<p>ICAR-NATIONAL BUREAU OF ANIMAL GENETIC RESOURCES<br />Near Basant Vihar G.T. Road Bypass P.O. Box No.129,<br />Karnal-132001 (Haryana)</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 19.08.2015 to select One Research Associate &amp; Three Senior Research Fellow as per details given below:</p>

<p>Name of the project &amp; project period: ICAR Consortium Platform on Genomics.</p>

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

<p>Upto 31.03.2017 or earlier and Coterminus with the project</p>

<p>Essential Qualifications: PhD degree in Bioinformatics OR Master’s degree in Bioinformatics with 4 years/5 years of Bachelor’s degree having 1st division or 60% marks or equivalent overall grade point average, with at least two years of research experience as evidenced from Fellowship/Associateship</p>

<p>Desirable: Working experience in Next Generation Sequencing data analysis</p>

<p>Emolument: Research Associates may be fixed at a consolidated amount at one of the two pay levels given below depending upon the qualification &amp; experience.</p>

<p>I. Research Associate – Master Degree Holders Rs. 38,000/ + HRA II. Research Associate – Doctoral Degree Holder Rs. 40,000/ + HRA</p>

<p>Senior Research Fellow: Two:- Bioinformatics One: - Biotechnology.</p>

<p>Duration of engagement: Upto 31.03.2017 or earlier and Coterminus with the project</p>

<p>Essential Qualifications: Master degree in any one of discipline/ Subjects- Biotechnology/Bioinformatics with 4 years/5 years of Bachelor’s degree.</p>

<p>Candidates having post graduate degree in above mentioned subjects with 3 years Bachelor’s degree should have NET qualification.</p>

<p>Desirable: The candidates should have zeal to work in R environment and NGS data analysis Emolument: Rs. 28,000/- per month + HRA as per admissibility</p>

<p>Age Limit: 1. 40 year for Men and 45 years for Women in case of RA on the date of Interview. 2. 35 year for Men and 40 years for Women in case of SRF on the date of Interview. (Relaxation for SC/ST/OBC and PHC as per GOI/ICAR rules) The above positions are purely temporary and will be filled in on Contractual basis. The selected candidate shall have no right/claim for regular appointment at this Institute, as the engagement is co-terminus with the Project/Scheme.</p>

<p>Interested candidates may attend Walk-in-Interview at 10:30 AM on 19.08.2015 alongwith original certificates and typed bio-data with one set of attested copies of each their certificates with passport size photograph. No TA/DA will be paid for attending the interview. All eligible candidates are advised to be present at least 30 minutes before scheduled time on the date of interview for completing necessary formalities. Canvassing in any form will disqualify the candidates. </p>

<p>More at http://210.212.93.85/Advertisiment3.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21794/research-associate-biotechnology-bioinformatics-in-national-research-centre-on-plant-biotechnology-%E2%80%93-new-delhi</guid>
  <pubDate>Sun, 29 Mar 2015 21:13:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate (Biotechnology, Bioinformatics) In National Research Centre on Plant Biotechnology – New Delhi]]></title>
  <description><![CDATA[
<p>Pay Scale:Rs.24000+ 30% HRA) for Ph.D. and for M. Sc Rs.23000/‐ (+ 30% HRA)<br />Educational Requirements:Ph.D. Degree in Bioinformatics/Molecular Biology/Biotechnology/ Genetics/allied sciences; or M. Sc in Bioinformatics/ Biotechnology/Life Sciences/ allied sciences with 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience as evidenced from Fellowship/ Associate ship<br />Experience Requirements:2 years research experience in bioinformatic data analysis/molecular biology techniques, and high throughput DNA/RNA sequencing, and transcriptome data analysis. Research paper with IF&gt;1 will be desirable<br />+Details will be available at: http://www.nrcpb.org/sites/default/files/ICAR-NPTC%20DBT%20RA%20SRF%20interview%2024th%20March.pdf</p>

<p>No of Post: 01<br />How To Apply: Walk-in interview will be held on 24-03-2015 at 10:00 AM at NRCPB, New Delhi for filling Research Associate and Senior Research Fellow positions as mentioned below. The positions are temporary and are initially offered for a period of one year. Details such as emoluments, qualifications, application format etc., are given below. Desirous candidates should report for interview latest by 10:30 AM with the application in the prescribed format, copies and originals of certificates, thesis and documents. No TA/DA will be provided for attending the interview<br />General Instructions: The positions are purely temporary, on a contractual basis and are initially offered for one year. The period and duration of the scheme is tentative and the same may change. The person employed will have no right to claim employment or engagement in ICAR at the end of the contract period. No TA/DA will be provided for appearing in the interview. Persons already in employment should bring “No Objection Certificate” from their present employer. The candidates must bring with them five copies of the CV in the format given below along with original documents such as t h e s i s , degree certificates, marks sheets, publications, experience certificate etc. for verification and one set of self attested copy of all certificates. The decision of the Project Director of this Institute will be final and binding in all aspects. In case of any disputes, it will be resolved within the jurisdiction of New Delhi Court only.<br />Detail of Interview: 24-03-2015<br />Age Limit: 35 Years<br />Contact Details: Ph: 011-25848783; Fax: 25843984</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22147/research-associate-bioinformatics-job-position-in-nipgr</guid>
  <pubDate>Sun, 19 Apr 2015 14:55:19 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics job position in NIPGR]]></title>
  <description><![CDATA[
<p>NIPGR Recruitment 2015 – Apply for Research Associate Posts</p>

<p>NIPGR is commonly known as National Institute of Plant Genome Research. Recently, it’s great opportunity for those candidates who are interested to do job in NIPGR. National Institute of Plant Genome Research (NIPGR) had found to build a bridge between the branches of natural sciences and due this connection it is steeping on the heaps of success. Its objectives to preserve, research, production and the advancement in the trait are very clear and also being appreciated by the nation and had been contributing for the further enrichment of the institute. NIPGR had announced the recruitment to further make improvements and amendments by the young potential in their panel. The recruitment is being announced for the post is mentioned below. We are giving a complete information to applicants for find their eligibility as per desired post under NIPGR Recruitment 2015 project but if the candidates are not satisfied with this information then they can download an official advertisement of NIPGR recruitment 2015 from the link defined ahead under the head of reference.</p>

<p>NIPGR Recruitment 2015 for the 1 post of Research Associate: National Institute of Plant Genome Research (NIPGR) had instigated the progression of the recruitment and this process is linked thoroughly so as the 1 post of Research Associate. Applicants are associated and linked with the education to be PHD degree in the life science, biotechnology, bioinformatics or molecular biology. Applicants are associated with the dispatch of the application along with the required certificates so as on the date of 24th Feb 2015.</p>

<p>The recruitment notification and application @ http://www.nipgr.res.in/careers/vacancies_latest.php#</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22073/bcil-bioinformatics-bitp-application</guid>
	<pubDate>Fri, 17 Apr 2015 04:34:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22073/bcil-bioinformatics-bitp-application</link>
	<title><![CDATA[BCIL Bioinformatics BITP Application !!]]></title>
	<description><![CDATA[<p>BCIL Bioinformatics BITP Application Form 2015 logoGrab latest Information! Biotech Consortium India Limited has announced a notification for offering admission in Biotech Industrial Training Program. The organization has invited online application from 7th April 2015 BCIL Admission 2015. BCIL has conducted an entrance exam which is scheduled on 20th June 2015. Candidates those who are looking for this program just go for it and don&rsquo;t miss this opportunity.<br /><br />To apply for Biotech Industrial Training Programme the candidates should have 50% marks in B.Tech/BE/M.Tech Degree in Bio technology, bio process technology and other related disciplines form any recognized institution. The organization has decided application fee of Rs.500/- for all candidates and that should be paid through demand draft. Applicants who satisfy the organization requirement, they can take their steps forward.<br /><br />Candidates should submit the online application before 10th May 2015. After registering the online application you need to take the hard copy of it and send through post. Print out of this application should be reached before 15th May 2015. All the latest updates like selection process, exam syllabus and other related information are updated soon at the main URL of the department and aspirants should keep in touch with this site. Further details of BCIL Bioinformatics BITP Application Form 2015 are explained below.<br /><br />Organization: Biotech Consortium India Limited<br /><br />Website URL: www.bcil.nic.in<br /><br />Location: New Delhi<br /><br />Course Name: Biotech Industrial Training Program<br /><br />Exam Name: BCIL Entrance Exam<br /><br />Educational Details: Applicants should complete their B.Tech/M.Tech/BE programs in Neuro- Science, Agricultural, Bio technology, bio process technology and other related disciplines having 50% aggregate from any authorized university.<br /><br />Application Fee: For all candidates application fee is Rs.500/- and it will be paid through Demand Draft drawn in favour of BCIL, New Delhi.<br /><br />How to Apply: Candidates who are willing to apply for this program they can apply through online mode. Then send the hard copy of registered application form to through post.<br /><br />Important Dates<br /><br />Opening Date of Submission Online Application Form: 7h April 2015<br /><br />Closing Date of Submission of Online Application Form: 10th May 2015<br /><br />Last Date of Receipt of Application Form: 15th May 2015<br /><br />Exam Date: 20th June 2015</p><p>More at http://bcil.nic.in/default.htm</p>]]></description>
	<dc:creator>Pranjali Yadav</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22024/research-associate-bioinformatics-job-position-in-indian-agricultural-statistics-research-institute-iasri-pusa-new-delhi</guid>
  <pubDate>Tue, 14 Apr 2015 11:57:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics job position in Indian Agricultural Statistics Research Institute (IASRI), Pusa, New Delhi]]></title>
  <description><![CDATA[
<p>Indian Agricultural Statistics Research Institute is inviting applications from indian citizens for recruiting following posts:</p>

<p>Vacancies:<br />Research Associate-02<br />Age Limits:<br />Candidates age limit should be not more than 40 years as on date of interview.<br />Qualification:<br />Candidates should possess Ph.D in Bioinformatics/Agricultural Statistics/Statistics/Computer Science/Computer Application or equivalent.<br />Selection Process:<br />Selection will be based on interview.<br />How to Apply:<br />Eligible candidates may attend for interview along with application in prescribed format, recent passport size photograph pasted on the application form, bio-data, original certificates and self attested copies of relevant documents, all experience certificates, testimonials etc, held at Indian Agricultural Statistics Research Institute, Pusa, New Delhi on 18-04-2015 at 10:30 AM.<br />Last Date:<br />18-04-2015</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22234/national-institute-of-biologicals-recruitment-2015</guid>
  <pubDate>Mon, 27 Apr 2015 19:44:45 -0500</pubDate>
  <link></link>
  <title><![CDATA[National Institute of Biologicals Recruitment 2015]]></title>
  <description><![CDATA[
<p>National Institute of Biologicals (NIB), Noida<br />Job Code: 260415(04)Y</p>

<p>National Institute of Biologicals (NIB), Noida invites applications to recruit on vacant posts of Scientist, Training Officer, Administrative Assistant, Stenographer, Junior Engineer, Computer Operator etc. Applications against these Government Jobs can be submitted on or before 01 July 2015.</p>

<p>NIB Vacancy 2015 Details<br />1. Scientist Grade III – 06<br />Qualification: PG degree in the concern field.<br />Age Limit: 35 Years</p>

<p>2. Junior Scientist – 07<br />Qualification: M.Sc. in Microbiology / Clinical Microbiology / Biotechnology/ Bioinformatics/ Biochemistry/Bacteriology/Pharmacology/ Serology / Molecular Biology/Physiology from any recognized University with at least 60% marks.<br />Age Limit: 30 Years</p>

<p>How to Apply: Duly filled-in applications in prescribed application format along with copies of required documents should be reach to: Administrative Officer, National Institute of Biologicals (Ministry of Health &amp; Family Welfare), A-32, Sector-62, Institutional Area, Noida-201309. Click here to obtain application form.</p>

<p>The Last Date to apply to NIB Job is 01 July 2015.</p>

<p>Click here to view details http://nib.gov.in/Advt%20%20%2824.04.2015%29.pdf</p>
]]></description>
</item>

</channel>
</rss>