<?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/32633?offset=1080</link>
	<atom:link href="https://bioinformaticsonline.com/related/32633?offset=1080" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41991/sequence-ontology-bioinformatics-analysis-soba-tool-to-provide-a-simple-statistical-and-graphical-summary-of-an-annotated-genome</guid>
	<pubDate>Wed, 22 Jul 2020 10:11:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41991/sequence-ontology-bioinformatics-analysis-soba-tool-to-provide-a-simple-statistical-and-graphical-summary-of-an-annotated-genome</link>
	<title><![CDATA[Sequence Ontology Bioinformatics Analysis (SOBA) tool to provide a simple statistical and graphical summary of an annotated genome]]></title>
	<description><![CDATA[<p><span>We have developed the Sequence Ontology Bioinformatics Analysis (SOBA) tool to provide a simple statistical and graphical summary of an annotated genome. We envisage its use during annotation jamborees, genome comparison and for use by developers for rapid feedback during annotation software development and testing. SOBA also provides annotation consistency feedback to ensure correct use of terminology within annotations, and guides users to add new terms to the Sequence Ontology when required. SOBA is available at http://www.sequenceontology.org/cgi-bin/soba.cgi.</span></p>
<p><span>More at <a href="https://pubmed.ncbi.nlm.nih.gov/20494974/">https://pubmed.ncbi.nlm.nih.gov/20494974/</a></span></p><p>Address of the bookmark: <a href="http://www.sequenceontology.org/cgi-bin/soba.cgi" rel="nofollow">http://www.sequenceontology.org/cgi-bin/soba.cgi</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44722/step-by-step-guide-to-running-genome-assembly</guid>
	<pubDate>Fri, 13 Dec 2024 11:35:55 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44722/step-by-step-guide-to-running-genome-assembly</link>
	<title><![CDATA[Step-by-Step Guide to Running Genome Assembly]]></title>
	<description><![CDATA[<p>Genome assembly is a critical process in bioinformatics, enabling the reconstruction of an organism's genome from short DNA sequence reads. Whether you&rsquo;re working on a new microbial genome or a complex eukaryotic organism, this guide will walk you through the steps of genome assembly using state-of-the-art tools and best practices.</p><h4><strong>What is Genome Assembly?</strong></h4><p>Genome assembly involves piecing together short DNA sequence reads generated by sequencing platforms (e.g., Illumina, PacBio, Oxford Nanopore) into longer, contiguous sequences called contigs. This can be performed as:</p><ul>
<li><strong>De Novo Assembly</strong>: Without a reference genome.</li>
<li><strong>Reference-Guided Assembly</strong>: Using a reference genome to guide the assembly process.</li>
</ul><h4><strong>Step 1: Preparing Your Data</strong></h4><p>Before starting the assembly, ensure that your raw sequencing data is high quality.</p><ol>
<li>
<p><strong>Input Data</strong></p>
<ul>
<li><strong>Short Reads</strong>: Illumina sequencing generates short, accurate reads ideal for scaffolding.</li>
<li><strong>Long Reads</strong>: PacBio and Nanopore sequencing provide long reads for resolving repetitive regions.</li>
</ul>
</li>
<li>
<p><strong>Quality Control (QC)</strong><br />Use tools like <strong>FastQC</strong> or <strong>MultiQC</strong> to assess the quality of your reads:</p>
<div>
<div dir="ltr"><code>fastqc reads.fastq multiqc . </code></div>
</div>
<p>Look for issues like low-quality bases, adapter contamination, or overrepresented sequences.</p>
</li>
<li>
<p><strong>Read Trimming and Filtering</strong><br />Trim low-quality bases and adapters using <strong>Trimmomatic</strong> or <strong>Cutadapt</strong>:</p>
<div>
<div dir="ltr"><code>trimmomatic PE reads_R1.fastq reads_R2.fastq trimmed_R1.fastq trimmed_R2.fastq \ ILLUMINACLIP:adapters.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:20 MINLEN:36 </code></div>
</div>
</li>
</ol><h4><strong>Step 2: Choosing an Assembly Strategy</strong></h4><p>Select an assembly strategy based on your data type:</p><ul>
<li>
<p><strong>Short-Read Assemblers</strong>:</p>
<ul>
<li>SPAdes: Popular for microbial genomes.</li>
<li>Velvet: Fast for smaller genomes.</li>
</ul>
</li>
<li>
<p><strong>Long-Read Assemblers</strong>:</p>
<ul>
<li>Canu: Ideal for long-read datasets.</li>
<li>Flye: Versatile for small and large genomes.</li>
</ul>
</li>
<li>
<p><strong>Hybrid Assemblers</strong>:</p>
<ul>
<li>MaSuRCA: Combines short and long reads.</li>
<li>Unicycler: Optimized for bacterial genomes.</li>
</ul>
</li>
</ul><h4><strong>Step 3: Running the Assembly</strong></h4><h5><strong>3.1. SPAdes (Short-Read Assembly)</strong></h5><p>SPAdes is an excellent choice for small genomes, such as bacteria.</p><div><div dir="ltr"><code>spades.py -1 trimmed_R1.fastq -2 trimmed_R2.fastq -o spades_output </code></div></div><p>The output includes assembled contigs (<code>contigs.fasta</code>) and scaffolds (<code>scaffolds.fasta</code>).</p><h5><strong>3.2. Canu (Long-Read Assembly)</strong></h5><p>Canu is designed for high-error long reads from PacBio or Nanopore.</p><div><div dir="ltr"><code>canu -p genome -d canu_output genomeSize=4.7m -nanopore-raw reads.fastq </code></div></div><p>The output will be in <code>canu_output/genome.contigs.fasta</code>.</p><h5><strong>3.3. Hybrid Assembly with Unicycler</strong></h5><p>Unicycler combines short and long reads for improved assemblies.</p><div><div dir="ltr"><code>unicycler -1 trimmed_R1.fastq -2 trimmed_R2.fastq -l long_reads.fastq -o unicycler_output </code></div></div><h4><strong>Step 4: Assessing Assembly Quality</strong></h4><p>After assembly, evaluate its quality using the following tools:</p><ol>
<li>
<p><strong>QUAST</strong><br />QUAST generates assembly statistics, such as N50, genome size, and GC content:</p>
<div>
<div dir="ltr"><code>quast contigs.fasta -o quast_output </code></div>
</div>
</li>
<li>
<p><strong>BUSCO</strong><br />BUSCO checks genome completeness by identifying conserved genes:</p>
<div>
<div dir="ltr"><code>busco -i contigs.fasta -o busco_output -l fungi_odb10 -m genome </code></div>
</div>
</li>
<li>
<p><strong>Assembly Graph Visualization</strong><br />Visualize assembly graphs with <strong>Bandage</strong>:</p>
<div>
<div dir="ltr"><code>Bandage load assembly_graph.gfa </code></div>
</div>
</li>
</ol><hr><h4><strong>Step 5: Post-Assembly Steps</strong></h4><ol>
<li>
<p><strong>Polishing</strong><br />Improve assembly accuracy using tools like <strong>Pilon</strong> (for short reads) or <strong>Racon</strong> (for long reads).</p>
<div>
<div dir="ltr"><code>racon long_reads.fasta mapped_reads.sam contigs.fasta &gt; polished_contigs.fasta </code></div>
</div>
</li>
<li>
<p><strong>Scaffolding</strong><br />Link contigs into scaffolds using tools like <strong>SSPACE</strong> or <strong>Opera-LG</strong> if required.</p>
</li>
<li>
<p><strong>Annotation</strong><br />Annotate the assembled genome using <strong>Prokka</strong> for prokaryotes or <strong>Maker</strong> for eukaryotes.</p>
<div>
<div dir="ltr"><code>prokka --outdir annotation_output --prefix genome contigs.fasta </code></div>
</div>
</li>
</ol><h4><strong>Step 6: Sharing and Archiving</strong></h4><ol>
<li>
<p><strong>Submit to Public Repositories</strong><br />Share your assembly in databases like <strong>NCBI GenBank</strong>, <strong>ENA</strong>, or <strong>DDBJ</strong>.</p>
</li>
<li>
<p><strong>Metadata Preparation</strong><br />Include detailed metadata for your submission, such as organism name, sequencing platform, and coverage.</p>
</li>
</ol><h4><strong>Best Practices</strong></h4><ul>
<li>Always perform quality checks at each stage to ensure data integrity.</li>
<li>Use multiple tools to cross-validate results when working with complex genomes.</li>
<li>Document parameters and software versions for reproducibility.</li>
</ul><h4><strong>Conclusion</strong></h4><p>Genome assembly is a powerful process that transforms raw sequencing data into a coherent representation of an organism&rsquo;s genome. By following this step-by-step guide, you can successfully assemble genomes and uncover valuable biological insights. Whether you&rsquo;re assembling a microbial genome or tackling the complexities of a eukaryotic genome, these tools and strategies will set you on the path to success.</p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42172/sr-scientist-bioinformatics-vacancies-at-indian-institute-of-toxicology-research-india</guid>
  <pubDate>Tue, 01 Sep 2020 07:21:04 -0500</pubDate>
  <link></link>
  <title><![CDATA[Sr. Scientist Bioinformatics Vacancies at Indian Institute of Toxicology Research, India]]></title>
  <description><![CDATA[
<p>Start date of online Registration: Wednesday August 19, 2020 11:00 Hrs IST<br />Last date for Registration: Monday September 21, 2020 17:30 Hrs IST<br />Last date for submission of online application: Monday September 21, 2020 17:30 Hrs IST<br />Last date of Receipt of physical copy of application at CSIR-IITR: Tuesday October 05, 2020 17:30 Hrs IST</p>

<p>Pay Matrix Level-12<br />No. of Post-01<br />(UR)<br />Post – Sr. Scientist<br />Area Bioinformatics<br />Age limit : 37 years<br />PhD in Computational Biology/Bioinformatics with 2 years experience in desired area<br />Or<br />ME/M.Tech in Bioinformatics or Genome Informatics or Genetic Engineering with 3 years experience in desired area<br />Experience of understanding fundamental science behind Artificial Intelligence, machine learning, novel Artificial Intelligence algorithms and architectures, software engineering principles for Artificial Intelligence, natural language processing with proficiency in programming as evident by publications in SCI journals with high impact factor. To be part a group of scientists working in the area of genomics, running the central<br />bioinformatics facility, developing independent projects and providing bioinformatics support to the user scientists of the Institute.</p>

<p>More at </p>

<p>http://14.139.62.50/CSIR-IITR%20Scientist%20Recruitment%20Adv%202020.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/view/459</guid>
	<pubDate>Thu, 11 Jul 2013 14:39:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/view/459</link>
	<title><![CDATA[Python vs Perl]]></title>
	<description><![CDATA[<p>Why bioinformatician still using Perl when Python is easy to code, good in ReXp and faster than perl?</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42264/bioinformatics-jobs-at-acrannolife</guid>
  <pubDate>Sun, 25 Oct 2020 22:51:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics jobs at Acrannolife]]></title>
  <description><![CDATA[
<p>Acrannolife are looking for skilled Bioinformatics Scientists with a minimum of 2yrs Experience in NGS data analysis including Nanopore Sequencing.</p>

<p>This is an opportunity to work on projects that would fundamentally alter the way certain chronic conditions are treated and monitored.</p>

<p>About acrannolife:</p>

<p>We are a team of Post Docs, PhDs, Engineers, Clinicians, and MBAs working towards a future where biology intersects with software(Computational Biology).</p>

<p>We are incubated in Atal Incubation Centre - CCMB and have been backed by some of the leading thought leaders ranging from business to clinical practices.</p>

<p>Interested candidates can fill this form. https://lnkd.in/gtq47hy</p>

<p>and send their CV to hr@acrannolife.com</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/840/junior-research-fellow-jrf</guid>
  <pubDate>Sat, 13 Jul 2013 11:17:22 -0500</pubDate>
  <link></link>
  <title><![CDATA[Junior Research Fellow (JRF)]]></title>
  <description><![CDATA[
<p>School of Biotechnology<br />Gautam Buddha University<br />Greater Noida, UP - 201310</p>

<p>Applications are invited for one position of Junior Research Fellow (JRF) in a Department of Biotechnology (DBT) sponsored research project entitled “Design, synthesis and evaluation of potent aminopeptidase inhibitors for malarial therapy” under the supervision of Dr. Shakti Sahi.</p>

<p>The monthly fellowship of JRF will be Rs 12,000/- plus HRA as per the University rules.</p>

<p>Essential Qualification: Master degree in any discipline of Life Science with NET qualified.</p>

<p>Desirable Qualification: Preference will be given to candidates having research experience in in silico drug designing/Bioinformatics.</p>

<p>Interested candidates may send their resume to undersigned on or before 14th July 2013 by post-mail/e-mail shaktis@gbu.ac.in or shaktisahi@gmail.com. No TA and DA will be paid for appearing for the interview. Dr. Shakti Sahi (Principle Investigator)</p>

<p>Advertisement:<br />www.gbu.ac.in/Recruitment/JRF_Advt_DBTProject_Shakt</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42374/postdoc-in-comparative-genomics</guid>
  <pubDate>Tue, 08 Dec 2020 09:26:40 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoc in comparative genomics]]></title>
  <description><![CDATA[
<p>We are looking for a highly motivated researcher for an 18 month postdoctoral position collaborating in an exciting project on comparative genomics of marine fish and shellfish species. In the project, we use genome resequencing data from a range of species to reconstruct the demographic history and characterize genomic signals associated with population divergence and local adaptation in high gene flow scenarios. The work will improve our understanding of interacting evolutionary processes and provide valuable data for securing sustainable management and conservation of exploited resources. Applicants are encouraged to develop their own research ideas within this framework.</p>

<p>The fellowship is part of a larger Nordic collaborative project, MarGen_II, financed by the EU Interreg Öresund-Kattegat-Skagerrak Programme, the Danish Rod and Net License Funds and the National Institute of Aquatic Resources (DTU Aqua). The project will primarily be carried out in the population genetics group, Section for Marine Living Resources, situated in Silkeborg, Denmark. DTU Aqua is an institute at the Technical University of Denmark. In addition, the position offers many opportunities for collaborating with Nordic and other European colleagues in the field.</p>

<p>Application:<br />Apply online at<br />https://www.dtu.dk/english/About/JOB-and-CAREER/vacant-positions/job?id=d198fd80-4856-4a56-943d-485106026504.<br />The deadline is 4 January 2021. For further information, please contact<br />Senior Researcher Jakob Hemmer-Hansen, jhh@aqua.dtu.dk.</p>

<p>You can read more about DTU Aqua at www.aqua.dtu.dk<br />and the population genetics group at<br />https://www.aqua.dtu.dk/english/research/population_genetics.</p>

<p>All interested candidates irrespective of age, gender, race, disability,<br />religion or ethnic background are encouraged to apply.</p>

<p>Jakob Hemmer Hansen</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/847/nedelec-lab</guid>
  <pubDate>Sat, 13 Jul 2013 17:38:55 -0500</pubDate>
  <link></link>
  <title><![CDATA[Nedelec Lab]]></title>
  <description><![CDATA[
<p>Location :European Molecular Biology Laboratory (EMBL), Heidelberg, Germany.</p>

<p>Our long-term research objective is to understand microtubule organization in living cells, with an emphasis on mitosis. We develop in-vitro assays, quantitative image analysis and cytosim, a computer simulation to study cellular architecture from a mechanistic angle, modeling the interactions of microtubules and related proteins such as molecular motors. In the past, we combined simulations and experiments to study microtubule self-organization, and the mechanical stability of two interacting asters. More recently, we looked at the focusing of mitotic fibers, the formation of antiparallel arrays of microtubules in fission yeast and the spindle positionning in C. elegans.<br />We are supported by BioMS, an initiative in Systems Biology, and involved in Cell networks.</p>

<p>Link: http://www.cytosim.org</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42670/icgeb-bioinformatics-job</guid>
  <pubDate>Sat, 23 Jan 2021 21:01:55 -0600</pubDate>
  <link></link>
  <title><![CDATA[ICGEB Bioinformatics Job]]></title>
  <description><![CDATA[
<p>The following vacancies are available in the various ongoing bioinformatics projects at.<br />Translational Bioinformatics Group (https://www.icgeb.org/dinesh-gupta/), ICGEB, New Delhi, India. Shortlisted candidates will be welcomed for an on-line interview at ICGEB. Only the chosen applicants will be informed individually. Preference will be given to the applicants with experience related to Bioinformatics as well as Computational area.</p>

<p>Interested applicants must submit their complete, updated Curriculum Vitae, mentioning details of two references as well as various other details at – http://14.139.62.220/survey/index.php/2021/01/21/icgeb-dbt-project-vacancy/</p>

<p>The last date of submission of applications is January 31st, 2021.</p>

<p>Research Associate : PhD. Degree in Computational Biology/Bioinformatics.</p>

<p>Consolidated Salary: 58280/- pm (including HRA).</p>

<p>More at https://www.icgeb.org/project-positions-translational-bioinformatics-group/ and https://www.icgeb.org/category/vacancies/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/855/bahlo-lab</guid>
  <pubDate>Sun, 14 Jul 2013 12:17:38 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bahlo Lab]]></title>
  <description><![CDATA[
<p>Melanie Bahlo is an applied statistician working in the areas of statistical genetics, bioinformatics and population genetics. Her main area of research is linkage mapping, in humans and mice.</p>

<p>Research Area:<br />Mapping loci in ENU mutants in mice in complex pedigrees<br />Investigation of DNA sharing in distantly related individuals<br />CNV analysis in pedigrees and connections to linkage studies<br />Statistical Genetics</p>

<p>Link @ http://www.wehi.edu.au/faculty_members/dr_melanie_bahlo</p>
]]></description>
</item>

</channel>
</rss>