<?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/22050?offset=90</link>
	<atom:link href="https://bioinformaticsonline.com/related/22050?offset=90" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/21095/ra-walk-in-interview-actrec</guid>
  <pubDate>Mon, 09 Feb 2015 01:06:16 -0600</pubDate>
  <link></link>
  <title><![CDATA[RA WALK-IN-INTERVIEW @ ACTREC]]></title>
  <description><![CDATA[
<p>No. ACTREC/Advt./ 7 /2015</p>

<p>Title of the Project<br />Research Associate<br />(One position)<br />DBTs Biotechnology/Bioinformatics training centre<br />PI Dr. Ashok Varma	</p>

<p>Duration of the Project Six Months from the date of appointment, can be extended further for six month.</p>

<p>Date &amp; Time: 17th February, 2015 at 10.00 a.m.</p>

<p>Venue: Meeting Room, 3rd floor, Khanolkar Shodhika, ACTREC</p>

<p>Essential Qualifications and Experience:</p>

<p>Ph.D. Degree in Basic Sciences from recognized University. Research experience in Bioinformatics or on gene cloning, protein purification, and crystallization.</p>

<p>*M.Sc. degree obtained after a one year course will not be considered.</p>

<p>Selected candidate will have to join at the earliest.</p>

<p>Consolidated Salary: Rs.28,600/- p.m. {Rs.22,000/- + 30% HRA}</p>

<p>The work progress of the candidate will be monitored and extension after 6 months will depend on satisfactory progress of the work.</p>

<p>Candidates fulfilling these requirements should pre-register by sending their application in the prescribed format with recent CV and contact details of 2 referees by e-mail to ‘program.office@actrec.gov.in’ latest by 17.00 hrs on 12-02-2015.<br />The interviews would be held on 17th February, 2015 and will be only for the pre-registered candidates. Candidates should report between 09.30 to 10.00 a.m. in Steno Pool, 3rd floor, Khanolkar Shodhika, ACTREC, Kharghar, Navi Mumbai.<br />No T.A./D.A. will be admissible for attending the interview.</p>

<p>At the time of Interview the candidate should bring original certificates along with CV with contact details of 2 referees and submit the photocopies (attested) of the certificates, with a recent passport size photograph.</p>

<p>All correspondence should be strictly made only to ‘program.office@actrec.gov.in’ as indicated.</p>

<p>Advertisement: www.actrec.gov.in/data%20files/2015/AV-RA-DBT-28-1-15.docx</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/22283/iihr-recruitment-2015-%E2%80%93-srf-project-asst-research-associate-posts</guid>
  <pubDate>Wed, 06 May 2015 06:13:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[IIHR Recruitment 2015 – SRF, Project Asst &amp; Research Associate Posts]]></title>
  <description><![CDATA[
<p>IIHR Recruitment 2015 – SRF, Project Asst &amp; Research Associate Posts: ICAR-Indian Institute of Horticultural Research (IIHR) has published a notification for the recruitment of Senior Research Fellow, Project Assistant and Research Associate vacancies on temporary basis. Eligible candidates may apply in prescribed application format on or before 15-05-2015. Other details like age, educational qualification, selection process, how to apply are given below…</p>

<p>IIHR Vacancy Details:<br />Total No. of Posts: 14<br />Name of the Post:<br />1. Senior Research Fellow: 12 Posts<br />2. Project Assistant: 01 Post<br />3. Research Associate: 01 Post</p>

<p>Age Limit: Candidates age limit is 40 years for men &amp; 45 years for women for RA post, 35 years for men &amp; 40 years for women for SRF post, 30 years for men &amp; 35 years for women for JRF post and 21 to 40 years for Other as on closing date of receipt of applications. Age relaxation is applicable as per rules.</p>

<p>Educational Qualification: Candidates should possess M.Sc (Ag) Plant Pathology or Microbiology or Biotechnology or Biochemistry or M.Tech (Ag) or Bioinformatics for SRF Posts, 10th class with experience in workshop (welding fitting) for Project Asst Post and M.Sc (Ag) Plant Pathology or M.Sc (Ag) Biotechnology or Ph.D in Plant Pathology or Agricultural Biotechnology for RA Post.</p>

<p>Selection Process: Candidates will be selected based on their performance in interview.</p>

<p>How to Apply: Eligible candidates may send their application in the prescribed format along with attested copies of relevant certificates and should mention name of PI/ Co-PI, Item No. of the Post &amp; name of the post clearly on the application as well as on the cover to the Concerned PI/ Co-PI, Indian Institute of Horticultural Research, Hessaraghatta Lake Post, Bengaluru-560089 on or before 15-05-2015 and attend the interview along with originals, two passport size photographs on 26 &amp; 27-05-2015 from 10:00 AM Onwards.</p>

<p>Important Dates:<br />Last Date for Receipt of Applications: 15-05-2015.<br />Date &amp; Time of Interview: 26 &amp; 27-05-2015 from 10:00 AM Onwards.<br />Venue: IIHR Campus.</p>

<p>More at http://www.iihr.ernet.in/content/srf-jrf-application-format</p>
]]></description>
</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/22072/bioinformatics-jrfrasrf-position-at-indian-institute-of-science-education-and-research-iiser-kolkata-kolkata-west-bengal</guid>
  <pubDate>Fri, 17 Apr 2015 04:11:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics JRF/RA/SRF position at Indian Institute of Science Education and Research (IISER Kolkata) - Kolkata, West Bengal]]></title>
  <description><![CDATA[
<p>Research Position in Computational Biology in the group of Shree P. Pandey Positions available in the area of NGS data analysis, bioinformatics, plant genomics</p>

<p>Project Description: Projects involves high throughput analysis of data mostly generated by massively parallel sequencing (RNA-Seq and small-RNA-Seq), microarrays and related platforms. We are looking for highly motivated and bright individuals interested in high-throughput cutting-edge data analyses methods in genomics (computational positions). Available positions: Applications are invited from suitable candidates in both, the Max Planck India Partner Program and the CRP Wheat Program for openings at the levels:</p>

<p>Post Name-Qualification-Salary:<br />Project assistant – Master’s – Rs. 14000<br />Project fellow (junior data analyst) – Masters + research experience – Rs. 16000<br />Research fellow (senior data analyst) – Masters + adequate research experience/desirable skill sets – Rs. 22000<br />Research Associated – PhD (&lt; 1yr) /&gt; 1 yr experience – Rs. 28000 / Rs. 32000<br />Essential qualification: MSc/MTech/PhD (or other suitable qualification) in discipline related to bioinformatics, computational biology, computer application (or equivalent)/ ‘Advance Post-Graduate Diploma in Bioinformatics’. Proficiency in one of the programming languages or statistics (proficient in R for example) is compulsory.<br />Desirable qualification: 1. Programming experiences in at least one low level language such as C/C++ and one scripting language such as Perl/Python/PHP and knowledge of SQL/MySQL. 2. Substantial experience in the linux or other unix environments. 3. Experience of working in projects on Bioinformatics, Genetics or Biological application areas/Computational and Statistical analysis (e.g. using R or Matlab). Experience in the field of genomics (NGS, microarrays, genome annotation), database development and management, software development, systems and network biology (or related fields) will be preferred.<br />SELECTION PROCEDURE FOR INDIAN INSTITUTE OF SCIENCE EDUCATION AND RESEARCH (IISER KOLKATA) – RESEARCH ASSOCIATE &amp; MORE VACANCIES POST:</p>

<p>Candidates can apply on or before 30/04/2015<br />No Detailed information about the selection process is mentioned in the recruitment notification<br />HOW TO APPLY FOR RESEARCH ASSOCIATE &amp; MORE VACANCIES IN INDIAN INSTITUTE OF SCIENCE EDUCATION AND RESEARCH (IISER KOLKATA):</p>

<p>Applications should contain CV along with brief description (maximum 1 page) of research conducted (highlighting skills and experience) till now. Applications should be sent by email to Shree P. Pandey, Department of Biological Sciences, IISER-Kolkata, Mohanpur Campus, West Bengal within 2 weeks. Interviews will be scheduled within 10 days of closing of applications. E-mail: sppiiserkol@gmail.com, sppandey@iiserkol.ac.in<br />For more details visit: http://www.iiserkol.ac.in/~sppandey</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22235/project-fellow-bioinformatics-at-central-drug-research-institute</guid>
  <pubDate>Mon, 27 Apr 2015 20:15:45 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Fellow Bioinformatics at Central Drug Research Institute]]></title>
  <description><![CDATA[
<p>Project Fellow (Bioinformatics)<br />Central Drug Research Institute<br />Address: Chattar Manzil, M.G.Road, Kaisarbagh<br />Postal Code: 226001<br />City: Lucknow<br />State: Uttar Pradesh<br />Pay Scale: Rs.16,000/- (fixed) p.m.<br />Educational Requirements: M.Sc. in Bioinformatics with 55% marks for Gen. &amp; OBC and 50% marks for SC/ST candidates, Physically and Visually handicapped candidates<br />Experience Requirements: Experience in computer-assisted scientific research in the area of Drug Design including Bio- molecular modeling and simulation studies, Virtual screening, pharmacophore perception, QSAR etc. Familiarity with Linux/Unixbased computer systems and required to participate and contribute to the development and application of computational models for the design and discovery of novel molecules as inhibitors or chemical probes<br />Details will be available at: http://cdriindia.org/uploaded/advt_no01-2015.pdf</p>

<p>How To Apply: Eligible candidates required to report for the Interview at 9:00 A.M. sharp on 11-05-2015 (For Position Code No. 001 to 009) and 12-05-2015 (For Position Code No. 010 to 016). Candidates reporting after 10:00 A.M will not be allowed to attend the interview. Eligible candidates may appear before the Selection Committee for interview on the date and time mentioned above at CDRI, B.S. 10/1, Sector 10, Jankipuram Extension, Sitapur Road, Lucknow-226031. Eligible candidates must bring with them duly filled up application form (which can be downloaded from our website www.cdriindia.org), along with Original certificates as well as attested copies of certificates of examinations starting from matriculation, date of birth, caste certificate (in case of SC/ST/OBC) experience certificate, publication, if any and recent passport size photograph etc. Original documents are essential for verification of the particulars quoted by the candidate in the application form and candidate failed to produce original documents at the time of verification, shall not be allowed to attend the interview. Any request for relaxation in this regard shall not be entertained.<br />Detail of Interview: 11-05-2015<br />Age Limit: 28 Years</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22269/school-of-life-sciences-jawaharlal-nehru-university-vacancy-of-jrf-srf-ra-in-csir-funded-project</guid>
  <pubDate>Wed, 29 Apr 2015 21:26:19 -0500</pubDate>
  <link></link>
  <title><![CDATA[School of Life Sciences, Jawaharlal Nehru University vacancy of JRF / SRF / RA in CSIR funded Project]]></title>
  <description><![CDATA[
<p>School of Life Sciences, Jawaharlal Nehru University has issued notification dated 27.04.2015 to fill the vacancy of JRF / SRF / RA in CSIR funded Projec entitled "Structural and functional characterization of serine biosynthetic pathway enzymes from entamoeba histolytica". It is good chance to get job with IITKGP and brighten your future. Learn eligibility criteria and apply on or before 08.05.2015.</p>

<p>Employer:	Jawaharlal Nehru University<br />Address:	Dr. S. Gourinath, Principal Investigator, School Of Life Sciences, Jawaharlal Nehru University, New Delhi-110067<br />Email:	not mentioned / provided for this job post<br />URL:	http://www.jnu.ac.in/Career/currentjobs.htm<br />Phone:	011 2674 2575<br />Skills:	not mentioned / required for this job post<br />Experience:	Experience in molecular biology, structural biology and bioinformatics is desired<br />Education:	M.Sc. in any field of life sciences.<br />Job Location:	New Delhi, Delhi, India   (View Jobs in New Delhi,   Jobs in Delhi,   Jobs in India)</p>

<p>Job Description: School of Life Sciences, Jawaharlal Nehru University vacancy of JRF / SRF / RA in CSIR funded Projec</p>

<p>Name of the Post: JRF / SRF / RA</p>

<p>Salary: As per rules</p>

<p>Required Job Profile:</p>

<p>Candidate must possess M.Sc. in any field of life sciences.</p>

<p>Desired Job Profile:</p>

<p>Candidate having NET - CSIR or UGC and experience in molecular biology, structural biology and bioinformatics is desired and experience with publication is preferred.</p>

<p>How to apply:</p>

<p>Eligible and interested candidates should need to apply with complete details to the above mentioned address on or before 08.05.2015.</p>

<p>Refer to http://www.jnu.ac.in/Career/currentjobs.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22437/jrf-bioinformatics-icar-national-research-centre-for-orchids-pakyong</guid>
  <pubDate>Thu, 28 May 2015 19:33:19 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF Bioinformatics @ ICAR - National Research Centre for Orchids  Pakyong]]></title>
  <description><![CDATA[
<p>ICAR - National Research Centre for Orchids</p>

<p>Pakyong</p>

<p>F.No:NRCO/Admn/DBT /136 /</p>

<p>Walk-in-Interviews will be held at 737106, Sikkim for the post of 01 (One Project ‘DBT’s Twinning programme for the NE’ titled “Assessment of some fragrant orchids of north-east India for sustainable improvement of community livelihood”, indicated below. The appointment will be on contractual basis and the incumbents shall not have any regular appointment in ICAR.</p>

<p>‘DBT’s Twinning programme for the NE’ titled “Assessment of chemical and genetic divergence of some fragrant orchids of north-east India for sustainable improvement of community livelihood”</p>

<p>Junior Research Fellow (One post)</p>

<p>Essential Qualification : a. MSc (with NET qualification) / M.Tech degree (with or without NET) with minimum 55% marks in Biotechnology/ Bioinformatics/ Molecular Biology or any other related field.</p>

<p>Desirable Qualification: Computer Skills (Linux, Perl, Java, MySQL) with experience in advanced molecular Biology techniques</p>

<p>2nd June 2015</p>

<p>Advertisement: www.nrcorchids.nic.in/Employments/Vacancy%20-%20JRF.pdf</p>
]]></description>
</item>

</channel>
</rss>