SlideShare a Scribd company logo
1 of 119
Download to read offline
Keiichiro Ono
UC, San Diego
Trey Ideker Lab
Bioinformatics
Summit 2014
4/11/2014
Cytoscape
An Open Source Platform for 

Biological Network Analysis and Visualization
-
Thanks for Attending!
- Keiichiro Ono
- Cytoscape Core Developer since 2005
- Core module design & implementation
- Area of Interest: Data Integration & Visualization
- University of California, San Diego Trey Ideker Lab
Made with Cytoscape
Agenda
- What is Cytoscape?
- Data Integration, Analysis, and
Visualization with Cytoscape
- Cytoscape Ecosystem
- Cytoscape Future Plan
What is Cytoscape?
An Open Source Platform for Biological Network Data
Integration, Analysis and Visualization
Cytoscape
Cytoscape
- Open Source (LGPL)
- Free for both commercial and academic use
- Developed and maintained by universities,
companies, and research institutions
- De-facto standard software in biological network
research community
- Expandable by Apps

- This is why Cytoscape is a Platform, not a
simple desktop application
Network Data Analysis
Analysis
Visualization
Network Data Analysis
Analysis
s
Visualization
Desktop
Gephi
Cytoscape
matplotlib
Cytoscape.js
Network Dat
Analysis
Graph Analysis
NetworkX
igraph
Cytoscape
Python
Pandas
NumPy
SciPy
Excel
IPython
3rd Party Apps
NetworkAnalyzer
Network Data Analysis
Analysis
Graph Analysis
NetworkX
igraph
Cytoscape
Python
Pandas
NumPy
SciPy
Excel
Visualization
Desktop
Gephi
Cytoscape
matplotlib
Web
Cytoscape.js
sigma.js
d3
NDV3
d3.chart
Google Charts
Data Storage
Graph
Neo4j
GraphX
Document
MongoDB
Relational
MySQL
IPython
3rd Party Apps
NetworkAnalyzer
Network?
Network = Nodes + Edges
Nodes and Edges in Biology
- Protein - Protein

- Protein - DNA

- Genetic (Epistasis)

- Synthetic lethality

- Biochemical
Reactions

- Compound - Enzyme - Compound
Cartoon representation of a complex between DNA and the protein p53
Node
Node
Edge
Undirected Network
EP300
PPARG
SMARCD3
STMN1
SMARCA4
OPTN
ATP6V1C1
PSMD1
HTT
PRNP
HNRNPUL1
CCDC88A
CLU
HSP90AB1
SMARCD3
MAP4K4
MIF4GD
USP11
MARCH6TUBB
EDF1 CHD8
Protein-Protein Interactions
Directed Network
KEGG Pathway (TCA Cycle) visualized by Cytoscape KGMLReader
Human-Curated Pathways
KEGG Pathway Visualized by Cytoscape
KEGG Global Map
Visualized by Cytoscape
The Challenge in Network Biology
C. Elegans Interactome from BioGRID Database
?
Biological Networks
- Tell us anything by themselves
- Just a big hairball…
Module 1
Module 2
In other words…
Module 1
Need a tool to extract
meaningful biological modules
Basic Use Case
Networks
Public Interaction Databases
List of
Genes
Other Data
is NOT a...
- Cytoscape is a powerful tool, but cannot do
everything
- Simulator
- Fully-featured Pathway diagram editor
- Statistical network analysis tool suite
- Still, you can implement these as Apps though
Our Focus
Large-Scale Network Analysis and Visualization
Human Interactome data from BioGRID visualized by Cytoscape
Agenda
- What is Cytoscape?
- Data Integration, Analysis, and
Visualization with Cytoscape
- Cytoscape Ecosystem
- Cytoscape Future Plan
Introduction to
Biological Network
Analysis with
Cytoscape
1. Data Integration

(Load Networks and Tables)
2. Data Analysis
3. Visualization
Basic Workflow
4. Prepare for Publication
Network Data
Annotated
Networks
Attributes
Analyzed Data
Cline, et al. “Integration of biological networks and gene expression
data using Cytoscape”, Nature Protocols, 2, 2366-2382 (2007).
Protocol Paper
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<!-- Created by igraph -->
<key id="degree" for="node" attr.name="degree" attr.type="double"/>
<key id="betweenness" for="node" attr.name="betweenness"
attr.type="double"/>
<graph id="G" edgedefault="directed">
<node id="n0">
<data key="degree">79</data>
<data key="betweenness">0</data>
</node>
<node id="n1">
<data key="degree">9</data>
<data key="betweenness">167</data>
</node>
<node id="n2">
<data key="degree">18</data>
<data key="betweenness">75</data>
</node>
<node id="n3">
<data key="degree">8</data>
<data key="betweenness">12</data>
</node>
<node id="n4">
<data key="degree">26</data>
<data key="betweenness">210</data>
</node>
<node id="n5">
<data key="degree">29</data>
<data key="betweenness">320</data>
</node>
Import Networks
Network Data Formats
- SIF
- GML
- XGMML
- GraphML
- BioPAX
- PSI-MI
- SBML
- KGML (KEGG)
- Excel
- Text Table
- CSV
- Tab
Network Data Source
- From your own experiment
- Public database
- Search known interactions by list of
genes
Public Interaction
Databases
Which Database?
- Protein - Protein

- STRING

- IntAct 

- Genetic

- BioGRID

- Protein - Compound

- ChEMBL
Which Database?
- Human-Curated Pathways
- KEGG
- Reactome
- WikiPathways
- PathwayCommons
Import Tables
NCBI Gene ID 672
On Chromosome 17
GO Terms
DNA Repair
Cell Cycle
DNA Binding
Ensemble ID
ENSG00000012048
BRCA1
Data Tables for Cytoscape
- Example:
- Numeric

