<?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/40959?offset=190</link>
	<atom:link href="https://bioinformaticsonline.com/related/40959?offset=190" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/40204/iitm-tokyo-tech-joint-symposium</guid>
	<pubDate>Thu, 24 Oct 2019 10:30:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/40204/iitm-tokyo-tech-joint-symposium</link>
	<title><![CDATA[IITM-Tokyo Tech Joint Symposium]]></title>
	<description><![CDATA[<p>The IITM-Tokyo Tech Joint Symposium is a biannual international symposium held in Indian Institute of Technology Madras (IITM), India in collaboration with Tokyo Institute of Technology (Tokyo-Tech), Japan. During the symposium, experts in various domains of Bioinformatics gather from India and Japan under one roof to discuss and present their works. This provides an unique opportunity to the researchers and students to learn the frontiers and interact with eminent scientists in Bioinformatics. The 5th IITM - Tokyo Tech Joint Symposium titled "Current trends in Bioinformatics: Big data analysis, machine learning and drug design", will be held on 6th - 7th March 2020 in IITM, Chennai, India.</p><p>The symposium will focus on topics in the below mentioned areas.</p><p>Topics: Algorithms for biomolecular sequences / structures Bioinformatics databases and tools Protein function Structure based drug design Machine learning Deep learning Large scale data analysis Big Data NGS Analysis Protein interactions/network Molecular modelling/docking/screening Biomolecular structure and function More</p><p>Info: https://web.iitm.ac.in/bioinfo2/symposium2020/home</p>]]></description>
	<dc:creator>Jit</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/blog/view/42166/software-for-genome-assembly</guid>
	<pubDate>Sun, 30 Aug 2020 09:51:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42166/software-for-genome-assembly</link>
	<title><![CDATA[Software for genome assembly !]]></title>
	<description><![CDATA[<p>List of bioinformatics tools/Software Website References for genome assembly:</p><p>1 Falcon&nbsp;https://github.com/PacificBiosciences/pb-assembly</p><p>2 Canu assembler http://canu.readthedocs.io/en/latest/index.html</p><p>3 Miniasm assembler https://github.com/lh3/miniasm</p><p>4 PBJelly scaffolding tool https://sourceforge.net/projects/pb-jelly/</p><p>5 ARCS scaffolding tool https://github.com/bcgsc/arcs</p><p>6 Redundans reduction and scaffolding tool https://github.com/Gabaldonlab/redundans</p><p>7 Arrow error correction https://github.com/PacificBiosciences/ GenomicConsensus</p><p>8 PILON error correction https://github.com/broadinstitute/pilon/wiki</p><p>9 BUSCO single copy gene markers http://busco.ezlab.org/</p><p>10 Bandage graph assembly viewer https://rrwick.github.io/Bandage/</p><p>11 Gepard dotter http://cube.univie.ac.at/gepard</p><p>12 MUMmer aligner and plotter http://mummer.sourceforge.net/</p>]]></description>
	<dc:creator>LEGE</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/43256/senior-scientist-bioinformatics-eurofins-genomics-india-pvt-ltd-bengaluru</guid>
  <pubDate>Sat, 14 Aug 2021 13:17:36 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Scientist bioinformatics @ Eurofins Genomics India Pvt Ltd, Bengaluru.]]></title>
  <description><![CDATA[
<p>Eurofins hiring @ Eurofins Genomics India Pvt Ltd, Bengaluru.</p>

<p>Designation: Senior Scientist bioinformatics<br />Experience: 8-9 years of experience in bioinformatics analysis of various NGS applications such as WGS, RNASeq, Metagenome, small RNA.</p>

<p>Location: Bangalore</p>

<p>Roles &amp; Responsibilities:<br />-Develop NGS pipeline for analysis and interpretation of NGS data<br />-Organizing and managing large scale genomic data<br />-Should have experience in NGS data analysis, such as WGS, RNASeq, Small RNA, Metagenome (16S, ITS, Whole metagenome)etc.<br />-Should also have good programming skills in perl or python, PHP,J Query, MySql.<br />-Manage project timelines and deliverables.<br />-Implement and execute data processing workflows and automate the pipelines.</p>

<p>If you are interested, please send your profile to me at arpitaghosh@eurofins.com with “Senior Scientist bioinformatics for Genomics” as the subject.</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/43890/immediate-opening-for-senior-and-lead-bioinformatics-engineers-at-medgenome</guid>
  <pubDate>Sat, 04 Jun 2022 09:00:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[Immediate opening for senior and lead bioinformatics engineers at MedGenome]]></title>
  <description><![CDATA[
<p>Immediate opening for senior and lead bioinformatics engineers at MedGenome</p>

<p>Mandatory requirements<br />Knowledge of #Python,#PERL,#R (one or more) and shell environment (#linux )<br />Knowledge about database - #mysql, #oracle, #mongodb (one or more)<br />Past industry experience &gt;= 2 years or equivalent</p>

<p>Other skill sets<br />Knowledge of #nextflow and/or #snakemake<br />Basic knowledge of bioinformatics/genomics</p>

<p>Send your applications to careers@medgenome.com</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/blog/view/43084/frequently-used-bioinformatics-tools-for-viral-genome-analysis</guid>
	<pubDate>Wed, 23 Jun 2021 07:40:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43084/frequently-used-bioinformatics-tools-for-viral-genome-analysis</link>
	<title><![CDATA[Frequently used bioinformatics tools for viral genome analysis !]]></title>
	<description><![CDATA[<p><strong>IVA: accurate de novo assembly of RNA virus genomes.</strong><br /> Hunt M, Gall A, Ong SH, Brener J, Ferns B, Goulder P, Nastouli E, Keane JA, Kellam P, Otto TD.<br /> Bioinformatics. 2015 Jul 15;31(14):2374-6. doi: <a href="http://bioinformatics.oxfordjournals.org/content/31/14/2374.long">10.1093/bioinformatics/btv120</a>. Epub 2015 Feb 28.</p><p><a href="http://www.nature.com/nmeth/journal/v9/n1/full/nmeth.1814.html"><strong>Adapter sequences</strong></a>:<br /> <strong>Optimal enzymes for amplifying sequencing libraries.</strong><br /> Quail, M. a et al. Nat. Methods 9, 10-1 (2012).</p><p><a href="http://genome.cshlp.org/content/early/2012/01/12/gr.131383.111"><strong>GAGE</strong></a>:<br /> <strong>GAGE: A critical evaluation of genome assemblies and assembly algorithms.</strong><br /> Salzberg, S. L. et al. Genome Res. 22, 557-67 (2012).</p><p><a href="http://www.biomedcentral.com/1471-2105/14/160"><strong>KMC</strong></a>:<br /> <strong>Disk-based k-mer counting on a PC.</strong><br /> Deorowicz, S., Debudaj-Grabysz, A. &amp; Grabowski, S. BMC Bioinformatics 14, 160 (2013).</p><p><a href="http://genomebiology.com/2014/15/3/R46"><strong>Kraken</strong></a>:<br /> <strong>Kraken: ultrafast metagenomic sequence classification using exact alignments.</strong><br /> Wood, D. E. &amp; Salzberg, S. L. Genome Biol. 15, R46 (2014).</p><p><a href="http://genomebiology.com/2004/5/2/r12"><strong>MUMmer</strong></a>:<br /> <strong>Versatile and open software for comparing large genomes.</strong><br /> Kurtz, S. et al. Genome Biol. 5, R12 (2004).</p><p><strong>R</strong>:<br /> <strong>R: A language and environment for statistical computing.</strong><br /> R Core Team (2013). R Foundation for Statistical Computing, Vienna, Austria. URL <a href="http://www.R-project.org/">http://www.R-project.org/</a>.</p><p><a href="http://nar.oxfordjournals.org/content/39/9/e57"><strong>RATT</strong></a>:<br /> <strong>RATT: Rapid Annotation Transfer Tool.</strong><br /> Otto, T. D., Dillon, G. P., Degrave, W. S. &amp; Berriman, M. Nucleic Acids Res. 39, e57 (2011).</p><p><a href="http://bioinformatics.oxfordjournals.org/content/25/16/2078.abstract"><strong>SAMtools</strong></a>:<br /> <strong>The Sequence Alignment/Map format and SAMtools.</strong><br /> Li, H. et al. Bioinformatics 25, 2078-9 (2009).</p><p><a href="http://bioinformatics.oxfordjournals.org/content/early/2014/04/12/bioinformatics.btu170"><strong>Trimmomatic</strong></a>:<br /> <strong>Trimmomatic: A flexible trimmer for Illumina Sequence Data.</strong><br /> Bolger, A. M., Lohse, M. &amp; Usadel, B. Bioinformatics 1-7 (2014).</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>