<?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/4716?</link>
	<atom:link href="https://bioinformaticsonline.com/related/4716?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24297/bioinformatics-walkin-at-nii</guid>
  <pubDate>Fri, 04 Sep 2015 21:48:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics WalkIn at NII]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT OF WALK-IN-INTERVIEW</p>

<p>NAME OF THE POST : Bioinformatician (Part time 3 days in a week) (One Position only)</p>

<p>DURATION : One Year</p>

<p>NAME OF THE PROJECT : Next generation sequencing facility</p>

<p>EDUCATIONAL QUALIFICATIONS : At least a Masters degree in Bioinformatics and Bachelors degree in any stream of life sciences</p>

<p>REQUIREMENTS :</p>

<p>Around 5 years of experience and proven track record in next generation sequence data analysis (supported by publications in peer-reviewed journals), ability to analyze transcriptomics, Chip-seq, and small RNA –seq data.</p>

<p>: Should have the ability to analyze raw primary data generated by Illumina next generation sequencing platforms and create / troubleshoot custom analysis Pipelines.</p>

<p>Should have ability to handle all downstream secondary and tertiary data analysis using commercially available as well as open source softwares (transcriptomics, ChIP-seq, small RNA-seq)</p>

<p>Apart from these, the applicant should have knowledge of the following: Programming: Perl and Python. Operating system:</p>

<p>Linux and Windows. NGS Analysis tools: Maq, BWA, Bowtie, SAM tools, BEDTools, MACS, Galaxy, FastQC, Bismark, MEDIPS, Tophat, Cufflinks, AvadisNGS, CLC Genomics Workbench, Galaxy, BaseSpace, Trinity Statistics: Microsoft Excel and R. Database: MySQL Genome Browser: UCSC, Ensemble, IGV, IGB Motif Analysis Tools: MEME Suite, Transfac and RSAT Functional Annotation Tools: DAVID, GeneCodis, Gene Cards Networking Tools: Cytoscape</p>

<p>EMOLUMENTS : The incumbent will be paid a fee of Rs. 2000/- per sitting/ per day.</p>

<p>SCIENTIST NAME : Dr. Arnab Mukhopadhyay,</p>

<p>Staff Scientific V Next generation sequencing facility</p>

<p>SCIENTIST’S E-MAIL ID : arnab@nii.ac.in</p>

<p>WALK IN INTERVIEW ON : 18th September, 2015</p>

<p>REGISTRATION OF CANDIDATES: 10.30 AM to 11.00 AM</p>

<p>PLEASE NOTE- 1. CANDIDATE MAY FILL UP APPLICATION IN THE PRECRIBED FORMAT ALONG WITH NECESSARY DOCUMENTS FOR VERIFICATION. 2. APPLICATIONS CONTAINING INCOMPLETE INFORMATION SHALL NOT BE ENTERTAINED. 3. DATE OF PASSING THE EXAMINATIONS MUST BE INDICATED CLEARLY. 4. ONLY REGISTERED CANDIDATES WILL BE INTERVIEWED. 5. NO TA/DA WILL BE PAID FOR ATTENDING THE INTERVIEW PRESCRIBED FORM 1. NAME 2. FATHER’S NAME 3. MOTHER’S NAME 4. DATE OF BIRTH 5. SEX (MALE/FEMALE) 6. CATEGORY (SC/ ST/ OBC/ PH) 7. ADDRESS a. (CORRSPONDENCE) b. (PERMANENT) 8. E MAIL, TELEPHONE NO. &amp; MOBILE No (if any) 9. ACADEMIC &amp; PROFESSIONAL QUALIFICATIONS NAME OF EXAMINATION PASSED WITH SUBJECTS YEAR OF PASSING BOARD/ UNIVERSITY PERCENTAGE/ DIVISION REMARKS 10. PAST EXPERIENCE &amp; PRESENT EMPLOYMENT, IF ANY 11. CANDIDATES SHOULD STATE CLEARLY WHETHER THEY HAVE BEEN AWARDED PH.D DEGREE OR THESIS HAS BEEN SUBMITTED. 12. HAVE YOU APPLIED FOR A POSITION EARLIER IN THE INSTITUTE? IF SO:- (1) THE DETAILS OF THE PROJECT AND PROJECT INVESTIGATOR (2) IF CALLED FOR INVERVIEW, RESULTS THEREOF</p>

