<?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/19087?offset=70</link>
	<atom:link href="https://bioinformaticsonline.com/related/19087?offset=70" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9028/linux-for-bioinformatician</guid>
	<pubDate>Thu, 13 Mar 2014 16:59:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9028/linux-for-bioinformatician</link>
	<title><![CDATA[Linux for bioinformatician !!!]]></title>
	<description><![CDATA[<p>Linux, free operating system for computers, provides several powerful admin tools and utilities which will help you to manage your systems effectively and handle huge amount of genomic/biological data with an ease. The field of bioinformatics relies heavily on Linux-based computers and software. Although most bioinformatics programs can be compiled to run. If you don&rsquo;t know what these no so user-friendly tools are and how to use them, you could be spending lot of time trying to perform even the basic admin tasks. The focus of this linux series is to help you understand system admin as well as basic tools, which will help you to become an effective bioinformatician and computational biologist.<br /><br /></p><p>For knowledge about Linux and their importance amongst bioinformatician plesae read this article "<a href="http://www.ualberta.ca/~stothard/downloads/linux_for_bioinformatics.pdf">An introduction to Linux for bioinformatics</a>" by Paul Stothard.</p><p>Linux cheat sheet at http://bioinformaticsonline.com/file/view/87/linux-cheat-sheet</p><p>Please browse for futher useful linux pages on right hand side ...</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9204/keep-your-important-ssh-session-running-when-you-disconnect-from-server</guid>
	<pubDate>Sat, 15 Mar 2014 21:39:17 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9204/keep-your-important-ssh-session-running-when-you-disconnect-from-server</link>
	<title><![CDATA[Keep Your Important SSH Session Running when You Disconnect from Server !!!]]></title>
	<description><![CDATA[<p>As a Bioinformatician/ Computational biologist we swim in the ocean of genomic/proteomics data, and play with them with an ease. In our day to day simulation, analysis, comparative study we do need to run exhaustive programs, which might take more than a week. In such cases we do need to disconnect from sever in a way that our program/session should not get terminated. To do so there are lots of software, tools such as tmux ( <a href="http://tmux.sourceforge.net/">http://tmux.sourceforge.net/</a>, nohup (<a href="http://ss64.com/bash/nohup.html">http://ss64.com/bash/nohup.html</a>) , byobu (<a href="https://help.ubuntu.com/10.04/serverguide/byobu.html">https://help.ubuntu.com/10.04/serverguide/byobu.html</a>) and other commands (disown -a &amp;&amp; exit), but following are the ones I use the most.</p><p>Screen is like a window manager for your console. It will allow you to keep multiple terminal sessions running and easily switch between them. It also protects you from disconnection, because the screen session doesn&rsquo;t end when you get disconnected.<br /><br />You&rsquo;ll need to make sure that screen is installed on the server you are connecting to. If that server is Ubuntu or Debian, just use this command:<br /><br />sudo apt-get install screen<br /><br />Now you can start a new screen session by just typing screen at the command line. You&rsquo;ll be shown some information about screen. Hit enter, and you&rsquo;ll be at a normal prompt.<br /><br /><strong>To disconnect (but leave the session running)</strong><br /><br />Hit Ctrl + A and then Ctrl + D in immediate succession. You will see the message [detached]<br /><br /><strong>To reconnect to an already running session</strong><br /><br />screen -r<br /><br /><strong>To reconnect to an existing session, or create a new one if none exists</strong><br /><br />screen -D -r<br /><br /><strong>To create a new window inside of a running screen session</strong><br /><br />Hit Ctrl + A and then C in immediate succession. You will see a new prompt.<br /><br /><strong>To switch from one screen window to another</strong><br /><br />Hit Ctrl + A and then Ctrl + A in immediate succession.<br /><br /><strong>To list open screen windows</strong><br /><br />Hit Ctrl + A and then W in immediate succession</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</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/opportunity/view/9441/jrf-at-gautam-buddha-university</guid>
  <pubDate>Thu, 27 Mar 2014 03:53:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF at Gautam Buddha University]]></title>
  <description><![CDATA[
<p>Gautam Buddha University (GBU) Noida invites applications for the follow posts<br />2014 March Advertisement from Gautam Buddha University (GBU)<br />Junior Research Fellow (JRF)<br />No. of Positions:  01<br />Educational Qualifications:<br />Master degree in any discipline of Life Science with NET qualified or valid GATE score. Desirable Qualification: Preference will be given to candidates having research experience in Bioinformatics<br />Experience:</p>

<p>(details of experience required)<br />Pay Scale:<br />INR Rs.12000/-P.M. + HRA<br />Category:<br />Science and Research Jobs<br />How To Apply:<br />The interested candidates should report for the Interview on 31st<br />March, 2014 at 10:00 am in the Conference Room of Dean, School of Biotechnology, First floor, Gautam Buddha University, Greater<br />Noida. Interested candidates may also send their resume to undersigned by post-mail/e-mail shaktis@gbu.ac.in or shaktisahi@gmail.com. No TA and DA will be paid for appearing for the interview<br />Download Official Notification:</p>

<p>http://www.gbu.ac.in/Recruitment/JRF_advertisement_DSTProject_Shakti_24March14.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9598/junior-research-fellowship-at-gb-pant-university</guid>
  <pubDate>Thu, 03 Apr 2014 12:29:46 -0500</pubDate>
  <link></link>
  <title><![CDATA[Junior Research Fellowship at G.B. PANT UNIVERSITY]]></title>
  <description><![CDATA[
<p>DEPARTMENT OF MOLECULAR BIOLOGY &amp; GENETIC ENGINEERING<br />COLLEGE OF BASIC SCIENCE AND HUMANITIES<br />G.B. PANT UNIVERSITY OF AGRICULTURE AND TECHNOLOGY<br />PANTNAGAR -263145, UTTARAKHAND</p>

<p>No. CBSH/MBGE/356</p>

<p>Subject: Advertisement for the award of Junior Research Fellowship.</p>

<p>Applications are invited for award of one Junior Research Fellowship on a consolidated fellowship of Rs. 12,000/- pm in the project “Bioinformatics Sub-DIC ”, under the Coordinatorship Dr. Anil Kumar. The fellowship is purely temporary and may continue till the duration of the project or maximum three years which ever is earlier. The appointment shall be given on six monthly review basis.</p>

<p>ESSENTIAL QUALIFICATION</p>

<p>M.Sc. Bioinformatics having research experience on In silico experimentation.</p>

<p>Candidates possessing the above qualifications may submit their application on<br />plain paper in the following format to the undersigned latest 18 April, 2014 the interviews will be held on 19 April, 2014 at 11.00 AM in the office of the undersigned. No separate letter for interview will be issued or any TA/DA will be paid for attending the interview.</p>

<p>Advertisement: http://www.gbpuat.ac.in/01042014_18april14_Advertisement%20for%20JRF%20Position,%20BI.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9859/bioinformatics-jrfsrf-position-at-university-of-hyderabad</guid>
  <pubDate>Tue, 15 Apr 2014 20:07:52 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics JRF/SRF position at University of Hyderabad]]></title>
  <description><![CDATA[
<p>UNIVERSITY OF HYDERABAD SCHOOL OF LIFE SCIENCES </p>

<p>Applications are invited from qualified individuals for a JRF/SRF position (sponsored by DBT/DST) at Prof. Jagan Pongubala’s laboratory, University of Hyderabad. Dr. Pongubala’s laboratory is investigating the molecular pathways that control the development of innate and adaptive immune cell types utilizing a combination of genetic, molecular and computational approaches.</p>

<p>JRF/SRF</p>

<p>Masters degree in Bioinformatics  (M.Sc./M.Tech.)</p>

<p>Rs. 12,000+HRA<br />Rs. 16,000+HRA</p>

<p>Initial appointment is for one year and  subjected to renewal up to 2 years</p>

<p>Candidates selected for the above position would have a choice to work on computational biology or experimental  biology. Candidates interested to work on computational biology are expected to perform high-throughput sequencing  (NGS) data analysis and should have a strong background in Bioinformatics &amp; Computational Biology, good  programming skills particularly Perl, Python, R and work experience in Linux environment.</p>

<p>Candidates interested to work on experimental biology should have work experience in techniques that are routinely  used in molecular biology and mammalian cell culture. A basic knowledge of bioinformatics is also desired. </p>

<p>Applicants for the above positions should have a Masters degree (M.Tech/M.Sc) with an aggregate marks greater  than 70% or a 7.5 CGPA. Candidates having JRF-fellowship through CSIR/UGC/ICMR/DBT will be encouraged  to enroll into Ph.D. program. The interested candidates having excellent organizational skills and the ability to work  in a team environment with an aspiration to learn new techniques and explore new scientific areas are requested to generate their resume using the link https://cvmkr.com/CV/new#0 and forward to pongubalajagan@gmail.com</p>

<p>Review of applications will begin immediately and continue until the position is filled. Eligible candidates will be called for an interview. No TA/ DA will be paid for attending the interview or at the time of joining the post. Applicants should note that the appointment is purely temporary and subjected to renewal up to three years and there is no Right to Claim for any regular appointment with the University.</p>

<p>Corresponding address: Jagan Pongubala, Ph.D.<br />Department of Animal Sciences<br />School of Life Sciences, Room:S44<br />University of Hyderabad<br />Gachibowli, Hyderabad 500046</p>

<p>Advertisement: https://www.uohyd.ac.in/images/recruitment/jrf-srf_130414.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10124/jrf-at-bose-institute-kolkata</guid>
  <pubDate>Mon, 21 Apr 2014 19:41:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF at Bose Institute, Kolkata]]></title>
  <description><![CDATA[
<p>ADVT. No. S/BIC/01/2014-15</p>

<p>Bose Institute, Kolkata, invites applications from Indian Citizens for ONE (01) temporary position of Junior Research Fellow in the DBT sponsored project entitled, “Centre of Excellance (CoE) in Bioinformatics at Bose Institute”, running under Prof. Pinakpani Chakrabarti, Project Co-ordinatior, Bioinformatics Centre. The project is tenable upto 31.03.2017, but duration of the fellowship is one year only. The JRF will work with one of the faculty members of the center based on his / her motivation in any specific area on Bioinformatics.</p>

<p>Essential Qualification: 1st class M.Sc. / M.Tech degree in any stream of Chemical/ Biological Sciences with CSIR-UGC-NET-JRF / ICMR-JRF / DBT-JRF or CSIR-UGCNET- LS / GATE qualification.</p>

<p>Desirable qualification:</p>

<p>(i) Specialized knowledge in Organic / Physical chemistry.<br />(ii) Any exposure to research involving the small molecules (like drug) and / or protein structure determination or prediction.<br />(iii) Basic knowledge in computer programming, e.g. using FORTRAN, C, shell, perl etc.<br />(iv) Hands-on-experience on any of the following software : CHARMM/AMBER/NAMD/GROMACS,Gaussian/Gamess, Haddock/Autodock, Schrodinger etc. (or any other software serving similar purposes in molecular modeling)</p>

<p>Fellowship :</p>

<p>(i) Rs. 16,000/- p.m., plus admissible HRA &amp; Medical Benefit for M.Sc. with CSIRUGC NET-JRF/ICMR-JRF/DBT-JRF or M.Tech. with CSIR-UGC NETJRF/<br />ICMR-JRF/DBT-JRF/CSIR-UGC NET-LS/GATE<br />(ii) Rs. 12,000/- p.m., plus admissible HRA &amp; Medical Benefit for M.Sc. with CSIRUGC NET-LS/GATE</p>

<p>Age : Below 28 years as on the day on which the application is made (relaxable in case of SC/ST/OBC/WOMEN candidates only as per rule).</p>

<p>Interested and eligible candidates should apply on plain paper duly signed by them clearly mentioning the area of interest in research, possession of any desirable qualification (s) as mentioned above and quoting Advertisement No. on the envelop as well as application with complete Bio-data giving e-mail ID, Phone No. and details of qualification i.e. examination passed, year, division, percentage of marks, from Secondary onwards with attested copies of testimonials, addressed to the Registrar, Bose Institute, P-1/12, CIT Scheme VII-M, Kankurgachi, Kolkata-700054 on or before April 25, 2014.</p>

<p>The shortlisted candidates will be called for an interview. Applicants are advised to check our website for future updates.</p>

<p>Advertisement: www.boseinst.ernet.in/ADVT/14/p_2.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10262/research-fellow-phd-candidate-in-computational-biology-%E2%80%93-2-positions</guid>
  <pubDate>Fri, 25 Apr 2014 20:19:58 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research fellow (PhD candidate) in computational biology – 2 positions]]></title>
  <description><![CDATA[
<p>At the Department of Informatics two 4-year positions as research fellow are available in the field of computational biology connected to the Computational Biology Unit. The positions are linked to the project “Integrated genomics - linking transcriptional and translational regulation over developmental time” supported by the Bergen Research Foundation</p>

<p>The fate of a cell is ultimately the product of the regulation of its genes. Gene regulation is a coordinated process acting at multiple levels of which transcription and translation are the most prominent. The Valen group is dedicated to the fundamental question of how transcription and translation is integrated to obtain the desired protein abundance. The recent development of high-throughput next generation sequencing techniques to monitor both active translation and transcription has made it possible to study this connection at the genome scale.</p>

<p>This project aims to elucidate the links between regulation of translation and transcription. The applicant will analyze next generation sequencing data and model gene regulation on a genome-wide level to identify the features that affect the translational output of transcripts. The work will be done in close collaboration with experimental scientists who will test the predictions of the computational models.</p>

<p>Additional information on the position can be obtained by contacting Eivind Valen (eivind.valen@ii.uib.no).</p>

<p>The research fellow must take part in the University’s approved PhD program leading to the degree within a time limit of 3 years. Application for admission to the PhD program, including a project plan outline for the training module, will be worked out in collaboration with the research group in question.</p>

<p>In total, the fellowship period is 4 years, 25 % of this will be allocated to teaching and/or administrative duties. The fellowship period may be reduced if the successful applicant has held previous employment as a research fellow or similar.</p>

<p>http://www.jobbnorge.no/en/available-jobs/job/102235/research-fellow-phd-candidate-in-computational-biology-2-positions</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/10415/bioinformatician-stuck-in-wet-lab</guid>
	<pubDate>Tue, 06 May 2014 12:46:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/10415/bioinformatician-stuck-in-wet-lab</link>
	<title><![CDATA[Bioinformatician stuck in wet-lab]]></title>
	<description><![CDATA[<p>This guide is aimed at pet bioinformaticians, and is meant to guide them towards better career development.</p>
<p><strong>1. Make friends with local bioinformatics groups</strong><br> <strong>2. Talk to your computing group</strong><br> <strong>3. Obtain clear expectations</strong><br> <strong>4. Rewrite your job description</strong><br> <strong>5. Papers</strong><br> <strong>6. Attend bioinformatics meetings</strong><br> <strong>7. Try first, ask later</strong></p><p>Address of the bookmark: <a href="http://biomickwatson.wordpress.com/2013/04/23/a-guide-for-the-lonely-bioinformatician/" rel="nofollow">http://biomickwatson.wordpress.com/2013/04/23/a-guide-for-the-lonely-bioinformatician/</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10881/special-project-scientist-%E2%80%93-sorghum-genomics</guid>
  <pubDate>Tue, 20 May 2014 00:34:39 -0500</pubDate>
  <link></link>
  <title><![CDATA[Special Project Scientist – Sorghum Genomics]]></title>
  <description><![CDATA[
<p>ICRISAT is seeking applications from Indian Nationals for a Special Project Scientist to work on a sorghum genomics activities related to sequencing/re-sequencing projects utilizing New Generation Sequencing platforms.</p>

<p>The Job detail</p>

<p>    Advancing the SNP-discovery and polymorphism assessment work across several germplasm panels representing global genetic diversity<br />    Population genetic and genomic analyses, testing the hypothesis related to adaptation in multiple geographic regions<br />    Develop SNP assays from large scale GBS and other re-sequencing data for several target traits utilizing available phenotyping data<br />    Combined analyses of genotypic and phenotypic data for discovery of marker-trait associations, and conducting GWAS<br />    Processing, analyzing, and archiving large-scale genomic data sets, assessing data quality, conducting analyses, interpreting findings, and communicating findings to others including preparation of reports, presentations, posters and journal articles<br />    Providing support to MSc and PhD students on topic related to its major core of research<br />    Any other work assigned by the supervisor</p>

<p>The Person:</p>

<p>    PhD in bioinformatics, genetics, computational biology preferably with 1 to 2 years of experience;<br />    familiar with standard bioinformatics tools and scripting languages and emerging and evolving software platforms relevant to bioinformatics and computational biology;<br />    ability to create new analytical pipelines; experience with handling large data sets;<br />    ability to program in at least two of the following: C++, PERL, Python, R, Java.<br />    will use next-generation sequencing technologies to generate marker data for genetic mapping and transcriptome data for expression QTL mapping, and will be responsible for data generation as well as data analysis.</p>

<p>Period and Remuneration: The assignment is for a period of two years, and can be extended for another year depending on performance. ICRISAT pays a very attractive all inclusive lump sum assignment fee payable in Indian Rupees.</p>

<p>How to Apply: Please send your application by email to icrisatjobs@cgiar.org, stating the job title (Special project Scientist-Sorghum Genomics) clearly in the subject column, addressed to the Director, Human Resources and Operations, ICRISAT, Patancheru, Andhra Pradesh 502 324, India, latest by 10 June 2014. The application should include an up-to-date Curriculum Vitae, a short statement of competencies and experience for the position, and the names and addresses (including phone/e-mail) of three referees. Only short-listed candidates will be contacted.</p>

<p>More at: http://www.icrisat.org/careers/Special-Project-Scientist-Sorghum-Genomics.htm</p>
]]></description>
</item>

</channel>
</rss>