- Gene expression profiles
- Network statistics calculated in other
applications, such as R
- Confidence scores for edges
- Text (or categorical)

- GO annotation for genes
- List of genes related to disease X
- Targets for FDA approved drugs
- Genes on KEGG Pathway Y
- Clusters / group / community calculated
in external programs
- …
Your Data Sets
- Anything saved as a table can be
loaded into Cytoscape
- Excel
- Tab Delimited Document
- CSV
- As long as proper mapping key is
available, Cytoscape can map them to
your networks.
Mapping Key in
the Network
Mapping Key in
the Table
Network Data
Annotated
Networks
Attributes
Analyzed Data
Analysis
Network Analysis
- Filtering
- Calculate network statistics by
Network Analyzer
- Degree distribution,centrality, etc.
- Advanced analysis by Apps
Filtering (Selection)
- Simple, but powerful feature to extract sub
networks from large data sets
- Select nodes and edges with specific
conditions
- Pick nodes with degree > 5
- Select edges extracted from publication
X
- Find nodes on KEGG Pathway X
Other Selection Command:
First Neighbor of Nodes
CTR+6
Create New Sub-Network From Selection
CTR+N
Summary: Selection
- Create filter from your biological question:
- Select all nodes annotated with GO
term “DNA repair” and have two or
more know interaction
- Select all genes directly interact with
brca1, brca2, etc.
- Extract subnetwork by CTR+N
Network Data
Annotated
Networks
Attributes
Analyzed Data
Visualization
- Goal: Help others to
understand your data
- Emphasize what you
want to tell
- Use color, shape,
size of objects
effectively!
- Excellent resource for
data visualization
- Tamara Munzner’s Web Site: 

http://www.cs.ubc.ca/~tmm/
Data Visualization
Map Attributes to Visual Properties
Visual Style
- Collection of mappings
from Attributes to Visual
Properties
Visual Style
- Example Mappings:
- Expression profiles to node color
- Object type (protein, compounds,
complex, etc.) to node shape
- Interaction type (Protein-Protein,
Protein-DNA, etc.) to edge line
style
Layouts
Previous Example
GCN4
HIS7
ILV2
RPL16A
CBF1
YOR264W
YGR058W
YGR136W YBR190W
YCR086W
YNL050C
ACS2
FPR1
SNP1HMO1 PRP21
TAH18
SIP4
HOM3
PGK1
RPS17A
RPL18B
HSP42
ARG1
FCY1
SRP1
MCK1
YDR412W
PHO13
PHO4
PHO84
RPS24B
PDC1
RPL18A
RPS24A
PFK27
YPT1RAP1
ENO1
SEC17
GCR1
PHO5
GDS1
TPI1
CLB2
ADH1
CDC19
ENO2
ICL1
MSN5
SNC2 SEC9
DDI1
CBF5
SNC1
SSO2
YGR203W
GCR2
HXT11
RFA2PDR3
SYF3
CAR1
PDR1
AST1
YNL047C
CLB1
TIF5
HSL1
CKS1
NIP1
YML114C
PMA1
TIF35
PRT1
RPS8B
GPD2PRE10
GNA1
TIF34
YDR070C
RLM1
HSP150
CDC6
YDL023C
YIL113W
SSN6
BFR2
KNS1
TUP1
YKL161C
SSL2
VPS21
RPL25
HIS3
TFA1
HIS4
PEP7
TFB1
NCE103
SIN4
GPA1
MSL5
ATC1
SST2
CNS1
PRP40
TOR1
BUD6
YGR046W
HSC82
MSL1
BAS1
YGL161C
SKO1
PEP12
YDR100W
YNL164C
YNL091W
SUC2
RPL42B
HSP82
MUD2
AHP1
CIN4
RPL34B
RPL11B
SXM1
RPL16B
RPL11A
RPL31A
RPL10
CUP1B
SSA4
GFD1
GCN3
HRP1
RNA15
NAB2
CHK1
APG7
YLR345W
SFH1
ADE4
RAD52
MET16
TRP4
HXT9
RFA1
HSP26
GIP1
PCL10
PHO85
PCL5
GSY2
PIG2
HSF1
GAC1
CUP1A
YOR315W
GLC7
APG12
REG2
AUT1
GIP2
APG5
GLC8
PIS1
CTT1
CYC7CLN3
SLT2
CDC42
MFA2
MCM1
MFA1
STE12
SWI4
FBP1
LYS9
DMC1
MLS1
DCP1
PCK1
GAL3
SWI5
GAL1
MIG1
GAL80
FAR1
GAL11
GAL10
HAP4
GAL4
GAL7
STE4
GAL2
GCY1
RPA135
MAM33
CYB2
YDR032C
SPC24
ASN1
HEX3
LSM8
YEL015W
PRP9
TEM1
YMR044W
ECI1
YNR053C
TAF25
MTH1
YHR198C
MPT1
GLN1
GDH2
YER116C
UGA1
SNF3YLR432W
GLN3
PDC5
YIL105C
RPS28B
RPS28A
LSM4
LSM2
HAP1
STE11
SPA2
STE50
STE5
CYC1
HAP3
YER124C
HAP2
GIC2CDC28
STE2
BAR1
ALPHA2
YBR190W
YCR086W
YNL050C
ACS2 SNP1 PRP21
TAH18
SIP4
PGK1
RPS17A
RPL18B
HSP42
ARG1
FCY1
SRP1
MCK1
YDR412W
PHO13
PHO4
PHO84
RPS24B
PDC1
RPL18A
RPS24A
PFK27
YPT1RAP1
ENO1
SEC17
GCR1
PHO5
GDS1
TPI1
CLB2
ADH1
CDC19
ENO2
ICL1
MSN5
SNC2 SEC9
CBF5
SNC1
SSO2
YGR203W
GCR2
YNL047C
CLB1
HSL1
ML114C
PMA1
HSP150
CDC6
YIL113W
SSL2
VPS21
RPL25
HIS3
HIS4
PEP7
TFB1
NCE103
SIN4
GPA1
MSL5
ATC1
SST
CNS1
PRP40
TOR
BUD6
HSC82
MSL1
BAS1
YGL161C
SKO1
PEP12
YDR100W
YNL164C
YNL091W
SUC2
RPL42B
HSP82
MUD2
AHP1
CIN4
PIS1
CTT
CYC7CLN3
SLT2
CDC42
MFA2
MCM1
MFA1
STE12
SWI4
FBP1
LYS9
DMC1
MLS1
DCP1
PCK1
GAL3
SWI5
GAL1
MIG1
GAL80
FAR1
GAL11
GAL10
HAP4
GAL4
GAL7
STE4
GAL2
GCY1
HEX3
LSM8
YEL015W
PRP9
TEM1
YMR044W YNR053C
TAF25
MTH1
MPT1
GDH2
YER116C
SNF3YLR432W
GLN3
PDC5
YIL105C
RPS28B
RPS28A
LSM4
LSM2
HAP1
STE11
SPA2
STE50
STE5
CYC1
HAP3
YER124C
HAP2
GIC2CDC28
STE2
BAR1
ALPHA2
Real World Examples
http://cytoscape-publications.tumblr.com
Apps
Cytoscape Apps
- Extension programs to
add new features to
Cytoscape (were called
Plugins)
- Large App developer/
user community
- This is why Cytoscape
is so successful in life
science community!
(As of 4/5/2014)
APPS.CYTOSCAPE.ORG
Quick Overview of Apps
A travel guide to Cytoscape plugins
!
Rintaro Saito, Michael E Smoot, Keiichiro Ono, Johannes Ruscheinski, Peng-
Liang Wang, Samad Lotia, Alexander R Pico, Gary D Bader, Trey Ideker (2012)
Nature Methods 9 (11) p. 1069-1076
A travel guide to
Cytoscape plugins

