<?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: All site news]]></title>
	<link>https://bioinformaticsonline.com/news/all?</link>
	<atom:link href="https://bioinformaticsonline.com/news/all?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44724/step-by-step-guide-to-detect-pirnas-using-bioinformatics</guid>
	<pubDate>Fri, 13 Dec 2024 11:41:46 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44724/step-by-step-guide-to-detect-pirnas-using-bioinformatics</link>
	<title><![CDATA[Step-by-Step Guide to Detect piRNAs Using Bioinformatics]]></title>
	<description><![CDATA[<p>Piwi-interacting RNAs (piRNAs) are a class of small non-coding RNAs that play crucial roles in silencing transposable elements and regulating gene expression, particularly in germline cells. Detecting piRNAs involves identifying their unique characteristics, such as size, sequence motifs, and association with Piwi proteins, from high-throughput RNA sequencing data.</p><p>This blog provides a comprehensive step-by-step guide to detect piRNAs using bioinformatics tools and workflows.</p><h4><strong>Step 1: Prepare Your Data</strong></h4><ol>
<li>
<p><strong>Obtain RNA Sequencing Data</strong><br />Acquire raw small RNA-seq data in FASTQ format. Datasets can be sourced from repositories like <strong>NCBI SRA</strong>, <strong>EMBL-EBI</strong>, or specific small RNA sequencing projects.</p>
</li>
<li>
<p><strong>Quality Control (QC)</strong><br />Use <strong>FastQC</strong> to assess the quality of raw reads:</p>
<div>
<div dir="ltr"><code>fastqc reads.fastq </code></div>
</div>
<p>Evaluate the per-base quality, adapter content, and overrepresented sequences.</p>
</li>
<li>
<p><strong>Trimming and Adapter Removal</strong><br />Use tools like <strong>Cutadapt</strong> or <strong>Trim Galore!</strong> to remove adapters and low-quality bases:</p>
<div>
<div dir="ltr"><code>cutadapt -a TGGAATTCTCGGGTGCCAAGG -o trimmed_reads.fastq reads.fastq </code></div>
</div>
<p>Ensure the remaining reads are of high quality for downstream analysis.</p>
</li>
</ol><h4><strong>Step 2: Map Reads to the Genome</strong></h4><p>Mapping reads to the reference genome is crucial for identifying piRNA loci.</p><ol>
<li>
<p><strong>Reference Genome Preparation</strong><br />Download the genome assembly of your organism from databases like <strong>Ensembl</strong>, <strong>UCSC Genome Browser</strong>, or <strong>NCBI</strong>.</p>
</li>
<li>
<p><strong>Align Reads</strong><br />Use <strong>Bowtie</strong> or <strong>STAR</strong> for small RNA alignment:</p>
<div>
<div dir="ltr"><code>bowtie -v 1 -k 1 --best genome_index trimmed_reads.fastq -S aligned_reads.sam </code></div>
</div>
<ul>
<li><code>-v 1</code>: Allows one mismatch.</li>
<li><code>-k 1</code>: Reports the best alignment.</li>
</ul>
</li>
<li>
<p><strong>Convert SAM to BAM</strong><br />Convert and sort alignments using <strong>SAMtools</strong>:</p>
<div>
<div dir="ltr"><code>samtools view -Sb aligned_reads.sam | samtools sort -o sorted_reads.bam </code></div>
</div>
</li>
</ol><h4><strong>Step 3: Identify Small RNAs</strong></h4><p>piRNAs are characterized by their size (24&ndash;32 nt) and strand bias.</p><ol>
<li>
<p><strong>Extract Reads by Size</strong><br />Use tools like <strong>BEDtools</strong> or custom scripts to filter reads between 24 and 32 nt:</p>
<div>
<div dir="ltr"><code>bedtools bamtofastq -i sorted_reads.bam -fq all_reads.fastq seqkit seq -m 24 -M 32 all_reads.fastq &gt; piRNA_size_reads.fastq </code></div>
</div>
</li>
<li>
<p><strong>Check for Sequence Bias</strong><br />piRNAs often have a strong bias for a uridine at the 5&rsquo; end (1U bias). Use tools like <strong>WebLogo</strong> to visualize sequence motifs.</p>
</li>
</ol><h4><strong>Step 4: Detect Ping-Pong Signature</strong></h4><p>The ping-pong amplification loop is a hallmark of piRNA biogenesis, characterized by a 10 nt overlap between piRNAs on opposite strands.</p><ol>
<li>
<p><strong>Generate Overlap Statistics</strong><br />Use the <strong>piPipes</strong> tool or custom scripts to calculate overlap:</p>
<div>
<div dir="ltr"><code>python ping_pong_overlap.py sorted_reads.bam </code></div>
</div>
</li>
<li>
<p><strong>Visualize Overlap Distribution</strong><br />Plot the distribution of overlaps to confirm the presence of the 10 nt ping-pong signature.</p>
</li>
</ol><h4><strong>Step 5: Annotate piRNA Clusters</strong></h4><p>piRNAs are often generated from genomic clusters.</p><ol>
<li>
<p><strong>Cluster Identification</strong><br />Use tools like <strong>proTRAC</strong> or <strong>PIRANHA</strong> to identify piRNA-producing clusters:</p>
<div>
<div dir="ltr"><code>proTRAC.pl -s sorted_reads.bam -g genome.fa -o clusters </code></div>
</div>
</li>
<li>
<p><strong>Annotate Genomic Regions</strong><br />Annotate the identified clusters using gene annotation files (GTF/GFF). Tools like <strong>BEDtools intersect</strong> can help associate piRNA clusters with genes or transposable elements:</p>
<div>
<div dir="ltr"><code>bedtools intersect -a clusters.bed -b genome_annotation.gtf &gt; annotated_clusters.bed </code></div>
</div>
</li>
</ol><h4><strong>Step 6: Functional Analysis</strong></h4><p>Functional analysis of piRNAs can uncover their targets and regulatory roles.</p><ol>
<li>
<p><strong>Predict piRNA Targets</strong><br />Use tools like <strong>IntaRNA</strong> or <strong>RNAhybrid</strong> to predict interactions between piRNAs and potential target mRNAs:</p>
<div>
<div dir="ltr"><code>RNAhybrid -t target_transcripts.fa -q piRNAs.fa &gt; piRNA_targets.txt </code></div>
</div>
</li>
<li>
<p><strong>Enrichment Analysis</strong><br />Perform GO or KEGG enrichment analysis of target genes using tools like <strong>g:Profiler</strong> or <strong>DAVID</strong>.</p>
</li>
</ol><h4><strong>Step 7: Validation and Visualization</strong></h4><ol>
<li>
<p><strong>Validate piRNA Candidates</strong><br />Cross-check the identified piRNAs against known piRNA databases, such as <strong>piRBase</strong> or <strong>piRNAdb</strong>.</p>
</li>
<li>
<p><strong>Visualize Results</strong></p>
<ul>
<li>Use <strong>IGV</strong> (Integrative Genomics Viewer) to visualize piRNA alignment and clusters on the genome.</li>
<li>Generate heatmaps or circos plots to present piRNA distributions.</li>
</ul>
</li>
</ol><h4><strong>Step 8: Share and Publish Findings</strong></h4><ol>
<li>
<p><strong>Archive Data</strong><br />Submit sequencing data to public repositories like <strong>SRA</strong> or <strong>GEO</strong> with metadata specifying piRNA-related experiments.</p>
</li>
<li>
<p><strong>Publish Results</strong><br />Share findings in journals or conferences, emphasizing novel piRNA candidates, target genes, or regulatory mechanisms.</p>
</li>
</ol><h4><strong>Conclusion</strong></h4><p>Detecting piRNAs involves a combination of computational and analytical methods to identify these unique small RNAs and their roles in gene regulation and transposable element suppression. By following this step-by-step guide, you can confidently navigate the complexities of piRNA detection and contribute to the growing understanding of their biological significance.</p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44643/mpox-public-health-emergency-of-international-concern</guid>
	<pubDate>Thu, 15 Aug 2024 07:28:39 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44643/mpox-public-health-emergency-of-international-concern</link>
	<title><![CDATA[Mpox Public Health Emergency of International Concern]]></title>
	<description><![CDATA[<p><span>The</span><span> </span><a href="https://www.linkedin.com/company/world-health-organization/" target="_self"><span>World Health Organization</span></a><span> </span><span>Health Organization has also declared Mpox Public Health Emergency of International Concern barely 24 hours after</span><span> </span><a href="https://www.linkedin.com/company/africacdc/" target="_self"><span>Africa CDC</span></a><span> </span><span>declaration</span><span><br /></span><span>The</span><span> </span><a href="https://www.linkedin.com/company/world-health-organization/" target="_self"><span>World Health Organization</span></a><span> </span><span>Health Organization (WHO) declared the mpox outbreak a Public Health Emergency of International Concern</span><span><br /></span><span>(PHEIC) just 24 hours after the</span><span> </span><a href="https://www.linkedin.com/company/africacdc/" target="_self"><span>Africa CDC</span></a><span> </span><span>declared a public health emergency of continental security.</span><span><br /></span><span>This rapid escalation underscores the severe threat the outbreak poses and the urgency of a coordinated global response.</span><span><br /></span><span>What does PHEIC mean</span><span><br /></span><span>1 Global Recognition of the Threat</span><span><br /></span><span>&rarr; The WHO's PHEIC declaration is a global call to action, prompting nations worldwide to prepare for potential mpox spread beyond Africa.</span><span><br /></span><span>&rarr; This designation unlocks international resources, including vaccines and treatments, crucial for controlling the outbreak.</span><span><br /></span><span>2 Vaccine Availability</span><span><br /></span><span>&rarr; The WHO has invited vaccine manufacturers to apply for emergency use listing.</span><span><br /></span><span>&rarr; This is essential for distributing vaccines in low-income countries.</span><span><br /></span><span>&rarr; It is estimated that 10 million doses of Mpox vaccine will be needed to control the outbreak.</span><span><br /></span><span>3 International Support and Action</span><span><br /></span><span>&rarr; The WHO's PHEIC declaration is intended to catalyze international cooperation, ensuring that vaccines, treatments, and other resources are swiftly distributed to the most affected areas.</span><span><br /></span><span>&rarr; A rapid global response is essential to prevent further spread and protect vulnerable populations, including children and those with weakened immune systems.</span><span><br /></span><span>4. The Need for Swift Action</span><span><br /></span><span>&rarr; With the potential for global spread, this outbreak requires immediate and comprehensive action from African nations and the international community.</span><span><br /></span><span>&rarr; The coordinated efforts of the African CDC and WHO are critical to halting transmission and preventing further devastation.</span><span><br /></span><span>These declarations highlight the critical nature of the current mpox outbreak and the need for urgent, concerted efforts to safeguard global public health</span></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44640/new-blast-core-nucleotide-database-core-nt</guid>
	<pubDate>Tue, 13 Aug 2024 07:12:53 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44640/new-blast-core-nucleotide-database-core-nt</link>
	<title><![CDATA[New BLAST Core Nucleotide Database (core_nt)]]></title>
	<description><![CDATA[<p><span>The Core Nucleotide Database (core_nt) is now the default nucleotide BLAST database. Core_nt is also available on the command line. You get faster searches &amp; more focused results.</span></p><p><span><span>Core_nt contains the same eukaryotic transcript and gene-related sequences as nt. The core_nt database is nt without most eukaryotic chromosome sequences. Most nucleotide BLAST searches with core_nt will be similar to the nt database. However, core_nt is better than nt for accomplishing your most common BLAST search goals, such as identifying gene-related sequences like transcript sequences and complete bacterial chromosomes. This is because, in recent years, nt has acquired more low-relevance, non-annotated, and non-gene&nbsp;<span>content.&nbsp;</span></span></span></p><p><span> Learn more:&nbsp;https://ncbiinsights.ncbi.nlm.nih.gov/2024/07/18/new-blast-core-nucleotide-database/</span></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44604/new-release-of-refseq</guid>
	<pubDate>Tue, 16 Jul 2024 10:09:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44604/new-release-of-refseq</link>
	<title><![CDATA[New Release of RefSeq !]]></title>
	<description><![CDATA[<p>Check out RefSeq release 225, now available&nbsp;<a href="https://www.ncbi.nlm.nih.gov/refseq/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=refseq-release-225-20240715">online</a>&nbsp;and from the&nbsp;<a href="https://ftp.ncbi.nlm.nih.gov/refseq/release/">FTP</a>&nbsp;site. You can access RefSeq data through&nbsp;<a href="https://www.ncbi.nlm.nih.gov/datasets/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=refseq-release-225-20240715">NCBI Datasets</a>.</p><h5>What&rsquo;s included in this release?</h5><p>As of July 8, 2024, this full release incorporates genomic, transcript, and protein data containing:</p><ul>
<li><span>448,507,905 records</span></li>
<li><span>334,845,613 proteins</span></li>
<li><span>63,542,774 RNAs</span></li>
<li><span>Sequences from 152,668 organisms</span></li>
</ul><p>The release is provided in several directories as a complete dataset and also as divided by logical groupings.</p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44515/cleaner-blast-databases-for-more-accurate-results</guid>
	<pubDate>Tue, 23 Apr 2024 01:23:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44515/cleaner-blast-databases-for-more-accurate-results</link>
	<title><![CDATA[Cleaner BLAST Databases for More Accurate Results]]></title>
	<description><![CDATA[<p>Do you use&nbsp;<a href="https://blast.ncbi.nlm.nih.gov/Blast.cgi?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=blast-cleaner-20240422">BLAST</a><span style="font-size: 12.8px; font-weight: normal;">&nbsp;to identify a sequence or the evolutionary scope of a gene? That can be challenging if contaminated and misclassified sequences are in the BLAST databases and show up in your search results. To address</span><span style="font-size: 12.8px; font-weight: normal;">&nbsp;this problem</span><span style="font-size: 12.8px; font-weight: normal;">, we now use the NCBI quality assurance tools listed below to systematically remove these misleading sequences from the default nucleotide (nt) and protein (nr) BLAST databases.</span><span style="font-size: 12.8px; font-weight: normal;">&nbsp;</span></p><div><ul>
<li><a href="https://github.com/ncbi/fcs">Foreign Contamination Screen tool for genome cross-species screening (FCS-GX)</a>&nbsp;detects contamination from foreign organisms in genomes and other sequences using the genome cross-species aligner (GX)&nbsp;</li>
<li><a href="https://ncbiinsights.ncbi.nlm.nih.gov/2022/05/27/ani-for-assembly-validation?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=blast-cleaner-20240422">Average Nucleotide Identity (ANI)</a>&nbsp;evaluates the taxonomic classification of prokaryotic genome assemblies. Sequences from genomes marked up as &lsquo;unverified source organism&rsquo; are considered suspect and removed.&nbsp;</li>
</ul><p>Ref&nbsp;https://ncbiinsights.ncbi.nlm.nih.gov/2024/04/22/cleaner-blast-databases-more-accurate-results/</p></div>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44370/ncbiblast-2141-now-available</guid>
	<pubDate>Wed, 30 Aug 2023 02:36:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44370/ncbiblast-2141-now-available</link>
	<title><![CDATA[NCBIBLAST+ 2.14.1 now available]]></title>
	<description><![CDATA[<p><a href="https://www.linkedin.com/feed/hashtag/?keywords=ncbiblast&amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7101231946264924160">#NCBIBLAST</a><span>+ 2.14.1 now available with improved documentation, faster and more reliable database downloads, and some bug fixes.&nbsp;</span></p><p>Check out the changes they made.</p><p>They added the&nbsp;<code><span>cleanup-blastdb-volumes.py</span></code>&nbsp;script to remove unused BLAST database volumes. Read the documentation&nbsp;<a href="https://www.ncbi.nlm.nih.gov/books/NBK592857/">here</a>.</p><p>They also switched the protocol from&nbsp;<code><span>ftp</span></code>&nbsp;to&nbsp;<code><span>https</span></code>&nbsp;to access BLAST databases for increased performance and reliability when downloading data from the NCBI with the&nbsp;<code><span>update_blastdb.pl</span></code>&nbsp;script.</p><p>And fixed a few bugs related to downloading data from the NCBI, and&nbsp;<code><span>mt_mode</span></code>&nbsp;crashing&nbsp;<code><span>blastn</span></code>&nbsp;and&nbsp;<code><span>blastx</span></code>.</p><p>Check out the&nbsp;<a href="https://www.ncbi.nlm.nih.gov/books/NBK131777/">release notes</a>.</p><p>Download&nbsp;<a href="https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.14.1/">BLAST+ 2.14.1</a></p><p>Questions or comments? Please write the&nbsp;<a href="https://support.nlm.nih.gov/support/create-case/">BLAST help desk</a>.</p><p><span><span>More info and download:</span>&nbsp;https://blast.ncbi.nlm.nih.gov/doc/blast-news/2023-BLAST-News.html</span></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44364/genbank-release-2570-is-now-available</guid>
	<pubDate>Wed, 23 Aug 2023 00:23:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44364/genbank-release-2570-is-now-available</link>
	<title><![CDATA[GenBank release 257.0 is now available!]]></title>
	<description><![CDATA[<p><span>GenBank release 257.0 is now available! This release has 25.10 trillion bases and 3.69 billion records. Learn more:&nbsp;https://ncbiinsights.ncbi.nlm.nih.gov/2023/08/21/genbank-release-257/</span><a href="https://ow.ly/zHbV50PBE5o"><br /></a></p><p><a href="https://www.ncbi.nlm.nih.gov/genbank/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=genbank-release-20230821">GenBank</a>&nbsp;release 257.0 (8/15/2023) is now available on the&nbsp;<a href="https://ftp.ncbi.nlm.nih.gov/genbank/">NCBI FTP site</a>. This release has 25.10 trillion bases and 3.69 billion records.</p><p><strong>The current release has:</strong></p><ul>
<li>246,119,175 traditional records containing 2,112,058,517,945 base pairs of sequence data</li>
<li>2,631,493,489 WGS records containing 22,294,446,104,543 base pairs of sequence data</li>
<li>686,271,945 bulk-oriented TSA records containing 646,176,166,908 base pairs of sequence data</li>
<li>124,421,006 bulk-oriented TLS records containing 48,289,699,026 base pairs of sequence data</li>
</ul>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/44342/ncbi-datasets%E2%80%AFpages</guid>
	<pubDate>Wed, 12 Jul 2023 06:29:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/44342/ncbi-datasets%E2%80%AFpages</link>
	<title><![CDATA[NCBI Datasets pages]]></title>
	<description><![CDATA[<p>Update! Assembly and Genome record pages now redirect to new NCBI Datasets pages. NCBI Datasets is a new resource that makes it easier to find and download genome data. Learn more: https://ncbiinsights.ncbi.nlm.nih.gov/2023/07/11/ncbi-datasets-genome-assembly-pages/&nbsp;<a href="https://ow.ly/GU3o50P8QH4"></a><a href="https://www.linkedin.com/feed/hashtag/?keywords=ncbicgr&amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7084592728260386816">#NCBICGR</a></p><p><span>Effective July 10, 2023, NCBI&rsquo;s Assembly and Genome record pages now redirect to&nbsp;</span>new<a href="https://www.ncbi.nlm.nih.gov/datasets/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=datasets-genome-assembly-redirect-20230711"> NCBI Datasets </a><span>pages. As&nbsp;</span><a href="https://ncbiinsights.ncbi.nlm.nih.gov/2023/03/07/ncbi-datasets-genome-taxonomy-pages/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=datasets-genome-assembly-redirect-20230711">previously announced</a><span>, these updates are part of our ongoing effort to modernize and improve your user experience. NCBI Datasets is a new resource that makes it easier to find and download genome data.  </span><span>&nbsp;</span></p><h5>The following pages have been updated:</h5><ul>
<li><span>The NCBI Assembly record pages now redirect to the new </span><a href="https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_023065955.2/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=datasets-genome-assembly-redirect-20230711"><span>NCBI Datasets</span><strong><span> </span></strong><span>Genome</span></a><span> </span><span>record pages that describe assembled genomes and provide links to related NCBI tools such as Genome Data Viewer and BLAST. </span><span>&nbsp;</span></li>
<li><span>The NCBI</span><strong> </strong><span>Genome record pages now redirect to the </span><a href="https://www.ncbi.nlm.nih.gov/datasets/taxonomy/9644/?utm_source=ncbi_insights&amp;utm_medium=referral&amp;utm_campaign=datasets-genome-assembly-redirect-20230711"><span>NCBI Datasets</span><strong><span> </span></strong><span>Taxonomy</span></a><span> </span><span>record pages that provide a taxonomy-focused portal to genes, genomes, and additional NCBI resources.  </span><span>&nbsp;</span></li>
</ul><p><span>During this transition, you will have the option to return to the legacy Genome and Assembly record pages. We will remove the legacy pages in early 2024. </span><span>&nbsp;</span></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/42626/spades-team-announce-new-version-spades-v315</guid>
	<pubDate>Fri, 15 Jan 2021 10:24:27 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/42626/spades-team-announce-new-version-spades-v315</link>
	<title><![CDATA[SPADes team announce new version SPADes v3.15]]></title>
	<description><![CDATA[<p>New SPAdes 3.15.0.0. announced by the SPADes team This release includes such new features as:&nbsp;<br />- CoronaSPAdes pipeline for the assembly of transcriptomic and metatranscriptomic data of full-length coronaviridae genomes;&nbsp;<br />- Meta-Viral and RNA-Viral pipelines for metagenomic and metatranscriptomic data defining viral genomes;&nbsp;<br />-New trusted contiguous use algorithm;&nbsp;<br />-Switched to the memory allocator mimalloc;&nbsp;<br />- PlasmidSPAdes and bgcSPAdes are now provided as an input assembly graph;&nbsp;<br />- Important improvements and corrections to the metaplasmid pipeline;&nbsp;<br />- Multiple performance improvements in procedures for simplification and repeat resolving.&nbsp;<br />Please, consider updating.</p><p>Check out more at&nbsp;https://cab.spbu.ru/software/spades/</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/42470/the-new-corona-variant-has-23-mutations-in-all-which-is-unusually-huge</guid>
	<pubDate>Wed, 23 Dec 2020 03:50:50 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/42470/the-new-corona-variant-has-23-mutations-in-all-which-is-unusually-huge</link>
	<title><![CDATA[The new corona variant has 23 mutations in all, which is unusually huge !]]></title>
	<description><![CDATA[<p>The new SARS-CoV-2 version, B.1.1.7, which was first seen in the third week of September in Kent and Greater London, has since spread to other locations in the UK. According to the COVID-19 Genomics UK Consortium (COG-UK Consortium) that analysed the genome data of the virus and identified the variant, the new variant has been spreading "rapidly" over the last four weeks and has now been detected in other locations in the UK, suggesting further spread of the variant in the region.</p><p><span>According to a<span>&nbsp;</span></span><a href="https://virological.org/t/preliminary-genomic-characterisation-of-an-emergent-sars-cov-2-lineage-in-the-uk-defined-by-a-novel-set-of-spike-mutations/563"><strong><span>preliminary report</span></strong></a><span><span>&nbsp;</span>posted on December 19 by the COG-UK Consortium scientists, as of December 15, 1,623 variant genomes have been sequenced. In a<span>&nbsp;</span></span><a href="https://twitter.com/TheCGPS/status/1340749351803629569"><strong><span>December 21 tweet</span></strong></a><span>, COG-UK Consortium said that it added 2,963 more genome sequences of SARS-CoV-2, of which 942 (32%) belong to the new variant. The Consortium<span>&nbsp;</span></span><a href="https://twitter.com/CovidGenomicsUK/status/1341073233420955654"><strong><span>intends to sequence</span></strong></a><span><span>&nbsp;</span>20,000 more SARS-CoV-2 genomes in the next two weeks to further ascertain the spread of the variant.</span></p><p><span>There is no clear proof, at least not yet, that it does cause severe pandemic. But there is a justification for seriously taking the possibility. Another coronavirus lineage in South Africa has acquired one specific mutation that is also present in B.1.1.7. This variant is increasingly spreading across South Africa's coastal regions. And doctors have observed in preliminary research that individuals infected with this variant bear a higher viral load-a higher concentration of the virus in their upper respiratory tract. In many viral diseases, this is associated with more severe symptoms.</span></p><p>&nbsp;</p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>

</channel>
</rss>