<?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/35272?offset=80</link>
	<atom:link href="https://bioinformaticsonline.com/related/35272?offset=80" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/42303/fqc-dashboard-integrates-fastqc-results-into-a-web-based-interactive-and-extensible-fastq-quality-control-tool</guid>
	<pubDate>Tue, 10 Nov 2020 01:30:22 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/42303/fqc-dashboard-integrates-fastqc-results-into-a-web-based-interactive-and-extensible-fastq-quality-control-tool</link>
	<title><![CDATA[FQC Dashboard: Integrates FastQC results into a web-based, interactive, and extensible FASTQ quality control tool]]></title>
	<description><![CDATA[<p>FQC is software that facilitates quality control of FASTQ files by carrying out a QC protocol using FastQC, parsing results, and aggregating quality metrics into an interactive dashboard designed to richly summarize individual sequencing runs. The dashboard groups samples in dropdowns for navigation among the data sets, utilizes human-readable configuration files to manipulate the pages and tabs, and is extensible with CSV data.</p><p>Address of the bookmark: <a href="https://github.com/pnnl/fqc" rel="nofollow">https://github.com/pnnl/fqc</a></p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/36111/d3networktools-for-creating-d3-javascript-network-tree-dendrogram-and-sankey-graphs-from-r</guid>
	<pubDate>Fri, 06 Apr 2018 12:10:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/36111/d3networktools-for-creating-d3-javascript-network-tree-dendrogram-and-sankey-graphs-from-r</link>
	<title><![CDATA[d3Network:Tools for creating D3 JavaScript network, tree, dendrogram, and Sankey graphs from R.]]></title>
	<description><![CDATA[<p><a href="http://bost.ocks.org/mike/">Mike Bostock</a><span>&rsquo;s&nbsp;</span><a href="http://d3js.org/">D3.js</a><span>&nbsp;is great for creating&nbsp;</span><a href="http://bl.ocks.org/mbostock/4062045">interactive network graphs</a><span>&nbsp;with JavaScript. The&nbsp;</span><a href="https://github.com/christophergandrud/d3Network">d3Network</a><span>&nbsp;package makes it easy to create these network graphs from&nbsp;</span><a href="http://www.r-project.org/">R</a><span>. The main idea is that you should able to take an R data frame with information about the relationships between members of a network and create full network graphs with one command.</span></p><p>Address of the bookmark: <a href="http://christophergandrud.github.io/d3Network/" rel="nofollow">http://christophergandrud.github.io/d3Network/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/34049/libsvm-a-library-for-support-vector-machines</guid>
	<pubDate>Wed, 02 Aug 2017 06:49:05 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/34049/libsvm-a-library-for-support-vector-machines</link>
	<title><![CDATA[LIBSVM -- A Library for Support Vector Machines]]></title>
	<description><![CDATA[<p><strong>LIBSVM&nbsp;</strong>is an integrated software for support vector classification, (C-SVC,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#nuandone">nu-SVC</a>), regression (epsilon-SVR,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#nuandone">nu-SVR</a>) and distribution estimation (<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#nuandone">one-class SVM</a>). It supports multi-class classification.</p>
<p>Since version 2.8, it implements an SMO-type algorithm proposed in this paper:<br>R.-E. Fan, P.-H. Chen, and C.-J. Lin.&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/papers/quadworkset.pdf">Working set selection using second order information for training SVM</a>. Journal of Machine Learning Research 6, 1889-1918, 2005. You can also find a pseudo code there. (<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/faq.html#f203">how to cite LIBSVM</a>)</p>
<p><span style="color: #ff0000;">Our goal is to help users from other fields to easily use SVM as a tool.&nbsp;</span><strong>LIBSVM&nbsp;</strong>provides a simple interface where users can easily link it with their own programs. Main features of&nbsp;<strong>LIBSVM</strong>&nbsp;include</p>
<ul>
<li>Different SVM formulations</li>
<li>Efficient multi-class classification</li>
<li>Cross validation for model selection</li>
<li>Probability estimates</li>
<li>Various kernels (including precomputed kernel matrix)</li>
<li>Weighted SVM for unbalanced data</li>
<li>Both C++ and&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#java">Java</a>&nbsp;sources</li>
<li><a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#GUI">GUI</a>&nbsp;demonstrating SVM classification and regression</li>
<li><a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#python">Python</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#R">R</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#matlab">MATLAB</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#perl">Perl</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#ruby">Ruby</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#weka">Weka</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#lisp">Common LISP</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#clisp">CLISP</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#haskell">Haskell</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#ocaml">OCaml</a>,&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#labview">LabVIEW</a>, and&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#PHP">PHP</a>&nbsp;interfaces.&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#csharp">C# .NET</a>&nbsp;code and&nbsp;<a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/#cuda">CUDA</a>&nbsp;extension is available.&nbsp;<br>It's also included in some data mining environments:&nbsp;<a href="http://rapid-i.com/">RapidMiner</a>,&nbsp;<a href="http://pcp.sourceforge.net/">PCP</a>, and&nbsp;<a href="http://lionoso.org/">LIONsolver</a>.</li>
<li>Automatic model selection which can generate contour of cross validation accuracy.</li>
<li></li>
</ul>
<p>https://www.csie.ntu.edu.tw/~cjlin/libsvm/</p><p>Address of the bookmark: <a href="https://www.csie.ntu.edu.tw/~cjlin/libsvm/" rel="nofollow">https://www.csie.ntu.edu.tw/~cjlin/libsvm/</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38166/pygenometracks-standalone-program-and-library-to-plot-beautiful-genome-browser-tracks</guid>
	<pubDate>Fri, 09 Nov 2018 12:34:23 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38166/pygenometracks-standalone-program-and-library-to-plot-beautiful-genome-browser-tracks</link>
	<title><![CDATA[pyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks]]></title>
	<description><![CDATA[<p>pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:</p>
<ul>
<li>bigwig</li>
<li>bed (many options)</li>
<li>bedgraph</li>
<li>links (represented as arcs)</li>
<li>Hi-C matrices (if&nbsp;<a href="http://hicexplorer.readthedocs.io/">HiCExplorer</a>&nbsp;is installed)</li>
</ul><p>Address of the bookmark: <a href="https://github.com/deeptools/pyGenomeTracks" rel="nofollow">https://github.com/deeptools/pyGenomeTracks</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/38233/kubeflow-an-open-community-driven-project-to-make-it-easy-to-deploy-and-manage-an-ml-stack-on-kubernetes</guid>
	<pubDate>Fri, 16 Nov 2018 15:05:14 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/38233/kubeflow-an-open-community-driven-project-to-make-it-easy-to-deploy-and-manage-an-ml-stack-on-kubernetes</link>
	<title><![CDATA[Kubeflow: an open, community driven project to make it easy to deploy and manage an ML stack on Kubernetes]]></title>
	<description><![CDATA[<p><span>The Kubeflow project is dedicated to making deployments of machine learning (ML) workflows on Kubernetes simple, portable and scalable. Our goal is not to recreate other services, but to provide a straightforward way to deploy best-of-breed open-source systems for ML to diverse infrastructures. Anywhere you are running Kubernetes, you should be able to run Kubeflow.</span></p><p>Address of the bookmark: <a href="https://www.kubeflow.org/" rel="nofollow">https://www.kubeflow.org/</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/30825/open-positions-in-pasini%E2%80%99s-lab</guid>
  <pubDate>Sat, 04 Feb 2017 08:17:18 -0600</pubDate>
  <link></link>
  <title><![CDATA[Open Positions in Pasini’s lab]]></title>
  <description><![CDATA[
<p>Computational Biologists<br />Open to PhD-student and Post-doc candidates<br />We are looking for wet and computational biologists to work on an ERC funded project in our<br />laboratory located at the Department of Experimental Oncology of the European Institute of<br />Oncology in Milan (Italy). The project will focus on different aspects of the function of Polycomb<br />Group proteins and other chromatin modifying activities in relation to their role in regulating cellular<br />identity in the development of adult tissues.<br />The candidates will be in charge of computational analysis and data management related to the<br />project. She/he will directly interact with the wet scientists working in our laboratory while working<br />embedded in the community of computational biologists present at our institution. The work will<br />involve the analysis of sequencing data produced with cutting edge technologies to study gene<br />expression and chromatin environment including data produced on rare cell populations and single<br />cells. The applicants must have a good knowledge of programming in python/perl/java along with<br />strong statistical background and performing analysis in R platform. A biological background is<br />also recommended however it’s not mandatory for application.<br />Each applicant should submit a full CV (with a detailed description of her/his background,<br />expertise, achievements and publication records) together with a letter of intent and at least two<br />contacts for recommendations (for a post-doc position). Competitive salary will be offered based<br />on the experience of the candidate. Non Italian as well as Italian applicants that have been working<br />outside Italy (&gt;3yrs.) will have the opportunity to benefit of a full tax deduction for the first three<br />years of contract.<br />Applications should be submitted as single PDF to diego.pasini@ieo.it</p>

<p>Lab https://www.ieo.it/en/RESEARCH/People/Researchers/Pasini-Diego/</p>
]]></description>
</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/37965/kobas-a-web-server-for-geneprotein-functional-annotation-and-functional-gene-set-enrichment</guid>
	<pubDate>Fri, 19 Oct 2018 09:36:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/37965/kobas-a-web-server-for-geneprotein-functional-annotation-and-functional-gene-set-enrichment</link>
	<title><![CDATA[KOBAS: a web server for gene/protein functional annotation and functional gene set enrichment]]></title>
	<description><![CDATA[<p><span>KOBAS 3.0 is a web server for gene/protein functional annotation (</span><a href="http://kobas.cbi.pku.edu.cn/annotate.php">Annotate</a><span>&nbsp;module) and functional gene set enrichment(Enrichment module). For Annotate module, it accepts gene list as input, including IDs or sequences, and generates annotations for each gene based on multiple databases about pathways, diseases, and Gene Ontology. For Enrichment module, it can accept either gene list or gene expression data as input, and generates enriched gene sets, corresponding name, p-value or a probability of enrichment and enrichment score based on results of multiple methods.</span></p><p>Address of the bookmark: <a href="http://kobas.cbi.pku.edu.cn/" rel="nofollow">http://kobas.cbi.pku.edu.cn/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/39114/plumberan-r-package-that-converts-your-existing-r-code-to-a-web-api</guid>
	<pubDate>Wed, 13 Mar 2019 19:20:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/39114/plumberan-r-package-that-converts-your-existing-r-code-to-a-web-api</link>
	<title><![CDATA[plumber:An R package that converts your existing R code to a web API]]></title>
	<description><![CDATA[<p>plumber allows you to create a REST API by merely decorating your existing R source code with special comments. Take a look at an example.</p>
<pre><code><span># plumber.R
</span><span>
</span><span>#* Echo back the input
#* @param msg The message to echo
#* @get /echo
</span><span>function</span><span>(</span><span>msg</span><span>=</span><span>""</span><span>){</span><span>
  </span><span>list</span><span>(</span><span>msg</span><span> </span><span>=</span><span> </span><span>paste0</span><span>(</span><span>"The message is: '"</span><span>,</span><span> </span><span>msg</span><span>,</span><span> </span><span>"'"</span><span>))</span><span>
</span><span>}</span><span>

</span><span>#* Plot a histogram
#* @png
#* @get /plot
</span><span>function</span><span>(){</span><span>
  </span><span>rand</span><span> </span><span>&lt;-</span><span> </span><span>rnorm</span><span>(</span><span>100</span><span>)</span><span>
  </span><span>hist</span><span>(</span><span>rand</span><span>)</span><span>
</span><span>}</span><span>

</span><span>#* Return the sum of two numbers
#* @param a The first number to add
#* @param b The second number to add
#* @post /sum
</span><span>function</span><span>(</span><span>a</span><span>,</span><span> </span><span>b</span><span>){</span><span>
  </span><span>as.numeric</span><span>(</span><span>a</span><span>)</span><span> </span><span>+</span><span> </span><span>as.numeric</span><span>(</span><span>b</span><span>)</span><span>
</span><span>}</span></code></pre><p>Address of the bookmark: <a href="https://www.rplumber.io/" rel="nofollow">https://www.rplumber.io/</a></p>]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/41442/gsp4pdb-a-web-tool-to-visualize-search-and-explore-protein-ligand-structural-patterns</guid>
	<pubDate>Sun, 15 Mar 2020 03:41:12 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41442/gsp4pdb-a-web-tool-to-visualize-search-and-explore-protein-ligand-structural-patterns</link>
	<title><![CDATA[GSP4PDB: a web tool to visualize, search and explore protein-ligand structural patterns]]></title>
	<description><![CDATA[<p><span><span>GSP4PDB is a user-friendly and efficient application to search and discover new patterns of protein-ligand interaction.</span></span></p>
<p><span>GSP4PDB</span><span>&nbsp;is part of the services provided by the&nbsp;</span><a href="https://structuralbio.utalca.cl/" target="_blank">Bioinformatic Group</a><span>&nbsp;of the&nbsp;</span><a href="http://www.utalca.cl/" target="_blank">University of Talca</a></p>
<p><a href="http://gdblab.com/gsp4pdb/gsp4pdb2/">http://gdblab.com/gsp4pdb/gsp4pdb2/</a></p>
<p>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-020-3352-x</p><p>Address of the bookmark: <a href="http://gdblab.com/gsp4pdb/gsp4pdb2/" rel="nofollow">http://gdblab.com/gsp4pdb/gsp4pdb2/</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>