<?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/44630?offset=40</link>
	<atom:link href="https://bioinformaticsonline.com/related/44630?offset=40" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/34814/bioinformatics-web-application-development-with-perl</guid>
	<pubDate>Tue, 26 Dec 2017 18:14:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/34814/bioinformatics-web-application-development-with-perl</link>
	<title><![CDATA[Bioinformatics Web Application Development with Perl]]></title>
	<description><![CDATA[<div><p>Perl's second wave of adoption came from the growth of the world wide web. Dynamic web pages&mdash;the precursor to modern web applications&mdash;were easy to create with Perl and CGI. Thanks to Perl's ubiquity as a language for system administrators and its power to manipulate text, it was the default choice for web programming. Its presence everywhere made it popular and, in some ways, the duct tape of the Internet.</p><h4>Web Application Development</h4><p>The old days of CGI programs and the simple development style that represented seem clunky. Web pages have become web applications. Development has moved from generating static HTML to both client and server side programming, with rich client interfaces and powerful backends.</p><p>Perl is still well suited for developing modern web apps. The language grows more powerful and easier to use every year, the available libraries are wonderful and keep getting better, and the inventions and discoveries available in modern Perl are unsurpassed.</p><p>In particular, a modern Perl developer can do amazing things with modern Perl tools. If you still think of Perl web development as a&nbsp;<em>cgi-bin</em>&nbsp;directory full of messy scripts that spew warnings to STDERR, you're a decade out of date. Better yet, you can replace that mess piecemeal, thanks to the new tools and techniques of modern Perl. See, for example, the ever-growing list of technologies&nbsp;<a href="http://www.builtinperl.com/">Built in Perl</a>.</p><h4>Modern Perl Web Frameworks</h4><p>While the old wave of web development may have made the CGI.pm module central, modern Perl web programming follows a stricter separation of business logic, URL and request routing, and output. The days of slinging a string here, an array there, a Perl hash yonder, declaring every variable at the top of the program, and maybe making a subroutine are gone. The Perl world has seen the value of abstraction and ways to mechanize away boilerplate. Perl has dozens of frameworks and toolkits designed to make web development and deployment simpler.</p><p>Any of a dozen of these frameworks will help you do great things, but three in particular stand out. You can build web sites and web applications of tremendous value with all three. These are neither the only good possibilities (think of POE or Jifty or Continuity or...) nor the only mechanisms for web programming with Perl (see Mechanize or LWP or Mojo::UserAgent for more). Yet if you want three good options to choose between, start here.</p><h4>Catalyst</h4><p>The&nbsp;<a href="http://catalystframework.org/">Catalyst</a>&nbsp;framework is a flexible and powerful system for building small to large web apps. It uses the&nbsp;<a href="http://moose.perl.org/">Moose</a>&nbsp;object system to provide great APIs for extension and further development. It's the most mature of the modern top Perl web frameworks, yet it retains its flexibility and vibrancy. In particular, its plugin and extension ecosystem allows it to evolve to provide new and essential features.</p><p>Catalyst has embraced the Plack/PSGI standard for Perl web deployment and recent versions are exploring high-scalability, event-based request handling models.</p><h4>Dancer</h4><p>The&nbsp;<a href="http://perldancer.org/">Dancer</a>&nbsp;framework is deliberately minimal in syntax and scope, but it also has a vibrant plugin ecosystem. Dancer particularly excels for smaller sites and applications, though good programmers can build larger things with it.</p><p>The first version of Dancer was easy to use. Dancer 2 continues that ease while improving the internals and robustness of applications.</p><h4>Mojolicious</h4><p>The&nbsp;<a href="http://mojolicio.us/">Mojolicious</a>&nbsp;(Mojo) framework has a real-time design based on high performance event handling. Its focus is solving new and interesting problems in simple and effective ways, and the project has produced a lot of new code that does old things in better ways.</p><p>In particular, Mojolicious goes to great lengths to support new web standards, such as CSS 3, web sockets, and HTTP 2.</p><p>Where Catalyst embraces the CPAN fully, Mojolicious by design provides most of what an average app might need in a single download. It's still fully compatible with the CPAN, but the intention is to provide good working defaults in a package that's easy to start with. Mojo's fans are quick to praise it as fun to develop.</p><p>A modern Perl web developer should be familiar with at least one of these frameworks.</p><h4>Modern Perl Storage Mechanisms</h4><p>Perl's venerable&nbsp;<a href="http://search.cpan.org/perldoc?DBI">DBI</a>&nbsp;module has been the focal point of database access since its invention. Its design allows it to provide the same interface to huge relational databases and flat files alike through its DBD extension mechanism. Yet the DBI by itself isn't the be-all, end-all of data storage and access in Perl.</p><h4>DBIx::Class</h4><p><a href="http://search.cpan.org/perldoc?DBIx::Class">DBIx::Class</a>&nbsp;sits on top of DBI to provide an API to your database based on the concept of queries and results. This is often sufficient to remove all but the most complicated of SQL from your code, leaving you to manipulate your business models instead of the small details of how a relational database works. The power and maintainability you receive is well the small cost of the learning curve.</p><p>Even better, DBIC can manage (and even generate) your database schema for you.</p><p>Recent versions of DBIC have demonstrated that a well-written ORM can perform much better than even clever hand-written code. Because it builds on the Perl DBI, it scales everywhere from SQLite to PostgreSQL, MySQL, Oracle, and more.</p><h3>Rose::DB</h3><p>The lesser-known but no less powerful&nbsp;<a href="http://search.cpan.org/perldoc?Rose::DB::Object">Rose::DB::Object</a>&nbsp;builds on&nbsp;<a href="http://search.cpan.org/perldoc?Rose::DB">Rose::DB</a>&nbsp;to provide an object-relational mapper for Perl. While its high level features most directly compare to those of DBIx::Class, it's often measurably faster.</p><h4>NoSQL on the CPAN</h4><p>Of course the&nbsp;<a href="http://search.cpan.org/">CPAN</a>&nbsp;has modules for almost any NoSQL database or job queue or persistence mechanism you could name, and several you have never heard of. Everything you need is a quick CPAN or cpanm away!</p><h4>Modern Perl Deployment Strategies</h4><p>In the early days of the web, deploying a Perl web application meant putting one or more&nbsp;<em>.cgi</em>&nbsp;or&nbsp;<em>.pl</em>&nbsp;files in a special directory and hoping that your system administrator had everything configured correctly. The execution model was often slow and cumbersome, and accessing shared resources such as databases was often tricky.</p><p>Modern Perl has better choices. While deployment strategies are the source of many arguments, the return on your investment from learning the modern way is impressive.</p><h4>Plack/PSGI</h4><p>The PSGI specification (as exemplified by&nbsp;<a href="http://plackperl.org/">Plack</a>) describes a strategy for building Perl web apps independent of server and with the possibility to share custom processing behaviors.</p><p>In other words, it's a standard for writing Perl apps to take advantage of the huge ecosystem of Perl development available on the CPAN without tying yourself to a server like Apache, Apache 2, nginx, or anything else.</p><p>Any good modern Perl web framework (including those listed here) supports PSGI. Several deployment mechanisms exist to meet various business needs which also support PSGI. In particular, you can deploy the same application with a local testing server on your own machine as you can to your production server or servers without changing your application at all.</p><h4>mod_perl</h4><p>The older but still viable mod_perl Apache httpd module embeds Perl into the web server. This was the first widespread persistence mechanism for Perl web applications themselves and it's still popular to this day, though PSGI compliance is often the choice for new development. (PSGI handlers to use mod_perl as the backend are available.)</p><p>Modern Perl developers should familiarize themselves with PSGI and the wealth of available Plack middleware.</p><h4>Perl Web Development</h4><p>Of course no discussion of Perl web development would be complete without mentioning the strength of the CPAN. Almost any project will benefit from the wealth of freely available libraries built to solve real problems. These distributions run the gamut from full-blown web frameworks and content management systems to APIs for web services, development tools, testing systems, and interfaces to document formats and external resources.</p><p>For example, if you need to write a web service which accepts JSON data and produces Excel spreadsheets, you can glue together a few CPAN distributions and get the job done early. If you need to consume XML from a remote service and emit a PDF, you're in luck.</p><p>Perl's prowess as a general purpose programming language as well as its flexibility and power in managing text and gluing systems together make it a wonderful fit for web development. The community's adoption of modern Perl standards such as PSGI and Plack only enhance your power.</p><p>Web application development in Perl is still viable, and modern Perl tools and techniques and libraries make it more powerful and pleasant than ever.</p></div>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/34369/scfbio-have-developed-sanjeevini</guid>
	<pubDate>Fri, 17 Nov 2017 07:55:49 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/34369/scfbio-have-developed-sanjeevini</link>
	<title><![CDATA[SCFBio have developed Sanjeevini]]></title>
	<description><![CDATA[<p><span>SCFBio have developed a new android based application for drug design called&nbsp;</span><strong>Sanjeevini</strong><span>&nbsp;(</span><a href="https://play.google.com/store/apps/details?id=com.sanjeevini&amp;hl=en" target="_blank">https://play.google.com/store/apps/details?id=com.sanjeevini&amp;hl=en</a><span>). It is available free of charge. You can download it using Google play store. Just search for&nbsp;</span><strong>"Sanjeevini-SCFBIO-CADD</strong><span>" in Google play store. It contains all modules used by current Sanjeevini users. We have worked towards making a unified and easy to use interface. The app now supports all major small molecule file formats (pdb, mol, sdf, mol2 and xyz). The application contains inbuilt visualizer JSmol for easy analysis of results. Users can now directly download the protein files from PDB ("Get protein PDB file" in `FILE` Menu) and prepare it using the easy to use in-built module "Prepare protein/DNA".</span><br /><br /><span><span>SCFBio</span>&nbsp;have worked towards making the process of Job retrieval more streamlined and user friendly. All jobs are now recorded in the "Job results". It can be accessed using the main page of the application. Job status can now be retrieved by clicking on the refresh button against the job ID.</span><br /><br /><span><span>SCFBio</span>&nbsp;have also added a new feature of accessing Jobs run on different android application. Users can retrieve jobs run by other users by sharing the job ID and module name. This feature can be accessed using the Import Jobs option in File menu. We hope this feature will help collaborating groups stay in touch with each other.</span><br /><br /><span>The module contains all modules of Sanjeevini suite of software for structure based Drug design.</span><br /><br /></p><table width="630" cellspacing="0" cellpadding="7">
<thead>
<tr>
<td><strong>Sl No.</strong></td>
<td><strong>Module name</strong></td>
<td><strong>Activity</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Prepare Protein/DNA</td>
<td>Prepares protein/DNA for other modules of Sanjeevini</td>
</tr>
<tr>
<td>2</td>
<td>Prepare ligand</td>
<td>Prepares ligands for other modules of Sanjeevini</td>
</tr>
<tr>
<td>3</td>
<td>Active site Prediction</td>
<td>Predicts biologically relevant sites in a protein</td>
</tr>
<tr>
<td>4</td>
<td>ParDOCK</td>
<td>Rigid Docking of Protein-Ligand complex</td>
</tr>
<tr>
<td>5</td>
<td>BAPPL</td>
<td>Binding affinity prediction of Protein-Ligand complex</td>
</tr>
<tr>
<td>6</td>
<td>BAPPL Z</td>
<td>Binding affinity prediction of Protein-Zinc-Ligand complex</td>
</tr>
<tr>
<td>7</td>
<td>DNA ligand Docking</td>
<td>Rigid Docking of DNA-Ligand complex</td>
</tr>
<tr>
<td>8</td>
<td>PreDDICTA</td>
<td>Binding affinity prediction of DNA-Ligand complex</td>
</tr>
<tr>
<td>9</td>
<td>SOM Prediction</td>
<td>Rigid Docking of Ligand and CYP proteins</td>
</tr>
<tr>
<td>10</td>
<td>Lipinski filters</td>
<td>Checks Lipinski's rule of five for ligand molecule</td>
</tr>
<tr>
<td>11</td>
<td>Molecular volume</td>
<td>Calculates volume of a ligand</td>
</tr>
<tr>
<td>12</td>
<td>RASPD</td>
<td>Virtual screening of protein molecule to yield hit molecules</td>
</tr>
<tr>
<td>13</td>
<td>AADS</td>
<td>Prediction and docking of top 10 biologically relevant sites on protein</td>
</tr>
<tr>
<td>14</td>
<td>Intercalate</td>
<td>Rigid Docking of DNA-Ligand complex in intercalation sites</td>
</tr>
<tr>
<td>15</td>
<td>DNA sequence to str.</td>
<td>Converts DNA sequence to DNA structure (A-DNA or B-DNA)</td>
</tr>
<tr>
<td>16</td>
<td>NRDBSM</td>
<td>Non-redundant database of small molecules</td>
</tr>
<tr>
<td>17</td>
<td>TPACM4</td>
<td>Partial charge calculator for small molecules</td>
</tr>
<tr>
<td>18</td>
<td>Wiener index</td>
<td>Wiener index calculator for small molecules</td>
</tr>
</tbody>
</table><p><strong>The results can be downloaded to the PC desktop for further analysis</strong><span>. For this you can use this accompanying website for this purpose:</span><br /><a href="http://www.scfbio-iitd.res.in/sanjapp/webSearch/Sanjeevini_webpage.html" target="_blank">http://www.scfbio-iitd.res.in/sanjapp/webSearch/Sanjeevini_webpage.html</a><br /><br /><span>On more information on how to use the application please visit:&nbsp;</span><a href="http://scfbio-iitd.res.in/sanjapp/webSearch/doc.html" target="_blank">http://scfbio-iitd.res.in/sanjapp/webSearch/doc.html</a><br /><span>or</span><br /><a href="http://scfbio-iitd.res.in/sanjeeviniapp/tut.html" target="_blank">http://scfbio-iitd.res.in/sanjeeviniapp/tut.html</a><br /><br /><span>Please email us your valuable comments and suggestions at&nbsp;</span><a href="mailto:iitd.scfbio@gmail.com" target="_blank">iitd.scfbio@gmail.com</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40221/dash-a-web-application-framework-that-provides-pure-python-abstraction-around-html-css-and-javascript</guid>
	<pubDate>Tue, 05 Nov 2019 06:39:48 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40221/dash-a-web-application-framework-that-provides-pure-python-abstraction-around-html-css-and-javascript</link>
	<title><![CDATA[Dash: a web application framework that provides pure Python abstraction around HTML, CSS, and JavaScript.]]></title>
	<description><![CDATA[<p style="margin-top: 0px; margin-bottom: 0.75rem;">Dash is a web application framework that provides pure Python abstraction around HTML, CSS, and JavaScript.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">Dash Bio is a suite of bioinformatics components that make it simpler to analyze and visualize bioinformatics data and interact with them in a Dash application.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">The source can be found on GitHub at<span>&nbsp;</span><a href="https://github.com/plotly/dash-bio">plotly/dash-bio</a>.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">These docs are using Dash Bio version 0.1.4.</p><p>Address of the bookmark: <a href="https://dash.plot.ly/dash-bio" rel="nofollow">https://dash.plot.ly/dash-bio</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26923/quast-quality-assessment-tool-for-genome-assemblies</guid>
	<pubDate>Wed, 06 Apr 2016 18:23:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26923/quast-quality-assessment-tool-for-genome-assemblies</link>
	<title><![CDATA[QUAST: quality assessment tool for genome assemblies]]></title>
	<description><![CDATA[<p><span>QUAST evaluates genome assemblies. For metagenomes, please see&nbsp;<a href="http://bioinf.spbau.ru/metaquast">MetaQUAST</a>&nbsp;project.</span><br><span>It can works both with and without a given reference genome.</span><br><span>The tool accepts multiple assemblies, thus is suitable for comparison.</span></p>
<p><span>More at&nbsp;http://bioinf.spbau.ru/quast</span></p>
<p><span>http://bioinformatics.oxfordjournals.org/content/early/2013/03/09/bioinformatics.btt086.long</span></p><p>Address of the bookmark: <a href="http://bioinformatics.oxfordjournals.org/content/early/2013/03/09/bioinformatics.btt086.long" rel="nofollow">http://bioinformatics.oxfordjournals.org/content/early/2013/03/09/bioinformatics.btt086.long</a></p>]]></description>
	<dc:creator>Jitendra Prajapati</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38208/anitools-web-a-web-tool-for-fast-genome-comparison-within-multiple-bacterial-strains</guid>
	<pubDate>Wed, 14 Nov 2018 04:34:23 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38208/anitools-web-a-web-tool-for-fast-genome-comparison-within-multiple-bacterial-strains</link>
	<title><![CDATA[ANItools web: a web tool for fast genome comparison within multiple bacterial strains]]></title>
	<description><![CDATA[<p><span>ANItools is a software package written by PERL scripts that can be run in a Linux/Unix system. If you want to compare bacterial genomes and calculate their average nucleotide identity (ANI), you could download and run this program directly. Or you could send us the genome sequence by email. Then we will do the analysis work for you.</span></p>
<p><span>https://academic.oup.com/database/article/doi/10.1093/database/baw084/2630454</span></p><p>Address of the bookmark: <a href="http://ani.mypathogen.cn/" rel="nofollow">http://ani.mypathogen.cn/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22431/genomic-scientist-at-udsc</guid>
  <pubDate>Thu, 28 May 2015 19:14:23 -0500</pubDate>
  <link></link>
  <title><![CDATA[Genomic Scientist at UDSC]]></title>
  <description><![CDATA[
<p>Centre for Genetic Manipulation of Crop Plants</p>

<p>Department of Genetics</p>

<p>University of Delhi South Campus</p>

<p>NEW DELHI – 110 021</p>

<p>WALK-IN-INTERVIEW FOR THE TEMPORARY POSITIONS OF RESEACH SCIENTIT &amp; LAB / FIELD ATTENDANT</p>

<p>1 Research Scientist (RS) – 3</p>

<p>    DBT, Ph. D.</p>

<p>    Experience on DNA Markers, plant genome mapping and bioinformatics</p>

<p>    Salary: 60,000 (Consolidated) + 5% annual increment</p>

<p>    Date and time: 25.06.2015 at 10:30 AM</p>

<p>These temporary positions have been sanctioned in a DBT funded project for the Phase II on ‘Centre of Excellence on genome mapping and molecular breeding of Brassicas.’</p>

<p>The applicants are requested to register their names on the day of interview in the First Floor, Biotech Centre, Centre for Genetic Manipulation of Crop Plants, Department of Genetics before the stipulated time for the interview. Only the registered eligible candidates will be interviewed on the day in the Committee Room.</p>

<p>Applicants are requested to bring all related documents, in original and a set of photocopy, for verification.</p>

<p>No TA/DA will be paid for attending the interview.</p>

<p>Advertisement:</p>

<p>www.du.ac.in/du/index.php?mact=News,cntnt01,detail,0&amp;cntnt01articleid=5492&amp;cntnt01returnid=83</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41678/gridss-the-genomic-rearrangement-identification-software-suite</guid>
	<pubDate>Sun, 17 May 2020 10:27:44 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41678/gridss-the-genomic-rearrangement-identification-software-suite</link>
	<title><![CDATA[GRIDSS: the Genomic Rearrangement IDentification Software Suite]]></title>
	<description><![CDATA[<p>GRIDSS is a module software suite containing tools useful for the detection of genomic rearrangements. GRIDSS includes a genome-wide break-end assembler, as well as a structural variation caller for Illumina sequencing data. GRIDSS calls variants based on alignment-guided positional de Bruijn graph genome-wide break-end assembly, split read, and read pair evidence.</p><p>Address of the bookmark: <a href="https://github.com/PapenfussLab/gridss" rel="nofollow">https://github.com/PapenfussLab/gridss</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44900/pegas-a-comprehensive-bioinformatic-solution-for-pathogenic-bacterial-genomic-analysis</guid>
	<pubDate>Mon, 01 Sep 2025 01:18:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44900/pegas-a-comprehensive-bioinformatic-solution-for-pathogenic-bacterial-genomic-analysis</link>
	<title><![CDATA[PeGAS: A Comprehensive Bioinformatic Solution for Pathogenic Bacterial Genomic Analysis]]></title>
	<description><![CDATA[<p><span>This is PeGAS, a powerful bioinformatic tool designed for the seamless quality control, assembly, and annotation of Illumina paired-end reads specific to pathogenic bacteria. This tool integrates state-of-the-art open-source software to provide a streamlined and efficient workflow, ensuring accurate insights into the genomic makeup of pathogenic microbial strains.</span></p>
<p><span><img src="https://github.com/liviurotiul/PeGAS/raw/main/Features.png" alt="image" style="border: 0px;"></span></p><p>Address of the bookmark: <a href="https://github.com/liviurotiul/PeGAS" rel="nofollow">https://github.com/liviurotiul/PeGAS</a></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/34678/svfinder-tool-for-detecting-genomic-rearrangement-form-dna-seq-data</guid>
	<pubDate>Thu, 14 Dec 2017 15:51:40 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/34678/svfinder-tool-for-detecting-genomic-rearrangement-form-dna-seq-data</link>
	<title><![CDATA[SVfinder: Tool for detecting genomic rearrangement form DNA-seq data]]></title>
	<description><![CDATA[<p><span>SVfinder provides genome-wide detection of structural variants from next generation paired-end sequencing reads.</span></p><p>Address of the bookmark: <a href="https://github.com/cauyrd/SVfinder" rel="nofollow">https://github.com/cauyrd/SVfinder</a></p>]]></description>
	<dc:creator>Robert M Willioms</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36583/eugi-a-novel-resource-for-studying-genomic-islands-to-facilitate-horizontal-gene-transfer-detection-in-eukaryotes</guid>
	<pubDate>Sat, 12 May 2018 07:26:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36583/eugi-a-novel-resource-for-studying-genomic-islands-to-facilitate-horizontal-gene-transfer-detection-in-eukaryotes</link>
	<title><![CDATA[EuGI: a novel resource for studying genomic islands to facilitate horizontal gene transfer detection in eukaryotes]]></title>
	<description><![CDATA[<p><span>SWGIS v2.0 along with the EuGI database, which houses GIs identified in 66 different eukaryotic species, and the EuGI web-resource, provide the first comprehensive resource for studying HGT in eukaryotes.</span></p>
<p>https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-018-4724-8</p><p>Address of the bookmark: <a href="https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-018-4724-8" rel="nofollow">https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-018-4724-8</a></p>]]></description>
	<dc:creator>Surabhi Chaudhary</dc:creator>
</item>

</channel>
</rss>