!
Rintaro Saito, Michael E Smoot, Keiichiro Ono, Johannes
Ruscheinski, Peng-Liang Wang, Samad Lotia, Alexander R Pico,
Gary D Bader, Trey Ideker (2012)

Nature Methods 9 (11) p. 1069-1076
A travel guide to Cytoscape plugins

!
Rintaro Saito, Michael E Smoot, Keiichiro Ono, Johannes Ruscheinski, Peng-Liang Wang,
Samad Lotia, Alexander R Pico, Gary D Bader, Trey Ideker (2012)

Nature Methods 9 (11) p. 1069-1076
Agenda
- What is Cytoscape?
- Data Integration, Analysis, and
Visualization with Cytoscape
- Cytoscape Ecosystem
- Cytoscape Future Plan
Cytoscape Ecosystem
JS
Cytoscape Family
- Version 2.x - Legacy version
- Last release for 2.x is 2.8.3.
- Version 3.x - Current production version
- Latest version: 3.1.0
- Important Note: Apps for 2.x is not
compatible with 3.x

(We have similar problem like Python…)
Cytoscape Family
- cytoscape.js:
Library for web
applications
JS
Cytoscape 3.1.0
JS
JS
Cytoscape.js Network Visualization Library Running on Web Browsers
What is cytoscape.js?
A Javascript Library for network visualization,
not a web application!
Need to write some code to use it on the web browsers…
Complete desktop
application for network
analysis and visualization
!
Written in Java
!
Expandable by Apps
!
For Users
A Javascript Library for
network visualization,
not a web application!
!
Written in JavaScript
!
Expandable by Extensions
!
For Developers
JS
Analysis
Data Integration
Cytoscape Desktop
Cytoscape.js
Visualization
Minimal Analysis
Cytoscape
Web
Desktop
Layout
Visual Style
Visual Style
Layout
Visualization
Integration to Cytoscape
New in Cytoscape 3.1.0:
Export Networks and Visual Styles to Cytoscape.js Format
JS
Export to HTML5 Session
Feature for users: you can view networks on web browsers
with Cytoscape.js
Under development… We need early adapters for testing!
JS
Future Plan
Future Plan
- Integration to external
tools
- Access from
Python, R, Perl, etc.
- More integration to
Cytoscape.js
- Cytoscape
Cyberinfrastructure
(Cytoscape CI)
Cytoscape CI: Background
- The size of data biologists have
to analyze is still growing
- Desktop machines are
powerful, but not enough for
large scale data analysis
- Clusters / Clouds
- Using multiple computing
resources as external service is
normal for biological data
analysis…
- Scalability
Service 1
Service 2
Cytoscape Cyberinfrastructure
Internet
Service 1 Service 2
NDEx (DB)
Web Browser
Cytoscape Desktop
App Development
github.com/cytoscape
Developer Documents
- http://opentutorials.cgl.ucsf.edu/index.php/
Portal:Cytoscape3
Collaboration
Collaboration
- Once you are ready to use Cytoscape for real-world
problems, National Resources for Network Biology
(NRNB) is always open for collaboration!
- NRNB Provides support for both of
- Scientific Research
- Application / Tool Development
- nrnb.org
-
- Two Google Groups
- cytoscape-
discuss@googlegroups.com
- cytoscape-
helpdesk@googlegroups.com
- ANY question is OK!
Getting Help
General Introduction
!
!
!
!
!
Advanced Topics
- Effective Visualization
Techniques
- External Tools
!
!
Part 2Part 1
Q1. How many of
you have never
used Cytoscape?
Q2. How many of
you regularly use
R/Python/MATLAB?
www.cytoscape.org
2014 Keiichiro Ono
kono@ucsd.edu

More Related Content

What's hot

Top 10 Enterprise Use Cases for NoSQL
Top 10 Enterprise Use Cases for NoSQLTop 10 Enterprise Use Cases for NoSQL
Top 10 Enterprise Use Cases for NoSQLDATAVERSITY
 
