<?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/43911?offset=40</link>
	<atom:link href="https://bioinformaticsonline.com/related/43911?offset=40" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/37677/installing-blat-on-linux</guid>
	<pubDate>Tue, 11 Sep 2018 08:17:35 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/37677/installing-blat-on-linux</link>
	<title><![CDATA[Installing BLAT on Linux !]]></title>
	<description><![CDATA[<p><span>It's been a while since I last installed BLAT and when I went to the download directory at UCSC:&nbsp;</span><a href="http://users.soe.ucsc.edu/~kent/src/">http://users.soe.ucsc.edu/~kent/src/</a><span>&nbsp;I found that the latest blast is now version 35 and that the code to download was:&nbsp;</span><a href="http://users.soe.ucsc.edu/~kent/src/blatSrc35.zip">blatSrc35.zip</a><span>. However, you can also get pre-compiled binaries at:&nbsp;</span><a href="http://hgdownload.cse.ucsc.edu/admin/exe/">http://hgdownload.cse.ucsc.edu/admin/exe/</a><span>&nbsp;and that there was a linux x86_64 executable for my architecture available at:&nbsp;</span><a href="http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/blat/">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/blat/</a><span>. Though YYMV, BLAT can be a little bit of a tricky beast to get going, so I decided to download the source code and compile that.</span><br /><br /><span>I will be compiling this code as 'root' as a system tool in&nbsp;</span><code>/usr/local/src</code><span>, so do not scream at me for that.</span><br /><br /><span>First I created an /usr/local/src/blat directory and I copied the blatSrc35.zip file into that.</span><br /><br /><span>Next I used</span></p><pre><code>unzip blatSrc35.zip</code></pre><p><span>to unpack the archive. This gives a directory blatSrc now move into that directory.</span></p><pre><code>#cd blatSrc</code></pre><p><span>before you begin read the README file that comes with the source code.</span><br /><br /><span>One thing about building blat is that you need to set the MACHTYPE variable so that the BLAT sources know what type of machine you are compiling the software on.</span><br /><br /><span>on most *nix machines, typing</span></p><pre><code>echo $MACHTYPE</code></pre><p><span>will return the machine architecture type.</span><br /><br /><span>On my CentOS 6 based system this gave:</span></p><pre><code>x86_64-redhat-linux-gnu</code></pre><p><span>However, what BLAT requires is the 'short value' (ie the first part of the MACHTYPE). To correct this, in the bash shell type (change this to the correct MACHTYPE for your system)</span></p><pre><code>MACHTYPE=x86_64
export MACHTYPE</code></pre><p><span>now running the command:</span></p><pre><code>echo $MACHTYPE</code></pre><p><span>should give the correct short form of the MACHTYPE:</span></p><pre><code>x86_64</code></pre><p><span>now create the directory lib/$MACHTYPE in the source tree. ie:</span></p><pre><code>mkdir lib/$MACHTYPE</code></pre><p><span>For my machine, lib/x86_64 already existed, so I did not have to do this, but this is not the case for all architectures.</span><br /><br /><span>The BLAT code assumes that you are compiling BLAT as a non-privileged (ie non-root) user. As a result, you must create the directory for the executables to go into:</span><br /><br /><span>mkdir ~/bin/$MACHTYPE</span><br /><br /><span>If you are installing as a normal user, edit your .bashrc to add the following (change the x86_64 to be your MACHTYPE):</span><br /><br /><span>export PATH=~/bin/x86_64::$PATH</span><br /><br /><span>For me, though, this was not good enough. I wanted the executables in /usr/local/bin where all my other code goes. As a result I did some hackery...</span><br /><br /><span>There is a master make template in the&nbsp;</span><code>inc</code><span>&nbsp;directory called&nbsp;</span><code>common.mk</code><span>&nbsp;and I edited this file with the command:</span><br /><br /><span>vi inc/common.mk</span><br /><br /><span>I replaced the line</span></p><pre><code>    BINDIR=${HOME}/bin/${MACHTYPE}</code></pre><p><span>with</span></p><pre><code>    BINDIR=/usr/local/bin</code></pre><p><span>saved and quit (as this is in my path, I do not need to do anything else)</span><br /><br /><span>All the preparation is now done and you can create the blat executables by going into the toplevel of the blat source tree (for me it was&nbsp;</span><code>/usr/local/src/blat/blatSrc</code><span>, but change to wherever you unpacked blat into).</span><br /><br /><span>Now simply run the command:</span></p><pre><code>make</code></pre><p><span>to compile the code.</span><br /><br /><span>Blat installed cleanly and the executables were all neatly placed in /usr/local/bin/x86_64, just like I wanted.</span><br /><br /><span>now simply running the command:</span></p><pre><code>blat</code></pre><p><span>on the command line gives me information on blat and sample usage.</span><br /><br /><span>Blat is installed and it's installed properly in my system code tree!!!</span></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43872/installing-elgg-on-ubuntu</guid>
	<pubDate>Wed, 25 May 2022 02:26:05 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43872/installing-elgg-on-ubuntu</link>
	<title><![CDATA[Installing ELGG on Ubuntu !]]></title>
	<description><![CDATA[<p>Elgg is an open-source and highly customizable framework used for building an online social environment. It provides a simple and powerful user interface that helps to manage and build your content through a web browser. Elgg offers a rich set of features including messaging, microblogging, file-sharing, RSS support, access control, groups, and many more.</p><p>&nbsp;</p><p>In this tutorial, we will show you how to install and configure Elgg social networking platform on Ubuntu 20.04.</p><h2>Prerequisites</h2><p>&bull; A fresh Ubuntu 20.04&nbsp;<a href="https://www.atlantic.net/vps-hosting/">VPS</a>&nbsp;on the Atlantic.net Cloud Platform<br />&bull; A valid domain name pointed to your server IP<br />&bull; A root password configured on your server</p><h2>Step 1 &ndash; Create Atlantic.Net Cloud Server</h2><p>First, log in to your&nbsp;<a href="https://cloud.atlantic.net/?page=userlogin" target="_blank">Atlantic.Net Cloud Server</a>. Create a new&nbsp;<a href="https://www.atlantic.net/vps-hosting/how-to-create-new-atlantic-net-cloud-server/">server</a>, choosing Ubuntu 20.04 as the operating system with at least 2GB RAM. Connect to your Cloud Server via SSH and log in using the credentials highlighted at the top of the page.</p><p>Once you are logged in to your Ubuntu 20.04 server, run the following command to update your base system with the latest available packages.</p><pre>apt-get update -y</pre><h2>Step 2 &ndash; Install Apache, MariaDB and PHP</h2><p>Elgg runs on Apache web server, is written in PHP, and uses MySQL/MariaDB as a database backend, so you will need to install the Apache, MariaDB, PHP and other required PHP extensions to your server. You can install all of them with the following command:</p><pre>apt-get install apache2 mariadb-server php libapache2-mod-php php-common php-sqlite3 php-curl 
php-intl php-mbstring php-xmlrpc php-mysql php-gd php-xml php-cli php-zip unzip wget -y</pre><p>After installing all the packages, edit the php.ini file and change some recommended settings.</p><pre>nano /etc/php/7.4/apache2/php.ini</pre><p>Change the following values:</p><pre>max_execution_time = 300
memory_limit = 512M
upload_max_filesize = 100M
date.timezone = Asia/Kolkata</pre><p>Save and close the file, then restart the Apache service to apply the configuration changes.</p><pre>systemctl restart apache2</pre><h2>Step 3 &ndash; Create a Database for Elgg</h2><p>Next, you will need to create a database and user for Elgg. First, log in to MySQL shell with the following command:</p><pre>mysql</pre><p>Once logged in, create a database and user with the following command:</p><pre>CREATE DATABASE elgg;
CREATE USER 'elgg'@'localhost' IDENTIFIED BY 'secure-password';</pre><p>Next, grant all the privileges to the elgg database with the following command:</p><pre>GRANT ALL ON elgg.* TO 'elgg'@'localhost' IDENTIFIED BY 'secure-password' WITH GRANT 
OPTION;</pre><p>Next, flush the privileges and exit from the MariaDB shell with the following command:</p><pre>FLUSH PRIVILEGES;
EXIT;</pre><p>At this point, the MariaDB database is created for Elgg.</p><h2>Step 4 &ndash; Install Elgg</h2><p>First, download the latest version of Elgg from its official website using the following command:</p><pre>wget https://elgg.org/download/elgg-3.3.13.zip</pre><p>Once the download is completed, unzip the downloaded file with the following command:</p><pre>unzip elgg-3.3.13.zip</pre><p>Next, move the extracted directory to the Apache root directory:</p><pre>mv elgg-3.3.13 /var/www/html/elgg</pre><p>Next, create a data directory and set proper ownership and permissions to the Elgg directory:</p><pre>mkdir /var/www/html/data
chown -R www-data:www-data /var/www/html/elgg
chown -R www-data:www-data /var/www/html/data
chmod -R 755 /var/www/html/elgg</pre><p>Once you are finished, you can proceed to the next step.</p><h2>Step 5 &ndash; Configure Apache for Elgg</h2><p>Next, you will need to configure Apache to serve Elgg. You can configure it by creating a new Apache virtual host configuration file:</p><pre>nano /etc/apache2/sites-available/elgg.conf</pre><p>Add the following lines:</p><pre>&lt;VirtualHost *:80&gt;
ServerAdmin admin@example.com
DocumentRoot /var/www/html/elgg/
ServerName elgg.example.com
Options FollowSymLinks
AllowOverride All
ErrorLog /var/log/apache2/elgg-error_log
CustomLog /var/log/apache2/elgg-access_log common
&lt;/VirtualHost&gt;</pre><p>Save and close the file, then enable the virtual host and Apache rewrite module with the following command:</p><pre>a2ensite elgg.conf
a2enmod rewrite</pre><p>Finally, restart the Apache service to apply the changes:</p><pre>systemctl restart apache2</pre><h2>Step 6 &ndash; Access Elgg Web Interface</h2><p>Now, open your web browser and access the Elgg web interface using the URL http://elgg.example.com. You should see the Elgg welcome screen:</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19633/vital-it</guid>
	<pubDate>Thu, 18 Dec 2014 10:46:59 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19633/vital-it</link>
	<title><![CDATA[Vital-IT]]></title>
	<description><![CDATA[<p>Vital-IT is a <strong>bioinformatics competence center</strong> that supports and collaborates with life scientists in Switzerland and beyond. The <a href="http://www.vital-it.ch/about/team.php">multi-disciplinary team</a> provides expertise, training and maintains a high-performance computing (HPC) and storage infrastructure, so as to help develop, maintain and extend life science and medical research (<a href="http://www.vital-it.ch/about/activities.php">activities</a>).</p><p>Address of the bookmark: <a href="http://www.vital-it.ch/" rel="nofollow">http://www.vital-it.ch/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38378/gwaspro-a-high-performance-genome-wide-association-analysis-server</guid>
	<pubDate>Fri, 07 Dec 2018 08:04:57 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38378/gwaspro-a-high-performance-genome-wide-association-analysis-server</link>
	<title><![CDATA[GWASpro: A High-Performance Genome-Wide Association Analysis Server]]></title>
	<description><![CDATA[<p>GWASpro supports building complex design matrices, by which complex experimental designs that may include replications, treatments, locations and times, can be accounted for in the linear mixed model (LMM). GWASpro is optimized to handle GWAS data that may consist of up to 10 million markers and 10,000 samples from replicable lines or hybrids. GWASpro provides an interface that significantly reduces the learning curve for new GWAS investigators.</p>
<p>&nbsp;</p><p>Address of the bookmark: <a href="https://bioinfo.noble.org/GWASPRO/" rel="nofollow">https://bioinfo.noble.org/GWASPRO/</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43896/list-of-comparative-genomics-resources</guid>
	<pubDate>Tue, 28 Jun 2022 04:08:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43896/list-of-comparative-genomics-resources</link>
	<title><![CDATA[List of comparative genomics resources !]]></title>
	<description><![CDATA[<div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1096638041"><span>3D-GENOMICS -- A Database to Compare Structural and Functional Annotations of Proteins between Sequenced Genomes</span></a></div><p>Compare structural and functional annotations of proteins between sequenced genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1100640374"><span>ARED Organism -- expansion of ARED reveals AU-rich element cluster variations between human and mouse</span></a></div><p>View AREs in the human transcriptome and study the comparative genomics of AREs in model organisms.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1234973128"><span>ATGC -- Alignable Tight Genomic Clusters Database</span></a></div><p>Find information about orthologous genes in prokaryotes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174596104"><span>AnimalQTLdb -- a livestock QTL database tool set for positional QTL information mining and beyond</span></a></div><p>Search for publicly available QTL data on livestocks and animal species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL20110518150135"><span>BGDB -- Bovine Genome Database</span></a></div><p>Find information about bovine genomics data.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1229012662"><span>COMPARE -- a multi-organism system for cross-species data comparison and transfer of information</span></a></div><p>A multi-organism web-based resource system designed to easily retrieve, correlate and interpret data across species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1218141952"><span>CONDOR -- COnserved Non-coDing Orthologous Regions</span></a></div><p>A database resource of developmentally associated conserved non-coding elements.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1099057221"><span>CORG -- A database for COmparative Regulatory Genomics</span></a></div><p>Delineate conserved non-coding blocks from upstream regions of putative orthologous gene pairs from man, mouse, rat, fugu, Mus musculus, Danio rerio, and zebrafish.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1203608896"><span>COXPRESdb -- a database of coexpressed gene networks in mammals</span></a></div><p>Find coexpressed gene lists and networks in human and mouse.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1097763045"><span>CVTree -- A Phylogenetic Tree Reconstruction Tool Based on Whole Genomes</span></a></div><p>Construct phylogenetic tree of microorganisms based on oligopeptide content of their complete proteomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1232729680"><span>CleanEST -- the cleansed EST libraries database</span></a></div><p>A novel database server that classifies GenBank's dbEST (database of expressed gene sequences) libraries and removes contaminants.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1256926144"><span>CoCoa -- COefficient of COAncestry software</span></a></div><p>Find information about the ancestral relationship between genes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1227549154"><span>CoGemiR -- a comparative genomics microRNA database</span></a></div><p>Provides an overview of the genomic organization of microRNAs and extent of conservation during evolution in different metazoan species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1117678221"><span>Comparative Genometrics (CG) -- a database dedicated to biometric comparisons of whole genomes</span></a></div><p>Conduct comparative biometric analysis of chromosomes of different organisms.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1151007916"><span>DoTS -- Database Of Transcribed Sequences</span></a></div><p>Search for Indices of gene and transcripts in human and mouse.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174510065"><span>DroSpeGe -- rapid access database for new Drosophila species genomes</span></a></div><p>Search and compare 12 new and old Drosophila genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1098208414"><span>ECR Browser -- A Tool for Visualizing and Accessing Data from Comparisons of Multiple Vertebrate Genomes</span></a></div><p>Access to whole genome alignments of human, mouse, rat and fish sequences.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209738459"><span>EPGD -- Eukaryotic Paralog Group Database</span></a></div><p>Find eukaryotic paralog/paralogon information.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1232726869"><span>EVOG -- evolutionary visualizer for overlapping genes</span></a></div><p>Analyze the evolutionary process of overlapping genes when comparing different species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1227633714"><span>GNAT -- Inter-species gene mention normalization (ISGN)</span></a></div><p>The first publicly available system reported to handle inter-species gene mention normalization.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1229438992"><span>GenColors -- annotation and comparative genomics of prokaryotes made easy</span></a></div><p>A web-based software/database system aimed at an improved and accelerated annotation of prokaryotic genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1151086258"><span>GeneNest gene indices</span></a></div><p>Visualize gene indices of human, mouse, Arabidopsis, Zebrafish, Drosophila and Sheep.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174489378"><span>GenomeTrafac -- a whole genome resource for the detection of transcription factor binding site clusters associated with conventional and microRNA encoding genes conserved between mouse and human gene orthologs</span></a></div><p>Use comparative genomics approach to characterize gene models and identify putative cis-regulatory regions of RefSeq Gene Orthologs.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL20110518150753"><span>IKMC -- International Knockout Mouse Consortium web portal</span></a></div><p>Find information about mutated mouse genes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209411604"><span>IMG/M -- Integrated Microbial Genomes/Metagenomes</span></a></div><p>A data management and analysis system for metagenomes</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1234976694"><span>ISED -- Influenza sequence and epitope database.</span></a></div><p>Search for influenza sequence, vaccine, and drug resistance information.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL20140710115515"><span>LAMDHI: The Search for Animal Models Starts Here</span></a></div><p>LAMHDI, the initiative to Link Animal Models to Human DIsease, is designed to accelerate the research process by providing biomedical researchers with a simple, comprehensive Web-based resource to find the best animal models for their research.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1228843803"><span>MANTIS -- a phylogenetic framework for multi-species genome comparisons</span></a></div><p>The missing link between multi-species full genome comparisons and functional analysis.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1099578148"><span>MBGD -- Microbial genome database for comparative analysis</span></a></div><p>Conduct comparative analysis of completely sequenced microbial genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1221077729"><span>MEGA -- Molecular Evolutionary Genetics Analysis</span></a></div><p>A biologist-centric software for evolutionary analysis of DNA and protein sequences.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174596756"><span>MamPol -- a database of nucleotide polymorphism in the Mammalia class</span></a></div><p>Conduct single nucleotide polymorphisms diversity measurements among homologous sequences from the Mammalia class.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1266437314"><span>MicrobesOnline -- Prokaryotic Genome Database</span></a></div><p>Find information about 1000s of microbial genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1208461006"><span>Narcisse -- a mirror view of conserved syntenies</span></a></div><p>A database dedicated to the study of genome conservation.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1219772764"><span>OMA -- the Orthologous MAtrix project</span></a></div><p>Explore orthologous relations across 352 complete genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209738741"><span>OPTIC -- orthologous and paralogous transcripts in clades</span></a></div><p>Browse complete genomes in several clades.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209573208"><span>OrthoDB -- the hierarchical catalog of eukaryotic orthologs</span></a></div><p>Find groups of orthologous genes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1221231200"><span>OrthoMaM -- orthologous mammalian markers</span></a></div><p>A database of orthologous genomic markers for placental mammal phylogenetics.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1100009979"><span>PEDANT -- Protein Extraction, Description and ANalysis Tool</span></a></div><p>Conduct genome wide functional and structural analysis.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174489475"><span>PReMod -- a database of genome-wide mammalian cis-regulatory module predictions</span></a></div><p>Conduct genome-wide cis-regulatory module (CRM) predictions for both the human and the mouse genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1151083092"><span>PhenomicDB -- Comparison of phenotypes of orthologous genes in human and model organisms</span></a></div><p>Compare phenotypes of a given gene or gene set in different model organisms.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1190899370"><span>Phylemon -- A suite of web tools for molecular evolution, phylogenetics and phylogenomics</span></a></div><p>Phylemon is a web server that integrates a selected suite of more than 20 different tools from the most popular stand-alone programs of phylogenetic and evolutionary analysis.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1232555615"><span>PhyloPat -- the phylogenetic pattern database</span></a></div><p>Use this database to see where in the evolution some phylogenetic lineages were started, and over which species they were contained.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174510223"><span>Pristionchus.org -- a genome-centric database of the nematode satellite species Pristionchus pacificus</span></a></div><p>Search for genomic information on nematode satellite species Pristionchus pacificus.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1236367352"><span>ProtClustDB -- NCBI Protein Clusters Database</span></a></div><p>Find information about related protein sequences.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209410278"><span>ProtozoaDB -- database of protozoan genomes</span></a></div><p>Database hosting genomics and post-genomics data from multiple protozoans.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1232554690"><span>Pseudofam -- the pseudogene families database</span></a></div><p>A database of pseudogene families based on the protein families from the Pfam database.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL20110518151439"><span>RIDM - RIKEN Integrated Database of Mammals</span></a></div><p>Find genomic information about mammals.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1272562567"><span>RegPrecise -- Regulon Prediction Database</span></a></div><p>Find information about predicted regulons in prokaryotic transcription regulation.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1272477473"><span>SALAD -- Surveyed contained motif ALignment diagram and the Associating Dendrogram</span></a></div><p>Perform systematic comparison of proteome data among species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1229010765"><span>SGN -- SOL Genomics Network</span></a></div><p>A comparative map viewer dedicated to the biology of the Solanaceae family.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1256669040"><span>ShotgunFunctionalizeR -- R-package for functional comparison of metagenomes</span></a></div><p>Analyze data from functional analysis on fragmented microbial genetic material.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1256238439"><span>SnoopCGH -- Comparative Genomic Hybridization software</span></a></div><p>Visualize and explore comparative genomic hybridization data sets.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1174489598"><span>SwissRegulon -- a database of genome-wide annotations of regulatory sites</span></a></div><p>Search for genome-wide annotations of regulatory sites in yeast and prokaryotes genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1229013521"><span>TaxonGap -- a visualization tool for intra- and inter-species variation among individual biomarkers</span></a></div><p>Compare and select individual biomarkers.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1106063477"><span>The Adaptive Evolution Database (TAED) -- a phylogeny based tool for comparative genomics</span></a></div><p>Search for information on adaptive evolution in gene families of higher plants and chordate.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1216742716"><span>The CGView Server -- a comparative genomics tool for circular genomes</span></a></div><p>Generate graphical maps of circular genomes that show sequence features, base composition plots, analysis results and sequence similarity plots.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1099663588"><span>The ERGO -- Genome analysis and discovery system</span></a></div><p>Conduct a comprehensive analysis of genes and genomes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1177611772"><span>The Macaque Genome: Interactive Poster and Teaching Resource</span></a></div><p>An interactive online poster presentation on the Macaque genome, including high-quality images, video clips, and Web resources</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1103816940"><span>The TIGR Gene Indices -- clustering and assembling EST and known genes and integration with eukaryotic genomes</span></a></div><p>Search for annotated genetic information of expressed sequence tags (ESTs) in different eukaryotic organisms.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1043767169"><span>UniGene</span></a></div><p>Find mapping and expression information for a unigene cluster (ESTs and full-length mRNA sequences organized into clusters that each represent a unique known or putative gene)</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1216738072"><span>Uprobe -- universal overgo hybridization-based probe retrieval and design</span></a></div><p>A public online resource for identifying or designing 'universal' overgo-hybridization probes from conserved sequences that can be used to efficiently screen one or more genomic libraries from a designated group of species.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1098205291"><span>VISTA -- Computational Tools for Comparative Genomics</span></a></div><p>Comprehensive suite of programs and databases for comparative analysis of genomic sequences.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL20110518144404"><span>cBARBEL -- Catfish Breeder and Researcher Bioinformatics Entry Location</span></a></div><p>Find information about ictalurid catfish.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1209738040"><span>eggNOG -- evolutionary genealogy of genes: Non-supervised Orthologous Groups</span></a></div><p>Discover orthologous groups of genes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1234370319"><span>metaTIGER -- a metabolic gene evolution resource</span></a></div><p>Find metabolic networks and phylogenomic information on a taxonomically diverse range of eukaryotes.</p></div><div><div><a href="https://www.hsls.pitt.edu/obrc/index.php?page=URL1138901833"><span>xBASE -- a collection of online databases for bacterial comparative genomics</span></a></div><p>Conduct bacterial comparative genomics.</p></div>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/33219/dbcan-a-web-server-and-database-for-automated-carbohydrate-active-enzyme-annotation</guid>
	<pubDate>Mon, 29 May 2017 05:39:29 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/33219/dbcan-a-web-server-and-database-for-automated-carbohydrate-active-enzyme-annotation</link>
	<title><![CDATA[dbCAN: a web server and DataBase for automated Carbohydrate-active enzyme ANnotation]]></title>
	<description><![CDATA[<p><a href="http://csbl.bmb.uga.edu/dbCAN/index.php">dbCAN</a>&nbsp;is a web server and&nbsp;<span style="text-decoration: underline;">D</span>ata<span style="text-decoration: underline;">B</span>ase for&nbsp;<a href="http://csbl.bmb.uga.edu/dbCAN/annotate.php"><strong>automated&nbsp;<span style="text-decoration: underline;">C</span>arbohydrate-active enzyme&nbsp;<span style="text-decoration: underline;">AN</span>notation</strong></a>, funded by the&nbsp;<a href="http://bioenergycenter.org/">BioEnergy Science Center of the DOE</a>. Similar resources on the web include&nbsp;<a href="http://www.cazy.org/" target="_blank">CAZy database</a>&nbsp;and&nbsp;<a href="http://cricket.ornl.gov/cgi-bin/cat.cgi" target="_blank">CAT</a>. All data in dbCAN are generated based on the family classification from&nbsp;<a href="http://www.cazy.org/" target="_blank">CAZy database</a>&nbsp;while it has the following&nbsp;<strong><span style="text-decoration: underline;">unique features</span></strong>&nbsp;compared with CAZy database and CAT:</p>
<ul>
<li>dbCAN provides the capability of&nbsp;<a href="http://csbl.bmb.uga.edu/dbCAN/annotate.php">automated and comprehensive CAZyme annotation</a>&nbsp;of a given genome submitted by the user;</li>
<li>dbCAN provides an explicitly defined&nbsp;<span style="text-decoration: underline;">signature domain</span>&nbsp;for each and every CAZyme family along with its location in all the relevant full-length CAZyme proteins in all sequenced&nbsp;<a href="http://csbl.bmb.uga.edu/dbCAN/genome.php">genomes</a>;</li>
<li>dbCAN provides the most complete set of&nbsp;<span style="text-decoration: underline;">metagenomic CAZyme</span>&nbsp;genes published so far and represents the first step towards discovering novel CAZyme catalysts in metagenomes;</li>
<li>dbCAN provides a&nbsp;<span style="text-decoration: underline;">subfamily classification</span>&nbsp;of the existing CAZyme families based on sequence similarities;</li>
<li>dbCAN make all pre-computed data freely available to the public, including sequence alignments,&nbsp;<a href="http://csbl.bmb.uga.edu/dbCAN/download/">hidden markov models (HMMs)</a>&nbsp;and phylogenies of the signature domain regions in each and every CAZyme family and subfamily.</li>
</ul>
<p><a href="http://csbl.bmb.uga.edu/dbCAN/help.php">dbCAN</a>&nbsp;is updated regularly when&nbsp;<a href="http://www.cazy.org/" target="_blank">CAZy database</a>&nbsp;created new families based on latest literature.</p><p>Address of the bookmark: <a href="http://csbl.bmb.uga.edu/dbCAN/index.php" rel="nofollow">http://csbl.bmb.uga.edu/dbCAN/index.php</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38908/busca-an-integrative-web-server-to-predict-subcellular-localization-of-proteins</guid>
	<pubDate>Thu, 07 Feb 2019 14:08:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38908/busca-an-integrative-web-server-to-predict-subcellular-localization-of-proteins</link>
	<title><![CDATA[BUSCA: an integrative web server to predict subcellular localization of proteins]]></title>
	<description><![CDATA[<p><span>BUSCA (Bologna Unified Subcellular Component Annotator) is a web-server for predicting protein subcellular localization. BUSCA integrates different tools to predict localization-related protein features (DeepSig, TPpred3, PredGPI and ENSEMBLE3.0) as well as tools for discriminating subcellular localization of both globular and membrane proteins (BaCelLo, MemLoci and SChloro).</span></p><p>Address of the bookmark: <a href="http://busca.biocomp.unibo.it/" rel="nofollow">http://busca.biocomp.unibo.it/</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41504/quartataweb-user-friendly-server-developed-for-polypharmacological-and-chemogenomics-analyses</guid>
	<pubDate>Wed, 01 Apr 2020 10:30:52 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41504/quartataweb-user-friendly-server-developed-for-polypharmacological-and-chemogenomics-analyses</link>
	<title><![CDATA[QuartataWeb: user-friendly server developed for polypharmacological and chemogenomics analyses.]]></title>
	<description><![CDATA[<p><span>Data on protein-drug and protein-chemical interactions are rapidly accumulating in databases such as&nbsp;</span><a href="http://www.drugbank.ca/" target="_blank">DrugBank</a><span>&nbsp;and&nbsp;</span><a href="http://stitch.embl.de/" target="_blank">STITCH</a><span>. These data usually reflect observed interactions, while the lack of data for a given protein-drug/chemical pair does not necessarily mean the lack of interaction. Indeed, recent studies, both computational and experimental, highlighted the promiscuity of both proteins and small molecules: many drugs have side effects i.e. they target proteins other than those known in public databases; and many proteins bind chemicals other than those known, opening the way to design repurposable drugs, new chemicals, or polypharmacological treatments.</span></p>
<p><span><a href="https://academic.oup.com/bioinformatics/advance-article/doi/10.1093/bioinformatics/btaa210/5813333">https://academic.oup.com/bioinformatics/advance-article/doi/10.1093/bioinformatics/btaa210/5813333</a></span></p><p>Address of the bookmark: <a href="http://quartata.csb.pitt.edu/" rel="nofollow">http://quartata.csb.pitt.edu/</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41901/far-manager-commands-and-links</guid>
	<pubDate>Tue, 23 Jun 2020 06:24:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41901/far-manager-commands-and-links</link>
	<title><![CDATA[Far Manager Commands and Links !]]></title>
	<description><![CDATA[<p>Far Manager is a program for managing files and archives in&nbsp;<acronym title="2000/XP/2003/Vista/2008/7">Windows operating systems</acronym>. Far Manager works in text mode and provides a simple and intuitive interface for performing most of the necessary actions:</p>
<ul>
<li>viewing files and directories;</li>
<li>editing, copying and renaming files;</li>
<li>and many other actions.</li>
</ul>
<p><a href="https://www.farmanager.com/">https://www.farmanager.com/</a></p>
<p>Basic instruction at</p>
<p><a href="https://conemu.github.io/en/FarManager.html">https://conemu.github.io/en/FarManager.html</a></p>
<p>Plugins at&nbsp;</p>
<p><a href="https://plugring.farmanager.com/">https://plugring.farmanager.com/</a></p><p>Address of the bookmark: <a href="https://www.farmanager.com/" rel="nofollow">https://www.farmanager.com/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/37411/my-commonly-used-commands-in-bioinformatics</guid>
	<pubDate>Thu, 26 Jul 2018 04:58:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/37411/my-commonly-used-commands-in-bioinformatics</link>
	<title><![CDATA[My commonly used commands in Bioinformatics]]></title>
	<description><![CDATA[<p>FYI, I've found it useful to use MUMmer to extract the specific changes that Racon makes, so I can evaluate them individually:</p><pre><code>minimap -t 24 assembly.fasta long_reads.fastq.gz | racon -t 24 long_reads.fastq.gz - assembly.fasta racon_assembly.fasta
nucmer -p nucmer assembly.fasta racon_assembly.fasta
show-snps -C -T -r nucmer.delta
</code></pre><p>This reports Racon's changes in a table. You can exclude indels with the&nbsp;<code>-I</code>&nbsp;option in&nbsp;<code>show-snps</code>.&nbsp;</p><p>This process (Racon -&gt; MUMmer -&gt; SNP table) solves the problem I originally raised in this issue. So as far as I'm concerned, you can close this issue (or keep it open if you still want to implement some kind of variant table).</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

</channel>
</rss>