rstudio-pubs-static.s3.amazonaws.com - First step: Install & load “VennDiagram” package.
# install.packages('VennDiagram')
library(VennDiagram)
Second step: Load data
Add filepath if “catdoge.csv” is not in working-directory.
d <-...
This tutorial is intended to introduce users quickly to the basics of R, focusing on a few common tasks that biologists need to perform some basic analysis: load a table, plot some graphs, and perform some basic statistics. More...
code.google.com - You are requested to please bookmark collection of bioinformatics tools, scripts, codes that can be pieced together in a very easy and flexible manner to perform both simple and complex bioinformatics tasks.
The next-generation sequencing included...
The Bioinformatics Centre at BISR has created an infrastructure for providing facilities to the users working in the field of Biological Sciences. The users of Rajasthan, Jaipur in particular, are using facilities available at the Bioinformatics...
www.bioconductor.org - statistical analysis and visulization of functional profiles for genes and gene clustersBioconductor version: Release (3.3)This package implements methods to analyze and visualize functional profiles (GO and KEGG) of gene and gene clusters.Author:...
In a lot of my work in bioinformatics, I have been using hidden Markov models (HMMs). As a postdoc with David Haussler at UCSC we developed the so-called profile HMMs (refs). Since then I have applied HMMs to membrane proteins (refs) and gene...
http://www.rstudio.com/ - RStudio IDE is a powerful and productive user interface for R. It’s free and open source, and works great on Windows, Mac, and Linux.
The developers and expert trainers are the authors of several popular R packages, including ggplot2, plyr,...
R is a functional based language, the inputs to a function, including options, are in brackets. Note that all dat and options are separated by a comma
Function(data, options)
Even quit is a function
q()
So is...