Applied Artificial Intelligence & How it's Transforming Life Sciences
Applied Artificial Intelligence & How it's Transforming Life SciencesApplied Artificial Intelligence & How it's Transforming Life Sciences
Applied Artificial Intelligence & How it's Transforming Life SciencesKumaraguru Veerasamy
 
Chemo informatics scope and applications
Chemo informatics scope and applicationsChemo informatics scope and applications
Chemo informatics scope and applicationsshyam I
 
Ai in drug design webinar 26 feb 2019
Ai in drug design webinar 26 feb 2019Ai in drug design webinar 26 feb 2019
Ai in drug design webinar 26 feb 2019Pistoia Alliance
 
RNA structure analysis
RNA structure analysis RNA structure analysis
RNA structure analysis Afra Fathima
 
Structure Based Drug Design
Structure Based Drug DesignStructure Based Drug Design
Structure Based Drug Designdikheidi
 
Drug and Chemical Databases 2018 - Drug Discovery
Drug and Chemical Databases 2018 - Drug DiscoveryDrug and Chemical Databases 2018 - Drug Discovery
Drug and Chemical Databases 2018 - Drug DiscoveryGirinath Pillai
 
Protein identification and analysis on ExPASy server
Protein identification and analysis on ExPASy serverProtein identification and analysis on ExPASy server
Protein identification and analysis on ExPASy serverEkta Gupta
 
Network Visualization and Analysis with Cytoscape
Network Visualization and Analysis with CytoscapeNetwork Visualization and Analysis with Cytoscape
Network Visualization and Analysis with CytoscapeAlexander Pico
 
In silico structure prediction
In silico structure predictionIn silico structure prediction
In silico structure predictionSubin E K
 
Microarrays Databases.pptx
Microarrays Databases.pptxMicroarrays Databases.pptx
Microarrays Databases.pptxMuzzamilahmed14
 

What's hot (20)

I- Tasser
I- TasserI- Tasser
I- Tasser
 
String.pptx
String.pptxString.pptx
String.pptx
 
Protein-protein interaction networks
Protein-protein interaction networksProtein-protein interaction networks
Protein-protein interaction networks
 
Reactome Pathways Portal
Reactome Pathways PortalReactome Pathways Portal
Reactome Pathways Portal
 
Top 10 Enterprise Use Cases for NoSQL
Top 10 Enterprise Use Cases for NoSQLTop 10 Enterprise Use Cases for NoSQL
Top 10 Enterprise Use Cases for NoSQL
 
Applied Artificial Intelligence & How it's Transforming Life Sciences
Applied Artificial Intelligence & How it's Transforming Life SciencesApplied Artificial Intelligence & How it's Transforming Life Sciences
Applied Artificial Intelligence & How it's Transforming Life Sciences
 
Chemo informatics scope and applications
Chemo informatics scope and applicationsChemo informatics scope and applications
Chemo informatics scope and applications
 
Ai in drug design webinar 26 feb 2019
Ai in drug design webinar 26 feb 2019Ai in drug design webinar 26 feb 2019
Ai in drug design webinar 26 feb 2019
 
Microarray full detail
Microarray full detailMicroarray full detail
Microarray full detail
 
RNA structure analysis
RNA structure analysis RNA structure analysis
RNA structure analysis
 
Structure Based Drug Design
Structure Based Drug DesignStructure Based Drug Design
Structure Based Drug Design
 
ZINC database
ZINC databaseZINC database
ZINC database
 
Drug and Chemical Databases 2018 - Drug Discovery
Drug and Chemical Databases 2018 - Drug DiscoveryDrug and Chemical Databases 2018 - Drug Discovery
Drug and Chemical Databases 2018 - Drug Discovery
 
Protein identification and analysis on ExPASy server
Protein identification and analysis on ExPASy serverProtein identification and analysis on ExPASy server
Protein identification and analysis on ExPASy server
 
Protein fold recognition and ab_initio modeling
Protein fold recognition and ab_initio modelingProtein fold recognition and ab_initio modeling
Protein fold recognition and ab_initio modeling
 
Network Visualization and Analysis with Cytoscape
Network Visualization and Analysis with CytoscapeNetwork Visualization and Analysis with Cytoscape
Network Visualization and Analysis with Cytoscape
 
In silico structure prediction
In silico structure predictionIn silico structure prediction
In silico structure prediction
 
Proteomics
ProteomicsProteomics
Proteomics
 
Homology modeling: Modeller
Homology modeling: ModellerHomology modeling: Modeller
Homology modeling: Modeller
 
Microarrays Databases.pptx
Microarrays Databases.pptxMicroarrays Databases.pptx
Microarrays Databases.pptx
 

Viewers also liked

Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)
Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)
Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)Keiichiro Ono
 
2015 Cytoscape 3.2 Tutorial
2015 Cytoscape 3.2 Tutorial2015 Cytoscape 3.2 Tutorial
2015 Cytoscape 3.2 TutorialAlexander Pico
 
Visualizing biological graphs in Cytoscape.js
Visualizing biological graphs in Cytoscape.jsVisualizing biological graphs in Cytoscape.js
Visualizing biological graphs in Cytoscape.jsBenjamin Keller
 
Python for Big Data Analytics
Python for Big Data AnalyticsPython for Big Data Analytics
Python for Big Data AnalyticsEdureka!
 
Collaborative Innovation Networks
Collaborative Innovation NetworksCollaborative Innovation Networks
Collaborative Innovation NetworksManos Giannadakis
 
re RainbowTwtr - 構造化テキストの安全なエスケープ手法について
re RainbowTwtr - 構造化テキストの安全なエスケープ手法についてre RainbowTwtr - 構造化テキストの安全なエスケープ手法について
re RainbowTwtr - 構造化テキストの安全なエスケープ手法についてKazuho Oku
 
