<?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/14218?offset=170</link>
	<atom:link href="https://bioinformaticsonline.com/related/14218?offset=170" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/29029/ngs-tutorial</guid>
	<pubDate>Mon, 05 Sep 2016 09:50:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/29029/ngs-tutorial</link>
	<title><![CDATA[NGS Tutorial]]></title>
	<description><![CDATA[<p><span>These tutorials are written for hundreds of bioinformaticians trying to cope with large volume of next-generation sequencing (NGS) data. NGS technologies brought a dramatic shift in the world of sequencing. Merely five years back, genome sequencing of higher eukaryotes used to be very expensive endeavor. To get a genome of interest sequenced, hundreds of scientists had to raise funds together by writing a joint white-paper and petitioning to various government agencies. The tasks of sequencing and assembly were handled by dedicated sequencing facilities, of which only a few existed around the globe. Naturally, the capacities at those sequencing facilities were significantly constrained from high volume of requests</span></p><p>Address of the bookmark: <a href="http://www.homolog.us/Tutorials/index.php" rel="nofollow">http://www.homolog.us/Tutorials/index.php</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29915/professor-all-levels-in-bioinformatics-and-computational-biology</guid>
  <pubDate>Tue, 22 Nov 2016 05:43:38 -0600</pubDate>
  <link></link>
  <title><![CDATA[Professor (all levels) in Bioinformatics and Computational Biology]]></title>
  <description><![CDATA[
<p>King Abdullah University of Science and Technology (KAUST) (kaust.edu.sa) is seeking a highly motivated and skilled faculty member for the Bioinformatics track whose research focuses on development of methods and tools for Bioinformatics and Computational Biology.<br />KAUST is an international, graduate-level research university dedicated to advancing science and technology through interdisciplinary research, education, and innovation. Located on the shores of the Red Sea in Saudi Arabia, KAUST offers superb research facilities, generous assured research funding, and internationally competitive salaries, attracting top international faculty, scientists, engineers, and students to conduct fundamental and goal-oriented research to address the world’s pressing scientific and technological challenges in the areas of food, water, energy, and the environment.<br />The successful applicant is expected to develop world-leading research in domain of bioinformatics/computational biology with focus on development of novel computational approaches for efficient and accurate methods of analyzing biological phenomena at molecular level. The faculty member will be part of the Computational Bioscience Research Center (CBRC) within the Computer, Electrical and Mathematical Sciences and Engineering (CEMSE) Division. The position will remain open until filled.<br /> <br />Requirements:<br /> <br />PhD or equivalent in a Computer Science, Mathematics or Engineering discipline. Candidates should be well-established within the research field relevant to the position grade. They should demonstrate original research and experience at the highest international level.<br /> <br />Responsibilities and tasks:<br /> <br />Research competence in the following areas is preferred:<br />Analysis of next generation sequencing (NGS) and other ‘omics’ data (e.g. CAGE, ChIP-Seq, DHS, RNA-Seq, Ribo-Seq, proteomic, metabolic and NMR spectra, etc.).<br />Signaling, regulatory and metabolic pathways analysis.<br />Development of tools (web-based and standalone) suited for efficient computational biology/bioinformatics.<br /> <br /> <br />Visit cemse.kaust.edu.sa to apply.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/27321/slurm-basics</guid>
	<pubDate>Fri, 13 May 2016 04:42:24 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/27321/slurm-basics</link>
	<title><![CDATA[SLURM basics !]]></title>
	<description><![CDATA[<p><a href="http://bioinformaticsonline.com/bookmarks/view/27238/slurm" target="_blank">SLURM</a> is a queue management system and stands for Simple Linux Utility for Resource Management. SLURM was developed at the Lawrence Livermore National Lab and currently runs some of the largest compute clusters in the world.</p><p>SLURM is similar in many ways to most other queue systems. You write a batch script then submit it to the queue manager. The queue manager then schedules your job to run on the queue (or partition in SLURM parlance) that you designate. Below we will provide an outline of how to submit jobs to SLURM, how SLURM decides when to schedule your job and how to monitor progress.</p><p>SLURM has a number of valuable features compared to other job management systems:</p><ul>
<li><em>Kill and Requeue</em> SLURM&rsquo;s ability to kill and requeue is superior to that of other systems. It waits for jobs to be cleared before scheduling the high priority job. It also does kill and requeue on memory rather than just on core count.</li>
<li><em>Memory</em> Memory requests are sacrosanct in SLURM. Thus the amount of memory you request at run time is guaranteed to be there. No one can infringe on that memory space and you cannot exceed the amount of memory that you request.</li>
<li><em>Accounting Tools</em> SLURM has a back end database which stores historical information about the cluster. This information can be queried by the users who are curious about how much resources they have used.</li>
</ul><p><strong>Summary of SLURM commands</strong></p><p>The table below shows a summary of SLURM commands. These commands are described in more detail below along with links to the SLURM doc site.</p><table>
<tbody>
<tr><th>&nbsp;</th><th>SLURM</th><th>SLURM Example</th></tr>
<tr>
<td>Submit a batch serial job</td>
<td><a href="http://slurm.schedmd.com/sbatch.html">sbatch</a></td>
<td><code>sbatch runscript.sh</code></td>
</tr>
<tr>
<td>Run a script interatively</td>
<td><a href="http://slurm.schedmd.com/srun.html">srun</a></td>
<td><code>srun --pty -p interact -t 10 --mem 1000 /bin/bash /bin/hostname</code></td>
</tr>
<tr>
<td>Kill a job</td>
<td><a href="http://slurm.schedmd.com/scancel.html">scancel</a></td>
<td><code>scancel 999999</code></td>
</tr>
<tr>
<td>View status of queues</td>
<td><a href="http://slurm.schedmd.com/squeue.html">squeue</a></td>
<td><code>squeue -u akitzmiller</code></td>
</tr>
<tr>
<td>Check current job by id</td>
<td><a href="http://slurm.schedmd.com/squeue.html">sacct</a></td>
<td><code>sacct -j 999999</code></td>
</tr>
</tbody>
</table>]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/32076/ngs-teaching-material</guid>
	<pubDate>Wed, 05 Apr 2017 04:29:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/32076/ngs-teaching-material</link>
	<title><![CDATA[NGS teaching material]]></title>
	<description><![CDATA[<p><span>High throughput sequencing (HTS) technologies are being applied to a wide range of important topics in biology. However, the analyses of non-model organisms, for which little previous sequence information is available, pose specific problems. This course addresses the specific strengths and weaknesses of alternative HTS technologies, the computational resources needed for HTS, and how to analyze non-model species using HTS. The course consists of a practical training module, HTS bioinformatics training, and lecturing/seminars of HTS approaches specifically targeting non-model organisms.</span></p><p>Address of the bookmark: <a href="http://marinetics.org/teaching/hts/Assembly.html" rel="nofollow">http://marinetics.org/teaching/hts/Assembly.html</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/915/researcher-in-computer-sciencebiology</guid>
  <pubDate>Mon, 15 Jul 2013 18:38:40 -0500</pubDate>
  <link></link>
  <title><![CDATA[Researcher in computer science/biology]]></title>
  <description><![CDATA[
<p>Researcher in Computer Science at the Computational Biology Unit - temporary employment</p>

<p>The Department of Informatics is a vacant position as a researcher in computer science, related to Computational Biology Unit (CBU), for 3 years.<br /> <br />The position is part of CBU Service Group and will focus on bioinformatic analysis project and especially the analysis of high-throughput data, including NGS (sequencing), and proteomics data.<br /> <br />The successful candidate will be part of the Norwegian bioinformatics platform's national helpdesk within the project ELIXIR.NO<br /> <br />Applicants must hold a PhD in a relevant subject such as computer science, mathematics, molecular biology and also possess expertise and experience in bioinformatics statistics and analysis of data from high-throughput molecular experiment.<br /> <br />Basic programming or scripting skills are required. Experience in Python, R, Perl, Linux-based operating systems and moreover knowledge of databases and web programming will be a strength for applicants.<br /> <br />We expect enthusiasm and independence and moreover the ability to work in an interdisciplinary team environment.<br /> <br />Good knowledge of English is required.<br /> <br />Salaries start at level 57 (code 1109/LR 24.1) by appointment. Further promotion occurs after<br />service seniority in the position (at grade 57-65). Of particularly highly qualified applicants may be considered a higher salary.<br /> <br />Further information about the position is available from the chair of the CBU, <br />Professor Inge Jonassen, e-mail: Inge.Jonassen @ ii.uib.no<br /> <br />The successful applicant must comply with the guidelines that apply at any given time the position.<br /> <br />State employment shall as far as possible reflect the diversity of the population. It is therefore an objective to achieve a balanced age and sex composition and the recruitment of persons with immigrant backgrounds. Persons with immigrant background are requested to apply for the position.<br /> <br />Women are particularly encouraged to apply. If the experts find that several applicants have approximately equivalent qualifications, the rules on equal in the Personnel Regulations for Academic Positions will be applied.<br /> <br />University of Bergen applies the principles of public openness when recruiting staff to scientific positions.<br /> <br />Information about the applicant may be made public even though the applicant has requested not to be named in the list of applicants. If the request does not host admitted to the result, the applicant shall be notified of this.<br /> <br />Send application, CV, certificates, diplomas, undergraduate work and a list of publications (list of publications) online by clicking on https://www.jobbnorge.no/jobbsoknet/login.aspx?returnurl=/jobbsoknet/jobapplication.aspx?jobid=95196<br /> <br />You need to upload certified translations into English or a Scandinavian language of appendices, such as diplomas and transcripts.<br /> <br />Applications sent by email to individuals at the institute will not be considered.<br /> <br />Deadline: 9 August 2013</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/938/list-of-bioinformatics-and-computational-biology-journals</guid>
	<pubDate>Wed, 17 Jul 2013 02:36:53 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/938/list-of-bioinformatics-and-computational-biology-journals</link>
	<title><![CDATA[List of Bioinformatics and Computational Biology Journals]]></title>
	<description><![CDATA[<p>Hi Bioinformatician and Computational Biologist, this is the comprehensive list of all (?) the bioinformatics and computational biology&nbsp;journals. Please update me if you know any other good journals related with our domains. Feel free to add your comments and suggestions. You comments will be helpful for others...</p><p>*The journals are not listed in any ascending, descending, or impact factors oders.&nbsp;</p><p><a href="http://bioinformatics.oxfordjournals.org/" target="_blank">Bioinformatics</a>&nbsp;</p><p><a href="http://www.liebertpub.com/overview/journal-of-computational-biology/31/" target="_blank">Journal of Computational Biology</a></p><p><a href="http://bib.oxfordjournals.org/" target="_blank">Briefings in Bioinformatics</a></p><p><a href="http://www.bioinfo.de/isb/" target="_blank">In Silico Biology</a></p><p><a href="http://www.cell.com/structure/home" target="_blank">Structure</a></p><p><a href="http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1469-896X" target="_blank">Protein Science</a></p><p>Protein Engineering</p><p><a href="http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1615-9861" target="_blank">Proteomics</a></p><p><a href="http://nar.oxfordjournals.org/" target="_blank">Nucleic Acids Research</a></p><p><a href="http://www.sciencedirect.com/science/journal/01677799" target="_blank">Trends in Biotechnology</a></p><p><a href="http://www.pnas.org/" target="_blank">Proceedings of the National Academy of Sciences</a></p><p>Folding and Design</p><p><a href="http://genomebiology.com/" target="_blank">Genome Biology</a></p><p>Journal of Biomedical Informatics</p><p><a href="http://www.bioinformation.net/" target="_blank">Bioinformation</a></p><p><a href="http://www.ripublication.com/jcib.htm" target="_blank"><span>Journal of Computational Intelligence in Bioinformatics</span></a></p><p>Journal of Structural and Functional Genomics</p><p><a href="http://www.journals.elsevier.com/journal-of-molecular-graphics-and-modelling" target="_blank">Journal of Molecular Graphics and Modelling</a></p><p><a href="http://www.academicpress.com/mbe" target="_blank">Metabolic Engineering</a></p><p>Computers &amp; Chemistry</p><p><a href="http://www.journals.elsevier.com/artificial-intelligence-in-medicine" target="_blank">Artificial Intelligence in Medicine</a></p><p><a href="http://www.karger.com/" target="_blank">Journal of Biomedical Science</a></p><p><a href="http://www.journals.elsevier.com/artificial-intelligence" target="_blank">Artificial Intelligence</a></p><p><a href="http://www.springer.com/computer/ai/journal/10994" target="_blank">Machine Learning</a></p><p>Applied Bioinformatics</p><p>Applied Genomics and Proteomics</p><p><a href="http://www.biomedcentral.com/bmcbioinformatics/" target="_blank">BMC Bioinformatics</a></p><p><a href="http://users.comcen.com.au/~journals/bioinfo.htm" target="_blank">Online Journal of Bioinformatics (OJB)</a></p><p><a href="http://psb.stanford.edu/psb-online/" target="_blank">PSB On-Line Proceedings</a></p><p>Bioinformatics: Information Technology &amp; Systems (BITS)</p><p>Data Mining and Knowledge Discovery</p><p>The EMBO Journal</p><p>Current Opinions in Structural Biology</p><p><a href="http://www.horizonpress.com/backlist/jmmb/" target="_blank">Journal of Molecular Microbiology and Biotechnology</a></p><p><a href="http://www.nature.com/nature/index.html" target="_blank">Nature</a></p><p>Nature Structural Biology</p><p><a href="http://jmlr.org/" target="_blank">Journal of Machine Learning Research</a></p><p><a href="http://www.nature.com/ng/index.html" target="_blank">Nature Genetics</a></p><p>Current Opinion in Genetics &amp; Development</p><p><a href="http://www.nature.com/nbt/index.html" target="_blank">Nature Biotechnology</a></p><p>Trends in Biochemical Sciences</p><p><a href="http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1097-0134" target="_blank">Proteins: Structure, Function, and Genetics</a></p><p><a href="http://www.nature.com/ncb/index.html" target="_blank">Nature Cell Biology</a></p><p>Trends in Genetics</p><p><a href="http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1439-7633" target="_blank">ChemBioChem</a></p><p>Trends in Molecular Medicine</p><p><a href="http://link.springer.com/" target="_blank">Journal of Molecular Modelling</a></p><p>Trends in Pharmacological Sciences</p><p>Drug Discovery Today</p><p><a href="http://highwire.stanford.edu/lists/freeart.dtl" target="_blank">Others Free Online Full-text Journals</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/1467/biopython-cookbook</guid>
	<pubDate>Thu, 08 Aug 2013 06:43:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/1467/biopython-cookbook</link>
	<title><![CDATA[BioPython Cookbook]]></title>
	<description><![CDATA[<p>If you are planning to start learning BioPython ( it does not bite but&nbsp;swallow :P just kidding) then this online cookbook will be really helpful for you.</p><p>http://biopython.org/DIST/docs/tutorial/Tutorial.html</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/1514/list-of-pharmacogenomics-companies-worldwide</guid>
	<pubDate>Fri, 09 Aug 2013 13:24:47 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/1514/list-of-pharmacogenomics-companies-worldwide</link>
	<title><![CDATA[List of pharmacogenomics companies worldwide]]></title>
	<description><![CDATA[<div><div><p>Pharmacogenomics are the most promising area of research. Here is the list of some Pharmacogenomics companies worldwide. Feel free to add more pharmacogenomics companies if not mentioned in here.</p><p>Great Pharmacogenomics companies <br /><a href="http://www.aruplab.com/">www.aruplab.com</a> <br /><a href="http://www.clarientinc.com/">www.clarientinc.com</a> <br /><a href="http://www.cns-hts.com/">www.cns-hts.com</a> <br /><a href="http://www.dnanow.com/">www.dnanow.com</a> <br /><a href="http://www.dnavision.be/">www.dnavision.be</a> <br /><a href="http://www.dnavision.com/">www.dnavision.com</a> <br /><a href="http://www.dxsdiagnostics.com/">www.dxsdiagnostics.com</a> <br /><a href="http://www.entrogen.com/">www.entrogen.com</a> <br /><a href="http://www.exiqon.com/">www.exiqon.com</a> <br /><a href="http://www.gene.com/">www.gene.com</a> <br /><a href="http://www.genomichealth.com/">www.genomichealth.com</a> <br /><a href="http://www.genoptix.com/">www.genoptix.com</a> <br /><a href="http://www.genpathdiagnostics.com/">www.genpathdiagnostics.com</a> <br /><a href="http://www.gentris.com/">www.gentris.com</a> <br /><a href="http://www.immunicon.com/">www.immunicon.com</a> <br /><a href="http://www.ingenuity.com/">www.ingenuity.com</a> <br /><a href="http://www.lab21.com/">www.lab21.com</a> <br /><a href="http://www.labcorp.com/">www.labcorp.com</a> <br /><a href="http://www.lion-ag.de/">www.lion-ag.de</a> <br /><a href="http://www.lynxgen.com/">www.lynxgen.com</a> <br /><a href="http://www.mayoclinic.com/">www.mayoclinic.com</a> <br /><a href="http://www.mesoscale.com/">www.mesoscale.com</a> <br /><a href="http://www.microcide.com/">www.microcide.com</a> <br /><a href="http://www.mitokor.com/">www.mitokor.com </a> <br /><a href="http://www.monarchlifesciences.com/">www.monarchlifesciences.com</a> <br /><a href="http://www.mplnet.com/">www.mplnet.com</a> <br /><a href="http://www.orchidbio.com/">www.orchidbio.com</a> <br /><a href="http://www.pebio.com/">www.pebio.com</a> <br /><a href="http://www.phenomenome.com/">www.phenomenome.com</a> <br /><a href="http://www.phenopath.com/">www.phenopath.com</a> <br /><a href="http://www.ppgx.com/">www.ppgx.com</a> <br /><a href="http://www.prometheuslabs.com/">www.prometheuslabs.com</a> <br /><a href="http://www.protogene.com/">www.protogene.com</a> <br /><a href="http://www.questdiagnostics.com/">www.questdiagnostics.com</a> <br /><a href="http://www.rigelinc.com/">www.rigelinc.com</a> <br /><a href="http://www.rii.com/">www.rii.com</a> <br /><a href="http://www.saladax.com/">www.saladax.com</a> <br /><a href="http://www.tmdlab.com/">www.tmdlab.com</a> <br /><a href="http://www.transgenomic.com/">www.transgenomic.com</a> <br /><a href="http://www.twt.com/">www.twt.com</a> <br /><a href="http://www.uslabs.net/">www.uslabs.net</a> <br /><a href="http://www.variagenics.com/">www.variagenics.com</a> <br /><br />Great Equipment Companies for Genomics <br /><a href="http://www.affymetrix.com/">www.affymetrix.com</a> <br /><a href="http://www.illumina.com/">www.illumina.com</a> <br /><a href="http://www.iontorrent.com/">www.iontorrent.com</a> <br /><a href="http://www.sequenom.com/">www.sequenom.com</a> <br /><a href="http://www.appliedbiosystems.com/">www.appliedbiosystems.com</a> <br /><a href="http://www.454.com/">www.454.com</a> <br /><a href="http://www.appliedbiosystems.com/">www.appliedbiosystems.com</a><br /><br />Genomics in India <br /><a href="http://www.ganitlabs.in/">www.ganitlabs.in</a> <br /><a href="http://www.sandor.co.in/">www.sandor.co.in</a> <br /><a href="http://www.igib.res.in/">www.igib.res.in</a> <br /><a href="http://www.genotypic.co.in/">www.genotypic.co.in</a> <br /><a href="http://www.ocimumbio.com/">www.ocimumbio.com</a> <br /><a href="http://www.abcgenomics.com/">www.abcgenomics.com</a> <br /><a href="http://www.xcelrisgenomics.com/">www.xcelrisgenomics.com</a> <br /><a href="http://www.ayugen.com/">www.ayugen.com</a> <br /><a href="http://www.geneombiotech.com/">www.geneombiotech.com</a> <br /><br /> Large Global Whole Genome Companies <br /><a href="http://www.decode.com/">www.decode.com</a> <br /><a href="http://www.23andme.com/">www.23andme.com</a> <br /><a href="http://www.navigenics.com/">www.navigenics.com</a><br />www.pathway.com<br /><br /> Global companies offering genomics services <br /><a href="http://www.asuragen.com/">www.asuragen.com</a> <br /><a href="http://www.baseclear.com/">www.baseclear.com</a> <br /><a href="http://www.agtcenter.com/">www.agtcenter.com</a> <br /><a href="http://www.ambrygen.com/">www.ambrygen.com</a> <br /><a href="http://www.arosab.com/">www.arosab.com</a> <br /><a href="http://www.agrf.org.au/">www.agrf.org.au</a> <br /><a href="http://www.beckmangenomics.com/">www.beckmangenomics.com</a> <br /><a href="http://www.genomics.cn/">www.genomics.cn</a> <br /><a href="http://www.bsf.a-star.edu.sg/">www.bsf.a-star.edu.sg</a> <br /><a href="http://www.cbm.fvg.it/">www.cbm.fvg.it</a> <br /><a href="http://www.cincinnatichildrens.org/">www.cincinnatichildrens.org</a> <br /><a href="http://www.cofactorgenomics.com/">www.cofactorgenomics.com</a> <br /><a href="http://www.covance.com/">www.covance.com</a> <br /><a href="http://www.dnalandmarks.ca/">www.dnalandmarks.ca</a> <br /><a href="http://www.dnavision.com/">www.dnavision.com</a> <br /><a href="http://www.expressionanalysis.com/">www.expressionanalysis.com</a> <br /><a href="http://www.fasteris.com/">www.fasteris.com</a> <br /><a href="http://www.gatc-biotech.com/">www.gatc-biotech.com</a> <br /><a href="http://www.genesdiffusion.com/">www.genesdiffusion.com</a> <br /><a href="http://www.geneseek.com/">www.geneseek.com</a> <br /><a href="http://www.geneticvisions.com/">www.geneticvisions.com</a> <br /><a href="http://www.geneworks.com.au/">www.geneworks.com.au</a> <br /><a href="http://www.genizon.com/">www.genizon.com</a> <br /><a href="http://www.genoskan.dk/uk">www.genoskan.dk/uk</a> <br /><a href="http://www.gpbio.jp/">www.gpbio.jp</a> <br /><a href="http://www.igatechnology.com/">www.igatechnology.com</a> <br /><a href="http://www.igenixinc.com/">www.igenixinc.com</a> <br /><a href="http://www.auxologico.it/">www.auxologico.it</a> <br /><a href="http://www.lifeandbrain.com/">www.lifeandbrain.com</a> <br /><a href="http://www.macrogen.co.kr/eng">www.macrogen.co.kr/eng</a> <br /><a href="http://www.gqinnovationcenter.com/">www.gqinnovationcenter.com</a> <br /><a href="http://www.mftservices.de/">www.mftservices.de</a> <br /><a href="http://www.ncgr.org/">www.ncgr.org</a> <br /><a href="http://www.ramaciotti.unsw.edu.au/">www.ramaciotti.unsw.edu.au</a> <br /><a href="http://www.rikengenesis.jp/">www.rikengenesis.jp</a> <br /><a href="http://www.sabiosciences.com/">www.SABiosciences.com</a> <br /><a href="http://www.sequensysbio.com/">www.sequensysbio.com</a> <br /><a href="http://www.servicexs.com/">www.servicexs.com</a> <br /><a href="http://www.snp-genetics.com/">www.snp-genetics.com</a> <br /><a href="http://www.takara-bio.com/">www.takara-bio.com</a> <br /><a href="http://www.gen-probe.com/">www.gen-probe.com</a> <br /><a href="http://www.traitgenetics.com/">www.traitgenetics.com</a></p></div></div>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/2054/postdoc-positions-mammalian-transcriptome-evolution-at-sib</guid>
  <pubDate>Mon, 12 Aug 2013 19:58:33 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoc Positions - Mammalian Transcriptome Evolution at SIB]]></title>
  <description><![CDATA[
<p>BIOINFORMATICS POSTDOC IN FUNCTIONAL EVOLUTIONARY GENOMICS</p>

<p>Center for Integrative Genomics, University of Lausanne, Switzerland</p>

<p>Two postdoctoral positions (2 years with possible extensions up to 5 years) are available immediately in the evolutionary genomics group of Henrik Kaessmann.</p>

<p>We are seeking highly qualified and enthusiastic applicants with strong skills in computational biology/bioinformatics, preferably also with experience in data mining and comparative or evolutionary genome analysis.</p>

<p>We have been interested in a range of topics related to the functional evolution of genomes from primates (e.g., the emergence of new genes and their functions) and other mammals (e.g., the origin and evolution of mammalian sex chromosomes). In the framework of a recently launched series of projects, a large amount of transcriptome and genome (e.g., epigenome) data are being produced by the wet lab unit of the group using next generation sequencing technologies for a unique collection of tissues from representative mammals and outgroup species (e.g., birds). Topics of current projects based on these data include the origins and/or evolution of protein-coding genes, alternative splicing, microRNAs, long noncoding RNAs, and dosage compensation.</p>

<p>The postdoctoral fellow will perform integrated evolutionary/bioinformatics analyses based on data produced in the lab and available genomic data. The specific project will be developed together with the candidate.</p>

<p>The language of the institute is English, and its members form an international group that is rapidly expanding. The institute is located in Lausanne, a beautiful city at Lake Geneva.</p>

<p>For more information on the group and our institute more generally, please refer to our website: http://www.unil.ch/cig/page7858_en.html</p>

<p>Please submit a CV, statement of research interest, and names of three references to: Henrik Kaessmann (Henrik.Kaessmann@unil.ch).</p>

<p>Webpage : http://www.unil.ch/cig/page7858.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/2423/cancers-origins-revealed</guid>
	<pubDate>Thu, 15 Aug 2013 13:06:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/2423/cancers-origins-revealed</link>
	<title><![CDATA[Cancer's origins revealed]]></title>
	<description><![CDATA[<p>Researchers have provided the first comprehensive compendium of mutational processes that drive tumour development. Together, these mutational processes explain most mutations found in 30 of the most common cancer types. This new understanding of cancer development could help to treat and prevent a wide-range of cancers.<br /><br />More at &gt;&gt; http://www.sanger.ac.uk/about/press/2013/130814.html</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

</channel>
</rss>