<?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/22017?offset=50</link>
	<atom:link href="https://bioinformaticsonline.com/related/22017?offset=50" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21435/ra-walk-in-interview-nbfgr-lucknow</guid>
  <pubDate>Tue, 24 Feb 2015 08:23:48 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA WALK-IN-INTERVIEW @ NBFGR, Lucknow]]></title>
  <description><![CDATA[
<p>F.No. 1(122)/2015-Admn. (CABin Project)<br />Research Associate/Young Professional/SRF Zoology job vacancies in National Bureau of Fish Genetic Resources (NBFGR)<br />Post Name: Research Associate (Computer Science/ Applications)                <br />Qualification: Ph.D. In Computer Science/Computer Applications or equivalent. Or Post-Graduation in Computer Science/ Computer Applications with 1st Division or 60% marks or equivalent overall grade point average with at least two years of research experience. Desirable: 1. Expertise and experience of working/ handling High Performance Computing (H PC) and genomic resource data. 2. Expertise on database management, data mining technologies/ softwares/tools. 3. Published Research papers	<br />No.of Post: 1<br />Pay Scale: Consolidated Rs.24,000/- p.m. + HRA (as admissible) for Ph.D. holders and consolidated `23,000/- + HRA (as admissible) for Master degree holder.	<br />Age:40 years</p>

<p>Young Professional II (Computer Science/Applications)	<br />Master degree in Computer Science/Computer Applications/B.Tech (Computer Science) or equivalent. <br />Desirable: 1. Knowledge of Statistical and Computational Genomics/ Proteomics/ Bioinformatics/Data mining tools. 2. Experience in handling HPC, programming languages and database management packages.	<br />A consolidated salary of Rs.25,000/- per month.	<br />21 to 45 year</p>

<p>Young Professional II (Biotechnology/ Bioinformatics)	<br />Master degree in Bioinformatics/ Biotechnology/ B. Tech(Biotech) or equivalent. Desirable: 1. Knowledge of Computational Genomics/Proteomics/Bioinformatics. 2. Expertise in NGS data analysis and knowledge of allied software and tools.	<br />A consolidated salary of Rs.25,000/- per month.	</p>

<p>Senior Research Fellow	<br />1. Bachelors degree with Zoology, Fisheries and 2. Master's degree in Fishery science/ Zoology with Fisheries/ Biotechnology/ Life Sciences with specialization in Fisheries/ Molecular Biology. 3. 1 st Division or 60% marks or equivalent overall grade point average. <br />Desirable: Work experience in Fisheries, molecular research techniques, bioinformatics and Computer skills. NET qualified <br />Note: The project involves extensive exploration tours and sampling from water bodies all over India	<br />Rs.16,000/- p.m. for 1st &amp; 2nd year and `18,000/- p.m. for 3rd and subsequent years +HRA (as per rules)	35 years for male and 40 years for female candidate</p>

<p>How to apply</p>

<p>A walk-in-interview will be held on 04th March, 2015 at 10:00 hrs at National Bureau of Fish Genetic Resources, Lucknow. Eligible and desirous candidates fulfilling all the requirements may appear for the interview with duly filled in application giving full details of academic records and experience(s) along with attested photocopy as well as original copy of the relevant documents and a passport size photograph on the attached proforma.</p>

<p>http://www.nbfgr.res.in/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</guid>
	<pubDate>Tue, 24 Feb 2015 20:15:08 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</link>
	<title><![CDATA[A guide for complete R beginners :- Getting data into R]]></title>
	<description><![CDATA[<p>For a beginner this can be is the hardest part, it is also the most important to get right.</p><p>It is possible to create a vector by typing data directly into R using the combine function &lsquo;c&rsquo;</p><blockquote><p><strong>x </strong></p></blockquote><p>same as</p><blockquote><p><strong>x </strong></p></blockquote><p>creates the vector x with the numbers between 1 and 5.</p><p>You can see what is in an object at any time by typing its name;</p><blockquote><p><strong>x</strong></p></blockquote><p>will produce the output<strong> &lsquo;[1] 1 2 3 4 5&prime;</strong></p><p>Note that names need to be quoted</p><blockquote><p><strong>daysofweek </strong><strong>&larr; c(&lsquo;Monday&rsquo;, &lsquo;Tuesday&rsquo;, &lsquo;Wednesday&rsquo;, &lsquo;Thursday&rsquo;, &lsquo;Friday&rsquo;);</strong></p></blockquote><p>Usually however you want to input from a file. We have touched on the &lsquo;read.table&rsquo; function already.</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Now <strong>mydata</strong> is a data frame with multiple vectors</p><p>each vector can be identified by the default syntax</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$V1 mydata$V2 mydata$V3 </strong></p></blockquote><p>By default the function assumes certain things from the file</p><ul>
<li>The file is a plain text file (there are function to read excel files: <em>not covered here</em>)</li>
<li>columns are separated by any number of tabs or spaces</li>
<li>there is the same number of data points in each column</li>
<li>there is no header row (labels for the columns)</li>
<li>there is no column with names for the rows** [I&rsquo;ll explain].</li>
</ul><p><span style="text-decoration: underline;">If any of these are false, we need to tell that to the function</span></p><p>If it has a header column</p><blockquote><p><strong>mydata <em>header=T also works</em></strong></p></blockquote><p>Note that there is a comma between different parts of the functions arguments</p><p>If there is one less column in the header row, then R assumes that the 1<sup>st</sup> column of data after the header are the row names</p><p>Now the vectors (columns) are identified by their name</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$A mydata$B mydata$C </strong></p></blockquote><p># Summary about the whole data frame</p><blockquote><p><strong>summary(mydata)</strong></p></blockquote><p># Summary information of column A</p><blockquote><p><strong>summary(mydata$A) </strong></p></blockquote><p>We can shortcut having to type the data frame each time by attaching it</p><blockquote><p><strong>attach(mydata)</strong></p></blockquote><p># summary of column B as &lsquo;mydata&rsquo; is attached</p><blockquote><p><strong>summary(B)</strong></p></blockquote><p><span style="text-decoration: underline;">Two other important options for </span><em><span style="text-decoration: underline;">read.table</span></em></p><p>If is is separated only by tabs and has a header</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Really useful if you have spaces in the contents of some columns, so R does not mess up reading the columns . However if the columns or of an uneven length it will tell you.</p><p>If you know that the file has uneven columns</p><blockquote><p><strong>mydata </strong></p></blockquote><p>This causes R to fill empty spaces in a columns with &lsquo;NA&rsquo; .</p><p>The last two examples will still work with our file and give the same result as with only headers=T</p><p><span style="text-decoration: underline;">Graphs</span></p><p>to get an idea of what R is capable of type</p><blockquote><p><strong>demo(graphics)</strong></p></blockquote><p>steps through the examples, and the code is printed to the screen</p><p>We will work with simpler examples that have immediate use to biologists.</p><p>Remember to get more information about the options to a function type &lsquo;?function&rsquo;</p><p><span style="text-decoration: underline;">Histogram of A</span><span style="text-decoration: underline;"></span></p><blockquote><p><strong>hist(mydata$A)</strong></p></blockquote><p>If there was more data we could increase the number of vertical columns with the option, breaks=50 (or another relevant number).</p><blockquote><p><strong>boxplot(mydata)</strong></p></blockquote><p>We can get rid of the need to type the data frame each time by using the <strong>attach</strong> function</p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>boxplot(mydata$A, mydata$B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>same as</p><blockquote><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Scatter plot</span></p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>plot(A,B) # or plot(mydata$A, mydata$B)</strong></p></blockquote><p><strong><span style="text-decoration: underline;">SAVING an image</span></strong></p><p>Windows users (Rgui) RIGHT click on image and select which you want.</p><p><span style="text-decoration: underline;">These instructions work for everyone.</span></p><p>You need to create a new device of the type of file you need, then send the data to that device</p><p>to save as a png file (easy to load into the likes of powerpoint, also great for web applications.</p><blockquote><p><strong>png(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>or to save as a pdf</p><blockquote><p><strong>pdf(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Note</span></p><ul>
<li>Nothing will appear on screen, the output is going to the file</li>
<li>Also it may not be saved immediately but will once the device (or R) is turned quit.</li>
</ul><p>To quit R type</p><p><strong>q() # </strong>If you save your session, next time you start R, you will have your data preloaded.</p><p>Or if you want to remain in R</p><blockquote><pre><strong>dev.off() #</strong>turns of the png (or pdf etc) device, thus forces the data to save</pre></blockquote>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21539/research-associate-at-central-potato-research-institute-cpri-shimla-himachal-pradesh</guid>
  <pubDate>Wed, 11 Mar 2015 03:07:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[RESEARCH ASSOCIATE at Central Potato Research Institute (CPRI) - Shimla, Himachal Pradesh]]></title>
  <description><![CDATA[
<p>One post of Research Associate for Project Implementation Unit in the time bound project “XII Plan -–Centre of Agricultural Bio-informatics(CABIN)” are to be filled on purely contractual basis which will be co-terminus with the project as per the details given as under : </p>

<p>No of post : 01 <br />Essential qualifications: i) Ph. D degree in Bioinformatics/computers/Bio-technology. OR ii) Master’s Degree in Bioinformatics/computers/Bio-technology with 1st division or 60% marks or equivalent overall grade point average with at least two years of research experience as evidenced from fellowship/Associateship/training/other engagements. <br />Desirable qualifications: i) Working Knowledge and Published Research papers in Bio-informatics. <br />Monthly emoluments : Rs. 23,000/- + HRA . for M.Sc degree holder Rs. 24,000/- + HRA for Ph.D degree holder <br />Maximum Age limit : Research Associate – Males- 40 years &amp; Women 45 years. <br />SELECTION PROCEDURE FOR CENTRAL POTATO RESEARCH INSTITUTE (CPRI) – RESEARCH ASSOCIATE POST: </p>

<p>Written Test on 20/03/2015. <br />Shortlisted candidates will undertake face to face interview. <br />Dates are yet to be announced for the final selection <br />WALK-IN PROCEDURE FOR RESEARCH ASSOCIATE VACANCY IN CENTRAL POTATO RESEARCH INSTITUTE (CPRI): </p>

<p>Interested/eligible candidates should submit their application along with the attested copies of educational qualification (provisional degree of Masters and Ph.D is mandatory )/experience certificates and one passport size photograph to the Asstt. Admn. Officer(E-I), CPRI, Shimla-171001 at 9.30 AM on the date of interview. The candidates appearing for interview must bring original certificate with them and only those candidates possessing essential qualification as per advertisement will be interviewed. The Director, CPRI, Shimla reserves the right either to fill up the post or cancel the interview without assigning any reasons thereof. Application form is available in the website ( website: http//cpri.ernet.in). No TA/DA will be given by the Institute to the candidates. The Institute is located at Bemloe which is about 2 Kms from Main Bus Stand(Old)/3 Kms. from the Railway Station and about 5 Kms. from ISBT (Tutikandi).</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21934/ra-bioinformatics-at-bose-institute</guid>
  <pubDate>Tue, 07 Apr 2015 03:30:25 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at Bose Institute]]></title>
  <description><![CDATA[
<p>Bose Institute, Kolkata, invites online applications from Indian Citizens for recruitment of Research Associate (05 posts) under Institute Plan Programmes : Improvement of Plants : Biotechnological, Genomic and Proteomic Approaches (programme No. – I), Bioinformatics and Computational Biology (programme No. – III), Microbial Genomics and Infection Biology (programme No. – V) and Basic &amp; Applied Problems in Physical and Environmental Sciences (programme No. – VII). All the posts are tenable for one (01) year.</p>

<p>ESSENTIAL QUALIFICATION: PH.D. DEGREE IN LIFE SCIENCES / PHYSICAL SCIENCE.</p>

<p>Research Associate for Programme No. –I Specialization in the area of plant molecular biology or plant proteomic study or plant pathogen interaction.<br />Research Associate for Programme No. –I Specialization in the area of plant / fungal Biotechnology, tissue culture and molecular biology<br />Research Associate for Programme No. –III Specialization in the area of structural biology and protein crystallography.<br />Research Associate for Programme No. – V Specialization in the area of microbial physiology (metabolism) or environmental microbiology, with experience in microbial genomics and proteomics.<br />Research Associate for Programme No. – VII Specialization in the area of Theoretical High Energy Astrophysics or Astroparticle Physics. Proven record of independent research experience in Astrophysical<br />Radiation Magnetohydrodynamics or Cosmic Ray Astrophysics. Experience in numerical techniques and /or date analysis would be additional advantage.<br />Associateship : 22,000/- p.m., plus admissible H.R.A. and Medical benefit.<br />Age: Below 3 Age : Below 35 years (Relaxable in case of SC/ST/OBC/Women candidates only as per rule).<br />SELECTION PROCEDURE FOR BOSE INSTITUTE- RESEARCH ASSOCIATE POST:</p>

<p>Candidates can apply on or before 13/4/2015.<br />No detailed information about the selection procedure is mentioned in the recruitment notification.<br />HOW TO APPLY FOR RESEARCH ASSOCIATE VACANCY IN BOSE INSTITUTE:</p>

<p>Interested and eligible candidates may read the application procedures and instructions carefully before applying through online as well as submitting the hard copy of the same. Candidates those who has submitted their Ph.D. Thesis and can produce Provisional Ph.D. Certificate at the time of Interview may also apply </p>

<p>Ref<br />Bose Institute Recruitment 2015 –  ADVT. NO. : BI/IF/35/2014-15.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22040/karpagam-university-coimbatore-of-sr-prof-prof-associate-and-assistant-professors-karpagam-university-coimbatore-coimbatore-tamil-nadu</guid>
  <pubDate>Thu, 16 Apr 2015 00:30:45 -0500</pubDate>
  <link></link>
  <title><![CDATA[Karpagam University, Coimbatore, of Sr. Prof, Prof, Associate and Assistant Professors Karpagam University, Coimbatore - Coimbatore, Tamil Nadu]]></title>
  <description><![CDATA[
<p>Karpagam University, Coimbatore, Recruitment of Sr. Prof, Prof, Associate and Assistant Professors</p>

<p>Name of the College: Karpagam University, Coimbatore</p>

<p>Date of official publication: 15th April 2015</p>

<p>The newspaper wherein this job advertised: The Hindu Newspaper</p>

<p>Name of the posts: Senior Professors, Professors, Associate Professors and Assistant Professors</p>

<p>Departments:<br />Bioinformatics<br />Biotechnology<br />Qualifications/Eligibility: The candidates should have qualifications as M.E/M.Tech/M.A/M.Com/MBA/M.Sc/M.Phil/NET/SLET/Ph.D</p>

<p>Job Location: Coimbatore, TN</p>

<p>Salary: As per college norms</p>

<p>How to apply: Interested and eligible candidates are requested to apply online at http://www.karpagamuniversity.edu.in/career</p>

<p>Last date: As soon as possible from 15th April 2015</p>

<p>Reference: The Hindu Newspaper dated 15-04-2015, Coimbatore edition on 14th page</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>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22429/walk-ins-for-jrf-ans-srf-post-in-nirrh-mumbai</guid>
  <pubDate>Thu, 28 May 2015 19:04:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[Walk-ins for JRF ans SRF post in NIRRH, Mumbai]]></title>
  <description><![CDATA[
<p>Title of project- "EXPLORING THE HINGE AND TRANSMEMBRANE REGION OF HUMAN FSHR FOR DESIGN OF SMALL MOLECULE AND PEPTIDOMIMETIC MODULATORS"<br />Name of the Post- Junior Research Fellow<br />No. of vacancy- One<br />Stipend- Rs. 25000/ +30% HRA<br />Essential qualification- Candidate should be Post Graduate Degree in Life Sciences / Bioinformatics /Pharmacology/ Chemistry or any other relevant area of Biology or Graduate Degree in Professional Course with NET qualification or Post Graduate Degree in Professional Course.<br />Desirable- Candidate with Good knowledge of protein structures, docking, MD simulations will be preferred.<br />Age Limit- Not exceeding 28 Years<br />Duration of project- Upto May 2018</p>

<p>Title of project- "Analysis of the structures of known antimicrobial peptides using machine learning algorithms and molecular dynamics simulations".<br />Name of the Post- Senior Research Fellow<br />No. of vacancy- One<br />Stipend- Rs. 14000/ +30% HRA<br />Essential qualification- Candidate should be having M.Sc. degree in Life Sciences / Bioinformatics / Pharmacology/ Chemistry or any other relevant area of Biology and 2 years of research experience.<br />Desirable- Candidate with Good knowledge of protein structures, docking, MD simulations will be preferred.<br />Age Limit- Not exceeding 35 Years<br />Duration of project- Upto April 2016<br />How to Apply- Interested candidates can download the application form from below mentioned link- http://www.nirrh.res.in/links/BiodataForm.pdf<br />Candidate must bring the filled up application form along with all the relevant documents in original and one set of attested photocopies of the same and one passport size recent colour photograph.</p>

<p>Ref. - http://www.nirrh.res.in/links/job_jrf-srf.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22286/jrf-bioinformatics-pune-university</guid>
  <pubDate>Wed, 06 May 2015 06:21:09 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics @ Pune University]]></title>
  <description><![CDATA[
<p>Pune University is inviting applications from indian citizens for recruiting following posts:</p>

<p>Vacancies:<br />Junior Research Fellow-04<br />Age Limits:<br />Candidates age should be not more than 28 years.<br />Qualification:<br />Candidates should possess M.Sc in Microbiology/ Marine microbiology/Marine Biotechnology/ Bioinformatics/Zoology or equivalent degree with minimum 60% marks.<br />Selection Process:<br />Shortlisted candidates will be called for interview.<br />How to Apply:<br />Eligible candidates may send their applications in the prescribed format along with CV in an envelope should be superscribed as the "Application for the post of JRF" to Head Department of Zoology, Savitribai Phule Pune University on or before 10-05-2015.<br />Last Date:<br />10-05-2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22352/affy-has-acquired-eureka-genomics-for-15m</guid>
	<pubDate>Wed, 20 May 2015 15:11:20 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22352/affy-has-acquired-eureka-genomics-for-15m</link>
	<title><![CDATA[Affy has acquired Eureka Genomics for 15M $]]></title>
	<description><![CDATA[<p>Affymetrix Acquires Assets Of Eureka Genomics Corporation To Provide High Throughput And Economical Crop And Animal Genotyping</p><p>http://www.thestreet.com/story/13151062/1/affymetrix-acquires-assets-of-eureka-genomics-corporation-to-provide-high-throughput-and-economical-crop-and-animal-genotyping.html</p>]]></description>
	<dc:creator>Martin Jones</dc:creator>
</item>

<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>

</channel>
</rss>