<?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/30149?offset=410</link>
	<atom:link href="https://bioinformaticsonline.com/related/30149?offset=410" 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/blog/view/42936/ancient-whole-genome-duplication-wgd-detection-tools</guid>
	<pubDate>Sun, 07 Mar 2021 00:32:44 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42936/ancient-whole-genome-duplication-wgd-detection-tools</link>
	<title><![CDATA[Ancient whole genome duplication (WGD) detection tools !]]></title>
	<description><![CDATA[<p>There are two methods for ancient WGD detection, one is collinearity analysis, and the other is based on the Ks distribution map. Among them, Ks is defined as the average number of synonymous substitutions at each synonymous site, and there is also a Ka corresponding to it, which refers to the average number of non-synonymous substitutions at each non-synonymous site.</p><p>At present, some people have posted articles about the analysis process of WGD. I searched for the keyword "wgd pipeline" and found the following:</p><p><strong>GenoDup: https:// github.com/MaoYafei/GenoDup-Pipeline</strong><br /><strong>https://peerj.com/articles/6303/</strong><br /><strong>WGDdetector: https:// github.com/yongzhiyang2 012/WGDdetector</strong><br /><strong>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-019-2670-3</strong><br /><strong>wgd: https:// github.com/arzwa/wgd</strong><br /><strong>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1142-2#Sec1</strong><br /><strong>https://bmcbiol.biomedcentral.com/articles/10.1186/s12915-017-0399-x</strong><br /><strong>GeNoGAP https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1142-2</strong><br /><strong>https://bmcbiol.biomedcentral.com/articles/10.1186/s12915-017-0399-x</strong><br /><strong>https://github.com/dfguan/purge_dups</strong><br /><strong>https://www.biorxiv.org/content/10.1101/2020.01.24.917997v1</strong></p><p>This article introduces the usage of wgd.</p><p>Wgd cannot be installed directly with bioconda at present, so it is a little troublesome to install, because it depends on a lot of software. wgd depends on the following software</p><p><strong>BLAST</strong><br /><strong>MCL</strong><br /><strong>MUSCLE/MAFFT/PRANK</strong><br /><strong>PAML</strong><br /><strong>PhyML/FastTree</strong><br /><strong>i-ADHoRe</strong></p><p>But the good news is that most of the software it depends on can be installed with bioconda</p><blockquote><p>conda create -n wgd python=3.5 blast mcl muscle mafft prank paml fasttree cmake libpng mpi=1.0=mpich<br />conda activate wgd</p></blockquote><p>Here mpi=1.0=mpich is selected, because i-adhore depends on mpich. If openmpi is installed, an error will appear while loading shared libraries: libmpi_cxx.so.40: cannot open shared object file: No such file or directory</p><p>After that, the installation is much simpler</p><blockquote><p>git clone https://github.com/arzwa/wgd.git<br />cd wgd<br />pip install .<br />pip install git+https://github.com/arzwa/wgd.git<br />For i-ADHoRe, you need to register at http:// bioinformatics.psb.ugent.be /webtools/i-adhore/licensing/Agree to the license to download i-ADHoRe-3.0</p></blockquote><p>Since my miniconda3 installed ~/opt/, the installation path is so~/opt/miniconda3/envs/wgd/</p><blockquote><p>tar -zxvf i-adhore-3.0.01.tar.gz<br />cd i-adhore-3.0.01<br />mkdir -p build &amp;&amp; cd build<br />cmake .. -DCMAKE_INSTALL_PREFIX=~/opt/miniconda3/envs/wgd/<br />make -j 4 <br />make insatall</p></blockquote><p>Take the sugarcane genome Saccharum spontaneum L as an example. The genome is 8-ploid with 32 chromosomes (2n = 4x8 = 32)</p><p><strong>Download the tutorial for CDS and GFF annotation files</strong></p><blockquote><p><strong>mkdir -p wgd_tutorial &amp;&amp; cd wgd_tutorial</strong><br /><strong>wget http://www.life.illinois.edu/ming/downloads/Spontaneum_genome/Sspon.v20190103.cds.fasta.gz</strong><br /><strong>wget http://www.life.illinois.edu/ming/downloads/Spontaneum_genome/Sspon.v20190103.gff3.gz</strong><br /><strong>gunzip *.gz</strong></p></blockquote><p>First conda activate wgdstart our analysis environment, and then start the analysis</p><p>Step 1 : Use to wgd mclidentify homologous genes in the genome</p><blockquote><p>wgd mcl -n 20 --cds --mcl -s Sspon.v20190103.cds.fasta -o Sspon_cds.out</p></blockquote><p>Step 2 : Use to wgd ksdbuild Ks distribution</p><blockquote><p>wgd ksd --n_threads 80 Sspon_cds.out/Sspon.v20190103.cds.fasta.blast.tsv.mcl Sspon.v20190103.cds.fasta</p></blockquote><p>Step 3 : If the quality of the genome is good, then wgd syncollinearity analysis can be used . It can help us find the collinearity block in the genome and the corresponding anchor point</p><blockquote><p>wgd syn --feature gene --gene_attribute ID \<br /> -ks wgd_ksd/Sspon.v20190103.cds.fasta.ks.tsv \<br /> Sspon.v20190103.gff3 Sspon_cds.out/Sspon.v20190103.cds.fasta.blast.tsv.mcl</p></blockquote><p>&nbsp;For more reading - There are 9 sub-modules in WGD</p><ul>
<li><span>kde: KDE fitting to the Ks distribution</span></li>
<li><span>ksd: Ks distribution construction</span></li>
<li><span>mcl: BLASP comparison of All-vs-ALl + MCL classification analysis.</span></li>
<li><span><span>mix: Hybrid modeling of Ks distribution.</span></span></li>
<li><span>pre: preprocess the CDS file</span></li>
<li><span>syn: Call I-ADHoRe 3.0 to use GFF files for collinearity analysis</span></li>
<li><span>viz: draw histogram and density plot</span></li>
<li><span>wf1: Ks standard analysis procedure of the whole genome paranome (paranome), call mcl, ksd and syn</span></li>
<li><span>wf2: Ks standard analysis procedure of one-vs-one homologous gene (ortholog), call wcl and kSD</span></li>
</ul>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/16313/project-assistant-position-at-jmi</guid>
  <pubDate>Fri, 12 Sep 2014 00:37:44 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Assistant Position at JMI]]></title>
  <description><![CDATA[
<p>Project Assistant Position (@ Rs.10,000/pm Fixed) is available for one year ina research project funded by the Department of Science and Technology entitled, "Folding and stability of naturally truncated photosynthetic pigment,C- phycoerythrin from cyanobacterium Phormidium tenue", at Centre forInterdisciplinary Research in Basic Sciences, lamia Millia Islamia, New Delhi-110025 under' the supervision of Dr. Md. Imtaiyaz Hassan (PrincipalInvestigator).</p>

<p>Eligibility:<br />M.Sc. in any stream of Life Sciences with minimum 55% marks.</p>

<p>Desirable:<br />Candidates having experience in Molecular Spectroscopy, Protein Folding and Bioinformatics will be preferred.</p>

<p>Interested candidate may appear in the walk in Interview conducted on September 16, 2014 (Tuesday) 11:00 AM in the Director's Office, Centre for Interdisciplinary Research in Basic Sciences, lamia Millia Islamia, New Delhi-110025.<br />Candidates are required to bring a set of Xerox copy of their recent CV and qualifying degree (certificate/mark sheet) along with original documents. NoTA/DA will be paid.</p>

<p>For any further information you may e-mail to: mihassan@jmLac.in</p>

<p>Read more at http://jmi.ac.in/upload/advertisement/jobs_cirbs_2014september8.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43112/calling-variants-in-non-diploid-systems</guid>
	<pubDate>Sat, 26 Jun 2021 15:37:49 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43112/calling-variants-in-non-diploid-systems</link>
	<title><![CDATA[Calling variants in non-diploid systems]]></title>
	<description><![CDATA[<p><span>The main challenge associated with non-diploid variant calling is the difficulty in distinguishing between the sequencing noise (abundant in all NGS platforms) and true low frequency variants. Some of the early attempts to do this well have been accomplished on human mitochondrial&nbsp;</span><span>DNA</span><span>&nbsp;although the same approaches will work equally good on viral and bacterial genomes (</span><a href="https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/tutorial.html#Rebolledo-Jaramillo2014">Rebolledo-Jaramillo&nbsp;<em>et al.</em>&nbsp;2014</a><span>,&nbsp;</span><a href="https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/tutorial.html#Li2015">Li&nbsp;<em>et al.</em>&nbsp;2015</a><span>).</span></p><p>Address of the bookmark: <a href="https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/tutorial.html" rel="nofollow">https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/tutorial.html</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/17188/jamia-hamdard-bioinformatics-faculty-jobs-2014</guid>
  <pubDate>Sat, 20 Sep 2014 21:00:05 -0500</pubDate>
  <link></link>
  <title><![CDATA[JAMIA HAMDARD Bioinformatics Faculty Jobs 2014]]></title>
  <description><![CDATA[
<p>JAMIA HAMDARD</p>

<p>(Deemed University)</p>

<p>Hamdard Nagar, New Delhi – 110 062</p>

<p>R E C R U I T M E N T</p>

<p>(Advertisement No. 5/2014)</p>

<p>Applications on prescribed form are invited for filling up the following teaching positions in the Department of Biotechnology, Faculty of Science in the university. Eligible candidates may apply on or before 30.09.2014.</p>

<p>1. Professor/Associate Professor - One in Pay Band of Rs. 37400-67000+ AGP Rs.10000/9000</p>

<p>2. Assistant Professor                   -  Two in Pay Band of Rs. 15600-39100+ AGP Rs. 6000/-</p>

<p>ASSISTANT PROFESSOR – 02 (including 01 SFS)</p>

<p>Specialization : Bioinformatics</p>

<p>Qualification and Experience :</p>

<p>Ph.D. in Biotechnology or an allied discipline with M.Sc. in Biotechnology/ Biochemistry in the First division or equivalent grade from a recognized University/ Institute.</p>

<p>NET in Life Science or allied discipline in addition to the above qualification.</p>

<p>Experience : At  least two years of Post-doctoral teaching and/or research experience in Bioinformatics or relevant field in a UGC recognized Institution of repute or international research institute/ University.  Proof of research to be evidenced by publications in SCI-indexed journals of high impact factor as the first or corresponding author.</p>

<p>Note : University may consider exempting candidates from NET, who has been awarded Ph.D. degree from ‘A’ Grade accredited University following the procedure as notified by the UGC in its Regulations of 2009 and adopted by Jamia Hamdard.</p>

<p>For more information: http://www.jamiahamdard.ac.in/PDF/Online%20application%20form%20_Teaching_1.pdf<br />http://www.jamiahamdard.ac.in/PDF/PBAS.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43766/genometools-the-versatile-open-source-genome-analysis-software</guid>
	<pubDate>Wed, 02 Feb 2022 04:00:21 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43766/genometools-the-versatile-open-source-genome-analysis-software</link>
	<title><![CDATA[GenomeTools: The versatile open source genome analysis software]]></title>
	<description><![CDATA[<p>The&nbsp;<em>GenomeTools</em>&nbsp;genome analysis system is a&nbsp;<a href="http://genometools.org/license.html">free</a>&nbsp;collection of bioinformatics&nbsp;<a href="http://genometools.org/tools.html">tools</a>&nbsp;(in the realm of genome informatics) combined into a single binary named&nbsp;<em>gt</em>. It is based on a C library named &ldquo;libgenometools&rdquo; which consists of several modules.</p>
<p><img src="http://genometools.org/images/annotation.png" alt="image" style="border: 0px;"></p>
<p>If you are interested in gene prediction, have a look at&nbsp;<a href="http://genomethreader.org/" title="GenomeThreader gene prediction        software"><em>GenomeThreader</em></a>.</p>
<p>http://genometools.org/pub/</p><p>Address of the bookmark: <a href="http://genometools.org/" rel="nofollow">http://genometools.org/</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/17500/joao-pedro-de-magalhaes-lab</guid>
  <pubDate>Fri, 26 Sep 2014 19:08:34 -0500</pubDate>
  <link></link>
  <title><![CDATA[Joao Pedro de Magalhaes Lab]]></title>
  <description><![CDATA[
<p>Ageing has a profound impact on human society and modern medicine, yet it remains a major puzzle of biology. The goal of my work is to help understand the genetic, cellular, and molecular mechanisms of ageing. In the long term, I would like my work to help ameliorate age-related diseases and preserve health. No other biomedical field has so much potential to improve human health as research on the basic mechanisms of ageing. Please see our lab website for further details about our work and publications. </p>

<p>Functional and Comparative Genomics</p>

<p>http://jp.senescence.info/<br />http://www.senescence.info/<br />http://www.liv.ac.uk/integrative-biology/staff/joao-de-magalhaes/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43661/maftools</guid>
	<pubDate>Fri, 17 Dec 2021 03:18:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43661/maftools</link>
	<title><![CDATA[maftools]]></title>
	<description><![CDATA[<p>With advances in Cancer Genomics, <a href="https://docs.gdc.cancer.gov/Data/File_Formats/MAF_Format/">Mutation Annotation Format</a> (MAF) is being widely accepted and used to store somatic variants detected. <a href="http://cancergenome.nih.gov">The Cancer Genome Atlas</a> Project has sequenced over 30 different cancers with sample size of each cancer type being over 200. <a href="https://wiki.nci.nih.gov/display/TCGA/TCGA+MAF+Files">Resulting data</a> consisting of somatic variants are stored in the form of <a href="https://docs.gdc.cancer.gov/Data/File_Formats/MAF_Format/">Mutation Annotation Format</a>. This package attempts to summarize, analyze, annotate and visualize MAF files in an efficient manner from either TCGA sources or any in-house studies as long as the data is in MAF format.</p>
<p>https://www.bioconductor.org/packages/devel/bioc/vignettes/maftools/inst/doc/maftools.html</p><p>Address of the bookmark: <a href="https://github.com/PoisonAlien/maftools" rel="nofollow">https://github.com/PoisonAlien/maftools</a></p>]]></description>
	<dc:creator>Surabhi Chaudhary</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23628/postgraduate-research-associate-bioinformatics-computational-biology-reference-code-59</guid>
  <pubDate>Tue, 04 Aug 2015 20:32:39 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postgraduate Research Associate Bioinformatics / Computational Biology (Reference code: 59)]]></title>
  <description><![CDATA[
<p>The Department of Biotechnology, group “Genome Bioinformatics” is currently seeking a Postgraduate Research Associate Bioinformatics / Computational Biology (Reference code: 59)</p>

<p>Extent of employment: 30 Hours per Week<br />Duration of employment: 1st of October 2015 to 30th of September 2019<br />Gross monthly salary and pay grade in terms of collective agreement for university staff (payable 14 times per year): B1, € 1.997,20</p>

<p>Responsibilities<br />The successful candidate (f/m) will pursue a Ph.D. project related to the interpretation of plant genome and transcriptome sequencing data from next-generation sequencing (NGS) platforms. In particular, the candidate will characterize the unexplored genome of quinoa, a crop plant of long-standing tradition in Latin America. We collaborate with research partners in Austria and abroad, and the candidate’s project will be of central importance in the context of this research network.</p>

<p>Required skills and qualifications<br />We are looking for a graduate student (f/m) with a Master’s degree in bioinformatics or in a related field, solid programming skills (e.g. developing sequence analysis tools), experience with the analysis of NGS data sets, understanding of lab methods and knowledge of genomics/transcriptomics. The group has successfully performed several projects using NGS technology. We have recently published the reference genome sequence of sugar beet (Dohm et al., Nature, 2014), a crop plant closely related to quinoa (same family, but different genus). Not yet published is a quinoa genome assembly that we have generated, and which will serve as the starting point of the candidate’s project. We are a multidisciplinary team and offer work in a lively and friendly atmosphere, and state-of-the-art computing infrastructure. We are looking forward to expanding our team by a dedicated and strongly motivated person with a distinct interest in the challenges of plant genomics.</p>

<p>Applications can be submitted until: 16th of August 2015</p>

<p>University of Natural Resources and Life Sciences Vienna seeks to increase the number of its female faculty and staff members. Therefore qualified women are strongly encouraged to apply. In case of equal qualification, female candidates will be given preference unless reasons specific to an individual male candidate tilt the balance in his favour.</p>

<p>Please send your job application (incl. letter of motivation, CV, summary of Master’s thesis and contact details for two referees) to Personnel department, University of Natural Resources and Life Sciences, 1190 Vienna, Peter-Jordan-Straße 70; E-Mail: kerstin.buchmueller@boku.ac.at. (Reference code: 59)</p>

<p>We regret that we cannot reimburse applicants travel and lodging expenses incurred as part of the selection and hiring process.</p>

<p>www.boku.ac.at</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/43728/short-read-assembly-using-spades</guid>
	<pubDate>Mon, 31 Jan 2022 07:18:16 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/43728/short-read-assembly-using-spades</link>
	<title><![CDATA[Short-read assembly using Spades !]]></title>
	<description><![CDATA[<h2 id="short-read-assembly-a-comparison">If we only had Illumina reads, we could also assemble these using the tool Spades.</h2><p>You can try this here, or try it later on your own data.</p><h2 id="get-data">Get data</h2><p>We will use the same Illumina data as we used above:</p><ul>
<li>illumina_R1.fastq.gz: the Illumina forward reads</li>
<li>illumina_R2.fastq.gz: the Illumina reverse reads</li>
</ul><h2 id="assemble">Assemble</h2><p>Run Spades:</p><div><pre>spades.py -1 illumina_R1.fastq.gz -2 illumina_R2.fastq.gz --careful --cov-cutoff auto -o spades_assembly_all_illumina
</pre></div><ul>
<li><code>-1</code>&nbsp;is input file of forward reads</li>
<li><code>-2</code>&nbsp;is input file of reverse reads</li>
<li><code>--careful</code>&nbsp;minimizes mismatches and short indels</li>
<li><code>--cov-cutoff auto</code>&nbsp;computes the coverage threshold (rather than the default setting, &ldquo;off&rdquo;)</li>
<li><code>-o</code>&nbsp;is the output directory</li>
</ul><h2 id="results">Results</h2><p>Move into the output directory and look at the contigs:</p><div><pre>infoseq contigs.fasta</pre></div>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>

</channel>
</rss>