<?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/27430?offset=130</link>
	<atom:link href="https://bioinformaticsonline.com/related/27430?offset=130" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/15030/software-engineercomputational-biologist-equinome-ltd-dublin-ireland</guid>
  <pubDate>Thu, 04 Sep 2014 19:21:26 -0500</pubDate>
  <link></link>
  <title><![CDATA[Software engineer/Computational Biologist - Equinome Ltd., Dublin, Ireland]]></title>
  <description><![CDATA[
<p>Equinome (www.equinome.com) is the world leader in the research and<br />development of state-of-the-art novel genomic tools to inform the breeding,<br />selection and training of Thoroughbred racehorses. Since its launch in 2010,<br />Equinome has successfully commercialised three performance-related genetic<br />tests, with a pipeline of further genetic tests in development. We work with<br />many of the world's leading racehorse trainers and breeders in Europe,<br />Australasia, USA and South Africa. The company has been featured on CNN,<br />Bloomberg, RTE, BBC, The Guardian, Discovery Channel and Channel 4, among<br />others.</p>

<p>The Role</p>

<p>We are looking for a Software Engineer - Computational Biologist with 3+<br />years' experience in a similar role to design and implement a backend system<br />to support an online individualised genomics interface. This position is a<br />great opportunity for an ambitious, self-motivated individual to work in a<br />demanding, challenging and interesting role.</p>

<p>Position Description:<br />. Participate in planning, design, and implementation of Equinome back<br />end systems and technologies.<br />. Implement interfaces and management tools for back end services.<br />. Manage, analyse, interpret and visualise large genomics data sets.<br />. Work closely with scientific team to develop new features and<br />application enhancements<br />. Design, develop and manage a genomics research database.</p>

<p>Qualification/Experience:<br />. Minimum MSc in Computer Science, Genetics, Bioinformatics or in a<br />related field (A Ph.D qualification would be an advantage).<br />. Proven 3+ years of experience in similar role.<br />. Highly proficient in Python, SQL, MySQL.<br />. Excellent knowledge of mammalian genomics, bioinformatics and<br />statistical/population genetics.<br />. Hands-on experience working with large data sets.<br />. Experience with front-end technologies (HTML/CSS/Javascript) an<br />advantage.<br />. Experience in rapid web application development: e.g. Django.<br />. Knowledge or experience of Unix Scripting and R statistical<br />programming language would be an advantage.<br />. Ability to work with minimum supervision to deliver high-quality<br />code on time.<br />. Fluency in English and good written and communication skills.<br />. Meticulous attention to detail.</p>

<p>Applications should be submitted before Friday, 26 September 2014 using the<br />following link:<br />http://bit.ly/WgbhxS</p>

<p>Note: Full information and application procedure is available at this link:<br />http://bit.ly/WgbhxS</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/17926/orange-bioinformatics-2534</guid>
	<pubDate>Mon, 06 Oct 2014 12:51:37 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/17926/orange-bioinformatics-2534</link>
	<title><![CDATA[Orange-Bioinformatics 2.5.34]]></title>
	<description><![CDATA[<p>Orange Bioinformatics extends <a href="http://orange.biolab.si/">Orange</a>, a data mining software package, with common functionality for bioinformatics. The provided functionality can be accessed as a Python library or through a visual programming interface (Orange Canvas). The latter is also suitable for non-programmers.</p>
<p>Orange Bioinformatics provides access to publicly available data, like GEO data sets, Biomart, GO, KEGG, Atlas, ArrayExpress, and PIPAx database. As for the analytics, there is gene selection, quality control, scoring distances between experiments with multiple factors. All features can be combined with powerful visualization, network exploration and data mining techniques from the Orange data mining framework.</p><p>Address of the bookmark: <a href="https://pypi.python.org/pypi/Orange-Bioinformatics/2.5.34" rel="nofollow">https://pypi.python.org/pypi/Orange-Bioinformatics/2.5.34</a></p>]]></description>
	<dc:creator>Robert M Willioms</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44229/common-steps-for-reads-mapping</guid>
	<pubDate>Thu, 09 Mar 2023 02:48:02 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44229/common-steps-for-reads-mapping</link>
	<title><![CDATA[Common steps for reads mapping !]]></title>
	<description><![CDATA[<div><div><div><div><div><div><div><div><div><div><p>Mapping reads to a reference genome is an essential step in many types of genomic analysis, such as variant calling and gene expression analysis. Here are some general steps to follow for mapping reads to a genome:</p><ol>
<li>
<p>Choose a read mapper: There are many read mappers available, such as BWA, Bowtie, and HISAT2. Choose a mapper that is appropriate for your type of data and research question.</p>
</li>
<li>
<p>Index the reference genome: Before mapping reads, the reference genome needs to be indexed. This involves creating an index of the genome sequence that allows the mapper to quickly find matches to the reads. Most mappers have their own indexing tools.</p>
</li>
<li>
<p>Prepare the read data: The reads should be in a format that is compatible with the mapper. Most mappers accept FASTQ or BAM files. Depending on the quality of the data, it may need to be filtered or trimmed before mapping.</p>
</li>
<li>
<p>Run the mapper: The mapper is run with the command-line interface or using a graphical user interface. The specific command depends on the mapper being used, but typically involves specifying the input data, reference genome, and output file format.</p>
</li>
<li>
<p>Evaluate the mapping results: After the mapping is complete, the results should be evaluated. This includes assessing the quality of the mapping, such as the mapping rate, the number of mapped reads, and the mapping quality score.</p>
</li>
<li>
<p>Post-processing: Depending on the analysis being performed, post-processing of the mapped reads may be necessary. This can include filtering reads based on quality, removing duplicate reads, and calling variants.</p>
</li>
</ol><p>Overall, mapping reads to a reference genome is a complex process that requires careful consideration of the type of data, the research question, and the specific mapper being used.</p></div></div></div></div></div></div></div></div></div></div>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/18385/biinformamatics-lead-at-google-life-sciences</guid>
  <pubDate>Fri, 17 Oct 2014 02:24:55 -0500</pubDate>
  <link></link>
  <title><![CDATA[Biinformamatics Lead at Google Life Sciences]]></title>
  <description><![CDATA[
<p>Google Life Sciences is recruiting a technical lead with experience in bioinformatics and clinical bioinformatics, including for biomarker discovery projects such as the Baseline study.</p>

<p>Responsibilities</p>

<p>Lead teams of scientists in structuring, prototyping, and executing large-scale bioinformatic and other analysis.<br />Develop novel bioinformatics, statistical, data processing, pathway, data mining and other algorithms to identify biological signals and their clinical correlates in broad kinds of individual and population data.<br />Develop novel platform-level analytical tools for sequence-based assays (assembly, annotation, variant calling and interpretation, phasing, genome structure, etc.), expression assays (RNAseq and microarray), proteomics, and metabolomics.<br />Develop statistical models that robustly correlate complex laboratory-derived information with phenotypic and clinical information.<br />Create scientifically rigorous visualizations, communications, and presentations of results.</p>

<p>Reference @ https://www.google.com/about/careers/search#!t=jo&amp;jid=62095001</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/18580/faculty-positions-at-central-university-of-punjab-bathinda</guid>
  <pubDate>Wed, 22 Oct 2014 10:45:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[Faculty Positions at CENTRAL UNIVERSITY OF PUNJAB, BATHINDA]]></title>
  <description><![CDATA[
<p>Advertisement No. T/NT-01 (2014)</p>

<p>Faculty Positions<br />The Central University of Punjab (CUP), Bathinda will be having the Schools and Departments as given in Table-I. The University invites applications from eligible candidates for the posts of Professors (Pay Band Rs. 37400-67000 with AGP of Rs. 10, 000/-), Associate Professors (Pay Band Rs.37400-67000 with AGP of Rs. 9,000/-) and Assistant Professors (Pay Band Rs.15600-39100 with AGP of Rs. 6,000/-)</p>

<p>POSITION AVAILABLE IN THE AREA OF SPECIALIZTION</p>

<p>3. Bioinformatics,</p>

<p>Procedure to apply: Application forms along with API form complete in all respect along with necessary documents and application fee of Rs. 750/-. (Rs. 250/- for Scheduled Caste/Scheduled Tribe/Person with disabilities) should be sent to:</p>

<p>Registrar (Officiating)<br />Central University of Punjab<br />City Campus, Mansa Road<br />Bathinda-151 001</p>

<p>Application forms from the prospective candidates are accepted upto November 10, 2014.</p>

<p>Based on the qualification of the candidates and the need of the university, the applications received will be processed through appropriately constituted selection committees shortly. Minimum qualification can be relaxed in case of exceptionally outstanding candidate. For further details visit www.cup.ac.in; www.centralunipunjab.com; www.cup.edu.in</p>

<p>The candidate should download the application form available at website www.cup.ac.in;<br />www.centralunipunjab.com; and submit it complete in all respects on or before 10th November 2014.</p>

<p>Those who have applied earlier need to submit Academic Performance Index (API) form, 5 copies of Summary of the Application Form (available at: www.cup.ac.in; www.centralunipunjab.com and Updated CV if not updated recently (without application fee).</p>

<p>http://cup.edu.in/Faculty_details_and_general_instructions.pdf</p>

<p>http://cup.edu.in/Final%20Application%20and%20summary%20Sheet%20and%20Api%20form.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/19020/jrf-in-bioinformatics-bioinformatics-centre-north-eastern-hill-university</guid>
  <pubDate>Thu, 06 Nov 2014 10:24:05 -0600</pubDate>
  <link></link>
  <title><![CDATA[JRF in Bioinformatics @ Bioinformatics Centre, North-Eastern Hill University]]></title>
  <description><![CDATA[
<p>Applications with complete bio-data are invited for JRF (3) and Project Assistant (1) in a DBT project "Next Generation Sequencing (NGS)-based de novo assembly of expressed transcripts and genome information of Orchids in North-East India" sanctioned for a period of 3 years.</p>

<p>Details are available at www.nehu.ac.in and www.bicnehu.ac.in.</p>

<p>Applications must reach the undersigned within 15 days from the date of publication of this advertisement.</p>

<p>Prof. Pramod Tandon. PI/Mr. Devendra Kumar Biswal (Co-PI)</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/19087/dcgor</guid>
	<pubDate>Sat, 08 Nov 2014 14:54:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/19087/dcgor</link>
	<title><![CDATA[dcGOR]]></title>
	<description><![CDATA[<p>An R package for analysing ontologies and protein domain annotations has been published in PLoS Computational Biology (http://dx.doi.org/10.1371/journal.pcbi.1003929). The package is distributed as part of CRAN (http://cran.r-project.org/package=dcGOR), and also at GitHub for version control.<br /><br />The dedicated website is available in http://supfam.org/dcGOR, from which several demos are also provided:<br /><br />1. Analysing SCOP domains: http://supfam.org/dcGOR/demo-Fang.html<br /><br />2. Analysing Pfam domains: http://supfam.org/dcGOR/demo-Basu.html<br /><br />3. Analysing InterPro domains: http://supfam.org/dcGOR/demo-Customisation.html<br /><br />&nbsp;</p>]]></description>
	<dc:creator>Martin Jones</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24298/staff-scientists-at-national-institute-of-plant-genome-research-new-delhi</guid>
  <pubDate>Fri, 04 Sep 2015 22:06:59 -0500</pubDate>
  <link></link>
  <title><![CDATA[Staff Scientists at National Institute of Plant Genome Research, New Delhi]]></title>
  <description><![CDATA[
<p>National Institute of Plant Genome Research, New Delhi is an Autonomous Research Institution funded by Department of Biotechnology, Ministry of Science &amp; Technology, Govt. of India, to pursue research on various aspects of plant genomics. The Institute is also in the process of establishing a NIPGR Translational Centre at Biotech Science Cluster, NCR, Faridabad. NIPGR invites applications from Indian Citizens for filling up the vacant posts on Direct Recruitment basis, as detailed below. The posts are temporary but likely to continue.</p>

<p>Staff Scientists</p>

<p>Specialization: Applicant should have a Ph.D. with excellent academic credentials along with the track record of scientific productivity evidenced by publications/patents/products in the frontier areas of Plant Biology such as, Computational Biology, Genome Analysis and Molecular Mapping, Molecular Mechanism of Abiotic Stress Responses, Nutritional Genomics, Plant Development and Architecture, Plant Immunity, Molecular Breeding, Transgenics for crop improvement and other emerging areas based on plant genomics.</p>

<p>Remuneration: The length of experience and scientific accomplishments/quality of scientific productivity record will be major factors in deciding the level of appointment as Staff Scientist as well as starting salary in the Pay Bands of Rs 15,600-39,100 (with grade pay of  5400), and Rs 37,400-67,000 (with grade pay of  8,700 and  8,900) plus usual allowances admissible to the Central Government employees. However, NIPGR reserves the right to select candidates in the lower grade against the foregoing posts depending upon the qualifications and experience of the candidate. Reservation of posts shall be as per Govt. of India norms. Five posts (SC-2, ST-1, OBC-2) in the Pay Band of Rs 15,600-39,100 with Grade Pay of  Rs 5400, are reserved.</p>

<p>More at http://www.nipgr.res.in/careers/vacancies_latest.php#</p>

<p>Apply online at http://www.nipgr.res.in/nipgr_recu/nipgr_recu.php</p>

<p>Form http://www.nipgr.res.in/files/careers/Application_Performa_2015.doc</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/25400/arraygen-next-generation-genome-browser-coming-soon</guid>
	<pubDate>Thu, 03 Dec 2015 05:52:09 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/25400/arraygen-next-generation-genome-browser-coming-soon</link>
	<title><![CDATA[ArrayGen Next Generation Genome Browser Coming Soon !!!]]></title>
	<description><![CDATA[<p>The ANG genome browser is a visualization tool, developed by ArrayGen Technologies. This is a fast and an efficient genome browser, built with Javafx and Java swing. ANG genome browser was built for latest next generation sequencing data analysis. It is platform independent and much simpler to use.</p><p>The main features are, it supports many standard file formats such as GFF, BED, GTF, FASTA, VCF, BAM and it can be integrated with other browsers or tools for analysis of genome.</p>]]></description>
	<dc:creator>ArrayGen Technologies</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26309/ratt</guid>
	<pubDate>Sun, 07 Feb 2016 16:09:40 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26309/ratt</link>
	<title><![CDATA[RATT]]></title>
	<description><![CDATA[<p><strong>RATT</strong> is software to transfer annotation from a reference (annotated) genome to an unannotated query genome.</p>
<p>It was first developed to transfer annotations between different genome assembly versions. However, it can also transfer annotations between strains and even different species, like <em>Plasmodium chabaudi</em> onto <em> P. berghei</em>, between different Leishmania species or <em>Salmonella enterica</em> onto other Salmonella serotypes. <strong>RATT</strong> is able to transfer any entries present on a reference sequence, such as the systematic id or an annotator's notes; such information would be lost in a <em>de novo</em> annotation.</p>
<p>More at http://ratt.sourceforge.net/</p><p>Address of the bookmark: <a href="http://ratt.sourceforge.net/" rel="nofollow">http://ratt.sourceforge.net/</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

</channel>
</rss>