A Long Walk to Water - Lssn 7
A Long Walk to Water - Lssn 7A Long Walk to Water - Lssn 7
A Long Walk to Water - Lssn 7Terri Weiss
 
Technology for tots
Technology for totsTechnology for tots
Technology for totsJennifer Orr
 
Scenari Energetici - EROEI - Embedded energy
Scenari Energetici - EROEI - Embedded energyScenari Energetici - EROEI - Embedded energy
Scenari Energetici - EROEI - Embedded energyAndrea Fanelli
 
A Long Walk to Water: Lesson2 unit3
A Long Walk to Water: Lesson2 unit3A Long Walk to Water: Lesson2 unit3
A Long Walk to Water: Lesson2 unit3Terri Weiss
 
A Long Walk to Water: Lesson15 unit2
A Long Walk to Water: Lesson15 unit2A Long Walk to Water: Lesson15 unit2
A Long Walk to Water: Lesson15 unit2Terri Weiss
 
The socio political culture and economy of the thirteen american colonies
The socio political culture and economy of the thirteen american coloniesThe socio political culture and economy of the thirteen american colonies
The socio political culture and economy of the thirteen american coloniesPaulo Arieu
 
Hoe bescherm ik mijn idee of merk?
Hoe bescherm ik mijn idee of merk?Hoe bescherm ik mijn idee of merk?
Hoe bescherm ik mijn idee of merk?Marleen Kuiper
 
The Future of Big Data in Education
The Future of Big Data in EducationThe Future of Big Data in Education
The Future of Big Data in EducationHendrik Drachsler
 
Camiño Inglés en Vilar Do Colo
Camiño Inglés en Vilar Do ColoCamiño Inglés en Vilar Do Colo
Camiño Inglés en Vilar Do Colobngcabanas
 
Mobile Showcase Moblin2
Mobile Showcase Moblin2Mobile Showcase Moblin2
Mobile Showcase Moblin2Tomas Bennich
 
A Long Walk to Water - Lssn 12
A Long Walk to Water - Lssn 12A Long Walk to Water - Lssn 12
A Long Walk to Water - Lssn 12Terri Weiss
 

Viewers also liked (20)

Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)
Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)
Cytoscape Tutorial Session 2 at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)
 
2015 Cytoscape 3.2 Tutorial
2015 Cytoscape 3.2 Tutorial2015 Cytoscape 3.2 Tutorial
2015 Cytoscape 3.2 Tutorial
 
Visualizing biological graphs in Cytoscape.js
Visualizing biological graphs in Cytoscape.jsVisualizing biological graphs in Cytoscape.js
Visualizing biological graphs in Cytoscape.js
 
Python for Big Data Analytics
Python for Big Data AnalyticsPython for Big Data Analytics
Python for Big Data Analytics
 
Collaborative Innovation Networks
Collaborative Innovation NetworksCollaborative Innovation Networks
Collaborative Innovation Networks
 
re RainbowTwtr - 構造化テキストの安全なエスケープ手法について
re RainbowTwtr - 構造化テキストの安全なエスケープ手法についてre RainbowTwtr - 構造化テキストの安全なエスケープ手法について
re RainbowTwtr - 構造化テキストの安全なエスケープ手法について
 
A Long Walk to Water - Lssn 7
A Long Walk to Water - Lssn 7A Long Walk to Water - Lssn 7
A Long Walk to Water - Lssn 7
 
Technology for tots
Technology for totsTechnology for tots
Technology for tots
 
Eemn1
Eemn1Eemn1
Eemn1
 
Scenari Energetici - EROEI - Embedded energy
Scenari Energetici - EROEI - Embedded energyScenari Energetici - EROEI - Embedded energy
Scenari Energetici - EROEI - Embedded energy
 
A Long Walk to Water: Lesson2 unit3
A Long Walk to Water: Lesson2 unit3A Long Walk to Water: Lesson2 unit3
A Long Walk to Water: Lesson2 unit3
 
A Long Walk to Water: Lesson15 unit2
A Long Walk to Water: Lesson15 unit2A Long Walk to Water: Lesson15 unit2
A Long Walk to Water: Lesson15 unit2
 
The socio political culture and economy of the thirteen american colonies
The socio political culture and economy of the thirteen american coloniesThe socio political culture and economy of the thirteen american colonies
The socio political culture and economy of the thirteen american colonies
 
Hoe bescherm ik mijn idee of merk?
Hoe bescherm ik mijn idee of merk?Hoe bescherm ik mijn idee of merk?
Hoe bescherm ik mijn idee of merk?
 
Condones
CondonesCondones
Condones
 
The Future of Big Data in Education
The Future of Big Data in EducationThe Future of Big Data in Education
The Future of Big Data in Education
 
Camiño Inglés en Vilar Do Colo
Camiño Inglés en Vilar Do ColoCamiño Inglés en Vilar Do Colo
Camiño Inglés en Vilar Do Colo
 
Mobile Showcase Moblin2
Mobile Showcase Moblin2Mobile Showcase Moblin2
Mobile Showcase Moblin2
 
4 Htd
4 Htd4 Htd
4 Htd
 
A Long Walk to Water - Lssn 12
A Long Walk to Water - Lssn 12A Long Walk to Water - Lssn 12
A Long Walk to Water - Lssn 12
 

Similar to Workshop: Introduction to Cytoscape at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)

What's New in Cytoscape
What's New in CytoscapeWhat's New in Cytoscape
What's New in CytoscapeKeiichiro Ono
 
Cytoscape plugins - GeneMania and CentiScape
Cytoscape plugins - GeneMania and CentiScapeCytoscape plugins - GeneMania and CentiScape
Cytoscape plugins - GeneMania and CentiScapeNixon Mendez
 
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford Consortium
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford ConsortiumSDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford Consortium
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford ConsortiumKeiichiro Ono
 
