<?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/43898?offset=150</link>
	<atom:link href="https://bioinformaticsonline.com/related/43898?offset=150" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/29603/statistical-for-biological-research</guid>
	<pubDate>Thu, 03 Nov 2016 04:59:48 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/29603/statistical-for-biological-research</link>
	<title><![CDATA[Statistical for biological research]]></title>
	<description><![CDATA[<p>There is no disputing the importance of statistical analysis in biological research, but too often it is considered only after an experiment is completed, when it may be too late.</p>
<p>This collection highlights important statistical issues that biologists should be aware of and provides practical advice to help them improve the rigor of their work.</p>
<p><em>Nature Methods</em>' <strong><a href="http://www.nature.com/collections/qghhqm/pointsofsignificance">Points of Significance</a></strong> column on statistics explains many key statistical and experimental design concepts. <strong><a href="http://www.nature.com/collections/qghhqm/resources">Other resources</a></strong> include an online plotting tool and links to statistics guides from other publishers.</p><p>Address of the bookmark: <a href="http://www.nature.com/collections/qghhqm" rel="nofollow">http://www.nature.com/collections/qghhqm</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/35525/linux-commands-cheat-sheet-for-bioinformatics-and-computational-biology-professionals</guid>
	<pubDate>Mon, 05 Feb 2018 18:50:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/35525/linux-commands-cheat-sheet-for-bioinformatics-and-computational-biology-professionals</link>
	<title><![CDATA[Linux Commands Cheat Sheet for Bioinformatics and Computational Biology Professionals]]></title>
	<description><![CDATA[<p><span>The purpose of this cheat sheet is to introduce biologist and bioinformatician to the frequently used tools for NGS analysis as well as giving experience in writing one-liners.</span></p><ul>
<li><span></span><span><strong>File System</strong></span><span><strong><br /> </strong></span><span>ls</span><span>&nbsp;&mdash; list items in current directory</span><span><br /> </span><span>ls -l</span><span>&nbsp;&mdash; list items in current directory and show in long format to see perimissions, size, and modification date</span><span><br /> </span><span>ls -a</span><span>&nbsp;&mdash; list all items in current directory, including hidden files</span><span><br /> </span><span>ls -F</span><span>&nbsp;&mdash; list all items in current directory and show directories with a slash and executables with a star</span><span><br /> </span><span>ls dir</span><span>&nbsp;&mdash; list all items in directory dir</span><span><br /> </span><span>cd dir</span><span>&nbsp;&mdash; change directory to dir</span><span><br /> </span><span>cd ..</span><span>&nbsp;&mdash; go up one directory</span><span><br /> </span><span>cd /</span><span>&nbsp;&mdash; go to the root directory</span><span><br /> </span><span>cd ~</span><span>&nbsp;&mdash; go to to your home directory</span><span><br /> </span><span>cd -</span><span>&nbsp;&mdash; go to the last directory you were just in</span><span><br /> </span><span>pwd</span><span>&nbsp;&mdash; show present working directory</span><span><br /> </span><span>mkdir dir</span><span>&nbsp;&mdash; make directory dir</span><span><br /> </span><span>rm file</span><span>&nbsp;&mdash; remove file</span><span><br /> </span><span>rm -r dir</span><span>&nbsp;&mdash; remove directory dir recursively</span><span><br /> </span><span>cp file1 file2</span><span>&nbsp;&mdash; copy file1 to file2</span><span><br /> </span><span>cp -r dir1 dir2</span><span>&nbsp;&mdash; copy directory dir1 to dir2 recursively</span><span><br /> </span><span>mv file1 file2</span><span>&nbsp;&mdash; move (rename) file1 to file2</span><span><br /> </span><span>ln -s file link</span><span>&nbsp;&mdash; create symbolic link to file</span><span><br /> </span><span>touch file</span><span>&nbsp;&mdash; create or update file</span><span><br /> </span><span>cat file</span><span>&nbsp;&mdash; output the contents of file</span><span><br /> </span><span>less file</span><span>&nbsp;&mdash; view file with page navigation</span><span><br /> </span><span>head file</span><span>&nbsp;&mdash; output the first 10 lines of file</span><span><br /> </span><span>tail file</span><span>&nbsp;&mdash; output the last 10 lines of file</span><span><br /> </span><span>tail -f file</span><span>&nbsp;&mdash; output the contents of file as it grows, starting with the last 10 lines</span><span><br /> </span><span>vim file</span><span>&nbsp;&mdash; edit file</span><span><br /> </span><span>alias name 'command'</span><span>&nbsp;&mdash; create an alias for a command</span><span><br /> </span></li>
<li><span></span><span><strong>System</strong></span><span><strong><br /> </strong></span><span>shutdown</span><span>&nbsp;&mdash; shut down machine</span><span><br /> </span><span>reboot</span><span>&nbsp;&mdash; restart machine</span><span><br /> </span><span>date</span><span>&nbsp;&mdash; show the current date and time</span><span><br /> </span><span>whoami</span><span>&nbsp;&mdash; who you are logged in as</span><span><br /> </span><span>finger user</span><span>&nbsp;&mdash; display information about user</span><span><br /> </span><span>man command</span><span>&nbsp;&mdash; show the manual for command</span><span><br /> </span><span>df</span><span>&nbsp;&mdash; show disk usage</span><span><br /> </span><span>du</span><span>&nbsp;&mdash; show directory space usage</span><span><br /> </span><span>free</span><span>&nbsp;&mdash; show memory and swap usage</span><span><br /> </span><span>whereis app</span><span>&nbsp;&mdash; show possible locations of app</span><span><br /> </span><span>which app</span><span>&nbsp;&mdash; show which app will be run by default</span><span><br /> </span></li>
<li><span></span><span><strong>Process Management</strong></span><span><strong><br /> </strong></span><span>ps</span><span>&nbsp;&mdash; display your currently active processes</span><span><br /> </span><span>top</span><span>&nbsp;&mdash; display all running processes</span><span><br /> </span><span>kill pid</span><span>&nbsp;&mdash; kill process id pid</span><span><br /> </span><span>kill -9 pid</span><span>&nbsp;&mdash; force kill process id pid</span><span><br /> </span></li>
<li><span></span><span><strong>Permissions</strong></span><span><strong><br /> </strong></span><span>ls -l</span><span>&nbsp;&mdash; list items in current directory and show permissions</span><span><br /> </span><span>chmod ugo file</span><span>&nbsp;&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.</span><span><br /> </span><span>7</span><span>&nbsp;&mdash; full permissions</span><span><br /> </span><span>6</span><span>&nbsp;&mdash; read and write only</span><span><br /> </span><span>5</span><span>&nbsp;&mdash; read and execute only</span><span><br /> </span><span>4</span><span>&nbsp;&mdash; read only</span><span><br /> </span><span>3</span><span>&nbsp;&mdash; write and execute only</span><span><br /> </span><span>2</span><span>&nbsp;&mdash; write only</span><span><br /> </span><span>1</span><span>&nbsp;&mdash; execute only</span><span><br /> </span><span>0</span><span>&nbsp;&mdash; no permissions</span><span><br /> </span><span>chmod 600 file</span><span>&nbsp;&mdash; you can read and write - good for files</span><span><br /> </span><span>chmod 700 file</span><span>&nbsp;&mdash; you can read, write, and execute - good for scripts</span><span><br /> </span><span>chmod 644 file</span><span>&nbsp;&mdash; you can read and write, and everyone else can only read - good for web pages</span><span><br /> </span><span>chmod 755 file</span><span>&nbsp;&mdash; you can read, write, and execute, and everyone else can read and execute - good for programs that you want to share</span><span><br /> </span></li>
<li><span></span><span><strong>Networking</strong></span><span><strong><br /> </strong></span><span>wget file</span><span>&nbsp;&mdash; download a file</span><span><br /> </span><span>curl file</span><span>&nbsp;&mdash; download a file</span><span><br /> </span><span>scp user@host:file dir</span><span>&nbsp;&mdash; secure copy a file from remote server to the dir directory on your machine</span><span><br /> </span><span>scp file user@host:dir</span><span>&nbsp;&mdash; secure copy a file from your machine to the dir directory on a remote server</span><span><br /> </span><span>scp -r user@host:dir dir</span><span>&nbsp;&mdash; secure copy the directory dir from remote server to the directory dir on your machine</span><span><br /> </span><span>ssh user@host</span><span>&nbsp;&mdash; connect to host as user</span><span><br /> </span><span>ssh -p port user@host</span><span>&nbsp;&mdash; connect to host on port as user</span><span><br /> </span><span>ssh-copy-id user@host</span><span>&nbsp;&mdash; add your key to host for user to enable a keyed or passwordless login</span><span><br /> </span><span>ping host</span><span>&nbsp;&mdash; ping host and output results</span><span><br /> </span><span>whois domain</span><span>&nbsp;&mdash; get information for domain</span><span><br /> </span><span>dig domain</span><span>&nbsp;&mdash; get DNS information for domain</span><span><br /> </span><span>dig -x host</span><span>&nbsp;&mdash; reverse lookup host</span><span><br /> </span><span>lsof -i tcp:1337</span><span>&nbsp;&mdash; list all processes running on port 1337</span><span><br /> </span></li>
<li><span></span><span><strong>Searching</strong></span><span><strong><br /> </strong></span><span>grep pattern files</span><span>&nbsp;&mdash; search for pattern in files</span><span><br /> </span><span>grep -r pattern dir</span><span>&nbsp;&mdash; search recursively for pattern in dir</span><span><br /> </span><span>grep -rn pattern dir</span><span>&nbsp;&mdash; search recursively for pattern in dir and show the line number found</span><span><br /> </span><span>grep -r pattern dir --include='*.ext</span><span>&nbsp;&mdash; search recursively for pattern in dir and only search in files with .ext extension</span><span><br /> </span><span>command | grep pattern</span><span>&nbsp;&mdash; search for pattern in the output of command</span><span><br /> </span><span>find file</span><span>&nbsp;&mdash; find all instances of file in real system</span><span><br /> </span><span>locate file</span><span>&nbsp;&mdash; find all instances of file using indexed database built from the updatedb command. Much faster than find</span><span><br /> </span><span>sed -i 's/day/night/g' file</span><span>&nbsp;&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</span><span><br /> </span></li>
<li><span></span><span><strong>Compression</strong></span><span><strong><br /> </strong></span><span>tar cf file.tar files</span><span>&nbsp;&mdash; create a tar named file.tar containing files</span><span><br /> </span><span>tar xf file.tar</span><span>&nbsp;&mdash; extract the files from file.tar</span><span><br /> </span><span>tar czf file.tar.gz files</span><span>&nbsp;&mdash; create a tar with Gzip compression</span><span><br /> </span><span>tar xzf file.tar.gz</span><span>&nbsp;&mdash; extract a tar using Gzip</span><span><br /> </span><span>gzip file</span><span>&nbsp;&mdash; compresses file and renames it to file.gz</span><span><br /> </span><span>gzip -d file.gz</span><span>&nbsp;&mdash; decompresses file.gz back to file</span><span><br /> </span></li>
<li><span></span><span><strong>Shortcuts</strong></span><span><strong><br /> </strong></span><span>ctrl+a</span><span>&nbsp;&mdash; move cursor to beginning of line</span><span><br /> </span><span>ctrl+f</span><span>&nbsp;&mdash; move cursor to end of line</span><span><br /> </span><span>alt+f</span><span>&nbsp;&mdash; move cursor forward 1 word</span><span><br /> </span><span>alt+b</span><span>&nbsp;&mdash; move cursor backward 1 word</span><span><br /> </span></li>
<li></li>
</ul>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42308/icmr-scientist-jobs-for-biotechlife-sciencebiology-bioinformatics</guid>
  <pubDate>Tue, 10 Nov 2020 18:45:49 -0600</pubDate>
  <link></link>
  <title><![CDATA[ICMR Scientist Jobs For Biotech/Life Science/Biology &amp; Bioinformatics]]></title>
  <description><![CDATA[
<p>CMR welcomes on-line applications up to 5th December 2020 till 5:30 PM to fill out the vacancies of 42 Scientist’ E’ (Medical), 01 Scientist ‘E’ (Non-Medical), 16 Scientist ‘D’ (Medical) and also 06 Scientist ‘D’ (Non-Medical) from Indian Citizens for appointment on regular basis under Direct Recruitment with all India transfer liability under the Council.</p>

<p>Post I</p>

<p>Name of the Post: Scientist-E (Non-Medical)</p>

<p>Number of positions: One</p>

<p>Upper Age limit: 50 years</p>

<p>Post II</p>

<p>Name of the Post: Scientist-D (Non-Medical)</p>

<p>Number of positions: Six</p>

<p>Upper Age limit: 45 years</p>

<p>Fee:</p>

<p>Application Fee of Rs. 1500/- (Rupees one thousand five hundred only) is needed. SC / ST / Women/ PWD/ EWS applicants are exempted from application fee. Application Fee is to be paid by candidates through online web link given up the application. Application fees when paid will certainly not be reimbursed under any situations.</p>

<p>How to apply:</p>

<p>i) Candidates should apply online on https://recruit.icmr.org.in. A separate application needs to be submitted for every post, with the required application fee.</p>

<p>ii) Following self-attested documents are required to be uploaded together with the application:<br />a) Proof of Date of Birth.<br />b) Educational qualifications.<br />c) Experience.</p>

<p>More at https://recruit.icmr.org.in/assets/uploads/advertisement/ICMR_Advertisement_06112020.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/5816/bio-related-lectures-from-internationally-renowned-scientists</guid>
	<pubDate>Mon, 21 Oct 2013 11:08:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/5816/bio-related-lectures-from-internationally-renowned-scientists</link>
	<title><![CDATA[Bio related lectures from internationally renowned scientists!!!]]></title>
	<description><![CDATA[<p><span>"iBiology.org was developed to bring the best biology to people throughout the world for free. Started in 2006 by University of California &ndash; San Francisco and Howard Hughes Medical Institute investigator, Professor Ron Vale, iBiology has grown to include over 300 seminars and short talks by the world&rsquo;s leading scientists. Our collection includes talks by many Nobel Laureates and members of the United States National Academy of Sciences. In 2013, we released our first full-length course in Light Microscopy and expanded the educational resources we offer. iBiology is funded by the National Science Foundation, the National Institute of General Medical Sciences, and the Howard Hughes Medical Institute, and supported by the American Society for Cell Biology&nbsp;and the University of California, San Francisco." - See more at: http://www.ibiology.org/about-us.html#sthash.SaCerc1m.dpuf</span></p><p>Address of the bookmark: <a href="http://www.ibiology.org/" rel="nofollow">http://www.ibiology.org/</a></p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38489/biotite-a-general-framework-for-computational-biology</guid>
	<pubDate>Mon, 17 Dec 2018 18:52:27 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38489/biotite-a-general-framework-for-computational-biology</link>
	<title><![CDATA[Biotite: A general framework for computational biology]]></title>
	<description><![CDATA[<p><span>The package is open source and freely available at GitHub (</span><span><a href="https://github.com/biotite-dev/biotite" target="_blank">https://github.com/biotite-dev/biotite</a></span><span>). This package is simple to use especially for the beginners in programming and computationally efficient because of the implementation of Numpy and Cython.&nbsp;Biotite consists of four sub packages: sequence, structure, databases, and application. The&nbsp;</span><em>sequence</em><span>&nbsp;and&nbsp;</span><em>structure</em><span>&nbsp;modules serve for the analysis of sequence and structural data analysis respectively,&nbsp;</span><em>database</em><span>&nbsp;downloads files from the other databases such as RCSB PDB, and&nbsp;</span><em>application</em><span>&nbsp;provides interface for external software.&nbsp;</span></p>
<p><span><span>The&nbsp;</span><em>Biotite</em><span>&nbsp;package bundles popular tasks in computational biology into an unifying framework, which is easy to use on the one hand side, but is also computationally efficient due to intensive usage of&nbsp;</span><em>NumPy</em><span>&nbsp;and&nbsp;</span><em>Cython</em><span>. This package focuses on working with sequence and structure data and supports various file formats and analysis and manipulation functions.</span></span></p><p>Address of the bookmark: <a href="https://github.com/biotite-dev/biotite" rel="nofollow">https://github.com/biotite-dev/biotite</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/40882/troyanskaya-lab</guid>
  <pubDate>Tue, 04 Feb 2020 06:40:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[Troyanskaya Lab]]></title>
  <description><![CDATA[
<p>The goal of our research is to interpret and distill this complexity through accurate analysis and modeling of molecular pathways, particularly those in which malfunctions lead to the manifestation of disease. We are inventing integrative methods for systems-level pathway modeling through integrative analysis of genome-scale datasets. We apply these approaches in studying challenging biological problems, such as how pathways function in diverse cell types and how they change dynamically.</p>

<p>https://function.princeton.edu/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39630/vespa-very-large-scale-evolutionary-and-selective-pressure-analyses</guid>
	<pubDate>Sat, 22 Jun 2019 03:07:04 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39630/vespa-very-large-scale-evolutionary-and-selective-pressure-analyses</link>
	<title><![CDATA[VESPA: Very large-scale Evolutionary and Selective Pressure Analyses]]></title>
	<description><![CDATA[<p>find the resources we provide here useful in getting you set up to analyse and interpret your data.</p>
<p>To reference VESPA:&nbsp;<a href="https://peerj.com/preprints/1895/">https://peerj.com/preprints/1895/</a></p>
<p>Documentation is now hosted on&nbsp;<a href="http://vespa-evol.readthedocs.io/en/latest/">ReadTheDocs</a></p>
<p>&nbsp;</p>
<h2>&nbsp;</h2><p>Address of the bookmark: <a href="https://github.com/aewebb80/VESPA" rel="nofollow">https://github.com/aewebb80/VESPA</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/43928/bioinformaticians-in-comparative-and-evolutionary-genomics</guid>
  <pubDate>Tue, 02 Aug 2022 01:22:48 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformaticians in comparative and evolutionary genomics]]></title>
  <description><![CDATA[
<p>NBIS is now looking for a new member to support Swedish research in evolutionary, comparative, and population genomics, with a particular focus on conifer genomics.</p>

<p>Your tasks will consist of:</p>

<p>Advanced bioinformatics analyses within research projects across Sweden, including key involvement in a major research effort in conifer genomics.<br />Development of bioinformatics tools and workflows.<br />Educating other scientists in bioinformatics through collaboration within supported projects, teaching at national courses, and through participating in various networks.<br />Taking part in the continuous development of NBIS/SciLifeLab at a national level</p>

<p>More at https://www.uu.se/en/about-uu/join-us/details/?positionId=518909</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/videolist/watch/14218/pimp-your-brain-bioinformatics</guid>
	<pubDate>Wed, 20 Aug 2014 22:09:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/videolist/watch/14218/pimp-your-brain-bioinformatics</link>
	<title><![CDATA[Pimp your brain: Bioinformatics]]></title>
	<description><![CDATA[<iframe width="" height="" src="https://www.youtube-nocookie.com/embed/KqelGy6Q8nE" frameborder="0" allowfullscreen></iframe>Jan Lisec from the Max Planck Institute of Molecular Plant Physiology explains, in this "pimp your brain" episode, what bioinformatics is and why bioinformatics is so important and indispensable for biological research.

In the video serial "Pimp your brain" scientists from the Max Planck Institute of Molecular Plant Physiology describe their research. More videos from the 'Pimp your brain' serial are available on www.youtube.com/playlist?list=PL-l9VItC9Gn2Ur2Xj6PTOAkjLUlVPbIOO

More videos are available on www.mpimp-golm.mpg.de]]></description>
	
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30538/gkno</guid>
	<pubDate>Tue, 17 Jan 2017 03:35:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30538/gkno</link>
	<title><![CDATA[GKNO]]></title>
	<description><![CDATA[<p><span>gkno opens the world of complex bioinformatic analysis to people of all level of computational expertise. This site contains documentation, tutorials and information on all the tools that comprise gkno.</span></p>
<p><span>More at&nbsp;http://gkno.me/</span></p><p>Address of the bookmark: <a href="http://gkno.me/" rel="nofollow">http://gkno.me/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>