<?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/32154?offset=1540</link>
	<atom:link href="https://bioinformaticsonline.com/related/32154?offset=1540" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<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/22944/icgeb-bioinformatics-research-associate-vacancy</guid>
  <pubDate>Thu, 25 Jun 2015 20:41:00 -0500</pubDate>
  <link></link>
  <title><![CDATA[ICGEB Bioinformatics Research Associate Vacancy]]></title>
  <description><![CDATA[
<p>Research Associate Position at ICGEB, New Delhi with Dr. Amit Sharma</p>

<p>Starting 15th July 2015, the position relates to a project specifically for in silico drug docking, screening, design, optimisation and linkage with active chemists. </p>

<p>Experience in many docking softwares and operating systems is essential. </p>

<p>Additional experience in bioinformatics and computational biology tools will be useful. </p>

<p>Submit curriculum vitae to: sb.icgeb@gmail.com</p>

<p>Closing date: 5 July 2015</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/35635/ete-3-reconstruction-analysis-and-visualization-of-phylogenomic-data</guid>
	<pubDate>Mon, 19 Feb 2018 06:46:15 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/35635/ete-3-reconstruction-analysis-and-visualization-of-phylogenomic-data</link>
	<title><![CDATA[ETE 3: Reconstruction, Analysis, and Visualization of Phylogenomic Data]]></title>
	<description><![CDATA[<p><span>ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. </span></p>
<p><span>The new features include </span></p>
<p><span>(i) building gene-based and supermatrix-based phylogenies using a single command, </span></p>
<p><span>(ii) testing and visualizing evolutionary models, </span></p>
<p><span>(iii) calculating distances between trees of different size or including duplications, and </span></p>
<p><span>(iv) providing seamless integration with the NCBI taxonomy database. </span></p>
<p><span>ETE is freely available at&nbsp;</span><a href="http://etetoolkit.org/" target="">http://etetoolkit.org</a></p><p>Address of the bookmark: <a href="http://etetoolkit.org" rel="nofollow">http://etetoolkit.org</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23384/research-scientist-at-dupont</guid>
  <pubDate>Fri, 17 Jul 2015 20:36:17 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Scientist at DuPONT]]></title>
  <description><![CDATA[
<p>Research Scientist<br />Hyderabad, Telangana<br />Job Description</p>

<p>Job Description</p>

<p>The Global Trait Discovery Informatics (GTDI) group located at the DuPont Knowledge Centre (DKC), Hyderabad, India is currently seeking applications for a highly motivated computational biologist. The GTDI group contributes to research programs in plant biotechnology at the DKC as well as across research centers located in DuPont Pioneer, Johnston, Iowa and at the DuPont Experimental Station in Wilmington, Delaware.</p>

<p>We are looking for candidates who have experience in analysis of high-throughput -omics datasets. The researcher will be primarily responsible for analyzing diverse -omics datatypes, such as transcriptomics, proteomics and metabolomics and actively contribute towards building streamlined solutions.</p>

<p>The candidate will be part of a diverse team of experimental biologists, computational biologists and software developers. A critical aspect of this position involves working with global teams across multiple locations and will require effective project coordination and communication skills. This is an exciting opportunity for candidates with strong data driven skills, who want to work at the interface of computational and experimental biology and contribute towards scientific discovery.</p>

<p>Responsibilities</p>

<p>·Integrate and analyze multiple datatypes in the context of experimental observations with a goal towards formulating testable hypothesis.</p>

<p>·Understanding the research questions from experimental biologists and formulate relevant in silico analyses.</p>

<p>·Establish and implement systematic analysis workflows starting from processing of raw data to biological interpretation.</p>

<p>·Critically analyze a wide variety of experimental data with a view to solving the underlying research questions.</p>

<p>·Identify and generate datasets for scientific testing and evaluation of algorithms.</p>

<p>Qualifications</p>

<p>PhD in computational biology, bioinformatics, population genetics, complex systems, computer sciences or any relevant physical or mathematical sciences, with experience in analyzing diverse -omics datasets.</p>

<p>Job Qualifications</p>

<p>Qualifications</p>

<p>PhD in computational biology, bioinformatics, population genetics, complex systems, computer sciences or any relevant physical or mathematical sciences, with experience in analyzing diverse -omics datasets.</p>

<p>More at http://careers.dupont.com/jobsearch/job-details/research-scientist/006077W-01/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23247/ra-at-csir-urdip</guid>
  <pubDate>Fri, 10 Jul 2015 18:34:03 -0500</pubDate>
  <link></link>
  <title><![CDATA[RA at CSIR-URDIP]]></title>
  <description><![CDATA[
<p>CSIR - UNIT FOR RESEARCH AND DEVELOPMENT OF INFORMATION PRODUCTS (CSIR- URDIP)</p>

<p>Adv. No. URDIP/ 15/2015</p>

<p>Opportunity for young Bioinformatics Professionals to make a career in the area of Intellectual Property</p>

<p>CSIR has set up a Unit for Research and Development of Information Products (CSIRURDIP) at Pune to work in the area of scientific informatics. One of the major focus areas of research work at CSIR-URDIP is PATENT INFORMATICS. With the increasing applications of Bioinformatics in the areas of life sciences industry such as Agriculture and Health Care (Diagnostics and Drugs), the output of research in these area is being protected by different forms of Intellectual Property rights. Realizing the importance of IP in the Bioinformatics field, Department of Biotechnology (DBT) has sanctioned a project on “Development, Facilitation and Harvesting of Bioinformatics related Intellectual Property” at CSIR-URDIP.</p>

<p>The project will involve application of Patent Informatics tools and techniques to Bioinformatics (including creation of patent landscapes, preparation of techno-legal reports of patentability, freedom to operate studies) to help protect IPRs and develop and conduct training programmes on IPRs related to Bioinformatics.</p>

<p>CSIR-URDIP invites applications from young Bioinformatics professionals to work on this emerging area which offers challenging opportunities and attractive career possibilities in future.</p>

<p>Position I: Research Associate</p>

<p>No of Positions: One</p>

<p>Consolidated amount Payable: = Rs 26,400.00</p>

<p>Qualification: PhD in Bioinformatics. In exceptional cases, candidature of M. Tech. candidates with First class in Bioinformatics with three years of relevant work experience will also be considered.</p>

<p>Job requirement: The prospective candidate will be expected to identify patents/scientific literature in field of Bioinformatics, evaluate them Vis a Vis other patents in fields and come up landscape / FTO / Patentability reports.</p>

<p>Age Limit: 35 years. </p>

<p>The candidates meeting the above criteria may appear for walk in interview at their cost on Monday 13th July 2015 at 02:00 p.m. with the CV and supporting documents (original plus copies) at the following address: CSIR Unit or Research and Development of Information Products (URDIP), "Tapovan" S.No. 113 &amp; 114, Near NCL Colony Baner Side Gate, NCL Estate, Pashan Road, Pune-411008, Maharashtra, India</p>

<p>Advertisement: www.urdip.res.in/download/DBT_RA_Advt_July%202015.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23277/project-fellow-at-ihbt-palampur-himachal-pradesh</guid>
  <pubDate>Sun, 12 Jul 2015 07:54:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Fellow at IHBT - Palampur, Himachal Pradesh]]></title>
  <description><![CDATA[
<p>The Institute is working relentlessly on developing technologies for sustainable utilization of Himalayan bioresources, and in the area of tea, floriculture, bamboos and medicinal and aromatic plants. Looking at the mission of the Institute,the quantum of work undertaken and milestones achieved it was rightly conceived to rename the Institute from CSIR Complex Palampur to Institute of Himalayan Bioresource Technology at a high level meeting. Finally the Institute received its new name Institute of Himalayan Bioresource Technology (IHBT) in 1997 by then Prime Minister Shri H.D. Deve Gowda. Till date this is the only kind of National R&amp;D laboratory in the state of Himachal.</p>

<p>Detail Of Institute of Himalayan Bioresource Technology (IHBT) Project Fellow Recruitment:</p>

<p>No.of Posts: 02</p>

<p>Qualification : 1st Class B. Tech. in Bioinformatics/ Computational Biology Or M.Sc. in Bioinformatics/ Computational Biology with 55% marks OR M.Tech. in Bioinformatics/ Computational Biology with 55% marks.</p>

<p>Age : 28 years as on 10.06.2015</p>

<p>Pay Scale: Rs.12,000/- P.M/Rs.14,000/- P.M.</p>

<p>Age : 35 years,(Up to 40 years for members of SC/STs).</p>

<p>Selection Procedure For Institute of Himalayan Bioresource Technology (IHBT) – Project Fellow Post:</p>

<p>Written Test on 10/06/2015.</p>

<p>Shortlisted candidates will undertake face to face interview.</p>

<p>Dates are yet to be announced for the final selection</p>

<p>Walkin Procedure For Project Fellow vacancy in Institute of Himalayan Bioresource Technology (IHBT):</p>

<p>Eligible candidates may appear for Walk-in-Interview on Date : 10.06.2015, Time 9:00 A.M. Venue : CSIR- IHBT Palampur (H.P.) alongwith an application on prescribed format. Candidates must also bring with them original certificates of testimonials at the time of the appearing for interview failing which he/she will not be allowed to appear for interview.</p>

<p>Important Dates To Remember :<br />Walk in date for this job : 10/06/2015</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23369/assistant-professor-professor-at-central-university-of-south-bihar</guid>
  <pubDate>Thu, 16 Jul 2015 22:36:53 -0500</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor/ Professor at Central University of South Bihar]]></title>
  <description><![CDATA[
<p>Central University of South Bihar</p>

<p>(Established under Central Universities Act, 2009)</p>

<p>BIT Campus, PO: B.V. College,</p>

<p>Patna – 800 014 (Bihar)</p>

<p>Employment Notice No. CUSB / 27 / Faculty / 2015</p>

<p>Appointment for Faculty Positions Applications in the prescribed form are invited from the eligible candidates for the following posts shown against the subjects to be filled up on regular/contract/re-employment after superannuation basis:</p>

<p>1 Bioinformatics - 03 Posts</p>

<p>2 Biotechnology – 02 Posts</p>

<p>12 Life Science – 04 Posts</p>

<p>The duly filled in application form, complete in all respect along with fee must be sent only by Speed post/Registered post/Courier to The Registrar, Central University of South Bihar, BIT Campus, P.O. : B.V. College, Patna-800014.</p>

<p>Last Date of Receiving Application 10th August, 2015</p>

<p>Advertisement:</p>

<p>http://cub.ac.in/index.php?option=com_content&amp;view=article&amp;id=31&amp;Itemid=157</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23672/jrf-in-bioinformatics-rajiv-gandhi-centre-for-biotechnology-rgcb-thiruvananthapuram</guid>
  <pubDate>Sat, 08 Aug 2015 01:22:29 -0500</pubDate>
  <link></link>
  <title><![CDATA[JRF in Bioinformatics @ Rajiv Gandhi Centre for Biotechnology (RGCB), Thiruvananthapuram]]></title>
  <description><![CDATA[
<p>Rajiv Gandhi Centre for Biotechnology (RGCB), Thiruvananthapuram<br />Job Code: 060815(10)Y</p>

<p>Jr Research Fellow Posts At Rajiv Gandhi Centre for Biotechnology<br />Rajiv Gandhi Centre for Biotechnology (RGCB) invites applications to recruit on vacant posts of Junior Research Fellow (JRF). Applications against these Government Jobs can be submitted on or before 15 August 2015.</p>

<p>Rajiv Gandhi Centre for Biotechnology Vacancy 2015 Details<br />Name of the post – Junior Research Fellow (JRF)<br />Total vacancies –</p>

<p>Age Limit: Below 28 years as on 15-08-2015.</p>

<p>Qualification(s): Masters Degree in Life Sciences/Biotechnology/Bioinformatics.</p>

<p>How to Apply: Duly filled-in applications in prescribed application format along with copies of required documents should be reach to: Rajiv Gandhi Centre for Biotechnology Thycaud PO, Poojappura, Thiruvananthapuram – 695014, Kerala. </p>

<p>More at http://rgcb.res.in/temporary-position-available-10/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23577/senior-research-fellow-srf-bioinformatics-at-aiims-india</guid>
  <pubDate>Tue, 04 Aug 2015 03:14:32 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Research Fellow (SRF) Bioinformatics at AIIMS, India]]></title>
  <description><![CDATA[
<p>DEPARTMENT OF BIOTECHNOLOGY<br />ALL INDIA INSTITUTE OF MEDICAL SCIENCES<br />NEW DELHI-110029</p>

<p>Requirement of Senior Research Fellow Applications are invited for the following vacancy under Research project entitled “Exploiting temporal transcription profile, computational analysis and post-transcriptional gene silencing to identify and intercept interactions between host and dormant and actively replicating Mycobacterium tuberculosis”</p>

<p>Senior Research Fellow One</p>

<p>M.Sc. Degree in Biotechnology/ /Microbiology/Bioinformatics and 2 years research experience in the relevant field NET/GATE Qualification with at least 2 years research experience in M. tuberculosis culture and related techniques as well as transcriptome data generation and analysis.</p>

<p>1 year</p>

<p>1. Age relaxation for SC/ST/OBC/PH Candidates will be as per the government rules.</p>

<p>2. Qualification/degree should be from a reputed Institution/University.</p>

<p>3. Mere fulfilling the essential qualification/experience does not guarantee selection.</p>

<p>4. Canvassing in any form will be a disqualification.</p>

<p>5. No TA/DA will be paid either for attending the interview or joining the post.</p>

<p>Interested candidates are to submit their Curriculum Vitae by 5 PM on 17th August, 2015 to Room No.107, Department of Biotechnology, AIIMS, New Delhi-29.</p>

<p>Only shortlisted candidates will be notified by email for interview</p>

<p>Advertisement:</p>

<p>www.aiims.edu/images/pdf/recruitment/advertisement/advertisement%20of%20SRF_N1306.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/23686/bioinformatics-symposium</guid>
  <pubDate>Tue, 11 Aug 2015 04:02:59 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics Symposium]]></title>
  <description><![CDATA[
<p>This 2 day symposium will focus on topics in the below mentioned areas.</p>

<p>Experts from India and Japan in this fields will deliver lectures and contribute in discussions. This will provide an opportunity to the participants to interact and learn.</p>

<p>Topics:</p>

<p>    Algorithms for biomolecular Sequences / Structures<br />    Bioinformatics databases and tools<br />    High performance computing<br />    Large scale data analysis<br />    Protein function<br />    Structure based drug design<br />    Applications to specific diseases</p>

<p>More at http://www.iitm.ac.in/bioinfo/Symposium-2015/index.html</p>
]]></description>
</item>

</channel>
</rss>