Cytoscape: Now and Future
Cytoscape: Now and FutureCytoscape: Now and Future
Cytoscape: Now and FutureKeiichiro Ono
 
Reproducible Workflow with Cytoscape and Jupyter Notebook
Reproducible Workflow with Cytoscape and Jupyter NotebookReproducible Workflow with Cytoscape and Jupyter Notebook
Reproducible Workflow with Cytoscape and Jupyter NotebookKeiichiro Ono
 
Tag.bio: Self Service Data Mesh Platform
Tag.bio: Self Service Data Mesh PlatformTag.bio: Self Service Data Mesh Platform
Tag.bio: Self Service Data Mesh PlatformSanjay Padhi, Ph.D
 
Distributed Database practicals
Distributed Database practicals Distributed Database practicals
Distributed Database practicals Vrushali Lanjewar
 
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMeshThe Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMeshIanFurlong4
 
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...How to expand the Galaxy from genes to Earth in six simple steps (and live sm...
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...Raffaele Montella
 
GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?Neo4j
 
A Gen3 Perspective of Disparate Data
A Gen3 Perspective of Disparate DataA Gen3 Perspective of Disparate Data
A Gen3 Perspective of Disparate DataRobert Grossman
 
WSO2 Machine Learner - Product Overview
WSO2 Machine Learner - Product OverviewWSO2 Machine Learner - Product Overview
WSO2 Machine Learner - Product OverviewWSO2
 
The Overview of Discovery and Reconciliation of LTE Network
The Overview of Discovery and Reconciliation of LTE NetworkThe Overview of Discovery and Reconciliation of LTE Network
The Overview of Discovery and Reconciliation of LTE NetworkIRJET Journal
 
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...Neo4j
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j
 
How to use NCI's national repository of big spatial data collections
How to use NCI's national repository of big spatial data collectionsHow to use NCI's national repository of big spatial data collections
How to use NCI's national repository of big spatial data collectionsARDC
 
A systematic review of network analyst - Pubrica
A systematic review of network analyst - PubricaA systematic review of network analyst - Pubrica
A systematic review of network analyst - PubricaPubrica
 
grid mining
grid mininggrid mining
grid miningARNOLD
 

Similar to Workshop: Introduction to Cytoscape at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014) (20)

What's New in Cytoscape
What's New in CytoscapeWhat's New in Cytoscape
What's New in Cytoscape
 
Cytoscape plugins - GeneMania and CentiScape
Cytoscape plugins - GeneMania and CentiScapeCytoscape plugins - GeneMania and CentiScape
Cytoscape plugins - GeneMania and CentiScape
 
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford Consortium
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford ConsortiumSDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford Consortium
SDCSB CYTOSCAPE AND NETWORK ANALYSIS WORKSHOP at Sanford Consortium
 
Cytoscape: Now and Future
Cytoscape: Now and FutureCytoscape: Now and Future
Cytoscape: Now and Future
 
Reproducible Workflow with Cytoscape and Jupyter Notebook
Reproducible Workflow with Cytoscape and Jupyter NotebookReproducible Workflow with Cytoscape and Jupyter Notebook
Reproducible Workflow with Cytoscape and Jupyter Notebook
 
Tag.bio: Self Service Data Mesh Platform
Tag.bio: Self Service Data Mesh PlatformTag.bio: Self Service Data Mesh Platform
Tag.bio: Self Service Data Mesh Platform
 
Distributed Database practicals
Distributed Database practicals Distributed Database practicals
Distributed Database practicals
 
Grid computing
Grid computingGrid computing
Grid computing
 
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMeshThe Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
 
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...How to expand the Galaxy from genes to Earth in six simple steps (and live sm...
How to expand the Galaxy from genes to Earth in six simple steps (and live sm...
 
GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?GraphTour 2020 - Neo4j: What's New?
GraphTour 2020 - Neo4j: What's New?
 
A Gen3 Perspective of Disparate Data
A Gen3 Perspective of Disparate DataA Gen3 Perspective of Disparate Data
A Gen3 Perspective of Disparate Data
 
WSO2 Machine Learner - Product Overview
WSO2 Machine Learner - Product OverviewWSO2 Machine Learner - Product Overview
WSO2 Machine Learner - Product Overview
 
The Overview of Discovery and Reconciliation of LTE Network
The Overview of Discovery and Reconciliation of LTE NetworkThe Overview of Discovery and Reconciliation of LTE Network
The Overview of Discovery and Reconciliation of LTE Network
 
Poster
PosterPoster
Poster
 
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
El camino hacia el éxito con las bases de datos de grafos, la ciencia de dato...
 
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
Neo4j : la voie du succès avec les bases de données de graphes et la Graph Da...
 
How to use NCI's national repository of big spatial data collections
How to use NCI's national repository of big spatial data collectionsHow to use NCI's national repository of big spatial data collections
How to use NCI's national repository of big spatial data collections
 
A systematic review of network analyst - Pubrica
A systematic review of network analyst - PubricaA systematic review of network analyst - Pubrica
A systematic review of network analyst - Pubrica
 
grid mining
grid mininggrid mining
grid mining
 

More from Keiichiro Ono

今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)
今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)
今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)Keiichiro Ono
 
Cytoscape Ecosystem Presentation at DBCLS Kashiwa
Cytoscape Ecosystem Presentation at DBCLS KashiwaCytoscape Ecosystem Presentation at DBCLS Kashiwa
Cytoscape Ecosystem Presentation at DBCLS KashiwaKeiichiro Ono
 
Eyeo 2019-Lightning-Cytoscape
Eyeo 2019-Lightning-CytoscapeEyeo 2019-Lightning-Cytoscape
Eyeo 2019-Lightning-CytoscapeKeiichiro Ono
 
