<?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/19633?offset=420</link>
	<atom:link href="https://bioinformaticsonline.com/related/19633?offset=420" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44762/stay-connected-and-productive-unlock-the-power-of-screen-tmux-and-mosh-for-bioinformatics</guid>
	<pubDate>Wed, 22 Jan 2025 00:29:52 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44762/stay-connected-and-productive-unlock-the-power-of-screen-tmux-and-mosh-for-bioinformatics</link>
	<title><![CDATA[Stay Connected and Productive: Unlock the Power of Screen, Tmux, and Mosh for Bioinformatics]]></title>
	<description><![CDATA[<p>If you are a bioinformatician, chances are you have spent hours running long, complex analyses on remote servers only to lose your session because of an unstable connection. Frustrating, isnt it? Fear not! With tools like <strong>screen</strong>, <strong>tmux</strong>, and <strong>mosh</strong>, you can safeguard your workflow and stay productive, no matter where you are.</p><h4>Why Remote Session Management is a Must-Have</h4><p>In bioinformatics, tasks like genome assembly, RNA-seq analyses, and phylogenetic computations often take hours or days. A dropped SSH connection can result in:</p><ul>
<li><strong>Lost Progress:</strong> Restarting a job from scratch wastes valuable time.</li>
<li><strong>Workflow Interruptions:</strong> Disruptions can derail your focus and productivity.</li>
<li><strong>Corrupted Data:</strong> Interrupted processes may lead to incomplete or corrupted outputs.</li>
</ul><p>By integrating <strong>screen</strong>, <strong>tmux</strong>, or <strong>mosh</strong> into your workflow, you can avoid these setbacks and ensure a seamless experience.</p><h4>Screen: The Classic Workhorse</h4><p><strong>Screen</strong> is a terminal multiplexer that comes pre-installed on most Linux systems. It allows you to manage multiple terminal sessions and reconnect to them even after being disconnected.</p><p><strong>Getting Started with Screen:</strong></p><ol>
<li><strong>Start a Session:</strong>
<div>
<div>
<div>
<div>screen</div>
</div>
</div>
</div>
</li>
<li><strong>Detach from a Session:</strong><br />Press <code>Ctrl+A</code>, then <code>D</code>.</li>
<li><strong>Reattach to a Session:</strong>
<div>
<div>
<div>
<div>screen -r</div>
</div>
</div>
</div>
</li>
</ol><p><strong>Pro Tip:</strong> Enhance your screen experience with a customized <code>.screenrc</code> configuration file. Download one here: <a href="https://lnkd.in/es8vhcEH" target="_new">Get .screenrc</a>.</p><h4>Tmux: A Modern Alternative</h4><p><strong>Tmux</strong> takes everything great about screen and adds modern features, including better key bindings and intuitive session management. It\u2019s perfect for bioinformaticians who want more control over their workflow.</p><p><strong>Getting Started with Tmux:</strong></p><ol>
<li><strong>Start a Session:</strong>
<div>
<div>
<div>
<div>tmux</div>
</div>
</div>
</div>
</li>
<li><strong>Detach from a Session:</strong><br />Press <code>Ctrl+B</code>, then <code>D</code>.</li>
<li><strong>Reattach to a Session:</strong>
<div>
<div>
<div>
<div>tmux attach</div>
</div>
</div>
</div>
</li>
</ol><p><strong>Customize Your Tmux Experience:</strong><br />Use a <code>.tmux.conf</code> file to personalize your setup. Grab one here: <a href="https://lnkd.in/eZZfxmq7" target="_new">Download .tmux.conf</a>.</p><h4>Mosh: The Mobile Shell for Unreliable Connections</h4><p>SSH works well for stable networks, but it struggles in areas with spotty connectivity. Enter <strong>Mosh</strong>, the Mobile Shell. Designed for intermittent networks, Mosh keeps your session alive even when the connection drops temporarily.</p><p><strong>Why Mosh is a Game-Changer:</strong></p><ul>
<li>No lag over high-latency networks.</li>
<li>Automatically reconnects when the network is restored.</li>
<li>Ideal for working on the go, from cafes to trains.</li>
</ul><p><strong>Getting Started with Mosh:</strong></p><ol>
<li><strong>Install Mosh:</strong>
<div>
<div>
<div>
<div>sudo apt install mosh # For Debian/Ubuntu</div>
</div>
</div>
</div>
</li>
<li><strong>Connect to a Server:</strong>
<div>
<div>
<div>
<div>mosh username@server</div>
</div>
</div>
</div>
</li>
</ol><p>Learn more at <a href="https://mosh.org" target="_new">mosh.org</a>.</p><h4>Why This Matters for Bioinformatics</h4><p>Every bioinformatician knows the value of time and data integrity. Tools like screen, tmux, and mosh provide a lifeline when running long analyses, enabling you to:</p><ul>
<li>Safeguard your work against disconnections.</li>
<li>Easily manage multiple workflows in parallel.</li>
<li>Stay productive, even in challenging environments.</li>
</ul><h4>Quickstart Cheat Sheet</h4><ul>
<li>
<p><strong>Screen:</strong></p>
<div>
<div>
<div>
<div>screen # Start a session Ctrl+A, D # Detach screen -r # Reattach</div>
</div>
</div>
</div>
</li>
<li>
<p><strong>Tmux:</strong></p>
<div>
<div>tmux <span># Start a session </span> Ctrl+B, D <span># Detach </span> tmux attach <span># Reattach</span></div>
</div>
</li>
<li>
<p><strong>Mosh:</strong></p>
<div>
<div>mosh username@server</div>
</div>
</li>
</ul><h4>Final Thoughts</h4><p>As a bioinformatician, your time is too valuable to spend restarting analyses due to technical hiccups. With screen, tmux, and mosh in your toolkit, you can work smarter, protect your progress, and stay productive no matter where you are. Start using these tools today and transform the way you work with remote systems.</p><p>Let me know how these tools work for you, and don\u2019t forget to follow for more bioinformatics tips!</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6104/incob-2014</guid>
  <pubDate>Thu, 07 Nov 2013 17:53:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[InCoB 2014]]></title>
  <description><![CDATA[
<p>The 13th International Conference on Bioinformatics (InCoB 2014) will be held in Novotel Sydney Brighton Beach, Sydney, New South Wales, Australia. This year, the InCoB will be held earlier from 31st July to 2nd August 2014 to run back-to-back with the International Biophysics Congress 2014 at the Brisbane Convention and Exhibition Centre, Queensland (3-7 Aug).</p>

<p>More at http://incob2014.org/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/6300/list-of-bioinformatics-vacancy-jobs-opportunity-websites</guid>
	<pubDate>Tue, 12 Nov 2013 20:04:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/6300/list-of-bioinformatics-vacancy-jobs-opportunity-websites</link>
	<title><![CDATA[List of Bioinformatics Vacancy, Jobs, Opportunity websites]]></title>
	<description><![CDATA[<p>Bioinformatics cover wide area of biology, and indulge in almost all sort of science related work. Bioinformatician give strong emphasis on open access to biological information as well as Free and Open Source software!!</p>
<p>There are several jobs opening in bioinformatics all around the world, but many of them do not get proper attention due to lack of advertisements, or social connectivity. This bookmark is created for an academic, non-academic, scientists and budding researchers to help and updates the bioinformatics/computational biology jobs links of all know websites around the world.</p>
<p><strong>I also love to stream the live <strong>bioinformatics or Computational biology jobs</strong> updates using Twitter https://twitter.com/search?q=bioinformatics%20jobs&amp;src=typd</strong></p>
<p>Find out here about exciting job opportunities in the life sciences.</p>
<blockquote>
<p>Please add well known bioinformatics jobs websites below in comment section.</p>
</blockquote><p>Address of the bookmark: <a href="http://www.nature.com/naturejobs/science/jobs?utf8=%E2%9C%93&amp;q=bioinformatics&amp;where=&amp;commit=Find+Jobs" rel="nofollow">http://www.nature.com/naturejobs/science/jobs?utf8=%E2%9C%93&amp;q=bioinformatics&amp;where=&amp;commit=Find+Jobs</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/6561/mathomics-lab</guid>
  <pubDate>Tue, 19 Nov 2013 18:17:32 -0600</pubDate>
  <link></link>
  <title><![CDATA[MATHomics Lab]]></title>
  <description><![CDATA[
<p>Mathomics is a collaborative research group of the Center for Mathematical Modeling and the Center for Genome Regulation at University of Chile, created to play a central role in the development of biotechnological projects, providing state of the art bioinformatics and mathematical modeling tools,  allowing to face these problems from the point of view of Systems Biology. </p>

<p>Lab page @ http://www.mathomics.cl/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6817/research-assistant-university-of-hyderabad</guid>
  <pubDate>Mon, 25 Nov 2013 10:21:26 -0600</pubDate>
  <link></link>
  <title><![CDATA[Research Assistant @ University of Hyderabad]]></title>
  <description><![CDATA[
<p>University of Hyderabad<br />Repository for Tomato Genomic Resources<br />Department of Plant Sciences<br />Bioinformatics Position in Tomato Functional Genomics </p>

<p>At the Repository for Tomato Genomics Resources, we are working on Tomato Functional Genomics, using TILLING, Insertional Mutagenesis, proteomics, metabolomics approaches to study fruit ripening in tomato. The current aims of the group include using reverse and forward genetics strategies to isolate tomato mutants delayed in ripening, having high lycopene and folate content in tomato fruits and analysis of light and hormonal signal transduction pathways. For recent publications of the group see (Plant Physiol 161: 2085–2101, Plant Physiol 156: 1424-1438; Molecular Plant 3: 854-869; Plant Methods 6: 3; Plant Methods 5:18; Plant Signaling and Behavior 5:11.).</p>

<p>Currently we have one position available in the projects awarded to Prof. R.P. Sharma funded by Dept of Biotechnology. The qualification for this Position is as follows:</p>

<p>Research Assistant: Applicants should have experience in networking using R language and should be able to develop networks using the transcriptome, proteome and metabolite data sets. M.Tech. in Bioinformatics is required. The selected candidate would be paid Rs. 13,000/-pm- consolidated.</p>

<p>Candidates interested in above positions should send a one page statement clearly explaining how their skills are relevant to the position. The candidates should also enclose detailed CV and the name/email id for three referees. The candidates can send their application by email at rameshwar.sharma@uohyd.ac.in and y.sreelakshmi@uohyd.ac.in on or before December 10th, 2013. The position is purely temporary in nature. Shortlisted candidates would be called for interview. No TA/DA would be provided for attending the interview. We also have openings for CSIR-NET JRF candidates for pursuing PhD in above research areas.</p>

<p>Interested candidates with CSIR-NET JRF can send their CV to the above email<br />addresses.</p>

<p>Advertisement:</p>

<p>http://www.uohyd.ac.in/images/recruitment/tomanet_positions_221113.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/7816/boku-lab</guid>
  <pubDate>Wed, 08 Jan 2014 19:33:12 -0600</pubDate>
  <link></link>
  <title><![CDATA[BOKU Lab]]></title>
  <description><![CDATA[
<p>We are interested in the study of complex systems in living organisms. Novel views augmenting the classical gene by gene approaches are required to overcome the engineered redundancies and combinatorial effects prevalent in higher eukaryotes. We therefore combine work to establish improved quantitative experimental assays, such as microarrays or differential in-gel electrophoresis, and development of modern computational methods, such as hierarchical probabilistic models or integration of heterogeneous data sources, focussed by biological studies in our laboratory and collaborations.</p>

<p>Highlights of our research include:</p>

<p>    Optimization of microarray design, probe signal interpretation <br />    Advanced models and tools for expression profiling<br />    State-of-the-art applications and integrated analyses </p>

<p>Lab page @ http://bioinf.boku.ac.at/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/4210/uni-computing-bergen-norway</guid>
  <pubDate>Tue, 03 Sep 2013 18:40:50 -0500</pubDate>
  <link></link>
  <title><![CDATA[Uni Computing Bergen Norway]]></title>
  <description><![CDATA[
<p>Info on Uni Computing (Webpage: http://www.bccs.uni.no/) :</p>

<p>Uni Computing (formerly Uni BCCS) is a department of Uni Research, affiliated with the University of Bergen.</p>

<p>5 groups in this lab works on computational resources, methods, algorithms, and software.</p>

<p>Following two bioinformatics groups are:</p>

<p>The Computational Biology Unit (CBU) provides education and research in bioinformatics focused on functional genomics.</p>

<p>The Computational Ecology Unit (CEU) is basically deal with population fluctuations, behavioural patterns and the ways life cycles emerge.</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/7213/postdoctoral-position-bioinformaticscomputational-biology</guid>
  <pubDate>Thu, 12 Dec 2013 17:58:00 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral Position (Bioinformatics/Computational Biology)]]></title>
  <description><![CDATA[
<p>University College Cork<br />LAPTI<br />Cork-Co Cork-Ireland</p>

<p>Postdoctoral position is available for three years to work on development of Bioinformatics resources for the analysis and visualization of ribosome profiling data. Ribosome profiling (ribo-seq) is a technology that allows mapping positions of the ribosomes on the whole transcriptome level with a nucleotide precision. The technology allows obtaining high resolution digital snapshots of gene expression in cells. The position is available starting on the 1st of October, 2013.</p>

<p>Candidate is expected to have Ph.D. in Bioinformatics or Computational Biology. Candidates with the degree in non-Biological disciplines such as Computer Science, Statistics, Applied Mathematics, Physics or Electrical Engineering will also be considered.</p>

<p>The position is available at LAPTI (http://lapti.ucc.ie) that is located in the Western Gate Building (http://www.stwarchitects.com/project-information.php?c=1&amp;p=09993) at University College Cork. Western Gate Building Research Complex hosts several UCC departments and provides ideal environment for interdisciplinary research. Cork (sometimes referenced as “Venice of Ireland”) is the second most populous city in the Republic. It has friendly cosmopolitan atmosphere and vibrant culture. A number of American industrial giants such as Apple , EMC and Pfizer have chosen Cork as a home for their European headquarters.</p>

<p>The details of the application process are given at http://lapti.ucc.ie/jobs.html. To ensure prompt processing of your application use the subject line: ‘Postdoc computational’. All applications received prior to August the 1st are guaranteed equal consideration. However, applications at the later dates will also be considered until the position is filled.</p>

<p>For more info visit http://lapti.ucc.ie</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6132/computational-methods-for-the-analysis-of-the-diversity-and-dynamics-of-genomes</guid>
  <pubDate>Sat, 09 Nov 2013 20:19:02 -0600</pubDate>
  <link></link>
  <title><![CDATA[Computational Methods for the Analysis of the Diversity and Dynamics of Genomes]]></title>
  <description><![CDATA[
<p>The German-Canadian international research training group</p>

<p>"Computational Methods for the Analysis of the Diversity and Dynamics of Genomes"</p>

<p>has currently open positions for graduate students, to study at Simon Fraser University (Vancouver, Canada) and <br />Bielefeld University (Germany), starting in the fall 2014.</p>

<p>This international graduate program is a close cooperation of:</p>

<p>Bielefeld University, Germany: Graduate progam "DiDy"<br />Simon Fraser University (SFU), Vancouver, Canada: Graduate program "MADD-Gen"</p>

<p>The available positions include six PhD positions at Bielefeld University, as well as PhD and MSc positions at SFU.</p>

<p>Application deadline: December 31st, 2013<br />Webpage: http://wiki.techfak.uni-bielefeld.de/didy/Announcement</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/9676/bioinformatics-job-in-genotypic-tech-india</guid>
  <pubDate>Mon, 07 Apr 2014 08:20:54 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics job in Genotypic Tech, India]]></title>
  <description><![CDATA[
<p>Genotypic Technology, the first Genomics Company of India is poised to become the next generation life sciences company. We are hiring professionals for our high end Genomics Labs (Molecular Biology/ Microarray/NGS) and Bioinformatics groups.</p>

<p>Apply to Genotypic Technology if you are a PhD in Life Sciences/ Molecular Biology/ Biotechnology/ Human Genetics/ Bioinformatics with minimum 4-5 years post doctoral experience as well as publications in peer reviewed journals.</p>

<p>Source: http://www.genotypic.co.in/Careers/2/Current-Openings.aspx</p>
]]></description>
</item>

</channel>
</rss>