<p>More at http://www1.nii.res.in/sites/default/files/walkininterview-18sept2015.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9242/check-the-size-of-a-directory-free-disk-space</guid>
	<pubDate>Mon, 17 Mar 2014 02:35:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9242/check-the-size-of-a-directory-free-disk-space</link>
	<title><![CDATA[Check the Size of a directory &amp; Free disk space.]]></title>
	<description><![CDATA[<p>The amount of databases we bioinformatician deal are just HUGE &hellip; In such cases, we always need to check our server for free spaces etc. I planned this article to explains 2 simple commands that most bioinformatician want to know when they start using Linux / BioLinux. First: Size of a directory (du) and and second: free disk space that exists on your machine (df).</p><p><br /><strong>'du' &ndash; Check the size of a directory</strong></p><p><br />$ du<br />This command ( du) gives you a list of directories that exist in the current working directory along with their sizes in kilobytes (default). The last line of the output gives you the total size of the current directory including its subdirectories. <br /><br />$ du /home/jin1<br />The above command would give you the directory size of the directory /home/david<br /><br />$ du -h<br />The same &ldquo;du&rdquo;command with some flag gives you a better output than the default one. The option '-h' stands for human readable format. Therefore, in order to print the sizes of the files / directories in your desire notation use this time suffixed with a 'k' if its kilobytes and 'M' if its Megabytes and 'G' if its Gigabytes.<br /><br />$ du -ah<br />If you are interested in checking everything present in a folder use above mentioned command. It gives us not only the directories but also all the files that are present in the current directory. The &ldquo;-a&rdquo; flag displays the filenames along with the directory names in the output. <br /><br />$ du -c<br />This gives you a grand total as the last line of the output. So if your directory occupies 30MB the last 2 lines of the output would be 30M.<br /><br />$ du -s<br />Use this command to displays a summary of the directory size. It is the simplest way to know the total size of the current directory.<br /><br />$ du -S<br />This would display the size of the current directory excluding the size of the subdirectories that exist within that directory. So it basically shows you the total size of all the files that exist in the current directory.<br /><br />$ du --exculde=mp3<br />Several times it required to exclude some directory in our size calculation. In such cases the above command would display the size of the current directory along with all its subdirectories, but it would exclude all the files having the given pattern present in their filenames.</p><p><br /><strong>'df' - finding the disk free space / disk usage</strong><br /><br />$ df<br />Hmmm &hellip; now &ldquo;df&rdquo; command is really useful, and I guess you are going to use it over time. Typing the above command, outputs a table consisting of 6 columns. All the columns are very easy to understand. Remember that the 'Size', 'Used' and 'Avail' columns use kilobytes as the unit. The 'Use%' column shows the usage as a percentage which is also very useful.<br /><br />$ df -h<br />Displays the same output as the previous command but the '-h' indicates human readable format. Hence instead of kilobytes as the unit the output would have 'M' for Megabytes and 'G' for Gigabytes.<br /><br />Example: Linux installed on /dev/hda1<br />$ df -h | grep /dev/hda1</p><p><br />All right, this is not the only option to check the sizes and free spaces but there are a few more options that can be used with 'du' and 'df' . I will discuss it later.<br /><br /></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/20368/india-innovates</guid>
	<pubDate>Mon, 12 Jan 2015 02:21:40 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/20368/india-innovates</link>
	<title><![CDATA[India Innovates]]></title>
	<description><![CDATA[<p>The India Innovation Growth Programme is a joint initiative of the Department of Science and Technology, Govt. of India; Lockheed Martin Corporation; Indo-US Science and Technology Forum, Federation of Indian Chambers of Commerce and Industry; Stanford Graduate School of Business and the IC2 Institute at the University of Texas. More at http://www.indiainnovates.in/B</p><p>Address of the bookmark: <a href="http://www.indiainnovates.in/" rel="nofollow">http://www.indiainnovates.in/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</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/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>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29208/srf-bioinformatics-job-position-in-national-institute-of-plant-genome-research-nipgr</guid>
  <pubDate>Mon, 19 Sep 2016 05:43:38 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF Bioinformatics job position in National Institute of Plant Genome Research (NIPGR)]]></title>
  <description><![CDATA[
<p>SRF Bioinformatics job position in National Institute of Plant Genome Research (NIPGR)<br />Title : “Transcriptome and small RNA diversity analysis of developing seed contrasting rice varieties” <br />Qualification : Candidates having M.Sc./M.Tech. degree or equivalent (with minimum 60% marks) in Bioinformatics with a minimum of two years of post M.Sc./M.Tech research experience are eligible to apply.<br />No. of Post : 01<br />How to apply<br />Application should reach to Dr. Pinky Agarwal, Staff Scientist, National Institute of Plant Genome Research (NIPGR) Aruna Asaf Ali Marg, P.O. Box NO. 10531, New Delhi - 110067 on or before 30/09/2016</p>

<p>More at http://www.nipgr.res.in/careers/vacancies_latest.php#</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29263/srf-bioinformatics-at-bose-institute-india</guid>
  <pubDate>Thu, 29 Sep 2016 09:39:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF Bioinformatics at Bose Institute, India]]></title>
  <description><![CDATA[
<p>Advt. No. S/DPB(CB)/17/2016-17 <br />Junior Research Assistant/ Senior Research Assistant  Job vacancies in Bose Institute on temporary basis<br />Project Title : “Genome wide transcriptome analysis to identity MYMIV-stress related genomic resources of blackgram”<br />Junior Research Assistant <br />Qualification : Good academic record in B.Sc. and M.Sc. in Botany or Biotechnology from reputed Universities. Must have good practical hand, this should be certified by two Senior/reputed PG teachers on a scale of 10. <br />Desirable : Preference will be given to those who already have some research experience (for at least 2 months). <br />Consolidated Pay : Rs. 16,400/- p.m. <br />Age Limit : Below 28 years (relaxable in case of SC/ST/OBC/Women candidates only as per rules).<br />Senior Research Assistant <br />Qualification : B.Sc. in Biotechnology and M.Sc. in Biotechnology or Bioinformatics. Hands on training in Bioinformatics. At least two Research Publications with Bioinformatics components. <br />Desirable : Preference will be given to the candidates who have previous experience in Next Gen Sequencing data analysis of genomic/transcriptome/miRNA. <br />Consolidated Pay : Rs. 18,700/- p.m.  <br />Age Limit : Below 30 years (relaxable in case of SC/ST/OBC/Women candidates only as per rules).</p>

<p>http://www.boseinst.ernet.in/advertisement.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29644/junior-research-fellow-at-rajiv-gandhi-centre-for-biotechnology-thiruvananthapuram</guid>
  <pubDate>Mon, 07 Nov 2016 10:27:06 -0600</pubDate>
  <link></link>
  <title><![CDATA[Junior Research Fellow at Rajiv Gandhi Centre for Biotechnology, Thiruvananthapuram]]></title>
  <description><![CDATA[
<p>Adv. # 22/ 2016<br />Applications are invited from suitable candidates for one position of Junior Research Fellow in a DST funded bioinformatics research project entitled "Major gene influxes in microbial genome evolution" in the Laboratory of Dr. Shijulal Nelson-Sathi at Rajiv Gandhi Centre for Biotechnology, Thiruvananthapuram.</p>

<p>ESSENTIAL QUALIFICATIONS:<br />We are looking for a motivated candidate with keen interest in bioinformatics and microbial genome evolution. The candidate must have a Master’s Degree in Bioinformatics, Computational Biology, Computer Science, Microbiology, Biology or a related field with good academic record.</p>

<p>DESIRABLE QUALIFICATIONS<br />Hands on research experience on handling next generation sequencing data and phylogenetic reconstruction methods. Excellent programming skills (Perl/Python/Java/Php) and experience in working on Unix/Linux platform is preferred. Furthermore; good knowledge is required in statistics (R/Matlab) and the application of bioinformatics analysis tools.</p>

<p>AGE:<br />Below 28 years as on 15th November, 2016.</p>

<p>EMOLUMENTS:<br />Rs. 25,000 + 20% HRA for NET/GATE qualified and Post Graduate in Professional Degree course qualified candidates and <br />Rs. 12,000/- + 20% HRA for others.</p>

<p>DURATION:<br />Initial appointment will be given for one year and further extension will be based on the performance till termination of the project.<br />Only those fulfilling the above criteria need apply and will be called for interview. In the event of more than 10 candidates being short-listed by screening the applications, a written test will be conducted before the selection interview and only those who are successful in the written test will be interviewed. No TA/ DA will be given for appearing in the interview.</p>

<p>Suitably qualified candidates may send applications in the prescribed format (Download here) with a photograph, a copy of full resume indicating the percentage of Marks obtained and attested photocopies of credentials &amp; experience to reach the undersigned on or before 15th November, 2016. Envelopes must be superscripted with abbreviated title of the project, advertisement number and job title. Selection to the position will not entitle the candidate to any future positions at RGCB (permanent or otherwise). As with all project positions at RGCB, the position will be co terminus with end of the project.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/30198/faculty-at-indian-institute-of-science-education-and-research-berhampur</guid>
  <pubDate>Mon, 19 Dec 2016 03:34:26 -0600</pubDate>
  <link></link>
  <title><![CDATA[Faculty at Indian Institute of Science Education and Research Berhampur]]></title>
  <description><![CDATA[
<p>Advt. No: IISERBPR/DoFA/2016/2</p>

<p>Advertisement for Faculty Positions</p>

<p>The IISER Berhampur, an Institute of national importance, established through an act of Parliament is an autonomous organization under the Ministry of HRD, Govt. of India, to promote quality education and cutting edge research in basic sciences and to provide a platform for the faculty to engage in high quality education, at undergraduate and postgraduate levels. The Institute invites applications for faculty positions at the level of Assistant Professor (C) /Assistant Professor in the following disciplines:</p>

<p>1. Biological Sciences</p>

<p>2. Chemistry</p>

<p>3. Computer Sciences</p>

<p>4. Mathematics</p>

<p>5. Physics</p>

<p>Only hard copy of application in the prescribed format, via Speed Post should be sent to the Dean, Faculty Affairs, IISER Berhampur, Industrial Training Institute (ITI) Berhampur, Engineering School Road, Berhampur - 760 010, Ganjam District, Odisha, before 1700 hrs., December 30, 2016.</p>

<p>http://www.iiserbpr.ac.in</p>

<p>More Info : http://www.iiserbpr.ac.in/vacancies/Advertisement%20for%20Faculty%20Positions%20at%20IISER%20Berhampur.pdf</p>
]]></description>
</item>

</channel>
</rss>