<?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/40994?offset=350</link>
	<atom:link href="https://bioinformaticsonline.com/related/40994?offset=350" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43319/k-mers-tutorial-classification-and-taxonomy</guid>
	<pubDate>Thu, 26 Aug 2021 10:28:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43319/k-mers-tutorial-classification-and-taxonomy</link>
	<title><![CDATA[k-mers tutorial - classification and taxonomy]]></title>
	<description><![CDATA[<p>DNA k-mers underlie much of our assembly work, and we (along with many others!) have spent a lot of time thinking about how to&nbsp;<a href="http://www.pnas.org/content/109/33/13272">store k-mer graphs efficiently</a>,&nbsp;<a href="http://ivory.idyll.org/blog/what-is-diginorm.html">discard redundant data</a>, and&nbsp;<a href="http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0101271">count them efficiently</a>.</p>
<p>More recently, we've been enthused about&nbsp;<a href="http://joss.theoj.org/papers/3d793c6e7db683bee7c03377a4a7f3c9">using k-mer based similarity measures</a>&nbsp;and&nbsp;<a href="http://ivory.idyll.org/blog/2016-sourmash-sbt.html">computing and searching k-mer-based sketch search databases for all the things</a>.</p>
<p>But I haven't spent too much talking about using k-mers for taxonomy, although that has become an&nbsp;<em>ahem</em>&nbsp;area of interest recently,&nbsp;<a href="http://www.biorxiv.org/content/early/2017/07/03/155358">if you read into our papers a bit</a>.</p>
<p>In this blog post I'm going to fix this by doing a little bit of a literature review and waxing enthusiastic about other people's work. Then in a future blog post I'll talk about how we're building off of this work in fun! and interesting? ways!</p><p>Address of the bookmark: <a href="http://ivory.idyll.org/blog/2017-something-about-kmers.html" rel="nofollow">http://ivory.idyll.org/blog/2017-something-about-kmers.html</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43916/understanding-dump-files-from-ncbi-taxonomy-database</guid>
	<pubDate>Fri, 15 Jul 2022 04:29:05 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43916/understanding-dump-files-from-ncbi-taxonomy-database</link>
	<title><![CDATA[Understanding DUMP files from NCBI Taxonomy database !]]></title>
	<description><![CDATA[<p>*.dmp files are bcp-like dump from GenBank taxonomy database</p><p>General information.</p><p>Field terminator is "\t|\t"</p><p>Row terminator is "\t|\n"</p><p>&nbsp;</p><p>nodes.dmp file consists of taxonomy nodes. The description for each node includes the following</p><p>fields:</p><p>tax_id -- node id in GenBank taxonomy database</p><p>&nbsp; parent tax_id -- parent node id in GenBank taxonomy database</p><p>&nbsp; rank -- rank of this node (superkingdom, kingdom, ...)&nbsp;</p><p>&nbsp; embl code -- locus-name prefix; not unique</p><p>&nbsp; division id -- see division.dmp file</p><p>&nbsp; inherited div flag&nbsp; (1 or 0) -- 1 if node inherits division from parent</p><p>&nbsp; genetic code id -- see gencode.dmp file</p><p>&nbsp; inherited GC&nbsp; flag&nbsp; (1 or 0) -- 1 if node inherits genetic code from parent</p><p>&nbsp; mitochondrial genetic code id -- see gencode.dmp file</p><p>&nbsp; inherited MGC flag&nbsp; (1 or 0) -- 1 if node inherits mitochondrial gencode from parent</p><p>&nbsp; GenBank hidden flag (1 or 0)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- 1 if name is suppressed in GenBank entry lineage</p><p>&nbsp; hidden subtree root flag (1 or 0) &nbsp; &nbsp; &nbsp; -- 1 if this subtree has no sequence data yet</p><p>&nbsp; comments -- free-text comments and citations</p><p>&nbsp;</p><p>Taxonomy names file (names.dmp):</p><p>tax_id -- the id of node associated with this name</p><p>name_txt -- name itself</p><p>unique name -- the unique variant of this name if name not unique</p><p>name class -- (synonym, common name, ...)</p><p>&nbsp;</p><p>Divisions file (division.dmp):</p><p>division id -- taxonomy database division id</p><p>division cde -- GenBank division code (three characters)</p><p>division name -- e.g. BCT, PLN, VRT, MAM, PRI...</p><p>comments</p><p>&nbsp;</p><p>Genetic codes file (gencode.dmp):</p><p>genetic code id -- GenBank genetic code id</p><p>abbreviation -- genetic code name abbreviation</p><p>name -- genetic code name</p><p>cde -- translation table for this genetic code</p><p>starts -- start codons for this genetic code</p><p>&nbsp;</p><p>Deleted nodes file (delnodes.dmp):</p><p>tax_id -- deleted node id</p><p>&nbsp;</p><p>Merged nodes file (merged.dmp):</p><p>old_tax_id&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- id of nodes which has been merged</p><p>new_tax_id&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -- id of nodes which is result of merging</p><p>Citations file (citations.dmp):</p><p>cit_id -- the unique id of citation</p><p>cit_key -- citation key</p><p>pubmed_id -- unique id in PubMed database (0 if not in PubMed)</p><p>medline_id -- unique id in MedLine database (0 if not in MedLine)</p><p>url -- URL associated with citation</p><p>text -- any text (usually article name and authors).</p><p>-- The following characters are escaped in this text by a backslash:</p><p>-- newline (appear as "\n"),</p><p>-- tab character ("\t"),</p><p>-- double quotes ('\"'),</p><p>-- backslash character ("\\").</p><p>taxid_list -- list of node ids separated by a single space</p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/1897/genetic-test-in-india</guid>
	<pubDate>Sun, 11 Aug 2013 10:54:35 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/1897/genetic-test-in-india</link>
	<title><![CDATA[Genetic Test in India]]></title>
	<description><![CDATA[<p>1.<strong>Xcode Life Sciences Pvt. Ltd.</strong><br /><span>6B, Eldorado,&nbsp;</span><br /><span>112, Nungambakkam High Road,</span><br /><span>Nungambakkam, Chennai 600034</span><br /><span>Tamil Nadu, India&nbsp;</span></p><p>2.<span><strong>Mapmygenome&trade;</strong><br /></span><span>Royal Demeure,HUDA Techno Enclave,<br />Plot No. 12/2, Sector-1 500 081&nbsp;<br />Madhapur,Hyderabad<br />AP, India</span></p><p>3.<strong>&nbsp;DNA Labs India</strong></p><p><strong><a href="http://www.dnalabsindia.com/lab.php">http://www.dnalabsindia.com/lab.php</a></strong></p><p>&nbsp;</p><p>4.<strong>MedGenome Labs Pvt Ltd</strong><br /><span>(Division of SciGenom Labs Pvt Ltd.)</span><br /><span>Plot no: 43A,SDF, 3rd floor</span><br /><span>A Block,CSEZ, Kakanad, Cochin</span><br /><span>Kerala - 682037&nbsp;</span><br /><span>Phone: 0484 - 2413399</span><br /><span>Fax: 0484 - 2413398</span><br /><span>Email:&nbsp;</span><a href="mailto:info@medgenome.com">info@medgenome.com</a></p><p>5.<strong>Narayana Nethralaya</strong></p><p><span>Narayana Hrudayalaya Campus</span><br /><span>Narayana Health City</span><br /><span># 258/A, Bommasandra, Hosur Road,&nbsp;</span><br /><span>Bangalore - 560 099 - INDIA.</span><br /><span>TEL: +91-80-66660655-0658&nbsp;</span><br /><span>FAX: +91-80-66660650&nbsp;</span><br /><span>Mobile: 9902 821128 (Emergency Only)</span><br /><span>e-mail:&nbsp;</span><a href="mailto:info@narayananethralaya.com">info@narayananethralaya.com</a></p><p>6.<strong>BioAxis DNA Research Centre Private Limited</strong><br />13-51,Sri Lakshmi Nagar colony,<br />Besides Big Bazar, Near Kamineni Hospitals<br />GSI Post BandalGuda (L B Nagar) Hydeabad-500068<br />Andhra Pradesh (<strong>India</strong>).<br />Phone :&nbsp;+91-40-24034503/+91-9246338983</p><p>7.<strong>Gene Guiide</strong></p><p>8th Floor, Embassy Towers, 7 Bungalows Rd, Versova, Andheri West, Mumbai-61&nbsp;<br />&nbsp;09167 117799&nbsp;<br />&nbsp;<a href="mailto:info@geneguiide.com" target="_blank">info@geneguiide.com</a>&nbsp;</p><p>See more at: http://www.geneguiide.com</p><p>8.<strong>INDIAN BIOSCIENCES</strong><br />Regd. Office:<br />G-2 (Ground Floor Rear), Kailash Colony, New Delhi - 110048, India.<br />Phone: +91 (0)11 29236088, Email: info@inbdna.com.</p><p>9.<strong>SRL Limited</strong></p><p>GP-26, MARUTI INDUSTRIAL ESTATE,</p><p>UDYOG VIHAR,SECTOR-18,</p><p>GURGAON - 122015</p><p>Tel: 0124-3001243 / 0124-3001209</p><p><strong>SRL Limited</strong><br />VASANT VIHAR, 8, PALAM MARG,<br />NEW DELHI - 110057<br />Tel: 011 - 4229 5333&nbsp;</p><p><strong>Website:</strong>&nbsp;<a href="http://www.srlworld.com/" target="_blank">http://www.srlworld.com</a><br /><strong>National Customer care number:</strong><br />Call Toll Free : 1800-222-660/1800-102-8282&nbsp;<br /><strong>E-mail id:</strong>&nbsp;<a href="mailto:customercare@srl.in">customercare@srl.in</a></p><p>10.<strong>Tata Memorial Centre</strong>,</p><p>Advanced Centre for Treatment, Research and Education in Cancer</p><p>Kharghar, Navi Mumbai - 410 210, INDIA.</p><p>Tel: +91-22-2740 5000</p><p>Fax: +91-22-2740 5085</p><p>E-mail: mail@actrec.gov.in</p><p style="text-align: center;">&nbsp;</p><p style="text-align: center;"><span style="font-size: large;"><a href="mailto:office@actrec.gov.in"></a></span></p><p>&nbsp;</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/5898/an-entire-genome-written-in-lab</guid>
	<pubDate>Fri, 25 Oct 2013 09:43:03 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/5898/an-entire-genome-written-in-lab</link>
	<title><![CDATA[An entire genome written in lab]]></title>
	<description><![CDATA[<p>This is the first time ever the genetic code has been fundamentally changed. The breakthrough is a huge step forward in synthetic biology and opens up the possibility of turning re-coded bacteria into biofactories, capable of producing potent new forms of protein that could fight disease or generate sustainable materials.</p><p>More @ <a href="http://news.yale.edu/2013/10/17/researchers-rewrite-entire-genome-and-add-healthy-twist">http://news.yale.edu/2013/10/17/researchers-rewrite-entire-genome-and-add-healthy-twist</a></p><p>News Reference:&nbsp;Yale news</p><p><img src="http://images.sciencedaily.com/2011/07/110714142130-large.jpg" alt="image" width="800" height="530" style="border: 0px; border: 0px;"></p><p>Image Source: Sciencedaily.</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/videolist/watch/10664/dna-replication-process-3d-animation</guid>
	<pubDate>Sat, 10 May 2014 04:41:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/videolist/watch/10664/dna-replication-process-3d-animation</link>
	<title><![CDATA[DNA Replication Process [3D Animation]]]></title>
	<description><![CDATA[<iframe width="" height="" src="https://www.youtube-nocookie.com/embed/27TxKoFU2Nw" frameborder="0" allowfullscreen></iframe>See an organised list of all the animations: http://doctorprodigious.wordpress.com/hd-animations/]]></description>
	
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/33874/dna-testing-companies-around-the-globe</guid>
	<pubDate>Thu, 13 Jul 2017 04:44:03 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/33874/dna-testing-companies-around-the-globe</link>
	<title><![CDATA[DNA testing companies around the globe !]]></title>
	<description><![CDATA[<p>It was realized in the 1940s that DNA molecules are passed down through the generations of a family. In 1953 Watson and Crick elucidated the chemical structure of this molecule as a twisted ladder (a &lsquo;helix&rsquo;) made of two strands. DNA occurs in all the cells of our body, it is our blueprint! The strands of DNA contain information in the form of a code, which in turn determines our individual traits and characteristics. This code, the genetic code, is the order of four types of DNA building block. When the two strands of DNA separate, each building block (&lsquo;base&rsquo;) accurately templates a corresponding base on the newly made strand of DNA so that information is not lost but is instead duplicated and preserved.</p><p>Testing for similarities between DNA (deoxyribonucleic acid) samples from two people allows family relationships to be established &ndash; or disproved &ndash; to an extraordinarily high degree of certainty. A common use for a DNA test is to establish if a man is the biological father of a child; this is known as a paternity test. However, there are other uses for the science of DNA testing (also called genotyping), these include forensic analysis of human DNA samples, and tracking relationships amongst domesticated animals.</p><p>The order in which the bases occur in DNA is referred to as the DNA sequence. Each person is unique and just as people differ in their fingerprints, they also have a unique and slightly different DNA sequence. Half of a person&rsquo;s DNA is received from their mother, and half is received from the father. However, while fingerprints have no value for establishing family relationships, the minor variations in DNA sequence are extraordinarily useful for this purpose. All cells of our body contain DNA, skin cells from the lining of the cheek provide a simple and convenient source of material.</p><p>DNA is purified from these cells and the minor variations are read out as a type of bar-code by a machine. When the net DNA &lsquo;barcodes&rsquo; from family members are lined up next to each other it becomes clear when a child is related to biological parents because half the stripes in the bar-code like signature will line up with those of the mother, and half will line up with those of the father. On the other hand, in the absence of a biological relationship, the DNA signatures from a child and from a potential parent are not found to have 50% in common. It may be appreciated that DNA testing is the most convenient and scientifically accurate method of determining relationships between people.</p><p>Following are the list of companies who qssist in DNA testing:</p><h2><span>DNA testing companies</span></h2><ul>
<li><a href="https://isogg.org/wiki/23andMe" title="23andMe">23andMe</a>&nbsp;(admixture, adoption, deep ancestry, genealogy) (health and trait reports also available in some countries)</li>
<li><a href="https://24genetics.com/">24 genetics</a>&nbsp;(admixture, exome sequencing, health, paternity, pharmacogenetics, whole genome sequencing) A company catering for the Spanish market</li>
<li><a href="http://www.africanancestry.com/">African Ancestry</a>&nbsp;(deep ancestry)</li>
<li><a href="http://www.africandna.com/">AfricanDNA</a>&nbsp;(<a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">FTDNA</a>&nbsp;affiliate) (admixture, deep ancestry, genealogy)</li>
<li><a href="https://isogg.org/wiki/AncestrybyDNA" title="AncestrybyDNA">AncestrybyDNA</a>&nbsp;(admixture, deep ancestry)</li>
<li><a href="https://isogg.org/wiki/AncestryDNA" title="AncestryDNA">AncestryDNA</a>, a subsidiary of Ancestry.com (admixture, adoption, genealogy)</li>
<li><a href="https://atlas.ru/">Atlas Biomed</a>&nbsp;(deep ancestry, diet, health and traits, sport) A test catering for the Russian market</li>
<li><a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a>&nbsp;(formerly Ethnoancestry) (admixture, deep ancestry)</li>
<li><a href="https://isogg.org/wiki/Centrillion_Biosciences" title="Centrillion Biosciences">Centrillion Biosciences</a>&nbsp;(aka TribeCode) (admixture, deep ancestry)</li>
<li>CymruDNAWales - see&nbsp;<a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a></li>
<li><a href="https://www.dantelabs.com/">Dante Labs</a>&nbsp;(exome sequencing, health, whole genome sequencing) A test aimed at the European market</li>
<li><a href="http://www.dnaancestry.ae/">DNA Ancestry and Family Origin</a>&nbsp;(<a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">FTDNA</a>&nbsp;affiliate in the Middle East) (admixture, adoption, deep ancestry, full mtDNA sequencing, genealogy)</li>
<li><a href="http://dnaconsultants.com/">DNA Consultants</a>&nbsp;(admixture, deep ancestry)</li>
<li><a href="https://isogg.org/wiki/DNA_Tribes" title="DNA Tribes">DNA Tribes</a>&nbsp;(admixture)</li>
<li><a href="https://www.dna-worldwide.com/">DNA Worldwide</a>&nbsp;(formerly a&nbsp;<a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">FTDNA partner</a>. See also&nbsp;<a href="https://www.livingdna.com/">Living DNA</a>)</li>
<li>Ethnoancestry - see&nbsp;<a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a></li>
<li><a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">Family Tree DNA</a>&nbsp;(admixture, adoption, deep ancestry, full mtDNA sequencing, genealogy, Y chromosome sequencing)</li>
<li><a href="https://isogg.org/wiki/Full_Genomes_Corporation" title="Full Genomes Corporation">Full Genomes Corporation</a>&nbsp;(whole genome sequencing, Y-chromosome sequencing)</li>
<li><a href="https://isogg.org/wiki/Gene_by_Gene" title="Gene by Gene">Gene by Gene</a>&nbsp;- the parent company of&nbsp;<a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">Family Tree DNA</a>&nbsp;which now incorporates the companies previously known as DNA Traits, DNA DTC and DNA Findings (research, health, exome sequencing, whole genome sequencing)</li>
<li><a href="https://isogg.org/wiki/Genebase" title="Genebase">Genebase</a>&nbsp;(deep ancestry, genealogy)</li>
<li><a href="https://www.genotek.ru/">GenoTek</a>&nbsp;(admixture, genealogy, diet and fitness, family planning, health, talents and sports) A company catering for the Russian market</li>
<li><a href="https://isogg.org/wiki/Genographic_Project" title="Genographic Project">Genographic Project</a>&nbsp;(admixture, deep ancestry)</li>
<li><a href="http://www.genos.co/">Genos Research Inc</a>&nbsp;(DTC whole exome sequencing; consumer focused healthcare big data spin out from Complete Genomics; Note: no genetic genealogy focus or tools)</li>
<li><a href="http://www.guardiome.com/">Guardiome</a>&nbsp;(admixture, whole genome sequencing and interpretation)</li>
<li><a href="https://www.helix.com/">Helix</a>&nbsp;(exome sequencing) US supplier of the&nbsp;<a href="https://isogg.org/wiki/Genographic_Project" title="Genographic Project">Genographic Project</a>&nbsp;Geno 2.0 Next Generation test</li>
<li><a href="http://www.igenea.com/">iGENEA</a>&nbsp;(<a href="https://isogg.org/wiki/Family_Tree_DNA" title="Family Tree DNA">FTDNA</a>&nbsp;affiliate) (admixture, deep ancestry, genealogy)</li>
<li>IrelandsDNA - See&nbsp;<a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a>&nbsp;(formerly Ethnoancestry)</li>
<li><a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">MyDNA Global</a>&nbsp;- a new name for&nbsp;<a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a></li>
<li><a href="https://www.livingdna.com/">Living DNA</a>&nbsp;(admixture, deep ancestry) See also&nbsp;<a href="https://www.dna-worldwide.com/">DNA Worldwide</a></li>
<li><a href="https://www.myheritage.com/dna">MyHeritage DNA</a>&nbsp;(admixture, genealogy)</li>
<li><a href="https://isogg.org/wiki/Oxford_Ancestors" title="Oxford Ancestors">Oxford Ancestors</a>&nbsp;(deep ancestry)</li>
<li><a href="http://www.rootsforreal.com/">Roots for Real</a>&nbsp;(admixture, deep ancestry)</li>
<li><a href="https://isogg.org/wiki/ScotlandsDNA" title="ScotlandsDNA">ScotlandsDNA</a>&nbsp;- (formerly Ethnoancestry) (admixture, deep ancestry)</li>
<li><a href="https://isogg.org/wiki/Sorenson_Genomics" title="Sorenson Genomics">Sorenson Genomics</a>&nbsp;(laboratory services)</li>
<li><a href="http://www.suregenomics.com/">Sure Genomics</a>&nbsp;(whole genome sequencing and interpretation)</li>
<li>TribeCode See&nbsp;<a href="https://isogg.org/wiki/Centrillion_Biosciences" title="Centrillion Biosciences">Centrillion Biosciences</a></li>
<li><a href="https://www.veritasgenetics.com/">Veritas Genetics</a>&nbsp;(whole genome sequencing and interpretation)</li>
<li><a href="http://xcode.in/">Xcode</a>&nbsp;(Diet and Fitness, Precision medicine, Genotyping, Sequencing, Interpretation)</li>
<li>YorkshiresDNA - See&nbsp;<a href="https://isogg.org/wiki/BritainsDNA" title="BritainsDNA">BritainsDNA</a>&nbsp;(formerly Ethnoancestry)</li>
<li><a href="https://www.wegene.com/">WeGene</a>&nbsp;(admixture, deep ancestry, health, sports, traits) A test tailored for the East Asian market</li>
<li><a href="https://isogg.org/wiki/YSEQ" title="YSEQ">YSEQ</a>&nbsp;(custom Y-SNPs, Y-STRs, SNP panels, whole genome sequencing)</li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36905/d-genies-a-tool-for-dotplot-large-genomes-in-an-interactive-efficient-and-simple-way</guid>
	<pubDate>Mon, 11 Jun 2018 09:41:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36905/d-genies-a-tool-for-dotplot-large-genomes-in-an-interactive-efficient-and-simple-way</link>
	<title><![CDATA[D-GENIES: A tool for Dotplot large Genomes in an Interactive, Efficient and Simple way]]></title>
	<description><![CDATA[D-GENIES – for Dotplot large Genomes in an Interactive, Efficient and Simple way – is an online tool designed to compare two genomes. It supports large genome and you can interact with the dot plot to improve the visualisation.

We use minimap version 2 to align the two genomes. Then, the PAF file is parsed and plotted into an interactive plot written with d3.js library.

D-Genies also allows to display dot plots from other aligners by uploading their PAF or MAF alignment file.

http://dgenies.toulouse.inra.fr/<p>Address of the bookmark: <a href="http://dgenies.toulouse.inra.fr/" rel="nofollow">http://dgenies.toulouse.inra.fr/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39872/miropeats-discovers-regions-of-sequence-similarity-amongst-any-set-of-dna-sequences</guid>
	<pubDate>Mon, 26 Aug 2019 17:55:24 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39872/miropeats-discovers-regions-of-sequence-similarity-amongst-any-set-of-dna-sequences</link>
	<title><![CDATA[Miropeats: discovers regions of sequence similarity amongst any set of DNA sequences]]></title>
	<description><![CDATA[<p><span>Miropeats discovers regions of sequence similarity amongst any set of DNA sequences and then presents this similarity information graphically. Sequence similarity searching is a very general tool that forms the basis of many different biological sequence analyses but it is limited by the verbosity of traditional alignment presentation styles. Miropeats enhances the utility of conventional DNA sequence comparisons when looking at long lengths of sequence similarity by summarizing extensive large scale sequence similarities on a single page of graphics. The latest version of Miropeats can be used as a general pairwise alignment program or in its traditional role sorting out a big mess of overlapping or similar regions.</span></p><p>Address of the bookmark: <a href="http://www.littlest.co.uk/software/bioinf/old_packages/miropeats/" rel="nofollow">http://www.littlest.co.uk/software/bioinf/old_packages/miropeats/</a></p>]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41602/nucdiff-in-depth-characterization-and-annotation-of-differences-between-two-sets-of-dna-sequences</guid>
	<pubDate>Tue, 05 May 2020 10:35:48 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41602/nucdiff-in-depth-characterization-and-annotation-of-differences-between-two-sets-of-dna-sequences</link>
	<title><![CDATA[NucDiff: In-depth characterization and annotation of differences between two sets of DNA sequences]]></title>
	<description><![CDATA[<p>NucDiff locates and categorizes differences between two closely related nucleotide sequences. It is able to deal with very fragmented genomes, structural rearrangements and various local differences. These features make NucDiff to be perfectly suitable to compare assemblies with each other or with available reference genomes.</p>
<p>NucDiff provides information about the types of differences and their locations. It is possible to upload the results into genome browser for visualization and further inspection. It was written in Python and uses the NUCmer package from MUMmer[1] for sequence comparison.</p>
<p><br><br></p><p>Address of the bookmark: <a href="https://github.com/uio-cels/NucDiff" rel="nofollow">https://github.com/uio-cels/NucDiff</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43268/kmer-a-suite-of-tools-for-dna-sequence-analysis</guid>
	<pubDate>Wed, 18 Aug 2021 00:02:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43268/kmer-a-suite-of-tools-for-dna-sequence-analysis</link>
	<title><![CDATA[Kmer: a suite of tools for DNA sequence analysis]]></title>
	<description><![CDATA[<p>More at&nbsp;https://help.rc.ufl.edu/doc/Kmer</p>
<p>This also includes:</p>
<ul>
<li>A2Amapper: ATAC, Assembly to Assembly Comparision tool:
<ul>
<li>Comparative mapping between two genome assemblies (same species), or between two different genomes (cross species).</li>
</ul>
</li>
</ul>
<ul>
<li>Sim4db:
<ul>
<li>Spliced alignment of cDNA and genomic sequences, from the same (sim4) or related (sim4cc) species. Optimized for high-throughput batched alignment.</li>
</ul>
</li>
</ul>
<ul>
<li>LEAFF:
<ul>
<li>LEAFF (ahem, Let's Extract Anything From Fasta) is a utility program for working with multi-fasta files. In addition to providing random access to the base level, it includes several analysis functions.</li>
</ul>
</li>
</ul>
<ul>
<li>Meryl:
<ul>
<li>An out-of-core k-mer counter. The amount of sequence that can be processed for any size k depends only on the amount of free disk space.</li>
</ul>
</li>
</ul><p>Address of the bookmark: <a href="https://help.rc.ufl.edu/doc/Kmer" rel="nofollow">https://help.rc.ufl.edu/doc/Kmer</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

</channel>
</rss>