<?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/28439?offset=300</link>
	<atom:link href="https://bioinformaticsonline.com/related/28439?offset=300" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<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/21625/agricul-agricultural-scientists-recruitment-board-tural-scientists-recruitment-board-new-delhi-110-012</guid>
  <pubDate>Wed, 11 Mar 2015 09:18:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[AGRICUL AGRICULTURAL SCIENTISTS RECRUITMENT BOARD TURAL SCIENTISTS RECRUITMENT BOARD NEW DELHI-110 012]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT NO. 01/2015</p>

<p>PRINCIPAL SCIENTIST Pay Band: Minimum pay of `43,000 in the PB-4 of `37400-67000/- + RGP of `10,000/-.</p>

<p>Age: The candidates must not have attained the age of 52 years as on 24.03.2015. There shall be no age limit for the Council’s employees.</p>

<p>ICAR-NATIONAL INSTITUTE OF BIOTIC STRESS MANAGEMENT, RAIPUR (CHHATTISGARH)</p>

<p>57. Principal Scientist (Agricultural Entomology) (Two post)</p>

<p>Qualifications Essential:</p>

<p>(i) Doctoral degree in Agricultural Entomology including relevant basic sciences.</p>

<p>(ii) 10 years experience in the relevant subject out of which at least 8 years should be as Scientist/ Lecturer/Extension Specialist or in an equivalent position in the Pay Band- 3 of `15600-39100 with Grade Pay of `5400/`6000/`7000/`8000 and 2 years as a Senior Scientist or in an equivalent position in the Pay Band- 4 of ` 37400-67000 with Grade Pay of ` 8700/ ` 9000.</p>

<p>(iii) The candidate should have made contribution to research/teaching/extension education as evidenced by published work/innovations and impact.</p>

<p>Desirable:</p>

<p>(i) Experience of using frontiers research tools in management of insect pests of crop plants.</p>

<p>(ii) Evidence of contributions to relevant field through publications/ patents/citation index to suggest a vision/perspective in biotic stress research.</p>

<p>61. Principal Scientist (Bioinformatics) (One post)</p>

<p>Qualifications Essential:</p>

<p>(i) Doctoral degree in Bioinformatics including relevant basic sciences. (ii) &amp; (iii) As in item no. 57 above.</p>

<p>Desirable:</p>

<p>(i) Experience of using bioinformatics for advancement of knowledge and for research on biotic stress management.</p>

<p>(ii) Evidence of contributions to relevant field through publications/patents/citation index to suggest a vision/perspective in biotic stress research.</p>

<p>http://asrb.org.in/administrator/uploads_dir/1424859407english.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21680/research-associate-at-national-research-centre-on-plant-biotechnology-new-delhi</guid>
  <pubDate>Mon, 16 Mar 2015 03:22:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate at National Research Centre on Plant Biotechnology New Delhi]]></title>
  <description><![CDATA[
<p>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.</p>

<p>ICAR-NPTC: Fibre development in flax/linseed.</p>

<p>(Job # 1) Research Associate (one) (Bioinformatics)</p>

<p>Rs.24000+ 30% HRA) for Ph.D. and for M. Sc Rs.23000/‐ (+ 30% HRA)</p>

<p>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. 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</p>

<p>ICAR-NPTC: Shade avoidance/low-light tolerance in rice.</p>

<p>General Terms &amp; Conditions applicable to all the positions: <br />Age Limit: 35 years max. (5 years relaxation for SC/ST/OBC and woman candidates as per ICAR rules). <br />The positions are purely temporary, on a contractual basis and are initially offered for one year. <br />Originals must be shown for verification. 7. Research experience (Experience certificate from previous employer to be attached): I hereby declare that the information provided above is true to the best of my knowledge. Date: Signature</p>

<p>Advertisement:</p>

<p>www.nrcpb.org/sites/default/files/ICAR-NPTC%20DBT%20RA%20SRF%20interview%2024th%20March.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21893/postdoctoral-fellowship-in-bioinformatics-and-evolutionary-genomics</guid>
  <pubDate>Wed, 01 Apr 2015 21:36:42 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Fellowship in Bioinformatics and Evolutionary Genomics]]></title>
  <description><![CDATA[
<p>Postdoctoral Fellowship in Bioinformatics and Evolutionary Genomics<br />Organization<br />National Human Genome Research Institute, National Institutes of Health<br />http://genome.gov/Staff/Baxevanis<br />Job Location<br />Bethesda, MD<br />Job Description</p>

<p>A postdoctoral training position is currently available in the Computational and Statistical Genomics Branch (CSGB) of the National Human Genome Research Institute (NHGRI). The position is located in the laboratory of Andy Baxevanis, Ph.D., whose research group uses comparative genomics approaches to better-understand the molecular innovations that drove the surge of diversity in early animal evolution. The overarching theme of Dr. Baxevanis’ research program is focused on how non-traditional animal models convey critical insights into human disease research.</p>

<p>Candidates should have or be close to obtaining a Ph.D. or equivalent degree in bioinformatics, computational biology, computer science, molecular biology, or a closely related field. Candidates with a background in evolutionary biology are particularly encouraged to apply. Programming skills and experience in the application of computational methods to genomic data are highly desirable. Applicants must possess good communication skills and be fluent in both spoken and written English. The ability to learn how to use new software and quickly become expert in its use, critical thinking, problem-solving abilities, and the ability to work semi-independently are required.<br />How to Apply</p>

<p>Interested applicants should submit a curriculum vitae, a detailed letter of interest, and the names of three potential referees to Dr. Baxevanis at andy@mail.nih.gov.<br />About Our Organization</p>

<p>The NIH Intramural Research Program is on the Bethesda, Maryland campus and offers a wide array of training opportunities for scientists early in their careers. The funding for this position is stable and offers the trainee wide latitude in the design and pursuit of their research project. The successful candidate will have access to NHGRI’s established and robust bioinformatics infrastructure, as well as resources made available through NIH’s Center for Information Technology (CIT) and the National Center for Biotechnology Information (NCBI).</p>

<p>For more information on CSGB and NHGRI’s Intramural Research Program, please see http://genome.gov/DIR/.</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/poll/view/21982/which-bioinformatics-journals-do-you-follow</guid>
	<pubDate>Fri, 10 Apr 2015 12:10:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/poll/view/21982/which-bioinformatics-journals-do-you-follow</link>
	<title><![CDATA[Which Bioinformatics Journals Do You Follow?]]></title>
	<description><![CDATA[<p><span><span>Which are your favorite bioinformatics journals? The ones that you check every month or so, or that you are subscribed to?</span></span></p>]]></description>
	<dc:creator>Tenzin Paul</dc:creator>
</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>

</channel>
</rss>