Data Visualization Japan Meetup 2018: 長く変化に対応する
Data Visualization Japan Meetup 2018: 長く変化に対応するData Visualization Japan Meetup 2018: 長く変化に対応する
Data Visualization Japan Meetup 2018: 長く変化に対応するKeiichiro Ono
 
第1回バイオインフォマティクスデータ可視化セミナー@Riken
第1回バイオインフォマティクスデータ可視化セミナー@Riken第1回バイオインフォマティクスデータ可視化セミナー@Riken
第1回バイオインフォマティクスデータ可視化セミナー@RikenKeiichiro Ono
 
「モダンな」可視化アプリケーション開発とはどのようなものか?
「モダンな」可視化アプリケーション開発とはどのようなものか?「モダンな」可視化アプリケーション開発とはどのようなものか?
「モダンな」可視化アプリケーション開発とはどのようなものか?Keiichiro Ono
 
Overview of Modern Graph Analysis Tools
Overview of Modern Graph Analysis ToolsOverview of Modern Graph Analysis Tools
Overview of Modern Graph Analysis ToolsKeiichiro Ono
 
Introduction to Biological Network Analysis and Visualization with Cytoscape ...
Introduction to Biological Network Analysis and Visualization with Cytoscape ...Introduction to Biological Network Analysis and Visualization with Cytoscape ...
Introduction to Biological Network Analysis and Visualization with Cytoscape ...Keiichiro Ono
 
Building Reproducible Network Data Analysis / Visualization Workflows
Building Reproducible Network Data Analysis / Visualization WorkflowsBuilding Reproducible Network Data Analysis / Visualization Workflows
Building Reproducible Network Data Analysis / Visualization WorkflowsKeiichiro Ono
 
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状Keiichiro Ono
 
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...Keiichiro Ono
 
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...Keiichiro Ono
 
Cytoscapeの現状とCyberinfrastructure
Cytoscapeの現状とCyberinfrastructureCytoscapeの現状とCyberinfrastructure
Cytoscapeの現状とCyberinfrastructureKeiichiro Ono
 
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜Keiichiro Ono
 
cyREST: Cytoscape as a Service
cyREST: Cytoscape as a ServicecyREST: Cytoscape as a Service
cyREST: Cytoscape as a ServiceKeiichiro Ono
 
GraphLab Conference 2014 Cytoscape Flyer
GraphLab Conference 2014 Cytoscape FlyerGraphLab Conference 2014 Cytoscape Flyer
GraphLab Conference 2014 Cytoscape FlyerKeiichiro Ono
 
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...Keiichiro Ono
 
NeXO Web Poster for ISMB 2014 BioVis SIG
NeXO Web Poster for ISMB 2014 BioVis SIGNeXO Web Poster for ISMB 2014 BioVis SIG
NeXO Web Poster for ISMB 2014 BioVis SIGKeiichiro Ono
 
Towards the Cytoscape Cyberinfrastructure
Towards the Cytoscape CyberinfrastructureTowards the Cytoscape Cyberinfrastructure
Towards the Cytoscape CyberinfrastructureKeiichiro Ono
 
OPENVIS Conference Quick Report Part 2
OPENVIS Conference Quick Report Part 2OPENVIS Conference Quick Report Part 2
OPENVIS Conference Quick Report Part 2Keiichiro Ono
 

More from Keiichiro Ono (20)

今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)
今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)
今あえてコードから可視化を作る (Data Visualization Japan Meetup 2020)
 
Cytoscape Ecosystem Presentation at DBCLS Kashiwa
Cytoscape Ecosystem Presentation at DBCLS KashiwaCytoscape Ecosystem Presentation at DBCLS Kashiwa
Cytoscape Ecosystem Presentation at DBCLS Kashiwa
 
Eyeo 2019-Lightning-Cytoscape
Eyeo 2019-Lightning-CytoscapeEyeo 2019-Lightning-Cytoscape
Eyeo 2019-Lightning-Cytoscape
 
Data Visualization Japan Meetup 2018: 長く変化に対応する
Data Visualization Japan Meetup 2018: 長く変化に対応するData Visualization Japan Meetup 2018: 長く変化に対応する
Data Visualization Japan Meetup 2018: 長く変化に対応する
 
第1回バイオインフォマティクスデータ可視化セミナー@Riken
第1回バイオインフォマティクスデータ可視化セミナー@Riken第1回バイオインフォマティクスデータ可視化セミナー@Riken
第1回バイオインフォマティクスデータ可視化セミナー@Riken
 
「モダンな」可視化アプリケーション開発とはどのようなものか?
「モダンな」可視化アプリケーション開発とはどのようなものか?「モダンな」可視化アプリケーション開発とはどのようなものか?
「モダンな」可視化アプリケーション開発とはどのようなものか?
 
Overview of Modern Graph Analysis Tools
Overview of Modern Graph Analysis ToolsOverview of Modern Graph Analysis Tools
Overview of Modern Graph Analysis Tools
 
Introduction to Biological Network Analysis and Visualization with Cytoscape ...
Introduction to Biological Network Analysis and Visualization with Cytoscape ...Introduction to Biological Network Analysis and Visualization with Cytoscape ...
Introduction to Biological Network Analysis and Visualization with Cytoscape ...
 
Building Reproducible Network Data Analysis / Visualization Workflows
Building Reproducible Network Data Analysis / Visualization WorkflowsBuilding Reproducible Network Data Analysis / Visualization Workflows
Building Reproducible Network Data Analysis / Visualization Workflows
 
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状
San Diego Japan Bio Forum: ライフサイエンス向けデータ可視化技術の現状
 
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...
SDCSB Advanced Tutorial: Reproducible Data Visualization Workflow with Cytosc...
 
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
 
Cytoscapeの現状とCyberinfrastructure
Cytoscapeの現状とCyberinfrastructureCytoscapeの現状とCyberinfrastructure
Cytoscapeの現状とCyberinfrastructure
 
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜
「数字を見せろ」から「コードを見せろ」へ 〜過程の透明性を確保したデータ可視化を目指す〜
 
