<?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/39025?offset=1060</link>
	<atom:link href="https://bioinformaticsonline.com/related/39025?offset=1060" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/2457/rdataminingcom-r-and-data-mining</guid>
	<pubDate>Thu, 15 Aug 2013 18:37:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/2457/rdataminingcom-r-and-data-mining</link>
	<title><![CDATA[Rdatamining.com : R and Data Mining]]></title>
	<description><![CDATA[<p>This website presents examples, documents and resources on data mining with R. <br>Documents on using R for data mining are available to download for non-commercial personal use, including&nbsp;R Reference card for Data Mining, R and Data Mining: Examples and Case Studies and Time Series Analysis and Mining with R.</p><p>Address of the bookmark: <a href="http://www.rdatamining.com/" rel="nofollow">http://www.rdatamining.com/</a></p>]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42263/data-steward-research-development-specialist-at-at-the-luxembourg-centre-for-systems-biomedicine-lcsb</guid>
  <pubDate>Sun, 25 Oct 2020 22:36:38 -0500</pubDate>
  <link></link>
  <title><![CDATA[Data Steward / Research &amp; Development Specialist at at the Luxembourg Centre for Systems Biomedicine (LCSB)]]></title>
  <description><![CDATA[
<p>Applications should be addressed online to: Prof. Dr. Reinhard Schneider, Head of the Bioinformatics Core Facility</p>

<p>For further information, please contact: Dr. Pinar Alper (pinar.alper@uni.lu)</p>

<p>Applications should be submitted online and include:</p>

<p>A detailed curriculum vitae<br />Cover letter mentioning the reference number<br />List of publications/software projects<br />Description of past experience and future interests<br />Names and addresses of three referees<br />Early application is highly encouraged, as the applications will be processed upon reception. Please apply ONLINE formally through the HR system. Applications by email will not be considered.</p>

<p>*gn=gender neutral.</p>

<p>More at https://recruitment.uni.lu/en/details.html?nPostingId=54616&amp;nPostingTargetId=74219&amp;id=QMUFK026203F3VBQB7V7VV4S8&amp;LG=UK&amp;mask=karriereseiten&amp;sType=Social%20Recruiting</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/2573/most-commonly-used-awk-by-bioinformatician</guid>
	<pubDate>Mon, 19 Aug 2013 01:12:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/2573/most-commonly-used-awk-by-bioinformatician</link>
	<title><![CDATA[Most Commonly used Awk by Bioinformatician]]></title>
	<description><![CDATA[<p style="text-align: center;">&nbsp;</p><p>Awk is a programming language that is specifically designed for quickly manipulating space delimited data. Although you can achieve all its functionality with Perl, awk is simpler in many practical cases.</p><p>Why awk? You can replace a pipeline of 'stuff | grep | sed | cut...' with a single call to awk. For a simple script, most of the timelag is in loading these apps into memory, and it's much faster to do it all with one. This is ideal for something like an openbox pipe menu where you want to generate something on the fly. You can use awk to make a neat one-liner for some quick job in the terminal, or build an awk section into a shell script. You can find a lot of online tutorials, but here I will only show a few examples which cover most of bioinformatician daily uses of awk.</p><p>choose rows where column 3 is larger than column 5:</p><p>awk '$3&gt;$5' input.txt &gt; output.txt</p><p>extract column 2,4,5:</p><p>awk '{print $2,$4,$5}' input.txt &gt; output.txt</p><p>awk 'BEGIN{OFS="\t"}{print $2,$4,$5}' input.txt</p><p>show rows between 20th and 80th:</p><p>awk 'NR&gt;=20&amp;&amp;NR&lt;=80' input.txt &gt; output.txt</p><p>calculate the average of column 2:</p><p>awk '{x+=$2}END{print x/NR}' input.txt</p><p>regex (egrep):</p><p>awk '/^test[0-9]+/' input.txt</p><p>calculate the sum of column 2 and 3 and put it at the end of a row or replace the first column:</p><p>awk '{print $0,$2+$3}' input.txt</p><p>awk '{$1=$2+$3;print}' input.txt</p><p>join two files on column 1:</p><p>awk 'BEGIN{while((getline&lt;"file1.txt")&gt;0)l[$1]=$0}$1 in l{print $0"\t"l[$1]}' file2.txt &gt; output.txt</p><p>count number of occurrence of column 2 (uniq -c):</p><p>awk '{l[$2]++}END{for (x in l) print x,l[x]}' input.txt</p><p>apply "uniq" on column 2, only printing the first occurrence (uniq):</p><p>awk '!($2 in l){print;l[$2]=1}' input.txt</p><p>count different words (wc):</p><p>awk '{for(i=1;i!=NF;++i)c[$i]++}END{for (x in c) print x,c[x]}' input.txt</p><p>deal with simple CSV:</p><p>awk -F, '{print $1,$2}'</p><p>substitution (sed is simpler in this case):</p><p>awk '{sub(/test/, "no", $0);print}' input.txt</p><p>&nbsp;</p><p>OK now here's where to read this stuff properly explained. roll</p><p>Two thorough tutorials:</p><p>http://www.gnu.org/software/gawk/manual/gawk.html</p><p>http://www.grymoire.com/Unix/Awk.html</p><p>A famous list of useful one-liners - though they're short, many are quite tricky:</p><p>http://www.pement.org/awk/awk1line.txt</p><p>And some nice explanations of those one-liners. After reading this you'll have a pretty good grasp!</p><p>http://www.catonmat.net/blog/awk-one-li &hellip; -part-one/</p><p>http://www.catonmat.net/blog/ten-awk-ti &hellip; -pitfalls/</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/4106/phd-at-national-institute-for-research-in-reproductive-health</guid>
  <pubDate>Fri, 30 Aug 2013 04:50:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[PhD at National Institute for Research in Reproductive Health]]></title>
  <description><![CDATA[
<p>National Institute for Research in Reproductive Health</p>

<p>(Indian Council of Medical Research )<br />Jehangir Merwanji Street, Parel, Mumbai 400 012</p>

<p>Advertisement No. 1/NIRRH/Ph.D. 2013<br />Admission to Ph.D. Programme – 2013</p>

<p>National Institute for Research in Reproductive Health, Mumbai, a premier institute of the Indian Council of Medical Research, conducts basic, clinical and operational research in different areas of reproductive health. The thrust areas of research include: Fertility Regulation, Infertility and Reproductive Disorders, Reproductive Tract Infections, Maternal and Child Health, Osteoporosis, Genetic Disorders, Stem Cell Biology, Structural Biology, Bioinformatics and Reproductive Toxicology. Institute is affiliated to the University of Mumbai for the award of Ph.D. degree in Applied Biology, Biochemistry, Life Sciences and Biotechnology. The institute invites applications from young and bright students for enrollment in Ph.D. programme.</p>

<p>More at http://www.nirrh.res.in/announcements/phd_program_2013.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42187/scientist-b-at-aiims-new-delhi-delhi</guid>
  <pubDate>Thu, 03 Sep 2020 07:04:11 -0500</pubDate>
  <link></link>
  <title><![CDATA[Scientist B at AIIMS, New Delhi, Delhi]]></title>
  <description><![CDATA[
<p>Scientist B at AIIMS, New Delhi, Delhi</p>

<p>Overview<br />Applications are invited from eligible candidates for the following position under Meity funded research project entitled: Artifical Intelligence in Oncology, Harnsessing big data and advanced computing to provide personalized diganosis and treatment for cancer patients purely on contractual basis</p>

<p>Scientist B</p>

<p>Salary: Rs.80,000/-</p>

<p>Qualification: 1st Class Masters Degree in Bioinformatics/ Computer Science/ Statistics with Ph.D in relevant subject from a recognized University with experience in Machine learning/ AI project plus two years research experience</p>

<p>Age: Upto 40 years</p>

<p>Details<br />Experience:2 Years<br />Location:New Delhi<br />Education:1st Class Masters Degree<br />SALARY: Rs.80,000/-<br />Key Skills: Research Fellowship<br />Desired Profile<br />Two years research experience</p>

<p>Company: AIIMS<br />All India Institute of Medical Sciences, New Delhi is a medical school, hospital and public medical research university</p>

<p>More at https://www.aiims.edu/en/notices/recruitment/aiims-recruitment.html?id=10844<br />PDF https://www.aiims.edu/images/pdf/recruitment/advertisement/Post_BioChem_22_08_20.PDF</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/2742/baumbach-lab</guid>
  <pubDate>Wed, 21 Aug 2013 10:56:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[Baumbach Lab]]></title>
  <description><![CDATA[
<p>The Computational Biology research group was established in October 2012 at the Department of Mathematics and Computer Science (IMADA) at the University of Southern Denmark (SDU). It emerged from the Computational Systems Biology group, founded in March 2010 at the Max Planck Institute for Informatics (MPII) and the Cluster of Excellence for Multimodel Computing and Interaction (MMCI) at Saarland University, Saarbrücken, Germany.<br />​<br />The group is headed by Prof. Dr. Jan Baumbach and currently hosts nine PhD students and one postdoctoral fellow at both, IMADA/SDU and MMCI/MPII.</p>

<p>More at &gt;&gt; http://www.baumbachlab.net/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42265/doctoral-researcher-phd-in-computational-biology-biostatistics-at-luxembourg-centre-for-systems-biomedicine-lcsb</guid>
  <pubDate>Sun, 25 Oct 2020 22:59:54 -0500</pubDate>
  <link></link>
  <title><![CDATA[Doctoral researcher (PhD) in Computational Biology / Biostatistics at Luxembourg Centre for Systems Biomedicine (LCSB)]]></title>
  <description><![CDATA[
<p>Contract Type: Fixed Term Contract<br />Work Hours: Full Time 40.0 Hours per Week<br />Location: Belval<br />Student and employee status (36 months studies programme, as per university standards) with project funding available for up to 48 months<br />36 months fixed-term contract (renewable depending on thesis progress evaluation)<br />Job Reference: UOL03604<br />Further Information<br />Applications should be submitted online and include:</p>

<p>A detailed Curriculum vitae<br />A motivation letter, including a brief description of past research experience and future interests, as well as the earliest possible starting date<br />Copies of degree certificates and transcripts<br />Name and contact details of at least two referees<br />Early application is highly encouraged, as the applications will be processed upon reception. Please apply ONLINE formally through the HR system. Applications by email will not be considered.</p>

<p>*gn=gender neutral.</p>

<p>More at https://recruitment.uni.lu/en/details.html?id=QMUFK026203F3VBQB7V7VV4S8&amp;nPostingID=54876&amp;nPostingTargetID=74639&amp;mask=karriereseiten&amp;lg=UK</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/2839/look-up-a-biological-numbers</guid>
	<pubDate>Fri, 23 Aug 2013 03:27:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/2839/look-up-a-biological-numbers</link>
	<title><![CDATA[Look up a biological numbers]]></title>
	<description><![CDATA[<p><strong>Did you ever need to look up a number</strong><span>&nbsp;like the volume of a cell or the cellular concentration of ATP, only to find yourself spending much more time than you wanted on the Internet or flipping through textbooks - all without much success?&nbsp;</span><br><br><span>Well, it didn&rsquo;t happen only to you. It is often surprising how difficult it can be to find concrete biological numbers, even for properties that have been measured numerous times. To help solve this for one and all, BioNumbers (</span><strong>the database of key numbers in molecular biology</strong><span>) was created. Along with the numbers, you'll find the relevant&nbsp;</span><strong>references to the original literature</strong><span>, useful comments, and related numbers.&nbsp;</span></p>
<p><span><span>To cite BioNumbers please refer to: Milo et al. Nucl. Acids Res. (2010) 38: D750-D753. When using a specific entry from the database it is highly recommended that you also specify the BioNumbers 6 digit ID, e.g. "BNID 100986, Milo et al 2010".&nbsp;</span></span></p><p>Address of the bookmark: <a href="http://bionumbers.hms.harvard.edu/" rel="nofollow">http://bionumbers.hms.harvard.edu/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42402/two-postdoc-positions-to-study-multiscale-genome-evolution-and-cephalopod-gene-regulation-university-of-vienna-austria</guid>
  <pubDate>Thu, 17 Dec 2020 11:45:16 -0600</pubDate>
  <link></link>
  <title><![CDATA[Two postdoc positions to study multiscale genome evolution and cephalopod gene regulation (University of Vienna, Austria)]]></title>
  <description><![CDATA[
<p>Vienna Biocenter are seeking two postdoctoral researchers to join our team and work on the ERC funded project "METASCALE: Modes of genome evolution during major metazoan transitions". The task of both positions will be to study co-evolutionary trends within animal genomes and their association with the emergence of new gene regulation. Our group employs methods of comparative and regulatory genomics to study the regulatory impact of transitions in animal genome architecture. More recently, we have identified a major genome reorganization in the "smart" coleoid cephalopod molluscs (squid, octopus, cuttlefish) that, together with other genomic changes, potentially comprises a unique path or mode of genome evolution among animals. We are thus interested in quantifying these modes of genome evolution across all available animal genomes and to test whether their shifts are associated with the emergence of novel regulation (e.g., in cephalopods). One of our main model species is the Hawaiian bobtail squid species Euprymna scolopes.  The tasks of the two candidates will be complimentary and highly collaborative with one position focusing on comparative genomics analyses across all metazoans and the other position on regulatory genomics in the squid. A solid background in in bioinformatics and comparative genomics is highly desired for the first position, whereas the second position will benefit from experience in molecular and regulatory genomics methods such as HiC, ATAC-seq, RNA-seq or single cell transcriptomics.</p>

<p>The postdocs will join an international group and network of researchers at the University of Vienna studying a diverse range of species and questions in molecular evolution, development, morphology and genomics. Our group is also part of the large evolVienna network of more than 50 evolutionary biology labs in Vienna, across several universities and research institutes. Our Faculty will be relocating to a new campus at the Vienna Biocenter in summer 2021 (https://biologiezentrum.univie.ac.at/en/). Vienna is a vibrant historic European capital with a high QOL. Information about postdoctoral salaries in Austria can be found on this webpage: https://www.fwf.ac.at/en/research-funding/personnel-costs/</p>

<p>Earliest start date will be after July 2021. Initial term of employment is for two years with the possibility of extension. Remote working, at least initially, is a possibility.</p>

<p>Requirements:<br />- PhD degree or equivalent by the start date <br />- Publishing record in peer-reviewed journals or evidence thereof <br />- At least 2 letters of support</p>

<p>Applications including a letter of motivation should be submitted via the Job Center to the University of Vienna (https://personalwesen.univie.ac.at/en/jobs-recruiting/job-center/,<br />job reference number 11615).</p>

<p>Application deadline: January 15th 2021.<br />Application link: https://univis.univie.ac.at/ebewerbung</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/3952/ancestor-at-work</guid>
	<pubDate>Sun, 25 Aug 2013 19:45:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/3952/ancestor-at-work</link>
	<title><![CDATA[Ancestor at work !!!]]></title>
	<description><![CDATA[<p>When they will learn Bioinformatics :)</p>]]></description>
	<dc:creator>Jit</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/3952" length="10064" type="image/gif" />
</item>

</channel>
</rss>