<?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/28119?offset=870</link>
	<atom:link href="https://bioinformaticsonline.com/related/28119?offset=870" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</guid>
	<pubDate>Wed, 22 Jun 2016 07:55:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</link>
	<title><![CDATA[Cheatsheet for Linux !!]]></title>
	<description><![CDATA[<p>Linux Commands Cheat Sheet<br /><br />&nbsp;&nbsp;&nbsp; File System<br /><br />&nbsp;&nbsp;&nbsp; ls &mdash; list items in current directory<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show in long format to see perimissions, size, an modification date<br /><br />&nbsp;&nbsp;&nbsp; ls -a &mdash; list all items in current directory, including hidden files<br /><br />&nbsp;&nbsp;&nbsp; ls -F &mdash; list all items in current directory and show directories with a slash and executables with a star<br /><br />&nbsp;&nbsp;&nbsp; ls dir &mdash; list all items in directory dir<br /><br />&nbsp;&nbsp;&nbsp; cd dir &mdash; change directory to dir<br /><br />&nbsp;&nbsp;&nbsp; cd .. &mdash; go up one directory<br /><br />&nbsp;&nbsp;&nbsp; cd / &mdash; go to the root directory<br /><br />&nbsp;&nbsp;&nbsp; cd ~ &mdash; go to to your home directory<br /><br />&nbsp;&nbsp;&nbsp; cd - &mdash; go to the last directory you were just in<br /><br />&nbsp;&nbsp;&nbsp; pwd &mdash; show present working directory<br /><br />&nbsp;&nbsp;&nbsp; mkdir dir &mdash; make directory dir<br /><br />&nbsp;&nbsp;&nbsp; rm file &mdash; remove file<br /><br />&nbsp;&nbsp;&nbsp; rm -r dir &mdash; remove directory dir recursively<br /><br />&nbsp;&nbsp;&nbsp; cp file1 file2 &mdash; copy file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; cp -r dir1 dir2 &mdash; copy directory dir1 to dir2 recursively<br /><br />&nbsp;&nbsp;&nbsp; mv file1 file2 &mdash; move (rename) file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; ln -s file link &mdash; create symbolic link to file<br /><br />&nbsp;&nbsp;&nbsp; touch file &mdash; create or update file<br /><br />&nbsp;&nbsp;&nbsp; cat file &mdash; output the contents of file<br /><br />&nbsp;&nbsp;&nbsp; less file &mdash; view file with page navigation<br /><br />&nbsp;&nbsp;&nbsp; head file &mdash; output the first 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail file &mdash; output the last 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail -f file &mdash; output the contents of file as it grows, starting with the last 10 lines<br /><br />&nbsp;&nbsp;&nbsp; vim file &mdash; edit file<br /><br />&nbsp;&nbsp;&nbsp; alias name 'command' &mdash; create an alias for a command<br />&nbsp;&nbsp;&nbsp; System<br /><br />&nbsp;&nbsp;&nbsp; shutdown &mdash; shut down machine<br /><br />&nbsp;&nbsp;&nbsp; reboot &mdash; restart machine<br /><br />&nbsp;&nbsp;&nbsp; date &mdash; show the current date and time<br /><br />&nbsp;&nbsp;&nbsp; whoami &mdash; who you are logged in as<br /><br />&nbsp;&nbsp;&nbsp; finger user &mdash; display information about user<br /><br />&nbsp;&nbsp;&nbsp; man command &mdash; show the manual for command<br /><br />&nbsp;&nbsp;&nbsp; df &mdash; show disk usage<br /><br />&nbsp;&nbsp;&nbsp; du &mdash; show directory space usage<br /><br />&nbsp;&nbsp;&nbsp; free &mdash; show memory and swap usage<br /><br />&nbsp;&nbsp;&nbsp; whereis app &mdash; show possible locations of app<br /><br />&nbsp;&nbsp;&nbsp; which app &mdash; show which app will be run by default<br />&nbsp;&nbsp;&nbsp; Process Management<br /><br />&nbsp;&nbsp;&nbsp; ps &mdash; display your currently active processes<br /><br />&nbsp;&nbsp;&nbsp; top &mdash; display all running processes<br /><br />&nbsp;&nbsp;&nbsp; kill pid &mdash; kill process id pid<br /><br />&nbsp;&nbsp;&nbsp; kill -9 pid &mdash; force kill process id pid<br />&nbsp;&nbsp;&nbsp; Permissions<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod ugo file &mdash; change permissions of file to ugo - u is the user's permissions, g is the group's permissions, and o is everyone else's permissions. The values of u, g, and o can be any number between 0 and 7.<br /><br />&nbsp;&nbsp;&nbsp; 7 &mdash; full permissions<br /><br />&nbsp;&nbsp;&nbsp; 6 &mdash; read and write only<br /><br />&nbsp;&nbsp;&nbsp; 5 &mdash; read and execute only<br /><br />&nbsp;&nbsp;&nbsp; 4 &mdash; read only<br /><br />&nbsp;&nbsp;&nbsp; 3 &mdash; write and execute only<br /><br />&nbsp;&nbsp;&nbsp; 2 &mdash; write only<br /><br />&nbsp;&nbsp;&nbsp; 1 &mdash; execute only<br /><br />&nbsp;&nbsp;&nbsp; 0 &mdash; no permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod 600 file &mdash; you can read and write - good for files<br /><br />&nbsp;&nbsp;&nbsp; chmod 700 file &mdash; you can read, write, and execute - good for scripts<br /><br />&nbsp;&nbsp;&nbsp; chmod 644 file &mdash; you can read and write, and everyone else can only read - good for web pages<br /><br />&nbsp;&nbsp;&nbsp; chmod 755 file &mdash; you can read, write, and execute, and everyone else can read and execute - good for programs that you want to share<br />&nbsp;&nbsp;&nbsp; Networking<br /><br />&nbsp;&nbsp;&nbsp; wget file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; curl file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; scp user@host:file dir &mdash; secure copy a file from remote server to the dir directory on your machine<br /><br />&nbsp;&nbsp;&nbsp; scp file user@host:dir &mdash; secure copy a file from your machine to the dir directory on a remote server<br /><br />&nbsp;&nbsp;&nbsp; scp -r user@host:dir dir &mdash; secure copy the directory dir from remote server to the directory dir on your machine<br /><br />&nbsp;&nbsp;&nbsp; ssh user@host &mdash; connect to host as user<br /><br />&nbsp;&nbsp;&nbsp; ssh -p port user@host &mdash; connect to host on port as user<br /><br />&nbsp;&nbsp;&nbsp; ssh-copy-id user@host &mdash; add your key to host for user to enable a keyed or passwordless login<br /><br />&nbsp;&nbsp;&nbsp; ping host &mdash; ping host and output results<br /><br />&nbsp;&nbsp;&nbsp; whois domain &mdash; get information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig domain &mdash; get DNS information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig -x host &mdash; reverse lookup host<br /><br />&nbsp;&nbsp;&nbsp; lsof -i tcp:1337 &mdash; list all processes running on port 1337<br />&nbsp;&nbsp;&nbsp; Searching<br /><br />&nbsp;&nbsp;&nbsp; grep pattern files &mdash; search for pattern in files<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir &mdash; search recursively for pattern in dir<br /><br />&nbsp;&nbsp;&nbsp; grep -rn pattern dir &mdash; search recursively for pattern in dir and show the line number found<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir --include='*.ext &mdash; search recursively for pattern in dir and only search in files with .ext extension<br /><br />&nbsp;&nbsp;&nbsp; command | grep pattern &mdash; search for pattern in the output of command<br /><br />&nbsp;&nbsp;&nbsp; find file &mdash; find all instances of file in real system<br /><br />&nbsp;&nbsp;&nbsp; locate file &mdash; find all instances of file using indexed database built from the updatedb command. Much faster than find<br /><br />&nbsp;&nbsp;&nbsp; sed -i 's/day/night/g' file &mdash; find all occurrences of day in a file and replace them with night - s means substitude and g means global - sed also supports regular expressions<br />&nbsp;&nbsp;&nbsp; Compression<br /><br />&nbsp;&nbsp;&nbsp; tar cf file.tar files &mdash; create a tar named file.tar containing files<br /><br />&nbsp;&nbsp;&nbsp; tar xf file.tar &mdash; extract the files from file.tar<br /><br />&nbsp;&nbsp;&nbsp; tar czf file.tar.gz files &mdash; create a tar with Gzip compression<br /><br />&nbsp;&nbsp;&nbsp; tar xzf file.tar.gz &mdash; extract a tar using Gzip<br /><br />&nbsp;&nbsp;&nbsp; gzip file &mdash; compresses file and renames it to file.gz<br /><br />&nbsp;&nbsp;&nbsp; gzip -d file.gz &mdash; decompresses file.gz back to file<br />&nbsp;&nbsp;&nbsp; Shortcuts<br /><br />&nbsp;&nbsp;&nbsp; ctrl+a &mdash; move cursor to beginning of line<br /><br />&nbsp;&nbsp;&nbsp; ctrl+f &mdash; move cursor to end of line<br /><br />&nbsp;&nbsp;&nbsp; alt+f &mdash; move cursor forward 1 word<br /><br />&nbsp;&nbsp;&nbsp; alt+b &mdash; move cursor backward 1 word</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/28141/csbb-v10</guid>
	<pubDate>Wed, 29 Jun 2016 07:33:05 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/28141/csbb-v10</link>
	<title><![CDATA[CSBB-v1.0]]></title>
	<description><![CDATA[<p>CSBB is a command line based bioinformatics suite to analyze biological data acquired through varied avenues of biological experiments. CSBB is implemented in Perl, while it also leverages the use of R and python in background for specific modules. Major focus of CSBB is to allow users from biology and bioinformatics community, to get benefited by performing down-stream analysis tasks while eliminating the need to write programming code. CSBB is currently available on Linux, UNIX, MAC OS and Windows platforms.</p>
<p>Currently CSBB provides 13 modules focused on analytical tasks like performing upper-quantile normalization on expression data or convert genome wide gene expression to z-scores when comparing expression data from different platforms.</p>
<p>More at&nbsp;https://github.com/skygenomics/CSBB-v1.0</p><p>Address of the bookmark: <a href="https://github.com/skygenomics/CSBB-v1.0" rel="nofollow">https://github.com/skygenomics/CSBB-v1.0</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28286/nipgr-hires-research-associate-jrf-laboratory-assistant</guid>
  <pubDate>Mon, 04 Jul 2016 20:12:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[NIPGR Hires Research Associate, JRF, Laboratory Assistant]]></title>
  <description><![CDATA[
<p>National Institute of Plant Genome Research (NIPGR), Aruna Asaf Ali Marg - Delhi, Delhi <br />₹15,000 a month<br />National Institute of Plant Genome Research (NIPGR) invites applications to recruit on vacant posts of Research Associate (RA), Junior Research Fellow (JRF) and Laboratory Assistant. Applications against these Sarkari Naukri can be submitted on or before 16 July 2016. <br />NIPGR Vacancy 2016 Details <br />1. Research Associate (RA) <br />Qualification: Ph.D. degree (awarded) in Molecular Biology/Biotechnolgy/Biochemistry/Plant Science/ Life Sciences/Bioinformatics or related field with 03 years post-doctoral research experience or 02 research papers in the journals of International repute are eligible to apply. Experience in the area of functional genomics, proteomics, metabolomics, multiomics and system biology will be preferred. <br />Age Limit: As Per Rules <br />2. Junior Research Fellow (JRF) <br />Qualification: M.Sc. degree or equivalent in Biotechnolgy/Biochemistry/Plant Science or Botany/ Life Sciences/Bioinformatics/ Molecular Biology or any other related field. Experience in advanced multiomics, big data analysis, molecular and system biology techniques will be given preference. <br />Age Limit: As Per Rules <br />3. Laboratory Assistant <br />Qualification: B.Sc. degree with 05 years working experience in government R&amp;D Laboratory assisting in the field of molecular biology and genomis. <br />Pay Scale: Rs.15000/- Per Month <br />Age Limit: As Per Rules <br />How to Apply : Duly filled-in applications in prescribed application format along with copies of required documents should be reach to: Dr. Subhra Chakraborty, Staff Scientist-VII, National Institute of Plant Genome Research (NIPGR), Aruna Asaf Ali Marg, P.O. Box NO. 10531, New Delhi – 110067 . The Last Date to submit application is 16 July 2016</p>

<p>Source: http://www.nipgr.res.in/careers/vacancies_latest.php#<br />Form at http://www.nipgr.res.in/files/careers/format_RA_JRF_LA.doc</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28546/ra-bioinformatics-at-national-bureau-of-fish-genetic-resources</guid>
  <pubDate>Mon, 25 Jul 2016 03:14:06 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA Bioinformatics at  National Bureau of Fish Genetic Resources]]></title>
  <description><![CDATA[
<p>F.No. 1(16)/2016-Admn. (DBT-BBSRC Project)<br />Research Associate /JRF Biotechnology Job vacancies in National Bureau of Fish Genetic Resources on contract basis</p>

<p>Research Associate /01 Post</p>

<p>Essential: Ph.D. in Bioinformatics or 03 years research experience after Post Graduation in Bioinformatics with at least one research paper in Science Citation Indexed (SCI) journals.</p>

<p>Desirable:  The candidate should have at least 1st Division during Graduation and Post Graduation.  Experience in assembly/ analysis/ annotation of genomic/transcriptomic data generated on next generation sequencing platforms and working knowledge on different genomic softwares.  Publications in Relevant Field.</p>

<p>Pay Scale : Rs. 36,000/- +20% HRA </p>

<p>Age: 40 years for male and 45 years for female candidates, as on the date of interview</p>

<p>Junior Research Fellow/ 01 </p>

<p>Essential: Master Degree in Biotechnology/Life Science with Specialization in Molecular Biology with NET qualification. </p>

<p>Desirable:  Research Experience in Molecular Biology. 1st Division during Graduation as well as Post Graduation. Publications in Relevant Field.</p>

<p>Pay Scale: Rs. 25,000/-+ 20% HRA for 1st and 2nd year and Rs. 28,000/-+ 20% HRA for 3rd year</p>

<p>Age: 35 years for male and 40 years for female candidates, as on the date of interview.<br />How to apply<br />A walk-in-interview will be held on 26.07.2016 at 10:00 hrs. at ICAR-National Bureau of Fish Genetic Resources, Lucknow.</p>

<p>More at http://www.nbfgr.res.in/Recruitments.aspx</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/28564/dbt-%E2%80%93-bioinformatics-industrial-training-programme-biitp-2016-%E2%80%93-17</guid>
	<pubDate>Wed, 27 Jul 2016 04:09:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/28564/dbt-%E2%80%93-bioinformatics-industrial-training-programme-biitp-2016-%E2%80%93-17</link>
	<title><![CDATA[DBT – Bioinformatics Industrial Training Programme (BIITP) 2016 – 17]]></title>
	<description><![CDATA[<p>BIITP is a programme of Department of Biotechnology (DBT), Ministry of Science and Technology, Government of India, managed by Biotech Consortium India Limited (BCIL).The objective of BIITP is to provide an opportunity to bioinformatics students to acquire practical skills and experience by working on projects alongside industry experts as well as to provide an opportunity for the industry to identify potential employees.</p><p><strong>DBT Invites online applications from the bioinformatics&nbsp;students and requisitions from biotech/bioinformatics companies.</strong></p><p><strong>Biotech Industry</strong>&nbsp;:</p><p>Biotech/Bioinformatics companies interested to provide hands on industrial training to the students of Bioinformatics under BIITP may apply online. The companies would have no obligation towards any payments to trainees. The companies would be paid bench fee to cover expenses towards training. Trainees would be provided to companies subject to availability.</p><p><strong>Attn: Bioinformatics Students</strong></p><p>Bioinformatics students interested in training in biotech / bioinformatics companies may apply online.&nbsp;<strong>Stipend of Rs. 10,000/- per month</strong>&nbsp;will be paid to candidates placed for training. The candidates will be selected for training through an interview.</p><p><strong>Eligiblity</strong>&nbsp;:</p><p>a) B.E /B.Tech./M.Sc./M.Tech./Advanced Post Graduate Diploma in Bioinformatics from an Indian recognized university with minimum 55% marks or equivalent grade at highest degree/diploma completed in the year 2015 or 2016 are only eligible to apply.</p><p>b) The Advanced Post Graduate diploma should be of at least one year duration after graduation.</p><p>c)&nbsp; Students whose result of last semester/final year is not declared can also apply mentioning their marks upto the semester/year upto which result declared. The final result with original mark sheet(s) of all the semesters/years will have to be produced at the time of interview.</p><p><strong>Application Procedure</strong>&nbsp;:</p><p>The online application form is available below :</p><p><strong><a href="https://www.biotecnika.org/2016/07/dbt-bioinformatics-industrial-training-programme-biitp-2016-17/?xurl=%3A%2F%2Fwww.bcil.nic.in%2Fbiitp2016-17%2Fregistration1.asp" target="_blank">Application Form For Students (New User)</a></strong></p><p><strong><a href="https://www.biotecnika.org/2016/07/dbt-bioinformatics-industrial-training-programme-biitp-2016-17/?xurl=%3A%2F%2Fwww.bcil.nic.in%2Fbiitp2016-17%2Fregistration.asp%3FT1%3DCompany" target="_blank">Requisition form for companies (New User)</a></strong></p><p><strong><a href="https://www.biotecnika.org/2016/07/dbt-bioinformatics-industrial-training-programme-biitp-2016-17/?xurl=%3A%2F%2Fwww.bcil.nic.in%2Fbiitp2016-17%2Findex1.asp" target="_blank">Already registered User Click Here</a></strong></p><p>The following documents are to be sent to Mr. Manoj Gupta, Manager, Biotech Consortium India Limited, 5th floor, Anuvrat Bhawan, 210, Deen Dayal UpadhyayaMarg, New Delhi-110002.</p><p>More at&nbsp;http://www.bcil.nic.in/biitp2016-17/index.asp</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28592/bioinformatics-technical-position-at-cdac-pune-india</guid>
  <pubDate>Mon, 01 Aug 2016 03:36:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics Technical Position at CDAC Pune - India]]></title>
  <description><![CDATA[
<p>CDAC Pune Recruitment 2016 – Apply Online for Technical Positions: Department of Information Technology under the Ministry of Communications and Information Technology, Government of India, Centre for Development of Advanced Computing (C-DAC), Pune has advertised notification for the recruitment of Technical vacancies for for PwD candidates n direct recruitment basis. Eligible candidates can apply Online from 27-07-2016 at 10.00 AM to 31-08-2016 at 18.00 PM.. Other information like age limit, educational qualification, selection process &amp; how to apply are given below… </p>

<p>CDAC Pune Vacancy Details:<br />Total No. of Posts: 23 </p>

<p>Name of the Post: Technical </p>

<p>Name of the Discipline:<br />A. Computer Science/ Information Technology and Allied disciplines. </p>

<p>B.Electronics Communications/ Electrical/ Telecommunication/Instrumentation &amp; Control/ Medical Electronics/ Power Electronics/ VLSI &amp; Embedded System and Allied disciplines. </p>

<p>C.Biotechnology/ Bioinformatics/ Health informatics/ Geoinformatics/ Meteorology/ Environmental Science/ Ocean Sciences/Oceanography/Environmental Engineering </p>

<p>1. Visually Impaired: 09 Posts </p>

<p>2. Hearing Impaired: 08 Posts </p>

<p>3. Orthopedically Impaired: 06 Posts </p>

<p>Educational Qualification : Candidates should possess Graduation in relvany discpline with relevant experience. </p>

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

<p>How to Apply: Eligible candidates can apply online through the website www.cdac.in from 27-07-2016 at 10.00 AM to 31-08-2016 at 18.00 PM. </p>

<p>More at http://www.cdac.in/index.aspx?id=current_jobs</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28819/research-project-at-iit-madras</guid>
  <pubDate>Wed, 17 Aug 2016 03:26:06 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Project at IIT, Madras]]></title>
  <description><![CDATA[
<p>Two project positions are available to work on (i) molecular modeling and molecular dynamics simulations and (ii) development of bioinformatics databases and tools at Protein Bioinformatics Lab, Department of Biotechnology, IIT Madras.</p>

<p>Duration : Initially for a period of one year. Extendable based on the performance.</p>

<p>Qualification: (i) MSc in Bioinformatics, Biotechnology, Physics, Biophysics, Biochemistry,Computer Science with NET (UGC/CSIR/GATE/BINC/INSPIRE etc) qualification. (OR) (ii) M. Tech in Bioinformatics, Biotechnology</p>

<p>Additional qualification: Programming skills</p>

<p>Candidates who fulfill the requirements of IIT have the possibility to register for PhD.</p>

<p>Fellowship: Rs.25,000 and HRA.</p>

<p>Applicants are encouraged to send the CV to the coordinator by postal mail and e-mail. The deadline to receive the applications is 31st August 2016. The project coordinator has the discretion to restrict the number of candidates to be called for interview to a reasonable limit on the basis of qualifications and experience higher than the minimum prescribed in the announcement.</p>

<p>Project Co-ordinator:</p>

<p>Dr. M. Michael Gromiha <br />Department of Biotechnology <br />Indian Institute of Technology Madras <br />Chennai 600036 <br />Email: gromiha@iitm.ac.in</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29017/walk-in-interview-jipmer</guid>
  <pubDate>Mon, 05 Sep 2016 04:01:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[WALK-IN INTERVIEW @ JIPMER]]></title>
  <description><![CDATA[
<p>Department of Preventive and Social Medicine<br />, JIPMER, Puducherry –605006</p>

<p>WALK-IN INTERVIEW</p>

<p>JIP/PSM/INDO-US TB/ 2016/</p>

<p>Walk-in-interview for the following vacant posts funded by Department of Biotechnology, Govt.of India for the project entitled “Biomarkers for Risk of Tuberculosis and for Tuberculosis Treatment Failure and Relapse” in the Department of Preventive &amp; Social Medicine, JIPMER, Puducherry.</p>

<p>3. Technical Assistant</p>

<p>MCA/ MSc in Biostatistics/ MSc in Computational Biology from any recognized University @ Rs.23,220 1</p>

<p>Interested candidates may attend the walk-in interview with written screening test on 07, September 2016 at 9.30 A.M in the Dept. of Preventive and Social Medicine, IV Floor, Administrative Block, JIPMER.</p>

<p>The applicants are requested to bring the filled in application form and bio-data with original certificates for verification.</p>

<p>More Info: http://jipmer.edu.in/wp-content/uploads/2016/09/RECRUITEMENTsite-protocol-7.9.2016.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28802/research-associate-bioinformatics-recruitment-in-icgeb-new-delhi</guid>
  <pubDate>Tue, 16 Aug 2016 03:38:05 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics recruitment in ICGEB, New Delhi]]></title>
  <description><![CDATA[
<p>Research Associate Bioinformatics recruitment in ICGEB, New Delhi </p>

<p>Project :“Genetic Transformation and Development of Elite Transgenic Maize (Zea mays L.) for Biotic and Abiotic Stresses Tolerance”.</p>

<p>Qualification: Ph.D. degree in:Biotechnology/Bioinformatics/Biochemistry/Plant Molecular Biology/Plant Physiology/Botany or any related area with evidence of prior experience in maize transformation.</p>

<p>Additional experience in plant transformation of any cereal crop would be preferable.</p>

<p>The appointment would initially be for one year.</p>

<p>How to apply<br />Interested applicants should send their detailed CV including brief synopsis regarding the previous research experience (along withcontact email address by email) to: Dr. Tanushri Kaul (tanushri@icgeb.res.in). Group Leader, Nutritional Improvement of Crops Group, International Centre for Genetic Engineering and Biotechnology, Aruna Asaf Ali Marg, New Delhi-110 067.</p>

<p>Closing date for applications: 22 August 2016.</p>

<p>More at http://www.icgeb.org/vacancies.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/28851/senior-manager-bioinformatics-operations-at-rgcb-india</guid>
  <pubDate>Fri, 19 Aug 2016 04:37:17 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Manager (Bioinformatics Operations) at RGCB, India]]></title>
  <description><![CDATA[
<p>Senior Manager (Bioinformatics Operations) <br />Rajiv Gandhi Centre for Biotechnology (RGCB) - Thiruvananthapuram, Kerala <br />₹15,600 - ₹39,100 a month<br />Rajiv Gandhi Centre for Biotechnology (RGCB) invites applications for the following positions from Indian citizens with prescribed qualifications </p>

<p>Senior Manager (Bioinformatics Operations) <br />No. of posts: 01 (General) <br />Pay Scale: PB-3 15600-39100 + Grade Pay Rs.6600/- <br />Min. Qualification: PhD in Bioinformatics, , Life Sciences or Computer Science applied to biological questions. <br />A Min. 5 years of experience <br />Age limit: 40 years as on August 01, 2016</p>

<p>More at http://www.rgcb.res.in/positions.php</p>
]]></description>
</item>

</channel>
</rss>