cyREST: Cytoscape as a Service
cyREST: Cytoscape as a ServicecyREST: Cytoscape as a Service
cyREST: Cytoscape as a Service
 
GraphLab Conference 2014 Cytoscape Flyer
GraphLab Conference 2014 Cytoscape FlyerGraphLab Conference 2014 Cytoscape Flyer
GraphLab Conference 2014 Cytoscape Flyer
 
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...
Cytoscape Untangles the Web: a first step towards Cytoscape Cyberinfrastructu...
 
NeXO Web Poster for ISMB 2014 BioVis SIG
NeXO Web Poster for ISMB 2014 BioVis SIGNeXO Web Poster for ISMB 2014 BioVis SIG
NeXO Web Poster for ISMB 2014 BioVis SIG
 
Towards the Cytoscape Cyberinfrastructure
Towards the Cytoscape CyberinfrastructureTowards the Cytoscape Cyberinfrastructure
Towards the Cytoscape Cyberinfrastructure
 
OPENVIS Conference Quick Report Part 2
OPENVIS Conference Quick Report Part 2OPENVIS Conference Quick Report Part 2
OPENVIS Conference Quick Report Part 2
 

Recently uploaded

Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptxSilpa
 
Grade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsGrade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsOrtegaSyrineMay
 
Use of mutants in understanding seedling development.pptx
Use of mutants in understanding seedling development.pptxUse of mutants in understanding seedling development.pptx
Use of mutants in understanding seedling development.pptxRenuJangid3
 
Reboulia: features, anatomy, morphology etc.
Reboulia: features, anatomy, morphology etc.Reboulia: features, anatomy, morphology etc.
Reboulia: features, anatomy, morphology etc.Silpa
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxMohamedFarag457087
 
The Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxThe Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxseri bangash
 
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort ServiceCall Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort Serviceshivanisharma5244
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptxryanrooker
 
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryFAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryAlex Henderson
 
POGONATUM : morphology, anatomy, reproduction etc.
POGONATUM : morphology, anatomy, reproduction etc.POGONATUM : morphology, anatomy, reproduction etc.
POGONATUM : morphology, anatomy, reproduction etc.Silpa
 
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxPSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxSuji236384
 
Genome sequencing,shotgun sequencing.pptx
Genome sequencing,shotgun sequencing.pptxGenome sequencing,shotgun sequencing.pptx
Genome sequencing,shotgun sequencing.pptxSilpa
 
Role of AI in seed science Predictive modelling and Beyond.pptx
Role of AI in seed science  Predictive modelling and  Beyond.pptxRole of AI in seed science  Predictive modelling and  Beyond.pptx
Role of AI in seed science Predictive modelling and Beyond.pptxArvind Kumar
 
GBSN - Microbiology (Unit 3)Defense Mechanism of the body
GBSN - Microbiology (Unit 3)Defense Mechanism of the body GBSN - Microbiology (Unit 3)Defense Mechanism of the body
GBSN - Microbiology (Unit 3)Defense Mechanism of the body Areesha Ahmad
 
development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusNazaninKarimi6
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsSérgio Sacani
 
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry Areesha Ahmad
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bSérgio Sacani
 
Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Silpa
 

Recently uploaded (20)

Human genetics..........................pptx
Human genetics..........................pptxHuman genetics..........................pptx
Human genetics..........................pptx
 
Grade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsGrade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its Functions
 
Use of mutants in understanding seedling development.pptx
Use of mutants in understanding seedling development.pptxUse of mutants in understanding seedling development.pptx
Use of mutants in understanding seedling development.pptx
 
Reboulia: features, anatomy, morphology etc.
Reboulia: features, anatomy, morphology etc.Reboulia: features, anatomy, morphology etc.
Reboulia: features, anatomy, morphology etc.
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptx
 
The Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxThe Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptx
 
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort ServiceCall Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx
 
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and SpectrometryFAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
FAIRSpectra - Enabling the FAIRification of Spectroscopy and Spectrometry
 
POGONATUM : morphology, anatomy, reproduction etc.
POGONATUM : morphology, anatomy, reproduction etc.POGONATUM : morphology, anatomy, reproduction etc.
POGONATUM : morphology, anatomy, reproduction etc.
 
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptxPSYCHOSOCIAL NEEDS. in nursing II sem pptx
PSYCHOSOCIAL NEEDS. in nursing II sem pptx
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Genome sequencing,shotgun sequencing.pptx
Genome sequencing,shotgun sequencing.pptxGenome sequencing,shotgun sequencing.pptx
Genome sequencing,shotgun sequencing.pptx
 
Role of AI in seed science Predictive modelling and Beyond.pptx
Role of AI in seed science  Predictive modelling and  Beyond.pptxRole of AI in seed science  Predictive modelling and  Beyond.pptx
Role of AI in seed science Predictive modelling and Beyond.pptx
 
GBSN - Microbiology (Unit 3)Defense Mechanism of the body
GBSN - Microbiology (Unit 3)Defense Mechanism of the body GBSN - Microbiology (Unit 3)Defense Mechanism of the body
GBSN - Microbiology (Unit 3)Defense Mechanism of the body
 
development of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virusdevelopment of diagnostic enzyme assay to detect leuser virus
development of diagnostic enzyme assay to detect leuser virus
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
 
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry
GBSN - Biochemistry (Unit 2) Basic concept of organic chemistry
 
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 bAsymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
Asymmetry in the atmosphere of the ultra-hot Jupiter WASP-76 b
 
Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.Porella : features, morphology, anatomy, reproduction etc.
Porella : features, morphology, anatomy, reproduction etc.
 

Workshop: Introduction to Cytoscape at UT-KBRIN Bioinformatics Summit 2014 (4/11/2014)